Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.4 2012/10/31 11:19:29 asau Exp $
#
# $NetBSD: Makefile,v 1.6 2014/01/26 00:52:04 wiz Exp $
DISTNAME= coverage-3.5.1
PKGNAME= ${PYPKGPREFIX}-coverage-3.5.1
DISTNAME= coverage-3.7.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= http://pypi.python.org/packages/source/c/coverage/
@@ -17,5 +16,8 @@ PLIST_SUBST= PYVERSSUFFIX=${PYVERSSUFFIX}
post-extract:
${CHMOD} +r ${WRKSRC}/coverage.egg-info/*
post-install:
${RM} ${DESTDIR}${PREFIX}/bin/coverage
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -1,5 +1,7 @@
@comment $NetBSD: PLIST,v 1.2 2012/02/17 18:19:30 drochner Exp $
bin/coverage${PYVERSSUFFIX}
@comment $NetBSD: PLIST,v 1.4 2014/01/27 20:46:22 wiz Exp $
bin/coverage-${PYVERSSUFFIX}
${PLIST.py2x}bin/coverage2
${PLIST.py3x}bin/coverage3
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -39,6 +41,9 @@ ${PYSITELIB}/coverage/control.pyo
${PYSITELIB}/coverage/data.py
${PYSITELIB}/coverage/data.pyc
${PYSITELIB}/coverage/data.pyo
${PYSITELIB}/coverage/debug.py
${PYSITELIB}/coverage/debug.pyc
${PYSITELIB}/coverage/debug.pyo
${PYSITELIB}/coverage/execfile.py
${PYSITELIB}/coverage/execfile.pyc
${PYSITELIB}/coverage/execfile.pyo
@@ -50,9 +55,9 @@ ${PYSITELIB}/coverage/html.pyc
${PYSITELIB}/coverage/html.pyo
${PYSITELIB}/coverage/htmlfiles/coverage_html.js
${PYSITELIB}/coverage/htmlfiles/index.html
${PYSITELIB}/coverage/htmlfiles/jquery-1.4.3.min.js
${PYSITELIB}/coverage/htmlfiles/jquery.hotkeys.js
${PYSITELIB}/coverage/htmlfiles/jquery.isonscreen.js
${PYSITELIB}/coverage/htmlfiles/jquery.min.js
${PYSITELIB}/coverage/htmlfiles/jquery.tablesorter.min.js
${PYSITELIB}/coverage/htmlfiles/keybd_closed.png
${PYSITELIB}/coverage/htmlfiles/keybd_open.png
@@ -80,6 +85,9 @@ ${PYSITELIB}/coverage/templite.py
${PYSITELIB}/coverage/templite.pyc
${PYSITELIB}/coverage/templite.pyo
${PYSITELIB}/coverage/tracer.so
${PYSITELIB}/coverage/version.py
${PYSITELIB}/coverage/version.pyc
${PYSITELIB}/coverage/version.pyo
${PYSITELIB}/coverage/xmlreport.py
${PYSITELIB}/coverage/xmlreport.pyc
${PYSITELIB}/coverage/xmlreport.pyo

View File

@@ -1,6 +1,5 @@
$NetBSD: distinfo,v 1.2 2012/02/17 18:19:30 drochner Exp $
$NetBSD: distinfo,v 1.4 2014/01/26 00:52:04 wiz Exp $
SHA1 (coverage-3.5.1.tar.gz) = 815061b1906bd83b7d8ba46db0986ce7c4e84951
RMD160 (coverage-3.5.1.tar.gz) = 054797366f8bc1968fc75e0121aaba3d12576200
Size (coverage-3.5.1.tar.gz) = 113277 bytes
SHA1 (patch-aa) = 4096d982a73a56879a1e1eb41095bc6da869ab82
SHA1 (coverage-3.7.1.tar.gz) = 008938fbb1658e3767199006486273be6d4da400
RMD160 (coverage-3.7.1.tar.gz) = ba87d81ed228261c019629e23a904f248143ea1f
Size (coverage-3.7.1.tar.gz) = 284735 bytes

View File

@@ -1,13 +0,0 @@
$NetBSD: patch-aa,v 1.2 2012/02/17 18:19:30 drochner Exp $
--- setup.py.orig 2011-06-29 12:22:52.000000000 +0000
+++ setup.py
@@ -85,7 +85,7 @@ setup_args = dict(
entry_points = {
'console_scripts': [
- 'coverage = coverage:main',
+ 'coverage%s = coverage:main' % sys.version[:3],
],
},