Bug 177472 - Update port www/uwsgi to 1.9.1
Summary: Update port www/uwsgi to 1.9.1
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: Dmitry Sivachenko
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-29 13:20 UTC by Denis Generalov
Modified: 2013-05-23 14:20 UTC (History)
0 users

See Also:


Attachments
file.txt (2.00 KB, text/plain)
2013-03-29 13:20 UTC, Denis Generalov
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Denis Generalov 2013-03-29 13:20:00 UTC
* Update www/uwsgi from 1.4.9 to 1.9.1
* Replace pkg-plist by PLIST_FILES var (there are only two files)
* Slightly change do-install target: now we pay attention on PREFIX, it's nothing critical, but usefull for example for testing port.
* Strip old fashioned header.

Fix: see attached patch

Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-29 13:20:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->demon

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-05-23 14:08:57 UTC
Author: demon
Date: Thu May 23 13:08:48 2013
New Revision: 318869
URL: http://svnweb.freebsd.org/changeset/ports/318869

Log:
  Update to version 1.9.10
  
  PR:		177472
  Submitted by:	Denis Generalov <gd@rambler-co.ru>

Modified:
  head/www/uwsgi/Makefile
  head/www/uwsgi/distinfo

Modified: head/www/uwsgi/Makefile
==============================================================================
--- head/www/uwsgi/Makefile	Thu May 23 13:02:32 2013	(r318868)
+++ head/www/uwsgi/Makefile	Thu May 23 13:08:48 2013	(r318869)
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	uwsgi
-PORTVERSION=	1.4.9
+PORTVERSION=	1.9.10
 CATEGORIES=	www python
 MASTER_SITES=	http://projects.unbit.it/downloads/
 

Modified: head/www/uwsgi/distinfo
==============================================================================
--- head/www/uwsgi/distinfo	Thu May 23 13:02:32 2013	(r318868)
+++ head/www/uwsgi/distinfo	Thu May 23 13:08:48 2013	(r318869)
@@ -1,2 +1,2 @@
-SHA256 (uwsgi-1.4.9.tar.gz) = f4d345e3f08bf7859cf92340f79e10d7093e297e54c8448d9c1c821848e7fe2d
-SIZE (uwsgi-1.4.9.tar.gz) = 590671
+SHA256 (uwsgi-1.9.10.tar.gz) = 2d01dbd3e04901e400b075287a262edc808cce84ff403e9f6f73bbcbf77e05c3
+SIZE (uwsgi-1.9.10.tar.gz) = 621553
_______________________________________________
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 Dmitry Sivachenko freebsd_committer freebsd_triage 2013-05-23 14:09:02 UTC
State Changed
From-To: open->closed

Port updated to version 1.9.10, thanks!
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-05-23 14:14:35 UTC
Author: demon
Date: Thu May 23 13:14:27 2013
New Revision: 318870
URL: http://svnweb.freebsd.org/changeset/ports/318870

Log:
  Use PLIST_FILES;
  Use PYTHONPREFIX_SITELIBDIR instead of PYTHON_SITELIBDIR in install target;
  Strip header.
  
  PR:		177472

Deleted:
  head/www/uwsgi/pkg-plist
Modified:
  head/www/uwsgi/Makefile

Modified: head/www/uwsgi/Makefile
==============================================================================
--- head/www/uwsgi/Makefile	Thu May 23 13:08:48 2013	(r318869)
+++ head/www/uwsgi/Makefile	Thu May 23 13:14:27 2013	(r318870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	uwsgi
-# Date created:				23 May 2010
-# Whom:					Daniel Gerzo <danger@FreeBSD.org>
-#
+# Created by: Daniel Gerzo <danger@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	uwsgi
 PORTVERSION=	1.9.10
@@ -22,11 +18,15 @@ USE_GNOME=	libxml2
 USE_PYTHON=	yes
 USE_RC_SUBR=	uwsgi
 
+PLIST_FILES=	bin/uwsgi \
+		${PYTHONPREFIX_SITELIBDIR}/uwsgidecorators.py
+
 post-patch:
 	${REINPLACE_CMD} -e 's|python|${PYTHON_CMD}|' ${WRKSRC}/Makefile
 
 do-install:
 	@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
-	@${INSTALL_DATA}  ${WRKSRC}/uwsgidecorators.py ${PYTHON_SITELIBDIR}
+	@${MKDIR} ${PYTHONPREFIX_SITELIBDIR}
+	@${INSTALL_DATA}  ${WRKSRC}/uwsgidecorators.py ${PYTHONPREFIX_SITELIBDIR}
 
 .include <bsd.port.mk>
_______________________________________________
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"