Date: Sun, 30 Sep 2018 06:54:11 +0000 (UTC) From: Jochen Neumeister <joneum@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480937 - head/www/serendipity Message-ID: <201809300654.w8U6sBpE033910@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: joneum Date: Sun Sep 30 06:54:11 2018 New Revision: 480937 URL: https://svnweb.freebsd.org/changeset/ports/480937 Log: Update to 2.1.4 Changelog: - Security: Fix XSS for pagination, when multi-category selection is used. - Minor code fixes (proper PHP escaping for 'orderkey' SQL statement. - Skeleton, Timeline and Clean Blog templates: Add theme option to disable google webfonts Link to https s9y.org pages. Switch to mysqli PHP extension (Fixes build with PHP 7.x) MFH: 2018Q3 Security: 01018916-c47c-11e8-8b07-00e04c1ea73d Sponsored by: Netzkommune GmbH Modified: head/www/serendipity/Makefile head/www/serendipity/distinfo head/www/serendipity/pkg-descr head/www/serendipity/pkg-plist Modified: head/www/serendipity/Makefile ============================================================================== --- head/www/serendipity/Makefile Sun Sep 30 06:48:23 2018 (r480936) +++ head/www/serendipity/Makefile Sun Sep 30 06:54:11 2018 (r480937) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= serendipity -PORTVERSION= 2.1.3 +PORTVERSION= 2.1.4 CATEGORIES= www MASTER_SITES= SF/php-blog/${PORTNAME}/${PORTVERSION} @@ -12,8 +12,6 @@ COMMENT= PHP based weblog software LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/docs/LICENSE -IGNORE_WITH_PHP= 70 71 72 - WRKSRC= ${WRKDIR}/${PORTNAME} NO_BUILD= YES SERENDIPITY?= www/${PORTNAME} @@ -26,7 +24,7 @@ CPE_VENDOR= s9y OPTIONS_DEFINE= MYSQL PGSQL SQLITE MAGICK OPTIONS_DEFAULT= MYSQL MAGICK -MYSQL_USE= PHP=mysql +MYSQL_USE= PHP=mysqli PGSQL_USE= PHP=pgsql SQLITE_USE= PHP=sqlite3 MAGICK_RUN_DEPENDS+= convert:graphics/ImageMagick Modified: head/www/serendipity/distinfo ============================================================================== --- head/www/serendipity/distinfo Sun Sep 30 06:48:23 2018 (r480936) +++ head/www/serendipity/distinfo Sun Sep 30 06:54:11 2018 (r480937) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536576504 -SHA256 (serendipity-2.1.3.tar.bz2) = 6969e978ddc301df67580e9e57366ad80940219996729bda60db64f23d7d05b2 -SIZE (serendipity-2.1.3.tar.bz2) = 6313673 +TIMESTAMP = 1538207348 +SHA256 (serendipity-2.1.4.tar.bz2) = c3b95ca95f515f34a88cb893a0aacff2d29fd3b12868029f96baaed1317e2aa9 +SIZE (serendipity-2.1.4.tar.bz2) = 6352501 Modified: head/www/serendipity/pkg-descr ============================================================================== --- head/www/serendipity/pkg-descr Sun Sep 30 06:48:23 2018 (r480936) +++ head/www/serendipity/pkg-descr Sun Sep 30 06:54:11 2018 (r480937) @@ -1,4 +1,4 @@ Serendipity is a weblog/blog system, implemented with PHP. It is standards compliant, feature rich and open source (BSD License). -WWW: http://www.s9y.org/ +WWW: https://www.s9y.org/ Modified: head/www/serendipity/pkg-plist ============================================================================== --- head/www/serendipity/pkg-plist Sun Sep 30 06:48:23 2018 (r480936) +++ head/www/serendipity/pkg-plist Sun Sep 30 06:54:11 2018 (r480937) @@ -2489,7 +2489,6 @@ %%WWWDIR%%/templates/bulletproof/style.css %%WWWDIR%%/templates/clean-blog/LICENSE %%WWWDIR%%/templates/clean-blog/README.md -%%WWWDIR%%/templates/clean-blog/UTF-8/lang_de.inc.php %%WWWDIR%%/templates/clean-blog/archive_categories.tpl %%WWWDIR%%/templates/clean-blog/archive_freetag.tpl %%WWWDIR%%/templates/clean-blog/backend_templates/default_staticpage_backend.tpl @@ -2528,6 +2527,8 @@ %%WWWDIR%%/templates/clean-blog/staticpage-entries-listing.tpl %%WWWDIR%%/templates/clean-blog/style.css %%WWWDIR%%/templates/clean-blog/trackbacks.tpl +%%WWWDIR%%/templates/clean-blog/UTF-8/lang_de.inc.php +%%WWWDIR%%/templates/clean-blog/UTF-8/lang_en.inc.php %%WWWDIR%%/templates/competition/admin/img/background.jpg %%WWWDIR%%/templates/competition/admin/img/banner_background.png %%WWWDIR%%/templates/competition/admin/img/button_background.png @@ -2802,6 +2803,7 @@ %%WWWDIR%%/templates/skeleton/style.css %%WWWDIR%%/templates/skeleton/trackbacks.tpl %%WWWDIR%%/templates/timeline/UTF-8/lang_de.inc.php +%%WWWDIR%%/templates/timeline/UTF-8/lang_en.inc.php %%WWWDIR%%/templates/timeline/aqua_style.css %%WWWDIR%%/templates/timeline/archive_categories.tpl %%WWWDIR%%/templates/timeline/archive_freetag.tpl
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809300654.w8U6sBpE033910>