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

Collapse All | Expand All

(-)ports/devel/py-debtcollector/Makefile (+20 lines)
Line 0 Link Here
1
PORTNAME=	debtcollector
2
PORTVERSION=	1.1.0
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	dave@gufi.org
8
COMMENT=	Python Build Reasonableness
9
10
LICENSE=	APACHE20
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pip>0:${PORTSDIR}/devel/py-pip
14
15
NO_ARCH=	yes
16
17
USES=		python
18
USE_PYTHON=	autoplist concurrent distutils
19
20
.include <bsd.port.mk>
(-)ports/devel/py-debtcollector/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (debtcollector-1.1.0.tar.gz) = 87da37838bffbe61b7ba4986579e0ae06bc5f8eb2e197e89ef7419322655ae9b
2
SIZE (debtcollector-1.1.0.tar.gz) = 21563
(-)ports/devel/py-debtcollector/pkg-descr (+9 lines)
Line 0 Link Here
1
A collection of Python deprecation patterns and strategies that help you collect
2
your technical debt in a non-destructive manner.
3
The goal of this library is to provide well documented developer facing deprecation
4
patterns that start of with a basic set and can expand into a larger set of patterns
5
as time goes on. The desired output of these patterns is to apply the warnings
6
module to emit DeprecationWarning or PendingDeprecationWarning or similar derivative
7
to developers using libraries (or potentially applications) about future deprecations.
8
9
WWW: https://git.openstack.org/cgit/openstack/debtcollector
(-)ports/devel/py-monotonic/Makefile (+20 lines)
Line 0 Link Here
1
PORTNAME=	monotonic
2
PORTVERSION=	0.5
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	dave@gufi.org
8
COMMENT=	Python Build Reasonableness
9
10
LICENSE=	APACHE20
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pip>0:${PORTSDIR}/devel/py-pip
14
15
NO_ARCH=	yes
16
17
USES=		python
18
USE_PYTHON=	autoplist concurrent distutils
19
20
.include <bsd.port.mk>
(-)ports/devel/py-monotonic/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (monotonic-0.5.tar.gz) = 8c1f882aa66c41daffa701cbf7121d8d264d0cb7722bbb78a6eccd2d8b12c880
2
SIZE (monotonic-0.5.tar.gz) = 6493
(-)ports/devel/py-monotonic/pkg-descr (+14 lines)
Line 0 Link Here
1
This module provides a monotonic() function which returns the value (in fractional seconds)
2
of a clock which never goes backwards.
3
4
On Python 3.3 or newer, monotonic will be an alias of time.monotonic from the standard
5
library. On older versions, it will fall back to an equivalent implementation:
6
7
Linux, BSD	clock_gettime(3)
8
Windows	GetTickCount64
9
OS X	mach_absolute_time
10
11
If no suitable implementation exists for the current platform, attempting to import
12
this module (or to import from it) will cause a RuntimeError exception to be raised.
13
14
WWW: https://github.com/atdt/monotonic
(-)ports/devel/py-oslo.i18n/Makefile (+20 lines)
Line 0 Link Here
1
PORTNAME=	oslo.i18n
2
PORTVERSION=	3.1.0
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	dave@gufi.org
8
COMMENT=	Python Build Reasonableness
9
10
LICENSE=	APACHE20
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pip>0:${PORTSDIR}/devel/py-pip
14
15
NO_ARCH=	yes
16
17
USES=		python
18
USE_PYTHON=	autoplist concurrent distutils
19
20
.include <bsd.port.mk>
(-)ports/devel/py-oslo.i18n/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (oslo.i18n-3.1.0.tar.gz) = 1c82d9e3acd821015990fd111750fd949a5276ed6561a16e0a39d69e7145dbd8
2
SIZE (oslo.i18n-3.1.0.tar.gz) = 35941
(-)ports/devel/py-oslo.i18n/pkg-descr (+5 lines)
Line 0 Link Here
1
The oslo.i18n library contain utilities for working with
2
internationalization (i18n) features, especially translation
3
for text strings in an application or library.
4
5
WWW: https://github.com/openstack/oslo.i18n
(-)ports/devel/py-oslo.serialization/Makefile (+20 lines)
Line 0 Link Here
1
PORTNAME=	oslo.serialization
2
PORTVERSION=	2.2.0
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	dave@gufi.org
8
COMMENT=	Python Build Reasonableness
9
10
LICENSE=	APACHE20
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pip>0:${PORTSDIR}/devel/py-pip
14
15
NO_ARCH=	yes
16
17
USES=		python
18
USE_PYTHON=	autoplist concurrent distutils
19
20
.include <bsd.port.mk>
(-)ports/devel/py-oslo.serialization/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (oslo.serialization-2.2.0.tar.gz) = 24320d26f6bc4850057aa9996e3a2431d4c4c5d0b670658e7e632007f31c4003
2
SIZE (oslo.serialization-2.2.0.tar.gz) = 20467
(-)ports/devel/py-oslo.serialization/pkg-descr (+4 lines)
Line 0 Link Here
1
The oslo.serialization library provides support for representing objects
2
in transmittable and storable formats, such as Base64, JSON and MessagePack.
3
4
WWW: https://git.openstack.org/cgit/openstack/oslo.serialization
(-)ports/devel/py-oslo.utils/Makefile (+20 lines)
Line 0 Link Here
1
PORTNAME=	oslo.utils
2
PORTVERSION=	3.3.0
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	dave@gufi.org
8
COMMENT=	Python Build Reasonableness
9
10
LICENSE=	APACHE20
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pip>0:${PORTSDIR}/devel/py-pip
14
15
NO_ARCH=	yes
16
17
USES=		python
18
USE_PYTHON=	autoplist concurrent distutils
19
20
.include <bsd.port.mk>
(-)ports/devel/py-oslo.utils/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (oslo.utils-3.3.0.tar.gz) = 484f1025132756c065b5843ceb420b113a4fd262071887e85e5a2695f71bcabc
2
SIZE (oslo.utils-3.3.0.tar.gz) = 68632
(-)ports/devel/py-oslo.utils/pkg-descr (+5 lines)
Line 0 Link Here
1
The oslo.utils library provides support for common utility type
2
functions, such as encoding, exception handling, string manipulation,
3
and time handling.
4
5
WWW: https://git.openstack.org/cgit/openstack/oslo.utils
(-)ports/net/py-novaclient/Makefile (-4 / +16 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/net/py-novaclient/Makefile 405309 2016-01-05 17:57:54Z rakuco $
2
# $FreeBSD: head/net/py-novaclient/Makefile 405309 2016-01-05 17:57:54Z rakuco $
3
3
4
PORTNAME=	novaclient
4
PORTNAME=	novaclient
5
PORTVERSION=	2.6.8
5
PORTVERSION=	3.2.0
6
CATEGORIES=	net python
6
CATEGORIES=	net python
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 11-21 Link Here
11
MAINTAINER=	novel@FreeBSD.org
11
MAINTAINER=	novel@FreeBSD.org
12
COMMENT=	Client for the OpenStack Nova API
12
COMMENT=	Client for the OpenStack Nova API
13
13
14
# Newer releases do exist in PyPI.
15
BROKEN=         unfetchable
16
17
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}argparse>=0:${PORTSDIR}/devel/py-argparse \
14
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}argparse>=0:${PORTSDIR}/devel/py-argparse \
18
		${PYTHON_PKGNAMEPREFIX}prettytable>=0:${PORTSDIR}/devel/py-prettytable \
15
		${PYTHON_PKGNAMEPREFIX}prettytable>=0:${PORTSDIR}/devel/py-prettytable \
16
		${PYTHON_PKGNAMEPREFIX}pbr>=0:${PORTSDIR}/devel/py-pbr \
17
		${PYTHON_PKGNAMEPREFIX}oslo.utils>=0:${PORTSDIR}/devel/py-oslo.utils \
18
		${PYTHON_PKGNAMEPREFIX}oslo.i18n>=0:${PORTSDIR}/devel/py-oslo.i18n \
19
		${PYTHON_PKGNAMEPREFIX}oslo.serialization>=0:${PORTSDIR}/devel/py-oslo.serialization \
20
		${PYTHON_PKGNAMEPREFIX}debtcollector>=0:${PORTSDIR}/devel/py-debtcollector \
21
		${PYTHON_PKGNAMEPREFIX}iso8601>=0:${PORTSDIR}/devel/py-iso8601 \
22
		${PYTHON_PKGNAMEPREFIX}wrapt>=0:${PORTSDIR}/devel/py-wrapt \
23
		${PYTHON_PKGNAMEPREFIX}monotonic>=0:${PORTSDIR}/devel/py-monotonic \
24
		${PYTHON_PKGNAMEPREFIX}funcsigs>=0:${PORTSDIR}/devel/py-funcsigs \
25
		${PYTHON_PKGNAMEPREFIX}six>=0:${PORTSDIR}/devel/py-six \
26
		${PYTHON_PKGNAMEPREFIX}stevedore>=0:${PORTSDIR}/devel/py-stevedore \
27
		${PYTHON_PKGNAMEPREFIX}keystoneauth1>=0:${PORTSDIR}/security/py-keystoneauth1 \
28
		${PYTHON_PKGNAMEPREFIX}requests>=0:${PORTSDIR}/www/py-requests \
29
		${PYTHON_PKGNAMEPREFIX}netaddr>=0:${PORTSDIR}/net/py-netaddr \
30
		${PYTHON_PKGNAMEPREFIX}netifaces>=0:${PORTSDIR}/net/py-netifaces \
19
		${PKGNAMEPREFIX}httplib2>=0:${PORTSDIR}/www/py-httplib2
31
		${PKGNAMEPREFIX}httplib2>=0:${PORTSDIR}/www/py-httplib2
20
32
21
USES=		python
33
USES=		python
(-)ports/net/py-novaclient/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (python-novaclient-2.6.8.tar.gz) = 2aa6edb819d4d61c25cf94f9c404decd8e1e1192e071184ee91129faa9c06805
1
SHA256 (python-novaclient-3.2.0.tar.gz) = b00a70ba72b068adb6aaca19b14ed4bde9c950ef4f24234d095f9f9985073179
2
SIZE (python-novaclient-2.6.8.tar.gz) = 112291
2
SIZE (python-novaclient-3.2.0.tar.gz) = 260635
(-)ports/security/py-keystoneauth1/Makefile (+20 lines)
Line 0 Link Here
1
PORTNAME=	keystoneauth1
2
PORTVERSION=	2.1.0
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	dave@gufi.org
8
COMMENT=	Python Build Reasonableness
9
10
LICENSE=	APACHE20
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pip>0:${PORTSDIR}/devel/py-pip
14
15
NO_ARCH=	yes
16
17
USES=		python
18
USE_PYTHON=	autoplist concurrent distutils
19
20
.include <bsd.port.mk>
(-)ports/security/py-keystoneauth1/distinfo (+2 lines)
Line 0 Link Here
1
SHA256 (keystoneauth1-2.1.0.tar.gz) = 3990130416f85a252896fd36f895ab4d0b692b782801d7e4e522b862dbf84e69
2
SIZE (keystoneauth1-2.1.0.tar.gz) = 144424
(-)ports/security/py-keystoneauth1/pkg-descr (+9 lines)
Line 0 Link Here
1
This package contains tools for authenticating to an OpenStack-based cloud.
2
These tools include:
3
4
- Authentication plugins (password, token, and federation based)
5
- Discovery mechanisms to determine API version support
6
- A session that is used to maintain client settings across requests
7
 (based on the requests Python library)
8
9
WWW: https://git.openstack.org/cgit/openstack/keystoneauth

Return to bug 206038