Attention is currently required from: lynxis lazus.
daniel has posted comments on this change by lynxis lazus. ( https://gerrit.osmocom.org/c/libosmocore/+/38996?usp=email )
Change subject: gsm48: add additional GSM 24.008 IE for GMM
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/38996?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I4824a319948f1088137c13d1cf610a1b1c2529f2
Gerrit-Change-Number: 38996
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Comment-Date: Mon, 02 Dec 2024 14:30:39 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
osmith has uploaded a new patch set (#2). ( https://gerrit.osmocom.org/c/osmocom-bb/+/39001?usp=email )
Change subject: debian: add subpackage osmocom-bb-virtphy
......................................................................
debian: add subpackage osmocom-bb-virtphy
I've decided to name the package osmocom-bb-virtphy so there is no
underscore in it (would look weird in addition to the minus character)
and because it matches the name of the binary "virtphy".
Change-Id: I09d98aba81ab6c76ad46aae36e7369114cef7dd7
---
M debian/control
M debian/rules
2 files changed, 10 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/01/39001/2
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/39001?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I09d98aba81ab6c76ad46aae36e7369114cef7dd7
Gerrit-Change-Number: 39001
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-CC: Jenkins Builder
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/38999?usp=email )
Change subject: debian: prepare for more subpackages
......................................................................
debian: prepare for more subpackages
Prepare to add these subpackages in follow-up patches:
* osmocom-bb-trx-toolkit
* osmocom-bb-trxcon
* osmocom-bb-virtphy
We need these components to run some of the ttnc3 testsuites. By having
them packaged, we can just install them from the binary repositories
along with the SUT.
trxcon and virtphy are autootols based, so rework debian/rules to
support building multiple autotools projects.
Related: https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38851/1..2//COMMIT_MSG#b9
Change-Id: I77ad988f5405e6fa9e585eeb646e513ac7d92485
---
M debian/rules
1 file changed, 21 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/99/38999/1
diff --git a/debian/rules b/debian/rules
index 8dd0df8..df0520e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,7 +1,26 @@
#!/usr/bin/make -f
+DH_ARGS := -D src/host/$$SUBPKG_DIR --with-autoreconf
%:
- dh $@ -D src/host/layer23 --with-autoreconf
+ export SUBPKG=layer23; \
+ export SUBPKG_DIR=layer23; \
+ export SUBPKG_CFG=--with-gapk-io; \
+ dh $@ $(DH_ARGS)
+
+# We need to run autoreconf multiple times, but dh_autoreconf can only run once
+# (see dh-autoreconf(7)). Run autoreconf directly to work around this.
+override_dh_autoreconf:
+ cd src/host/$$SUBPKG_DIR && autoreconf -fi
override_dh_auto_configure:
- dh_auto_configure -D src/host/layer23 -- --with-gapk-io
+ dh_auto_configure -D src/host/$$SUBPKG_DIR -- $$SUBPKG_CFG
+
+override_dh_auto_install:
+ dh_auto_install -O-Dsrc/host/$$SUBPKG_DIR --destdir=debian/osmocom-bb-$$SUBPKG/
+
+# Run dh_prep only for the first subpackage. Otherwise previously built
+# binaries get removed and we end up with empty packages.
+override_dh_prep:
+ if [ "$$SUBPKG" = "layer23" ]; then \
+ dh_prep; \
+ fi
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/38999?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I77ad988f5405e6fa9e585eeb646e513ac7d92485
Gerrit-Change-Number: 38999
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>