[arch-commits] Commit in bc/repos (16 files)
Pierre Schmitz
pierre at archlinux.org
Mon Sep 12 10:03:30 UTC 2011
Date: Monday, September 12, 2011 @ 06:03:30
Author: pierre
Revision: 137896
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
bc/repos/extra-i686/PKGBUILD
(from rev 137895, bc/trunk/PKGBUILD)
bc/repos/extra-i686/bc-1.06-info-dir-entry.patch
(from rev 137895, bc/trunk/bc-1.06-info-dir-entry.patch)
bc/repos/extra-i686/bc.install
(from rev 137895, bc/trunk/bc.install)
bc/repos/extra-i686/build-fix.patch
(from rev 137895, bc/trunk/build-fix.patch)
bc/repos/extra-x86_64/PKGBUILD
(from rev 137895, bc/trunk/PKGBUILD)
bc/repos/extra-x86_64/bc-1.06-info-dir-entry.patch
(from rev 137895, bc/trunk/bc-1.06-info-dir-entry.patch)
bc/repos/extra-x86_64/bc.install
(from rev 137895, bc/trunk/bc.install)
bc/repos/extra-x86_64/build-fix.patch
(from rev 137895, bc/trunk/build-fix.patch)
Deleted:
bc/repos/extra-i686/PKGBUILD
bc/repos/extra-i686/bc-1.06-info-dir-entry.patch
bc/repos/extra-i686/bc.install
bc/repos/extra-i686/build-fix.patch
bc/repos/extra-x86_64/PKGBUILD
bc/repos/extra-x86_64/bc-1.06-info-dir-entry.patch
bc/repos/extra-x86_64/bc.install
bc/repos/extra-x86_64/build-fix.patch
-------------------------------------------+
extra-i686/PKGBUILD | 67 +++++++++++++++-------------
extra-i686/bc-1.06-info-dir-entry.patch | 22 ++++-----
extra-i686/bc.install | 40 ++++++++--------
extra-i686/build-fix.patch | 26 +++++-----
extra-x86_64/PKGBUILD | 67 +++++++++++++++-------------
extra-x86_64/bc-1.06-info-dir-entry.patch | 22 ++++-----
extra-x86_64/bc.install | 40 ++++++++--------
extra-x86_64/build-fix.patch | 26 +++++-----
8 files changed, 160 insertions(+), 150 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2011-09-12 10:02:02 UTC (rev 137895)
+++ extra-i686/PKGBUILD 2011-09-12 10:03:30 UTC (rev 137896)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: dorphell <dorphell at archlinux.org>
-
-pkgname=bc
-pkgver=1.06
-pkgrel=7
-pkgdesc="An arbitrary precision calculator language"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/bc/"
-license=('GPL')
-depends=('readline')
-replaces=('bc-readline')
-conflicts=('bc-readline')
-install=bc.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz
- build-fix.patch bc-1.06-info-dir-entry.patch)
-md5sums=('d44b5dddebd8a7a7309aea6c36fda117' 'fc7ecbd9e55ef04c6d3a495692626116'\
- 'b6fe9869830aca0d34badf810fe0cfb3')
-sha1sums=('c8f258a7355b40a485007c40865480349c157292' '3af67c59e2232b9329ff0c1cf49d1a8a1cf87cd7'\
- 'c15c2a301ba80cf4d3c03a6e164f4e57fa86e4a2')
-
-build() {
- CFLAGS="$CFLAGS -O3"
- cd "${srcdir}/${pkgname}-${pkgver}"
- patch -p1 -i "${srcdir}/build-fix.patch" || return 1
- patch -p1 -i "${srcdir}/bc-1.06-info-dir-entry.patch" || return 1
- ./configure --prefix=/usr --mandir=/usr/share/man \
- --infodir=/usr/share/info --with-readline || return 1
- make LEX="flex -I" || return 1
- make DESTDIR="${pkgdir}" install || return 1
-}
Copied: bc/repos/extra-i686/PKGBUILD (from rev 137895, bc/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-09-12 10:03:30 UTC (rev 137896)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: dorphell <dorphell at archlinux.org>
+
+pkgname=bc
+pkgver=1.06
+pkgrel=8
+pkgdesc="An arbitrary precision calculator language"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/bc/"
+license=('GPL')
+depends=('readline')
+replaces=('bc-readline')
+conflicts=('bc-readline')
+install=bc.install
+source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"
+ 'build-fix.patch' 'bc-1.06-info-dir-entry.patch')
+md5sums=('d44b5dddebd8a7a7309aea6c36fda117'
+ 'fc7ecbd9e55ef04c6d3a495692626116'
+ 'b6fe9869830aca0d34badf810fe0cfb3')
+
+build() {
+ export CFLAGS="${CFLAGS/-O?/-O3}"
+
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -p1 -i "${srcdir}/build-fix.patch"
+ patch -p1 -i "${srcdir}/bc-1.06-info-dir-entry.patch"
+
+ ./configure --prefix=/usr --mandir=/usr/share/man \
+ --infodir=/usr/share/info --with-readline
+ make LEX="flex -I"
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}
Deleted: extra-i686/bc-1.06-info-dir-entry.patch
===================================================================
--- extra-i686/bc-1.06-info-dir-entry.patch 2011-09-12 10:02:02 UTC (rev 137895)
+++ extra-i686/bc-1.06-info-dir-entry.patch 2011-09-12 10:03:30 UTC (rev 137896)
@@ -1,11 +0,0 @@
---- bc-1.06/doc/bc.info.info-dir-entry 2000-10-03 20:36:31.000000000 +0200
-+++ bc-1.06/doc/bc.info 2003-01-06 14:07:40.000000000 +0100
-@@ -1,5 +1,8 @@
- This is bc.info, produced by makeinfo version 4.0 from bc.texi.
-
-+START-INFO-DIR-ENTRY
-+* bc: (bc). Arbritrary precision calculator language.
-+END-INFO-DIR-ENTRY
-
- File: bc.info, Node: Top, Next: Introduction, Prev: (dir), Up: (dir)
-
Copied: bc/repos/extra-i686/bc-1.06-info-dir-entry.patch (from rev 137895, bc/trunk/bc-1.06-info-dir-entry.patch)
===================================================================
--- extra-i686/bc-1.06-info-dir-entry.patch (rev 0)
+++ extra-i686/bc-1.06-info-dir-entry.patch 2011-09-12 10:03:30 UTC (rev 137896)
@@ -0,0 +1,11 @@
+--- bc-1.06/doc/bc.info.info-dir-entry 2000-10-03 20:36:31.000000000 +0200
++++ bc-1.06/doc/bc.info 2003-01-06 14:07:40.000000000 +0100
+@@ -1,5 +1,8 @@
+ This is bc.info, produced by makeinfo version 4.0 from bc.texi.
+
++START-INFO-DIR-ENTRY
++* bc: (bc). Arbritrary precision calculator language.
++END-INFO-DIR-ENTRY
+
+ File: bc.info, Node: Top, Next: Introduction, Prev: (dir), Up: (dir)
+
Deleted: extra-i686/bc.install
===================================================================
--- extra-i686/bc.install 2011-09-12 10:02:02 UTC (rev 137895)
+++ extra-i686/bc.install 2011-09-12 10:03:30 UTC (rev 137896)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(bc.info.gz dc.info.gz)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}
Copied: bc/repos/extra-i686/bc.install (from rev 137895, bc/trunk/bc.install)
===================================================================
--- extra-i686/bc.install (rev 0)
+++ extra-i686/bc.install 2011-09-12 10:03:30 UTC (rev 137896)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(bc.info.gz dc.info.gz)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info $infodir/$file $infodir/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+ done
+}
Deleted: extra-i686/build-fix.patch
===================================================================
--- extra-i686/build-fix.patch 2011-09-12 10:02:02 UTC (rev 137895)
+++ extra-i686/build-fix.patch 2011-09-12 10:03:30 UTC (rev 137896)
@@ -1,13 +0,0 @@
-diff -wbBur bc-1.06/bc/scan.l bc-1.06.my/bc/scan.l
---- bc-1.06/bc/scan.l 2000-09-13 22:25:47 +0400
-+++ bc-1.06.my/bc/scan.l 2006-12-25 12:39:34 +0300
-@@ -143,7 +143,9 @@
-
- /* Definitions for readline access. */
- extern FILE *rl_instream;
-+#if 0
- _PROTOTYPE(char *readline, (char *));
-+#endif
-
- /* rl_input puts upto MAX characters into BUF with the number put in
- BUF placed in *RESULT. If the yy input file is the same as
Copied: bc/repos/extra-i686/build-fix.patch (from rev 137895, bc/trunk/build-fix.patch)
===================================================================
--- extra-i686/build-fix.patch (rev 0)
+++ extra-i686/build-fix.patch 2011-09-12 10:03:30 UTC (rev 137896)
@@ -0,0 +1,13 @@
+diff -wbBur bc-1.06/bc/scan.l bc-1.06.my/bc/scan.l
+--- bc-1.06/bc/scan.l 2000-09-13 22:25:47 +0400
++++ bc-1.06.my/bc/scan.l 2006-12-25 12:39:34 +0300
+@@ -143,7 +143,9 @@
+
+ /* Definitions for readline access. */
+ extern FILE *rl_instream;
++#if 0
+ _PROTOTYPE(char *readline, (char *));
++#endif
+
+ /* rl_input puts upto MAX characters into BUF with the number put in
+ BUF placed in *RESULT. If the yy input file is the same as
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2011-09-12 10:02:02 UTC (rev 137895)
+++ extra-x86_64/PKGBUILD 2011-09-12 10:03:30 UTC (rev 137896)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: dorphell <dorphell at archlinux.org>
-
-pkgname=bc
-pkgver=1.06
-pkgrel=7
-pkgdesc="An arbitrary precision calculator language"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/bc/"
-license=('GPL')
-depends=('readline')
-replaces=('bc-readline')
-conflicts=('bc-readline')
-install=bc.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz
- build-fix.patch bc-1.06-info-dir-entry.patch)
-md5sums=('d44b5dddebd8a7a7309aea6c36fda117' 'fc7ecbd9e55ef04c6d3a495692626116'\
- 'b6fe9869830aca0d34badf810fe0cfb3')
-sha1sums=('c8f258a7355b40a485007c40865480349c157292' '3af67c59e2232b9329ff0c1cf49d1a8a1cf87cd7'\
- 'c15c2a301ba80cf4d3c03a6e164f4e57fa86e4a2')
-
-build() {
- CFLAGS="$CFLAGS -O3"
- cd "${srcdir}/${pkgname}-${pkgver}"
- patch -p1 -i "${srcdir}/build-fix.patch" || return 1
- patch -p1 -i "${srcdir}/bc-1.06-info-dir-entry.patch" || return 1
- ./configure --prefix=/usr --mandir=/usr/share/man \
- --infodir=/usr/share/info --with-readline || return 1
- make LEX="flex -I" || return 1
- make DESTDIR="${pkgdir}" install || return 1
-}
Copied: bc/repos/extra-x86_64/PKGBUILD (from rev 137895, bc/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2011-09-12 10:03:30 UTC (rev 137896)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: dorphell <dorphell at archlinux.org>
+
+pkgname=bc
+pkgver=1.06
+pkgrel=8
+pkgdesc="An arbitrary precision calculator language"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/bc/"
+license=('GPL')
+depends=('readline')
+replaces=('bc-readline')
+conflicts=('bc-readline')
+install=bc.install
+source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"
+ 'build-fix.patch' 'bc-1.06-info-dir-entry.patch')
+md5sums=('d44b5dddebd8a7a7309aea6c36fda117'
+ 'fc7ecbd9e55ef04c6d3a495692626116'
+ 'b6fe9869830aca0d34badf810fe0cfb3')
+
+build() {
+ export CFLAGS="${CFLAGS/-O?/-O3}"
+
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -p1 -i "${srcdir}/build-fix.patch"
+ patch -p1 -i "${srcdir}/bc-1.06-info-dir-entry.patch"
+
+ ./configure --prefix=/usr --mandir=/usr/share/man \
+ --infodir=/usr/share/info --with-readline
+ make LEX="flex -I"
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}
Deleted: extra-x86_64/bc-1.06-info-dir-entry.patch
===================================================================
--- extra-x86_64/bc-1.06-info-dir-entry.patch 2011-09-12 10:02:02 UTC (rev 137895)
+++ extra-x86_64/bc-1.06-info-dir-entry.patch 2011-09-12 10:03:30 UTC (rev 137896)
@@ -1,11 +0,0 @@
---- bc-1.06/doc/bc.info.info-dir-entry 2000-10-03 20:36:31.000000000 +0200
-+++ bc-1.06/doc/bc.info 2003-01-06 14:07:40.000000000 +0100
-@@ -1,5 +1,8 @@
- This is bc.info, produced by makeinfo version 4.0 from bc.texi.
-
-+START-INFO-DIR-ENTRY
-+* bc: (bc). Arbritrary precision calculator language.
-+END-INFO-DIR-ENTRY
-
- File: bc.info, Node: Top, Next: Introduction, Prev: (dir), Up: (dir)
-
Copied: bc/repos/extra-x86_64/bc-1.06-info-dir-entry.patch (from rev 137895, bc/trunk/bc-1.06-info-dir-entry.patch)
===================================================================
--- extra-x86_64/bc-1.06-info-dir-entry.patch (rev 0)
+++ extra-x86_64/bc-1.06-info-dir-entry.patch 2011-09-12 10:03:30 UTC (rev 137896)
@@ -0,0 +1,11 @@
+--- bc-1.06/doc/bc.info.info-dir-entry 2000-10-03 20:36:31.000000000 +0200
++++ bc-1.06/doc/bc.info 2003-01-06 14:07:40.000000000 +0100
+@@ -1,5 +1,8 @@
+ This is bc.info, produced by makeinfo version 4.0 from bc.texi.
+
++START-INFO-DIR-ENTRY
++* bc: (bc). Arbritrary precision calculator language.
++END-INFO-DIR-ENTRY
+
+ File: bc.info, Node: Top, Next: Introduction, Prev: (dir), Up: (dir)
+
Deleted: extra-x86_64/bc.install
===================================================================
--- extra-x86_64/bc.install 2011-09-12 10:02:02 UTC (rev 137895)
+++ extra-x86_64/bc.install 2011-09-12 10:03:30 UTC (rev 137896)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(bc.info.gz dc.info.gz)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}
Copied: bc/repos/extra-x86_64/bc.install (from rev 137895, bc/trunk/bc.install)
===================================================================
--- extra-x86_64/bc.install (rev 0)
+++ extra-x86_64/bc.install 2011-09-12 10:03:30 UTC (rev 137896)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(bc.info.gz dc.info.gz)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info $infodir/$file $infodir/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+ done
+}
Deleted: extra-x86_64/build-fix.patch
===================================================================
--- extra-x86_64/build-fix.patch 2011-09-12 10:02:02 UTC (rev 137895)
+++ extra-x86_64/build-fix.patch 2011-09-12 10:03:30 UTC (rev 137896)
@@ -1,13 +0,0 @@
-diff -wbBur bc-1.06/bc/scan.l bc-1.06.my/bc/scan.l
---- bc-1.06/bc/scan.l 2000-09-13 22:25:47 +0400
-+++ bc-1.06.my/bc/scan.l 2006-12-25 12:39:34 +0300
-@@ -143,7 +143,9 @@
-
- /* Definitions for readline access. */
- extern FILE *rl_instream;
-+#if 0
- _PROTOTYPE(char *readline, (char *));
-+#endif
-
- /* rl_input puts upto MAX characters into BUF with the number put in
- BUF placed in *RESULT. If the yy input file is the same as
Copied: bc/repos/extra-x86_64/build-fix.patch (from rev 137895, bc/trunk/build-fix.patch)
===================================================================
--- extra-x86_64/build-fix.patch (rev 0)
+++ extra-x86_64/build-fix.patch 2011-09-12 10:03:30 UTC (rev 137896)
@@ -0,0 +1,13 @@
+diff -wbBur bc-1.06/bc/scan.l bc-1.06.my/bc/scan.l
+--- bc-1.06/bc/scan.l 2000-09-13 22:25:47 +0400
++++ bc-1.06.my/bc/scan.l 2006-12-25 12:39:34 +0300
+@@ -143,7 +143,9 @@
+
+ /* Definitions for readline access. */
+ extern FILE *rl_instream;
++#if 0
+ _PROTOTYPE(char *readline, (char *));
++#endif
+
+ /* rl_input puts upto MAX characters into BUF with the number put in
+ BUF placed in *RESULT. If the yy input file is the same as
More information about the arch-commits
mailing list