diff options
author | Magnus Boman | 2022-11-20 16:59:07 +0100 |
---|---|---|
committer | Magnus Boman | 2022-11-20 16:59:07 +0100 |
commit | ff7ff1c617246af43b72b8064c0281c89da8adb5 (patch) | |
tree | 2fe134af0ba68d01ebbadda24fbcaf539be2f3a1 | |
parent | c26dd4011bd5bc5f12f2047252e760298f05684d (diff) | |
download | aur-ff7ff1c617246af43b72b8064c0281c89da8adb5.tar.gz |
upgpkg: gallery-dl 1.24.0-1
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 9 |
2 files changed, 9 insertions, 4 deletions
@@ -1,6 +1,6 @@ pkgbase = gallery-dl pkgdesc = Command-line program to download image-galleries and collections from several image hosting sites - pkgver = 1.23.5 + pkgver = 1.24.0 pkgrel = 1 url = https://github.com/mikf/gallery-dl arch = any @@ -16,7 +16,7 @@ pkgbase = gallery-dl optdepends = youtube-dl: Download videos optdepends = python-pysocks: SOCKS support optdepends = python-brotli: for brotli decompression - source = git+https://github.com/mikf/gallery-dl.git#tag=v1.23.5?signed + source = git+https://github.com/mikf/gallery-dl.git#tag=fecd9ff97bab15dc23ad43f2b1fbd3cd42f2efe5?signed validpgpkeys = 3E09F5908333DD83DBDCE7375680CA389D365A88 sha512sums = SKIP @@ -2,7 +2,7 @@ # Contributor: LLL2yu <lll2yu@protonmail.com> pkgname=gallery-dl -pkgver=1.23.5 +pkgver=1.24.0 pkgrel=1 pkgdesc='Command-line program to download image-galleries and collections from several image hosting sites' arch=(any) @@ -14,10 +14,15 @@ optdepends=('ffmpeg: Convert Pixiv Ugoira to WebM' 'youtube-dl: Download videos' 'python-pysocks: SOCKS support' 'python-brotli: for brotli decompression') -source=(git+"${url}".git#tag=v"${pkgver}"?signed) +_tag=fecd9ff97bab15dc23ad43f2b1fbd3cd42f2efe5 # git rev-parse v${pkgver} +source=(git+"${url}".git#tag="${_tag}"?signed) validpgpkeys=(3E09F5908333DD83DBDCE7375680CA389D365A88) #Mike Fährmann sha512sums=('SKIP') +pkgver() { + git -C ${pkgname} describe --tags | sed 's/^v//' +} + build() { cd ${pkgname} make |