Attempt to fix .deb package

After recent switch to legacy python2 .deb fails on OBS. Let's put
known-to-work python3 dependency back but keep the script itself on
python without version specifier as it seems to work fine with both
versions.

This, in turn, causes tests to fail on FreeBSD so disable them for now.

Change-Id: I4a87252d411d840fca7362736a8c7877efa6ff52
Related: SYS#3322
This commit is contained in:
Max
2017-07-11 15:16:16 +02:00
parent 1f3a1ce1a3
commit 886ecef1c0
4 changed files with 8 additions and 8 deletions

View File

@@ -31,5 +31,7 @@ cd "$base"
autoreconf --install --force
./configure
$MAKE $PARALLEL_MAKE
$MAKE check || cat-testlogs.sh
$MAKE distcheck || cat-testlogs.sh
if [ "x$label" != "xFreeBSD_amd64" ]; then
$MAKE check || cat-testlogs.sh
$MAKE distcheck || cat-testlogs.sh
fi

2
debian/control vendored
View File

@@ -8,7 +8,7 @@ Build-Depends: debhelper (>= 9),
dh-systemd (>= 1.5),
autotools-dev,
pkg-config,
python2.7,
python3,
libosmocore-dev,
libosmo-abis-dev,
libosmo-netif-dev,

View File

@@ -22,11 +22,9 @@ EXTRA_DIST = \
auc_ts_55_205_test_sets.err \
$(NULL)
check_PROGRAMS = auc_ts_55_205_test_sets
noinst_PROGRAMS = \
auc_test \
auc_ts_55_205_test_sets \
$(NULL)
noinst_PROGRAMS = auc_test
auc_test_SOURCES = \
auc_test.c \

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python
# Convert test sets pasted from 3GPP TS 55.205 to C code.