pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-bugzilla



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Jan 17 19:29:04 UTC 2025

Modified Files:
        pkgsrc/devel/py-bugzilla: Makefile PLIST distinfo
Removed Files:
        pkgsrc/devel/py-bugzilla/patches: patch-bugzilla___session.py

Log Message:
py-bugzilla: updated to 3.3.0

3.3.0 (June, 2024)
- Expose error codes from the REST API (Stanislav Levin)
- Fixed broken link in documentation (Danilo C. L. de Paula)
- Set `Bug.weburl` that is compatible with the REST API
- Do not convert 'blocks' or 'depends' to int in `Bugzilla.build_update` (Adam Williamson)
- Use proper REST API route for getting a single bug
- Avoid duplicate entries when one id is 0 (Ricardo Branco)
- Removed unused argument from `Bugzilla.add_dict`
- Fixed API key leak (Ricardo Branco)
- Automatically include alias in include_fields in `Bugzilla._getbugs`
- Added method `Bugzilla.query_return_extra`
- cli: Support --field and --field-json for bugzilla attach


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-bugzilla/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-bugzilla/PLIST
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-bugzilla/distinfo
cvs rdiff -u -r1.1 -r0 \
    pkgsrc/devel/py-bugzilla/patches/patch-bugzilla___session.py

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-bugzilla/Makefile
diff -u pkgsrc/devel/py-bugzilla/Makefile:1.7 pkgsrc/devel/py-bugzilla/Makefile:1.8
--- pkgsrc/devel/py-bugzilla/Makefile:1.7       Mon Apr 29 18:57:35 2024
+++ pkgsrc/devel/py-bugzilla/Makefile   Fri Jan 17 19:29:03 2025
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.7 2024/04/29 18:57:35 bsiegert Exp $
+# $NetBSD: Makefile,v 1.8 2025/01/17 19:29:03 adam Exp $
 
-DISTNAME=      python-bugzilla-3.2.0
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
+DISTNAME=      python_bugzilla-3.3.0
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/python_//}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/python-bugzilla/}
 
@@ -11,15 +10,12 @@ HOMEPAGE=   https://github.com/python-bugz
 COMMENT=       Bugzilla XMLRPC access module
 LICENSE=       gnu-gpl-v2
 
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
-
-PYTHON_VERSIONS_INCOMPATIBLE=  27
+TEST_DEPENDS+= ${PYPKGPREFIX}-responses-[0-9]*:../../net/py-responses
 
 USE_LANGUAGES= # none
 
-USE_PKG_RESOURCES=     yes
-
 SUBST_CLASSES+=                mandir
 SUBST_STAGE.mandir=    pre-configure
 SUBST_MESSAGE.mandir=  Setting correct mandir.
@@ -31,8 +27,5 @@ post-install:
        ${MV} bin/bugzilla bin/bugzilla-${PYVERSSUFFIX} && \
        ${MV} ${PKGMANDIR}/man1/bugzilla.1 ${PKGMANDIR}/man1/bugzilla-${PYVERSSUFFIX}.1 || ${TRUE}
 
-do-test:
-       cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests
-
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-bugzilla/PLIST
diff -u pkgsrc/devel/py-bugzilla/PLIST:1.3 pkgsrc/devel/py-bugzilla/PLIST:1.4
--- pkgsrc/devel/py-bugzilla/PLIST:1.3  Fri Jul  8 14:01:33 2022
+++ pkgsrc/devel/py-bugzilla/PLIST      Fri Jan 17 19:29:03 2025
@@ -1,5 +1,11 @@
-@comment $NetBSD: PLIST,v 1.3 2022/07/08 14:01:33 wiz Exp $
+@comment $NetBSD: PLIST,v 1.4 2025/01/17 19:29:03 adam Exp $
 bin/bugzilla-${PYVERSSUFFIX}
+${PYSITELIB}/${WHEEL_INFODIR}/COPYING
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/bugzilla/__init__.py
 ${PYSITELIB}/bugzilla/__init__.pyc
 ${PYSITELIB}/bugzilla/__init__.pyo
@@ -45,10 +51,4 @@ ${PYSITELIB}/bugzilla/oldclasses.pyo
 ${PYSITELIB}/bugzilla/rhbugzilla.py
 ${PYSITELIB}/bugzilla/rhbugzilla.pyc
 ${PYSITELIB}/bugzilla/rhbugzilla.pyo
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 man/man1/bugzilla-${PYVERSSUFFIX}.1

Index: pkgsrc/devel/py-bugzilla/distinfo
diff -u pkgsrc/devel/py-bugzilla/distinfo:1.6 pkgsrc/devel/py-bugzilla/distinfo:1.7
--- pkgsrc/devel/py-bugzilla/distinfo:1.6       Mon Apr 29 18:57:35 2024
+++ pkgsrc/devel/py-bugzilla/distinfo   Fri Jan 17 19:29:03 2025
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.6 2024/04/29 18:57:35 bsiegert Exp $
+$NetBSD: distinfo,v 1.7 2025/01/17 19:29:03 adam Exp $
 
-BLAKE2s (python-bugzilla-3.2.0.tar.gz) = d92cf6d3e3defd7f44349756507f631041851581395b3a303159d692201f441d
-SHA512 (python-bugzilla-3.2.0.tar.gz) = 215945a0ffd637be5567839303a738a0eef74427838bf0074a5f0ab6022306f47fc0dd5c43a3513b627fb458711f38046321ee9c2c3d43b61ffc577d6dd12375
-Size (python-bugzilla-3.2.0.tar.gz) = 114279 bytes
-SHA1 (patch-bugzilla___session.py) = 134ed66dae860195941dfc9c908b525a11112246
+BLAKE2s (python_bugzilla-3.3.0.tar.gz) = d7bfce4a6e448a3f7592235e095600762e897d8bddb8f7cc3f339b58e413c461
+SHA512 (python_bugzilla-3.3.0.tar.gz) = e8e015575a4d2540e351628099642d586bfeefdc8fca0b1e2de802db4ef91b26952d84b5073ef39a6e3a54b181b1937f169c4477267f777f5a9551a5757cacbf
+Size (python_bugzilla-3.3.0.tar.gz) = 120711 bytes



Home | Main Index | Thread Index | Old Index