[arch-commits] Commit in plocate/repos/community-x86_64 (8 files)

Morten Linderud foxboron at archlinux.org
Sat Dec 19 10:25:21 UTC 2020


    Date: Saturday, December 19, 2020 @ 10:25:21
  Author: foxboron
Revision: 779927

archrelease: copy trunk to community-x86_64

Added:
  plocate/repos/community-x86_64/PKGBUILD
    (from rev 779926, plocate/trunk/PKGBUILD)
  plocate/repos/community-x86_64/plocate.install
    (from rev 779926, plocate/trunk/plocate.install)
  plocate/repos/community-x86_64/plocate.sysusers
    (from rev 779926, plocate/trunk/plocate.sysusers)
  plocate/repos/community-x86_64/plocate.tmpfiles
    (from rev 779926, plocate/trunk/plocate.tmpfiles)
Deleted:
  plocate/repos/community-x86_64/PKGBUILD
  plocate/repos/community-x86_64/plocate.install
  plocate/repos/community-x86_64/plocate.sysusers
  plocate/repos/community-x86_64/plocate.tmpfiles

------------------+
 PKGBUILD         |   88 ++++++++++++++++++++++++++---------------------------
 plocate.install  |   20 ++++++------
 plocate.sysusers |    2 -
 plocate.tmpfiles |    2 -
 4 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-12-19 10:25:11 UTC (rev 779926)
+++ PKGBUILD	2020-12-19 10:25:21 UTC (rev 779927)
@@ -1,44 +0,0 @@
-# Maintainer: Morten Linderud <foxboron at archlinux.org>
-# Contributor: Hans-Nikolai Viessmann <hans AT viess DOT mn>
-
-pkgname=plocate
-pkgver=1.1.2
-pkgrel=1
-pkgdesc="Alternative to locate, faster and compatible with mlocate's database."
-arch=('x86_64' 'i686')
-url="https://plocate.sesse.net"
-license=('GPL2')
-install=plocate.install
-depends=('zstd' 'liburing' 'systemd')
-makedepends=('meson')
-source=("${url}/download/${pkgname}-${pkgver}.tar.gz"
-        'plocate.sysusers'
-        'plocate.tmpfiles')
-sha256sums=('d59dc67f8621f702507601cef5cd548e227e800e6d2a032fa83a2cdcd2e38cf7'
-            '1713a8fc8b81f4a390bf8597c4c0e917474379002dcc984aad2f44218d10c82a'
-            'adda399ac42f0faa002caab5bf932777c0006ae7c4387add859c9f77321b4202')
-
-build() {
-    cd $pkgname-$pkgver
-    arch-meson \
-        -Dinstall_cron=false \
-        -Dinstall_systemd=true\
-        -Dlocategroup=locate \
-        -Dupdatedb_progname=updatedb.plocate \
-        ../build
-    meson compile -C ../build
-}
-
-package() {
-    cd $pkgname-$pkgver
-    DESTDIR="$pkgdir" meson install -C ../build
-
-    chgrp 21 "${pkgdir}/usr/bin/plocate"
-    chmod 2755 "${pkgdir}/usr/bin/plocate"
-
-    install -Dm644 ../plocate.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/plocate.conf"
-    install -Dm644 ../plocate.sysusers "$pkgdir/usr/lib/sysusers.d/plocate.conf"
-
-    mv "$pkgdir/usr/share/man/man5/updatedb.conf.5" \
-       "$pkgdir/usr/share/man/man5/updatedb.plocate.conf.5"
-}

Copied: plocate/repos/community-x86_64/PKGBUILD (from rev 779926, plocate/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-12-19 10:25:21 UTC (rev 779927)
@@ -0,0 +1,44 @@
+# Maintainer: Morten Linderud <foxboron at archlinux.org>
+# Contributor: Hans-Nikolai Viessmann <hans AT viess DOT mn>
+
+pkgname=plocate
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="Alternative to locate, faster and compatible with mlocate's database."
+arch=('x86_64' 'i686')
+url="https://plocate.sesse.net"
+license=('GPL2')
+install=plocate.install
+depends=('zstd' 'liburing' 'systemd')
+makedepends=('meson')
+source=("${url}/download/${pkgname}-${pkgver}.tar.gz"
+        'plocate.sysusers'
+        'plocate.tmpfiles')
+sha256sums=('5e6174838e53b1d63852215b02bededcb9878d8fc7f375e3b33afd59121811fa'
+            '1713a8fc8b81f4a390bf8597c4c0e917474379002dcc984aad2f44218d10c82a'
+            'adda399ac42f0faa002caab5bf932777c0006ae7c4387add859c9f77321b4202')
+
+build() {
+    cd $pkgname-$pkgver
+    arch-meson \
+        -Dinstall_cron=false \
+        -Dinstall_systemd=true\
+        -Dlocategroup=locate \
+        -Dupdatedb_progname=updatedb.plocate \
+        ../build
+    meson compile -C ../build
+}
+
+package() {
+    cd $pkgname-$pkgver
+    DESTDIR="$pkgdir" meson install -C ../build
+
+    chgrp 21 "${pkgdir}/usr/bin/plocate"
+    chmod 2755 "${pkgdir}/usr/bin/plocate"
+
+    install -Dm644 ../plocate.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/plocate.conf"
+    install -Dm644 ../plocate.sysusers "$pkgdir/usr/lib/sysusers.d/plocate.conf"
+
+    mv "$pkgdir/usr/share/man/man5/updatedb.conf.5" \
+       "$pkgdir/usr/share/man/man5/updatedb.plocate.conf.5"
+}

Deleted: plocate.install
===================================================================
--- plocate.install	2020-12-19 10:25:11 UTC (rev 779926)
+++ plocate.install	2020-12-19 10:25:21 UTC (rev 779927)
@@ -1,10 +0,0 @@
-post_upgrade() {
-  cat << EOF
-plocate now provides it's own "updatedb". plocate-build.service is deprecated
-and should be removed. Enable plocate-updatedb.service.
-EOF
-}
-
-post_install(){
-  post_upgrade
-}

Copied: plocate/repos/community-x86_64/plocate.install (from rev 779926, plocate/trunk/plocate.install)
===================================================================
--- plocate.install	                        (rev 0)
+++ plocate.install	2020-12-19 10:25:21 UTC (rev 779927)
@@ -0,0 +1,10 @@
+post_upgrade() {
+  cat << EOF
+plocate now provides it's own "updatedb". plocate-build.service is deprecated
+and should be removed. Enable plocate-updatedb.service.
+EOF
+}
+
+post_install(){
+  post_upgrade
+}

Deleted: plocate.sysusers
===================================================================
--- plocate.sysusers	2020-12-19 10:25:11 UTC (rev 779926)
+++ plocate.sysusers	2020-12-19 10:25:21 UTC (rev 779927)
@@ -1 +0,0 @@
-g locate 21 - -

Copied: plocate/repos/community-x86_64/plocate.sysusers (from rev 779926, plocate/trunk/plocate.sysusers)
===================================================================
--- plocate.sysusers	                        (rev 0)
+++ plocate.sysusers	2020-12-19 10:25:21 UTC (rev 779927)
@@ -0,0 +1 @@
+g locate 21 - -

Deleted: plocate.tmpfiles
===================================================================
--- plocate.tmpfiles	2020-12-19 10:25:11 UTC (rev 779926)
+++ plocate.tmpfiles	2020-12-19 10:25:21 UTC (rev 779927)
@@ -1 +0,0 @@
-f /var/lib/plocate/plocate.db   0750 root locate

Copied: plocate/repos/community-x86_64/plocate.tmpfiles (from rev 779926, plocate/trunk/plocate.tmpfiles)
===================================================================
--- plocate.tmpfiles	                        (rev 0)
+++ plocate.tmpfiles	2020-12-19 10:25:21 UTC (rev 779927)
@@ -0,0 +1 @@
+f /var/lib/plocate/plocate.db   0750 root locate



More information about the arch-commits mailing list