Codebase list libbtbb / d164cdc
Added autopkgtest and prepare new version Ruben Undheim 5 years ago
5 changed file(s) with 43 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 libbtbb (2018.08.R1-1) UNRELEASED; urgency=medium
1
2 * New upstream release
3 * debian/compat: level 11
4 * debian/control:
5 - debhelper >= 11
6 - New standards version 4.2.1 - no changes
7 * debian/tests:
8 - Added autopkgtest to verify that it is possible to link with the library.
9 * debian/upstream/metadata: added metadata file
10
11 -- Ruben Undheim <ruben.undheim@gmail.com> Sat, 22 Sep 2018 15:08:16 +0200
12
013 libbtbb (2018.06.R1-1) unstable; urgency=medium
114
215 * New upstream release
11 Section: libs
22 Priority: optional
33 Maintainer: Ruben Undheim <ruben.undheim@gmail.com>
4 Build-Depends: debhelper (>= 9),
4 Build-Depends: debhelper (>= 11),
55 libpcap-dev,
66 cmake
77 Build-Depends-Indep: python-all-dev
8 Standards-Version: 4.1.5
8 Standards-Version: 4.2.1
99 Vcs-Git: https://github.com/rubund/debian-libbtbb.git
1010 Vcs-Browser: https://github.com/rubund/debian-libbtbb/tree/master
1111 Homepage: http://libbtbb.sourceforge.net/
0 #!/bin/sh
1
2 set -e
3
4 WORKDIR=$(mktemp -d)
5 trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM
6 cd $WORKDIR
7 cat <<EOF > btbbtest.c
8 #include <btbb.h>
9
10 int main()
11 {
12 return 0;
13 }
14 EOF
15
16 pkg-config --cflags --libs libbtbb
17
18 gcc -o btbbtest btbbtest.c `pkg-config --cflags --libs libbtbb`
19 echo "build: OK"
20 [ -x btbbtest ]
21 # > /dev/null because it writes this: full talloc report on 'sccp' (total 1 bytes in 1 blocks)
22 ./btbbtest
23 echo "run: OK"
24
0 Tests: can-link
1 Depends: libbtbb-dev