Date: Sun, 18 Aug 2013 17:28:16 +0900 From: "Junji NAKANISHI" <jun-g@daemonfreaks.com> To: "FreeBSD gnats submit" <FreeBSD-gnats-submit@freebsd.org> Subject: ports/181371: [MAINTAINER] www/pyblosxom: update to 1.5.3 Message-ID: <1376814496.803082.60888@blackmagic.daemonfreaks.local> Resent-Message-ID: <201308180850.r7I8o2Nc040871@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 181371 >Category: ports >Synopsis: [MAINTAINER] www/pyblosxom: update to 1.5.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Aug 18 08:50:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Junji NAKANISHI >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD 9.2-PRERELEASE #6 r254436: Sat Aug 17 17:11:08 JST 2013 root@blackmagic.daemonfreaks.local:/usr/obj/usr/src/sys/GENERIC >Description: - Update to 1.5.3 - Trim Makefile's header - Change MASTER_SITES and WWW - Convert to new options framework >How-To-Repeat: >Fix: --- pyblosxom.patch begins here --- diff -du pyblosxom.orig/Makefile pyblosxom/Makefile --- pyblosxom.orig/Makefile 2013-08-18 16:37:58.000000000 +0900 +++ pyblosxom/Makefile 2013-08-18 16:51:57.000000000 +0900 @@ -1,14 +1,10 @@ -# New ports collection makefile for: pyblosxom -# Date created: 13 April 2005 -# Whom: Dryice Liu <dryice@liu.com.cn> -# -# $FreeBSD: head/www/pyblosxom/Makefile 300897 2012-07-14 14:29:18Z beat $ -# +# Created by: Dryice Liu <dryice@liu.com.cn> +# $FreeBSD:$ PORTNAME= pyblosxom -DISTVERSION= 1.5.2 +DISTVERSION= 1.5.3 CATEGORIES= www python -MASTER_SITES= http://pyblosxom.bluesock.org/download/ +MASTER_SITES= http://pyblosxom.github.io/download/ MAINTAINER= jun-g@daemonfreaks.com COMMENT= A lightweight weblog system @@ -18,9 +14,11 @@ USE_PYTHON= -2.7 USE_PYDISTUTILS= easy_install +.include <bsd.port.options.mk> + post-install: -.ifndef(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \. ${DOCSDIR} .endif diff -du pyblosxom.orig/distinfo pyblosxom/distinfo --- pyblosxom.orig/distinfo 2013-08-18 16:37:58.000000000 +0900 +++ pyblosxom/distinfo 2013-08-18 16:39:49.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (pyblosxom-1.5.2.tar.gz) = dbe46f66fa790213c7ff5b87348894f8a57e962a69b307e10fdd3408cd93b3e2 -SIZE (pyblosxom-1.5.2.tar.gz) = 206032 +SHA256 (pyblosxom-1.5.3.tar.gz) = 42d17927b203ef075c8467e26bba66fe418f1114d4bb597403859144d3f1ec3e +SIZE (pyblosxom-1.5.3.tar.gz) = 210669 diff -du pyblosxom.orig/pkg-descr pyblosxom/pkg-descr --- pyblosxom.orig/pkg-descr 2013-08-18 16:37:58.000000000 +0900 +++ pyblosxom/pkg-descr 2013-08-18 16:40:19.000000000 +0900 @@ -17,4 +17,4 @@ PyBlosxom is a pretty straight-forward system that allows you to do the things you need to do without building everything from scratch. -WWW: http://pyblosxom.bluesock.org/ +WWW: http://pyblosxom.github.io/ diff -du pyblosxom.orig/pkg-plist pyblosxom/pkg-plist --- pyblosxom.orig/pkg-plist 2013-08-18 16:37:58.000000000 +0900 +++ pyblosxom/pkg-plist 2013-08-18 16:56:54.000000000 +0900 @@ -65,6 +65,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Pyblosxom/flavours/rss20.flav/foot %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Pyblosxom/flavours/rss20.flav/head %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Pyblosxom/flavours/rss20.flav/story +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Pyblosxom/memcache.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Pyblosxom/memcache.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Pyblosxom/memcache.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Pyblosxom/plugin_utils.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Pyblosxom/plugin_utils.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Pyblosxom/plugin_utils.pyo @@ -256,16 +259,19 @@ %%PORTDOCS%%%%DOCSDIR%%/config_variables.rst %%PORTDOCS%%%%DOCSDIR%%/deploy_apache_mod_wsgi.rst %%PORTDOCS%%%%DOCSDIR%%/deploy_cgi.rst +%%PORTDOCS%%%%DOCSDIR%%/deploy_lighttpd_fastcgi.rst %%PORTDOCS%%%%DOCSDIR%%/deploy_paste.rst %%PORTDOCS%%%%DOCSDIR%%/deploy_staticrendering.rst %%PORTDOCS%%%%DOCSDIR%%/dev_architecture.rst %%PORTDOCS%%%%DOCSDIR%%/dev_codedocs.rst +%%PORTDOCS%%%%DOCSDIR%%/dev_contributing.rst +%%PORTDOCS%%%%DOCSDIR%%/dev_hacking.rst +%%PORTDOCS%%%%DOCSDIR%%/dev_release.rst %%PORTDOCS%%%%DOCSDIR%%/dev_testing.rst %%PORTDOCS%%%%DOCSDIR%%/dev_writing_plugins.rst %%PORTDOCS%%%%DOCSDIR%%/extract_docs_from_plugins.py %%PORTDOCS%%%%DOCSDIR%%/flavours_and_templates.rst %%PORTDOCS%%%%DOCSDIR%%/glossary.rst -%%PORTDOCS%%%%DOCSDIR%%/hacking.rst %%PORTDOCS%%%%DOCSDIR%%/index.rst %%PORTDOCS%%%%DOCSDIR%%/install.rst %%PORTDOCS%%%%DOCSDIR%%/introduction.rst @@ -299,7 +305,6 @@ %%PORTDOCS%%%%DOCSDIR%%/plugins/xmlrpc_pingback.rst %%PORTDOCS%%%%DOCSDIR%%/plugins/yeararchives.rst %%PORTDOCS%%%%DOCSDIR%%/pyblosxom_cmd.rst -%%PORTDOCS%%%%DOCSDIR%%/release.rst %%PORTDOCS%%%%DOCSDIR%%/renderers.rst %%PORTDOCS%%%%DOCSDIR%%/syndication.rst %%PORTDOCS%%%%DOCSDIR%%/upgrade.rst --- pyblosxom.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1376814496.803082.60888>