b623b50dcb
1.4.2 (2020-10-10) ------------------ - FIX: The entrypoint for the Dockerfile was failing when called with no arguments 1.4.1 (2020-10-05) ------------------ - FIX: The entrypoint for the Dockerfile no longer tries to `chown` the entire `/data` directory, instead limiting itself just to `/data/packages` as before. 1.4.0 (2020-10-03) ------------------ - DOC: Add docker-compose example with HTTPS configuration using Traefix - DOC: Add link to zulip chat to README (aa2d78c) - DOC: Documentation for running as a service in windows - DOC: Fix typo in README HTML - DOC: Moved flask-pypi-proxy and pip2pi to a new "Unmaintained or archived" section - DOC: Slightly clarify the relationship to warehouse. - ENH: Add ignore list for the update command - ENH: Add official support and testing for Python 3.8 - ENH: Allow configuration of logging stream - ENH: Include watchdog to enable caching in docker image - FIX: Cherrypy import for newer versions of cherrypy in vendored bottle.py - FIX: Improved permissions management in Dockerfile - FIX: Usage of string formatting in HTTPError - MAINT: Update bottle to [0.12.18](https://github.com/bottlepy/bottle/releases/tag/0.12.18) - MAINT: Use Python 3.8 in Dockerfile - MAINT: bump version of passlib from 1.7.1 to 1.7.2 in Docker requirements - MAINT: drop official support for Python 3.4
36 lines
1.2 KiB
Makefile
36 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.5 2021/01/11 10:31:59 adam Exp $
|
|
|
|
DISTNAME= pypiserver-1.4.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= net python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pypiserver/}
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/pypiserver/pypiserver
|
|
COMMENT= Minimal PyPI server for use with pip/easy_install
|
|
LICENSE= modified-bsd
|
|
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-wheel>=0.25.0:../../devel/py-wheel
|
|
DEPENDS+= ${PYPKGPREFIX}-passlib>=1.6:../../security/py-passlib
|
|
DEPENDS+= ${PYPKGPREFIX}-watchdog-[0-9]*:../../sysutils/py-watchdog
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-WebTest-[0-9]*:../../www/py-WebTest
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-pip>=7:../../devel/py-pip
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-tox-[0-9]*:../../devel/py-tox
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-twine-[0-9]*:../../net/py-twine
|
|
.include "../../lang/python/pyversion.mk"
|
|
.if ${_PYTHON_VERSION} == 27
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
.endif
|
|
|
|
PYTHON_VERSIONED_DEPENDENCIES= test:test
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} pypi-server pypi-server-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../lang/python/versioned_dependencies.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|