1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

www/tt-rss: update to 5a35b31b89 (2018/09/08)

Approved by:	thierry (maintainer), krion (mentor)
Differential Revision:	https://reviews.freebsd.org/D17078
This commit is contained in:
Kevin Bowling 2018-09-12 01:11:13 +00:00
parent 24b60b92ad
commit f8b1100199
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=479578
4 changed files with 15 additions and 22 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$ # $FreeBSD$
PORTNAME= tt-rss PORTNAME= tt-rss
PORTVERSION= g20180718 PORTVERSION= g20180908
PORTEPOCH= 1 PORTEPOCH= 1
CATEGORIES= www CATEGORIES= www
MASTER_SITES= https://git.tt-rss.org/git/tt-rss/archive/ MASTER_SITES= https://git.tt-rss.org/git/tt-rss/archive/
@ -14,7 +14,7 @@ COMMENT= Tiny Tiny RSS: web-based news feed (RSS/Atom) aggregator
LICENSE= GPLv2 LICENSE= GPLv2
GIT_TAGNAME= a2d1fa5b14 GIT_TAGNAME= 5a35b31b89
NO_BUILD= yes NO_BUILD= yes
NO_ARCH= yes NO_ARCH= yes
@ -37,14 +37,14 @@ GD_DESC= Use OTP QR code generation
.include <bsd.port.options.mk> .include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPGSQL} .if ${PORT_OPTIONS:MPGSQL}
USE_PHP+= pdo_pgsql USE_PHP+= pdo_pgsql pgsql
DB= pgsql DB= pgsql
MYSQL= "\#" MYSQL= "\#"
PGSQL= PGSQL=
.endif .endif
.if ${PORT_OPTIONS:MMYSQL} .if ${PORT_OPTIONS:MMYSQL}
USE_PHP+= pdo_mysql USE_PHP+= pdo_mysql mysqli
DB= mysql DB= mysql
MYSQL= MYSQL=
PGSQL= "\#" PGSQL= "\#"

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1532818802 TIMESTAMP = 1536400837
SHA256 (tt-rss/a2d1fa5b14.tar.gz) = 3b5957fb0c572054b0b7a0a5d03b23416f376181cda68cf6b0d76615fdc9ea50 SHA256 (tt-rss/5a35b31b89.tar.gz) = aa8da2cbc145b2533b0d601338a32967a316f62958a7fbb066ab1b07742bb15f
SIZE (tt-rss/a2d1fa5b14.tar.gz) = 3067931 SIZE (tt-rss/5a35b31b89.tar.gz) = 2958264

View File

@ -28,6 +28,6 @@ in your config.php; remember to modify after that if needed. And your
DB_USER must be granted to ALTER any tables of your DB_NAME. And don't DB_USER must be granted to ALTER any tables of your DB_NAME. And don't
forget to empty the cache of your browser! forget to empty the cache of your browser!
Please read <http://tt-rss.org/redmine/wiki/tt-rss/InstallationNotes> and Please read <https://git.tt-rss.org/fox/tt-rss/wiki/InstallationNotes> and
<http://tt-rss.org/redmine/wiki/tt-rss/UpdatingFeeds> for important points. <https://git.tt-rss.org/fox/tt-rss/wiki/UpdatingFeeds> for important points.
=============================================================================== ===============================================================================

View File

@ -42,6 +42,7 @@
%%WWWDIR%%/classes/labels.php %%WWWDIR%%/classes/labels.php
%%WWWDIR%%/classes/logger.php %%WWWDIR%%/classes/logger.php
%%WWWDIR%%/classes/logger/sql.php %%WWWDIR%%/classes/logger/sql.php
%%WWWDIR%%/classes/logger/stdout.php
%%WWWDIR%%/classes/logger/syslog.php %%WWWDIR%%/classes/logger/syslog.php
%%WWWDIR%%/classes/opml.php %%WWWDIR%%/classes/opml.php
%%WWWDIR%%/classes/plugin.php %%WWWDIR%%/classes/plugin.php
@ -114,7 +115,6 @@
%%WWWDIR%%/include/autoload.php %%WWWDIR%%/include/autoload.php
%%WWWDIR%%/include/colors.php %%WWWDIR%%/include/colors.php
%%WWWDIR%%/include/controls.php %%WWWDIR%%/include/controls.php
%%WWWDIR%%/include/crypt.php
%%WWWDIR%%/include/db-prefs.php %%WWWDIR%%/include/db-prefs.php
%%WWWDIR%%/include/db.php %%WWWDIR%%/include/db.php
%%WWWDIR%%/include/errorhandler.php %%WWWDIR%%/include/errorhandler.php
@ -127,9 +127,12 @@
%%WWWDIR%%/include/version.php %%WWWDIR%%/include/version.php
%%WWWDIR%%/index.php %%WWWDIR%%/index.php
%%WWWDIR%%/install/index.php %%WWWDIR%%/install/index.php
%%WWWDIR%%/js/FeedStoreModel.js
%%WWWDIR%%/js/FeedTree.js %%WWWDIR%%/js/FeedTree.js
%%WWWDIR%%/js/PluginHost.js %%WWWDIR%%/js/PluginHost.js
%%WWWDIR%%/js/PrefFeedStore.js
%%WWWDIR%%/js/PrefFeedTree.js %%WWWDIR%%/js/PrefFeedTree.js
%%WWWDIR%%/js/PrefFilterStore.js
%%WWWDIR%%/js/PrefFilterTree.js %%WWWDIR%%/js/PrefFilterTree.js
%%WWWDIR%%/js/PrefLabelTree.js %%WWWDIR%%/js/PrefLabelTree.js
%%WWWDIR%%/js/feedlist.js %%WWWDIR%%/js/feedlist.js
@ -138,10 +141,12 @@
%%WWWDIR%%/js/prefs.js %%WWWDIR%%/js/prefs.js
%%WWWDIR%%/js/tt-rss.js %%WWWDIR%%/js/tt-rss.js
%%WWWDIR%%/js/viewfeed.js %%WWWDIR%%/js/viewfeed.js
%%WWWDIR%%/lib/CheckBoxStoreModel.js
%%WWWDIR%%/lib/CheckBoxTree.js %%WWWDIR%%/lib/CheckBoxTree.js
%%WWWDIR%%/lib/MiniTemplator.class.php %%WWWDIR%%/lib/MiniTemplator.class.php
%%WWWDIR%%/lib/Mobile_Detect.php %%WWWDIR%%/lib/Mobile_Detect.php
%%WWWDIR%%/lib/accept-to-gettext.php %%WWWDIR%%/lib/accept-to-gettext.php
%%WWWDIR%%/lib/_CheckBoxTreeNode.js
%%WWWDIR%%/lib/dijit/BackgroundIframe.js %%WWWDIR%%/lib/dijit/BackgroundIframe.js
%%WWWDIR%%/lib/dijit/CONTRIBUTING.md %%WWWDIR%%/lib/dijit/CONTRIBUTING.md
%%WWWDIR%%/lib/dijit/Calendar.js %%WWWDIR%%/lib/dijit/Calendar.js
@ -2399,13 +2404,6 @@
%%WWWDIR%%/plugins/af_comics/filters/af_comics_whomp.php %%WWWDIR%%/plugins/af_comics/filters/af_comics_whomp.php
%%WWWDIR%%/plugins/af_comics/init.php %%WWWDIR%%/plugins/af_comics/init.php
%%WWWDIR%%/plugins/af_fsckportal/init.php %%WWWDIR%%/plugins/af_fsckportal/init.php
%%WWWDIR%%/plugins/af_lang_detect/init.php
%%WWWDIR%%/plugins/af_lang_detect/languagedetect/LanguageDetect.php
%%WWWDIR%%/plugins/af_lang_detect/languagedetect/Text/LanguageDetect/Exception.php
%%WWWDIR%%/plugins/af_lang_detect/languagedetect/Text/LanguageDetect/ISO639.php
%%WWWDIR%%/plugins/af_lang_detect/languagedetect/Text/LanguageDetect/Parser.php
%%WWWDIR%%/plugins/af_lang_detect/languagedetect/data/lang.dat
%%WWWDIR%%/plugins/af_lang_detect/languagedetect/data/unicode_blocks.dat
%%WWWDIR%%/plugins/af_psql_trgm/button.png %%WWWDIR%%/plugins/af_psql_trgm/button.png
%%WWWDIR%%/plugins/af_psql_trgm/init.js %%WWWDIR%%/plugins/af_psql_trgm/init.js
%%WWWDIR%%/plugins/af_psql_trgm/init.php %%WWWDIR%%/plugins/af_psql_trgm/init.php
@ -2853,11 +2851,6 @@
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_redditimgur @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_redditimgur
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_readability @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_readability
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_psql_trgm @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_psql_trgm
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_lang_detect/languagedetect/Text/LanguageDetect
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_lang_detect/languagedetect/Text
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_lang_detect/languagedetect/data
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_lang_detect/languagedetect
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_lang_detect
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_fsckportal @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_fsckportal
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_comics/filters.local @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_comics/filters.local
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_comics/filters @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/plugins/af_comics/filters