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

Pierre Schmitz pierre at archlinux.org
Sun Sep 11 21:00:11 UTC 2011


    Date: Sunday, September 11, 2011 @ 17:00:11
  Author: pierre
Revision: 137828

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

Added:
  fcgi/repos/extra-i686/PKGBUILD
    (from rev 137827, fcgi/trunk/PKGBUILD)
  fcgi/repos/extra-i686/gcc44-fix-include.patch
    (from rev 137827, fcgi/trunk/gcc44-fix-include.patch)
  fcgi/repos/extra-x86_64/PKGBUILD
    (from rev 137827, fcgi/trunk/PKGBUILD)
  fcgi/repos/extra-x86_64/gcc44-fix-include.patch
    (from rev 137827, fcgi/trunk/gcc44-fix-include.patch)
Deleted:
  fcgi/repos/extra-i686/PKGBUILD
  fcgi/repos/extra-i686/gcc44-fix-include.patch
  fcgi/repos/extra-x86_64/PKGBUILD
  fcgi/repos/extra-x86_64/gcc44-fix-include.patch

--------------------------------------+
 extra-i686/PKGBUILD                  |   66 +++++++++++++++++----------------
 extra-i686/gcc44-fix-include.patch   |   34 ++++++++---------
 extra-x86_64/PKGBUILD                |   66 +++++++++++++++++----------------
 extra-x86_64/gcc44-fix-include.patch |   34 ++++++++---------
 4 files changed, 104 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2011-09-11 20:59:21 UTC (rev 137827)
+++ extra-i686/PKGBUILD	2011-09-11 21:00:11 UTC (rev 137828)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: tobias <tobias at justdreams.de>
-# Modified by: eliott <eliott at cactuswax.net>
-# Original by Benjamin Andresen, klapmuetz [at] gmail [dot] com
-
-pkgname=fcgi
-pkgver=2.4.0
-pkgrel=6
-depends=('gcc-libs')
-pkgdesc="FASTCgi(fcgi) islanguage independent, high performant extension to CGI"
-arch=(i686 x86_64)
-license=('custom')
-options=('!libtool' '!makeflags')
-url="http://www.fastcgi.com"
-source=(http://www.fastcgi.com/dist/${pkgname}-${pkgver}.tar.gz
-        gcc44-fix-include.patch)
-md5sums=('d15060a813b91383a9f3c66faf84867e'
-         'a8028462163755f3ce457a5c641f237b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/gcc44-fix-include.patch"
-  libtoolize --force
-  aclocal
-  autoconf
-  automake --foreign
-  ./configure --prefix=/usr
-  make
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE.TERMS "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: fcgi/repos/extra-i686/PKGBUILD (from rev 137827, fcgi/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2011-09-11 21:00:11 UTC (rev 137828)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: tobias <tobias at justdreams.de>
+# Modified by: eliott <eliott at cactuswax.net>
+# Original by Benjamin Andresen, klapmuetz [at] gmail [dot] com
+
+pkgname=fcgi
+pkgver=2.4.0
+pkgrel=7
+depends=('gcc-libs')
+pkgdesc="FASTCgi(fcgi) islanguage independent, high performant extension to CGI"
+arch=('i686' 'x86_64')
+license=('custom')
+options=('!libtool' '!makeflags')
+url="http://www.fastcgi.com"
+source=("http://www.fastcgi.com/dist/${pkgname}-${pkgver}.tar.gz"
+        'gcc44-fix-include.patch')
+md5sums=('d15060a813b91383a9f3c66faf84867e'
+         'a8028462163755f3ce457a5c641f237b')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/gcc44-fix-include.patch"
+  libtoolize --force
+  aclocal
+  autoconf
+  automake --foreign
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE.TERMS "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-i686/gcc44-fix-include.patch
===================================================================
--- extra-i686/gcc44-fix-include.patch	2011-09-11 20:59:21 UTC (rev 137827)
+++ extra-i686/gcc44-fix-include.patch	2011-09-11 21:00:11 UTC (rev 137828)
@@ -1,17 +0,0 @@
-Author: Tatsuki Sugiura <sugi at nemui.org>
-Origin: vendor, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504963
-Bug-Debian: http://bugs.debian.org/504963
-Forwarded: no
-Last-Update: 2010-02-08
-
-Index: libfcgi/libfcgi/fcgio.cpp
-===================================================================
---- libfcgi.orig/libfcgi/fcgio.cpp  2010-01-23 19:13:53.000000000 +0900
-+++ libfcgi/libfcgi/fcgio.cpp 2010-01-23 19:13:55.000000000 +0900
-@@ -22,6 +22,7 @@
- #define DLLAPI  __declspec(dllexport)
- #endif
- 
-+#include <cstdio>
- #include <limits.h>
- #include "fcgio.h"

Copied: fcgi/repos/extra-i686/gcc44-fix-include.patch (from rev 137827, fcgi/trunk/gcc44-fix-include.patch)
===================================================================
--- extra-i686/gcc44-fix-include.patch	                        (rev 0)
+++ extra-i686/gcc44-fix-include.patch	2011-09-11 21:00:11 UTC (rev 137828)
@@ -0,0 +1,17 @@
+Author: Tatsuki Sugiura <sugi at nemui.org>
+Origin: vendor, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504963
+Bug-Debian: http://bugs.debian.org/504963
+Forwarded: no
+Last-Update: 2010-02-08
+
+Index: libfcgi/libfcgi/fcgio.cpp
+===================================================================
+--- libfcgi.orig/libfcgi/fcgio.cpp  2010-01-23 19:13:53.000000000 +0900
++++ libfcgi/libfcgi/fcgio.cpp 2010-01-23 19:13:55.000000000 +0900
+@@ -22,6 +22,7 @@
+ #define DLLAPI  __declspec(dllexport)
+ #endif
+ 
++#include <cstdio>
+ #include <limits.h>
+ #include "fcgio.h"

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2011-09-11 20:59:21 UTC (rev 137827)
+++ extra-x86_64/PKGBUILD	2011-09-11 21:00:11 UTC (rev 137828)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: tobias <tobias at justdreams.de>
-# Modified by: eliott <eliott at cactuswax.net>
-# Original by Benjamin Andresen, klapmuetz [at] gmail [dot] com
-
-pkgname=fcgi
-pkgver=2.4.0
-pkgrel=6
-depends=('gcc-libs')
-pkgdesc="FASTCgi(fcgi) islanguage independent, high performant extension to CGI"
-arch=(i686 x86_64)
-license=('custom')
-options=('!libtool' '!makeflags')
-url="http://www.fastcgi.com"
-source=(http://www.fastcgi.com/dist/${pkgname}-${pkgver}.tar.gz
-        gcc44-fix-include.patch)
-md5sums=('d15060a813b91383a9f3c66faf84867e'
-         'a8028462163755f3ce457a5c641f237b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/gcc44-fix-include.patch"
-  libtoolize --force
-  aclocal
-  autoconf
-  automake --foreign
-  ./configure --prefix=/usr
-  make
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE.TERMS "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: fcgi/repos/extra-x86_64/PKGBUILD (from rev 137827, fcgi/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2011-09-11 21:00:11 UTC (rev 137828)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: tobias <tobias at justdreams.de>
+# Modified by: eliott <eliott at cactuswax.net>
+# Original by Benjamin Andresen, klapmuetz [at] gmail [dot] com
+
+pkgname=fcgi
+pkgver=2.4.0
+pkgrel=7
+depends=('gcc-libs')
+pkgdesc="FASTCgi(fcgi) islanguage independent, high performant extension to CGI"
+arch=('i686' 'x86_64')
+license=('custom')
+options=('!libtool' '!makeflags')
+url="http://www.fastcgi.com"
+source=("http://www.fastcgi.com/dist/${pkgname}-${pkgver}.tar.gz"
+        'gcc44-fix-include.patch')
+md5sums=('d15060a813b91383a9f3c66faf84867e'
+         'a8028462163755f3ce457a5c641f237b')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/gcc44-fix-include.patch"
+  libtoolize --force
+  aclocal
+  autoconf
+  automake --foreign
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE.TERMS "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-x86_64/gcc44-fix-include.patch
===================================================================
--- extra-x86_64/gcc44-fix-include.patch	2011-09-11 20:59:21 UTC (rev 137827)
+++ extra-x86_64/gcc44-fix-include.patch	2011-09-11 21:00:11 UTC (rev 137828)
@@ -1,17 +0,0 @@
-Author: Tatsuki Sugiura <sugi at nemui.org>
-Origin: vendor, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504963
-Bug-Debian: http://bugs.debian.org/504963
-Forwarded: no
-Last-Update: 2010-02-08
-
-Index: libfcgi/libfcgi/fcgio.cpp
-===================================================================
---- libfcgi.orig/libfcgi/fcgio.cpp  2010-01-23 19:13:53.000000000 +0900
-+++ libfcgi/libfcgi/fcgio.cpp 2010-01-23 19:13:55.000000000 +0900
-@@ -22,6 +22,7 @@
- #define DLLAPI  __declspec(dllexport)
- #endif
- 
-+#include <cstdio>
- #include <limits.h>
- #include "fcgio.h"

Copied: fcgi/repos/extra-x86_64/gcc44-fix-include.patch (from rev 137827, fcgi/trunk/gcc44-fix-include.patch)
===================================================================
--- extra-x86_64/gcc44-fix-include.patch	                        (rev 0)
+++ extra-x86_64/gcc44-fix-include.patch	2011-09-11 21:00:11 UTC (rev 137828)
@@ -0,0 +1,17 @@
+Author: Tatsuki Sugiura <sugi at nemui.org>
+Origin: vendor, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504963
+Bug-Debian: http://bugs.debian.org/504963
+Forwarded: no
+Last-Update: 2010-02-08
+
+Index: libfcgi/libfcgi/fcgio.cpp
+===================================================================
+--- libfcgi.orig/libfcgi/fcgio.cpp  2010-01-23 19:13:53.000000000 +0900
++++ libfcgi/libfcgi/fcgio.cpp 2010-01-23 19:13:55.000000000 +0900
+@@ -22,6 +22,7 @@
+ #define DLLAPI  __declspec(dllexport)
+ #endif
+ 
++#include <cstdio>
+ #include <limits.h>
+ #include "fcgio.h"




More information about the arch-commits mailing list