View | Details | Raw Unified | Return to bug 148441 | Differences between
and this patch

Collapse All | Expand All

(-)devel/py-daemon/Makefile (-21 lines)
Lines 1-21 Link Here
1
# Created by: jessekempf@gmail.com
2
# $FreeBSD$
3
4
PORTNAME=	daemon
5
PORTVERSION=	1.6
6
PORTREVISION=	1
7
CATEGORIES=	devel python
8
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
10
DISTNAME=	python-daemon-${PORTVERSION}
11
12
MAINTAINER=	jessekempf@gmail.com
13
COMMENT=	Well-behaved daemon framework for Python
14
15
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}lockfile>=0.9:${PORTSDIR}/devel/py-lockfile
16
RUN_DEPENDS:=	${BUILD_DEPENDS}
17
18
USE_PYTHON=	autoplist distutils
19
USES=		python:2
20
21
.include <bsd.port.mk>
(-)devel/py-daemon/distinfo (-2 lines)
Lines 1-2 Link Here
1
SHA256 (python-daemon-1.6.tar.gz) = 1665fb16bfeae72f16aa2de40bc75661458bd42731a7d463a911a8d5eaf96c0b
2
SIZE (python-daemon-1.6.tar.gz) = 41564
(-)devel/py-daemon/pkg-descr (-11 lines)
Lines 1-11 Link Here
1
Library to implement a well-behaved Unix daemon process.
2
3
This library implements the well-behaved daemon specification of PEP 3143,
4
"Standard daemon process library".
5
6
A well-behaved Unix daemon process is tricky to get right, but the required
7
steps are much the same for every daemon program. A DaemonContext instance holds
8
the behaviour and configured process environment for the program; use the
9
instance as a context manager to enter a daemon state.
10
11
WWW: https://pypi.python.org/pypi/python-daemon/
(-)devel/py-python-daemon/Makefile (+21 lines)
Line 0 Link Here
1
# Created by: jessekempf@gmail.com
2
# $FreeBSD$
3
4
PORTNAME=	python-daemon
5
PORTVERSION=	1.6
6
PORTREVISION=	1
7
CATEGORIES=	devel python
8
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
10
DISTNAME=	python-daemon-${PORTVERSION}
11
12
MAINTAINER=	jessekempf@gmail.com
13
COMMENT=	Well-behaved daemon framework for Python
14
15
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}lockfile>=0.9:${PORTSDIR}/devel/py-lockfile
16
RUN_DEPENDS:=	${BUILD_DEPENDS}
17
18
USE_PYTHON=	autoplist distutils
19
USES=		python:2
20
21
.include <bsd.port.mk>
(-)devel/py-python-daemon/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (python-daemon-1.6.tar.gz) = 1665fb16bfeae72f16aa2de40bc75661458bd42731a7d463a911a8d5eaf96c0b
2
SIZE (python-daemon-1.6.tar.gz) = 41564
(-)devel/py-python-daemon/pkg-descr (+11 lines)
Line 0 Link Here
1
Library to implement a well-behaved Unix daemon process.
2
3
This library implements the well-behaved daemon specification of PEP 3143,
4
"Standard daemon process library".
5
6
A well-behaved Unix daemon process is tricky to get right, but the required
7
steps are much the same for every daemon program. A DaemonContext instance holds
8
the behaviour and configured process environment for the program; use the
9
instance as a context manager to enter a daemon state.
10
11
WWW: https://pypi.python.org/pypi/python-daemon/
(-)devel/Makefile (-1 / +1 lines)
Lines 3691-3697 Link Here
3691
    SUBDIR += py-ctags
3691
    SUBDIR += py-ctags
3692
    SUBDIR += py-cxx
3692
    SUBDIR += py-cxx
3693
    SUBDIR += py-d2to1
3693
    SUBDIR += py-d2to1
3694
    SUBDIR += py-daemon
3695
    SUBDIR += py-daemons
3694
    SUBDIR += py-daemons
3696
    SUBDIR += py-dal
3695
    SUBDIR += py-dal
3697
    SUBDIR += py-darcsver
3696
    SUBDIR += py-darcsver
Lines 3904-3909 Link Here
3904
    SUBDIR += py-pytemplate
3903
    SUBDIR += py-pytemplate
3905
    SUBDIR += py-pytest
3904
    SUBDIR += py-pytest
3906
    SUBDIR += py-pytest-runner
3905
    SUBDIR += py-pytest-runner
3906
    SUBDIR += py-python-daemon
3907
    SUBDIR += py-python-statsd
3907
    SUBDIR += py-python-statsd
3908
    SUBDIR += py-pythonbrew
3908
    SUBDIR += py-pythonbrew
3909
    SUBDIR += py-pytz
3909
    SUBDIR += py-pytz
(-)MOVED (+1 lines)
Lines 7329-7331 Link Here
7329
x11/nvidia-driver-96||2014-12-19|Removed: Not compatible with xserver 1.14
7329
x11/nvidia-driver-96||2014-12-19|Removed: Not compatible with xserver 1.14
7330
www/drupal7-jailadmin||2014-12-20|Removed per author's request; unmaintained
7330
www/drupal7-jailadmin||2014-12-20|Removed per author's request; unmaintained
7331
www/drupal7-vulnscan||2014-12-20|Removed per author's request; unmaintained
7331
www/drupal7-vulnscan||2014-12-20|Removed per author's request; unmaintained
7332
devel/py-py-daemon|devel/py-python-daemon|2014-12-23|Renamed per the upstream PyPi name

Return to bug 148441