pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel py-poetry: added version 1.1.12
details: https://anonhg.NetBSD.org/pkgsrc/rev/06ccdfb95b13
branches: trunk
changeset: 371675:06ccdfb95b13
user: adam <adam%pkgsrc.org@localhost>
date: Tue Jan 11 19:21:49 2022 +0000
description:
py-poetry: added version 1.1.12
Poetry helps you declare, manage and install dependencies of Python projects,
ensuring you have the right stack everywhere.
diffstat:
devel/Makefile | 4 +-
devel/py-poetry/ALTERNATIVES | 1 +
devel/py-poetry/DESCR | 2 +
devel/py-poetry/Makefile | 49 +++
devel/py-poetry/PLIST | 420 +++++++++++++++++++++++++++++++++
devel/py-poetry/distinfo | 6 +
devel/py-poetry/patches/patch-setup.py | 15 +
7 files changed, 496 insertions(+), 1 deletions(-)
diffs (truncated from 535 to 300 lines):
diff -r 7419bf6f8585 -r 06ccdfb95b13 devel/Makefile
--- a/devel/Makefile Tue Jan 11 19:19:56 2022 +0000
+++ b/devel/Makefile Tue Jan 11 19:21:49 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3547 2022/01/11 19:03:59 adam Exp $
+# $NetBSD: Makefile,v 1.3548 2022/01/11 19:21:49 adam Exp $
#
COMMENT= Development utilities
@@ -2470,6 +2470,8 @@
SUBDIR+= py-pluggy
SUBDIR+= py-plumbum
SUBDIR+= py-ply
+SUBDIR+= py-poetry
+SUBDIR+= py-poetry-core
SUBDIR+= py-polib
SUBDIR+= py-pqueue
SUBDIR+= py-prefixspan
diff -r 7419bf6f8585 -r 06ccdfb95b13 devel/py-poetry/ALTERNATIVES
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-poetry/ALTERNATIVES Tue Jan 11 19:21:49 2022 +0000
@@ -0,0 +1,1 @@
+bin/poetry @PREFIX@/bin/poetry-@PYVERSSUFFIX@
diff -r 7419bf6f8585 -r 06ccdfb95b13 devel/py-poetry/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-poetry/DESCR Tue Jan 11 19:21:49 2022 +0000
@@ -0,0 +1,2 @@
+Poetry helps you declare, manage and install dependencies of Python projects,
+ensuring you have the right stack everywhere.
diff -r 7419bf6f8585 -r 06ccdfb95b13 devel/py-poetry/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-poetry/Makefile Tue Jan 11 19:21:49 2022 +0000
@@ -0,0 +1,49 @@
+# $NetBSD: Makefile,v 1.1 2022/01/11 19:21:49 adam Exp $
+
+DISTNAME= poetry-1.1.12
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES= devel python
+MASTER_SITES= ${MASTER_SITE_PYPI:=p/poetry/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://python-poetry.org/
+COMMENT= Python dependency management and packaging made easy
+LICENSE= mit
+
+BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
+DEPENDS+= ${PYPKGPREFIX}-cachecontrol>=0.12.9:../../devel/py-cachecontrol
+DEPENDS+= ${PYPKGPREFIX}-cachy>=0.3.0:../../devel/py-cachy
+DEPENDS+= ${PYPKGPREFIX}-clikit>=0.6.2:../../comms/py-clikit
+DEPENDS+= ${PYPKGPREFIX}-cleo>=0.8.1:../../comms/py-cleo
+DEPENDS+= ${PYPKGPREFIX}-crashtest>=0.3.0:../../misc/py-crashtest
+DEPENDS+= ${PYPKGPREFIX}-html5lib>=1.0:../../textproc/py-html5lib
+DEPENDS+= ${PYPKGPREFIX}-keyring>=21.2.0:../../security/py-keyring
+DEPENDS+= ${PYPKGPREFIX}-packaging>=20.4:../../devel/py-packaging
+DEPENDS+= ${PYPKGPREFIX}-pexpect>=4.7.0:../../devel/py-pexpect
+DEPENDS+= ${PYPKGPREFIX}-pkginfo>=1.4:../../devel/py-pkginfo
+DEPENDS+= ${PYPKGPREFIX}-poetry-core>=1.0.7:../../devel/py-poetry-core
+DEPENDS+= ${PYPKGPREFIX}-requests-toolbelt>=0.9.1:../../devel/py-requests-toolbelt
+DEPENDS+= ${PYPKGPREFIX}-requests>=2.18:../../devel/py-requests
+DEPENDS+= ${PYPKGPREFIX}-shellingham>=1.1:../../misc/py-shellingham
+DEPENDS+= ${PYPKGPREFIX}-tomlkit>=0.7.0:../../textproc/py-tomlkit
+DEPENDS+= ${PYPKGPREFIX}-virtualenv>=20.0.26:../../devel/py-virtualenv
+TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6.0:../../devel/py-test
+
+PYTHON_VERSIONS_INCOMPATIBLE= 27
+
+.include "../../lang/python/pyversion.mk"
+.if ${_PYTHON_VERSION} < 38
+TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
+.endif
+
+USE_LANGUAGES= # none
+
+post-install:
+ # conflicts with py-poetry-core
+ ${RM} -f ${DESTDIR}${PREFIX}/${PYSITELIB}/poetry/__init__.py
+ ${RM} -f ${DESTDIR}${PREFIX}/${PYSITELIB}/poetry/__pycache__/__init__.*
+ cd ${DESTDIR}${PREFIX}/bin && \
+ ${MV} poetry poetry-${PYVERSSUFFIX} || ${TRUE}
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 7419bf6f8585 -r 06ccdfb95b13 devel/py-poetry/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-poetry/PLIST Tue Jan 11 19:21:49 2022 +0000
@@ -0,0 +1,420 @@
+@comment $NetBSD: PLIST,v 1.1 2022/01/11 19:21:49 adam Exp $
+bin/poetry-${PYVERSSUFFIX}
+${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}/poetry/__main__.py
+${PYSITELIB}/poetry/__main__.pyc
+${PYSITELIB}/poetry/__main__.pyo
+${PYSITELIB}/poetry/__version__.py
+${PYSITELIB}/poetry/__version__.pyc
+${PYSITELIB}/poetry/__version__.pyo
+${PYSITELIB}/poetry/config/__init__.py
+${PYSITELIB}/poetry/config/__init__.pyc
+${PYSITELIB}/poetry/config/__init__.pyo
+${PYSITELIB}/poetry/config/config.py
+${PYSITELIB}/poetry/config/config.pyc
+${PYSITELIB}/poetry/config/config.pyo
+${PYSITELIB}/poetry/config/config_source.py
+${PYSITELIB}/poetry/config/config_source.pyc
+${PYSITELIB}/poetry/config/config_source.pyo
+${PYSITELIB}/poetry/config/dict_config_source.py
+${PYSITELIB}/poetry/config/dict_config_source.pyc
+${PYSITELIB}/poetry/config/dict_config_source.pyo
+${PYSITELIB}/poetry/config/file_config_source.py
+${PYSITELIB}/poetry/config/file_config_source.pyc
+${PYSITELIB}/poetry/config/file_config_source.pyo
+${PYSITELIB}/poetry/console/__init__.py
+${PYSITELIB}/poetry/console/__init__.pyc
+${PYSITELIB}/poetry/console/__init__.pyo
+${PYSITELIB}/poetry/console/application.py
+${PYSITELIB}/poetry/console/application.pyc
+${PYSITELIB}/poetry/console/application.pyo
+${PYSITELIB}/poetry/console/args/__init__.py
+${PYSITELIB}/poetry/console/args/__init__.pyc
+${PYSITELIB}/poetry/console/args/__init__.pyo
+${PYSITELIB}/poetry/console/args/run_args_parser.py
+${PYSITELIB}/poetry/console/args/run_args_parser.pyc
+${PYSITELIB}/poetry/console/args/run_args_parser.pyo
+${PYSITELIB}/poetry/console/commands/__init__.py
+${PYSITELIB}/poetry/console/commands/__init__.pyc
+${PYSITELIB}/poetry/console/commands/__init__.pyo
+${PYSITELIB}/poetry/console/commands/about.py
+${PYSITELIB}/poetry/console/commands/about.pyc
+${PYSITELIB}/poetry/console/commands/about.pyo
+${PYSITELIB}/poetry/console/commands/add.py
+${PYSITELIB}/poetry/console/commands/add.pyc
+${PYSITELIB}/poetry/console/commands/add.pyo
+${PYSITELIB}/poetry/console/commands/build.py
+${PYSITELIB}/poetry/console/commands/build.pyc
+${PYSITELIB}/poetry/console/commands/build.pyo
+${PYSITELIB}/poetry/console/commands/cache/__init__.py
+${PYSITELIB}/poetry/console/commands/cache/__init__.pyc
+${PYSITELIB}/poetry/console/commands/cache/__init__.pyo
+${PYSITELIB}/poetry/console/commands/cache/cache.py
+${PYSITELIB}/poetry/console/commands/cache/cache.pyc
+${PYSITELIB}/poetry/console/commands/cache/cache.pyo
+${PYSITELIB}/poetry/console/commands/cache/clear.py
+${PYSITELIB}/poetry/console/commands/cache/clear.pyc
+${PYSITELIB}/poetry/console/commands/cache/clear.pyo
+${PYSITELIB}/poetry/console/commands/cache/list.py
+${PYSITELIB}/poetry/console/commands/cache/list.pyc
+${PYSITELIB}/poetry/console/commands/cache/list.pyo
+${PYSITELIB}/poetry/console/commands/check.py
+${PYSITELIB}/poetry/console/commands/check.pyc
+${PYSITELIB}/poetry/console/commands/check.pyo
+${PYSITELIB}/poetry/console/commands/command.py
+${PYSITELIB}/poetry/console/commands/command.pyc
+${PYSITELIB}/poetry/console/commands/command.pyo
+${PYSITELIB}/poetry/console/commands/config.py
+${PYSITELIB}/poetry/console/commands/config.pyc
+${PYSITELIB}/poetry/console/commands/config.pyo
+${PYSITELIB}/poetry/console/commands/debug/__init__.py
+${PYSITELIB}/poetry/console/commands/debug/__init__.pyc
+${PYSITELIB}/poetry/console/commands/debug/__init__.pyo
+${PYSITELIB}/poetry/console/commands/debug/debug.py
+${PYSITELIB}/poetry/console/commands/debug/debug.pyc
+${PYSITELIB}/poetry/console/commands/debug/debug.pyo
+${PYSITELIB}/poetry/console/commands/debug/info.py
+${PYSITELIB}/poetry/console/commands/debug/info.pyc
+${PYSITELIB}/poetry/console/commands/debug/info.pyo
+${PYSITELIB}/poetry/console/commands/debug/resolve.py
+${PYSITELIB}/poetry/console/commands/debug/resolve.pyc
+${PYSITELIB}/poetry/console/commands/debug/resolve.pyo
+${PYSITELIB}/poetry/console/commands/env/__init__.py
+${PYSITELIB}/poetry/console/commands/env/__init__.pyc
+${PYSITELIB}/poetry/console/commands/env/__init__.pyo
+${PYSITELIB}/poetry/console/commands/env/env.py
+${PYSITELIB}/poetry/console/commands/env/env.pyc
+${PYSITELIB}/poetry/console/commands/env/env.pyo
+${PYSITELIB}/poetry/console/commands/env/info.py
+${PYSITELIB}/poetry/console/commands/env/info.pyc
+${PYSITELIB}/poetry/console/commands/env/info.pyo
+${PYSITELIB}/poetry/console/commands/env/list.py
+${PYSITELIB}/poetry/console/commands/env/list.pyc
+${PYSITELIB}/poetry/console/commands/env/list.pyo
+${PYSITELIB}/poetry/console/commands/env/remove.py
+${PYSITELIB}/poetry/console/commands/env/remove.pyc
+${PYSITELIB}/poetry/console/commands/env/remove.pyo
+${PYSITELIB}/poetry/console/commands/env/use.py
+${PYSITELIB}/poetry/console/commands/env/use.pyc
+${PYSITELIB}/poetry/console/commands/env/use.pyo
+${PYSITELIB}/poetry/console/commands/env_command.py
+${PYSITELIB}/poetry/console/commands/env_command.pyc
+${PYSITELIB}/poetry/console/commands/env_command.pyo
+${PYSITELIB}/poetry/console/commands/export.py
+${PYSITELIB}/poetry/console/commands/export.pyc
+${PYSITELIB}/poetry/console/commands/export.pyo
+${PYSITELIB}/poetry/console/commands/init.py
+${PYSITELIB}/poetry/console/commands/init.pyc
+${PYSITELIB}/poetry/console/commands/init.pyo
+${PYSITELIB}/poetry/console/commands/install.py
+${PYSITELIB}/poetry/console/commands/install.pyc
+${PYSITELIB}/poetry/console/commands/install.pyo
+${PYSITELIB}/poetry/console/commands/installer_command.py
+${PYSITELIB}/poetry/console/commands/installer_command.pyc
+${PYSITELIB}/poetry/console/commands/installer_command.pyo
+${PYSITELIB}/poetry/console/commands/lock.py
+${PYSITELIB}/poetry/console/commands/lock.pyc
+${PYSITELIB}/poetry/console/commands/lock.pyo
+${PYSITELIB}/poetry/console/commands/new.py
+${PYSITELIB}/poetry/console/commands/new.pyc
+${PYSITELIB}/poetry/console/commands/new.pyo
+${PYSITELIB}/poetry/console/commands/publish.py
+${PYSITELIB}/poetry/console/commands/publish.pyc
+${PYSITELIB}/poetry/console/commands/publish.pyo
+${PYSITELIB}/poetry/console/commands/remove.py
+${PYSITELIB}/poetry/console/commands/remove.pyc
+${PYSITELIB}/poetry/console/commands/remove.pyo
+${PYSITELIB}/poetry/console/commands/run.py
+${PYSITELIB}/poetry/console/commands/run.pyc
+${PYSITELIB}/poetry/console/commands/run.pyo
+${PYSITELIB}/poetry/console/commands/search.py
+${PYSITELIB}/poetry/console/commands/search.pyc
+${PYSITELIB}/poetry/console/commands/search.pyo
+${PYSITELIB}/poetry/console/commands/self/__init__.py
+${PYSITELIB}/poetry/console/commands/self/__init__.pyc
+${PYSITELIB}/poetry/console/commands/self/__init__.pyo
+${PYSITELIB}/poetry/console/commands/self/self.py
+${PYSITELIB}/poetry/console/commands/self/self.pyc
+${PYSITELIB}/poetry/console/commands/self/self.pyo
+${PYSITELIB}/poetry/console/commands/self/update.py
+${PYSITELIB}/poetry/console/commands/self/update.pyc
+${PYSITELIB}/poetry/console/commands/self/update.pyo
+${PYSITELIB}/poetry/console/commands/shell.py
+${PYSITELIB}/poetry/console/commands/shell.pyc
+${PYSITELIB}/poetry/console/commands/shell.pyo
+${PYSITELIB}/poetry/console/commands/show.py
+${PYSITELIB}/poetry/console/commands/show.pyc
+${PYSITELIB}/poetry/console/commands/show.pyo
+${PYSITELIB}/poetry/console/commands/update.py
+${PYSITELIB}/poetry/console/commands/update.pyc
+${PYSITELIB}/poetry/console/commands/update.pyo
+${PYSITELIB}/poetry/console/commands/version.py
+${PYSITELIB}/poetry/console/commands/version.pyc
+${PYSITELIB}/poetry/console/commands/version.pyo
+${PYSITELIB}/poetry/console/config/__init__.py
+${PYSITELIB}/poetry/console/config/__init__.pyc
+${PYSITELIB}/poetry/console/config/__init__.pyo
+${PYSITELIB}/poetry/console/config/application_config.py
+${PYSITELIB}/poetry/console/config/application_config.pyc
+${PYSITELIB}/poetry/console/config/application_config.pyo
+${PYSITELIB}/poetry/console/logging/__init__.py
+${PYSITELIB}/poetry/console/logging/__init__.pyc
+${PYSITELIB}/poetry/console/logging/__init__.pyo
+${PYSITELIB}/poetry/console/logging/formatters/__init__.py
+${PYSITELIB}/poetry/console/logging/formatters/__init__.pyc
+${PYSITELIB}/poetry/console/logging/formatters/__init__.pyo
+${PYSITELIB}/poetry/console/logging/formatters/builder_formatter.py
+${PYSITELIB}/poetry/console/logging/formatters/builder_formatter.pyc
+${PYSITELIB}/poetry/console/logging/formatters/builder_formatter.pyo
+${PYSITELIB}/poetry/console/logging/formatters/formatter.py
+${PYSITELIB}/poetry/console/logging/formatters/formatter.pyc
+${PYSITELIB}/poetry/console/logging/formatters/formatter.pyo
+${PYSITELIB}/poetry/console/logging/io_formatter.py
+${PYSITELIB}/poetry/console/logging/io_formatter.pyc
+${PYSITELIB}/poetry/console/logging/io_formatter.pyo
+${PYSITELIB}/poetry/console/logging/io_handler.py
+${PYSITELIB}/poetry/console/logging/io_handler.pyc
+${PYSITELIB}/poetry/console/logging/io_handler.pyo
+${PYSITELIB}/poetry/exceptions.py
+${PYSITELIB}/poetry/exceptions.pyc
+${PYSITELIB}/poetry/exceptions.pyo
+${PYSITELIB}/poetry/factory.py
+${PYSITELIB}/poetry/factory.pyc
+${PYSITELIB}/poetry/factory.pyo
+${PYSITELIB}/poetry/inspection/__init__.py
+${PYSITELIB}/poetry/inspection/__init__.pyc
+${PYSITELIB}/poetry/inspection/__init__.pyo
+${PYSITELIB}/poetry/inspection/info.py
+${PYSITELIB}/poetry/inspection/info.pyc
+${PYSITELIB}/poetry/inspection/info.pyo
+${PYSITELIB}/poetry/installation/__init__.py
+${PYSITELIB}/poetry/installation/__init__.pyc
+${PYSITELIB}/poetry/installation/__init__.pyo
+${PYSITELIB}/poetry/installation/authenticator.py
+${PYSITELIB}/poetry/installation/authenticator.pyc
+${PYSITELIB}/poetry/installation/authenticator.pyo
+${PYSITELIB}/poetry/installation/base_installer.py
+${PYSITELIB}/poetry/installation/base_installer.pyc
+${PYSITELIB}/poetry/installation/base_installer.pyo
+${PYSITELIB}/poetry/installation/chef.py
+${PYSITELIB}/poetry/installation/chef.pyc
+${PYSITELIB}/poetry/installation/chef.pyo
+${PYSITELIB}/poetry/installation/chooser.py
+${PYSITELIB}/poetry/installation/chooser.pyc
+${PYSITELIB}/poetry/installation/chooser.pyo
+${PYSITELIB}/poetry/installation/executor.py
+${PYSITELIB}/poetry/installation/executor.pyc
+${PYSITELIB}/poetry/installation/executor.pyo
+${PYSITELIB}/poetry/installation/installer.py
+${PYSITELIB}/poetry/installation/installer.pyc
Home |
Main Index |
Thread Index |
Old Index