From cd0331a941b5d98ca7377ca508a1f0cd957f7a5b Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Fri, 12 Jun 2020 10:59:25 +0200 Subject: Remove hardinfo as it's no longer branded Before, hardinfo had to be branded, however since the following commit: ca33695c5 hardinfo-0.5.1.816.g877ea2b-1.par1: updating version it's not branded anymore, and the PKGBUILD is now functionally similar to the one in Arch Linux community repository. Beside comments, here's the differences between the Arch Linux PKGBUILD and the Parabola one: +pkgrel+=.par6 pkgdesc="A system information and benchmark tool." +pkgdesc+="(Parabola rebranded)" arch=('x86_64') +arch+=('i686' 'armv7h') url="https://github.com/lpereira/hardinfo" license=('GPL2') depends=('gtk2') makedepends=('cmake' 'git') +depends+=(libicudata.so) The additional depends is not required if we use the Arch Linux package: it was meant to handle better the ICU transition in the cases where the upstream distribution updated the icu package, but we didn't manage to recompile all our package against it in time. If we use Arch Linux, Arch Linux 32, and Arch Linux ARM packages, this issue goes away as the package will be kept in sync by the upstream distributions. Signed-off-by: Denis 'GNUtoo' Carikli --- libre/hardinfo/PKGBUILD | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 libre/hardinfo/PKGBUILD (limited to 'libre/hardinfo/PKGBUILD') diff --git a/libre/hardinfo/PKGBUILD b/libre/hardinfo/PKGBUILD deleted file mode 100644 index 74e1ad089..000000000 --- a/libre/hardinfo/PKGBUILD +++ /dev/null @@ -1,48 +0,0 @@ -# Maintainer (Arch): Eric Bélanger -# Contributor (Hyperbola): Márcio Silva -# Maintainer: Omar Vega Ramos -# Contributor: bill-auger - -# parabola changes and rationale: -# - re-branding - -pkgname=hardinfo -pkgver=0.5.1.816.g877ea2b -_commit=877ea2bc7777626c6fe77b6934a09261f1f1409e -pkgrel=1 -pkgrel+=.par6 -pkgdesc="A system information and benchmark tool." -pkgdesc+="(Parabola rebranded)" -arch=('x86_64') -arch+=('i686' 'armv7h') -url="https://github.com/lpereira/hardinfo" -license=('GPL2') -depends=('gtk2') -makedepends=('cmake' 'git') -depends+=(libicudata.so) -source=($pkgname::git+https://github.com/lpereira/hardinfo#commit=$_commit) -sha1sums=('SKIP') - -pkgver() { - cd $pkgname - git describe --long | sed "s/^release-//;s/^0.5-/0.5.1-/;s/-/./g" -} - -prepare() { - cd ${pkgname} - mkdir build -} - -build() { - cd ${pkgname}/build - cmake \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib \ - .. - make -} - -package() { - cd ${pkgname}/build - make DESTDIR="${pkgdir}" install -} -- cgit v1.2.3