Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Nov 2017 16:28:06 +0000 (UTC)
From:      Dan Langille <dvl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r453351 - in head/www: . UniversalFeedCreator
Message-ID:  <201711021628.vA2GS6Pf029903@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dvl
Date: Thu Nov  2 16:28:06 2017
New Revision: 453351
URL: https://svnweb.freebsd.org/changeset/ports/453351

Log:
  Add an RSS and Atom feed generator by Kai Blankenhorn

Added:
  head/www/UniversalFeedCreator/
  head/www/UniversalFeedCreator/Makefile   (contents, props changed)
  head/www/UniversalFeedCreator/distinfo   (contents, props changed)
  head/www/UniversalFeedCreator/pkg-descr   (contents, props changed)
  head/www/UniversalFeedCreator/pkg-plist   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Thu Nov  2 16:17:55 2017	(r453350)
+++ head/www/Makefile	Thu Nov  2 16:28:06 2017	(r453351)
@@ -13,6 +13,7 @@
     SUBDIR += R-cran-scrapeR
     SUBDIR += R-cran-selectr
     SUBDIR += R-cran-shiny
+    SUBDIR += UniversalFeedCreator
     SUBDIR += WebMagick
     SUBDIR += ach
     SUBDIR += adzap

Added: head/www/UniversalFeedCreator/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/UniversalFeedCreator/Makefile	Thu Nov  2 16:28:06 2017	(r453351)
@@ -0,0 +1,34 @@
+# Created by: Dan Langille <dvl@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	UniversalFeedCreator
+PORTVERSION=	1.8.3
+DISTVERSIONPREFIX=	v
+PORTREVISION=	0
+CATEGORIES=	www
+
+MAINTAINER=	dvl@FreeBSD.org
+COMMENT=	RSS and Atom feed generator by Kai Blankenhorn
+
+USES=		php
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	flack
+
+NO_BUILD=	YES
+
+DOTFILES=	.editorconfig .gitattributes .gitignore .travis.yml
+
+.include <bsd.port.pre.mk>
+
+do-install:
+	${MKDIR} ${STAGEDIR}/${DATADIR}
+
+	# install everything +x, because it's easier
+	@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}/${DATADIR})
+
+.for _dot in ${DOTFILES}
+	${RM} ${STAGEDIR}/${DATADIR}/${_dot}
+.endfor
+
+.include <bsd.port.post.mk>

Added: head/www/UniversalFeedCreator/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/UniversalFeedCreator/distinfo	Thu Nov  2 16:28:06 2017	(r453351)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1509638718
+SHA256 (flack-UniversalFeedCreator-v1.8.3_GH0.tar.gz) = f98b18c5b975aea0bdd398ff3a7fd3ce3ce9e31c61ea9f51359c55fcb48cff89
+SIZE (flack-UniversalFeedCreator-v1.8.3_GH0.tar.gz) = 19524

Added: head/www/UniversalFeedCreator/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/UniversalFeedCreator/pkg-descr	Thu Nov  2 16:28:06 2017	(r453351)
@@ -0,0 +1,3 @@
+RSS and Atom feed generator by Kai Blankenhorn
+
+WWW: https://github.com/flack/UniversalFeedCreator

Added: head/www/UniversalFeedCreator/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/UniversalFeedCreator/pkg-plist	Thu Nov  2 16:28:06 2017	(r453351)
@@ -0,0 +1,31 @@
+%%DATADIR%%/README.md
+%%DATADIR%%/composer.json
+%%DATADIR%%/lib/Creator/AtomCreator03.php
+%%DATADIR%%/lib/Creator/AtomCreator10.php
+%%DATADIR%%/lib/Creator/FeedCreator.php
+%%DATADIR%%/lib/Creator/GPXCreator.php
+%%DATADIR%%/lib/Creator/HTMLCreator.php
+%%DATADIR%%/lib/Creator/JSCreator.php
+%%DATADIR%%/lib/Creator/KMLCreator.php
+%%DATADIR%%/lib/Creator/MBOXCreator.php
+%%DATADIR%%/lib/Creator/OPMLCreator.php
+%%DATADIR%%/lib/Creator/PHPCreator.php
+%%DATADIR%%/lib/Creator/PIECreator01.php
+%%DATADIR%%/lib/Creator/RSSCreator091.php
+%%DATADIR%%/lib/Creator/RSSCreator10.php
+%%DATADIR%%/lib/Creator/RSSCreator20.php
+%%DATADIR%%/lib/Element/FeedDate.php
+%%DATADIR%%/lib/Element/FeedHtmlField.php
+%%DATADIR%%/lib/Element/FeedImage.php
+%%DATADIR%%/lib/Element/FeedItem.php
+%%DATADIR%%/lib/Element/HtmlDescribable.php
+%%DATADIR%%/lib/UniversalFeedCreator.php
+%%DATADIR%%/phpunit.xml.dist
+%%DATADIR%%/test/Creator/AtomCreator10Test.php
+%%DATADIR%%/test/Creator/RSSCreator10Test.php
+%%DATADIR%%/test/UniversalFeedCreatorTest.php
+%%DATADIR%%/test/__files/rss091.xml
+%%DATADIR%%/test/__files/rss091empty.xml
+%%DATADIR%%/test/__files/rss10empty.xml
+%%DATADIR%%/test/__files/rss20empty.xml
+%%DATADIR%%/test/rootfile.php



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711021628.vA2GS6Pf029903>