[arch-commits] Commit in mlocate/repos (12 files)

Gaëtan Bisson bisson at archlinux.org
Tue Apr 4 05:28:56 UTC 2017


    Date: Tuesday, April 4, 2017 @ 05:28:55
  Author: bisson
Revision: 292065

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  mlocate/repos/testing-i686/
  mlocate/repos/testing-i686/PKGBUILD
    (from rev 292064, mlocate/trunk/PKGBUILD)
  mlocate/repos/testing-i686/sysusers.d
    (from rev 292064, mlocate/trunk/sysusers.d)
  mlocate/repos/testing-i686/updatedb.conf
    (from rev 292064, mlocate/trunk/updatedb.conf)
  mlocate/repos/testing-i686/updatedb.service
    (from rev 292064, mlocate/trunk/updatedb.service)
  mlocate/repos/testing-i686/updatedb.timer
    (from rev 292064, mlocate/trunk/updatedb.timer)
  mlocate/repos/testing-x86_64/
  mlocate/repos/testing-x86_64/PKGBUILD
    (from rev 292064, mlocate/trunk/PKGBUILD)
  mlocate/repos/testing-x86_64/sysusers.d
    (from rev 292064, mlocate/trunk/sysusers.d)
  mlocate/repos/testing-x86_64/updatedb.conf
    (from rev 292064, mlocate/trunk/updatedb.conf)
  mlocate/repos/testing-x86_64/updatedb.service
    (from rev 292064, mlocate/trunk/updatedb.service)
  mlocate/repos/testing-x86_64/updatedb.timer
    (from rev 292064, mlocate/trunk/updatedb.timer)

---------------------------------+
 testing-i686/PKGBUILD           |   63 ++++++++++++++++++++++++++++++++++++++
 testing-i686/sysusers.d         |    1 
 testing-i686/updatedb.conf      |    4 ++
 testing-i686/updatedb.service   |    7 ++++
 testing-i686/updatedb.timer     |    7 ++++
 testing-x86_64/PKGBUILD         |   63 ++++++++++++++++++++++++++++++++++++++
 testing-x86_64/sysusers.d       |    1 
 testing-x86_64/updatedb.conf    |    4 ++
 testing-x86_64/updatedb.service |    7 ++++
 testing-x86_64/updatedb.timer   |    7 ++++
 10 files changed, 164 insertions(+)

Copied: mlocate/repos/testing-i686/PKGBUILD (from rev 292064, mlocate/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: lydgate
+
+pkgname=mlocate
+pkgver=0.26
+pkgrel=6
+pkgdesc='Merging locate/updatedb implementation'
+url='https://anonscm.debian.org/cgit/collab-maint/mlocate.git'
+arch=('i686' 'x86_64')
+license=('GPL')
+backup=('etc/updatedb.conf')
+depends=('glibc')
+makedepends=('git')
+_commit=596d4ad222328e8bae7a00cc489a9f862edc82fb #tag=upstream/0.26
+source=("git+https://anonscm.debian.org/cgit/collab-maint/mlocate.git#commit=$_commit"
+	'sysusers.d'
+	'updatedb.conf'
+	'updatedb.timer'
+	'updatedb.service')
+sha256sums=('SKIP'
+            '1713a8fc8b81f4a390bf8597c4c0e917474379002dcc984aad2f44218d10c82a'
+            'ea65bb68bb854803965ac16c770ba2567256e2066d68c272f1a1974ffc5c5ee7'
+            '2e813effb651fae101d93722827553c6b9b9d42e898e808db4991eafdd330e02'
+            '83c7a508bad5dccd55a158cf8b8029d680f82cf8b1d21074279def14d9ad4dee')
+
+prepare() {
+	cd "${srcdir}/${pkgname}"
+	sed -i '/^groupname /s/mlocate/locate/' Makefile.in
+}
+
+build() {
+	cd "${srcdir}/${pkgname}"
+	./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib
+	make
+}
+
+check() {
+	cd "${srcdir}/${pkgname}"
+	make check
+}
+
+package() {
+	cd "${srcdir}/${pkgname}"
+
+	make DESTDIR="${pkgdir}" install
+
+	chgrp 21 "${pkgdir}/usr/bin/locate"
+	chmod 2755 "${pkgdir}/usr/bin/locate"
+	ln -s locate "${pkgdir}/usr/bin/slocate"
+
+	install -dm755 "${pkgdir}/var/lib"
+	install -dm750 -g21 "${pkgdir}/var/lib/locate"
+	
+	install -Dm644 ../updatedb.conf "${pkgdir}/etc/updatedb.conf"
+	install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/locate.conf"
+	install -Dm644 ../updatedb.timer "${pkgdir}/usr/lib/systemd/system/updatedb.timer"
+	install -Dm644 ../updatedb.service "${pkgdir}/usr/lib/systemd/system/updatedb.service"
+
+	install -d "${pkgdir}/usr/lib/systemd/system/multi-user.target.wants"
+	ln -s ../updatedb.timer "${pkgdir}//usr/lib/systemd/system/multi-user.target.wants/updatedb.timer"
+}

Copied: mlocate/repos/testing-i686/sysusers.d (from rev 292064, mlocate/trunk/sysusers.d)
===================================================================
--- testing-i686/sysusers.d	                        (rev 0)
+++ testing-i686/sysusers.d	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1 @@
+g locate 21 - -

Copied: mlocate/repos/testing-i686/updatedb.conf (from rev 292064, mlocate/trunk/updatedb.conf)
===================================================================
--- testing-i686/updatedb.conf	                        (rev 0)
+++ testing-i686/updatedb.conf	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1,4 @@
+PRUNE_BIND_MOUNTS = "yes"
+PRUNEFS = "9p afs anon_inodefs auto autofs bdev binfmt_misc cgroup cifs coda configfs cpuset cramfs debugfs devpts devtmpfs ecryptfs exofs ftpfs fuse fuse.encfs fuse.sshfs fusectl gfs gfs2 hugetlbfs inotifyfs iso9660 jffs2 lustre mqueue ncpfs nfs nfs4 nfsd pipefs proc ramfs rootfs rpc_pipefs securityfs selinuxfs sfs shfs smbfs sockfs sshfs sysfs tmpfs ubifs udf usbfs vboxsf"
+PRUNENAMES = ".git .hg .svn"
+PRUNEPATHS = "/afs /media /mnt /net /sfs /tmp /udev /var/cache /var/lib/pacman/local /var/lock /var/run /var/spool /var/tmp"

Copied: mlocate/repos/testing-i686/updatedb.service (from rev 292064, mlocate/trunk/updatedb.service)
===================================================================
--- testing-i686/updatedb.service	                        (rev 0)
+++ testing-i686/updatedb.service	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1,7 @@
+[Unit]
+Description=Update locate database
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/updatedb
+IOSchedulingClass=idle

Copied: mlocate/repos/testing-i686/updatedb.timer (from rev 292064, mlocate/trunk/updatedb.timer)
===================================================================
--- testing-i686/updatedb.timer	                        (rev 0)
+++ testing-i686/updatedb.timer	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1,7 @@
+[Unit]
+Description=Daily locate database update
+
+[Timer]
+OnCalendar=daily
+AccuracySec=12h
+Persistent=true

Copied: mlocate/repos/testing-x86_64/PKGBUILD (from rev 292064, mlocate/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: lydgate
+
+pkgname=mlocate
+pkgver=0.26
+pkgrel=6
+pkgdesc='Merging locate/updatedb implementation'
+url='https://anonscm.debian.org/cgit/collab-maint/mlocate.git'
+arch=('i686' 'x86_64')
+license=('GPL')
+backup=('etc/updatedb.conf')
+depends=('glibc')
+makedepends=('git')
+_commit=596d4ad222328e8bae7a00cc489a9f862edc82fb #tag=upstream/0.26
+source=("git+https://anonscm.debian.org/cgit/collab-maint/mlocate.git#commit=$_commit"
+	'sysusers.d'
+	'updatedb.conf'
+	'updatedb.timer'
+	'updatedb.service')
+sha256sums=('SKIP'
+            '1713a8fc8b81f4a390bf8597c4c0e917474379002dcc984aad2f44218d10c82a'
+            'ea65bb68bb854803965ac16c770ba2567256e2066d68c272f1a1974ffc5c5ee7'
+            '2e813effb651fae101d93722827553c6b9b9d42e898e808db4991eafdd330e02'
+            '83c7a508bad5dccd55a158cf8b8029d680f82cf8b1d21074279def14d9ad4dee')
+
+prepare() {
+	cd "${srcdir}/${pkgname}"
+	sed -i '/^groupname /s/mlocate/locate/' Makefile.in
+}
+
+build() {
+	cd "${srcdir}/${pkgname}"
+	./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib
+	make
+}
+
+check() {
+	cd "${srcdir}/${pkgname}"
+	make check
+}
+
+package() {
+	cd "${srcdir}/${pkgname}"
+
+	make DESTDIR="${pkgdir}" install
+
+	chgrp 21 "${pkgdir}/usr/bin/locate"
+	chmod 2755 "${pkgdir}/usr/bin/locate"
+	ln -s locate "${pkgdir}/usr/bin/slocate"
+
+	install -dm755 "${pkgdir}/var/lib"
+	install -dm750 -g21 "${pkgdir}/var/lib/locate"
+	
+	install -Dm644 ../updatedb.conf "${pkgdir}/etc/updatedb.conf"
+	install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/locate.conf"
+	install -Dm644 ../updatedb.timer "${pkgdir}/usr/lib/systemd/system/updatedb.timer"
+	install -Dm644 ../updatedb.service "${pkgdir}/usr/lib/systemd/system/updatedb.service"
+
+	install -d "${pkgdir}/usr/lib/systemd/system/multi-user.target.wants"
+	ln -s ../updatedb.timer "${pkgdir}//usr/lib/systemd/system/multi-user.target.wants/updatedb.timer"
+}

Copied: mlocate/repos/testing-x86_64/sysusers.d (from rev 292064, mlocate/trunk/sysusers.d)
===================================================================
--- testing-x86_64/sysusers.d	                        (rev 0)
+++ testing-x86_64/sysusers.d	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1 @@
+g locate 21 - -

Copied: mlocate/repos/testing-x86_64/updatedb.conf (from rev 292064, mlocate/trunk/updatedb.conf)
===================================================================
--- testing-x86_64/updatedb.conf	                        (rev 0)
+++ testing-x86_64/updatedb.conf	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1,4 @@
+PRUNE_BIND_MOUNTS = "yes"
+PRUNEFS = "9p afs anon_inodefs auto autofs bdev binfmt_misc cgroup cifs coda configfs cpuset cramfs debugfs devpts devtmpfs ecryptfs exofs ftpfs fuse fuse.encfs fuse.sshfs fusectl gfs gfs2 hugetlbfs inotifyfs iso9660 jffs2 lustre mqueue ncpfs nfs nfs4 nfsd pipefs proc ramfs rootfs rpc_pipefs securityfs selinuxfs sfs shfs smbfs sockfs sshfs sysfs tmpfs ubifs udf usbfs vboxsf"
+PRUNENAMES = ".git .hg .svn"
+PRUNEPATHS = "/afs /media /mnt /net /sfs /tmp /udev /var/cache /var/lib/pacman/local /var/lock /var/run /var/spool /var/tmp"

Copied: mlocate/repos/testing-x86_64/updatedb.service (from rev 292064, mlocate/trunk/updatedb.service)
===================================================================
--- testing-x86_64/updatedb.service	                        (rev 0)
+++ testing-x86_64/updatedb.service	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1,7 @@
+[Unit]
+Description=Update locate database
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/updatedb
+IOSchedulingClass=idle

Copied: mlocate/repos/testing-x86_64/updatedb.timer (from rev 292064, mlocate/trunk/updatedb.timer)
===================================================================
--- testing-x86_64/updatedb.timer	                        (rev 0)
+++ testing-x86_64/updatedb.timer	2017-04-04 05:28:55 UTC (rev 292065)
@@ -0,0 +1,7 @@
+[Unit]
+Description=Daily locate database update
+
+[Timer]
+OnCalendar=daily
+AccuracySec=12h
+Persistent=true



More information about the arch-commits mailing list