Projects
osmocom:master
osmo-bsc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 166
View file
osmo-bsc.spec
Changed
@@ -18,13 +18,13 @@ Name: osmo-bsc Requires: osmocom-master -Version: 1.10.0.195.241e5 +Version: 1.10.0.196.e6337 Release: 0 Summary: OsmoBSC: Osmocom's Base Station Controller for 2G CS mobile networks License: AGPL-3.0-or-later AND GPL-2.0-or-later Group: Hardware/Mobile URL: https://osmocom.org/projects/osmobsc -Source: osmo-bsc_1.10.0.195.241e5.tar.xz +Source: osmo-bsc_1.10.0.196.e6337.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.9 BuildRequires: libtool >= 2
View file
commit_241e594f7af9d90ae17770ff11a70c30dbb8a1c6.txt
Deleted
View file
commit_e6337315d067c45daaa5f6e5fa0c8581595b3055.txt
Added
View file
osmo-bsc_1.10.0.195.241e5.dsc -> osmo-bsc_1.10.0.196.e6337.dsc
Changed
@@ -2,7 +2,7 @@ Source: osmo-bsc Binary: osmo-bsc, osmo-bsc-dbg, abisip-find, osmo-bsc-ipaccess-utils, osmo-bsc-bs11-utils, osmo-bsc-meas-utils, osmo-bsc-doc Architecture: any all -Version: 1.10.0.195.241e5 +Version: 1.10.0.196.e6337 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/osmo-bsc Standards-Version: 3.9.8 @@ -18,8 +18,8 @@ osmo-bsc-ipaccess-utils deb net extra arch=any osmo-bsc-meas-utils deb net extra arch=any Checksums-Sha1: - d24b4efad2ff42eb25da28760e8f806d250853a9 602912 osmo-bsc_1.10.0.195.241e5.tar.xz + e2deaffcf804199c3020d32c8797cc45d16a4da0 602952 osmo-bsc_1.10.0.196.e6337.tar.xz Checksums-Sha256: - f4251f55353be48e81960dde86cd164708fac107f399f79b15ea21c72f489a4a 602912 osmo-bsc_1.10.0.195.241e5.tar.xz + 8630734e2842c73d01b6cdd70f7f34fa85b5cdb1d878390888f513bf68a3e93c 602952 osmo-bsc_1.10.0.196.e6337.tar.xz Files: - bbd95757c80f8aef4329656d8faa3a7e 602912 osmo-bsc_1.10.0.195.241e5.tar.xz + 4e389ab4dcd7655a47d12b926a8cce25 602952 osmo-bsc_1.10.0.196.e6337.tar.xz
View file
osmo-bsc_1.10.0.195.241e5.tar.xz/.tarball-version -> osmo-bsc_1.10.0.196.e6337.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.10.0.195-241e5 +1.10.0.196-e6337
View file
osmo-bsc_1.10.0.195.241e5.tar.xz/configure.ac -> osmo-bsc_1.10.0.196.e6337.tar.xz/configure.ac
Changed
@@ -42,6 +42,24 @@ AM_CONDITIONAL(BUILD_IPA_UTILS, test "x$osmo_ac_ipa_utils" = "xyes") AC_SUBST(osmo_ac_ipa_utils) +# Enable/disable osmo-meas-udp2db +AC_ARG_ENABLE(meas-udp2db, AS_HELP_STRING(--enable-meas-udp2db, Build osmo-meas-udp2db: listen to meas_feed on UDP and write it to an sqlite3 database default=no), + osmo_ac_meas_udp2db="$enableval",osmo_ac_meas_udp2db="no") +AM_CONDITIONAL(BUILD_MEAS_UDP2DB, test "x$osmo_ac_meas_udp2db" = "xyes") +AC_SUBST(osmo_ac_meas_udp2db) + +# Enable/disable osmo-meas-pcap2db +AC_ARG_ENABLE(meas-pcap2db, AS_HELP_STRING(--enable-meas-pcap2db, Build osmo-meas-pcap2db: read PCAP file with meas_feed data and write it to an sqlite3 database default=no), + osmo_ac_meas_pcap2db="$enableval",osmo_ac_meas_pcap2db="no") +AM_CONDITIONAL(BUILD_MEAS_PCAP2DB, test "x$osmo_ac_meas_pcap2db" = "xyes") +AC_SUBST(osmo_ac_meas_pcap2db) + +# Enable/disable meas_vis +AC_ARG_ENABLE(meas-vis, AS_HELP_STRING(--enable-meas-vis, Build meas_vis: curses-visualization of measurements default=no), + osmo_ac_meas_vis="$enableval",osmo_ac_meas_vis="no") +AM_CONDITIONAL(BUILD_MEAS_VIS, test "x$osmo_ac_meas_vis" = "xyes") +AC_SUBST(osmo_ac_meas_vis) + dnl checks for libraries PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.8.0) PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.8.0) @@ -55,19 +73,15 @@ dnl checks for header files AC_HEADER_STDC -found_pcap=yes -AC_CHECK_HEADERS(pcap/pcap.h,,found_pcap=no) -AM_CONDITIONAL(HAVE_PCAP, test "$found_pcap" = yes) - -found_cdk=yes -AC_CHECK_HEADERS(cdk/cdk.h,,found_cdk=no) -AM_CONDITIONAL(HAVE_LIBCDK, test "$found_cdk" = yes) - -found_sqlite3=yes -PKG_CHECK_MODULES(SQLITE3, sqlite3, ,found_sqlite3=no) -AM_CONDITIONAL(HAVE_SQLITE3, test "$found_sqlite3" = yes) -AC_SUBST(found_sqlite3) - +if test "$osmo_ac_meas_pcap2db" = "yes" || test "$osmo_ac_meas_udp2db" = "yes"; then + PKG_CHECK_MODULES(SQLITE3, sqlite3) +fi +if test "$osmo_ac_meas_pcap2db" = "yes"; then + AC_CHECK_HEADERS(pcap/pcap.h, , AC_MSG_ERROR(Unable to find libpcap)) +fi +if test "$osmo_ac_meas_vis" = "yes"; then + AC_CHECK_HEADERS(cdk/cdk.h, , AC_MSG_ERROR(Unable to find libcdk)) +fi dnl Checks for typedefs, structures and compiler characteristics
View file
osmo-bsc_1.10.0.195.241e5.tar.xz/contrib/jenkins.sh -> osmo-bsc_1.10.0.196.e6337.tar.xz/contrib/jenkins.sh
Changed
@@ -60,7 +60,13 @@ osmo-build-dep.sh osmo-mgw # Additional configure options and depends -CONFIG="--enable-external-tests --enable-werror" +CONFIG=" + --enable-external-tests + --enable-meas-pcap2db + --enable-meas-udp2db + --enable-meas-vis + --enable-werror +" if "$WITH_MANUALS" = "1" ; then CONFIG="$CONFIG --enable-manuals" fi
View file
osmo-bsc_1.10.0.195.241e5.tar.xz/debian/changelog -> osmo-bsc_1.10.0.196.e6337.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -osmo-bsc (1.10.0.195.241e5) unstable; urgency=medium +osmo-bsc (1.10.0.196.e6337) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Mon, 17 Jul 2023 09:05:31 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Thu, 20 Jul 2023 07:26:05 +0000 osmo-bsc (1.10.0) unstable; urgency=medium
View file
osmo-bsc_1.10.0.195.241e5.tar.xz/debian/rules -> osmo-bsc_1.10.0.196.e6337.tar.xz/debian/rules
Changed
@@ -2,7 +2,12 @@ %: dh $@ --with autoreconf -CONFIGURE_FLAGS += --with-systemdsystemunitdir=/lib/systemd/system --enable-manuals +CONFIGURE_FLAGS += \ + --enable-manuals \ + --enable-meas-vis \ + --with-systemdsystemunitdir=/lib/systemd/system \ + $(NULL) + override_dh_auto_configure: dh_auto_configure -- $(CONFIGURE_FLAGS)
View file
osmo-bsc_1.10.0.195.241e5.tar.xz/src/utils/Makefile.am -> osmo-bsc_1.10.0.196.e6337.tar.xz/src/utils/Makefile.am
Changed
@@ -28,17 +28,17 @@ isdnsync \ meas_json \ $(NULL) -if HAVE_SQLITE3 +if BUILD_MEAS_UDP2DB bin_PROGRAMS += \ osmo-meas-udp2db \ $(NULL) -if HAVE_PCAP +endif +if BUILD_MEAS_PCAP2DB bin_PROGRAMS += \ osmo-meas-pcap2db \ $(NULL) endif -endif -if HAVE_LIBCDK +if BUILD_MEAS_VIS bin_PROGRAMS += \ meas_vis \ $(NULL)
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.