summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKr1ss2020-08-12 23:04:58 +0200
committerKr1ss2020-08-12 23:04:58 +0200
commit47187e1b0fb5b4e90697b5fe5d32010f8205d141 (patch)
treef98b48d528e0beed4674eab90b5baaa6093e25b3
parenta8121d54261a53c830052b2afe873d41d6accea1 (diff)
downloadaur-47187e1b0fb5b4e90697b5fe5d32010f8205d141.tar.gz
update: dupliseek-git 1:0.0.3.r36.6c5cc90-1
Removes bundled send2trash in order to use `python-send2trash` from the Archlinux [community] repository.
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2b8831101104..71fd633048b1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = dupliseek-git
pkgdesc = Duplicate image finder written in Python/Qt5
- pkgver = 0.0.3.r24.4faf56e
+ pkgver = 0.0.3.r36.6c5cc90
pkgrel = 1
epoch = 1
url = https://gitlab.com/dupliseek-group/dupliseek
@@ -12,6 +12,7 @@ pkgbase = dupliseek-git
depends = python-pyqt5
depends = python-numpy
depends = python-imutils
+ depends = python-send2trash
depends = opencv
provides = dupliseek
conflicts = dupliseek
diff --git a/PKGBUILD b/PKGBUILD
index 38972afa6100..ffadeba8a9bc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@ pkgname=dupliseek-git
epoch=1
pkgver() { git -C "${pkgname%-git}" describe --long | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'; }
-pkgver=0.0.3.r24.4faf56e
+pkgver=0.0.3.r36.6c5cc90
pkgrel=1
pkgdesc='Duplicate image finder written in Python/Qt5'
@@ -16,7 +16,7 @@ license=('MIT')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
-depends=('python-pyqt5' 'python-numpy' 'python-imutils' 'opencv')
+depends=('python-pyqt5' 'python-numpy' 'python-imutils' 'python-send2trash' 'opencv')
makedepends=('git' 'python-setuptools' 'python-pip')
source=("git+$url.git")
@@ -27,6 +27,7 @@ prepare() {
sed -i "s|\(/usr/share/\)icons\(/${pkgname%-git}\)|\1pixmaps\2.png|;
s|^\(Categories=.*\)|\1\;Utility|" "${pkgname%-git}.desktop"
sed -i "s|opencv-python|opencv|" setup.py
+ rm -r send2trash
}
build() {