[arch-commits] Commit in bmake/repos (4 files)

Sergej Pupykin spupykin at nymeria.archlinux.org
Wed Oct 30 11:12:55 UTC 2013


    Date: Wednesday, October 30, 2013 @ 12:12:55
  Author: spupykin
Revision: 99590

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bmake/repos/community-i686/PKGBUILD
    (from rev 99589, bmake/trunk/PKGBUILD)
  bmake/repos/community-x86_64/PKGBUILD
    (from rev 99589, bmake/trunk/PKGBUILD)
Deleted:
  bmake/repos/community-i686/PKGBUILD
  bmake/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |   76 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   29 ----------------
 community-x86_64/PKGBUILD |   29 ----------------
 3 files changed, 76 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-10-30 11:12:33 UTC (rev 99589)
+++ community-i686/PKGBUILD	2013-10-30 11:12:55 UTC (rev 99590)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: Alex Szczuczko <alex at szc dot ca>
-# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us>
-# Contributor: Imanol Celaya <ilcra1989 at gmail.com>
-
-pkgname=bmake
-pkgver=20131001
-pkgrel=1
-pkgdesc="Portable version of the NetBSD 'make' build tool"
-arch=('i686' 'x86_64')
-url="http://www.crufty.net/help/sjg/bmake.html"
-license=('BSD')
-depends=('bmake-mk-files')
-source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz")
-sha256sums=('0a91ac60b82270c4b4f21a43e66eb51c32b4df55e01ea592e42eb323909a559b')
-
-build() {
-    rm -rf bmake-build
-    mkdir bmake-build
-    cd bmake-build
-    ../bmake/configure --prefix=/usr --with-default-sys-path=/usr/share/mk
-    sh make-bootstrap.sh
-}
-
-package() {
-    install -Dm755 bmake-build/bmake "$pkgdir"/usr/bin/bmake
-    install -Dm644 bmake/bmake.1 "$pkgdir"/usr/share/man/man1/bmake.1
-}

Copied: bmake/repos/community-i686/PKGBUILD (from rev 99589, bmake/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-10-30 11:12:55 UTC (rev 99590)
@@ -0,0 +1,38 @@
+# Maintainer: Alex Szczuczko <alex at szc dot ca>
+# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us>
+# Contributor: Imanol Celaya <ilcra1989 at gmail.com>
+
+pkgname=bmake
+pkgver=20131001
+pkgrel=2
+pkgdesc="Portable version of the NetBSD 'make' build tool"
+arch=('i686' 'x86_64')
+url="http://www.crufty.net/help/sjg/bmake.html"
+license=('BSD')
+source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz")
+sha256sums=('0a91ac60b82270c4b4f21a43e66eb51c32b4df55e01ea592e42eb323909a559b')
+
+prepare() {
+    cd "$srcdir/$pkgname"
+    # Add missing bsd.*.mk symlinks
+    _links_orig="dep doc init lib links man nls obj own prog subdir"
+    _links_new="dep doc inc init lib links man nls obj own prog subdir"
+    sed -i -e "s/$_links_orig/$_links_new/" mk/install-mk
+}
+
+build() {
+    cd "$srcdir"
+    mkdir -p bmake-build
+    cd bmake-build
+    sh ../bmake/boot-strap --prefix=/usr
+}
+
+package() {
+    cd "$srcdir/bmake-build"
+    # Fix directory permissions on install
+    install -dm0755 "$pkgdir/usr/bin"
+    install -dm0755 "$pkgdir/usr/share/man/cat1"
+    install -dm0755 "$pkgdir/usr/share/licenses/$pkgname"
+    sh ../bmake/boot-strap --prefix=/usr --install-destdir="$pkgdir" op=install
+    head -n70 ../bmake/main.c >$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-10-30 11:12:33 UTC (rev 99589)
+++ community-x86_64/PKGBUILD	2013-10-30 11:12:55 UTC (rev 99590)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: Alex Szczuczko <alex at szc dot ca>
-# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us>
-# Contributor: Imanol Celaya <ilcra1989 at gmail.com>
-
-pkgname=bmake
-pkgver=20131001
-pkgrel=1
-pkgdesc="Portable version of the NetBSD 'make' build tool"
-arch=('i686' 'x86_64')
-url="http://www.crufty.net/help/sjg/bmake.html"
-license=('BSD')
-depends=('bmake-mk-files')
-source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz")
-sha256sums=('0a91ac60b82270c4b4f21a43e66eb51c32b4df55e01ea592e42eb323909a559b')
-
-build() {
-    rm -rf bmake-build
-    mkdir bmake-build
-    cd bmake-build
-    ../bmake/configure --prefix=/usr --with-default-sys-path=/usr/share/mk
-    sh make-bootstrap.sh
-}
-
-package() {
-    install -Dm755 bmake-build/bmake "$pkgdir"/usr/bin/bmake
-    install -Dm644 bmake/bmake.1 "$pkgdir"/usr/share/man/man1/bmake.1
-}

Copied: bmake/repos/community-x86_64/PKGBUILD (from rev 99589, bmake/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-10-30 11:12:55 UTC (rev 99590)
@@ -0,0 +1,38 @@
+# Maintainer: Alex Szczuczko <alex at szc dot ca>
+# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us>
+# Contributor: Imanol Celaya <ilcra1989 at gmail.com>
+
+pkgname=bmake
+pkgver=20131001
+pkgrel=2
+pkgdesc="Portable version of the NetBSD 'make' build tool"
+arch=('i686' 'x86_64')
+url="http://www.crufty.net/help/sjg/bmake.html"
+license=('BSD')
+source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz")
+sha256sums=('0a91ac60b82270c4b4f21a43e66eb51c32b4df55e01ea592e42eb323909a559b')
+
+prepare() {
+    cd "$srcdir/$pkgname"
+    # Add missing bsd.*.mk symlinks
+    _links_orig="dep doc init lib links man nls obj own prog subdir"
+    _links_new="dep doc inc init lib links man nls obj own prog subdir"
+    sed -i -e "s/$_links_orig/$_links_new/" mk/install-mk
+}
+
+build() {
+    cd "$srcdir"
+    mkdir -p bmake-build
+    cd bmake-build
+    sh ../bmake/boot-strap --prefix=/usr
+}
+
+package() {
+    cd "$srcdir/bmake-build"
+    # Fix directory permissions on install
+    install -dm0755 "$pkgdir/usr/bin"
+    install -dm0755 "$pkgdir/usr/share/man/cat1"
+    install -dm0755 "$pkgdir/usr/share/licenses/$pkgname"
+    sh ../bmake/boot-strap --prefix=/usr --install-destdir="$pkgdir" op=install
+    head -n70 ../bmake/main.c >$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}




More information about the arch-commits mailing list