From owner-svn-ports-head@FreeBSD.ORG Fri May 24 16:18:30 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 38714BDC; Fri, 24 May 2013 16:18:30 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ie0-x233.google.com (mail-ie0-x233.google.com [IPv6:2607:f8b0:4001:c03::233]) by mx1.freebsd.org (Postfix) with ESMTP id E652ACD3; Fri, 24 May 2013 16:18:29 +0000 (UTC) Received: by mail-ie0-f179.google.com with SMTP id c13so12955024ieb.10 for ; Fri, 24 May 2013 09:18:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=I/+5cydULexj5MxwbWL+EV9SpicgHx4fNMLGU2tPqgI=; b=r/TebLSa7an7BDhm62q3xOKB6dFBy1lvpi+TvVcwBgu4oMLEP/FpFx+TKn0DFTWENK vNDAacQ2e4NY+q24JPTwvxTf+W0PS+KQpG26Wsd+rkynWmt6jQIpy057f7z7YXStX1Y3 vpOFhMCEEaeWOUzZLBcZwNWpw50UmY+kd9dHU8Df6HzSYs8MwL03vCsrbsJxUDGxftyO pozJMPkiiunXLSf78v2kbJlz8Q13nskul2b1+STmGrJCKx7BnSh3Jeh3defH3oJEH/JK cq3ivHdYyEuc70ozMcy5kX/JGNspkMsUOLmCdHbwVXcN1W2BAyeaqsOrZyYB/bXk0Su1 I/bA== MIME-Version: 1.0 X-Received: by 10.50.72.49 with SMTP id a17mr2365935igv.36.1369412309486; Fri, 24 May 2013 09:18:29 -0700 (PDT) Received: by 10.64.23.243 with HTTP; Fri, 24 May 2013 09:18:29 -0700 (PDT) Received: by 10.64.23.243 with HTTP; Fri, 24 May 2013 09:18:29 -0700 (PDT) In-Reply-To: <201305241327.r4ODRBbP027255@svn.freebsd.org> References: <201305241327.r4ODRBbP027255@svn.freebsd.org> Date: Fri, 24 May 2013 17:18:29 +0100 Message-ID: Subject: Re: svn commit: r318965 - head/www/uwsgi From: Chris Rees To: "demon@FreeBSD.org" Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 May 2013 16:18:30 -0000 On 24 May 2013 14:27, "Dmitry Sivachenko" wrote: > > Author: demon > Date: Fri May 24 13:27:10 2013 > New Revision: 318965 > URL: http://svnweb.freebsd.org/changeset/ports/318965 > > Log: > pkg_add seems to have problems if PLIST_FILES contain absolute path. > > Added: > head/www/uwsgi/pkg-plist (contents, props changed) > Modified: > head/www/uwsgi/Makefile > > Modified: head/www/uwsgi/Makefile > ============================================================================== > --- head/www/uwsgi/Makefile Fri May 24 13:16:49 2013 (r318964) > +++ head/www/uwsgi/Makefile Fri May 24 13:27:10 2013 (r318965) > @@ -18,9 +18,6 @@ USE_GNOME= libxml2 > USE_PYTHON= yes > USE_RC_SUBR= uwsgi > > -PLIST_FILES= bin/uwsgi \ > - ${PYTHONPREFIX_SITELIBDIR}/uwsgidecorators.py > - ${PYTHON_SITELIBDIR} is sufficient here. Chris > post-patch: > ${REINPLACE_CMD} -e 's|python|${PYTHON_CMD}|' ${WRKSRC}/Makefile > > > Added: head/www/uwsgi/pkg-plist > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/www/uwsgi/pkg-plist Fri May 24 13:27:10 2013 (r318965) > @@ -0,0 +1,2 @@ > +bin/uwsgi > +%%PYTHON_SITELIBDIR%%/uwsgidecorators.py >