[arch-commits] Commit in gdb/repos (6 files)

Allan McRae allan at nymeria.archlinux.org
Thu Feb 6 13:36:44 UTC 2014


    Date: Thursday, February 6, 2014 @ 14:36:44
  Author: allan
Revision: 205509

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

Added:
  gdb/repos/testing-i686/PKGBUILD
    (from rev 205508, gdb/trunk/PKGBUILD)
  gdb/repos/testing-i686/gdb.install
    (from rev 205508, gdb/trunk/gdb.install)
  gdb/repos/testing-x86_64/PKGBUILD
    (from rev 205508, gdb/trunk/PKGBUILD)
  gdb/repos/testing-x86_64/gdb.install
    (from rev 205508, gdb/trunk/gdb.install)
Deleted:
  gdb/repos/testing-x86_64/PKGBUILD
  gdb/repos/testing-x86_64/gdb.install

----------------------------+
 /PKGBUILD                  |   48 +++++++++++++++++++++++++++++++++++++++++++
 /gdb.install               |   20 +++++++++++++++++
 testing-i686/PKGBUILD      |   48 +++++++++++++++++++++++++++++++++++++++++++
 testing-i686/gdb.install   |   20 +++++++++++++++++
 testing-x86_64/PKGBUILD    |   48 -------------------------------------------
 testing-x86_64/gdb.install |   20 -----------------
 6 files changed, 136 insertions(+), 68 deletions(-)

Copied: gdb/repos/testing-i686/PKGBUILD (from rev 205508, gdb/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2014-02-06 13:36:44 UTC (rev 205509)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Contributor: Jan de Groot <jgc at archlinux.org>
+
+pkgname=gdb
+pkgver=7.7
+pkgrel=1
+pkgdesc="The GNU Debugger"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/gdb/"
+license=('GPL3')
+depends=('ncurses' 'expat' 'python2')
+makedepends=('texinfo')
+backup=('etc/gdb/gdbinit')
+install=gdb.install
+source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.bz2{,.sig})
+md5sums=('271a18f41858a7e98b28ae4eb91287c9'
+         'SKIP')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  
+  ./configure --prefix=/usr --disable-nls \
+    --with-system-readline \
+    --with-python=/usr/bin/python2 \
+    --with-system-gdbinit=/etc/gdb/gdbinit
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # install "custom" system gdbinit
+  install -dm755 $pkgdir/etc/gdb
+  touch $pkgdir/etc/gdb/gdbinit
+
+  # resolve conflicts with binutils
+  rm ${pkgdir}/usr/include/{ansidecl,bfd,bfdlink,dis-asm,symcat}.h
+  rm ${pkgdir}/usr/share/info/{bfd,configure,standards}.info
+}

Copied: gdb/repos/testing-i686/gdb.install (from rev 205508, gdb/trunk/gdb.install)
===================================================================
--- testing-i686/gdb.install	                        (rev 0)
+++ testing-i686/gdb.install	2014-02-06 13:36:44 UTC (rev 205509)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(annotate.info gdb.info{,-{1,2,3,4,5,6}} stabs.info)
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; do
+    install-info $infodir/$file.gz $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.gz $infodir/dir 2> /dev/null
+  done
+}

Deleted: testing-x86_64/PKGBUILD
===================================================================
--- testing-x86_64/PKGBUILD	2014-02-06 13:28:32 UTC (rev 205508)
+++ testing-x86_64/PKGBUILD	2014-02-06 13:36:44 UTC (rev 205509)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae <allan at archlinux.org>
-# Contributor: Jan de Groot <jgc at archlinux.org>
-
-pkgname=gdb
-pkgver=7.7
-pkgrel=1
-pkgdesc="The GNU Debugger"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/gdb/"
-license=('GPL3')
-depends=('ncurses' 'expat' 'python2')
-makedepends=('texinfo')
-backup=('etc/gdb/gdbinit')
-install=gdb.install
-source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.bz2{,.sig})
-md5sums=('271a18f41858a7e98b28ae4eb91287c9'
-         'SKIP')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  
-  ./configure --prefix=/usr --disable-nls \
-    --with-system-readline \
-    --with-python=/usr/bin/python2 \
-    --with-system-gdbinit=/etc/gdb/gdbinit
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # install "custom" system gdbinit
-  install -dm755 $pkgdir/etc/gdb
-  touch $pkgdir/etc/gdb/gdbinit
-
-  # resolve conflicts with binutils
-  rm ${pkgdir}/usr/include/{ansidecl,bfd,bfdlink,dis-asm,symcat}.h
-  rm ${pkgdir}/usr/share/info/{bfd,configure,standards}.info
-}

Copied: gdb/repos/testing-x86_64/PKGBUILD (from rev 205508, gdb/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2014-02-06 13:36:44 UTC (rev 205509)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Contributor: Jan de Groot <jgc at archlinux.org>
+
+pkgname=gdb
+pkgver=7.7
+pkgrel=1
+pkgdesc="The GNU Debugger"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/gdb/"
+license=('GPL3')
+depends=('ncurses' 'expat' 'python2')
+makedepends=('texinfo')
+backup=('etc/gdb/gdbinit')
+install=gdb.install
+source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.bz2{,.sig})
+md5sums=('271a18f41858a7e98b28ae4eb91287c9'
+         'SKIP')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  
+  ./configure --prefix=/usr --disable-nls \
+    --with-system-readline \
+    --with-python=/usr/bin/python2 \
+    --with-system-gdbinit=/etc/gdb/gdbinit
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # install "custom" system gdbinit
+  install -dm755 $pkgdir/etc/gdb
+  touch $pkgdir/etc/gdb/gdbinit
+
+  # resolve conflicts with binutils
+  rm ${pkgdir}/usr/include/{ansidecl,bfd,bfdlink,dis-asm,symcat}.h
+  rm ${pkgdir}/usr/share/info/{bfd,configure,standards}.info
+}

Deleted: testing-x86_64/gdb.install
===================================================================
--- testing-x86_64/gdb.install	2014-02-06 13:28:32 UTC (rev 205508)
+++ testing-x86_64/gdb.install	2014-02-06 13:36:44 UTC (rev 205509)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(annotate.info gdb.info{,-{1,2,3,4,5,6}} stabs.info)
-
-post_install() {
-  [[ -x usr/bin/install-info ]] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file.gz $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.gz $infodir/dir 2> /dev/null
-  done
-}

Copied: gdb/repos/testing-x86_64/gdb.install (from rev 205508, gdb/trunk/gdb.install)
===================================================================
--- testing-x86_64/gdb.install	                        (rev 0)
+++ testing-x86_64/gdb.install	2014-02-06 13:36:44 UTC (rev 205509)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(annotate.info gdb.info{,-{1,2,3,4,5,6}} stabs.info)
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; do
+    install-info $infodir/$file.gz $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.gz $infodir/dir 2> /dev/null
+  done
+}




More information about the arch-commits mailing list