diff -Nru pyfg-0.50/debian/changelog pyfg-0.50/debian/changelog --- pyfg-0.50/debian/changelog 2019-10-06 20:23:08.000000000 +0000 +++ pyfg-0.50/debian/changelog 2022-06-14 22:29:50.000000000 +0000 @@ -1,3 +1,16 @@ +pyfg (0.50-3) unstable; urgency=medium + + [ Ondřej Nový ] + * d/control: Update Vcs-* fields with new Debian Python Team Salsa + layout. + + [ Sandro Tosi ] + * Use the new Debian Python Team contact name and address + * debian/patches/further-modern-pip-fixes.patch + - additional fixes to setup.py for a recent pip releases; Closes: #960576 + + -- Sandro Tosi Tue, 14 Jun 2022 18:29:50 -0400 + pyfg (0.50-2) unstable; urgency=medium [ Ondřej Nový ] diff -Nru pyfg-0.50/debian/control pyfg-0.50/debian/control --- pyfg-0.50/debian/control 2019-10-06 20:23:08.000000000 +0000 +++ pyfg-0.50/debian/control 2022-06-14 22:29:50.000000000 +0000 @@ -2,7 +2,7 @@ Section: python Priority: optional Maintainer: Vincent Bernat -Uploaders: Debian Python Modules Team +Uploaders: Debian Python Team Build-Depends: debhelper-compat (= 9), dh-python, python3-all, python3-paramiko, @@ -10,8 +10,8 @@ python3-pip, Standards-Version: 4.4.1 Homepage: https://github.com/spotify/pyfg -Vcs-Git: https://salsa.debian.org/python-team/modules/pyfg.git -Vcs-Browser: https://salsa.debian.org/python-team/modules/pyfg +Vcs-Git: https://salsa.debian.org/python-team/packages/pyfg.git +Vcs-Browser: https://salsa.debian.org/python-team/packages/pyfg Package: python3-pyfg Architecture: all diff -Nru pyfg-0.50/debian/patches/further-modern-pip-fixes.patch pyfg-0.50/debian/patches/further-modern-pip-fixes.patch --- pyfg-0.50/debian/patches/further-modern-pip-fixes.patch 1970-01-01 00:00:00.000000000 +0000 +++ pyfg-0.50/debian/patches/further-modern-pip-fixes.patch 2022-06-14 22:29:50.000000000 +0000 @@ -0,0 +1,11 @@ +--- a/setup.py ++++ b/setup.py +@@ -13,7 +13,7 @@ install_reqs = parse_requirements('requi + + # reqs is a list of requirement + # e.g. ['django==1.5.1', 'mezzanine==1.4.6'] +-reqs = [str(ir.req) for ir in install_reqs] ++reqs = [str(ir.requirement) for ir in install_reqs] + + setup( + name="pyfg", diff -Nru pyfg-0.50/debian/patches/series pyfg-0.50/debian/patches/series --- pyfg-0.50/debian/patches/series 2019-10-06 20:23:08.000000000 +0000 +++ pyfg-0.50/debian/patches/series 2022-06-14 22:29:50.000000000 +0000 @@ -1 +1,2 @@ eaf0cd11401252da5178531fc151781f8404473a.patch +further-modern-pip-fixes.patch