diff -Nru golang-github-francoispqt-gojay-1.2.13/debian/changelog golang-github-francoispqt-gojay-1.2.13/debian/changelog --- golang-github-francoispqt-gojay-1.2.13/debian/changelog 2020-07-26 15:44:45.000000000 +0000 +++ golang-github-francoispqt-gojay-1.2.13/debian/changelog 2020-10-08 17:48:11.000000000 +0000 @@ -1,3 +1,10 @@ +golang-github-francoispqt-gojay (1.2.13-5) unstable; urgency=medium + + * debian/control: Update my uploader name. + * debian/rules: Do not build examples. + + -- Aloïs Micard Thu, 08 Oct 2020 19:48:11 +0200 + golang-github-francoispqt-gojay (1.2.13-4) unstable; urgency=medium [ Alois Micard ] diff -Nru golang-github-francoispqt-gojay-1.2.13/debian/control golang-github-francoispqt-gojay-1.2.13/debian/control --- golang-github-francoispqt-gojay-1.2.13/debian/control 2020-07-26 15:44:45.000000000 +0000 +++ golang-github-francoispqt-gojay-1.2.13/debian/control 2020-10-08 17:48:11.000000000 +0000 @@ -1,7 +1,7 @@ Source: golang-github-francoispqt-gojay Maintainer: Debian Go Packaging Team Uploaders: - Alois Micard , + Aloïs Micard , Roger Shimizu Section: devel Testsuite: autopkgtest-pkg-go diff -Nru golang-github-francoispqt-gojay-1.2.13/debian/rules golang-github-francoispqt-gojay-1.2.13/debian/rules --- golang-github-francoispqt-gojay-1.2.13/debian/rules 2020-07-26 15:44:45.000000000 +0000 +++ golang-github-francoispqt-gojay-1.2.13/debian/rules 2020-10-08 17:48:11.000000000 +0000 @@ -2,14 +2,14 @@ include /usr/share/dpkg/pkg-info.mk +# Exclude examples/ folder since the example build binary +export DH_GOLANG_EXCLUDES := examples + override_dh_auto_install: cd obj-$(DEB_TARGET_GNU_TYPE); \ help2man -N -n "Fast JSON code generator in golang" \ --version-string="$(DEB_VERSION)" --no-discard-stderr \ - -o gojay.1 bin/gojay; \ - for bin in encode-decode-map http-json standard websocket; do \ - mv bin/$$bin bin/gojay-$$bin; \ - done + -o gojay.1 bin/gojay dh_auto_install %: