Your message dated Sun, 24 May 2020 22:04:30 +0000
with message-id <e1jcyjo-000hqi...@fasolo.debian.org>
and subject line Bug#951681: fixed in python-jenkinsapi 0.3.11-2
has caused the Debian Bug report #951681,
regarding python-jenkinsapi: FTBFS due to missing build deps and pylint command
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
951681: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=951681
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python-jenkinsapi
Version: 0.3.11-1
Severity: serious
Tags: patch ftbfs
Justification: fails to build from source (but built successfully in the past)
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu focal ubuntu-patch

Hi,

python-jenkinsapi currently fails to build from source after the Python
3 changes. There are a few tweaks that need to be made to get it
building again.

In Ubuntu, the attached patch was applied to achieve the following:

  * Fix FTBFS:
    - Build-depend on dh-python and python3-pbr.
    - Use pylint instead of pylint3.

Thanks for considering the patch.

Logan

-- System Information:
Debian Release: buster/sid
  APT prefers eoan-updates
  APT policy: (500, 'eoan-updates'), (500, 'eoan-security'), (500, 'eoan'), 
(100, 'eoan-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.3.0-29-generic (SMP w/8 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru python-jenkinsapi-0.3.11/debian/control 
python-jenkinsapi-0.3.11/debian/control
--- python-jenkinsapi-0.3.11/debian/control     2020-02-16 18:39:59.000000000 
-0500
+++ python-jenkinsapi-0.3.11/debian/control     2020-02-19 22:01:41.000000000 
-0500
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Al Stone <a...@debian.org>
 Build-Depends: debhelper (>= 12), python3-all-dev, python3-lxml, 
- python3-setuptools, python3-pytest, pylint3
+ python3-setuptools, python3-pytest, pylint3, dh-python, python3-pbr
 Standards-Version: 4.5.0
 Homepage: http://pypi.python.org/pypi/jenkinsapi
 Vcs-Git: https://github.com/ahs3/python-jenkinsapi
diff -Nru python-jenkinsapi-0.3.11/debian/patches/codestyle.patch 
python-jenkinsapi-0.3.11/debian/patches/codestyle.patch
--- python-jenkinsapi-0.3.11/debian/patches/codestyle.patch     2020-02-16 
18:39:59.000000000 -0500
+++ python-jenkinsapi-0.3.11/debian/patches/codestyle.patch     2020-02-19 
22:01:41.000000000 -0500
@@ -1,11 +1,10 @@
-diff -Naur orig-jenkinsapi/Makefile fixed-jenkinsapi/Makefile
---- orig-jenkinsapi/Makefile   2020-02-16 17:49:45.404336646 -0700
-+++ fixed-jenkinsapi/Makefile  2020-02-16 17:50:25.352625604 -0700
+--- a/Makefile
++++ b/Makefile
 @@ -1,7 +1,6 @@
  .PHONY: lint tox dist
  
  lint:
 -      pycodestyle
-       pylint3 jenkinsapi/*.py
+       pylint jenkinsapi/*.py
  
  tox:
diff -Nru python-jenkinsapi-0.3.11/debian/patches/install.patch 
python-jenkinsapi-0.3.11/debian/patches/install.patch
--- python-jenkinsapi-0.3.11/debian/patches/install.patch       2020-02-16 
18:39:59.000000000 -0500
+++ python-jenkinsapi-0.3.11/debian/patches/install.patch       2020-02-19 
22:01:41.000000000 -0500
@@ -1,12 +1,11 @@
-diff -Naur orig-jenkinsapi/Makefile fixed-jenkinsapi/Makefile
---- orig-jenkinsapi/Makefile   2020-02-16 18:11:36.225956771 -0700
-+++ fixed-jenkinsapi/Makefile  2020-02-16 18:13:10.706654980 -0700
+--- a/Makefile
++++ b/Makefile
 @@ -1,4 +1,4 @@
 -.PHONY: lint tox dist
 +.PHONY: lint tox dist install
  
  lint:
-       pylint3 jenkinsapi/*.py
+       pylint jenkinsapi/*.py
 @@ -9,3 +9,5 @@
  dist:
        python3 setup.py sdist bdist_wheel
diff -Nru python-jenkinsapi-0.3.11/debian/patches/python3.patch 
python-jenkinsapi-0.3.11/debian/patches/python3.patch
--- python-jenkinsapi-0.3.11/debian/patches/python3.patch       2020-02-16 
18:39:59.000000000 -0500
+++ python-jenkinsapi-0.3.11/debian/patches/python3.patch       2020-02-19 
22:01:41.000000000 -0500
@@ -1,7 +1,6 @@
-diff -Naur python-jenkinsapi.github/Makefile fixed-jenkinsapi/Makefile
---- python-jenkinsapi.github/Makefile  2020-02-16 16:46:46.767307926 -0700
-+++ fixed-jenkinsapi/Makefile  2020-02-16 17:02:37.545891630 -0700
-@@ -1,17 +1,17 @@
+--- a/Makefile
++++ b/Makefile
+@@ -1,7 +1,7 @@
  .PHONY: test lint tox coverage dist
  
  test:
@@ -10,10 +9,7 @@
  
  lint:
        pycodestyle
--      pylint jenkinsapi/*.py
-+      pylint3 jenkinsapi/*.py
- 
- tox:
+@@ -11,7 +11,7 @@
        tox
  
  dist:

--- End Message ---
--- Begin Message ---
Source: python-jenkinsapi
Source-Version: 0.3.11-2
Done: Al Stone <a...@debian.org>

We believe that the bug you reported is fixed in the latest version of
python-jenkinsapi, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 951...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Al Stone <a...@debian.org> (supplier of updated python-jenkinsapi package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sun, 24 May 2020 15:09:34 -0600
Source: python-jenkinsapi
Binary: python3-jenkinsapi
Architecture: source all
Version: 0.3.11-2
Distribution: unstable
Urgency: medium
Maintainer: Al Stone <a...@debian.org>
Changed-By: Al Stone <a...@debian.org>
Description:
 python3-jenkinsapi - bindings for Python usage of the Jenkins remote API
Closes: 951681 952750
Changes:
 python-jenkinsapi (0.3.11-2) unstable; urgency=medium
 .
   * Fix "FTBFS due to missing build deps and pylint command" -- used the
     patch to correct build-deps and pylint usage (Closes: #951681)
   * Fix "missing (unversioned) Breaks+Replaces: python-jenkinsapi" -- just
     needed to add Breaks+Replace to control file since python3-jenkinsapi
     replaces the old package completely (Closes: #952750)
   * Minor lintian fix to remove a .gitignore file from build
Checksums-Sha1:
 79e9fc7393ebeca8be455449e8c9ff3eb753697f 1947 python-jenkinsapi_0.3.11-2.dsc
 4ce1c16b0dfff7470381c441cd216893985b789e 3676 
python-jenkinsapi_0.3.11-2.debian.tar.xz
 49e14e98731a94011f79a98e3da1418648e04bed 7067 
python-jenkinsapi_0.3.11-2_amd64.buildinfo
 71d4f5702994f9d76b1536840840cb07d7696b36 102480 
python3-jenkinsapi_0.3.11-2_all.deb
Checksums-Sha256:
 20c34400553a3561888cad363bce9258e39f021cf04da604840b7fbbd9a29a66 1947 
python-jenkinsapi_0.3.11-2.dsc
 3afca41567dc7db4ef6303c7a62f1f0599994d42a5ed52d87313ee9ab0f6ed06 3676 
python-jenkinsapi_0.3.11-2.debian.tar.xz
 06f9c600b48f7e8ca59ec02f33c6b7ac81495665504de257c7d353171669b95a 7067 
python-jenkinsapi_0.3.11-2_amd64.buildinfo
 15e9840d235367b1a3f13a2a2391f938a8e9293aa47f1f3e1405c5e0e2f0910e 102480 
python3-jenkinsapi_0.3.11-2_all.deb
Files:
 086eeb449fcabe78e69d548f6382ee81 1947 python optional 
python-jenkinsapi_0.3.11-2.dsc
 01b3bc74fad51de1c54ff1b7060d7d7f 3676 python optional 
python-jenkinsapi_0.3.11-2.debian.tar.xz
 e11dcddde122eb583517b49a3880cd78 7067 python optional 
python-jenkinsapi_0.3.11-2_amd64.buildinfo
 257cc4bd9fb9dbbcf6a2fea0b8bccae0 102480 python optional 
python3-jenkinsapi_0.3.11-2_all.deb

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEiclaKI7ZGQ+4GJLWUwywAtdhsWwFAl7K7Q0ACgkQUwywAtdh
sWzQ/Q//RBtHoUdNS+GVS9qy74u2BIR4bPp8R6g+/oh1a4FGDvBW2czq+jAasJnS
e3u2IwUz8KuH28o5HOj1P/uPFCM7UuQtaBCOfeDsmHhm1tQljIO8NL/X+A0bVUMB
y7F9CbgI2wh/WMjXmQyqrDsEs8lw47OxHwvncd8OviehJ5RXAKUFi1SQ/u8W8RWB
buAXmXm2LNEExS8MIi21Hd90pUidijSDzCiVzGji7inEvRzH7bRMJNeEMp6bjg61
Vup/0URAkFeYTo8D82ukFnkHG03JiP7ptqRq/ubJBa9k82mtqxJVs3m608z90rXd
Bq53MR6caaj12rslaaSYIUQXJMxoQMi8swIzy08UZASfNG5o36+n829DsHuqLhyN
ihho3pG0d2hrUQBk3rU5OM8MwGU8j+qt+Bed3ohHFjuuD+ACtXs5A1M6cYK5SY59
KHUXJAtsmsZ2VnlmZ/ICUbzv5HSTd1sJpblje3cI9QdydN2jrfOTglIYmFKwCB4z
GY3we98mfryue48g39YbMQz63yI/LAKHQfqDPodME9u+zfhGHC93EwMBTaMhtOPU
1RnLrLa74qo4PHgvS5EFu8/n/6qxQeC4+WM9nITIgl1KKIZYON7eZYG2FHc8VHz/
obTBJlNv10oN97FjVPTU0N1rl4gcj3/CFJlK9Re5WtD6hNHZqU0=
=SvTj
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to