summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Preinstorfer2016-04-04 20:00:57 +0200
committerFlorian Preinstorfer2016-04-04 20:00:57 +0200
commitd050f8652ae3d9e815cc9d834a9d0dd69b8a1659 (patch)
tree386a05816dd7df71af44d0b9b25d100d43816e6e
parent734dc980fc4ad0dceeeaedd8eb8450cb6dd9b53f (diff)
downloadaur-d050f8652ae3d9e815cc9d834a9d0dd69b8a1659.tar.gz
Update to 16.4.0
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD11
-rw-r--r--mytourbook.install14
3 files changed, 23 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2a782eac5373..2f8c17e5a316 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,11 @@
# Generated by mksrcinfo v8
-# Sat Jan 23 09:18:11 UTC 2016
+# Mon Apr 4 18:00:35 UTC 2016
pkgbase = mytourbook_bin
pkgdesc = A tool to visualize and analyze tours recorded by a GPS device, ergometer, bike- or exercise computer.
- pkgver = 16.1.0
+ pkgver = 16.4.0
pkgrel = 1
url = http://mytourbook.sourceforge.net
+ install = mytourbook.install
arch = i686
arch = x86_64
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 3f5a2c55f60c..d2fdf2c1ad98 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,22 +2,23 @@
# Contributor: nblock <nblock [/at\] archlinux DOT us>
pkgname=mytourbook_bin
-pkgver=16.1.0
+pkgver=16.4.0
pkgrel=1
pkgdesc="A tool to visualize and analyze tours recorded by a GPS device, ergometer, bike- or exercise computer."
arch=('i686' 'x86_64')
url="http://mytourbook.sourceforge.net"
license=("GPL")
depends=('java-runtime' 'fontconfig' 'libxrender')
+install="mytourbook.install"
source=("mytourbook.desktop")
options=(!strip)
md5sums=('428a78ad67746b149ccb8e70cc8b086b')
-[ "$CARCH" = "i686" ] && source=(${source[@]} "http://downloads.sourceforge.net/project/mytourbook/MyTourbook/${pkgver}/mytourbook_${pkgver}.linux.gtk.x86.zip")
-[ "$CARCH" = "x86_64" ] && source=(${source[@]} "http://downloads.sourceforge.net/project/mytourbook/MyTourbook/${pkgver}/mytourbook_${pkgver}.linux.gtk.x86_64.zip")
+[ "$CARCH" = "i686" ] && source=(${source[@]} "http://downloads.sourceforge.net/project/mytourbook/MyTourbook/${pkgver}/mytourbook-${pkgver}-linux-32.zip")
+[ "$CARCH" = "x86_64" ] && source=(${source[@]} "http://downloads.sourceforge.net/project/mytourbook/MyTourbook/${pkgver}/mytourbook-${pkgver}-linux-64.zip")
-[ "$CARCH" = "i686" ] && md5sums=(${md5sums[@]} 'ffa2b87874660bb7b4836322f2019b76')
-[ "$CARCH" = "x86_64" ] && md5sums=(${md5sums[@]} 'aebb725def2a7c4a6b69db882083e2bc')
+[ "$CARCH" = "i686" ] && md5sums=(${md5sums[@]} 'c99522e80b1022f74237bee2b4e15e3e')
+[ "$CARCH" = "x86_64" ] && md5sums=(${md5sums[@]} '64822cb0313fe8cfb1e40e4ef550eba8')
package() {
mkdir -p ${pkgdir}/usr/{bin,share/mytourbook}
diff --git a/mytourbook.install b/mytourbook.install
new file mode 100644
index 000000000000..0786b443fef9
--- /dev/null
+++ b/mytourbook.install
@@ -0,0 +1,14 @@
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+cat << EOF
+Internal data cleanup (upstream): The internal Eclipse data is now located in
+the mytourbook installation folder. The existing data is not removed from the
+old location, it should be removed manually using:
+
+ rm -r ~/.mytourbook/org.eclipse.*
+
+Do not delete any other data from this directory, as it contains the tour data
+files.
+EOF
+}