From owner-svn-ports-all@FreeBSD.ORG Thu Jun 5 06:42:06 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A68512A9; Thu, 5 Jun 2014 06:42:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9419B24F7; Thu, 5 Jun 2014 06:42:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s556g6i9080028; Thu, 5 Jun 2014 06:42:06 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s556g6l5080026; Thu, 5 Jun 2014 06:42:06 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201406050642.s556g6l5080026@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Thu, 5 Jun 2014 06:42:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356598 - in head/deskutils/gourmet: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2014 06:42:06 -0000 Author: rm Date: Thu Jun 5 06:42:05 2014 New Revision: 356598 URL: http://svnweb.freebsd.org/changeset/ports/356598 QAT: https://qat.redports.org/buildarchive/r356598/ Log: deskutils/gourmet: update to 0.17.3 - update to 0.17.3 - switch to github - update dependencies - convert to using auto-generated packing list - add stage support - remove patch, included into this upstream version Deleted: head/deskutils/gourmet/files/ head/deskutils/gourmet/pkg-plist Modified: head/deskutils/gourmet/Makefile head/deskutils/gourmet/distinfo Modified: head/deskutils/gourmet/Makefile ============================================================================== --- head/deskutils/gourmet/Makefile Thu Jun 5 06:23:20 2014 (r356597) +++ head/deskutils/gourmet/Makefile Thu Jun 5 06:42:05 2014 (r356598) @@ -2,48 +2,36 @@ # $FreeBSD$ PORTNAME= gourmet -PORTVERSION= 0.16.0 -PORTREVISION= 1 +PORTVERSION= 0.17.3 CATEGORIES= deskutils gnome -MASTER_SITES= https://launchpadlibrarian.net/133161899/ +MASTER_SITES= https://github.com/thinkle/gourmet/archive/ +DISTNAME= ${PORTVERSION} +DIST_SUBDIR= ${PORTNAME} MAINTAINER= rm@FreeBSD.org COMMENT= GNOME recipe manager LICENSE= GPLv2 -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}distutils-extra>0:${PORTSDIR}/devel/py-distutils-extra +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}distutils-extra>0:${PORTSDIR}/devel/py-distutils-extra \ + ${PYTHON_PKGNAMEPREFIX}elib.intl>0:${PORTSDIR}/textproc/py-elib.intl RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlalchemy>=0:${PORTSDIR}/databases/py-sqlalchemy \ - ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}poppler>=0:${PORTSDIR}/graphics/py-poppler \ ${PYTHON_PKGNAMEPREFIX}rtf>=0:${PORTSDIR}/print/py-rtf \ - ${PYTHON_PKGNAMEPREFIX}reportlab1>=0:${PORTSDIR}/print/py-reportlab1 \ + ${PYTHON_PKGNAMEPREFIX}reportlab>0:${PORTSDIR}/print/py-reportlab \ ${PYTHON_PKGNAMEPREFIX}elib.intl>0:${PORTSDIR}/textproc/py-elib.intl -MAN1= gourmet.1 -PORTDOCS= FAQ LICENSE -PORTSCOUT= ignore:1 - -USE_BZIP2= yes USES= gettext USE_GNOME= pygnome2 pygnomeextras pygtk2 -USE_PYTHON= 2 -USE_PYDISTUTILS=yes - -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|' \ - ${WRKSRC}/gourmet/backends/db.py \ - ${WRKSRC}/gourmet/gtk_extras/chooserNotebook.py \ - ${WRKSRC}/gourmet/gtk_extras/mnemonic_manager.py \ - ${WRKSRC}/gourmet/plugins/import_export/pdf_plugin/print_plugin.py \ - ${WRKSRC}/gourmet/plugins/nutritional_information/nutritionDisplay.py \ - ${WRKSRC}/gourmet/plugins/nutritional_information/nutrition.py \ - ${WRKSRC}/gourmet/plugins/web_plugin/gourmetweb/manage.py \ - ${WRKSRC}/tools/backup_gourmet_to_xml.py +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +PLIST_FILES+= man/man1/gourmet.1.gz +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} post-install: - @${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${PREFIX}/man/man1/ + ${INSTALL_MAN} ${WRKSRC}/gourmet.1 ${STAGEDIR}${PREFIX}/man/man1/ .include Modified: head/deskutils/gourmet/distinfo ============================================================================== --- head/deskutils/gourmet/distinfo Thu Jun 5 06:23:20 2014 (r356597) +++ head/deskutils/gourmet/distinfo Thu Jun 5 06:42:05 2014 (r356598) @@ -1,2 +1,2 @@ -SHA256 (gourmet-0.16.0.tar.bz2) = 8baef8b6003785a83c968cf35ea06724751517b2968f893011b6307a557777a1 -SIZE (gourmet-0.16.0.tar.bz2) = 8474989 +SHA256 (gourmet/0.17.3.tar.gz) = 40feddf8b7c36d1ab04a80587f1c61303ae60a78793820a04047a3f875e5d9cd +SIZE (gourmet/0.17.3.tar.gz) = 8569152