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

Alexander Rødseth arodseth at nymeria.archlinux.org
Tue Apr 29 12:07:53 UTC 2014


    Date: Tuesday, April 29, 2014 @ 14:07:53
  Author: arodseth
Revision: 110417

Cleanup

Deleted:
  nsgenbind/repos/community-i686/PKGBUILD
  nsgenbind/repos/community-i686/bison.patch
  nsgenbind/repos/community-x86_64/PKGBUILD
  nsgenbind/repos/community-x86_64/bison.patch

------------------------------+
 community-i686/PKGBUILD      |   31 -------------------------
 community-i686/bison.patch   |   49 -----------------------------------------
 community-x86_64/PKGBUILD    |   31 -------------------------
 community-x86_64/bison.patch |   49 -----------------------------------------
 4 files changed, 160 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-04-29 12:04:37 UTC (rev 110416)
+++ community-i686/PKGBUILD	2014-04-29 12:07:53 UTC (rev 110417)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: Marian Buschsieweke <mari.hahn at uni-muenster.de>
-
-pkgname=nsgenbind
-pkgver=0.0.1
-pkgrel=1
-pkgdesc='NetSurf javascript binding generator'
-arch=('x86_64' 'i686')
-url='http://www.netsurf-browser.org/'
-license=('GPL')
-makedepends=('netsurf-buildsystem')
-source=("http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz"
-        'bison.patch')
-sha256sums=('05eb57a0b6de8ae094826e39620cee9ef9b672e79f755e7810ca98c0a3989552'
-            '57f70fb9ea143cbbe5a2c2cbd0a2bfaa32a22c6df84ecaf343a2d04ed86b5a33')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  patch -p1 -i ../bison.patch
-  make PREFIX=/usr
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make install PREFIX=/usr DESTDIR="$pkgdir"
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: community-i686/bison.patch
===================================================================
--- community-i686/bison.patch	2014-04-29 12:04:37 UTC (rev 110416)
+++ community-i686/bison.patch	2014-04-29 12:07:53 UTC (rev 110417)
@@ -1,49 +0,0 @@
-From 51bd18034c510a6d4711823e08b69af2f7aa063e Mon Sep 17 00:00:00 2001
-From: Vincent Sanders <vincent.sanders at collabora.co.uk>
-Date: Fri, 03 May 2013 10:39:49 +0000
-Subject: fix building teh lexers with bison versions at and after 2.6
-
----
-diff --git a/src/nsgenbind-lexer.l b/src/nsgenbind-lexer.l
-index b257c83..8189a72 100644
---- a/src/nsgenbind-lexer.l
-+++ b/src/nsgenbind-lexer.l
-@@ -19,6 +19,16 @@
-     yylloc->first_column = yylloc->last_column + 1; \
-     yylloc->last_column += yyleng;
- 
-+
-+/* Ensure compatability with bison 2.6 and later */
-+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED && defined NSGENBIND_STYPE_IS_DECLARED
-+#define YYSTYPE NSGENBIND_STYPE
-+#endif
-+
-+#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED && defined NSGENBIND_LTYPE_IS_DECLARED
-+#define YYLTYPE NSGENBIND_LTYPE
-+#endif
-+
- %}
- 
- /* lexer options */
-diff --git a/src/webidl-lexer.l b/src/webidl-lexer.l
-index 5369d99..74b9bb8 100644
---- a/src/webidl-lexer.l
-+++ b/src/webidl-lexer.l
-@@ -27,6 +27,15 @@
-     yylloc->first_column = yylloc->last_column + 1; \
-     yylloc->last_column += yyleng;
- 
-+/* Ensure compatability with bison 2.6 and later */
-+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED && defined WEBIDL_STYPE_IS_DECLARED
-+#define YYSTYPE WEBIDL_STYPE
-+#endif
-+
-+#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED && defined WEBIDL_LTYPE_IS_DECLARED
-+#define YYLTYPE WEBIDL_LTYPE
-+#endif
-+
- %}
- 
- 
---
-cgit v0.9.0.3-65-g4555

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-04-29 12:04:37 UTC (rev 110416)
+++ community-x86_64/PKGBUILD	2014-04-29 12:07:53 UTC (rev 110417)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: Marian Buschsieweke <mari.hahn at uni-muenster.de>
-
-pkgname=nsgenbind
-pkgver=0.0.1
-pkgrel=1
-pkgdesc='NetSurf javascript binding generator'
-arch=('x86_64' 'i686')
-url='http://www.netsurf-browser.org/'
-license=('GPL')
-makedepends=('netsurf-buildsystem')
-source=("http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz"
-        'bison.patch')
-sha256sums=('05eb57a0b6de8ae094826e39620cee9ef9b672e79f755e7810ca98c0a3989552'
-            '57f70fb9ea143cbbe5a2c2cbd0a2bfaa32a22c6df84ecaf343a2d04ed86b5a33')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  patch -p1 -i ../bison.patch
-  make PREFIX=/usr
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make install PREFIX=/usr DESTDIR="$pkgdir"
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/bison.patch
===================================================================
--- community-x86_64/bison.patch	2014-04-29 12:04:37 UTC (rev 110416)
+++ community-x86_64/bison.patch	2014-04-29 12:07:53 UTC (rev 110417)
@@ -1,49 +0,0 @@
-From 51bd18034c510a6d4711823e08b69af2f7aa063e Mon Sep 17 00:00:00 2001
-From: Vincent Sanders <vincent.sanders at collabora.co.uk>
-Date: Fri, 03 May 2013 10:39:49 +0000
-Subject: fix building teh lexers with bison versions at and after 2.6
-
----
-diff --git a/src/nsgenbind-lexer.l b/src/nsgenbind-lexer.l
-index b257c83..8189a72 100644
---- a/src/nsgenbind-lexer.l
-+++ b/src/nsgenbind-lexer.l
-@@ -19,6 +19,16 @@
-     yylloc->first_column = yylloc->last_column + 1; \
-     yylloc->last_column += yyleng;
- 
-+
-+/* Ensure compatability with bison 2.6 and later */
-+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED && defined NSGENBIND_STYPE_IS_DECLARED
-+#define YYSTYPE NSGENBIND_STYPE
-+#endif
-+
-+#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED && defined NSGENBIND_LTYPE_IS_DECLARED
-+#define YYLTYPE NSGENBIND_LTYPE
-+#endif
-+
- %}
- 
- /* lexer options */
-diff --git a/src/webidl-lexer.l b/src/webidl-lexer.l
-index 5369d99..74b9bb8 100644
---- a/src/webidl-lexer.l
-+++ b/src/webidl-lexer.l
-@@ -27,6 +27,15 @@
-     yylloc->first_column = yylloc->last_column + 1; \
-     yylloc->last_column += yyleng;
- 
-+/* Ensure compatability with bison 2.6 and later */
-+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED && defined WEBIDL_STYPE_IS_DECLARED
-+#define YYSTYPE WEBIDL_STYPE
-+#endif
-+
-+#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED && defined WEBIDL_LTYPE_IS_DECLARED
-+#define YYLTYPE WEBIDL_LTYPE
-+#endif
-+
- %}
- 
- 
---
-cgit v0.9.0.3-65-g4555




More information about the arch-commits mailing list