summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMantas Mikulėnas2016-12-30 08:10:06 +0200
committerMantas Mikulėnas2016-12-30 08:10:08 +0200
commit923f9e72d25bbca9908ff05ca3e88f61851fb8e0 (patch)
tree8b7245c511416f0185144b401b2cb948e909fede
parente545fcd3e8d9948c295a3c93e5bbee2a353327a5 (diff)
downloadaur-923f9e72d25bbca9908ff05ca3e88f61851fb8e0.tar.gz
Update deps, website; remove .install
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD9
-rw-r--r--monotone.install29
3 files changed, 7 insertions, 42 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f26c02fbb395..4ea921287b0d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,23 +1,20 @@
# Generated by mksrcinfo v8
-# Thu Dec 10 17:52:47 UTC 2015
+# Fri Dec 30 06:09:30 UTC 2016
pkgbase = monotone
pkgdesc = A free distributed version control system
pkgver = 1.1
- pkgrel = 2
- url = https://code.monotone.ca/p/monotone
- install = monotone.install
+ pkgrel = 3
+ url = http://www.monotone.ca/
arch = i686
arch = x86_64
license = GPL
makedepends = boost
depends = pcre
depends = lua
- depends = botan-stable
+ depends = botan-1.10
depends = sqlite3
depends = libidn
depends = zlib
- provides = monotone
- conflicts = monotone-snapshot
source = http://www.monotone.ca/downloads/1.1/monotone-1.1.tar.bz2
sha1sums = 2b97559b252decaee3a374b81bf714cf33441ba3
diff --git a/PKGBUILD b/PKGBUILD
index 09111d16b859..963cccec039a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,16 +6,13 @@
pkgname=monotone
pkgver=1.1
-pkgrel=2
+pkgrel=3
pkgdesc='A free distributed version control system'
arch=('i686' 'x86_64')
-url='https://code.monotone.ca/p/monotone'
+url='http://www.monotone.ca/'
license=('GPL')
-depends=('pcre' 'lua' 'botan-stable' 'sqlite3' 'libidn' 'zlib')
+depends=('pcre' 'lua' 'botan-1.10' 'sqlite3' 'libidn' 'zlib')
makedepends=('boost')
-provides=('monotone')
-conflicts=('monotone-snapshot')
-install=monotone.install
source=("http://www.monotone.ca/downloads/1.1/monotone-${pkgver}.tar.bz2")
sha1sums=('2b97559b252decaee3a374b81bf714cf33441ba3')
diff --git a/monotone.install b/monotone.install
deleted file mode 100644
index 298adb64a082..000000000000
--- a/monotone.install
+++ /dev/null
@@ -1,29 +0,0 @@
-infodir=usr/share/info
-filelist=(monotone.info.gz)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-
- # arg 1: the new package version
- # arg 2: the old package version
- if [[ "$(vercmp $2 0.45)" -lt 0 ]]; then
- echo ">>> Your monotone databases will need updating for an internal format"
- echo ">>> change. Please run the following command on each of your databases"
- echo ">>> (after remembering to take a backup copy):"
- echo ">>> $ mtn -d dbname.mtn db migrate"
- fi
-}
-
-pre_remove() {
- [[ -x usr/bin/install-info ]] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}