[arch-commits] Commit in flex/repos (8 files)

Lukas Fleischer lfleischer at archlinux.org
Sun May 7 05:41:28 UTC 2017


    Date: Sunday, May 7, 2017 @ 05:41:27
  Author: lfleischer
Revision: 295403

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

Added:
  flex/repos/core-i686/PKGBUILD
    (from rev 295402, flex/trunk/PKGBUILD)
  flex/repos/core-i686/flex-2.6.0-comment-style.patch
    (from rev 295402, flex/trunk/flex-2.6.0-comment-style.patch)
  flex/repos/core-x86_64/PKGBUILD
    (from rev 295402, flex/trunk/PKGBUILD)
  flex/repos/core-x86_64/flex-2.6.0-comment-style.patch
    (from rev 295402, flex/trunk/flex-2.6.0-comment-style.patch)
Deleted:
  flex/repos/core-i686/PKGBUILD
  flex/repos/core-i686/flex-2.6.0-comment-style.patch
  flex/repos/core-x86_64/PKGBUILD
  flex/repos/core-x86_64/flex-2.6.0-comment-style.patch

--------------------------------------------+
 /PKGBUILD                                  |   76 +++++++++++++++++++++++++++
 /flex-2.6.0-comment-style.patch            |   44 +++++++++++++++
 core-i686/PKGBUILD                         |   49 -----------------
 core-i686/flex-2.6.0-comment-style.patch   |   22 -------
 core-x86_64/PKGBUILD                       |   49 -----------------
 core-x86_64/flex-2.6.0-comment-style.patch |   22 -------
 6 files changed, 120 insertions(+), 142 deletions(-)

Deleted: core-i686/PKGBUILD
===================================================================
--- core-i686/PKGBUILD	2017-05-07 05:41:20 UTC (rev 295402)
+++ core-i686/PKGBUILD	2017-05-07 05:41:27 UTC (rev 295403)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae <allan at archlinux.org>
-# Contributor: judd <jvinet at zeroflux.org>
-
-pkgname=flex
-pkgver=2.6.3
-pkgrel=2
-pkgdesc="A tool for generating text-scanning programs"
-arch=('i686' 'x86_64')
-url="https://github.com/westes/flex"
-license=('custom')
-groups=('base-devel')
-depends=('glibc' 'm4' 'sh')
-# the released man pages are screwy...
-makedepends=('help2man')
-source=(https://github.com/westes/flex/releases/download/v$pkgver/flex-$pkgver.tar.gz
-	yywrap-fix.diff::https://github.com/westes/flex/commit/f5d87f1a26f4a5c3402497008ae10e9a1345d327.diff)
-md5sums=('a5f65570cd9107ec8a8ec88f17b31bb1'
-         '7d6a72fad1b12922996964d80318ac3a')
-
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i $srcdir/yywrap-fix.diff
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  
-  # cxx_restart fails - https://github.com/westes/flex/issues/98
-  make -k check || true
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-  ln -s flex ${pkgdir}/usr/bin/lex
-
-  install -Dm644 COPYING \
-  	$pkgdir/usr/share/licenses/$pkgname/license.txt
-}
-

Copied: flex/repos/core-i686/PKGBUILD (from rev 295402, flex/trunk/PKGBUILD)
===================================================================
--- core-i686/PKGBUILD	                        (rev 0)
+++ core-i686/PKGBUILD	2017-05-07 05:41:27 UTC (rev 295403)
@@ -0,0 +1,38 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=flex
+pkgver=2.6.4
+pkgrel=1
+pkgdesc="A tool for generating text-scanning programs"
+arch=('i686' 'x86_64')
+url="https://github.com/westes/flex"
+license=('custom')
+groups=('base-devel')
+depends=('glibc' 'm4' 'sh')
+makedepends=('help2man')
+source=("https://github.com/westes/flex/releases/download/v$pkgver/flex-$pkgver.tar.gz")
+md5sums=('2882e3179748cc9f9c23ec593d6adc8d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  # cxx_restart fails - https://github.com/westes/flex/issues/98
+  make -k check || true
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  ln -s flex "${pkgdir}/usr/bin/lex"
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}

Deleted: core-i686/flex-2.6.0-comment-style.patch
===================================================================
--- core-i686/flex-2.6.0-comment-style.patch	2017-05-07 05:41:20 UTC (rev 295402)
+++ core-i686/flex-2.6.0-comment-style.patch	2017-05-07 05:41:27 UTC (rev 295403)
@@ -1,22 +0,0 @@
-From 07d89829cce4527c7614a34642d4b2c2ef5d6005 Mon Sep 17 00:00:00 2001
-From: Will Estes <westes575 at gmail.com>
-Date: Fri, 11 Dec 2015 09:45:14 -0500
-Subject: [PATCH] Commented in C style in skeleton; fixed sf#195
-
----
- src/flex.skl | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/flex.skl b/src/flex.skl
-index b63c8c8..40287b6 100644
---- a/src/flex.skl
-+++ b/src/flex.skl
-@@ -2350,7 +2350,7 @@ void yyFlexLexer::yyensure_buffer_stack(void)
- 		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
- 		 * immediate realloc on the next call.
-          */
--		num_to_alloc = 1; // After all that talk, this was set to 1 anyways...
-+      num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
- 		YY_G(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
- 								(num_to_alloc * sizeof(struct yy_buffer_state*)
- 								M4_YY_CALL_LAST_ARG);

Copied: flex/repos/core-i686/flex-2.6.0-comment-style.patch (from rev 295402, flex/trunk/flex-2.6.0-comment-style.patch)
===================================================================
--- core-i686/flex-2.6.0-comment-style.patch	                        (rev 0)
+++ core-i686/flex-2.6.0-comment-style.patch	2017-05-07 05:41:27 UTC (rev 295403)
@@ -0,0 +1,22 @@
+From 07d89829cce4527c7614a34642d4b2c2ef5d6005 Mon Sep 17 00:00:00 2001
+From: Will Estes <westes575 at gmail.com>
+Date: Fri, 11 Dec 2015 09:45:14 -0500
+Subject: [PATCH] Commented in C style in skeleton; fixed sf#195
+
+---
+ src/flex.skl | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/flex.skl b/src/flex.skl
+index b63c8c8..40287b6 100644
+--- a/src/flex.skl
++++ b/src/flex.skl
+@@ -2350,7 +2350,7 @@ void yyFlexLexer::yyensure_buffer_stack(void)
+ 		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
+ 		 * immediate realloc on the next call.
+          */
+-		num_to_alloc = 1; // After all that talk, this was set to 1 anyways...
++      num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
+ 		YY_G(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
+ 								(num_to_alloc * sizeof(struct yy_buffer_state*)
+ 								M4_YY_CALL_LAST_ARG);

Deleted: core-x86_64/PKGBUILD
===================================================================
--- core-x86_64/PKGBUILD	2017-05-07 05:41:20 UTC (rev 295402)
+++ core-x86_64/PKGBUILD	2017-05-07 05:41:27 UTC (rev 295403)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae <allan at archlinux.org>
-# Contributor: judd <jvinet at zeroflux.org>
-
-pkgname=flex
-pkgver=2.6.3
-pkgrel=2
-pkgdesc="A tool for generating text-scanning programs"
-arch=('i686' 'x86_64')
-url="https://github.com/westes/flex"
-license=('custom')
-groups=('base-devel')
-depends=('glibc' 'm4' 'sh')
-# the released man pages are screwy...
-makedepends=('help2man')
-source=(https://github.com/westes/flex/releases/download/v$pkgver/flex-$pkgver.tar.gz
-	yywrap-fix.diff::https://github.com/westes/flex/commit/f5d87f1a26f4a5c3402497008ae10e9a1345d327.diff)
-md5sums=('a5f65570cd9107ec8a8ec88f17b31bb1'
-         '7d6a72fad1b12922996964d80318ac3a')
-
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i $srcdir/yywrap-fix.diff
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  
-  # cxx_restart fails - https://github.com/westes/flex/issues/98
-  make -k check || true
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-  ln -s flex ${pkgdir}/usr/bin/lex
-
-  install -Dm644 COPYING \
-  	$pkgdir/usr/share/licenses/$pkgname/license.txt
-}
-

Copied: flex/repos/core-x86_64/PKGBUILD (from rev 295402, flex/trunk/PKGBUILD)
===================================================================
--- core-x86_64/PKGBUILD	                        (rev 0)
+++ core-x86_64/PKGBUILD	2017-05-07 05:41:27 UTC (rev 295403)
@@ -0,0 +1,38 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=flex
+pkgver=2.6.4
+pkgrel=1
+pkgdesc="A tool for generating text-scanning programs"
+arch=('i686' 'x86_64')
+url="https://github.com/westes/flex"
+license=('custom')
+groups=('base-devel')
+depends=('glibc' 'm4' 'sh')
+makedepends=('help2man')
+source=("https://github.com/westes/flex/releases/download/v$pkgver/flex-$pkgver.tar.gz")
+md5sums=('2882e3179748cc9f9c23ec593d6adc8d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  # cxx_restart fails - https://github.com/westes/flex/issues/98
+  make -k check || true
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  ln -s flex "${pkgdir}/usr/bin/lex"
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}

Deleted: core-x86_64/flex-2.6.0-comment-style.patch
===================================================================
--- core-x86_64/flex-2.6.0-comment-style.patch	2017-05-07 05:41:20 UTC (rev 295402)
+++ core-x86_64/flex-2.6.0-comment-style.patch	2017-05-07 05:41:27 UTC (rev 295403)
@@ -1,22 +0,0 @@
-From 07d89829cce4527c7614a34642d4b2c2ef5d6005 Mon Sep 17 00:00:00 2001
-From: Will Estes <westes575 at gmail.com>
-Date: Fri, 11 Dec 2015 09:45:14 -0500
-Subject: [PATCH] Commented in C style in skeleton; fixed sf#195
-
----
- src/flex.skl | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/flex.skl b/src/flex.skl
-index b63c8c8..40287b6 100644
---- a/src/flex.skl
-+++ b/src/flex.skl
-@@ -2350,7 +2350,7 @@ void yyFlexLexer::yyensure_buffer_stack(void)
- 		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
- 		 * immediate realloc on the next call.
-          */
--		num_to_alloc = 1; // After all that talk, this was set to 1 anyways...
-+      num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
- 		YY_G(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
- 								(num_to_alloc * sizeof(struct yy_buffer_state*)
- 								M4_YY_CALL_LAST_ARG);

Copied: flex/repos/core-x86_64/flex-2.6.0-comment-style.patch (from rev 295402, flex/trunk/flex-2.6.0-comment-style.patch)
===================================================================
--- core-x86_64/flex-2.6.0-comment-style.patch	                        (rev 0)
+++ core-x86_64/flex-2.6.0-comment-style.patch	2017-05-07 05:41:27 UTC (rev 295403)
@@ -0,0 +1,22 @@
+From 07d89829cce4527c7614a34642d4b2c2ef5d6005 Mon Sep 17 00:00:00 2001
+From: Will Estes <westes575 at gmail.com>
+Date: Fri, 11 Dec 2015 09:45:14 -0500
+Subject: [PATCH] Commented in C style in skeleton; fixed sf#195
+
+---
+ src/flex.skl | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/flex.skl b/src/flex.skl
+index b63c8c8..40287b6 100644
+--- a/src/flex.skl
++++ b/src/flex.skl
+@@ -2350,7 +2350,7 @@ void yyFlexLexer::yyensure_buffer_stack(void)
+ 		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
+ 		 * immediate realloc on the next call.
+          */
+-		num_to_alloc = 1; // After all that talk, this was set to 1 anyways...
++      num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
+ 		YY_G(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
+ 								(num_to_alloc * sizeof(struct yy_buffer_state*)
+ 								M4_YY_CALL_LAST_ARG);



More information about the arch-commits mailing list