Import of pkgsrc-2015Q3

This commit is contained in:
2015-10-03 03:37:01 -07:00
committed by Lionel Sambuc
parent f641581404
commit 9d819b6d54
7578 changed files with 228314 additions and 80018 deletions

View File

@@ -0,0 +1,7 @@
Backport of the subprocess module from Python 3.2/3.3 for use on 2.x.
This is a backport of the subprocess standard library module from Python
3.2 & 3.3 for use on Python 2.4, 2.5, 2.6 and 2.7. It includes bugfixes
and new features. On POSIX systems it is guaranteed to be reliable when
used in threaded applications. Bonus: It includes timeout support from
Python 3.3.

View File

@@ -0,0 +1,17 @@
# $NetBSD: Makefile,v 1.1 2015/08/01 15:29:43 bsiegert Exp $
DISTNAME= subprocess32-3.2.6
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= https://pypi.python.org/packages/source/s/subprocess32/
MAINTAINER= nonakap@gmail.com
HOMEPAGE= http://pypi.python.org/pypi/subprocess32
COMMENT= Backport of the subprocess module from Python 3.2/3.3 for use on 2.x
LICENSE= python-software-foundation
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # for 2.x only
.include "../../lang/python/application.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,9 @@
@comment $NetBSD: PLIST,v 1.1 2015/08/01 15:29:43 bsiegert Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/_posixsubprocess.so
${PYSITELIB}/subprocess32.py
${PYSITELIB}/subprocess32.pyc
${PYSITELIB}/subprocess32.pyo

View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.1 2015/08/01 15:29:43 bsiegert Exp $
SHA1 (subprocess32-3.2.6.tar.gz) = 25242b79dba6e84982c2533c8b2403b31d8538e8
RMD160 (subprocess32-3.2.6.tar.gz) = a35c508539c27565ec40c5a08d882e2a98eeac2d
Size (subprocess32-3.2.6.tar.gz) = 51874 bytes
SHA1 (patch-setup.py) = e506f4f43a43377ce6289c83bd9b2cc30ddef163

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-setup.py,v 1.1 2015/08/01 15:29:43 bsiegert Exp $
--- setup.py.orig 2014-04-23 17:13:49.000000000 +0900
+++ setup.py 2015-07-20 11:56:46.000000000 +0900
@@ -1,6 +1,7 @@
#!/usr/bin/python
import sys
+import setuptools
from distutils.core import setup, Extension