Update to 1.6:
Version 1.6 released. * Use absolute imports to disambiguate provenance of names. * setup.py: Require ‘lockfile >=0.9’. * daemon/pidfile.py: Renamed from ‘daemon/pidlockfile.py’. Change references elsewhere to use this new name. * test/test_pidfile.py: Renamed from ‘test/test_pidlockfile.py’. Change references elsewhere to use this new name. * daemon/pidfile.py: Remove functionality now migrated to ‘lockfile’ library.
This commit is contained in:
parent
a2e8e472cf
commit
775d45eb29
3 changed files with 13 additions and 13 deletions
|
@ -1,8 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.2 2012/10/31 11:19:29 asau Exp $
|
||||
#
|
||||
# $NetBSD: Makefile,v 1.3 2014/01/19 09:09:13 wiz Exp $
|
||||
|
||||
DISTNAME= python-daemon-1.5.5
|
||||
EGG_NAME= python_daemon-1.5.5
|
||||
DISTNAME= python-daemon-1.6
|
||||
EGG_NAME= ${DISTNAME:S/-/_/}
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/python-//}
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= http://pypi.python.org/packages/source/p/python-daemon/
|
||||
|
@ -14,9 +13,10 @@ LICENSE= gnu-gpl-v2
|
|||
|
||||
DEPENDS+= ${PYPKGPREFIX}-lockfile>=0.9:../../devel/py-lockfile
|
||||
|
||||
WRKSRC= ${WRKDIR}/python-daemon-1.5.5
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of 1.6
|
||||
|
||||
REPLACE_INTERPRETER+= python
|
||||
REPLACE.python.old= /usr/bin/env
|
||||
REPLACE.python.new= ${PYTHONBIN}
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2012/08/14 12:29:50 imil Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2014/01/19 09:09:13 wiz Exp $
|
||||
${PYSITELIB}/daemon/__init__.py
|
||||
${PYSITELIB}/daemon/__init__.pyc
|
||||
${PYSITELIB}/daemon/__init__.pyo
|
||||
${PYSITELIB}/daemon/daemon.py
|
||||
${PYSITELIB}/daemon/daemon.pyc
|
||||
${PYSITELIB}/daemon/daemon.pyo
|
||||
${PYSITELIB}/daemon/pidlockfile.py
|
||||
${PYSITELIB}/daemon/pidlockfile.pyc
|
||||
${PYSITELIB}/daemon/pidlockfile.pyo
|
||||
${PYSITELIB}/daemon/pidfile.py
|
||||
${PYSITELIB}/daemon/pidfile.pyc
|
||||
${PYSITELIB}/daemon/pidfile.pyo
|
||||
${PYSITELIB}/daemon/runner.py
|
||||
${PYSITELIB}/daemon/runner.pyc
|
||||
${PYSITELIB}/daemon/runner.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2012/08/14 12:29:50 imil Exp $
|
||||
$NetBSD: distinfo,v 1.2 2014/01/19 09:09:13 wiz Exp $
|
||||
|
||||
SHA1 (python-daemon-1.5.5.tar.gz) = 8d2565bbb0d035c4c379ed683b322fd7a93935ef
|
||||
RMD160 (python-daemon-1.5.5.tar.gz) = 44a65672345795bbb55caefa4e32757bf5a2f9af
|
||||
Size (python-daemon-1.5.5.tar.gz) = 41045 bytes
|
||||
SHA1 (python-daemon-1.6.tar.gz) = d977fb3a60d4167dc5125a9ae358144c17c6482f
|
||||
RMD160 (python-daemon-1.6.tar.gz) = cf269c6a40a08ff6265e3fb87b307da2d79470de
|
||||
Size (python-daemon-1.6.tar.gz) = 41564 bytes
|
||||
|
|
Loading…
Reference in a new issue