1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00

- Update to 0.10.1a

PR:		199162
Submitted by:	Marco Bröder (maintainer)
MFH:		2015Q2
Security:	https://vuxml.freebsd.org/freebsd/e426eda9-dae1-11e4-8107-94de806b0af9.html
This commit is contained in:
Jan Beich 2015-04-17 22:47:41 +00:00
parent 4df212a9b6
commit bb35c9481c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=384194
5 changed files with 15 additions and 24 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$ # $FreeBSD$
PORTNAME= dulwich PORTNAME= dulwich
PORTVERSION= 0.9.7 PORTVERSION= 0.10.1a
CATEGORIES= devel python CATEGORIES= devel python
MASTER_SITES= CHEESESHOP MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,2 +1,2 @@
SHA256 (dulwich-0.9.7.tar.gz) = 12e77b0434a3bb3075e9c96e608ee9c3f85e49bc9c8335139aba8795de4000f3 SHA256 (dulwich-0.10.1a.tar.gz) = 666600ab5eb0b6d531879ee0f65dfefd71bce2e21ab3910c28f7789e15b6330b
SIZE (dulwich-0.9.7.tar.gz) = 259335 SIZE (dulwich-0.10.1a.tar.gz) = 272688

View File

@ -1,6 +1,6 @@
--- ./MANIFEST.in.orig 2014-06-01 23:01:35.000000000 +0200 --- MANIFEST.in.orig 2015-03-25 01:53:21 UTC
+++ ./MANIFEST.in 2014-06-14 11:15:41.244692230 +0200 +++ MANIFEST.in
@@ -7,4 +7,3 @@ @@ -8,4 +8,3 @@ include setup.cfg
include dulwich/stdint.h include dulwich/stdint.h
recursive-include docs conf.py *.txt Makefile make.bat recursive-include docs conf.py *.txt Makefile make.bat
recursive-include examples *.py recursive-include examples *.py

View File

@ -1,6 +1,6 @@
--- ./dulwich.egg-info/SOURCES.txt.orig 2014-06-08 23:46:09.000000000 +0200 --- dulwich.egg-info/SOURCES.txt.orig 2015-03-25 01:54:03 UTC
+++ ./dulwich.egg-info/SOURCES.txt 2014-06-14 11:14:45.857674868 +0200 +++ dulwich.egg-info/SOURCES.txt
@@ -61,118 +61,6 @@ @@ -61,118 +61,6 @@ dulwich/contrib/__init__.py
dulwich/contrib/swift.py dulwich/contrib/swift.py
dulwich/contrib/test_swift.py dulwich/contrib/test_swift.py
dulwich/contrib/test_swift_smoke.py dulwich/contrib/test_swift_smoke.py

View File

@ -1,20 +1,11 @@
--- ./setup.py.orig 2014-06-07 04:12:55.000000000 +0200 --- setup.py.orig 2015-03-25 01:54:01 UTC
+++ ./setup.py 2014-06-14 11:16:37.182700482 +0200 +++ setup.py
@@ -51,8 +51,6 @@ @@ -75,7 +75,7 @@ setup(name='dulwich',
setup_kwargs = {}
-if has_setuptools:
- setup_kwargs['test_suite'] = 'dulwich.tests.test_suite'
setup(name='dulwich',
description='Python Git Library',
@@ -72,7 +70,7 @@
The project is named after the part of London that Mr. and Mrs. Git live in The project is named after the part of London that Mr. and Mrs. Git live in
in the particular Monty Python sketch. in the particular Monty Python sketch.
""", """,
- packages=['dulwich', 'dulwich.tests', 'dulwich.tests.compat', 'dulwich.contrib'], - packages=['dulwich', 'dulwich.tests', 'dulwich.tests.compat', 'dulwich.contrib'],
+ packages=['dulwich', 'dulwich.contrib'], + packages=['dulwich', 'dulwich.contrib'],
scripts=['bin/dulwich', 'bin/dul-web', 'bin/dul-receive-pack', 'bin/dul-upload-pack'], package_data={'': ['../docs/tutorial/*.txt']},
ext_modules=[ scripts=['bin/dulwich', 'bin/dul-receive-pack', 'bin/dul-upload-pack'],
Extension('dulwich._objects', ['dulwich/_objects.c'], classifiers=[