summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-06-12 10:59:25 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-06-12 11:01:11 +0200
commitcd0331a941b5d98ca7377ca508a1f0cd957f7a5b (patch)
treefa6cbe009e6f3a7ed23f2ea0bc2e1ce17f5715bf
parent4af203197e202e56397e8d33719bdf3d4c8d1c85 (diff)
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 <GNUtoo@cyberdimension.org>
-rw-r--r--libre/hardinfo/PKGBUILD48
1 files changed, 0 insertions, 48 deletions
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 <eric@archlinux.org>
-# Contributor (Hyperbola): Márcio Silva <coadde@hyperbola.info>
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-# Contributor: bill-auger <bill-auger@programmer.net>
-
-# 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
-}