[arch-commits] Commit in tt-rss/repos/community-any (6 files)

Bartłomiej Piotrowski bpiotrowski at nymeria.archlinux.org
Wed Dec 18 20:44:40 UTC 2013


    Date: Wednesday, December 18, 2013 @ 21:44:40
  Author: bpiotrowski
Revision: 102746

archrelease: copy trunk to community-any

Added:
  tt-rss/repos/community-any/PKGBUILD
    (from rev 102745, tt-rss/trunk/PKGBUILD)
  tt-rss/repos/community-any/service
    (from rev 102745, tt-rss/trunk/service)
  tt-rss/repos/community-any/tt-rss.install
    (from rev 102745, tt-rss/trunk/tt-rss.install)
Deleted:
  tt-rss/repos/community-any/PKGBUILD
  tt-rss/repos/community-any/service
  tt-rss/repos/community-any/tt-rss.install

----------------+
 PKGBUILD       |   86 +++++++++++++++++++++++++++----------------------------
 service        |   26 ++++++++--------
 tt-rss.install |    8 ++---
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2013-12-18 20:44:38 UTC (rev 102745)
+++ PKGBUILD	2013-12-18 20:44:40 UTC (rev 102746)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Clément Démoulins <clement at archivel.fr>
-# Contributor: David Rosenstrauch <darose at darose.net>
-# Contributor: Erik Mank <erik at braindisorder.org>
-
-pkgname=tt-rss
-pkgver=1.10
-pkgrel=1
-pkgdesc='Web-based news feed (RSS/Atom) aggregator'
-arch=('any')
-url='http://tt-rss.org/redmine/'
-license=('GPL')
-depends=('php')
-optdepends=('mysql' 'postgresql' 'php-curl')
-install=tt-rss.install
-source=(https://github.com/gothfox/Tiny-Tiny-RSS/archive/$pkgver.tar.gz
-        service)
-sha256sums=('66064f4a880f5cf46e2044037dbe24b2161129db652c75194b46c66988f4e772'
-            '41309d75318b32a6a8152c36cbc8431a9173b58ca98f0b73d09b1d2242000737')
-
-package() {
-  cd Tiny-Tiny-RSS-$pkgver
-  _instdir="$pkgdir"/usr/share/webapps/$pkgname
-
-  install -d "$_instdir"
-  cp -ra * "$_instdir/"
-  rm -rf "$_instdir"/debian
-
-  install -d "$pkgdir"/etc/webapps/tt-rss
-  install -gm640 -g http config.php-dist "$pkgdir"/etc/webapps/tt-rss/config.php-dist
-  ln -s /etc/webapps/tt-rss/config.php "$_instdir"/config.php
-
-  install -d "$pkgdir"/var/lib/tt-rss
-  mv "$_instdir"/{lock,feed-icons,cache} "$pkgdir"/var/lib/tt-rss
-  ln -s /var/lib/tt-rss/lock "$_instdir"/lock
-  ln -s /var/lib/tt-rss/feed-icons "$_instdir"/feed-icons
-  ln -s /var/lib/tt-rss/cache "$_instdir"/cache
-  chown -R 33:33 "$pkgdir"/var/lib/tt-rss
-  chmod -R 777 "$pkgdir"/var/lib/tt-rss/*
-
-  install -Dm644 "$srcdir"/service "$pkgdir"/usr/lib/systemd/system/tt-rss.service
-}

Copied: tt-rss/repos/community-any/PKGBUILD (from rev 102745, tt-rss/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2013-12-18 20:44:40 UTC (rev 102746)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Clément Démoulins <clement at archivel.fr>
+# Contributor: David Rosenstrauch <darose at darose.net>
+# Contributor: Erik Mank <erik at braindisorder.org>
+
+pkgname=tt-rss
+pkgver=1.11
+pkgrel=1
+pkgdesc='Web-based news feed (RSS/Atom) aggregator'
+arch=('any')
+url='http://tt-rss.org/redmine/'
+license=('GPL')
+depends=('php')
+optdepends=('mysql' 'postgresql' 'php-curl')
+install=tt-rss.install
+source=(https://github.com/gothfox/Tiny-Tiny-RSS/archive/$pkgver.tar.gz
+        service)
+sha256sums=('27c5dfbf73f65b5a632388d4063091a80658613ad9afd9adb35868e20a7315f9'
+            '41309d75318b32a6a8152c36cbc8431a9173b58ca98f0b73d09b1d2242000737')
+
+package() {
+  cd Tiny-Tiny-RSS-$pkgver
+  _instdir="$pkgdir"/usr/share/webapps/$pkgname
+
+  install -d "$_instdir"
+  cp -ra * "$_instdir/"
+  rm -rf "$_instdir"/debian
+
+  install -d "$pkgdir"/etc/webapps/tt-rss
+  install -gm640 -g http config.php-dist "$pkgdir"/etc/webapps/tt-rss/config.php-dist
+  ln -s /etc/webapps/tt-rss/config.php "$_instdir"/config.php
+
+  install -d "$pkgdir"/var/lib/tt-rss
+  mv "$_instdir"/{lock,feed-icons,cache} "$pkgdir"/var/lib/tt-rss
+  ln -s /var/lib/tt-rss/lock "$_instdir"/lock
+  ln -s /var/lib/tt-rss/feed-icons "$_instdir"/feed-icons
+  ln -s /var/lib/tt-rss/cache "$_instdir"/cache
+  chown -R 33:33 "$pkgdir"/var/lib/tt-rss
+  chmod -R 777 "$pkgdir"/var/lib/tt-rss/*
+
+  install -Dm644 "$srcdir"/service "$pkgdir"/usr/lib/systemd/system/tt-rss.service
+}

Deleted: service
===================================================================
--- service	2013-12-18 20:44:38 UTC (rev 102745)
+++ service	2013-12-18 20:44:40 UTC (rev 102746)
@@ -1,13 +0,0 @@
-[Unit]
-Description=Tiny Tiny RSS feeds update daemon
-After=network.target
-After=mysqld.service
-After=postgresql.service
-
-[Service]
-ExecStart=/usr/bin/php /usr/share/webapps/tt-rss/update.php --daemon
-User=http
-StandardOutput=syslog
-
-[Install]
-WantedBy=multi-user.target

Copied: tt-rss/repos/community-any/service (from rev 102745, tt-rss/trunk/service)
===================================================================
--- service	                        (rev 0)
+++ service	2013-12-18 20:44:40 UTC (rev 102746)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Tiny Tiny RSS feeds update daemon
+After=network.target
+After=mysqld.service
+After=postgresql.service
+
+[Service]
+ExecStart=/usr/bin/php /usr/share/webapps/tt-rss/update.php --daemon
+User=http
+StandardOutput=syslog
+
+[Install]
+WantedBy=multi-user.target

Deleted: tt-rss.install
===================================================================
--- tt-rss.install	2013-12-18 20:44:38 UTC (rev 102745)
+++ tt-rss.install	2013-12-18 20:44:40 UTC (rev 102746)
@@ -1,4 +0,0 @@
-post_upgrade() {
-    echo "===> Update config.php with new configuration data from config.php-dist if necessary."
-    echo "     Update CONFIG_VERSION to the new version afterwards."
-}

Copied: tt-rss/repos/community-any/tt-rss.install (from rev 102745, tt-rss/trunk/tt-rss.install)
===================================================================
--- tt-rss.install	                        (rev 0)
+++ tt-rss.install	2013-12-18 20:44:40 UTC (rev 102746)
@@ -0,0 +1,4 @@
+post_upgrade() {
+    echo "===> Update config.php with new configuration data from config.php-dist if necessary."
+    echo "     Update CONFIG_VERSION to the new version afterwards."
+}




More information about the arch-commits mailing list