From fcce4e670cd2d81990b3f50e8a682b44d40a73cc Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Tue, 2 Sep 2014 06:41:22 -0300 Subject: remove parabola suffix and add complex pkgrel on the packages --- libre/lsb-release/PKGBUILD | 43 +++++++++++++++++++++++++ libre/lsb-release/lsb-release.install | 12 +++++++ libre/lsb-release/lsb_release_description.patch | 11 +++++++ 3 files changed, 66 insertions(+) create mode 100644 libre/lsb-release/PKGBUILD create mode 100644 libre/lsb-release/lsb-release.install create mode 100644 libre/lsb-release/lsb_release_description.patch (limited to 'libre/lsb-release') diff --git a/libre/lsb-release/PKGBUILD b/libre/lsb-release/PKGBUILD new file mode 100644 index 000000000..71fb184eb --- /dev/null +++ b/libre/lsb-release/PKGBUILD @@ -0,0 +1,43 @@ +# $Id: PKGBUILD 101477 2013-11-26 10:23:04Z svenstaro $ +# Maintainer (Arch): Sven-Hendrik Haase +# Contributor (Arch): Malte Rabenseifner +# Contributor (Arch): John Gerritse +# Maintainer: Michał Masłowski +# Contributor: André Silva emulatorman@parabola.nu> + +pkgname=lsb-release +pkgver=1.4 +pkgrel=14.parabola1 +pkgdesc="LSB version query program (Parabola rebranded)" +arch=('any') +url="http://www.linuxbase.org/" +license=('GPL2') +depends=('bash') +replaces=("${pkgname}-libre" "${pkgname}-parabola") +conflicts=("${pkgname}-libre" "${pkgname}-parabola") +install=lsb-release.install +source=(http://downloads.sourceforge.net/lsb/$pkgname-$pkgver.tar.gz + lsb_release_description.patch) +md5sums=('30537ef5a01e0ca94b7b8eb6a36bb1e4' + '72f562d8eaa8915ab85fba13e68c8d68') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + patch -Np0 < "$srcdir/lsb_release_description.patch" + + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + install -dm755 "$pkgdir/etc" + echo "LSB_VERSION=$pkgver" >> "$pkgdir/etc/lsb-release" + echo "DISTRIB_ID=Parabola" > "$pkgdir/etc/lsb-release" + echo "DISTRIB_RELEASE=rolling" >> "$pkgdir/etc/lsb-release" + echo "DISTRIB_DESCRIPTION=\"Parabola GNU/Linux-libre\"" >> "$pkgdir/etc/lsb-release" + + install -Dm 644 lsb_release.1.gz "$pkgdir/usr/share/man/man1/lsb_release.1.gz" + install -Dm 755 lsb_release "$pkgdir/usr/bin/lsb_release" +} diff --git a/libre/lsb-release/lsb-release.install b/libre/lsb-release/lsb-release.install new file mode 100644 index 000000000..261df2a73 --- /dev/null +++ b/libre/lsb-release/lsb-release.install @@ -0,0 +1,12 @@ +post_install() { + echo "Parabola GNU/Linux-libre release" >> /etc/parabola-release +} + +post_upgrade() { + sed -e '/Parabola GNU\/Linux-[Ll]ibre release/d' -i /etc/parabola-release + echo "Parabola GNU/Linux-libre release" >> /etc/parabola-release +} + +pre_remove() { + sed -e '/Parabola GNU\/Linux-[Ll]ibre release/d' -i /etc/parabola-release +} diff --git a/libre/lsb-release/lsb_release_description.patch b/libre/lsb-release/lsb_release_description.patch new file mode 100644 index 000000000..d46835b97 --- /dev/null +++ b/libre/lsb-release/lsb_release_description.patch @@ -0,0 +1,11 @@ +--- lsb_release.orig 2012-11-13 05:12:02.000000000 -0800 ++++ lsb_release 2013-11-24 17:13:55.943608718 -0800 +@@ -216,7 +216,7 @@ + TMP_DISTRIB_DESC=$DISTRIB_DESCRIPTION + fi + +- if [ -z "$TMP_DISTRIB_DESC" ] # head or lsb-release init ++ if [ -z "$DISTRIB_DESCRIPTION" ] # head or lsb-release init + then # file contains no data + DISTRIB_DESCRIPTION=$MSG_NONE + NO="y" -- cgit v1.2.3