Skip to content

Commit

Permalink
upgpkg: ripme 2.1.6-2
Browse files Browse the repository at this point in the history
Set version correctly

Signed-off-by: txtsd <code@ihavea.quest>
  • Loading branch information
txtsd committed Oct 21, 2023
1 parent 3bde1d6 commit 9e1a6d8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
6 changes: 3 additions & 3 deletions ripme/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
pkgbase = ripme
pkgdesc = Downloads albums in bulk
pkgver = 2.1.6
pkgrel = 1
pkgrel = 2
url = https://github.com/ripmeapp2/ripme
arch = any
license = MIT
makedepends = java-environment>=17
makedepends = gradle
depends = java-runtime>=17
source = https://github.com/ripmeapp2/ripme/archive/2.1.6.tar.gz
source = ripme-2.1.6.tar.gz::https://github.com/ripmeapp2/ripme/archive/2.1.6.tar.gz
source = ripme-gradle.patch
sha256sums = a0856d540b9a53a15afea6af7d609423ddb85de4e294176fd84b0f24a0e94b68
sha256sums = bc905c7e218fbd14cbf24f984b30c3d552dde05a4f00d2c207ee20abfbb6fd37
sha256sums = 5f9517c703a3a62a9b8be92a18296d50bdf8478f0221d697f2c906f46fd6043d

pkgname = ripme
5 changes: 5 additions & 0 deletions ripme/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
src/
pkg/

ripme-*.tar.gz
*.pkg.*
8 changes: 4 additions & 4 deletions ripme/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@

pkgname=ripme
pkgver=2.1.6
pkgrel=1
pkgrel=2
pkgdesc="Downloads albums in bulk"
arch=('any')
url="https://github.com/ripmeapp2/ripme"
license=('MIT')
depends=('java-runtime>=17')
makedepends=('java-environment>=17' 'gradle')
source=("https://github.com/ripmeapp2/ripme/archive/${pkgver}.tar.gz"
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ripmeapp2/ripme/archive/${pkgver}.tar.gz"
"ripme-gradle.patch")
sha256sums=('a0856d540b9a53a15afea6af7d609423ddb85de4e294176fd84b0f24a0e94b68'
'bc905c7e218fbd14cbf24f984b30c3d552dde05a4f00d2c207ee20abfbb6fd37')
'5f9517c703a3a62a9b8be92a18296d50bdf8478f0221d697f2c906f46fd6043d')

prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
Expand All @@ -32,6 +32,6 @@ EOF

package() {
cd "${srcdir}/${pkgname}-${pkgver}"
install -Dm644 "build/libs/ripme-2.1.5.jar" "${pkgdir}/usr/share/java/ripme.jar"
install -Dm644 "build/libs/ripme-2.1.6-1-68189f27.jar" "${pkgdir}/usr/share/java/ripme.jar"
install -Dm755 ripme.sh "${pkgdir}/usr/bin/ripme"
}
2 changes: 1 addition & 1 deletion ripme/ripme-gradle.patch
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

tasks.withType<Jar> {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
+ archiveVersion.set("2.1.5")
+ archiveVersion.set("2.1.6-1-68189f27")
manifest {
attributes["Main-Class"] = "com.rarchives.ripme.App"
attributes["Implementation-Version"] = archiveVersion

0 comments on commit 9e1a6d8

Please sign in to comment.