From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 29 13:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7A4B294C for ; Fri, 29 Mar 2013 13:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 613852C1 for ; Fri, 29 Mar 2013 13:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2TDK186052518 for ; Fri, 29 Mar 2013 13:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2TDK1Wk052517; Fri, 29 Mar 2013 13:20:01 GMT (envelope-from gnats) Resent-Date: Fri, 29 Mar 2013 13:20:01 GMT Resent-Message-Id: <201303291320.r2TDK1Wk052517@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Denis Generalov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3720C5D4 for ; Fri, 29 Mar 2013 13:12:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 27B11230 for ; Fri, 29 Mar 2013 13:12:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id r2TDCIqX007610 for ; Fri, 29 Mar 2013 13:12:18 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id r2TDCIDY007609; Fri, 29 Mar 2013 13:12:18 GMT (envelope-from nobody) Message-Id: <201303291312.r2TDCIDY007609@red.freebsd.org> Date: Fri, 29 Mar 2013 13:12:18 GMT From: Denis Generalov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/177472: Update port www/uwsgi to 1.9.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Mar 2013 13:20:01 -0000 >Number: 177472 >Category: ports >Synopsis: Update port www/uwsgi to 1.9.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Mar 29 13:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Denis Generalov >Release: FreeBSD 9.1-STABLE amd64 >Organization: Rambler >Environment: FreeBSD tyl.rambler.ramblermedia.com 9.1-STABLE FreeBSD 9.1-STABLE #0 r244924: Tue Jan 1 21:05:19 MSK 2013 gd@tyl.rambler.ramblermedia.com:/tmp/gd/usr/src/sys/GENERIC amd64 >Description: * 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. >How-To-Repeat: >Fix: see attached patch Patch attached with submission follows: ===> Generating patch ===> Viewing diff with more diff -ruN /usr/ports//www/uwsgi/Makefile ./Makefile --- /usr/ports//www/uwsgi/Makefile 2013-03-11 21:14:32.000000000 +0400 +++ ./Makefile 2013-03-28 03:12:22.000000000 +0400 @@ -1,12 +1,8 @@ -# New ports collection makefile for: uwsgi -# Date created: 23 May 2010 -# Whom: Daniel Gerzo -# +# Created by: Daniel Gerzo # $FreeBSD: head/www/uwsgi/Makefile 313879 2013-03-11 12:50:46Z demon $ -# PORTNAME= uwsgi -PORTVERSION= 1.4.9 +PORTVERSION= 1.9.1 CATEGORIES= www python MASTER_SITES= http://projects.unbit.it/downloads/ @@ -18,15 +14,23 @@ MAKE_JOBS_SAFE= yes +LIB_DEPENDS+= execinfo:${PORTSDIR}/devel/libexecinfo \ + pcre:${PORTSDIR}/devel/pcre + USE_GNOME= libxml2 +USE_ICONV= yes 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} + @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + @${MKDIR} ${PYTHONPREFIX_SITELIBDIR} + @${INSTALL_DATA} ${WRKSRC}/uwsgidecorators.py ${PYTHONPREFIX_SITELIBDIR} .include diff -ruN /usr/ports//www/uwsgi/distinfo ./distinfo --- /usr/ports//www/uwsgi/distinfo 2013-03-11 21:14:32.000000000 +0400 +++ ./distinfo 2013-03-28 02:45:40.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (uwsgi-1.4.9.tar.gz) = f4d345e3f08bf7859cf92340f79e10d7093e297e54c8448d9c1c821848e7fe2d -SIZE (uwsgi-1.4.9.tar.gz) = 590671 +SHA256 (uwsgi-1.9.1.tar.gz) = d2ab4d8e3d76ee33bd4d25aa9bfd3203454207c4623dc18ea3df5c3b65c11166 +SIZE (uwsgi-1.9.1.tar.gz) = 576549 diff -ruN /usr/ports//www/uwsgi/pkg-plist ./pkg-plist --- /usr/ports//www/uwsgi/pkg-plist 2012-09-12 19:08:17.000000000 +0400 +++ ./pkg-plist 1970-01-01 03:00:00.000000000 +0300 @@ -1,2 +0,0 @@ -bin/uwsgi -%%PYTHON_SITELIBDIR%%/uwsgidecorators.py ===> Done >Release-Note: >Audit-Trail: >Unformatted: