diff -Nru rss-bridge-2017-08-03/debian/changelog rss-bridge-2017-08-03/debian/changelog --- rss-bridge-2017-08-03/debian/changelog 2017-08-04 20:06:01.000000000 +0000 +++ rss-bridge-2017-08-03/debian/changelog 2017-08-05 21:11:01.000000000 +0000 @@ -1,3 +1,17 @@ +rss-bridge (2017-08-03-3) unstable; urgency=medium + + * correct php dependencies s/php5/php/g + + -- Johannes Schauer Sat, 05 Aug 2017 23:11:01 +0200 + +rss-bridge (2017-08-03-2) unstable; urgency=medium + + * add nginx.conf example + * add php modules to Depends + * add debian/watch + + -- Johannes Schauer Sat, 05 Aug 2017 22:16:44 +0200 + rss-bridge (2017-08-03-1) unstable; urgency=medium * Initial release. (Closes: #870687) diff -Nru rss-bridge-2017-08-03/debian/control rss-bridge-2017-08-03/debian/control --- rss-bridge-2017-08-03/debian/control 2017-08-04 19:35:35.000000000 +0000 +++ rss-bridge-2017-08-03/debian/control 2017-08-05 21:10:24.000000000 +0000 @@ -10,7 +10,7 @@ Package: rss-bridge Architecture: all -Depends: ${misc:Depends}, php5-curl, php5-json, nginx | httpd +Depends: ${misc:Depends}, php-curl, php-json, apache2 | nginx | httpd, libapache2-mod-php | php-fpm | php-cgi Description: web service generating ATOM feeds for websites that don't have them Provides a PHP web service which generates ATOM feeds for facebook, twitter, youtube, flickr, google, instagram, pinterest and more than 130 other web diff -Nru rss-bridge-2017-08-03/debian/nginx.conf rss-bridge-2017-08-03/debian/nginx.conf --- rss-bridge-2017-08-03/debian/nginx.conf 1970-01-01 00:00:00.000000000 +0000 +++ rss-bridge-2017-08-03/debian/nginx.conf 2017-08-05 21:07:04.000000000 +0000 @@ -0,0 +1,12 @@ +server { + listen 80; + root /usr/share/rss-bridge; + index index.php; + + location /index.php { + fastcgi_pass unix:/var/run/php5-fpm.sock; + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + include fastcgi_params; + } +} diff -Nru rss-bridge-2017-08-03/debian/rss-bridge.examples rss-bridge-2017-08-03/debian/rss-bridge.examples --- rss-bridge-2017-08-03/debian/rss-bridge.examples 1970-01-01 00:00:00.000000000 +0000 +++ rss-bridge-2017-08-03/debian/rss-bridge.examples 2017-08-05 21:07:04.000000000 +0000 @@ -0,0 +1 @@ +debian/nginx.conf diff -Nru rss-bridge-2017-08-03/debian/rules rss-bridge-2017-08-03/debian/rules --- rss-bridge-2017-08-03/debian/rules 2017-08-04 20:04:07.000000000 +0000 +++ rss-bridge-2017-08-03/debian/rules 2017-08-05 21:07:04.000000000 +0000 @@ -5,6 +5,9 @@ override_dh_install: dh_install install -d -o www-data -g www-data $(CURDIR)/debian/rss-bridge/var/cache/rss-bridge + # the following workaround can be removed once + # https://github.com/RSS-Bridge/rss-bridge/issues/561 + # is fixed chmod -x $(CURDIR)/debian/rss-bridge/usr/share/rss-bridge/bridges/LeBonCoinBridge.php override_dh_fixperms: diff -Nru rss-bridge-2017-08-03/debian/watch rss-bridge-2017-08-03/debian/watch --- rss-bridge-2017-08-03/debian/watch 1970-01-01 00:00:00.000000000 +0000 +++ rss-bridge-2017-08-03/debian/watch 2017-08-05 21:07:04.000000000 +0000 @@ -0,0 +1,4 @@ +version=4 +opts="filenamemangle=s%(?:.*?)?(\d\d\d\d-\d\d-\d\d)\.tar\.gz%rss-bridge-$1.tar.gz%" \ + https://github.com/RSS-Bridge/rss-bridge/tags \ + (?:.*?/)?(\d\d\d\d-\d\d-\d\d)\.tar\.gz debian uupdate