Skip to content
Commits on Source (2)
liblogger (1.0.0-1) UNRELEASED; urgency=medium
liblogger (1.0.0-1) unstable; urgency=medium
* Initial release (Closes: #<bug>)
* Initial release (Closes: #940585)
-- Andreas Tille <tille@debian.org> Mon, 29 Jul 2019 19:50:11 +0200
-- Andreas Tille <tille@debian.org> Tue, 17 Sep 2019 17:15:25 +0200
Source: liblogger
Section: science
Section: libdevel
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Andreas Tille <tille@debian.org>
Build-Depends: debhelper-compat (= 12),
cmake
cmake,
googletest <!nocheck>,
python3 <!nocheck>
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/med-team/liblogger
Vcs-Git: https://salsa.debian.org/med-team/liblogger.git
......
......@@ -4,28 +4,17 @@
export LC_ALL=C.UTF-8
include /usr/share/dpkg/default.mk
# this provides:
# DEB_SOURCE: the source package name
# DEB_VERSION: the full version of the package (epoch + upstream vers. + revision)
# DEB_VERSION_EPOCH_UPSTREAM: the package's version without the Debian revision
# DEB_VERSION_UPSTREAM_REVISION: the package's version without the Debian epoch
# DEB_VERSION_UPSTREAM: the package's upstream version
# DEB_DISTRIBUTION: the distribution(s) listed in the current entry of debian/changelog
# SOURCE_DATE_EPOCH: the source release date as seconds since the epoch, as
# specified by <https://reproducible-builds.org/specs/source-date-epoch/>
# for hardening you might like to uncomment this:
# export DEB_BUILD_MAINT_OPTIONS=hardening=+all
override_dh_auto_configure:
ln -s /usr/src/googletest/googletest vendor/googletest/googletest
dh_auto_configure -- -DCMAKE_BUILD_TYPE=RelWithDebInfo -Dlogger_build_tests=ON
# -DCMAKE_BUILD_TYPE=Release
%:
dh $@
### When overriding auto_test make sure DEB_BUILD_OPTIONS will be respected
#override_dh_auto_test:
#ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
# do_stuff_for_testing
#endif
### If you **really** can not use uscan (even not with mode=git) use a debian/get-orig-script
#get-orig-source:
# . debian/get-orig-source
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
$$(find . -name logger_test)
endif