diff -Nru baresip-1.0.0/debian/changelog baresip-1.0.0/debian/changelog --- baresip-1.0.0/debian/changelog 2020-11-09 12:29:53.000000000 +0000 +++ baresip-1.0.0/debian/changelog 2020-12-20 15:27:17.000000000 +0000 @@ -1,3 +1,19 @@ +baresip (1.0.0-4) unstable; urgency=medium + + * update Homepage; + closes: bug#974748, thanks to Davide Prina + * declare compliance with Debian Policy 4.5.1 + * update git-buildpackage settings: + + use DEP-14 git branch names + + add usage comment + * drop README.source (dgit unused for some time) + * add patch cherry-picked upstream + to fix bind network to localhost in a test + * use debhelper compatibility level 13 (not 12) + * tighten to not tolerate testsuite failure + + -- Jonas Smedegaard Sun, 20 Dec 2020 16:27:17 +0100 + baresip (1.0.0-3) unstable; urgency=medium * add patch 2002 to make testsuite more verbose diff -Nru baresip-1.0.0/debian/control baresip-1.0.0/debian/control --- baresip-1.0.0/debian/control 2020-11-09 12:29:53.000000000 +0000 +++ baresip-1.0.0/debian/control 2020-12-20 15:08:09.000000000 +0000 @@ -2,7 +2,7 @@ Section: comm Priority: optional Build-Depends: - debhelper-compat (= 12), + debhelper-compat (= 13), help2man, libasound2-dev, libavcodec-dev, @@ -51,10 +51,10 @@ Uploaders: Jonas Smedegaard , Vasudev Kamath , -Standards-Version: 4.5.0 +Standards-Version: 4.5.1 Vcs-Git: https://salsa.debian.org/pkg-voip-team/baresip.git Vcs-Browser: https://salsa.debian.org/pkg-voip-team/baresip -Homepage: http://www.creytiv.com/baresip.html +Homepage: https://github.com/baresip/baresip Rules-Requires-Root: no Package: baresip diff -Nru baresip-1.0.0/debian/gbp.conf baresip-1.0.0/debian/gbp.conf --- baresip-1.0.0/debian/gbp.conf 2018-06-02 17:32:36.000000000 +0000 +++ baresip-1.0.0/debian/gbp.conf 2020-12-20 15:04:45.000000000 +0000 @@ -1,6 +1,14 @@ -# Configuration file for git-buildpackage and friends +# clone this source: gbp clone $PKG_GIT_URL +# track upstream source: git remote add upstream-git $UPSTREAM_GIT_URL +# update this source: gbp pull +# update upstream source: git fetch upstream-git --tags +# import upstream release: gbp import-orig --upstream-vcs-tag=$VERSION --uscan +# build package: gbp buildpackage +# publish source release: gbp tag && gbp push [DEFAULT] pristine-tar = True sign-tags = True filter = ['*/.git*', 'debian/*'] +debian-branch = debian/latest +upstream-branch = upstream/latest diff -Nru baresip-1.0.0/debian/patches/020201025~e8db37e.patch baresip-1.0.0/debian/patches/020201025~e8db37e.patch --- baresip-1.0.0/debian/patches/020201025~e8db37e.patch 1970-01-01 00:00:00.000000000 +0000 +++ baresip-1.0.0/debian/patches/020201025~e8db37e.patch 2020-12-20 15:16:14.000000000 +0000 @@ -0,0 +1,18 @@ +Description: test: bind network to localhost +Origin: upstream, https://github.com/baresip/baresip/commit/e8db37e +Author: Alfred E. Heggestad +Bug: https://github.com/baresip/baresip/issues/1090 +Last-Update: 2020-12-20 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/test/main.c ++++ b/test/main.c +@@ -211,6 +211,8 @@ + goto out; + } + ++ str_ncpy(config->net.ifname, "127.0.0.1", sizeof(config->net.ifname)); ++ + err = baresip_init(config); + if (err) + goto out; diff -Nru baresip-1.0.0/debian/patches/series baresip-1.0.0/debian/patches/series --- baresip-1.0.0/debian/patches/series 2020-10-08 13:10:54.000000000 +0000 +++ baresip-1.0.0/debian/patches/series 2020-12-20 15:16:09.000000000 +0000 @@ -1,3 +1,4 @@ +020201025~e8db37e.patch 1001_gcc7_compat.patch 1002_system_header_locations.patch 2001_drop_libre_so_check.patch diff -Nru baresip-1.0.0/debian/README.source baresip-1.0.0/debian/README.source --- baresip-1.0.0/debian/README.source 2019-02-11 18:24:31.000000000 +0000 +++ baresip-1.0.0/debian/README.source 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -Uploding Package ----------------- - -It is recommended that package upload is done using dgit and source only upload -is preferred. Please use following command for upload. If you forget the history -will not be noted in dgit. - - dgit push-source --gbp - - -- Vasudev Kamath , Sun, 3 Jun 2018 20:28:18 +0530 diff -Nru baresip-1.0.0/debian/rules baresip-1.0.0/debian/rules --- baresip-1.0.0/debian/rules 2020-11-09 12:29:53.000000000 +0000 +++ baresip-1.0.0/debian/rules 2020-12-20 15:19:38.000000000 +0000 @@ -34,16 +34,14 @@ EXTRA_LFLAGS="$(LDFLAGS)" \ DESTDIR=debian/tmp +%: + dh $@ + override_dh_auto_build: dh_auto_build -- $(DEB_MAKE_EXTRA_ARGS) info all $(call _mkman, ./baresip, debian/baresip.1, \ portable and modular command-line SIP user-agent) -# tolerate mysterious failure in automated checking testsuite -# (see ) -override_dh_auto_test: - dh_auto_test || make info - override_dh_auto_install: dh_auto_install -- $(DEB_MAKE_EXTRA_ARGS) @@ -64,6 +62,3 @@ override_dh_installdocs: dh_installdocs --all -- $(DOCS) - -%: - dh $@