[arch-commits] Commit in scons/repos (testing-any testing-any/PKGBUILD)

2017-10-05 Thread Antonio Rojas
Date: Thursday, October 5, 2017 @ 07:44:11
  Author: arojas
Revision: 306784

archrelease: copy trunk to testing-any

Added:
  scons/repos/testing-any/
  scons/repos/testing-any/PKGBUILD
(from rev 306783, scons/trunk/PKGBUILD)

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Copied: scons/repos/testing-any/PKGBUILD (from rev 306783, scons/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-10-05 07:44:11 UTC (rev 306784)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: damir 
+# Contributor: Lukas Sabota 
+# Contributor: Brice Carpentier 
+
+# reminder: scons moving to py3 any time soon
+
+pkgname=scons
+pkgver=3.0.0
+pkgrel=1
+pkgdesc="Extensible Python-based build utility"
+arch=('any')
+url="http://scons.org;
+license=('MIT')
+depends=('python')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('1c99878d0eaf9b768b50721e913142d3')
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py install --standard-lib \
+  --prefix=/usr \
+  --install-data=/usr/share \
+  --optimize=1 \
+  --root="$pkgdir"
+
+  install -Dm644 LICENSE.txt \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in scons/repos (testing-any testing-any/PKGBUILD)

2015-06-25 Thread Ray Rashif
Date: Thursday, June 25, 2015 @ 21:48:50
  Author: schiv
Revision: 241280

archrelease: copy trunk to testing-any

Added:
  scons/repos/testing-any/
  scons/repos/testing-any/PKGBUILD
(from rev 241279, scons/trunk/PKGBUILD)

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Copied: scons/repos/testing-any/PKGBUILD (from rev 241279, scons/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-06-25 19:48:50 UTC (rev 241280)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: damir da...@archlinux.org
+# Contributor: Lukas Sabota punkrockguy...@comcast.net
+# Contributor: Brice Carpentier br...@dlfp.org
+
+# reminder: scons moving to py3 any time soon
+
+pkgname=scons
+pkgver=2.3.5
+pkgrel=1
+pkgdesc=Extensible Python-based build utility
+arch=('any')
+url=http://scons.org;
+license=('MIT')
+depends=('python2')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('a8988c7ef11133bb3b6ccf0af67ce010')
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  python2 setup.py install --standard-lib \
+   --prefix=/usr \
+   --install-data=/usr/share \
+   --optimize=1 \
+   --root=$pkgdir
+
+  # fix for python 2.7
+  sed -i 's:^#!.*bin/env python:#!/usr/bin/env python2:' \
+$pkgdir/usr/bin/*
+
+  install -Dm644 LICENSE.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in scons/repos (testing-any testing-any/PKGBUILD)

2012-08-08 Thread Ray Rashif
Date: Wednesday, August 8, 2012 @ 14:49:27
  Author: schiv
Revision: 165008

archrelease: copy trunk to testing-any

Added:
  scons/repos/testing-any/
  scons/repos/testing-any/PKGBUILD
(from rev 165007, scons/trunk/PKGBUILD)

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Copied: scons/repos/testing-any/PKGBUILD (from rev 165007, scons/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-08-08 18:49:27 UTC (rev 165008)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: damir da...@archlinux.org
+# Contributor: Lukas Sabota punkrockguy...@comcast.net
+# Contributor: Brice Carpentier br...@dlfp.org
+
+pkgname=scons
+pkgver=2.2.0
+pkgrel=1
+pkgdesc=Extensible Python-based build utility
+arch=('any')
+url=http://scons.org;
+license=('MIT')
+depends=('python2')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('f737f474a02d08156c821bd2d4d4b632')
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  python2 setup.py install --standard-lib \
+   --prefix=/usr \
+   --install-data=/usr/share \
+   --optimize=1 \
+   --root=$pkgdir
+
+  # fix for python 2.7
+  sed -i 's:^#!.*bin/env python:#!/usr/bin/env python2:' \
+$pkgdir/usr/bin/*
+
+  install -Dm644 LICENSE.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et: