Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
rules: Attempt to fix built-using to have the source package version, not binNMU.
· e9a9d2d2
Timo Aaltonen
authored
Sep 12, 2019
e9a9d2d2
release to sid
· 69a01185
Timo Aaltonen
authored
Sep 12, 2019
69a01185
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
69a01185
apitrace (8.0+repack-2) unstable; urgency=medium
* rules: Attempt to fix built-using to have the source package
version, not binNMU.
-- Timo Aaltonen <tjaalton@debian.org> Thu, 12 Sep 2019 15:46:48 +0300
apitrace (8.0+repack-1) unstable; urgency=medium
* New upstream release.
...
...
debian/rules
View file @
69a01185
...
...
@@ -30,11 +30,13 @@ override_dh_missing:
override_dh_gencontrol
:
echo
"built-using:Depends=zlib (=
$(
shell dpkg-query -s zlib1g-dev
\
| grep Version:
\
| cut -d' ' -f2
)
)"
\
| cut -d' ' -f2
\
| sed 's/+.*//'
)
)"
\
>>
debian/apitrace-tracers.substvars
echo
"built-using:Depends=snappy (=
$(
shell dpkg-query -s libsnappy-dev
\
| grep Version:
\
| cut -d' ' -f2
)
)"
\
| cut -d' ' -f2
\
| sed 's/+.*//'
)
)"
\
>>
debian/apitrace-tracers.substvars
dh_gencontrol
...
...