summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Alff2019-07-20 22:16:39 -0400
committerTed Alff2019-07-20 22:16:39 -0400
commit95be40fb8915964614bc715d31128d50c64d02e8 (patch)
tree14e85b59de8e20e4d974a2dc43febad0a180284b
parent29a38512f9af594bf4dd767082b49de3b0419770 (diff)
downloadaur-95be40fb8915964614bc715d31128d50c64d02e8.tar.gz
Version bump 1.8.8
-rw-r--r--.SRCINFO9
-rw-r--r--PKGBUILD7
-rw-r--r--thunar.install21
3 files changed, 7 insertions, 30 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 69cda2c28b33..29fb861ae697 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = thunar-devel
pkgdesc = file manager for xfce
- pkgver = 1.8.7
+ pkgver = 1.8.8
pkgrel = 1
url = https://thunar.xfce.org
- install = thunar.install
arch = i686
arch = x86_64
groups = xfce4-devel
@@ -28,10 +27,10 @@ pkgbase = thunar-devel
optdepends = thunar-volman: manages removable devices
optdepends = thunar-archive-plugin: create and deflate archives
optdepends = thunar-media-tags-plugin: view/edit id3/ogg tags
- provides = thunar=1.8.7
+ provides = thunar=1.8.8
conflicts = thunar
- source = https://archive.xfce.org/src/xfce/thunar/1.8/Thunar-1.8.7.tar.bz2
- sha256sums = 3e033af06751beee23e73cf16cbd97513d3c0adf358d8a42158af38a44b9d329
+ source = https://archive.xfce.org/src/xfce/thunar/1.8/Thunar-1.8.8.tar.bz2
+ sha256sums = a03761de4a43c36b9daa6029e6e3263a23c8ce429d78a9f9156ab48efdb2800c
pkgname = thunar-devel
diff --git a/PKGBUILD b/PKGBUILD
index c18b3938acf1..c051f21c11e3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname=thunar
pkgname=${_pkgname}-devel
-pkgver=1.8.7
+pkgver=1.8.8
pkgrel=1
pkgdesc='file manager for xfce'
arch=('i686' 'x86_64')
@@ -18,11 +18,10 @@ optdepends=('gvfs: trash support, mounting with udisks, and remote filesystems'
'thunar-volman: manages removable devices'
'thunar-archive-plugin: create and deflate archives'
'thunar-media-tags-plugin: view/edit id3/ogg tags')
-provides=("${_pkgname}=${pkgver}") # 'libthunarx-3.so')
+provides=("${_pkgname}=${pkgver}")
conflicts=("${_pkgname}")
-install="${_pkgname}.install"
source=("https://archive.xfce.org/src/xfce/${_pkgname}/${pkgver%.*}/${_pkgname^}-${pkgver}.tar.bz2")
-sha256sums=('3e033af06751beee23e73cf16cbd97513d3c0adf358d8a42158af38a44b9d329')
+sha256sums=('a03761de4a43c36b9daa6029e6e3263a23c8ce429d78a9f9156ab48efdb2800c')
prepare() {
cd "${_pkgname^}-${pkgver}"
diff --git a/thunar.install b/thunar.install
deleted file mode 100644
index c9099f6a9d36..000000000000
--- a/thunar.install
+++ /dev/null
@@ -1,21 +0,0 @@
-post_install() {
- printf "$(tput setaf 1)$(tput bold) ==> WARNING: $(tput sgr0)"
- echo "List of packages which are linked against the GTK2 version of thunar"
- while read pkg; do
- mapfile -t files < <(pacman -Qlq $pkg | grep -v /$)
- grep -Fq 'libthunarx-2.so' "${files[@]}" <&- 2>/dev/null && echo " >> $pkg"
- done < <(pacman -Qq | grep -E '(^(xf|libxfce|garcon|tumbler|mousepad|orage|thunar)|xfce|xfwm)' )
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- printf "$(tput setaf 1)$(tput bold) ==> WARNING: $(tput sgr0)"
- echo "Packages linked against uninstalled version of thunar:"
- while read pkg; do
- mapfile -t files < <(pacman -Qlq $pkg | grep -v /$)
- grep -Fq 'libthunarx-3.so' "${files[@]}" <&- 2>/dev/null && echo " >> $pkg"
- done < <(pacman -Qq | grep -E '(^(xf|libxfce|garcon|tumbler|mousepad|orage|thunar)|xfce|xfwm)' )
-}