create bsd12 branch

This commit is contained in:
ziggi
2019-12-26 07:26:06 +00:00
commit 5cfdab6bfe
14432 changed files with 2272620 additions and 0 deletions

19
python/py-enum34/Makefile Normal file
View File

@@ -0,0 +1,19 @@
# Created by: Muhammad Moinur Rahman <5u623l20@gmail.com>
# $FreeBSD: head/devel/py-enum34/Makefile 416794 2016-06-12 11:10:00Z bofh $
PORTNAME= enum34
PORTVERSION= 1.1.6
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= bofh@FreeBSD.org
COMMENT= Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7
USES= python:2.7-3.3
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>
#EOF

View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1465726997
SHA256 (enum34-1.1.6.tar.gz) = 8ad8c4783bf61ded74527bffb48ed9b54166685e4230386a9ed9b1279e2df5b1
SIZE (enum34-1.1.6.tar.gz) = 40048

View File

@@ -0,0 +1,5 @@
An enumeration is a set of symbolic names (members) bound to unique, constant
values. Within an enumeration, the members can be compared by identity, and
the enumeration itself can be iterated over.
WWW: https://pypi.python.org/pypi/enum34