summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Horel2017-10-09 20:01:50 -0400
committerGuillaume Horel2017-10-09 20:01:50 -0400
commit25b9078794a990f5d67a0174d0c10b70b39a4b1e (patch)
tree9660908182ff5c5c7b8a9650cdfc5e520bc7d2a8
parentb3fb3e399c7616ee5c2d602a411ae901a1e29dd1 (diff)
downloadaur-25b9078794a990f5d67a0174d0c10b70b39a4b1e.tar.gz
version bump
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD9
-rw-r--r--gnuplot.install30
3 files changed, 7 insertions, 40 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f4ede46dd2b2..5a2b8341c057 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,12 @@
pkgbase = gnuplot-nogui
pkgdesc = Plotting package which outputs to X11, files and others. Without wxgtk/qt.
- pkgver = 5.0.6
+ pkgver = 5.2.0
pkgrel = 1
url = http://www.gnuplot.info
- install = gnuplot.install
arch = i686
arch = x86_64
license = custom
makedepends = emacs
- makedepends = texinfo
makedepends = texlive-core
makedepends = texlive-latexextra
depends = cairo
@@ -21,9 +19,9 @@ pkgbase = gnuplot-nogui
conflicts = gnuplot
conflicts = gnuplot-nox
replaces = gnuplot-notk
- source = http://downloads.sourceforge.net/sourceforge/gnuplot/gnuplot-5.0.6.tar.gz
+ source = http://downloads.sourceforge.net/sourceforge/gnuplot/gnuplot-5.2.0.tar.gz
source = lua53_compat.patch
- sha256sums = 5bbe4713e555c2e103b7d4ffd45fca69551fff09cf5c3f9cb17428aaacc9b460
+ sha256sums = 7dfe6425a1a6b9349b1fb42dae46b2e52833b13e807a78a613024d6a99541e43
sha256sums = bfd8a61abbf4491c74225cb9fd252619d4fc29751838bcb4c0639ffe05a00695
pkgname = gnuplot-nogui
diff --git a/PKGBUILD b/PKGBUILD
index 59ff011b69ab..8f42f29c6d93 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,21 +5,20 @@
_pkgname=gnuplot
pkgname=$_pkgname-nogui
-pkgver=5.0.6
+pkgver=5.2.0
pkgrel=1
pkgdesc="Plotting package which outputs to X11, files and others. Without wxgtk/qt."
arch=("i686" "x86_64")
url="http://www.gnuplot.info"
license=("custom")
depends=("cairo" "libjpeg" "lua" "gd" "gnutls" "readline")
-makedepends=("emacs" "texinfo" "texlive-core" "texlive-latexextra")
+makedepends=("emacs" "texlive-core" "texlive-latexextra")
provides=("gnuplot")
conflicts=("gnuplot" "gnuplot-nox")
replaces=("gnuplot-notk")
-install="$_pkgname.install"
source=("http://downloads.sourceforge.net/sourceforge/$_pkgname/$_pkgname-$pkgver.tar.gz"
"lua53_compat.patch")
-sha256sums=('5bbe4713e555c2e103b7d4ffd45fca69551fff09cf5c3f9cb17428aaacc9b460'
+sha256sums=('7dfe6425a1a6b9349b1fb42dae46b2e52833b13e807a78a613024d6a99541e43'
'bfd8a61abbf4491c74225cb9fd252619d4fc29751838bcb4c0639ffe05a00695')
prepare() {
@@ -51,7 +50,7 @@ build() {
package() {
cd "$srcdir/$_pkgname-$pkgver"
- make pkglibexecdir=/usr/bin DESTDIR="$pkgdir" install install-info
+ make pkglibexecdir=/usr/bin DESTDIR="$pkgdir" install
install -Dm644 Copyright "$pkgdir/usr/share/licenses/$_pkgname/Copyright"
diff --git a/gnuplot.install b/gnuplot.install
deleted file mode 100644
index b91569a2adfd..000000000000
--- a/gnuplot.install
+++ /dev/null
@@ -1,30 +0,0 @@
-info_dir=/usr/share/info
-info_files=(gnuplot.info)
-
-post_install() {
- if [ -f /usr/bin/mktexlsr ]; then
- echo "Updating TeX tree..."
- mktexlsr
- fi
-
- for f in ${info_files[@]}; do
- install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- for f in ${info_files[@]}; do
- install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
- done
-}
-
-post_remove() {
- if [ -f /usr/bin/mktexlsr ]; then
- echo "Updating TeX tree..."
- mktexlsr
- fi
-}