pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/audio/eyeD3
Module Name: pkgsrc
Committed By: adam
Date: Mon Apr 28 07:17:14 UTC 2025
Modified Files:
pkgsrc/audio/eyeD3: Makefile PLIST distinfo
Log Message:
eyeD3: updated to 0.9.8
v0.9.8 (2025-04-26) : Armed & Dangerous
New
* Added rudimentary support for iTunes MVNM and MVIN frames.
Changes
* Added support for Python 3.11, 3.12, and 3.13
* Using PDM for dependency management.
* Raise GenreException instead of ValueError
* Removed support for Python 3.7 and 3.8
Fix
* recording date fix
* improve printing of WXXX frames
* align output from classic plugin
* classic plugin: decode ufid.owner_id for display
* handle BrokenPipeError
* Improved TextFrame ID checking.
* Fix dependency on `coverage` to be conditional to `test` extra
Other
* Skip tests if the data directory isn't found
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/audio/eyeD3/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/audio/eyeD3/PLIST
cvs rdiff -u -r1.9 -r1.10 pkgsrc/audio/eyeD3/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/eyeD3/Makefile
diff -u pkgsrc/audio/eyeD3/Makefile:1.23 pkgsrc/audio/eyeD3/Makefile:1.24
--- pkgsrc/audio/eyeD3/Makefile:1.23 Mon Aug 14 05:23:47 2023
+++ pkgsrc/audio/eyeD3/Makefile Mon Apr 28 07:17:13 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.23 2023/08/14 05:23:47 wiz Exp $
+# $NetBSD: Makefile,v 1.24 2025/04/28 07:17:13 adam Exp $
-DISTNAME= eyeD3-0.9.7
-PKGREVISION= 1
+DISTNAME= eyed3-0.9.8
+PKGNAME= ${DISTNAME:S/d3/D3/}
CATEGORIES= audio python
MASTER_SITES= ${MASTER_SITE_PYPI:=e/eyed3/}
@@ -10,23 +10,14 @@ HOMEPAGE= https://eyed3.readthedocs.io/
COMMENT= Python audio data toolkit (ID3 and MP3)
LICENSE= gnu-gpl-v3
-EGG_NAME= ${DISTNAME:tl}
-
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-deprecation>=2.1.0:../../devel/py-deprecation
-DEPENDS+= ${PYPKGPREFIX}-filetype>=1.0.7:../../sysutils/py-filetype
-TEST_DEPENDS+= ${PYPKGPREFIX}-factory_boy>=3.1.0:../../devel/py-factory_boy
-TEST_DEPENDS+= ${PYPKGPREFIX}-flake8>=3.8.4:../../devel/py-flake8
-TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6.2.1:../../devel/py-test
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=2.10.1:../../devel/py-test-cov
+DEPENDS+= ${PYPKGPREFIX}-filetype>=1.2.0:../../sysutils/py-filetype
+TEST_DEPENDS+= ${PYPKGPREFIX}-factory_boy>=3.3.3:../../devel/py-factory_boy
+TEST_DEPENDS+= ${PYPKGPREFIX}-flake8>=7.2.0:../../devel/py-flake8
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=6.1.1:../../devel/py-test-cov
USE_LANGUAGES= # none
-USE_PKG_RESOURCES= yes
-
-PYTHON_VERSIONS_INCOMPATIBLE= 27
-
-do-test:
- cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} pytest-${PYVERSSUFFIX} tests
-
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/audio/eyeD3/PLIST
diff -u pkgsrc/audio/eyeD3/PLIST:1.5 pkgsrc/audio/eyeD3/PLIST:1.6
--- pkgsrc/audio/eyeD3/PLIST:1.5 Sun Dec 18 13:48:36 2022
+++ pkgsrc/audio/eyeD3/PLIST Mon Apr 28 07:17:13 2025
@@ -1,11 +1,12 @@
-@comment $NetBSD: PLIST,v 1.5 2022/12/18 13:48:36 adam Exp $
+@comment $NetBSD: PLIST,v 1.6 2025/04/28 07:17:13 adam Exp $
bin/eyeD3
-${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
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/AUTHORS.rst
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
${PYSITELIB}/eyed3/__about__.py
${PYSITELIB}/eyed3/__about__.pyc
${PYSITELIB}/eyed3/__about__.pyo
@@ -45,7 +46,6 @@ ${PYSITELIB}/eyed3/mp3/__init__.pyo
${PYSITELIB}/eyed3/mp3/headers.py
${PYSITELIB}/eyed3/mp3/headers.pyc
${PYSITELIB}/eyed3/mp3/headers.pyo
-${PYSITELIB}/eyed3/plugins/DisplayPattern.ebnf
${PYSITELIB}/eyed3/plugins/__init__.py
${PYSITELIB}/eyed3/plugins/__init__.pyc
${PYSITELIB}/eyed3/plugins/__init__.pyo
Index: pkgsrc/audio/eyeD3/distinfo
diff -u pkgsrc/audio/eyeD3/distinfo:1.9 pkgsrc/audio/eyeD3/distinfo:1.10
--- pkgsrc/audio/eyeD3/distinfo:1.9 Sun Dec 18 13:48:36 2022
+++ pkgsrc/audio/eyeD3/distinfo Mon Apr 28 07:17:13 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2022/12/18 13:48:36 adam Exp $
+$NetBSD: distinfo,v 1.10 2025/04/28 07:17:13 adam Exp $
-BLAKE2s (eyeD3-0.9.7.tar.gz) = 26d8a970d0b770bc8da92f4c62009afa9c5f0c774c91cec8c53717c7ed79a498
-SHA512 (eyeD3-0.9.7.tar.gz) = 1ed3d8bcc1aa0dd2e93915be6e55ab50b7398c12c3b3fab9b3cf47ca18a7c654dedd0f881f6e5576571e03efeecfabb0fe9d7b4be1c984f79f82a3b0014f09d0
-Size (eyeD3-0.9.7.tar.gz) = 245122 bytes
+BLAKE2s (eyed3-0.9.8.tar.gz) = 6762eabc9560bfe93dc18910b8551927b8e74ac6a19aabc6ecfbcaf77decb896
+SHA512 (eyed3-0.9.8.tar.gz) = 0470e2109ae71bae4793729abd38f9849b0b61ca5e6ef8ee4b586a2a12c6b6c4fe088934aa0253a6b93c5f111ddea446304b83b03b983442323adf51d0565efe
+Size (eyed3-0.9.8.tar.gz) = 216275 bytes
Home |
Main Index |
Thread Index |
Old Index