Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (6)
Fix autopkgtest
· d7c0a057
Andreas Tille
authored
Dec 20, 2018
d7c0a057
Normalise autopkgtest (as in other Debian Med packages)
· 4f7dfb60
Andreas Tille
authored
Dec 20, 2018
4f7dfb60
debhelper 11
· 0433a6db
Andreas Tille
authored
Dec 20, 2018
0433a6db
Remove trailing whitespace in debian/changelog
· fee59013
Andreas Tille
authored
Dec 20, 2018
fee59013
Revert the attempt to simplify unzipping files which was wrong
· 2712a7e6
Andreas Tille
authored
Dec 20, 2018
2712a7e6
Upload to unstable
· 8d020f39
Andreas Tille
authored
Dec 20, 2018
8d020f39
Show whitespace changes
Inline
Side-by-side
debian/README.test
0 → 100644
View file @
8d020f39
Notes
on
how
this
package
can
be
tested
.
────────────────────────────────────────
This
package
can
be
tested
by
running
the
provided
test
:
sh
run
-
unit
-
test
in
order
to
confirm
its
integrity
.
debian/changelog
View file @
8d020f39
libcereal (1.2.2-2) unstable; urgency=medium
* Team upload.
* Fix autopkgtest
Closes: #911261
* Normalise autopkgtest (as in other Debian Med packages)
* debhelper 11
* Remove trailing whitespace in debian/changelog
-- Andreas Tille <tille@debian.org> Thu, 20 Dec 2018 15:07:17 +0100
libcereal (1.2.2-1) unstable; urgency=medium
* New upstream release.
...
...
debian/compat
View file @
8d020f39
1
0
1
1
debian/control
View file @
8d020f39
...
...
@@ -3,7 +3,7 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Michael R. Crusoe <michael.crusoe@gmail.com>
Section: libdevel
Priority: optional
Build-Depends: debhelper (>= 1
0
),
Build-Depends: debhelper (>= 1
1~
),
libboost-serialization-dev,
libboost-test-dev,
cmake,
...
...
debian/libcereal-dev.docs
View file @
8d020f39
debian/tests/run-tests
debian/tests/run-unit-test
debian/README.test
debian/rules
View file @
8d020f39
...
...
@@ -11,3 +11,4 @@ override_dh_auto_build:
override_dh_install:
dh_install --exclude license
sed -i '/add_subdirectory(doc)/d' debian/*/usr/share/doc/libcereal-dev/tests/CMakeLists.txt
debian/tests/control
View file @
8d020f39
Tests: run-test
s
Tests: run-
unit-
test
Depends: @, @builddeps@
Restrictions: allow-stderr
debian/tests/run-test
s
→
debian/tests/run-
unit-
test
View file @
8d020f39
#!/bin/sh
pkg
=
libcereal-dev
if
[
"
$ADTTMP
"
=
""
]
;
then
ADTTMP
=
`
mktemp
-d
/tmp/
${
pkg
}
-test
.XXXXXX
`
if
[
"
$AUTOPKGTEST_TMP
"
=
""
]
;
then
AUTOPKGTEST_TMP
=
`
mktemp
-d
/tmp/
${
pkg
}
-test
.XXXXXX
`
trap
"rm -rf
$AUTOPKGTEST_TMP
"
0 INT QUIT ABRT PIPE TERM
fi
cd
$ADTTMP
cd
$AUTOPKGTEST_TMP
cp
-rs
/usr/share/doc/
libcereal-dev
/tests/
*
.
cp
-rs
/usr/share/doc/
${
pkg
}
/tests/
*
.
for
file
in
`
find
.
-name
"*.gz"
`
;
do
gunzip
<
${
file
}
>
${
file
%%.gz
}
;
done
cmake
-DONLY_TEST
=
on
-DSKIP_PORTABILITY_TEST
=
on
.
make