pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/py-lunr



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Jan 25 16:30:23 UTC 2024

Modified Files:
        pkgsrc/textproc/py-lunr: Makefile PLIST distinfo

Log Message:
py-lunr: updated to 0.7.0.post1

 0.7.0 (2023-08-16)

- Fix misleading usage of `__main__.py` without runnable code to be ran on `python -m lunr`
- Move to pyproject.toml packaging
- Drop support for Python 3.6
- Add support for Python 3.11
- Remove logging configuration @ping


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/py-lunr/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/py-lunr/PLIST \
    pkgsrc/textproc/py-lunr/distinfo

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

Modified files:

Index: pkgsrc/textproc/py-lunr/Makefile
diff -u pkgsrc/textproc/py-lunr/Makefile:1.4 pkgsrc/textproc/py-lunr/Makefile:1.5
--- pkgsrc/textproc/py-lunr/Makefile:1.4        Tue Aug  1 23:20:53 2023
+++ pkgsrc/textproc/py-lunr/Makefile    Thu Jan 25 16:30:22 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2023/08/01 23:20:53 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2024/01/25 16:30:22 adam Exp $
 
-DISTNAME=      lunr-0.6.2
+DISTNAME=      lunr-0.7.0.post1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=l/lunr/}
@@ -10,18 +10,15 @@ HOMEPAGE=   https://github.com/yeraydiazdi
 COMMENT=       Python implementation of Lunr.js
 LICENSE=       mit
 
+TOOL_DEPENDS+= ${PYPKGPREFIX}-hatch-fancy-pypi-readme>=22.8.0:../../devel/py-hatch-fancy-pypi-readme
+TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling-[0-9]*:../../devel/py-hatchling
+# languages
 DEPENDS+=      ${PYPKGPREFIX}-nltk>=0:../../textproc/py-nltk
-TEST_DEPENDS+= ${PYPKGPREFIX}-mock>=0:../../devel/py-mock
-TEST_DEPENDS+= ${PYPKGPREFIX}-test>=0:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-timeout-[0-9]*:../../devel/py-test-timeout
 
 USE_LANGUAGES= # none
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27 38
 
-# as of 0.6.2
-# 1 failed, 297 passed, 1 warning
-do-test:
-       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
-
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/textproc/py-lunr/PLIST
diff -u pkgsrc/textproc/py-lunr/PLIST:1.1 pkgsrc/textproc/py-lunr/PLIST:1.2
--- pkgsrc/textproc/py-lunr/PLIST:1.1   Sun Sep 11 17:46:07 2022
+++ pkgsrc/textproc/py-lunr/PLIST       Thu Jan 25 16:30:22 2024
@@ -1,16 +1,11 @@
-@comment $NetBSD: PLIST,v 1.1 2022/09/11 17:46:07 wiz Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.2 2024/01/25 16:30:22 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE
 ${PYSITELIB}/lunr/__init__.py
 ${PYSITELIB}/lunr/__init__.pyc
 ${PYSITELIB}/lunr/__init__.pyo
-${PYSITELIB}/lunr/__main__.py
-${PYSITELIB}/lunr/__main__.pyc
-${PYSITELIB}/lunr/__main__.pyo
 ${PYSITELIB}/lunr/builder.py
 ${PYSITELIB}/lunr/builder.pyc
 ${PYSITELIB}/lunr/builder.pyo
@@ -35,6 +30,9 @@ ${PYSITELIB}/lunr/languages/stemmer.pyo
 ${PYSITELIB}/lunr/languages/trimmer.py
 ${PYSITELIB}/lunr/languages/trimmer.pyc
 ${PYSITELIB}/lunr/languages/trimmer.pyo
+${PYSITELIB}/lunr/lunr.py
+${PYSITELIB}/lunr/lunr.pyc
+${PYSITELIB}/lunr/lunr.pyo
 ${PYSITELIB}/lunr/match_data.py
 ${PYSITELIB}/lunr/match_data.pyc
 ${PYSITELIB}/lunr/match_data.pyo
Index: pkgsrc/textproc/py-lunr/distinfo
diff -u pkgsrc/textproc/py-lunr/distinfo:1.1 pkgsrc/textproc/py-lunr/distinfo:1.2
--- pkgsrc/textproc/py-lunr/distinfo:1.1        Sun Sep 11 17:46:07 2022
+++ pkgsrc/textproc/py-lunr/distinfo    Thu Jan 25 16:30:22 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2022/09/11 17:46:07 wiz Exp $
+$NetBSD: distinfo,v 1.2 2024/01/25 16:30:22 adam Exp $
 
-BLAKE2s (lunr-0.6.2.tar.gz) = ea708c703c882fe84bef15c047bce3f61a7aa608445e953165c7a2419596bb53
-SHA512 (lunr-0.6.2.tar.gz) = 6b7c29d30a8a64b71246ff884e473cceeef5e00e382ad54474e7855dcafcf3817dcc14c29c1bb2eb3371f1cb5ab1485a7840dbe41d345a4503294052aa9cd644
-Size (lunr-0.6.2.tar.gz) = 45968 bytes
+BLAKE2s (lunr-0.7.0.post1.tar.gz) = 13d4f0fb1c5ddc0c764e313beacbc17dca4c3fc9afb9595e86eb2d4d9635973a
+SHA512 (lunr-0.7.0.post1.tar.gz) = cd53f1a5eb2c7ed95be78f390e1324bae850da8178be42519e03a6fd04be3a66452dda6b8c4e174cdb7d7999d819370bf27760f0cae3be2e72f15188db79d7d5
+Size (lunr-0.7.0.post1.tar.gz) = 1146070 bytes



Home | Main Index | Thread Index | Old Index