summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorkarlch2016-12-28 16:09:02 +0100
committerkarlch2016-12-28 16:09:02 +0100
commit2973c5a6731b1949717856aebc420ed1c2746477 (patch)
tree74be0a04730493ef92e9dd5229704f73128aba8d
parent4da938fb2066544edee5c5e1b4118efc4fbfc2e6 (diff)
downloadaur-2973c5a6731b1949717856aebc420ed1c2746477.tar.gz
Update because of incompatible changes
- New maintainer email - ImageMagick is no longer an optional dependency - Inform about broken keys.conf because of incompatible changes in .install file
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD8
-rw-r--r--vimiv-git.install11
3 files changed, 18 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 18d7ad88ec49..ee0fcac1bec6 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,11 @@
# Generated by mksrcinfo v8
-# Sat Aug 13 10:07:09 UTC 2016
+# Wed Dec 28 15:05:45 UTC 2016
pkgbase = vimiv-git
pkgdesc = An image viewer with vim-like keybindings
- pkgver = r207.89e3ebb
+ pkgver = r496.969436e
pkgrel = 1
url = https://github.com/karlch/vimiv
+ install = vimiv-git.install
arch = any
license = MIT
makedepends = git
@@ -13,7 +14,6 @@ pkgbase = vimiv-git
depends = python-gobject
depends = gtk3
depends = python-pillow
- optdepends = imagemagick: for the optimization of images
optdepends = jhead: for much better autorotation depending on EXIF data
provides = vimiv
conflicts = vimiv
diff --git a/PKGBUILD b/PKGBUILD
index 8dd49ec55aa3..e8b599836491 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,16 +1,16 @@
-# Maintainer: Christian Karl <christian dot karl at protonmail dot com>
+# Maintainer: Christian Karl <karlch at protonmail dot com>
pkgname='vimiv-git'
pkgrel=1
-pkgver=r207.89e3ebb
+pkgver=r496.969436e
pkgdesc="An image viewer with vim-like keybindings"
+install="vimiv-git.install"
arch=('any')
url="https://github.com/karlch/vimiv"
license=('MIT')
depends=('python3' 'python-gobject' 'gtk3' 'python-pillow')
makedepends=('git' 'python-setuptools')
-optdepends=('imagemagick: for the optimization of images'
- 'jhead: for much better autorotation depending on EXIF data')
+optdepends=('jhead: for much better autorotation depending on EXIF data')
conflicts=('vimiv')
provides=('vimiv')
backup=('etc/vimiv/vimivrc' 'etc/vimiv/keys.conf')
diff --git a/vimiv-git.install b/vimiv-git.install
new file mode 100644
index 000000000000..8259e6d19369
--- /dev/null
+++ b/vimiv-git.install
@@ -0,0 +1,11 @@
+post_upgrade() {
+ printf "
+There were backwards incompatible changes concerning command names. If you
+maintain your own keys.conf, it is almost certainly broken. Please refer to the
+changelog at http://karlch.github.io/vimiv/changelog/ or the default keys.conf
+to fix it.\n\n"
+}
+
+post_install() {
+ post_upgrade
+}