Attention is currently required from: neels.
laforge has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-upf/+/30524 )
Change subject: gtpu_echo: do not osmo_fd_register twice
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/osmo-upf/+/30524
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-upf
Gerrit-Branch: master
Gerrit-Change-Id: Ib498cc8d5252c05e12196f84bd1ea18d67e3052c
Gerrit-Change-Number: 30524
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 09 Dec 2022 12:05:23 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-remsim/+/30519 )
Change subject: packaging: osmo-remsim-apitool needs py3-requests
......................................................................
packaging: osmo-remsim-apitool needs py3-requests
Related: OS#5817
Change-Id: I3b8f86b03aee145e0b0faf0394ab641666710bea
---
M contrib/osmo-remsim.spec.in
M debian/control
2 files changed, 2 insertions(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, approved
diff --git a/contrib/osmo-remsim.spec.in b/contrib/osmo-remsim.spec.in
index 0245577..7c67b12 100644
--- a/contrib/osmo-remsim.spec.in
+++ b/contrib/osmo-remsim.spec.in
@@ -100,6 +100,7 @@
License: GPL-2.0-or-later
Group: Productivity/Telephony/Servers
Requires: python3
+Requires: python3-requests
%description -n osmo-remsim-apitool
This is a small python tool for generating API requests to remsim-server,
diff --git a/debian/control b/debian/control
index a9e2e56..6f424b9 100644
--- a/debian/control
+++ b/debian/control
@@ -54,7 +54,7 @@
Package: osmo-remsim-apitool
Architecture: any
Multi-Arch: same
-Depends: ${misc:Depends}, python3
+Depends: ${misc:Depends}, python3, python3-requests
Description: Osmocom Remote SIM - API tool for server
This is a small python tool for generating API requests to remsim-server,
which can be used by the system administrator to introspect and/or modify
--
To view, visit https://gerrit.osmocom.org/c/osmo-remsim/+/30519
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-remsim
Gerrit-Branch: master
Gerrit-Change-Id: I3b8f86b03aee145e0b0faf0394ab641666710bea
Gerrit-Change-Number: 30519
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: merged
osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/30509 )
Change subject: repo-install-test: fix osmo-trx-usrp1 check
......................................................................
repo-install-test: fix osmo-trx-usrp1 check
The DISTRO variable is either debian10 or debian11, fix the broken
check. This condition is there in the first place, because we don't
build the usrp1 backend for centos8.
Change-Id: I987f27db257961faf06824df2dcc8f9db1fedccf
Related: OS#5365
---
M scripts/repo-install-test/run-inside.sh
1 file changed, 4 insertions(+), 2 deletions(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, approved
fixeria: Looks good to me, approved
diff --git a/scripts/repo-install-test/run-inside.sh b/scripts/repo-install-test/run-inside.sh
index d3610cb..6f767bc 100755
--- a/scripts/repo-install-test/run-inside.sh
+++ b/scripts/repo-install-test/run-inside.sh
@@ -393,10 +393,12 @@
osmo-stp \
osmo-trx-uhd
- if [ "$DISTRO" = "debian" ]; then
+ case "$DISTRO" in
+ debian*)
test_binaries_version \
osmo-trx-usrp1
- fi
+ ;;
+ esac
}
services_check() {
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/30509
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I987f27db257961faf06824df2dcc8f9db1fedccf
Gerrit-Change-Number: 30509
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: merged