[arch-commits] Commit in taskd/repos/community-x86_64 (6 files)

Christian Rebischke shibumi at archlinux.org
Wed Sep 25 22:10:54 UTC 2019


    Date: Wednesday, September 25, 2019 @ 22:10:53
  Author: shibumi
Revision: 511796

archrelease: copy trunk to community-x86_64

Added:
  taskd/repos/community-x86_64/PKGBUILD
    (from rev 511795, taskd/trunk/PKGBUILD)
  taskd/repos/community-x86_64/taskd.install
    (from rev 511795, taskd/trunk/taskd.install)
  taskd/repos/community-x86_64/taskd.sysusers.conf
    (from rev 511795, taskd/trunk/taskd.sysusers.conf)
Deleted:
  taskd/repos/community-x86_64/PKGBUILD
  taskd/repos/community-x86_64/taskd.install
  taskd/repos/community-x86_64/taskd.sysusers.conf

---------------------+
 PKGBUILD            |   80 +++++++++++++++++++++++++-------------------------
 taskd.install       |   24 +++++++--------
 taskd.sysusers.conf |    2 -
 3 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-09-25 22:10:47 UTC (rev 511795)
+++ PKGBUILD	2019-09-25 22:10:53 UTC (rev 511796)
@@ -1,40 +0,0 @@
-# Maintainer: Christian Rebischke <chris.rebischke at archlinux.org>
-# Contributor: Keerthan Jaic <jckeerthan at gmail dot com>
-# Contributor: Rich Li <rich at dranek com>
-# Contributor: Kevin MacMartin <prurigro at gmail dot com>
-# Contributor: Markus Holtermann <aur at markusholtermann.eu>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=taskd
-pkgver=1.1.0
-pkgrel=3
-pkgdesc="A lightweight, secure server providing multi-user, multi-client access to task data"
-url="http://tasktools.org/projects/${pkgname}.html"
-license=('MIT')
-arch=('x86_64')
-depends=('gnutls' 'libutil-linux')
-makedepends=('cmake')
-install="${pkgname}.install"
-source=("http://taskwarrior.org/download/${pkgname}-${pkgver}.tar.gz"
-        "${pkgname}.sysusers.conf")
-
-sha512sums=('df2349c354258fd1b014b1a9c78f68dc10c9e5a48357e282e8a760cf4e4aaf4d36486796ad094ee2b050e7506195b778e3316c90ef543a2f8242de313daa13aa'
-            '882ffe7de4bf569a16595d69cfd827fffd23beae7af19c90748bc2ee23e74f8313bcd2733131155d8fea4a37a207b052255fa5aeb6b61b47e4207332f7083e04')
-
-build() {
-    cd ${pkgname}-${pkgver}
-    cmake . \
-        -DCMAKE_INSTALL_PREFIX=/usr \
-        -DCMAKE_BUILD_TYPE=Release
-    make
-}
-
-package() {
-    cd ${pkgname}-${pkgver}
-    make DESTDIR="${pkgdir}" install
-    cp -a {pki,scripts} "${pkgdir}/usr/share/doc/taskd/"
-
-    install -Dm644 ${srcdir}/${pkgname}.sysusers.conf "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
-    install -Dm644 scripts/systemd/${pkgname}.service "${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-    install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: taskd/repos/community-x86_64/PKGBUILD (from rev 511795, taskd/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-09-25 22:10:53 UTC (rev 511796)
@@ -0,0 +1,40 @@
+# Maintainer: Christian Rebischke <chris.rebischke at archlinux.org>
+# Contributor: Keerthan Jaic <jckeerthan at gmail dot com>
+# Contributor: Rich Li <rich at dranek com>
+# Contributor: Kevin MacMartin <prurigro at gmail dot com>
+# Contributor: Markus Holtermann <aur at markusholtermann.eu>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=taskd
+pkgver=1.1.0
+pkgrel=4
+pkgdesc="A lightweight, secure server providing multi-user, multi-client access to task data"
+url="http://tasktools.org/projects/${pkgname}.html"
+license=('MIT')
+arch=('x86_64')
+depends=('gnutls' 'libutil-linux')
+makedepends=('cmake')
+install="${pkgname}.install"
+source=("https://taskwarrior.org/download/${pkgname}-${pkgver}.tar.gz"
+        "${pkgname}.sysusers.conf")
+
+sha512sums=('df2349c354258fd1b014b1a9c78f68dc10c9e5a48357e282e8a760cf4e4aaf4d36486796ad094ee2b050e7506195b778e3316c90ef543a2f8242de313daa13aa'
+            '882ffe7de4bf569a16595d69cfd827fffd23beae7af19c90748bc2ee23e74f8313bcd2733131155d8fea4a37a207b052255fa5aeb6b61b47e4207332f7083e04')
+
+build() {
+    cd "${pkgname}-${pkgver}"
+    cmake . \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DCMAKE_BUILD_TYPE=Release
+    make
+}
+
+package() {
+    cd "${pkgname}-${pkgver}"
+    make DESTDIR="${pkgdir}" install
+    cp -a {pki,scripts} "${pkgdir}/usr/share/doc/taskd/"
+
+    install -Dm644 "${srcdir}/${pkgname}.sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+    install -Dm644 "scripts/systemd/${pkgname}.service" "${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+    install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: taskd.install
===================================================================
--- taskd.install	2019-09-25 22:10:47 UTC (rev 511795)
+++ taskd.install	2019-09-25 22:10:53 UTC (rev 511796)
@@ -1,12 +0,0 @@
-datadir=/var/lib/taskd
-
-post_install() {
-    systemd-sysusers taskd.conf
-    if [[ ! -e $datadir ]]; then
-      echo "Initializing taskd data."
-      install -dm770 $datadir
-      taskd init --data $datadir
-      chown -R taskd:taskd $datadir
-    fi
-
-}

Copied: taskd/repos/community-x86_64/taskd.install (from rev 511795, taskd/trunk/taskd.install)
===================================================================
--- taskd.install	                        (rev 0)
+++ taskd.install	2019-09-25 22:10:53 UTC (rev 511796)
@@ -0,0 +1,12 @@
+datadir=/var/lib/taskd
+
+post_install() {
+    systemd-sysusers taskd.conf
+    if [[ ! -e $datadir ]]; then
+      echo "Initializing taskd data."
+      install -dm770 $datadir
+      taskd init --data $datadir
+      chown -R taskd:taskd $datadir
+    fi
+
+}

Deleted: taskd.sysusers.conf
===================================================================
--- taskd.sysusers.conf	2019-09-25 22:10:47 UTC (rev 511795)
+++ taskd.sysusers.conf	2019-09-25 22:10:53 UTC (rev 511796)
@@ -1 +0,0 @@
-u taskd - "Taskwarrior Sync Server"

Copied: taskd/repos/community-x86_64/taskd.sysusers.conf (from rev 511795, taskd/trunk/taskd.sysusers.conf)
===================================================================
--- taskd.sysusers.conf	                        (rev 0)
+++ taskd.sysusers.conf	2019-09-25 22:10:53 UTC (rev 511796)
@@ -0,0 +1 @@
+u taskd - "Taskwarrior Sync Server"



More information about the arch-commits mailing list