summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalte Jürgens2023-10-20 15:57:39 +0000
committerMalte Jürgens2023-10-20 16:00:52 +0000
commit900e084940ff7ea54edc1a8f8cfa99118b376168 (patch)
tree814585c598f7523b7306a820e58f7946a909cc14
parent0b7a18ec8ac4df4c8dbf8fb2988f6ce7b9a2b70e (diff)
downloadaur-900e084940ff7ea54edc1a8f8cfa99118b376168.tar.gz
remove ncurses5-compat-libs dependency, add version to downloaded tarball name
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD6
-rw-r--r--PKGBUILD.template33
-rwxr-xr-x_version.sh5
-rw-r--r--tarball.template1
5 files changed, 5 insertions, 45 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0a8306a29a83..8bf458f38f46 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,11 @@
pkgbase = mozregression-gui-bin
pkgdesc = Regression range finder for Firefox
pkgver = 6.0.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/mozilla/mozregression
arch = any
license = MPL
depends = gtk3
- depends = ncurses5-compat-libs
depends = qt5-wayland
depends = qt5-multimedia
depends = libbsd
@@ -18,7 +17,7 @@ pkgbase = mozregression-gui-bin
depends = python
provides = mozregression-gui=6.0.1
options = !strip
- source = https://github.com/mozilla/mozregression/releases/download/6.0.1/mozregression-gui-ubuntu-22.04.tar.gz
+ source = mozregression-gui-bin-6.0.1.tar.gz::https://github.com/mozilla/mozregression/releases/download/6.0.1/mozregression-gui-ubuntu-22.04.tar.gz
source = mozregression-gui.desktop
source = https://raw.githubusercontent.com/mozilla/mozregression/master/gui/icons/app_icon.png
sha256sums = 37cc5a03f643926b907ed85cce1a3676e5a9bed81de1970e6004a73ca7f3b986
diff --git a/PKGBUILD b/PKGBUILD
index 356752a99924..f46071a399d0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,15 +4,15 @@
pkgname=mozregression-gui-bin
_pkgname=mozregression-gui
pkgver=6.0.1
-pkgrel=1
+pkgrel=2
pkgdesc='Regression range finder for Firefox'
arch=('any')
license=(MPL)
url="https://github.com/mozilla/mozregression"
options=('!strip')
-depends=("gtk3" "ncurses5-compat-libs" "qt5-wayland" "qt5-multimedia" "libbsd" "libyaml" "qt5-webengine" "qt5-quickcontrols2" "qt5-sensors" "qt5-virtualkeyboard" "python")
+depends=("gtk3" "qt5-wayland" "qt5-multimedia" "libbsd" "libyaml" "qt5-webengine" "qt5-quickcontrols2" "qt5-sensors" "qt5-virtualkeyboard" "python")
provides=("${_pkgname}=${pkgver}")
-source=("https://github.com/mozilla/mozregression/releases/download/${pkgver}/${_pkgname}-ubuntu-22.04.tar.gz"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mozilla/mozregression/releases/download/${pkgver}/${_pkgname}-ubuntu-22.04.tar.gz"
"${_pkgname}.desktop"
"https://raw.githubusercontent.com/mozilla/mozregression/master/gui/icons/app_icon.png")
sha256sums=('37cc5a03f643926b907ed85cce1a3676e5a9bed81de1970e6004a73ca7f3b986'
diff --git a/PKGBUILD.template b/PKGBUILD.template
deleted file mode 100644
index a12fb7d532f6..000000000000
--- a/PKGBUILD.template
+++ /dev/null
@@ -1,33 +0,0 @@
-# Maintainer: Malte Jürgens <maltejur@dismail.de>
-# Contributor: hawkeye116477 <hawkeye116477 at gmail dot com>
-
-pkgname=mozregression-gui-bin
-_pkgname=mozregression-gui
-pkgver=${version}
-pkgrel=1
-pkgdesc='Regression range finder for Firefox'
-arch=('any')
-license=(MPL)
-url="https://github.com/mozilla/mozregression"
-options=('!strip')
-depends=("gtk3" "ncurses5-compat-libs" "qt5-wayland" "qt5-multimedia" "libbsd" "libyaml" "qt5-webengine" "qt5-quickcontrols2" "qt5-sensors" "qt5-virtualkeyboard" "python")
-provides=("${_pkgname}=${pkgver}")
-source=("https://github.com/mozilla/mozregression/releases/download/${pkgver}/${_pkgname}-ubuntu-22.04.tar.gz"
- "${_pkgname}.desktop"
- "https://raw.githubusercontent.com/mozilla/mozregression/master/gui/icons/app_icon.png")
-sha256sums=('${sha256}'
- '0b51e2692ef75addd98365185ff05524426ca1735f43d6b1cafa0e71d71481cb'
- 'eec9a7ab76d757b7f03ceea4a65623337a6625989f4aa801d07f71aa37175e23')
-
-package() {
- install -d "${pkgdir}"/{usr/{bin,share/{applications,pixmaps}},opt/${_pkgname}}
-
- cp -r ./${_pkgname}/* "${pkgdir}"/opt/${_pkgname}/
- install -Dm755 /dev/stdin "$pkgdir/usr/bin/${_pkgname}" <<END
-#!/bin/sh
-exec /opt/${_pkgname}/${_pkgname} "\$@"
-END
- install -m644 "${srcdir}"/${_pkgname}.desktop "${pkgdir}"/usr/share/applications/
- install -m644 "${srcdir}"/app_icon.png "${pkgdir}"/usr/share/pixmaps/${_pkgname}.png
-}
-# vim:set ts=2 sw=2 et:
diff --git a/_version.sh b/_version.sh
deleted file mode 100755
index e1c5c6316415..000000000000
--- a/_version.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -e
-cd "$(dirname "$0")"
-
-../_utils/version_github.sh mozilla/mozregression
diff --git a/tarball.template b/tarball.template
deleted file mode 100644
index 4657e06cf44d..000000000000
--- a/tarball.template
+++ /dev/null
@@ -1 +0,0 @@
-https://github.com/mozilla/mozregression/releases/download/${version}/mozregression-gui-ubuntu-22.04.tar.gz \ No newline at end of file