summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorgraysky2016-08-26 18:09:05 -0400
committergraysky2016-08-26 18:09:05 -0400
commit2cbc79ea4642f099da981426bc9fb598d97a9cb2 (patch)
tree54879c7e9e6be0885d2edd75e5e38623fb0ddb4c
parent1fd4d32037901df57188fe738766901f330cfca9 (diff)
downloadaur-mandb-ondemand.tar.gz
Update to 2.06-2
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD3
-rw-r--r--mandb-ondemand.install14
3 files changed, 3 insertions, 19 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 72f7658fdb7c..87a349f8d051 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
# Generated by mksrcinfo v8
-# Fri Aug 26 21:36:57 UTC 2016
+# Fri Aug 26 22:09:05 UTC 2016
pkgbase = mandb-ondemand
pkgdesc = Makes any pacman updates to the manpage index database much faster.
pkgver = 2.06
- pkgrel = 1
+ pkgrel = 2
url = http://github.com/graysky2/mandb-ondemand
- install = mandb-ondemand.install
arch = any
license = MIT
depends = systemd
diff --git a/PKGBUILD b/PKGBUILD
index 13b6551380b4..d3345bc691b2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=mandb-ondemand
pkgver=2.06
-pkgrel=1
+pkgrel=2
pkgdesc="Makes any pacman updates to the manpage index database much faster."
arch=('any')
url="http://github.com/graysky2/mandb-ondemand"
@@ -10,7 +10,6 @@ license=('MIT')
depends=('systemd' 'man-db')
conflicts=('man-db-systemd')
replaces=('man-db-systemd')
-install=${pkgname}.install
source=(https://github.com/graysky2/${pkgname}/archive/v${pkgver}.tar.gz)
sha256sums=('f38f4dbde4087704380d905fafb8334950e6a88600d1afbc1513c83c40f50d00')
diff --git a/mandb-ondemand.install b/mandb-ondemand.install
deleted file mode 100644
index ec8af41c1793..000000000000
--- a/mandb-ondemand.install
+++ /dev/null
@@ -1,14 +0,0 @@
-post_install() {
- systemctl start mandb-ondemand.path
-}
-
-pre_remove() {
- systemctl stop mandb-ondemand.path
-}
-
-pre_upgrade() {
- # stop orphaned service as 2.02 no longer supplies this
- if [ "`vercmp $2 2.02`" -lt 0 ]; then
- systemctl stop mandb-ondemand-purge.path
- fi
-}