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

2020-10-02 Thread Jan Steffens via arch-commits
Date: Friday, October 2, 2020 @ 20:32:27
  Author: heftig
Revision: 715641

archrelease: copy trunk to community-staging-x86_64

Added:
  valabind/repos/community-staging-x86_64/
  valabind/repos/community-staging-x86_64/PKGBUILD
(from rev 715640, valabind/trunk/PKGBUILD)
  valabind/repos/community-staging-x86_64/vala-0.48.diff
(from rev 715640, valabind/trunk/vala-0.48.diff)
  valabind/repos/community-staging-x86_64/vala-0.50.diff
(from rev 715640, valabind/trunk/vala-0.50.diff)

+
 PKGBUILD   |   39 +++
 vala-0.48.diff |   69 +++
 vala-0.50.diff |   22 +
 3 files changed, 130 insertions(+)

Copied: valabind/repos/community-staging-x86_64/PKGBUILD (from rev 715640, 
valabind/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-02 20:32:27 UTC (rev 715641)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=1.7.1
+pkgrel=4
+pkgdesc='Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR'
+url='https://github.com/radare/valabind'
+arch=('x86_64')
+license=('GPL3')
+depends=('sh' 'glibc' 'glib2' 'vala' 'swig' 'libvala-0.50.so')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz
+vala-0.48.diff vala-0.50.diff)
+sha256sums=('b463b18419de656e218855a2f30a71051f03a9c4540254b4ceaea475fb79102e'
+'0528ba09bb4a5f20944a129d5b91eabeefa2d35a2fcd40378847f976f2ad418e'
+'39ffb66da22043ccbcce09e84a3ba30cf178d23324f1ae352546cd3bc23b8342')
+sha512sums=('b82c733777e0caf449cd27f0ed3597a108462072c5663945ec03f4c1da90d389313c0f3ca0f6db2d52c7f80d09b1751992f733454358cd428c2571b7e53850a4'
+
'f9de1b1050f7933a3850fab88ba1a15fc83da6e21dfe1d75edc781a151eee1246a2d7602c201c71bd8adb4029517992737e660a4a35e4a6f9e80bf7bbe23bb30'
+
'4dbae75787b63531c5f15d88131fc624cb4d274c1bf7e94416ad0773aed9b3007f53918389dcb13c82bfd3b5bdefc6bf9001a78071a62112957044fbd6736c70')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  # git diff 1.7.1..9d4fb181e243
+  patch -Np1 -i ../vala-0.48.diff
+
+  patch -Np1 -i ../vala-0.50.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-staging-x86_64/vala-0.48.diff (from rev 
715640, valabind/trunk/vala-0.48.diff)
===
--- community-staging-x86_64/vala-0.48.diff (rev 0)
+++ community-staging-x86_64/vala-0.48.diff 2020-10-02 20:32:27 UTC (rev 
715641)
@@ -0,0 +1,69 @@
+diff --git a/girwriter.vala b/girwriter.vala
+index 51af0b7..33c016b 100644
+--- a/girwriter.vala
 b/girwriter.vala
+@@ -1,25 +1,29 @@
+-/* Copyright 2011-2015 -- pancake */
++/* Copyright 2011-2019 -- pancake */
+ 
+ using Vala;
+ 
+ public class GirWriter : ValabindWriter {
+   public GLib.List includefiles = new GLib.List ();
+   public GLib.List methods;
+   string classname = "";
+   string classcname;
+   string externs = "";
+   string statics = "";
+   string extends = "";
+   string enums = "";
+   string nspace;
+ 
+   public GirWriter () {
+   }
+ 
+   public override string get_filename (string base_name) {
+   return base_name+".gir";
+   }
+ 
++  public override void write(string file) {
++  context.accept (this);
++  }
++
+   string get_alias (string name) {
+   string oname = name;
+   switch (name) {
+diff --git a/gowriter.vala b/gowriter.vala
+index 56d9fbe..0fb09a6 100644
+--- a/gowriter.vala
 b/gowriter.vala
+@@ -214,7 +214,11 @@ public class GoNamer {
+   }
+ 
+   private string mangle_datatype(DataType d) {
++#if VALA_0_48
++  string ret = d.type_symbol.name;  // i think should unify with 
get_type_declaration?
++#else
+   string ret = d.data_type.name;  // i think should unify with 
get_type_declaration?
++#endif
+   if (d.get_type_arguments().size > 0) {
+   foreach(var dd in d.get_type_arguments()) {
+   ret += "_";
+diff --git a/nodeffiwriter.vala b/nodeffiwriter.vala
+index 84fede0..eba6329 100644
+--- a/nodeffiwriter.vala
 b/nodeffiwriter.vala
+@@ -85,8 +85,13 @@ public class NodeFFIWriter : ValabindWriter {
+ 
+   string _type = type.to_string ();
+   string local_ns_pfx = ns_pfx;
++#if VALA_0_48
++  if (type.type_symbol != null && type.type_symbol.parent_symbol 
is Namespace) {
++  Namespace local_ns = 
(Namespace)type.type_symbol.parent_symbol;
++#else
+   if 

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

2017-08-03 Thread Levente Polyak
Date: Thursday, August 3, 2017 @ 20:08:15
  Author: anthraxx
Revision: 247921

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

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

---+
 /PKGBUILD |   50 
 community-i686/PKGBUILD   |   33 -
 community-x86_64/PKGBUILD |   33 -
 3 files changed, 50 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-03 20:08:04 UTC (rev 247920)
+++ community-i686/PKGBUILD 2017-08-03 20:08:15 UTC (rev 247921)
@@ -1,33 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.10.0
-pkgrel=4
-pkgdesc='Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR'
-url='http://radare.org'
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz
-fix-vala-0.36.patch)
-sha256sums=('dbc792b7f7c93cbc1c0187c456f793437ccce980b24484ade95b507e2ca30f25'
-'5349bf19843a25a765242e9bcbdfd34d419708565070785ccb02a6b6aa7451ed')
-sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d'
-
'faaf6a235336aa79f3d697618d71d5625f09613bdfc9e016b449ff4e0007746f4107a7825386ea075906b705d944213faa50b705595c249d2e61fcd516e1f4a3')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 < "${srcdir}/fix-vala-0.36.patch"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-i686/PKGBUILD (from rev 247920, 
valabind/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-03 20:08:15 UTC (rev 247921)
@@ -0,0 +1,25 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=1.3.0
+pkgrel=1
+pkgdesc='Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR'
+url='http://radare.org'
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha256sums=('8dd2bc96cfd27103da89b3a2ba2f75746b7fa128404da9a57362179129e649f1')
+sha512sums=('54a5c3a90eb95c48179a26b846495efc8e274c868bdb02c28054bc775e9eb73e720e059efcbadd4e183272a27aadb6cf47aba085a96262dfb38979b3b415')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-08-03 20:08:04 UTC (rev 247920)
+++ community-x86_64/PKGBUILD   2017-08-03 20:08:15 UTC (rev 247921)
@@ -1,33 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.10.0
-pkgrel=4
-pkgdesc='Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR'
-url='http://radare.org'
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz
-fix-vala-0.36.patch)
-sha256sums=('dbc792b7f7c93cbc1c0187c456f793437ccce980b24484ade95b507e2ca30f25'
-'5349bf19843a25a765242e9bcbdfd34d419708565070785ccb02a6b6aa7451ed')
-sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d'
-
'faaf6a235336aa79f3d697618d71d5625f09613bdfc9e016b449ff4e0007746f4107a7825386ea075906b705d944213faa50b705595c249d2e61fcd516e1f4a3')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 < "${srcdir}/fix-vala-0.36.patch"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-x86_64/PKGBUILD (from rev 247920, 
valabind/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-08-03 20:08:15 UTC (rev 247921)
@@ -0,0 +1,25 @@
+# Maintainer: Levente Polyak 

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

2016-10-19 Thread Jan Steffens
Date: Wednesday, October 19, 2016 @ 08:35:26
  Author: heftig
Revision: 192564

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

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

---+
 /PKGBUILD |   48 
 community-i686/PKGBUILD   |   24 --
 community-x86_64/PKGBUILD |   24 --
 3 files changed, 48 insertions(+), 48 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-19 08:34:28 UTC (rev 192563)
+++ community-i686/PKGBUILD 2016-10-19 08:35:26 UTC (rev 192564)
@@ -1,24 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.10.0
-pkgrel=2
-pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
-url="http://radare.org;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-i686/PKGBUILD (from rev 192563, 
valabind/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-19 08:35:26 UTC (rev 192564)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.10.0
+pkgrel=3
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-10-19 08:34:28 UTC (rev 192563)
+++ community-x86_64/PKGBUILD   2016-10-19 08:35:26 UTC (rev 192564)
@@ -1,24 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.10.0
-pkgrel=2
-pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
-url="http://radare.org;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-x86_64/PKGBUILD (from rev 192563, 
valabind/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-10-19 08:35:26 UTC (rev 192564)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.10.0
+pkgrel=3
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2016-04-11 Thread Levente Polyak
Date: Tuesday, April 12, 2016 @ 02:39:01
  Author: anthraxx
Revision: 170551

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

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

---+
 /PKGBUILD |   48 
 community-i686/PKGBUILD   |   24 --
 community-x86_64/PKGBUILD |   24 --
 3 files changed, 48 insertions(+), 48 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-12 00:38:50 UTC (rev 170550)
+++ community-i686/PKGBUILD 2016-04-12 00:39:01 UTC (rev 170551)
@@ -1,24 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
-url="http://radare.org;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-i686/PKGBUILD (from rev 170550, 
valabind/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-12 00:39:01 UTC (rev 170551)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.10.0
+pkgrel=2
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-04-12 00:38:50 UTC (rev 170550)
+++ community-x86_64/PKGBUILD   2016-04-12 00:39:01 UTC (rev 170551)
@@ -1,24 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
-url="http://radare.org;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-x86_64/PKGBUILD (from rev 170550, 
valabind/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-04-12 00:39:01 UTC (rev 170551)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.10.0
+pkgrel=2
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2016-02-23 Thread Levente Polyak
Date: Wednesday, February 24, 2016 @ 01:17:17
  Author: anthraxx
Revision: 163249

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

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

---+
 /PKGBUILD |   48 
 community-i686/PKGBUILD   |   24 --
 community-x86_64/PKGBUILD |   24 --
 3 files changed, 48 insertions(+), 48 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-24 00:17:07 UTC (rev 163248)
+++ community-i686/PKGBUILD 2016-02-24 00:17:17 UTC (rev 163249)
@@ -1,24 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.9.2
-pkgrel=3
-pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
-url="http://radare.org;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('204b74a851dc052afeecfb7b98e8b8a4e3ae5e05c7bda3213f38a4f30e144cfc9a1ad9fc5197ae1dd8e2ff931df87cce7810ce37c900e4d8e287abaecef43b9b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-i686/PKGBUILD (from rev 163248, 
valabind/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-24 00:17:17 UTC (rev 163249)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.10.0
+pkgrel=1
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-24 00:17:07 UTC (rev 163248)
+++ community-x86_64/PKGBUILD   2016-02-24 00:17:17 UTC (rev 163249)
@@ -1,24 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.9.2
-pkgrel=3
-pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
-url="http://radare.org;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('204b74a851dc052afeecfb7b98e8b8a4e3ae5e05c7bda3213f38a4f30e144cfc9a1ad9fc5197ae1dd8e2ff931df87cce7810ce37c900e4d8e287abaecef43b9b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-x86_64/PKGBUILD (from rev 163248, 
valabind/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-24 00:17:17 UTC (rev 163249)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.10.0
+pkgrel=1
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2015-09-28 Thread Jan Steffens
Date: Monday, September 28, 2015 @ 21:53:40
  Author: heftig
Revision: 142131

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

Added:
  valabind/repos/community-staging-i686/
  valabind/repos/community-staging-i686/PKGBUILD
(from rev 142130, valabind/trunk/PKGBUILD)
  valabind/repos/community-staging-x86_64/
  valabind/repos/community-staging-x86_64/PKGBUILD
(from rev 142130, valabind/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   24 
 community-staging-x86_64/PKGBUILD |   24 
 2 files changed, 48 insertions(+)

Copied: valabind/repos/community-staging-i686/PKGBUILD (from rev 142130, 
valabind/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-28 19:53:40 UTC (rev 142131)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.9.2
+pkgrel=3
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('204b74a851dc052afeecfb7b98e8b8a4e3ae5e05c7bda3213f38a4f30e144cfc9a1ad9fc5197ae1dd8e2ff931df87cce7810ce37c900e4d8e287abaecef43b9b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-staging-x86_64/PKGBUILD (from rev 142130, 
valabind/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-28 19:53:40 UTC (rev 142131)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.9.2
+pkgrel=3
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('204b74a851dc052afeecfb7b98e8b8a4e3ae5e05c7bda3213f38a4f30e144cfc9a1ad9fc5197ae1dd8e2ff931df87cce7810ce37c900e4d8e287abaecef43b9b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2015-08-02 Thread Levente Polyak
Date: Sunday, August 2, 2015 @ 13:43:00
  Author: anthraxx
Revision: 137690

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

Added:
  valabind/repos/community-i686/
  valabind/repos/community-i686/PKGBUILD
(from rev 137689, valabind/trunk/PKGBUILD)
  valabind/repos/community-x86_64/
  valabind/repos/community-x86_64/PKGBUILD
(from rev 137689, valabind/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   24 
 community-x86_64/PKGBUILD |   24 
 2 files changed, 48 insertions(+)

Copied: valabind/repos/community-i686/PKGBUILD (from rev 137689, 
valabind/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-08-02 11:43:00 UTC (rev 137690)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
+
+pkgname=valabind
+pkgver=0.9.2
+pkgrel=2
+pkgdesc=Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR
+url=http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('204b74a851dc052afeecfb7b98e8b8a4e3ae5e05c7bda3213f38a4f30e144cfc9a1ad9fc5197ae1dd8e2ff931df87cce7810ce37c900e4d8e287abaecef43b9b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-x86_64/PKGBUILD (from rev 137689, 
valabind/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-08-02 11:43:00 UTC (rev 137690)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
+
+pkgname=valabind
+pkgver=0.9.2
+pkgrel=2
+pkgdesc=Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR
+url=http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('204b74a851dc052afeecfb7b98e8b8a4e3ae5e05c7bda3213f38a4f30e144cfc9a1ad9fc5197ae1dd8e2ff931df87cce7810ce37c900e4d8e287abaecef43b9b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et: