[arch-commits] Commit in (wren)

2020-05-01 Thread Antonio Rojas via arch-commits
Date: Friday, May 1, 2020 @ 20:28:16
  Author: arojas
Revision: 624265

Drop orphan package

Deleted:
  wren/


[arch-commits] Commit in wren/repos (2 files)

2018-11-09 Thread Felix Yan via arch-commits
Date: Friday, November 9, 2018 @ 23:31:47
  Author: felixonmars
Revision: 405303

archrelease: copy trunk to community-staging-x86_64

Added:
  wren/repos/community-staging-x86_64/
  wren/repos/community-staging-x86_64/PKGBUILD
(from rev 405301, wren/trunk/PKGBUILD)

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

Copied: wren/repos/community-staging-x86_64/PKGBUILD (from rev 405301, 
wren/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-11-09 23:31:47 UTC (rev 405303)
@@ -0,0 +1,45 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: Tetsumi 
+
+pkgname=wren
+pkgver=0.1.0
+pkgrel=2
+pkgdesc='Small, fast, class-based concurrent scripting language'
+makedepends=('setconf' 'libuv' 'git' 'python2')
+depends=('glibc')
+license=('MIT')
+arch=('x86_64')
+url='http://wren.io/'
+source=("git+https://github.com/munificent/wren.git#commit=417ed7a;
+
"git+https://chromium.googlesource.com/external/gyp.git#commit=aae1e3efb50786df20e9572621fb746865f0df53;
+"git+https://github.com/libuv/libuv.git#commit=cd37fd0;)
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  # silence warnings
+  setconf wren/util/wren.mk C_WARNINGS '-w'
+  sed 's/ rcu / rc /g' -i wren/util/wren.mk
+  # libuv and gyp
+  setconf wren/util/libuv.py LIB_UV_VERSION "\"v$(pkg-config --modversion 
libuv)\""
+  mkdir -p wren/deps
+  cp -ru libuv wren/deps
+  mkdir -p wren/deps/libuv/build
+  cp -ru gyp wren/deps/libuv/build/gyp
+  # no downloads, use the existing git clones
+  sed -i 's:download:>/dev/null:g' wren/util/wren.mk
+}
+
+build() {
+  make -C wren
+}
+
+package() {
+  install -Dm755 wren/bin/wren "$pkgdir/usr/bin/wren"
+  install -Dm644 wren/src/include/wren.h "$pkgdir/usr/include/wren.h"
+  install -Dm755 wren/lib/libwren.so "$pkgdir/usr/lib/libwren.so"
+  install -Dm644 wren/LICENSE "$pkgdir/usr/share/licenses/wren/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in wren/trunk (PKGBUILD)

2018-11-09 Thread Felix Yan via arch-commits
Date: Friday, November 9, 2018 @ 23:31:33
  Author: felixonmars
Revision: 405300

PIE/BUILDINFO rebuild

Modified:
  wren/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-09 23:31:21 UTC (rev 405299)
+++ PKGBUILD2018-11-09 23:31:33 UTC (rev 405300)
@@ -3,7 +3,7 @@
 
 pkgname=wren
 pkgver=0.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Small, fast, class-based concurrent scripting language'
 makedepends=('setconf' 'libuv' 'git' 'python2')
 depends=('glibc')


[arch-commits] Commit in wren/repos (2 files)

2017-04-04 Thread Alexander Rødseth
Date: Tuesday, April 4, 2017 @ 20:18:17
  Author: arodseth
Revision: 220504

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

Added:
  wren/repos/community-i686/PKGBUILD
(from rev 220503, wren/trunk/PKGBUILD)
  wren/repos/community-x86_64/PKGBUILD
(from rev 220503, wren/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   46 
 community-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: wren/repos/community-i686/PKGBUILD (from rev 220503, 
wren/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-04-04 20:18:17 UTC (rev 220504)
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 194006 2016-10-30 14:58:09Z arodseth $
+# Maintainer: Alexander F Rødseth 
+# Contributor: Tetsumi 
+
+pkgname=wren
+pkgver=0.1.0
+pkgrel=1
+pkgdesc='Small, fast, class-based concurrent scripting language'
+makedepends=('setconf' 'libuv' 'git' 'python2')
+depends=('glibc')
+license=('MIT')
+arch=('x86_64' 'i686')
+url='http://wren.io/'
+source=("git+https://github.com/munificent/wren.git#commit=417ed7a;
+
"git+https://chromium.googlesource.com/external/gyp.git#commit=aae1e3efb50786df20e9572621fb746865f0df53;
+"git+https://github.com/libuv/libuv.git#commit=cd37fd0;)
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  # silence warnings
+  setconf wren/util/wren.mk C_WARNINGS '-w'
+  sed 's/ rcu / rc /g' -i wren/util/wren.mk
+  # libuv and gyp
+  setconf wren/util/libuv.py LIB_UV_VERSION "\"v$(pkg-config --modversion 
libuv)\""
+  mkdir -p wren/deps
+  cp -ru libuv wren/deps
+  mkdir -p wren/deps/libuv/build
+  cp -ru gyp wren/deps/libuv/build/gyp
+  # no downloads, use the existing git clones
+  sed -i 's:download:>/dev/null:g' wren/util/wren.mk
+}
+
+build() {
+  make -C wren
+}
+
+package() {
+  install -Dm755 wren/bin/wren "$pkgdir/usr/bin/wren"
+  install -Dm644 wren/src/include/wren.h "$pkgdir/usr/include/wren.h"
+  install -Dm755 wren/lib/libwren.so "$pkgdir/usr/lib/libwren.so"
+  install -Dm644 wren/LICENSE "$pkgdir/usr/share/licenses/wren/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: wren/repos/community-x86_64/PKGBUILD (from rev 220503, 
wren/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-04-04 20:18:17 UTC (rev 220504)
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 194006 2016-10-30 14:58:09Z arodseth $
+# Maintainer: Alexander F Rødseth 
+# Contributor: Tetsumi 
+
+pkgname=wren
+pkgver=0.1.0
+pkgrel=1
+pkgdesc='Small, fast, class-based concurrent scripting language'
+makedepends=('setconf' 'libuv' 'git' 'python2')
+depends=('glibc')
+license=('MIT')
+arch=('x86_64' 'i686')
+url='http://wren.io/'
+source=("git+https://github.com/munificent/wren.git#commit=417ed7a;
+
"git+https://chromium.googlesource.com/external/gyp.git#commit=aae1e3efb50786df20e9572621fb746865f0df53;
+"git+https://github.com/libuv/libuv.git#commit=cd37fd0;)
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  # silence warnings
+  setconf wren/util/wren.mk C_WARNINGS '-w'
+  sed 's/ rcu / rc /g' -i wren/util/wren.mk
+  # libuv and gyp
+  setconf wren/util/libuv.py LIB_UV_VERSION "\"v$(pkg-config --modversion 
libuv)\""
+  mkdir -p wren/deps
+  cp -ru libuv wren/deps
+  mkdir -p wren/deps/libuv/build
+  cp -ru gyp wren/deps/libuv/build/gyp
+  # no downloads, use the existing git clones
+  sed -i 's:download:>/dev/null:g' wren/util/wren.mk
+}
+
+build() {
+  make -C wren
+}
+
+package() {
+  install -Dm755 wren/bin/wren "$pkgdir/usr/bin/wren"
+  install -Dm644 wren/src/include/wren.h "$pkgdir/usr/include/wren.h"
+  install -Dm755 wren/lib/libwren.so "$pkgdir/usr/lib/libwren.so"
+  install -Dm644 wren/LICENSE "$pkgdir/usr/share/licenses/wren/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in wren/trunk (PKGBUILD)

2017-04-04 Thread Alexander Rødseth
Date: Tuesday, April 4, 2017 @ 20:16:48
  Author: arodseth
Revision: 220503

upgpkg: wren 0.1.0-1

Modified:
  wren/trunk/PKGBUILD

--+
 PKGBUILD |1 +
 1 file changed, 1 insertion(+)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-04 20:12:05 UTC (rev 220502)
+++ PKGBUILD2017-04-04 20:16:48 UTC (rev 220503)
@@ -24,6 +24,7 @@
   sed 's/ rcu / rc /g' -i wren/util/wren.mk
   # libuv and gyp
   setconf wren/util/libuv.py LIB_UV_VERSION "\"v$(pkg-config --modversion 
libuv)\""
+  mkdir -p wren/deps
   cp -ru libuv wren/deps
   mkdir -p wren/deps/libuv/build
   cp -ru gyp wren/deps/libuv/build/gyp