Bug 186092 - [PATCH] devel/py-dateutil: Makefile changes
Summary: [PATCH] devel/py-dateutil: Makefile changes
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Nicola Vitale
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-25 10:20 UTC by Johannes Meixner
Modified: 2014-02-10 19:10 UTC (History)
1 user (show)

See Also:


Attachments
py27-dateutil-2.1_2.patch (3.69 KB, patch)
2014-01-25 10:20 UTC, Johannes Meixner
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Johannes Meixner 2014-01-25 10:20:00 UTC
* Specify 2-clause BSD license
* Remove easy_install
* Remove pkg-plist over PYDISTUTILS_AUTOPLIST
* Add staging support

portlint: looks fine
testport: ok
redports: https://redports.org/buildarchive/20140125095200-25222/


Port maintainer (nivit@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: ports)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-25 10:20:09 UTC
Responsible Changed
From-To: freebsd-ports-bugs->nivit

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-02-10 19:04:16 UTC
Author: antoine
Date: Mon Feb 10 19:04:09 2014
New Revision: 343673
URL: http://svnweb.freebsd.org/changeset/ports/343673
QAT: https://qat.redports.org/buildarchive/r343673/

Log:
  - Add LICENSE
  - Switch from easy_install to install
  - Allow packaging as a regular user
  - Use PYDISTUTILS_AUTOPLIST
  - Stage support
  
  PR:		ports/186088
  PR:		ports/186092
  Submitted by:	John Hein and Johannes Jost Meixner
  Approved by:	maintainer timout (2 weeks)

Deleted:
  head/devel/py-dateutil/pkg-plist
Modified:
  head/devel/py-dateutil/Makefile

Modified: head/devel/py-dateutil/Makefile
==============================================================================
--- head/devel/py-dateutil/Makefile	Mon Feb 10 18:44:40 2014	(r343672)
+++ head/devel/py-dateutil/Makefile	Mon Feb 10 19:04:09 2014	(r343673)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dateutil
 PORTVERSION=	2.1
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,19 +12,18 @@ DISTNAME=	python-dateutil-${PORTVERSION}
 MAINTAINER=	nivit@FreeBSD.org
 COMMENT=	Provides powerful extensions to the standard datetime module
 
-LICENSE=	BSD
+LICENSE=	BSD3CLAUSE
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six
 RUN_DEPENDS+=	${BUILD_DEPENDS}
 
 USE_PYTHON=	yes
-USE_PYDISTUTILS=	easy_install
-PYDISTUTILS_PKGNAME=	python-dateutil
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
 
 # Fix incorrect permissions
-NO_STAGE=	yes
 post-patch:
-	@${FIND} ${WRKSRC} -type f -exec ${CHMOD} ${SHAREMODE} {} ";"
+	@${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} ";"
 	@${REINPLACE_CMD} -e 's|import winreg|from six.moves import winreg|' ${WRKSRC}/dateutil/tzwin.py
 
 regression-test: build
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Antoine Brodin freebsd_committer freebsd_triage 2014-02-10 19:05:23 UTC
State Changed
From-To: open->closed

Patch committed, thanks!