[arch-commits] Commit in cups/trunk (PKGBUILD)

2011-08-20 Thread andyrtr
Date: Saturday, August 20, 2011 @ 02:24:46
  Author: andyrtr
Revision: 135897

fix typo in pkgdesc; FS#25650

Modified:
  cups/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-20 04:45:48 UTC (rev 135896)
+++ PKGBUILD2011-08-20 06:24:46 UTC (rev 135897)
@@ -79,7 +79,7 @@
 }
 
 package_cups() {
-pkgdesc=The CUPS Printing System - deamon package
+pkgdesc=The CUPS Printing System - daemon package
 install=cups.install
 backup=(etc/cups/cupsd.conf
 etc/cups/mime.convs



[arch-commits] Commit in xfdesktop/trunk (PKGBUILD fix-desktop-drag-and-drop.patch)

2011-08-20 Thread Tobias Powalowski
Date: Saturday, August 20, 2011 @ 02:29:49
  Author: tpowa
Revision: 135898

upgpkg: xfdesktop 4.8.2-3

fix desktop drag and drop

Added:
  xfdesktop/trunk/fix-desktop-drag-and-drop.patch
Modified:
  xfdesktop/trunk/PKGBUILD

-+
 PKGBUILD|9 --
 fix-desktop-drag-and-drop.patch |   57 ++
 2 files changed, 63 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-20 06:24:46 UTC (rev 135897)
+++ PKGBUILD2011-08-20 06:29:49 UTC (rev 135898)
@@ -4,7 +4,7 @@
 
 pkgname=xfdesktop
 pkgver=4.8.2
-pkgrel=2
+pkgrel=3
 pkgdesc=A desktop manager for Xfce
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -17,11 +17,14 @@
 replaces=('xfce4-menueditor')
 options=('!libtool')
 install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('ed25d59f478afda552d121e96657d16f')
+source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
+fix-desktop-drag-and-drop.patch)
+md5sums=('ed25d59f478afda552d121e96657d16f'
+ '86d464bcd8ffae9f048454f49603658a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
   ./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib \

Added: fix-desktop-drag-and-drop.patch
===
--- fix-desktop-drag-and-drop.patch (rev 0)
+++ fix-desktop-drag-and-drop.patch 2011-08-20 06:29:49 UTC (rev 135898)
@@ -0,0 +1,57 @@
+diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
+index 2711646..d3ca2eb 100644
+--- a/src/xfdesktop-file-icon-manager.c
 b/src/xfdesktop-file-icon-manager.c
+@@ -2794,7 +2794,7 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ GFile *tfile = NULL;
+ gboolean copy_only = TRUE, drop_ok = FALSE;
+ GList *file_list;
+-
++
+ if(info == TARGET_XDND_DIRECT_SAVE0) {
+ /* we don't suppose XdndDirectSave stage 3, result F, i.e., the app
+  * has to save the data itself given the filename we provided in
+@@ -2816,7 +2816,7 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ /* data is URL\nTITLE */
+ GFile *source_file = NULL;
+ gchar *exo_desktop_item_edit = 
g_find_program_in_path(exo-desktop-item-edit);
+-
++
+ if(drop_icon) {
+ GFileInfo *finfo = 
xfdesktop_file_icon_peek_file_info(XFDESKTOP_FILE_ICON(drop_icon));
+ if(g_file_info_get_file_type(finfo) == G_FILE_TYPE_DIRECTORY)
+@@ -2911,8 +2911,15 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ gchar *dest_basename = g_file_get_basename(l-data);
+ 
+ if(dest_basename  *dest_basename != '\0') {
+-GFile *dest_file = g_file_get_child(base_dest_file, 
dest_basename);
+-dest_file_list = g_list_prepend(dest_file_list, 
dest_file);
++/* If we copy a file, we need to use the new absolute 
filename
++ * as the destination. If we move, we need to use the 
destination
++ * directory. */
++if(copy_only) {
++GFile *dest_file = 
g_file_get_child(base_dest_file, dest_basename);
++dest_file_list = g_list_prepend(dest_file_list, 
dest_file);
++} else {
++dest_file_list = g_list_prepend(dest_file_list, 
base_dest_file);
++}
+ }
+ 
+ g_free(dest_basename);
+@@ -2923,10 +2930,10 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ if(dest_file_list) {
+ dest_file_list = g_list_reverse(dest_file_list);
+ 
+-drop_ok 
=xfdesktop_file_utils_transfer_files(context-action, 
+- file_list, 
+- 
dest_file_list,
+- 
fmanager-priv-gscreen);
++drop_ok = 
xfdesktop_file_utils_transfer_files(context-action, 
++  file_list, 
++  
dest_file_list,
++  
fmanager-priv-gscreen);
+ }
+ 
+ xfdesktop_file_utils_file_list_free(dest_file_list);
+
+



[arch-commits] Commit in xfdesktop/repos/extra-i686 (4 files)

2011-08-20 Thread Tobias Powalowski
Date: Saturday, August 20, 2011 @ 02:30:19
  Author: tpowa
Revision: 135899

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/PKGBUILD
(from rev 135898, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-i686/xfdesktop.install
(from rev 135898, xfdesktop/trunk/xfdesktop.install)
Deleted:
  xfdesktop/repos/extra-i686/PKGBUILD
  xfdesktop/repos/extra-i686/xfdesktop.install

---+
 PKGBUILD  |   85 ++--
 xfdesktop.install |   22 ++---
 2 files changed, 55 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-20 06:29:49 UTC (rev 135898)
+++ PKGBUILD2011-08-20 06:30:19 UTC (rev 135899)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: tobias tobias funnychar archlinux.org
-
-pkgname=xfdesktop
-pkgver=4.8.2
-pkgrel=2
-pkgdesc=A desktop manager for Xfce
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://www.xfce.org/;
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
-makedepends=('intltool' 'xfce4-panel=4.8.0')
-optdepends=('xfce4-panel: panel menu plugin')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-options=('!libtool')
-install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('ed25d59f478afda552d121e96657d16f')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib \
-   --localstatedir=/var \
-   --disable-static \
-   --enable-gio-unix \
-   --enable-thunarx \
-   --enable-exo \
-   --enable-notifications \
-   --disable-debug
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xfdesktop/repos/extra-i686/PKGBUILD (from rev 135898, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-20 06:30:19 UTC (rev 135899)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: tobias tobias funnychar archlinux.org
+
+pkgname=xfdesktop
+pkgver=4.8.2
+pkgrel=3
+pkgdesc=A desktop manager for Xfce
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://www.xfce.org/;
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
+makedepends=('intltool' 'xfce4-panel=4.8.0')
+optdepends=('xfce4-panel: panel menu plugin')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+options=('!libtool')
+install=xfdesktop.install
+source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
+fix-desktop-drag-and-drop.patch)
+md5sums=('ed25d59f478afda552d121e96657d16f'
+ '86d464bcd8ffae9f048454f49603658a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var \
+   --disable-static \
+   --enable-gio-unix \
+   --enable-thunarx \
+   --enable-exo \
+   --enable-notifications \
+   --disable-debug
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: xfdesktop.install
===
--- xfdesktop.install   2011-08-20 06:29:49 UTC (rev 135898)
+++ xfdesktop.install   2011-08-20 06:30:19 UTC (rev 135899)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}

Copied: xfdesktop/repos/extra-i686/xfdesktop.install (from rev 135898, 
xfdesktop/trunk/xfdesktop.install)
===
--- xfdesktop.install   (rev 0)
+++ xfdesktop.install   2011-08-20 06:30:19 UTC (rev 135899)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



[arch-commits] Commit in xfdesktop/repos/extra-x86_64 (4 files)

2011-08-20 Thread Tobias Powalowski
Date: Saturday, August 20, 2011 @ 02:30:46
  Author: tpowa
Revision: 135900

archrelease: copy trunk to extra-x86_64

Added:
  xfdesktop/repos/extra-x86_64/PKGBUILD
(from rev 135899, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-x86_64/xfdesktop.install
(from rev 135899, xfdesktop/trunk/xfdesktop.install)
Deleted:
  xfdesktop/repos/extra-x86_64/PKGBUILD
  xfdesktop/repos/extra-x86_64/xfdesktop.install

---+
 PKGBUILD  |   85 ++--
 xfdesktop.install |   22 ++---
 2 files changed, 55 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-20 06:30:19 UTC (rev 135899)
+++ PKGBUILD2011-08-20 06:30:46 UTC (rev 135900)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: tobias tobias funnychar archlinux.org
-
-pkgname=xfdesktop
-pkgver=4.8.2
-pkgrel=2
-pkgdesc=A desktop manager for Xfce
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://www.xfce.org/;
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
-makedepends=('intltool' 'xfce4-panel=4.8.0')
-optdepends=('xfce4-panel: panel menu plugin')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-options=('!libtool')
-install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('ed25d59f478afda552d121e96657d16f')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib \
-   --localstatedir=/var \
-   --disable-static \
-   --enable-gio-unix \
-   --enable-thunarx \
-   --enable-exo \
-   --enable-notifications \
-   --disable-debug
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xfdesktop/repos/extra-x86_64/PKGBUILD (from rev 135899, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-20 06:30:46 UTC (rev 135900)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: tobias tobias funnychar archlinux.org
+
+pkgname=xfdesktop
+pkgver=4.8.2
+pkgrel=3
+pkgdesc=A desktop manager for Xfce
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://www.xfce.org/;
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
+makedepends=('intltool' 'xfce4-panel=4.8.0')
+optdepends=('xfce4-panel: panel menu plugin')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+options=('!libtool')
+install=xfdesktop.install
+source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
+fix-desktop-drag-and-drop.patch)
+md5sums=('ed25d59f478afda552d121e96657d16f'
+ '86d464bcd8ffae9f048454f49603658a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var \
+   --disable-static \
+   --enable-gio-unix \
+   --enable-thunarx \
+   --enable-exo \
+   --enable-notifications \
+   --disable-debug
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: xfdesktop.install
===
--- xfdesktop.install   2011-08-20 06:30:19 UTC (rev 135899)
+++ xfdesktop.install   2011-08-20 06:30:46 UTC (rev 135900)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}

Copied: xfdesktop/repos/extra-x86_64/xfdesktop.install (from rev 135899, 
xfdesktop/trunk/xfdesktop.install)
===
--- xfdesktop.install   (rev 0)
+++ xfdesktop.install   2011-08-20 06:30:46 UTC (rev 135900)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



[arch-commits] Commit in pacman/repos (13 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:13:49
  Author: allan
Revision: 135901

db-move: moved pacman from [testing] to [core] (i686)

Added:
  pacman/repos/core-i686/0001-makepkg-fix-removing-symbolic-link.patch
(from rev 135900, 
pacman/repos/testing-i686/0001-makepkg-fix-removing-symbolic-link.patch)
  pacman/repos/core-i686/PKGBUILD
(from rev 135900, pacman/repos/testing-i686/PKGBUILD)
  pacman/repos/core-i686/makepkg.conf
(from rev 135900, pacman/repos/testing-i686/makepkg.conf)
  pacman/repos/core-i686/pacman.conf
(from rev 135900, pacman/repos/testing-i686/pacman.conf)
  pacman/repos/core-i686/pacman.conf.x86_64
(from rev 135900, pacman/repos/testing-i686/pacman.conf.x86_64)
  pacman/repos/core-i686/pacman.install
(from rev 135900, pacman/repos/testing-i686/pacman.install)
Deleted:
  pacman/repos/core-i686/0001-makepkg-fix-removing-symbolic-link.patch
  pacman/repos/core-i686/PKGBUILD
  pacman/repos/core-i686/makepkg.conf
  pacman/repos/core-i686/pacman.conf
  pacman/repos/core-i686/pacman.conf.x86_64
  pacman/repos/core-i686/pacman.install
  pacman/repos/testing-i686/

---+
 0001-makepkg-fix-removing-symbolic-link.patch |   64 +++---
 PKGBUILD  |  152 
 makepkg.conf  |  228 
 pacman.conf   |  160 
 pacman.conf.x86_64|  178 +-
 pacman.install|  124 ++---
 6 files changed, 453 insertions(+), 453 deletions(-)

Deleted: core-i686/0001-makepkg-fix-removing-symbolic-link.patch
===
--- core-i686/0001-makepkg-fix-removing-symbolic-link.patch 2011-08-20 
06:30:46 UTC (rev 135900)
+++ core-i686/0001-makepkg-fix-removing-symbolic-link.patch 2011-08-20 
07:13:49 UTC (rev 135901)
@@ -1,32 +0,0 @@
-From c493eef643ecb3a54c79083c51a8975f816ed9de Mon Sep 17 00:00:00 2001
-From: Allan McRae al...@archlinux.org
-Date: Tue, 28 Jun 2011 22:47:35 +1000
-Subject: [PATCH] makepkg: fix removing symbolic link
-
-The path was not being stripped from $file before prefixing with
-$srcdir resulting in the attempted removal of a very weird
-filename.
-
-Signed-off-by: Allan McRae al...@archlinux.org
-Signed-off-by: Dan McGee d...@archlinux.org
-(cherry picked from commit e92905a2c8c14c7855e2841f44d3c139aa40844c)

- scripts/makepkg.sh.in |2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
-index 3ace945..b0b0882 100644
 a/scripts/makepkg.sh.in
-+++ b/scripts/makepkg.sh.in
-@@ -509,7 +509,7 @@ download_sources() {
-   local file=$(get_filepath $netfile || true)
-   if [[ -n $file ]]; then
-   msg2 $(gettext Found %s) ${file##*/}
--  rm -f $srcdir/$file
-+  rm -f $srcdir/${file##*/}
-   ln -s $file $srcdir/
-   continue
-   fi
--- 
-1.7.6
-

Copied: pacman/repos/core-i686/0001-makepkg-fix-removing-symbolic-link.patch 
(from rev 135900, 
pacman/repos/testing-i686/0001-makepkg-fix-removing-symbolic-link.patch)
===
--- core-i686/0001-makepkg-fix-removing-symbolic-link.patch 
(rev 0)
+++ core-i686/0001-makepkg-fix-removing-symbolic-link.patch 2011-08-20 
07:13:49 UTC (rev 135901)
@@ -0,0 +1,32 @@
+From c493eef643ecb3a54c79083c51a8975f816ed9de Mon Sep 17 00:00:00 2001
+From: Allan McRae al...@archlinux.org
+Date: Tue, 28 Jun 2011 22:47:35 +1000
+Subject: [PATCH] makepkg: fix removing symbolic link
+
+The path was not being stripped from $file before prefixing with
+$srcdir resulting in the attempted removal of a very weird
+filename.
+
+Signed-off-by: Allan McRae al...@archlinux.org
+Signed-off-by: Dan McGee d...@archlinux.org
+(cherry picked from commit e92905a2c8c14c7855e2841f44d3c139aa40844c)
+---
+ scripts/makepkg.sh.in |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
+index 3ace945..b0b0882 100644
+--- a/scripts/makepkg.sh.in
 b/scripts/makepkg.sh.in
+@@ -509,7 +509,7 @@ download_sources() {
+   local file=$(get_filepath $netfile || true)
+   if [[ -n $file ]]; then
+   msg2 $(gettext Found %s) ${file##*/}
+-  rm -f $srcdir/$file
++  rm -f $srcdir/${file##*/}
+   ln -s $file $srcdir/
+   continue
+   fi
+-- 
+1.7.6
+

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 06:30:46 UTC (rev 135900)
+++ core-i686/PKGBUILD  2011-08-20 07:13:49 UTC (rev 135901)
@@ -1,76 

[arch-commits] Commit in pacman/repos (13 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:13:51
  Author: allan
Revision: 135902

db-move: moved pacman from [testing] to [core] (x86_64)

Added:
  pacman/repos/core-x86_64/0001-makepkg-fix-removing-symbolic-link.patch
(from rev 135900, 
pacman/repos/testing-x86_64/0001-makepkg-fix-removing-symbolic-link.patch)
  pacman/repos/core-x86_64/PKGBUILD
(from rev 135900, pacman/repos/testing-x86_64/PKGBUILD)
  pacman/repos/core-x86_64/makepkg.conf
(from rev 135900, pacman/repos/testing-x86_64/makepkg.conf)
  pacman/repos/core-x86_64/pacman.conf
(from rev 135900, pacman/repos/testing-x86_64/pacman.conf)
  pacman/repos/core-x86_64/pacman.conf.x86_64
(from rev 135900, pacman/repos/testing-x86_64/pacman.conf.x86_64)
  pacman/repos/core-x86_64/pacman.install
(from rev 135900, pacman/repos/testing-x86_64/pacman.install)
Deleted:
  pacman/repos/core-x86_64/0001-makepkg-fix-removing-symbolic-link.patch
  pacman/repos/core-x86_64/PKGBUILD
  pacman/repos/core-x86_64/makepkg.conf
  pacman/repos/core-x86_64/pacman.conf
  pacman/repos/core-x86_64/pacman.conf.x86_64
  pacman/repos/core-x86_64/pacman.install
  pacman/repos/testing-x86_64/

---+
 0001-makepkg-fix-removing-symbolic-link.patch |   64 +++---
 PKGBUILD  |  152 
 makepkg.conf  |  228 
 pacman.conf   |  160 
 pacman.conf.x86_64|  178 +-
 pacman.install|  124 ++---
 6 files changed, 453 insertions(+), 453 deletions(-)

Deleted: core-x86_64/0001-makepkg-fix-removing-symbolic-link.patch
===
--- core-x86_64/0001-makepkg-fix-removing-symbolic-link.patch   2011-08-20 
07:13:49 UTC (rev 135901)
+++ core-x86_64/0001-makepkg-fix-removing-symbolic-link.patch   2011-08-20 
07:13:51 UTC (rev 135902)
@@ -1,32 +0,0 @@
-From c493eef643ecb3a54c79083c51a8975f816ed9de Mon Sep 17 00:00:00 2001
-From: Allan McRae al...@archlinux.org
-Date: Tue, 28 Jun 2011 22:47:35 +1000
-Subject: [PATCH] makepkg: fix removing symbolic link
-
-The path was not being stripped from $file before prefixing with
-$srcdir resulting in the attempted removal of a very weird
-filename.
-
-Signed-off-by: Allan McRae al...@archlinux.org
-Signed-off-by: Dan McGee d...@archlinux.org
-(cherry picked from commit e92905a2c8c14c7855e2841f44d3c139aa40844c)

- scripts/makepkg.sh.in |2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
-index 3ace945..b0b0882 100644
 a/scripts/makepkg.sh.in
-+++ b/scripts/makepkg.sh.in
-@@ -509,7 +509,7 @@ download_sources() {
-   local file=$(get_filepath $netfile || true)
-   if [[ -n $file ]]; then
-   msg2 $(gettext Found %s) ${file##*/}
--  rm -f $srcdir/$file
-+  rm -f $srcdir/${file##*/}
-   ln -s $file $srcdir/
-   continue
-   fi
--- 
-1.7.6
-

Copied: pacman/repos/core-x86_64/0001-makepkg-fix-removing-symbolic-link.patch 
(from rev 135900, 
pacman/repos/testing-x86_64/0001-makepkg-fix-removing-symbolic-link.patch)
===
--- core-x86_64/0001-makepkg-fix-removing-symbolic-link.patch   
(rev 0)
+++ core-x86_64/0001-makepkg-fix-removing-symbolic-link.patch   2011-08-20 
07:13:51 UTC (rev 135902)
@@ -0,0 +1,32 @@
+From c493eef643ecb3a54c79083c51a8975f816ed9de Mon Sep 17 00:00:00 2001
+From: Allan McRae al...@archlinux.org
+Date: Tue, 28 Jun 2011 22:47:35 +1000
+Subject: [PATCH] makepkg: fix removing symbolic link
+
+The path was not being stripped from $file before prefixing with
+$srcdir resulting in the attempted removal of a very weird
+filename.
+
+Signed-off-by: Allan McRae al...@archlinux.org
+Signed-off-by: Dan McGee d...@archlinux.org
+(cherry picked from commit e92905a2c8c14c7855e2841f44d3c139aa40844c)
+---
+ scripts/makepkg.sh.in |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
+index 3ace945..b0b0882 100644
+--- a/scripts/makepkg.sh.in
 b/scripts/makepkg.sh.in
+@@ -509,7 +509,7 @@ download_sources() {
+   local file=$(get_filepath $netfile || true)
+   if [[ -n $file ]]; then
+   msg2 $(gettext Found %s) ${file##*/}
+-  rm -f $srcdir/$file
++  rm -f $srcdir/${file##*/}
+   ln -s $file $srcdir/
+   continue
+   fi
+-- 
+1.7.6
+

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:13:49 UTC (rev 135901)
+++ 

[arch-commits] Commit in cloog/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:13:52
  Author: allan
Revision: 135903

db-move: moved cloog from [testing] to [core] (i686)

Added:
  cloog/repos/core-i686/PKGBUILD
(from rev 135900, cloog/repos/testing-i686/PKGBUILD)
Deleted:
  cloog/repos/core-i686/PKGBUILD
  cloog/repos/testing-i686/

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:13:51 UTC (rev 135902)
+++ core-i686/PKGBUILD  2011-08-20 07:13:52 UTC (rev 135903)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=cloog
-pkgver=0.16.2
-pkgrel=1
-pkgdesc=Library that generates loops for scanning polyhedra
-arch=('i686' 'x86_64')
-url=http://www.bastoul.net/cloog/;
-license=('GPL')
-depends=('isl' 'gmp')
-conflicts=('cloog-ppl0.15.10-2')
-options=('!libtool')
-source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
-md5sums=('83877caaa879c7160063138bb18348e7')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-isl=system --with-gmp=system
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: cloog/repos/core-i686/PKGBUILD (from rev 135900, 
cloog/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-20 07:13:52 UTC (rev 135903)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=cloog
+pkgver=0.16.2
+pkgrel=2
+pkgdesc=Library that generates loops for scanning polyhedra
+arch=('i686' 'x86_64')
+url=http://www.bastoul.net/cloog/;
+license=('GPL')
+depends=('isl' 'gmp')
+conflicts=('cloog-ppl0.15.10-2')
+options=('!libtool')
+source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
+md5sums=('83877caaa879c7160063138bb18348e7')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-isl=system --with-gmp=system
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in cloog/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:13:54
  Author: allan
Revision: 135904

db-move: moved cloog from [testing] to [core] (x86_64)

Added:
  cloog/repos/core-x86_64/PKGBUILD
(from rev 135900, cloog/repos/testing-x86_64/PKGBUILD)
Deleted:
  cloog/repos/core-x86_64/PKGBUILD
  cloog/repos/testing-x86_64/

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:13:52 UTC (rev 135903)
+++ core-x86_64/PKGBUILD2011-08-20 07:13:54 UTC (rev 135904)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=cloog
-pkgver=0.16.2
-pkgrel=1
-pkgdesc=Library that generates loops for scanning polyhedra
-arch=('i686' 'x86_64')
-url=http://www.bastoul.net/cloog/;
-license=('GPL')
-depends=('isl' 'gmp')
-conflicts=('cloog-ppl0.15.10-2')
-options=('!libtool')
-source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
-md5sums=('83877caaa879c7160063138bb18348e7')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-isl=system --with-gmp=system
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: cloog/repos/core-x86_64/PKGBUILD (from rev 135900, 
cloog/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-20 07:13:54 UTC (rev 135904)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=cloog
+pkgver=0.16.2
+pkgrel=2
+pkgdesc=Library that generates loops for scanning polyhedra
+arch=('i686' 'x86_64')
+url=http://www.bastoul.net/cloog/;
+license=('GPL')
+depends=('isl' 'gmp')
+conflicts=('cloog-ppl0.15.10-2')
+options=('!libtool')
+source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
+md5sums=('83877caaa879c7160063138bb18348e7')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-isl=system --with-gmp=system
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in gmp/repos (7 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:13:55
  Author: allan
Revision: 135905

db-move: moved gmp from [testing] to [core] (i686)

Added:
  gmp/repos/core-i686/538dfce27f41.patch
(from rev 135900, gmp/repos/testing-i686/538dfce27f41.patch)
  gmp/repos/core-i686/PKGBUILD
(from rev 135900, gmp/repos/testing-i686/PKGBUILD)
  gmp/repos/core-i686/gmp.install
(from rev 135900, gmp/repos/testing-i686/gmp.install)
Deleted:
  gmp/repos/core-i686/538dfce27f41.patch
  gmp/repos/core-i686/PKGBUILD
  gmp/repos/core-i686/gmp.install
  gmp/repos/testing-i686/

+
 538dfce27f41.patch |   76 -
 PKGBUILD   |   78 +--
 gmp.install|   40 +-
 3 files changed, 97 insertions(+), 97 deletions(-)

Deleted: core-i686/538dfce27f41.patch
===
--- core-i686/538dfce27f41.patch2011-08-20 07:13:54 UTC (rev 135904)
+++ core-i686/538dfce27f41.patch2011-08-20 07:13:55 UTC (rev 135905)
@@ -1,38 +0,0 @@
-
-# HG changeset patch
-# User Torbjorn Granlund t...@gmplib.org
-# Date 1310730221 -7200
-# Node ID 538dfce27f410b910d5e2f09269e224d16a3
-# Parent  03ed209dd7efd4f4fff0ce297bb3a8f7e7ba2366
-(mpn_dcpi1_bdiv_q): Get mpn_sub_1 size argument right.
-
-diff -r 03ed209dd7ef -r 538dfce27f41 mpn/generic/dcpi1_bdiv_q.c
 a/mpn/generic/dcpi1_bdiv_q.c   Thu Jun 16 12:22:24 2011 +0200
-+++ b/mpn/generic/dcpi1_bdiv_q.c   Fri Jul 15 13:43:41 2011 +0200
-@@ -7,7 +7,7 @@
-SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
-GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
- 
--Copyright 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
-+Copyright 2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
- 
- This file is part of the GNU MP Library.
- 
-@@ -28,7 +28,6 @@
- #include gmp-impl.h
- 
- 
--
- mp_size_t
- mpn_dcpi1_bdiv_q_n_itch (mp_size_t n)
- {
-@@ -130,7 +129,7 @@
-   qn = nn - qn;
-   while (qn  dn)
-   {
--mpn_sub_1 (np + dn, np + dn, qn, cy);
-+mpn_sub_1 (np + dn, np + dn, qn - dn, cy);
- cy = mpn_dcpi1_bdiv_qr_n (qp, np, dp, dn, dinv, tp);
- qp += dn;
- np += dn;
-

Copied: gmp/repos/core-i686/538dfce27f41.patch (from rev 135900, 
gmp/repos/testing-i686/538dfce27f41.patch)
===
--- core-i686/538dfce27f41.patch(rev 0)
+++ core-i686/538dfce27f41.patch2011-08-20 07:13:55 UTC (rev 135905)
@@ -0,0 +1,38 @@
+
+# HG changeset patch
+# User Torbjorn Granlund t...@gmplib.org
+# Date 1310730221 -7200
+# Node ID 538dfce27f410b910d5e2f09269e224d16a3
+# Parent  03ed209dd7efd4f4fff0ce297bb3a8f7e7ba2366
+(mpn_dcpi1_bdiv_q): Get mpn_sub_1 size argument right.
+
+diff -r 03ed209dd7ef -r 538dfce27f41 mpn/generic/dcpi1_bdiv_q.c
+--- a/mpn/generic/dcpi1_bdiv_q.c   Thu Jun 16 12:22:24 2011 +0200
 b/mpn/generic/dcpi1_bdiv_q.c   Fri Jul 15 13:43:41 2011 +0200
+@@ -7,7 +7,7 @@
+SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
+GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
+ 
+-Copyright 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
++Copyright 2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
+ 
+ This file is part of the GNU MP Library.
+ 
+@@ -28,7 +28,6 @@
+ #include gmp-impl.h
+ 
+ 
+-
+ mp_size_t
+ mpn_dcpi1_bdiv_q_n_itch (mp_size_t n)
+ {
+@@ -130,7 +129,7 @@
+   qn = nn - qn;
+   while (qn  dn)
+   {
+-mpn_sub_1 (np + dn, np + dn, qn, cy);
++mpn_sub_1 (np + dn, np + dn, qn - dn, cy);
+ cy = mpn_dcpi1_bdiv_qr_n (qp, np, dp, dn, dinv, tp);
+ qp += dn;
+ np += dn;
+

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:13:54 UTC (rev 135904)
+++ core-i686/PKGBUILD  2011-08-20 07:13:55 UTC (rev 135905)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gmp
-pkgver=5.0.2
-pkgrel=2
-pkgdesc=A free library for arbitrary precision arithmetic
-arch=('i686' 'x86_64')
-url=http://gmplib.org/;
-depends=('gcc-libs' 'sh')
-license=('LGPL3')
-options=(!libtool)
-install=gmp.install
-source=(ftp://ftp.gnu.org/gnu/gmp/gmp-${pkgver}.tar.bz2
-538dfce27f41.patch)
-md5sums=('0bbaedc82fb30315b06b1588b9077cd3'
- 'a769be9c41618ca9c35d83375e7097d0')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i $srcdir/538dfce27f41.patch
-  
-  [ ${CARCH} = i686 ]  export ABI=32
-  ./configure --build=${CHOST} \
---prefix=/usr --infodir=/usr/share/info \
---enable-cxx
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd 

[arch-commits] Commit in gmp/repos (7 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:13:57
  Author: allan
Revision: 135906

db-move: moved gmp from [testing] to [core] (x86_64)

Added:
  gmp/repos/core-x86_64/538dfce27f41.patch
(from rev 135900, gmp/repos/testing-x86_64/538dfce27f41.patch)
  gmp/repos/core-x86_64/PKGBUILD
(from rev 135900, gmp/repos/testing-x86_64/PKGBUILD)
  gmp/repos/core-x86_64/gmp.install
(from rev 135900, gmp/repos/testing-x86_64/gmp.install)
Deleted:
  gmp/repos/core-x86_64/538dfce27f41.patch
  gmp/repos/core-x86_64/PKGBUILD
  gmp/repos/core-x86_64/gmp.install
  gmp/repos/testing-x86_64/

+
 538dfce27f41.patch |   76 -
 PKGBUILD   |   78 +--
 gmp.install|   40 +-
 3 files changed, 97 insertions(+), 97 deletions(-)

Deleted: core-x86_64/538dfce27f41.patch
===
--- core-x86_64/538dfce27f41.patch  2011-08-20 07:13:55 UTC (rev 135905)
+++ core-x86_64/538dfce27f41.patch  2011-08-20 07:13:57 UTC (rev 135906)
@@ -1,38 +0,0 @@
-
-# HG changeset patch
-# User Torbjorn Granlund t...@gmplib.org
-# Date 1310730221 -7200
-# Node ID 538dfce27f410b910d5e2f09269e224d16a3
-# Parent  03ed209dd7efd4f4fff0ce297bb3a8f7e7ba2366
-(mpn_dcpi1_bdiv_q): Get mpn_sub_1 size argument right.
-
-diff -r 03ed209dd7ef -r 538dfce27f41 mpn/generic/dcpi1_bdiv_q.c
 a/mpn/generic/dcpi1_bdiv_q.c   Thu Jun 16 12:22:24 2011 +0200
-+++ b/mpn/generic/dcpi1_bdiv_q.c   Fri Jul 15 13:43:41 2011 +0200
-@@ -7,7 +7,7 @@
-SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
-GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
- 
--Copyright 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
-+Copyright 2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
- 
- This file is part of the GNU MP Library.
- 
-@@ -28,7 +28,6 @@
- #include gmp-impl.h
- 
- 
--
- mp_size_t
- mpn_dcpi1_bdiv_q_n_itch (mp_size_t n)
- {
-@@ -130,7 +129,7 @@
-   qn = nn - qn;
-   while (qn  dn)
-   {
--mpn_sub_1 (np + dn, np + dn, qn, cy);
-+mpn_sub_1 (np + dn, np + dn, qn - dn, cy);
- cy = mpn_dcpi1_bdiv_qr_n (qp, np, dp, dn, dinv, tp);
- qp += dn;
- np += dn;
-

Copied: gmp/repos/core-x86_64/538dfce27f41.patch (from rev 135900, 
gmp/repos/testing-x86_64/538dfce27f41.patch)
===
--- core-x86_64/538dfce27f41.patch  (rev 0)
+++ core-x86_64/538dfce27f41.patch  2011-08-20 07:13:57 UTC (rev 135906)
@@ -0,0 +1,38 @@
+
+# HG changeset patch
+# User Torbjorn Granlund t...@gmplib.org
+# Date 1310730221 -7200
+# Node ID 538dfce27f410b910d5e2f09269e224d16a3
+# Parent  03ed209dd7efd4f4fff0ce297bb3a8f7e7ba2366
+(mpn_dcpi1_bdiv_q): Get mpn_sub_1 size argument right.
+
+diff -r 03ed209dd7ef -r 538dfce27f41 mpn/generic/dcpi1_bdiv_q.c
+--- a/mpn/generic/dcpi1_bdiv_q.c   Thu Jun 16 12:22:24 2011 +0200
 b/mpn/generic/dcpi1_bdiv_q.c   Fri Jul 15 13:43:41 2011 +0200
+@@ -7,7 +7,7 @@
+SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
+GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
+ 
+-Copyright 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
++Copyright 2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
+ 
+ This file is part of the GNU MP Library.
+ 
+@@ -28,7 +28,6 @@
+ #include gmp-impl.h
+ 
+ 
+-
+ mp_size_t
+ mpn_dcpi1_bdiv_q_n_itch (mp_size_t n)
+ {
+@@ -130,7 +129,7 @@
+   qn = nn - qn;
+   while (qn  dn)
+   {
+-mpn_sub_1 (np + dn, np + dn, qn, cy);
++mpn_sub_1 (np + dn, np + dn, qn - dn, cy);
+ cy = mpn_dcpi1_bdiv_qr_n (qp, np, dp, dn, dinv, tp);
+ qp += dn;
+ np += dn;
+

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:13:55 UTC (rev 135905)
+++ core-x86_64/PKGBUILD2011-08-20 07:13:57 UTC (rev 135906)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gmp
-pkgver=5.0.2
-pkgrel=2
-pkgdesc=A free library for arbitrary precision arithmetic
-arch=('i686' 'x86_64')
-url=http://gmplib.org/;
-depends=('gcc-libs' 'sh')
-license=('LGPL3')
-options=(!libtool)
-install=gmp.install
-source=(ftp://ftp.gnu.org/gnu/gmp/gmp-${pkgver}.tar.bz2
-538dfce27f41.patch)
-md5sums=('0bbaedc82fb30315b06b1588b9077cd3'
- 'a769be9c41618ca9c35d83375e7097d0')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i $srcdir/538dfce27f41.patch
-  
-  [ ${CARCH} = i686 ]  export ABI=32
-  ./configure --build=${CHOST} \
---prefix=/usr --infodir=/usr/share/info \
---enable-cxx
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}

[arch-commits] Commit in isl/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:13:58
  Author: allan
Revision: 135907

db-move: moved isl from [testing] to [core] (i686)

Added:
  isl/repos/core-i686/PKGBUILD
(from rev 135900, isl/repos/testing-i686/PKGBUILD)
Deleted:
  isl/repos/core-i686/PKGBUILD
  isl/repos/testing-i686/

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:13:57 UTC (rev 135906)
+++ core-i686/PKGBUILD  2011-08-20 07:13:58 UTC (rev 135907)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=isl
-pkgver=0.06
-pkgrel=1
-pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
-arch=('i686' 'x86_64')
-url=http://www.kotnet.org/~skimo/isl/;
-license=('LGPL2.1')
-options=('!libtool')
-source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('504f054eaffdd8d07c497ebe3ebc7e04')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make -j1 DESTDIR=$pkgdir/ install
-  
-  # this seems a better place for this file...
-  install -dm755 $pkgdir/usr/share/gdb/auto-load/
-  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.6.0.0-gdb.py
-}

Copied: isl/repos/core-i686/PKGBUILD (from rev 135900, 
isl/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-20 07:13:58 UTC (rev 135907)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.06
+pkgrel=2
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://www.kotnet.org/~skimo/isl/;
+license=('LGPL2.1')
+options=('!libtool')
+source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('504f054eaffdd8d07c497ebe3ebc7e04')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+  
+  # this seems a better place for this file...
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/
+  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.6.0.0-gdb.py
+}



[arch-commits] Commit in isl/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:13:59
  Author: allan
Revision: 135908

db-move: moved isl from [testing] to [core] (x86_64)

Added:
  isl/repos/core-x86_64/PKGBUILD
(from rev 135900, isl/repos/testing-x86_64/PKGBUILD)
Deleted:
  isl/repos/core-x86_64/PKGBUILD
  isl/repos/testing-x86_64/

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:13:58 UTC (rev 135907)
+++ core-x86_64/PKGBUILD2011-08-20 07:13:59 UTC (rev 135908)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=isl
-pkgver=0.06
-pkgrel=1
-pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
-arch=('i686' 'x86_64')
-url=http://www.kotnet.org/~skimo/isl/;
-license=('LGPL2.1')
-options=('!libtool')
-source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('504f054eaffdd8d07c497ebe3ebc7e04')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make -j1 DESTDIR=$pkgdir/ install
-  
-  # this seems a better place for this file...
-  install -dm755 $pkgdir/usr/share/gdb/auto-load/
-  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.6.0.0-gdb.py
-}

Copied: isl/repos/core-x86_64/PKGBUILD (from rev 135900, 
isl/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-20 07:13:59 UTC (rev 135908)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.06
+pkgrel=2
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://www.kotnet.org/~skimo/isl/;
+license=('LGPL2.1')
+options=('!libtool')
+source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('504f054eaffdd8d07c497ebe3ebc7e04')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+  
+  # this seems a better place for this file...
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/
+  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.6.0.0-gdb.py
+}



[arch-commits] Commit in libmpc/repos (7 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:01
  Author: allan
Revision: 135909

db-move: moved libmpc from [testing] to [core] (i686)

Added:
  libmpc/repos/core-i686/PKGBUILD
(from rev 135900, libmpc/repos/testing-i686/PKGBUILD)
  libmpc/repos/core-i686/libmpc-0.9-configure_cflags_egrep_issue.patch
(from rev 135900, 
libmpc/repos/testing-i686/libmpc-0.9-configure_cflags_egrep_issue.patch)
  libmpc/repos/core-i686/libmpc.install
(from rev 135900, libmpc/repos/testing-i686/libmpc.install)
Deleted:
  libmpc/repos/core-i686/PKGBUILD
  libmpc/repos/core-i686/libmpc-0.9-configure_cflags_egrep_issue.patch
  libmpc/repos/core-i686/libmpc.install
  libmpc/repos/testing-i686/

---+
 PKGBUILD  |   78 +++---
 libmpc-0.9-configure_cflags_egrep_issue.patch |  126 
 libmpc.install|   40 +++
 3 files changed, 122 insertions(+), 122 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:13:59 UTC (rev 135908)
+++ core-i686/PKGBUILD  2011-08-20 07:14:01 UTC (rev 135909)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=libmpc
-pkgver=0.9
-pkgrel=1
-pkgdesc=Library for the arithmetic of complex numbers with arbitrarily high 
precision
-arch=('i686' 'x86_64')
-url=http://www.multiprecision.org/;
-license=('LGPL')
-depends=('mpfr=3.0.0')
-options=('!libtool')
-install=libmpc.install
-source=(http://www.multiprecision.org/mpc/download/mpc-${pkgver/_/-}.tar.gz
-libmpc-0.9-configure_cflags_egrep_issue.patch)
-md5sums=('0d6acab8d214bd7d1fbbc593e83dd00d'
- '35d5bb02dc6c1153e581b7c34a738a08')
-
-build() {
-  cd ${srcdir}/mpc-${pkgver}
-
-  # 
http://lists.gforge.inria.fr/pipermail/mpc-discuss/2011-February/000805.html
-  patch -Np1 -i $srcdir/libmpc-0.9-configure_cflags_egrep_issue.patch
-  autoreconf
-  
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/mpc-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/mpc-${pkgver}
-  make DESTDIR=${pkgdir} install
-  mv ${pkgdir}/usr/share/info/{mpc,libmpc}.info
-}

Copied: libmpc/repos/core-i686/PKGBUILD (from rev 135900, 
libmpc/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-20 07:14:01 UTC (rev 135909)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=libmpc
+pkgver=0.9
+pkgrel=2
+pkgdesc=Library for the arithmetic of complex numbers with arbitrarily high 
precision
+arch=('i686' 'x86_64')
+url=http://www.multiprecision.org/;
+license=('LGPL')
+depends=('mpfr=3.0.0')
+options=('!libtool')
+install=libmpc.install
+source=(http://www.multiprecision.org/mpc/download/mpc-${pkgver/_/-}.tar.gz
+libmpc-0.9-configure_cflags_egrep_issue.patch)
+md5sums=('0d6acab8d214bd7d1fbbc593e83dd00d'
+ '35d5bb02dc6c1153e581b7c34a738a08')
+
+build() {
+  cd ${srcdir}/mpc-${pkgver}
+
+  # 
http://lists.gforge.inria.fr/pipermail/mpc-discuss/2011-February/000805.html
+  patch -Np1 -i $srcdir/libmpc-0.9-configure_cflags_egrep_issue.patch
+  autoreconf
+  
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/mpc-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/mpc-${pkgver}
+  make DESTDIR=${pkgdir} install
+  mv ${pkgdir}/usr/share/info/{mpc,libmpc}.info
+}

Deleted: core-i686/libmpc-0.9-configure_cflags_egrep_issue.patch
===
--- core-i686/libmpc-0.9-configure_cflags_egrep_issue.patch 2011-08-20 
07:13:59 UTC (rev 135908)
+++ core-i686/libmpc-0.9-configure_cflags_egrep_issue.patch 2011-08-20 
07:14:01 UTC (rev 135909)
@@ -1,63 +0,0 @@
 trunk/configure.ac 2011/02/21 12:18:31 932
-+++ trunk/configure.ac 2011/02/21 16:41:09 936
-@@ -33,7 +33,7 @@
- AC_CANONICAL_HOST
- AC_CONFIG_MACRO_DIR([m4])
- 
--dnl Extra arguments to configure
-+# Extra arguments to configure
- AC_ARG_WITH([mpfr_include],
- [AC_HELP_STRING([--with-mpfr-include=DIR],
- [MPFR include directory])],
-@@ -85,18 +85,19 @@
-  )
- 
- 
--dnl Setup CC and CFLAGS
-+# Setup CC and CFLAGS
-+AC_PROG_CC
-+AC_LANG(C)
- 
--dnl Check for user specification of CC or CFLAGS
-+# Set up LibTool
-+AC_PROG_LIBTOOL
-+
-+# Check for user specification of CC or CFLAGS
- if test -n $CFLAGS || test -n $CC ; then
-user_redefine_cc=yes
- fi
- 
--# Check for programs
--AC_PROG_CC
--AC_LANG(C)
--
--dnl Check GMP Header
-+# Check GMP Header
- AC_MSG_CHECKING(for gmp.h)
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
- #include gmp.h
-@@ -105,22 +106,19 @@
-  AC_MSG_ERROR([gmp.h can't be found, or is unusable.])
- ])
- 
--dnl Check for GMP CFLAGS in gmp.h
-+# Check for GMP CFLAGS in gmp.h
- if test -z $user_redefine_cc ; 

[arch-commits] Commit in libmpc/repos (7 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:03
  Author: allan
Revision: 135910

db-move: moved libmpc from [testing] to [core] (x86_64)

Added:
  libmpc/repos/core-x86_64/PKGBUILD
(from rev 135900, libmpc/repos/testing-x86_64/PKGBUILD)
  libmpc/repos/core-x86_64/libmpc-0.9-configure_cflags_egrep_issue.patch
(from rev 135900, 
libmpc/repos/testing-x86_64/libmpc-0.9-configure_cflags_egrep_issue.patch)
  libmpc/repos/core-x86_64/libmpc.install
(from rev 135900, libmpc/repos/testing-x86_64/libmpc.install)
Deleted:
  libmpc/repos/core-x86_64/PKGBUILD
  libmpc/repos/core-x86_64/libmpc-0.9-configure_cflags_egrep_issue.patch
  libmpc/repos/core-x86_64/libmpc.install
  libmpc/repos/testing-x86_64/

---+
 PKGBUILD  |   78 +++---
 libmpc-0.9-configure_cflags_egrep_issue.patch |  126 
 libmpc.install|   40 +++
 3 files changed, 122 insertions(+), 122 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:14:01 UTC (rev 135909)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:03 UTC (rev 135910)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=libmpc
-pkgver=0.9
-pkgrel=1
-pkgdesc=Library for the arithmetic of complex numbers with arbitrarily high 
precision
-arch=('i686' 'x86_64')
-url=http://www.multiprecision.org/;
-license=('LGPL')
-depends=('mpfr=3.0.0')
-options=('!libtool')
-install=libmpc.install
-source=(http://www.multiprecision.org/mpc/download/mpc-${pkgver/_/-}.tar.gz
-libmpc-0.9-configure_cflags_egrep_issue.patch)
-md5sums=('0d6acab8d214bd7d1fbbc593e83dd00d'
- '35d5bb02dc6c1153e581b7c34a738a08')
-
-build() {
-  cd ${srcdir}/mpc-${pkgver}
-
-  # 
http://lists.gforge.inria.fr/pipermail/mpc-discuss/2011-February/000805.html
-  patch -Np1 -i $srcdir/libmpc-0.9-configure_cflags_egrep_issue.patch
-  autoreconf
-  
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/mpc-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/mpc-${pkgver}
-  make DESTDIR=${pkgdir} install
-  mv ${pkgdir}/usr/share/info/{mpc,libmpc}.info
-}

Copied: libmpc/repos/core-x86_64/PKGBUILD (from rev 135900, 
libmpc/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:03 UTC (rev 135910)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=libmpc
+pkgver=0.9
+pkgrel=2
+pkgdesc=Library for the arithmetic of complex numbers with arbitrarily high 
precision
+arch=('i686' 'x86_64')
+url=http://www.multiprecision.org/;
+license=('LGPL')
+depends=('mpfr=3.0.0')
+options=('!libtool')
+install=libmpc.install
+source=(http://www.multiprecision.org/mpc/download/mpc-${pkgver/_/-}.tar.gz
+libmpc-0.9-configure_cflags_egrep_issue.patch)
+md5sums=('0d6acab8d214bd7d1fbbc593e83dd00d'
+ '35d5bb02dc6c1153e581b7c34a738a08')
+
+build() {
+  cd ${srcdir}/mpc-${pkgver}
+
+  # 
http://lists.gforge.inria.fr/pipermail/mpc-discuss/2011-February/000805.html
+  patch -Np1 -i $srcdir/libmpc-0.9-configure_cflags_egrep_issue.patch
+  autoreconf
+  
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/mpc-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/mpc-${pkgver}
+  make DESTDIR=${pkgdir} install
+  mv ${pkgdir}/usr/share/info/{mpc,libmpc}.info
+}

Deleted: core-x86_64/libmpc-0.9-configure_cflags_egrep_issue.patch
===
--- core-x86_64/libmpc-0.9-configure_cflags_egrep_issue.patch   2011-08-20 
07:14:01 UTC (rev 135909)
+++ core-x86_64/libmpc-0.9-configure_cflags_egrep_issue.patch   2011-08-20 
07:14:03 UTC (rev 135910)
@@ -1,63 +0,0 @@
 trunk/configure.ac 2011/02/21 12:18:31 932
-+++ trunk/configure.ac 2011/02/21 16:41:09 936
-@@ -33,7 +33,7 @@
- AC_CANONICAL_HOST
- AC_CONFIG_MACRO_DIR([m4])
- 
--dnl Extra arguments to configure
-+# Extra arguments to configure
- AC_ARG_WITH([mpfr_include],
- [AC_HELP_STRING([--with-mpfr-include=DIR],
- [MPFR include directory])],
-@@ -85,18 +85,19 @@
-  )
- 
- 
--dnl Setup CC and CFLAGS
-+# Setup CC and CFLAGS
-+AC_PROG_CC
-+AC_LANG(C)
- 
--dnl Check for user specification of CC or CFLAGS
-+# Set up LibTool
-+AC_PROG_LIBTOOL
-+
-+# Check for user specification of CC or CFLAGS
- if test -n $CFLAGS || test -n $CC ; then
-user_redefine_cc=yes
- fi
- 
--# Check for programs
--AC_PROG_CC
--AC_LANG(C)
--
--dnl Check GMP Header
-+# Check GMP Header
- AC_MSG_CHECKING(for gmp.h)
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
- #include gmp.h
-@@ -105,22 +106,19 @@
-  AC_MSG_ERROR([gmp.h can't be found, or is unusable.])
- ])
- 
--dnl Check for GMP CFLAGS in gmp.h
-+# 

[arch-commits] Commit in mpfr/repos (7 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:06
  Author: allan
Revision: 135911

db-move: moved mpfr from [testing] to [core] (i686)

Added:
  mpfr/repos/core-i686/PKGBUILD
(from rev 135900, mpfr/repos/testing-i686/PKGBUILD)
  mpfr/repos/core-i686/mpfr-3.0.1.p4.patch
(from rev 135900, mpfr/repos/testing-i686/mpfr-3.0.1.p4.patch)
  mpfr/repos/core-i686/mpfr.install
(from rev 135900, mpfr/repos/testing-i686/mpfr.install)
Deleted:
  mpfr/repos/core-i686/PKGBUILD
  mpfr/repos/core-i686/mpfr-3.0.1.p4.patch
  mpfr/repos/core-i686/mpfr.install
  mpfr/repos/testing-i686/

-+
 PKGBUILD|   76 ++---
 mpfr-3.0.1.p4.patch |  734 +-
 mpfr.install|   40 +-
 3 files changed, 425 insertions(+), 425 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:14:03 UTC (rev 135910)
+++ core-i686/PKGBUILD  2011-08-20 07:14:06 UTC (rev 135911)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: damir da...@archlinux.org
-
-pkgname=mpfr
-_pkgver=3.0.1
-_patchlevel=p4
-pkgver=${_pkgver}.${_patchlevel}
-pkgrel=1
-pkgdesc=Multiple-precision floating-point library
-arch=('i686' 'x86_64')
-url=http://www.mpfr.org/;
-license=('LGPL')
-depends=('gmp=5.0')
-options=('!libtool')
-install=mpfr.install
-source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz
-mpfr-${_pkgver}.${_patchlevel}.patch)
-md5sums=('645882d9d179113a70af84d27086ed9f'
- '52c2ac5ffbbbf0c68f08e89f016ba7aa')
-
-build() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
-  ./configure --prefix=/usr --enable-thread-safe --enable-shared
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: mpfr/repos/core-i686/PKGBUILD (from rev 135900, 
mpfr/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-20 07:14:06 UTC (rev 135911)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgname=mpfr
+_pkgver=3.0.1
+_patchlevel=p4
+pkgver=${_pkgver}.${_patchlevel}
+pkgrel=2
+pkgdesc=Multiple-precision floating-point library
+arch=('i686' 'x86_64')
+url=http://www.mpfr.org/;
+license=('LGPL')
+depends=('gmp=5.0')
+options=('!libtool')
+install=mpfr.install
+source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz
+mpfr-${_pkgver}.${_patchlevel}.patch)
+md5sums=('645882d9d179113a70af84d27086ed9f'
+ '52c2ac5ffbbbf0c68f08e89f016ba7aa')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
+  ./configure --prefix=/usr --enable-thread-safe --enable-shared
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: core-i686/mpfr-3.0.1.p4.patch
===
--- core-i686/mpfr-3.0.1.p4.patch   2011-08-20 07:14:03 UTC (rev 135910)
+++ core-i686/mpfr-3.0.1.p4.patch   2011-08-20 07:14:06 UTC (rev 135911)
@@ -1,367 +0,0 @@
-diff -Naurd mpfr-3.0.1-a/PATCHES mpfr-3.0.1-b/PATCHES
 mpfr-3.0.1-a/PATCHES   2011-04-12 10:50:02.0 +
-+++ mpfr-3.0.1-b/PATCHES   2011-04-12 10:50:02.0 +
-@@ -0,0 +1 @@
-+asin_exprange
-diff -Naurd mpfr-3.0.1-a/VERSION mpfr-3.0.1-b/VERSION
 mpfr-3.0.1-a/VERSION   2011-04-04 10:19:18.0 +
-+++ mpfr-3.0.1-b/VERSION   2011-04-12 10:50:02.0 +
-@@ -1 +1 @@
--3.0.1
-+3.0.1-p1
-diff -Naurd mpfr-3.0.1-a/asin.c mpfr-3.0.1-b/asin.c
 mpfr-3.0.1-a/asin.c2011-04-04 10:19:18.0 +
-+++ mpfr-3.0.1-b/asin.c2011-04-12 10:50:02.0 +
-@@ -63,11 +63,14 @@
- 
-   compared = mpfr_cmp_ui (xp, 1);
- 
-+  MPFR_SAVE_EXPO_MARK (expo);
-+
-   if (MPFR_UNLIKELY (compared = 0))
- {
-   mpfr_clear (xp);
-   if (compared  0)  /* asin(x) = NaN for |x|  1 */
- {
-+  MPFR_SAVE_EXPO_FREE (expo);
-   MPFR_SET_NAN (asin);
-   MPFR_RET_NAN;
- }
-@@ -80,13 +83,11 @@
-   inexact = -mpfr_const_pi (asin, MPFR_INVERT_RND(rnd_mode));
-   MPFR_CHANGE_SIGN (asin);
- }
--  mpfr_div_2ui (asin, asin, 1, rnd_mode); /* May underflow */
--  return inexact;
-+  mpfr_div_2ui (asin, asin, 1, rnd_mode);
- }
- }
--
--  MPFR_SAVE_EXPO_MARK (expo);
--
-+  else
-+{
-   /* Compute exponent of 1 - ABS(x) */
-   mpfr_ui_sub (xp, 

[arch-commits] Commit in mpfr/repos (7 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:08
  Author: allan
Revision: 135912

db-move: moved mpfr from [testing] to [core] (x86_64)

Added:
  mpfr/repos/core-x86_64/PKGBUILD
(from rev 135900, mpfr/repos/testing-x86_64/PKGBUILD)
  mpfr/repos/core-x86_64/mpfr-3.0.1.p4.patch
(from rev 135900, mpfr/repos/testing-x86_64/mpfr-3.0.1.p4.patch)
  mpfr/repos/core-x86_64/mpfr.install
(from rev 135900, mpfr/repos/testing-x86_64/mpfr.install)
Deleted:
  mpfr/repos/core-x86_64/PKGBUILD
  mpfr/repos/core-x86_64/mpfr-3.0.1.p4.patch
  mpfr/repos/core-x86_64/mpfr.install
  mpfr/repos/testing-x86_64/

-+
 PKGBUILD|   76 ++---
 mpfr-3.0.1.p4.patch |  734 +-
 mpfr.install|   40 +-
 3 files changed, 425 insertions(+), 425 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:14:06 UTC (rev 135911)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:08 UTC (rev 135912)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: damir da...@archlinux.org
-
-pkgname=mpfr
-_pkgver=3.0.1
-_patchlevel=p4
-pkgver=${_pkgver}.${_patchlevel}
-pkgrel=1
-pkgdesc=Multiple-precision floating-point library
-arch=('i686' 'x86_64')
-url=http://www.mpfr.org/;
-license=('LGPL')
-depends=('gmp=5.0')
-options=('!libtool')
-install=mpfr.install
-source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz
-mpfr-${_pkgver}.${_patchlevel}.patch)
-md5sums=('645882d9d179113a70af84d27086ed9f'
- '52c2ac5ffbbbf0c68f08e89f016ba7aa')
-
-build() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
-  ./configure --prefix=/usr --enable-thread-safe --enable-shared
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: mpfr/repos/core-x86_64/PKGBUILD (from rev 135900, 
mpfr/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:08 UTC (rev 135912)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgname=mpfr
+_pkgver=3.0.1
+_patchlevel=p4
+pkgver=${_pkgver}.${_patchlevel}
+pkgrel=2
+pkgdesc=Multiple-precision floating-point library
+arch=('i686' 'x86_64')
+url=http://www.mpfr.org/;
+license=('LGPL')
+depends=('gmp=5.0')
+options=('!libtool')
+install=mpfr.install
+source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz
+mpfr-${_pkgver}.${_patchlevel}.patch)
+md5sums=('645882d9d179113a70af84d27086ed9f'
+ '52c2ac5ffbbbf0c68f08e89f016ba7aa')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch
+  ./configure --prefix=/usr --enable-thread-safe --enable-shared
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: core-x86_64/mpfr-3.0.1.p4.patch
===
--- core-x86_64/mpfr-3.0.1.p4.patch 2011-08-20 07:14:06 UTC (rev 135911)
+++ core-x86_64/mpfr-3.0.1.p4.patch 2011-08-20 07:14:08 UTC (rev 135912)
@@ -1,367 +0,0 @@
-diff -Naurd mpfr-3.0.1-a/PATCHES mpfr-3.0.1-b/PATCHES
 mpfr-3.0.1-a/PATCHES   2011-04-12 10:50:02.0 +
-+++ mpfr-3.0.1-b/PATCHES   2011-04-12 10:50:02.0 +
-@@ -0,0 +1 @@
-+asin_exprange
-diff -Naurd mpfr-3.0.1-a/VERSION mpfr-3.0.1-b/VERSION
 mpfr-3.0.1-a/VERSION   2011-04-04 10:19:18.0 +
-+++ mpfr-3.0.1-b/VERSION   2011-04-12 10:50:02.0 +
-@@ -1 +1 @@
--3.0.1
-+3.0.1-p1
-diff -Naurd mpfr-3.0.1-a/asin.c mpfr-3.0.1-b/asin.c
 mpfr-3.0.1-a/asin.c2011-04-04 10:19:18.0 +
-+++ mpfr-3.0.1-b/asin.c2011-04-12 10:50:02.0 +
-@@ -63,11 +63,14 @@
- 
-   compared = mpfr_cmp_ui (xp, 1);
- 
-+  MPFR_SAVE_EXPO_MARK (expo);
-+
-   if (MPFR_UNLIKELY (compared = 0))
- {
-   mpfr_clear (xp);
-   if (compared  0)  /* asin(x) = NaN for |x|  1 */
- {
-+  MPFR_SAVE_EXPO_FREE (expo);
-   MPFR_SET_NAN (asin);
-   MPFR_RET_NAN;
- }
-@@ -80,13 +83,11 @@
-   inexact = -mpfr_const_pi (asin, MPFR_INVERT_RND(rnd_mode));
-   MPFR_CHANGE_SIGN (asin);
- }
--  mpfr_div_2ui (asin, asin, 1, rnd_mode); /* May underflow */
--  return inexact;
-+  mpfr_div_2ui (asin, asin, 1, rnd_mode);
- }
- }
--
--  MPFR_SAVE_EXPO_MARK (expo);
--
-+  else
-+{

[arch-commits] Commit in ppl/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:10
  Author: allan
Revision: 135913

db-move: moved ppl from [testing] to [core] (i686)

Added:
  ppl/repos/core-i686/PKGBUILD
(from rev 135900, ppl/repos/testing-i686/PKGBUILD)
Deleted:
  ppl/repos/core-i686/PKGBUILD
  ppl/repos/testing-i686/

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:14:08 UTC (rev 135912)
+++ core-i686/PKGBUILD  2011-08-20 07:14:10 UTC (rev 135913)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: ezzetabi ezzetabi at gawab dot com
-
-pkgname=ppl
-pkgver=0.11.2
-pkgrel=1
-pkgdesc=A modern library for convex polyhedra and other numerical 
abstractions.
-arch=('i686' 'x86_64')
-url=http://www.cs.unipr.it/ppl;
-license=('GPL3')
-depends=('gmp=5.0')
-options=('!docs' '!libtool')
-source=(http://www.cs.unipr.it/ppl/Download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz)
-md5sums=('ce014f153a28006009db207ca953a984')
-
-build() {
-  cd $srcdir/ppl-$pkgver
-  ./configure --prefix=/usr --enable-interfaces=c,cxx
-  make
-}
-
-check() {
-  cd $srcdir/ppl-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/ppl-$pkgver
-  make DESTDIR=$pkgdir install
-}
-

Copied: ppl/repos/core-i686/PKGBUILD (from rev 135900, 
ppl/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-20 07:14:10 UTC (rev 135913)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: ezzetabi ezzetabi at gawab dot com
+
+pkgname=ppl
+pkgver=0.11.2
+pkgrel=2
+pkgdesc=A modern library for convex polyhedra and other numerical 
abstractions.
+arch=('i686' 'x86_64')
+url=http://www.cs.unipr.it/ppl;
+license=('GPL3')
+depends=('gmp=5.0')
+options=('!docs' '!libtool')
+source=(http://www.cs.unipr.it/ppl/Download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz)
+md5sums=('ce014f153a28006009db207ca953a984')
+
+build() {
+  cd $srcdir/ppl-$pkgver
+  ./configure --prefix=/usr --enable-interfaces=c,cxx
+  make
+}
+
+check() {
+  cd $srcdir/ppl-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/ppl-$pkgver
+  make DESTDIR=$pkgdir install
+}
+



[arch-commits] Commit in ppl/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:11
  Author: allan
Revision: 135914

db-move: moved ppl from [testing] to [core] (x86_64)

Added:
  ppl/repos/core-x86_64/PKGBUILD
(from rev 135900, ppl/repos/testing-x86_64/PKGBUILD)
Deleted:
  ppl/repos/core-x86_64/PKGBUILD
  ppl/repos/testing-x86_64/

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:14:10 UTC (rev 135913)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:11 UTC (rev 135914)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: ezzetabi ezzetabi at gawab dot com
-
-pkgname=ppl
-pkgver=0.11.2
-pkgrel=1
-pkgdesc=A modern library for convex polyhedra and other numerical 
abstractions.
-arch=('i686' 'x86_64')
-url=http://www.cs.unipr.it/ppl;
-license=('GPL3')
-depends=('gmp=5.0')
-options=('!docs' '!libtool')
-source=(http://www.cs.unipr.it/ppl/Download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz)
-md5sums=('ce014f153a28006009db207ca953a984')
-
-build() {
-  cd $srcdir/ppl-$pkgver
-  ./configure --prefix=/usr --enable-interfaces=c,cxx
-  make
-}
-
-check() {
-  cd $srcdir/ppl-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/ppl-$pkgver
-  make DESTDIR=$pkgdir install
-}
-

Copied: ppl/repos/core-x86_64/PKGBUILD (from rev 135900, 
ppl/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:11 UTC (rev 135914)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: ezzetabi ezzetabi at gawab dot com
+
+pkgname=ppl
+pkgver=0.11.2
+pkgrel=2
+pkgdesc=A modern library for convex polyhedra and other numerical 
abstractions.
+arch=('i686' 'x86_64')
+url=http://www.cs.unipr.it/ppl;
+license=('GPL3')
+depends=('gmp=5.0')
+options=('!docs' '!libtool')
+source=(http://www.cs.unipr.it/ppl/Download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz)
+md5sums=('ce014f153a28006009db207ca953a984')
+
+build() {
+  cd $srcdir/ppl-$pkgver
+  ./configure --prefix=/usr --enable-interfaces=c,cxx
+  make
+}
+
+check() {
+  cd $srcdir/ppl-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/ppl-$pkgver
+  make DESTDIR=$pkgdir install
+}
+



[arch-commits] Commit in zlib/repos (5 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:12
  Author: allan
Revision: 135915

db-move: moved zlib from [testing] to [core] (i686)

Added:
  zlib/repos/core-i686/PKGBUILD
(from rev 135900, zlib/repos/testing-i686/PKGBUILD)
  zlib/repos/core-i686/zlib-1.2.5-lfs-decls.patch
(from rev 135900, zlib/repos/testing-i686/zlib-1.2.5-lfs-decls.patch)
Deleted:
  zlib/repos/core-i686/PKGBUILD
  zlib/repos/core-i686/zlib-1.2.5-lfs-decls.patch
  zlib/repos/testing-i686/

+
 PKGBUILD   |   73 ++-
 zlib-1.2.5-lfs-decls.patch |   26 +++
 2 files changed, 52 insertions(+), 47 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:14:11 UTC (rev 135914)
+++ core-i686/PKGBUILD  2011-08-20 07:14:12 UTC (rev 135915)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=zlib
-pkgver=1.2.5
-pkgrel=3
-pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP'
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.zlib.net/;
-depends=('glibc')
-options=('!makeflags')
-source=(http://zlib.net/zlib-${pkgver}.tar.gz;
-'zlib-1.2.5-lfs-decls.patch')
-md5sums=('c735eab2d659a96e5a594c9e8541ad63'
- '4cb279ea3beab621f3526bf7b7ab99e5')
-
-build() {
-   cd ${srcdir}/zlib-$pkgver
-   # see http://bugs.archlinux.org/task/19280
-   patch -p1 -i ${srcdir}/zlib-1.2.5-lfs-decls.patch || return 1
-   # work around gcc bug; see https://bugs.archlinux.org/task/20647
-   export CFLAGS=${CFLAGS/-O2/-O3} -fno-tree-vectorize -DUNALIGNED_OK
-   ./configure --prefix=/usr
-   make
-
-   grep -A 24 '^  Copyright' zlib.h  LICENSE
-}
-
-package() {
-   cd ${srcdir}/zlib-$pkgver
-   make install DESTDIR=${pkgdir}
-   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
-}

Copied: zlib/repos/core-i686/PKGBUILD (from rev 135900, 
zlib/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-20 07:14:12 UTC (rev 135915)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=zlib
+pkgver=1.2.5
+pkgrel=4
+pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP'
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.zlib.net/;
+depends=('glibc')
+options=('!makeflags')
+source=(http://zlib.net/zlib-${pkgver}.tar.gz;
+'zlib-1.2.5-lfs-decls.patch')
+md5sums=('c735eab2d659a96e5a594c9e8541ad63'
+ '4cb279ea3beab621f3526bf7b7ab99e5')
+
+build() {
+   cd ${srcdir}/zlib-$pkgver
+   # see http://bugs.archlinux.org/task/19280
+   patch -p1 -i ${srcdir}/zlib-1.2.5-lfs-decls.patch
+   # work around gcc bug; see https://bugs.archlinux.org/task/20647
+   export CFLAGS=${CFLAGS/-O2/-O3} -fno-tree-vectorize -DUNALIGNED_OK
+   ./configure --prefix=/usr
+   make
+
+   grep -A 24 '^  Copyright' zlib.h  LICENSE
+}
+
+check() {
+   cd ${srcdir}/zlib-$pkgver
+   make check
+}
+
+package() {
+   cd ${srcdir}/zlib-$pkgver
+   make install DESTDIR=${pkgdir}
+   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
+}

Deleted: core-i686/zlib-1.2.5-lfs-decls.patch
===
--- core-i686/zlib-1.2.5-lfs-decls.patch2011-08-20 07:14:11 UTC (rev 
135914)
+++ core-i686/zlib-1.2.5-lfs-decls.patch2011-08-20 07:14:12 UTC (rev 
135915)
@@ -1,13 +0,0 @@
-Index: zlib-1.2.5/zlib.h
-===
 zlib-1.2.5.orig/zlib.h
-+++ zlib-1.2.5/zlib.h
-@@ -1578,7 +1578,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF(
- #  define gzoffset gzoffset64
- #  define adler32_combine adler32_combine64
- #  define crc32_combine crc32_combine64
--#  ifdef _LARGEFILE64_SOURCE
-+#  ifndef _LARGEFILE64_SOURCE
-  ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
-  ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int));
-  ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));

Copied: zlib/repos/core-i686/zlib-1.2.5-lfs-decls.patch (from rev 135900, 
zlib/repos/testing-i686/zlib-1.2.5-lfs-decls.patch)
===
--- core-i686/zlib-1.2.5-lfs-decls.patch(rev 0)
+++ core-i686/zlib-1.2.5-lfs-decls.patch2011-08-20 07:14:12 UTC (rev 
135915)
@@ -0,0 +1,13 @@
+Index: zlib-1.2.5/zlib.h
+===
+--- zlib-1.2.5.orig/zlib.h
 zlib-1.2.5/zlib.h
+@@ -1578,7 +1578,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF(
+ #  define gzoffset gzoffset64
+ #  define adler32_combine adler32_combine64
+ #  define 

[arch-commits] Commit in linux-api-headers/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:15
  Author: allan
Revision: 135917

db-move: moved linux-api-headers from [testing] to [core] (i686)

Added:
  linux-api-headers/repos/core-i686/PKGBUILD
(from rev 135900, linux-api-headers/repos/testing-i686/PKGBUILD)
Deleted:
  linux-api-headers/repos/core-i686/PKGBUILD
  linux-api-headers/repos/testing-i686/

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:14:14 UTC (rev 135916)
+++ core-i686/PKGBUILD  2011-08-20 07:14:15 UTC (rev 135917)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
-
-pkgname=linux-api-headers
-pkgver=2.6.39.1
-_basever=2.6.39
-pkgrel=1
-pkgdesc=Kernel headers sanitized for use in userspace
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/libc;
-license=('GPL2')
-provides=(kernel-headers=${pkgver})
-conflicts=('kernel-headers')
-replaces=('kernel-headers')
-source=(http://www.kernel.org/pub/linux/kernel/v2.6/linux-${_basever}.tar.bz2
-   http://www.kernel.org/pub/linux/kernel/v2.6/patch-${pkgver}.bz2)
-md5sums=('1aab7a741abe08d42e8eccf20de61e05'
- '215f7ebaafe1175dbc5d1e439c9a96d5')
-
-build() {
-  cd ${srcdir}/linux-${_basever}
-  [[ $pkgver != $_basever ]]  patch -Np1 -i ${srcdir}/patch-${pkgver}
-
-  make mrproper
-  make headers_check
-}
-
-package() {
-  cd ${srcdir}/linux-${_basever}
-  make INSTALL_HDR_PATH=${pkgdir}/usr headers_install
-
-  # use headers from libdrm
-  rm -rf ${pkgdir}/usr/include/drm
-  
-  # clean-up unnecessary files generated during install
-  find ${pkgdir} -name .install -or -name ..install.cmd | xargs rm -f
-}

Copied: linux-api-headers/repos/core-i686/PKGBUILD (from rev 135900, 
linux-api-headers/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-20 07:14:15 UTC (rev 135917)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
+
+pkgname=linux-api-headers
+pkgver=3.0.1
+_basever=3.0
+pkgrel=1
+pkgdesc=Kernel headers sanitized for use in userspace
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/libc;
+license=('GPL2')
+provides=(kernel-headers=${pkgver})
+conflicts=('kernel-headers')
+replaces=('kernel-headers')
+source=(http://www.kernel.org/pub/linux/kernel/v${_basever}/linux-${_basever}.tar.bz2
+   http://www.kernel.org/pub/linux/kernel/v${_basever}/patch-${pkgver}.bz2)
+md5sums=('398e95866794def22b12dfbc15ce89c0'
+ 'ac49f7907f1fc85fbab92d0f1aa1552a')
+
+build() {
+  cd ${srcdir}/linux-${_basever}
+  [[ $pkgver != $_basever ]]  patch -Np1 -i ${srcdir}/patch-${pkgver}
+
+  make mrproper
+  make headers_check
+}
+
+package() {
+  cd ${srcdir}/linux-${_basever}
+  make INSTALL_HDR_PATH=${pkgdir}/usr headers_install
+
+  # use headers from libdrm
+  rm -rf ${pkgdir}/usr/include/drm
+  
+  # clean-up unnecessary files generated during install
+  find ${pkgdir} -name .install -or -name ..install.cmd | xargs rm -f
+}



[arch-commits] Commit in linux-api-headers/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:16
  Author: allan
Revision: 135918

db-move: moved linux-api-headers from [testing] to [core] (x86_64)

Added:
  linux-api-headers/repos/core-x86_64/PKGBUILD
(from rev 135900, linux-api-headers/repos/testing-x86_64/PKGBUILD)
Deleted:
  linux-api-headers/repos/core-x86_64/PKGBUILD
  linux-api-headers/repos/testing-x86_64/

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:14:15 UTC (rev 135917)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:16 UTC (rev 135918)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
-
-pkgname=linux-api-headers
-pkgver=2.6.39.1
-_basever=2.6.39
-pkgrel=1
-pkgdesc=Kernel headers sanitized for use in userspace
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/libc;
-license=('GPL2')
-provides=(kernel-headers=${pkgver})
-conflicts=('kernel-headers')
-replaces=('kernel-headers')
-source=(http://www.kernel.org/pub/linux/kernel/v2.6/linux-${_basever}.tar.bz2
-   http://www.kernel.org/pub/linux/kernel/v2.6/patch-${pkgver}.bz2)
-md5sums=('1aab7a741abe08d42e8eccf20de61e05'
- '215f7ebaafe1175dbc5d1e439c9a96d5')
-
-build() {
-  cd ${srcdir}/linux-${_basever}
-  [[ $pkgver != $_basever ]]  patch -Np1 -i ${srcdir}/patch-${pkgver}
-
-  make mrproper
-  make headers_check
-}
-
-package() {
-  cd ${srcdir}/linux-${_basever}
-  make INSTALL_HDR_PATH=${pkgdir}/usr headers_install
-
-  # use headers from libdrm
-  rm -rf ${pkgdir}/usr/include/drm
-  
-  # clean-up unnecessary files generated during install
-  find ${pkgdir} -name .install -or -name ..install.cmd | xargs rm -f
-}

Copied: linux-api-headers/repos/core-x86_64/PKGBUILD (from rev 135900, 
linux-api-headers/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:16 UTC (rev 135918)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
+
+pkgname=linux-api-headers
+pkgver=3.0.1
+_basever=3.0
+pkgrel=1
+pkgdesc=Kernel headers sanitized for use in userspace
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/libc;
+license=('GPL2')
+provides=(kernel-headers=${pkgver})
+conflicts=('kernel-headers')
+replaces=('kernel-headers')
+source=(http://www.kernel.org/pub/linux/kernel/v${_basever}/linux-${_basever}.tar.bz2
+   http://www.kernel.org/pub/linux/kernel/v${_basever}/patch-${pkgver}.bz2)
+md5sums=('398e95866794def22b12dfbc15ce89c0'
+ 'ac49f7907f1fc85fbab92d0f1aa1552a')
+
+build() {
+  cd ${srcdir}/linux-${_basever}
+  [[ $pkgver != $_basever ]]  patch -Np1 -i ${srcdir}/patch-${pkgver}
+
+  make mrproper
+  make headers_check
+}
+
+package() {
+  cd ${srcdir}/linux-${_basever}
+  make INSTALL_HDR_PATH=${pkgdir}/usr headers_install
+
+  # use headers from libdrm
+  rm -rf ${pkgdir}/usr/include/drm
+  
+  # clean-up unnecessary files generated during install
+  find ${pkgdir} -name .install -or -name ..install.cmd | xargs rm -f
+}



[arch-commits] Commit in zlib/repos (5 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:14
  Author: allan
Revision: 135916

db-move: moved zlib from [testing] to [core] (x86_64)

Added:
  zlib/repos/core-x86_64/PKGBUILD
(from rev 135900, zlib/repos/testing-x86_64/PKGBUILD)
  zlib/repos/core-x86_64/zlib-1.2.5-lfs-decls.patch
(from rev 135900, zlib/repos/testing-x86_64/zlib-1.2.5-lfs-decls.patch)
Deleted:
  zlib/repos/core-x86_64/PKGBUILD
  zlib/repos/core-x86_64/zlib-1.2.5-lfs-decls.patch
  zlib/repos/testing-x86_64/

+
 PKGBUILD   |   73 ++-
 zlib-1.2.5-lfs-decls.patch |   26 +++
 2 files changed, 52 insertions(+), 47 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:14:12 UTC (rev 135915)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:14 UTC (rev 135916)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=zlib
-pkgver=1.2.5
-pkgrel=3
-pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP'
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.zlib.net/;
-depends=('glibc')
-options=('!makeflags')
-source=(http://zlib.net/zlib-${pkgver}.tar.gz;
-'zlib-1.2.5-lfs-decls.patch')
-md5sums=('c735eab2d659a96e5a594c9e8541ad63'
- '4cb279ea3beab621f3526bf7b7ab99e5')
-
-build() {
-   cd ${srcdir}/zlib-$pkgver
-   # see http://bugs.archlinux.org/task/19280
-   patch -p1 -i ${srcdir}/zlib-1.2.5-lfs-decls.patch || return 1
-   # work around gcc bug; see https://bugs.archlinux.org/task/20647
-   export CFLAGS=${CFLAGS/-O2/-O3} -fno-tree-vectorize -DUNALIGNED_OK
-   ./configure --prefix=/usr
-   make
-
-   grep -A 24 '^  Copyright' zlib.h  LICENSE
-}
-
-package() {
-   cd ${srcdir}/zlib-$pkgver
-   make install DESTDIR=${pkgdir}
-   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
-}

Copied: zlib/repos/core-x86_64/PKGBUILD (from rev 135900, 
zlib/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:14 UTC (rev 135916)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=zlib
+pkgver=1.2.5
+pkgrel=4
+pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP'
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.zlib.net/;
+depends=('glibc')
+options=('!makeflags')
+source=(http://zlib.net/zlib-${pkgver}.tar.gz;
+'zlib-1.2.5-lfs-decls.patch')
+md5sums=('c735eab2d659a96e5a594c9e8541ad63'
+ '4cb279ea3beab621f3526bf7b7ab99e5')
+
+build() {
+   cd ${srcdir}/zlib-$pkgver
+   # see http://bugs.archlinux.org/task/19280
+   patch -p1 -i ${srcdir}/zlib-1.2.5-lfs-decls.patch
+   # work around gcc bug; see https://bugs.archlinux.org/task/20647
+   export CFLAGS=${CFLAGS/-O2/-O3} -fno-tree-vectorize -DUNALIGNED_OK
+   ./configure --prefix=/usr
+   make
+
+   grep -A 24 '^  Copyright' zlib.h  LICENSE
+}
+
+check() {
+   cd ${srcdir}/zlib-$pkgver
+   make check
+}
+
+package() {
+   cd ${srcdir}/zlib-$pkgver
+   make install DESTDIR=${pkgdir}
+   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
+}

Deleted: core-x86_64/zlib-1.2.5-lfs-decls.patch
===
--- core-x86_64/zlib-1.2.5-lfs-decls.patch  2011-08-20 07:14:12 UTC (rev 
135915)
+++ core-x86_64/zlib-1.2.5-lfs-decls.patch  2011-08-20 07:14:14 UTC (rev 
135916)
@@ -1,13 +0,0 @@
-Index: zlib-1.2.5/zlib.h
-===
 zlib-1.2.5.orig/zlib.h
-+++ zlib-1.2.5/zlib.h
-@@ -1578,7 +1578,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF(
- #  define gzoffset gzoffset64
- #  define adler32_combine adler32_combine64
- #  define crc32_combine crc32_combine64
--#  ifdef _LARGEFILE64_SOURCE
-+#  ifndef _LARGEFILE64_SOURCE
-  ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
-  ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int));
-  ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));

Copied: zlib/repos/core-x86_64/zlib-1.2.5-lfs-decls.patch (from rev 135900, 
zlib/repos/testing-x86_64/zlib-1.2.5-lfs-decls.patch)
===
--- core-x86_64/zlib-1.2.5-lfs-decls.patch  (rev 0)
+++ core-x86_64/zlib-1.2.5-lfs-decls.patch  2011-08-20 07:14:14 UTC (rev 
135916)
@@ -0,0 +1,13 @@
+Index: zlib-1.2.5/zlib.h
+===
+--- zlib-1.2.5.orig/zlib.h
 zlib-1.2.5/zlib.h
+@@ -1578,7 +1578,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF(
+ #  define gzoffset gzoffset64
+ #  

[arch-commits] Commit in binutils/repos (5 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:17
  Author: allan
Revision: 135919

db-move: moved binutils from [testing] to [core] (i686)

Added:
  binutils/repos/core-i686/PKGBUILD
(from rev 135900, binutils/repos/testing-i686/PKGBUILD)
  binutils/repos/core-i686/binutils.install
(from rev 135900, binutils/repos/testing-i686/binutils.install)
Deleted:
  binutils/repos/core-i686/PKGBUILD
  binutils/repos/core-i686/binutils.install
  binutils/repos/testing-i686/

--+
 PKGBUILD |  166 ++---
 binutils.install |   34 +-
 2 files changed, 100 insertions(+), 100 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:14:16 UTC (rev 135918)
+++ core-i686/PKGBUILD  2011-08-20 07:14:17 UTC (rev 135919)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
-
-pkgname=binutils
-pkgver=2.21.1
-pkgrel=1
-_date=20110627
-pkgdesc=A set of programs to assemble and manipulate binary and object files
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/binutils/;
-license=('GPL')
-groups=('base')
-depends=('glibc=2.14' 'zlib')
-checkdepends=('dejagnu')
-options=('!libtool' '!distcc' '!ccache')
-install=binutils.install
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}_${_date}.tar.bz2)
-md5sums=('2face559e80d649ba148e42bb2d1fb0f')
-
-mksource() {
-  mkdir ${pkgname}-${_date}
-  cd ${pkgname}-${_date}
-  export _TAG=binutils-2_21-branch
-  export 'CVSROOT=:pserver:anon...@sourceware.org:/cvs/src'
-  cvs -z9 co -r $_TAG binutils || return 1
-  mv src binutils
-  tar -cvjf ../binutils-${pkgver}_${_date}.tar.bz2 binutils/*
-}
-
-build() {
-  cd ${srcdir}
-  mkdir binutils-build  cd binutils-build
-
-  [[ $CARCH == x86_64 ]]  CONFIGFLAG=--enable-64-bit-bfd 
--disable-multilib
-
-  ${srcdir}/binutils/configure --prefix=/usr \
---enable-ld=default --enable-gold \
---enable-plugins --enable-threads \
---enable-shared $CONFIGFLAG
-
-  # check the host environment and makes sure all the necessary tools are 
available
-  make configure-host
-
-  make tooldir=${pkgdir}/usr
-}
-
-check() {
-  cd ${srcdir}/binutils-build
-
-  # do not abort on errors - manually check log files
-  make -k -j1 check || true
-}
-
-package() {
-  cd ${srcdir}/binutils-build
-  make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install
-  
-  # Add some useful headers
-  install -m644 ${srcdir}/binutils/include/libiberty.h ${pkgdir}/usr/include
-  install -m644 ${srcdir}/binutils/include/demangle.h ${pkgdir}/usr/include
-
-  # Rebuild libiberty.a with -fPIC
-  make -C libiberty clean
-  make CFLAGS=$CFLAGS -fPIC -C libiberty
-  install -m644 libiberty/libiberty.a ${pkgdir}/usr/lib
-
-  # Rebuild libbfd.a with -fPIC
-  make -C bfd clean
-  # hidden visability prevent 3rd party shared libraries exporting bfd 
non-stable API
-  make CFLAGS=$CFLAGS -fPIC -fvisibility=hidden -C bfd
-  install -m644 bfd/libbfd.a ${pkgdir}/usr/lib
-
-  # Remove Windows/Novell specific man pages
-  rm -f ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
-
-  # Remove these symlinks, they are not ABI stable.
-  # Programs should compile static to the .a file.
-  rm -f ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
-  echo INPUT ( /usr/lib/libbfd.a -liberty -lz ) ${pkgdir}/usr/lib/libbfd.so
-  echo INPUT ( /usr/lib/libopcodes.a -lbfd ) ${pkgdir}/usr/lib/libopcodes.so
-}

Copied: binutils/repos/core-i686/PKGBUILD (from rev 135900, 
binutils/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-20 07:14:17 UTC (rev 135919)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
+
+pkgname=binutils
+pkgver=2.21.1
+pkgrel=2
+_date=20110627
+pkgdesc=A set of programs to assemble and manipulate binary and object files
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/binutils/;
+license=('GPL')
+groups=('base')
+depends=('glibc=2.14' 'zlib')
+checkdepends=('dejagnu')
+options=('!libtool' '!distcc' '!ccache')
+install=binutils.install
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}_${_date}.tar.bz2)
+md5sums=('2face559e80d649ba148e42bb2d1fb0f')
+
+mksource() {
+  mkdir ${pkgname}-${_date}
+  cd ${pkgname}-${_date}
+  export _TAG=binutils-2_21-branch
+  export 'CVSROOT=:pserver:anon...@sourceware.org:/cvs/src'
+  cvs -z9 co -r $_TAG binutils || return 1
+  mv src binutils
+  tar -cvjf ../binutils-${pkgver}_${_date}.tar.bz2 binutils/*
+}
+
+build() {
+  cd ${srcdir}
+  mkdir binutils-build  cd binutils-build
+
+  [[ $CARCH == x86_64 ]]  CONFIGFLAG=--enable-64-bit-bfd 
--disable-multilib
+
+  ${srcdir}/binutils/configure 

[arch-commits] Commit in binutils/repos (5 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:19
  Author: allan
Revision: 135920

db-move: moved binutils from [testing] to [core] (x86_64)

Added:
  binutils/repos/core-x86_64/PKGBUILD
(from rev 135900, binutils/repos/testing-x86_64/PKGBUILD)
  binutils/repos/core-x86_64/binutils.install
(from rev 135900, binutils/repos/testing-x86_64/binutils.install)
Deleted:
  binutils/repos/core-x86_64/PKGBUILD
  binutils/repos/core-x86_64/binutils.install
  binutils/repos/testing-x86_64/

--+
 PKGBUILD |  166 ++---
 binutils.install |   34 +-
 2 files changed, 100 insertions(+), 100 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:14:17 UTC (rev 135919)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:19 UTC (rev 135920)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
-
-pkgname=binutils
-pkgver=2.21.1
-pkgrel=1
-_date=20110627
-pkgdesc=A set of programs to assemble and manipulate binary and object files
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/binutils/;
-license=('GPL')
-groups=('base')
-depends=('glibc=2.14' 'zlib')
-checkdepends=('dejagnu')
-options=('!libtool' '!distcc' '!ccache')
-install=binutils.install
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}_${_date}.tar.bz2)
-md5sums=('2face559e80d649ba148e42bb2d1fb0f')
-
-mksource() {
-  mkdir ${pkgname}-${_date}
-  cd ${pkgname}-${_date}
-  export _TAG=binutils-2_21-branch
-  export 'CVSROOT=:pserver:anon...@sourceware.org:/cvs/src'
-  cvs -z9 co -r $_TAG binutils || return 1
-  mv src binutils
-  tar -cvjf ../binutils-${pkgver}_${_date}.tar.bz2 binutils/*
-}
-
-build() {
-  cd ${srcdir}
-  mkdir binutils-build  cd binutils-build
-
-  [[ $CARCH == x86_64 ]]  CONFIGFLAG=--enable-64-bit-bfd 
--disable-multilib
-
-  ${srcdir}/binutils/configure --prefix=/usr \
---enable-ld=default --enable-gold \
---enable-plugins --enable-threads \
---enable-shared $CONFIGFLAG
-
-  # check the host environment and makes sure all the necessary tools are 
available
-  make configure-host
-
-  make tooldir=${pkgdir}/usr
-}
-
-check() {
-  cd ${srcdir}/binutils-build
-
-  # do not abort on errors - manually check log files
-  make -k -j1 check || true
-}
-
-package() {
-  cd ${srcdir}/binutils-build
-  make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install
-  
-  # Add some useful headers
-  install -m644 ${srcdir}/binutils/include/libiberty.h ${pkgdir}/usr/include
-  install -m644 ${srcdir}/binutils/include/demangle.h ${pkgdir}/usr/include
-
-  # Rebuild libiberty.a with -fPIC
-  make -C libiberty clean
-  make CFLAGS=$CFLAGS -fPIC -C libiberty
-  install -m644 libiberty/libiberty.a ${pkgdir}/usr/lib
-
-  # Rebuild libbfd.a with -fPIC
-  make -C bfd clean
-  # hidden visability prevent 3rd party shared libraries exporting bfd 
non-stable API
-  make CFLAGS=$CFLAGS -fPIC -fvisibility=hidden -C bfd
-  install -m644 bfd/libbfd.a ${pkgdir}/usr/lib
-
-  # Remove Windows/Novell specific man pages
-  rm -f ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
-
-  # Remove these symlinks, they are not ABI stable.
-  # Programs should compile static to the .a file.
-  rm -f ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
-  echo INPUT ( /usr/lib/libbfd.a -liberty -lz ) ${pkgdir}/usr/lib/libbfd.so
-  echo INPUT ( /usr/lib/libopcodes.a -lbfd ) ${pkgdir}/usr/lib/libopcodes.so
-}

Copied: binutils/repos/core-x86_64/PKGBUILD (from rev 135900, 
binutils/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:19 UTC (rev 135920)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
+
+pkgname=binutils
+pkgver=2.21.1
+pkgrel=2
+_date=20110627
+pkgdesc=A set of programs to assemble and manipulate binary and object files
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/binutils/;
+license=('GPL')
+groups=('base')
+depends=('glibc=2.14' 'zlib')
+checkdepends=('dejagnu')
+options=('!libtool' '!distcc' '!ccache')
+install=binutils.install
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}_${_date}.tar.bz2)
+md5sums=('2face559e80d649ba148e42bb2d1fb0f')
+
+mksource() {
+  mkdir ${pkgname}-${_date}
+  cd ${pkgname}-${_date}
+  export _TAG=binutils-2_21-branch
+  export 'CVSROOT=:pserver:anon...@sourceware.org:/cvs/src'
+  cvs -z9 co -r $_TAG binutils || return 1
+  mv src binutils
+  tar -cvjf ../binutils-${pkgver}_${_date}.tar.bz2 binutils/*
+}
+
+build() {
+  cd ${srcdir}
+  mkdir binutils-build  cd binutils-build
+
+  [[ $CARCH == x86_64 ]]  CONFIGFLAG=--enable-64-bit-bfd 

[arch-commits] Commit in gcc/repos (17 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:22
  Author: allan
Revision: 135922

db-move: moved gcc from [testing] to [core] (x86_64)

Added:
  gcc/repos/core-x86_64/PKGBUILD
(from rev 135900, gcc/repos/testing-x86_64/PKGBUILD)
  gcc/repos/core-x86_64/gcc-ada.install
(from rev 135900, gcc/repos/testing-x86_64/gcc-ada.install)
  gcc/repos/core-x86_64/gcc-fortran.install
(from rev 135900, gcc/repos/testing-x86_64/gcc-fortran.install)
  gcc/repos/core-x86_64/gcc-go.install
(from rev 135900, gcc/repos/testing-x86_64/gcc-go.install)
  gcc/repos/core-x86_64/gcc-hash-style-both.patch
(from rev 135900, gcc/repos/testing-x86_64/gcc-hash-style-both.patch)
  gcc/repos/core-x86_64/gcc-libs.install
(from rev 135900, gcc/repos/testing-x86_64/gcc-libs.install)
  gcc/repos/core-x86_64/gcc.install
(from rev 135900, gcc/repos/testing-x86_64/gcc.install)
  gcc/repos/core-x86_64/gcc_pure64.patch
(from rev 135900, gcc/repos/testing-x86_64/gcc_pure64.patch)
Deleted:
  gcc/repos/core-x86_64/PKGBUILD
  gcc/repos/core-x86_64/gcc-ada.install
  gcc/repos/core-x86_64/gcc-fortran.install
  gcc/repos/core-x86_64/gcc-go.install
  gcc/repos/core-x86_64/gcc-hash-style-both.patch
  gcc/repos/core-x86_64/gcc-libs.install
  gcc/repos/core-x86_64/gcc.install
  gcc/repos/core-x86_64/gcc_pure64.patch
  gcc/repos/testing-x86_64/

---+
 PKGBUILD  |  516 ++--
 gcc-ada.install   |   40 +--
 gcc-fortran.install   |   32 +-
 gcc-go.install|   40 +--
 gcc-hash-style-both.patch |  244 ++--
 gcc-libs.install  |   32 +-
 gcc.install   |   40 +--
 gcc_pure64.patch  |   52 ++--
 8 files changed, 502 insertions(+), 494 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:14:20 UTC (rev 135921)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:22 UTC (rev 135922)
@@ -1,254 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
-# NOTE: libtool requires rebuilt with each new gcc version
-
-pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
-pkgver=4.6.1
-pkgrel=2
-#_snapshot=4.6-20110603
-_libstdcppmanver=20110201  # Note: check source directory name 
when updating this
-pkgdesc=The GNU Compiler Collection
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL' 'custom')
-url=http://gcc.gnu.org;
-makedepends=('binutils=2.21-9' 'libmpc' 'cloog' 'ppl' 'gcc-ada')
-checkdepends=('dejagnu')
-options=('!libtool' '!emptydirs')
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
-   
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
-   
ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2
-   gcc_pure64.patch
-   gcc-hash-style-both.patch)
-md5sums=('c57a9170c677bf795bdc04ed796ca491'
- '1e9fd2eaf0ee47ea64e82c48998f1999'
- '4030ee1c08dd1e843c0225b772360e76'
- '4df25b623799b148a0703eaeec8fdf3f')
-
-if [ -n ${_snapshot} ]; then
-  _basedir=${srcdir}/gcc-${_snapshot}
-else
-  _basedir=${srcdir}/gcc-${pkgver}
-fi
-
-build() {
-  cd ${_basedir}
-
-  # Do not install libiberty
-  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
-
-  # Do not run fixincludes
-  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
-
-  if [ ${CARCH} = x86_64 ]; then
-patch -Np1 -i ${srcdir}/gcc_pure64.patch
-  fi
-  patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch
-
-  echo ${pkgver}  gcc/BASE-VER
-
-  cd ${srcdir}
-  mkdir gcc-build  cd gcc-build
-
-  ${_basedir}/configure --prefix=/usr \
-  --libdir=/usr/lib --libexecdir=/usr/lib \
-  --mandir=/usr/share/man --infodir=/usr/share/info \
-  --with-bugurl=https://bugs.archlinux.org/ \
-  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
-  --enable-shared --enable-threads=posix \
-  --with-system-zlib --enable-__cxa_atexit \
-  --disable-libunwind-exceptions --enable-clocale=gnu \
-  --enable-gnu-unique-object --enable-linker-build-id \
-  --with-ppl --enable-cloog-backend=isl \
-  --enable-lto --enable-gold --enable-ld=default \
-  --enable-plugin --with-plugin-ld=ld.gold \
-  --disable-multilib --disable-libstdcxx-pch \
-  --enable-checking=release
-  make
-}
-
-check() {
-  cd gcc-build
-
-  # increase stack size to prevent test failures
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
-  ulimit -s 32768
-
-  # do not abort on error as some are expected
-  make -k check || true
-  ${_basedir}/contrib/test_summary
-}
-
-package_gcc-libs()
-{
-  pkgdesc=Runtime libraries shipped by GCC
-  groups=('base')
-  depends=('glibc=2.14')
-  install=gcc-libs.install
-
-  cd gcc-build
-  make -j1 -C $CHOST/libgcc DESTDIR=${pkgdir} install-shared
- 

[arch-commits] Commit in glibc/repos (33 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:25
  Author: allan
Revision: 135923

db-move: moved glibc from [testing] to [core] (i686)

Added:
  glibc/repos/core-i686/PKGBUILD
(from rev 135900, glibc/repos/testing-i686/PKGBUILD)
  glibc/repos/core-i686/glibc-2.10-bz4781.patch
(from rev 135900, glibc/repos/testing-i686/glibc-2.10-bz4781.patch)
  glibc/repos/core-i686/glibc-2.10-dont-build-timezone.patch
(from rev 135900, 
glibc/repos/testing-i686/glibc-2.10-dont-build-timezone.patch)
  glibc/repos/core-i686/glibc-2.12.1-static-shared-getpagesize.patch
(from rev 135900, 
glibc/repos/testing-i686/glibc-2.12.1-static-shared-getpagesize.patch)
  glibc/repos/core-i686/glibc-2.12.2-ignore-origin-of-privileged-program.patch
(from rev 135900, 
glibc/repos/testing-i686/glibc-2.12.2-ignore-origin-of-privileged-program.patch)
  glibc/repos/core-i686/glibc-2.13-futex.patch
(from rev 135900, glibc/repos/testing-i686/glibc-2.13-futex.patch)
  glibc/repos/core-i686/glibc-2.14-fix-resolver-crash-typo.patch
(from rev 135900, 
glibc/repos/testing-i686/glibc-2.14-fix-resolver-crash-typo.patch)
  glibc/repos/core-i686/glibc-2.14-libdl-crash.patch
(from rev 135900, glibc/repos/testing-i686/glibc-2.14-libdl-crash.patch)
  glibc/repos/core-i686/glibc-2.14-reexport-rpc-interface.patch
(from rev 135900, 
glibc/repos/testing-i686/glibc-2.14-reexport-rpc-interface.patch)
  glibc/repos/core-i686/glibc-2.14-reinstall-nis-rpc-headers.patch
(from rev 135900, 
glibc/repos/testing-i686/glibc-2.14-reinstall-nis-rpc-headers.patch)
  glibc/repos/core-i686/glibc-2.14-revert-4462fad3.patch
(from rev 135900, glibc/repos/testing-i686/glibc-2.14-revert-4462fad3.patch)
  glibc/repos/core-i686/glibc-__i686.patch
(from rev 135900, glibc/repos/testing-i686/glibc-__i686.patch)
  glibc/repos/core-i686/glibc.install
(from rev 135900, glibc/repos/testing-i686/glibc.install)
  glibc/repos/core-i686/locale-gen
(from rev 135900, glibc/repos/testing-i686/locale-gen)
  glibc/repos/core-i686/locale.gen.txt
(from rev 135900, glibc/repos/testing-i686/locale.gen.txt)
  glibc/repos/core-i686/nscd
(from rev 135900, glibc/repos/testing-i686/nscd)
Deleted:
  glibc/repos/core-i686/PKGBUILD
  glibc/repos/core-i686/glibc-2.10-bz4781.patch
  glibc/repos/core-i686/glibc-2.10-dont-build-timezone.patch
  glibc/repos/core-i686/glibc-2.12.1-static-shared-getpagesize.patch
  glibc/repos/core-i686/glibc-2.12.2-ignore-origin-of-privileged-program.patch
  glibc/repos/core-i686/glibc-2.13-futex.patch
  glibc/repos/core-i686/glibc-2.14-fix-resolver-crash-typo.patch
  glibc/repos/core-i686/glibc-2.14-libdl-crash.patch
  glibc/repos/core-i686/glibc-2.14-reexport-rpc-interface.patch
  glibc/repos/core-i686/glibc-2.14-reinstall-nis-rpc-headers.patch
  glibc/repos/core-i686/glibc-2.14-revert-4462fad3.patch
  glibc/repos/core-i686/glibc-__i686.patch
  glibc/repos/core-i686/glibc.install
  glibc/repos/core-i686/locale-gen
  glibc/repos/core-i686/locale.gen.txt
  glibc/repos/core-i686/nscd
  glibc/repos/testing-i686/

+
 PKGBUILD   |  391 +++
 glibc-2.10-bz4781.patch|   84 +--
 glibc-2.10-dont-build-timezone.patch   |   26 
 glibc-2.12.1-static-shared-getpagesize.patch   |   22 
 glibc-2.12.2-ignore-origin-of-privileged-program.patch |   52 -
 glibc-2.13-futex.patch |   62 +-
 glibc-2.14-fix-resolver-crash-typo.patch   |   44 -
 glibc-2.14-libdl-crash.patch   |  264 +-
 glibc-2.14-reexport-rpc-interface.patch|   52 -
 glibc-2.14-reinstall-nis-rpc-headers.patch |   56 +-
 glibc-2.14-revert-4462fad3.patch   |   74 +-
 glibc-__i686.patch |   26 
 glibc.install  |   40 -
 locale-gen |   84 +--
 locale.gen.txt |   46 -
 nscd   |   80 +--
 16 files changed, 709 insertions(+), 694 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 135922:135923 to see the changes.


[arch-commits] Commit in glibc/repos (33 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:27
  Author: allan
Revision: 135924

db-move: moved glibc from [testing] to [core] (x86_64)

Added:
  glibc/repos/core-x86_64/PKGBUILD
(from rev 135900, glibc/repos/testing-x86_64/PKGBUILD)
  glibc/repos/core-x86_64/glibc-2.10-bz4781.patch
(from rev 135900, glibc/repos/testing-x86_64/glibc-2.10-bz4781.patch)
  glibc/repos/core-x86_64/glibc-2.10-dont-build-timezone.patch
(from rev 135900, 
glibc/repos/testing-x86_64/glibc-2.10-dont-build-timezone.patch)
  glibc/repos/core-x86_64/glibc-2.12.1-static-shared-getpagesize.patch
(from rev 135900, 
glibc/repos/testing-x86_64/glibc-2.12.1-static-shared-getpagesize.patch)
  glibc/repos/core-x86_64/glibc-2.12.2-ignore-origin-of-privileged-program.patch
(from rev 135900, 
glibc/repos/testing-x86_64/glibc-2.12.2-ignore-origin-of-privileged-program.patch)
  glibc/repos/core-x86_64/glibc-2.13-futex.patch
(from rev 135900, glibc/repos/testing-x86_64/glibc-2.13-futex.patch)
  glibc/repos/core-x86_64/glibc-2.14-fix-resolver-crash-typo.patch
(from rev 135900, 
glibc/repos/testing-x86_64/glibc-2.14-fix-resolver-crash-typo.patch)
  glibc/repos/core-x86_64/glibc-2.14-libdl-crash.patch
(from rev 135900, glibc/repos/testing-x86_64/glibc-2.14-libdl-crash.patch)
  glibc/repos/core-x86_64/glibc-2.14-reexport-rpc-interface.patch
(from rev 135900, 
glibc/repos/testing-x86_64/glibc-2.14-reexport-rpc-interface.patch)
  glibc/repos/core-x86_64/glibc-2.14-reinstall-nis-rpc-headers.patch
(from rev 135900, 
glibc/repos/testing-x86_64/glibc-2.14-reinstall-nis-rpc-headers.patch)
  glibc/repos/core-x86_64/glibc-2.14-revert-4462fad3.patch
(from rev 135900, 
glibc/repos/testing-x86_64/glibc-2.14-revert-4462fad3.patch)
  glibc/repos/core-x86_64/glibc-__i686.patch
(from rev 135900, glibc/repos/testing-x86_64/glibc-__i686.patch)
  glibc/repos/core-x86_64/glibc.install
(from rev 135900, glibc/repos/testing-x86_64/glibc.install)
  glibc/repos/core-x86_64/locale-gen
(from rev 135900, glibc/repos/testing-x86_64/locale-gen)
  glibc/repos/core-x86_64/locale.gen.txt
(from rev 135900, glibc/repos/testing-x86_64/locale.gen.txt)
  glibc/repos/core-x86_64/nscd
(from rev 135900, glibc/repos/testing-x86_64/nscd)
Deleted:
  glibc/repos/core-x86_64/PKGBUILD
  glibc/repos/core-x86_64/glibc-2.10-bz4781.patch
  glibc/repos/core-x86_64/glibc-2.10-dont-build-timezone.patch
  glibc/repos/core-x86_64/glibc-2.12.1-static-shared-getpagesize.patch
  glibc/repos/core-x86_64/glibc-2.12.2-ignore-origin-of-privileged-program.patch
  glibc/repos/core-x86_64/glibc-2.13-futex.patch
  glibc/repos/core-x86_64/glibc-2.14-fix-resolver-crash-typo.patch
  glibc/repos/core-x86_64/glibc-2.14-libdl-crash.patch
  glibc/repos/core-x86_64/glibc-2.14-reexport-rpc-interface.patch
  glibc/repos/core-x86_64/glibc-2.14-reinstall-nis-rpc-headers.patch
  glibc/repos/core-x86_64/glibc-2.14-revert-4462fad3.patch
  glibc/repos/core-x86_64/glibc-__i686.patch
  glibc/repos/core-x86_64/glibc.install
  glibc/repos/core-x86_64/locale-gen
  glibc/repos/core-x86_64/locale.gen.txt
  glibc/repos/core-x86_64/nscd
  glibc/repos/testing-x86_64/

+
 PKGBUILD   |  391 +++
 glibc-2.10-bz4781.patch|   84 +--
 glibc-2.10-dont-build-timezone.patch   |   26 
 glibc-2.12.1-static-shared-getpagesize.patch   |   22 
 glibc-2.12.2-ignore-origin-of-privileged-program.patch |   52 -
 glibc-2.13-futex.patch |   62 +-
 glibc-2.14-fix-resolver-crash-typo.patch   |   44 -
 glibc-2.14-libdl-crash.patch   |  264 +-
 glibc-2.14-reexport-rpc-interface.patch|   52 -
 glibc-2.14-reinstall-nis-rpc-headers.patch |   56 +-
 glibc-2.14-revert-4462fad3.patch   |   74 +-
 glibc-__i686.patch |   26 
 glibc.install  |   40 -
 locale-gen |   84 +--
 locale.gen.txt |   46 -
 nscd   |   80 +--
 16 files changed, 709 insertions(+), 694 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 135923:135924 to see the changes.


[arch-commits] Commit in sudo/repos (5 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:29
  Author: allan
Revision: 135925

db-move: moved sudo from [testing] to [core] (i686)

Added:
  sudo/repos/core-i686/PKGBUILD
(from rev 135900, sudo/repos/testing-i686/PKGBUILD)
  sudo/repos/core-i686/sudo.pam
(from rev 135900, sudo/repos/testing-i686/sudo.pam)
Deleted:
  sudo/repos/core-i686/PKGBUILD
  sudo/repos/core-i686/sudo.pam
  sudo/repos/testing-i686/

--+
 PKGBUILD |   74 ++---
 sudo.pam |6 ++--
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-20 07:14:27 UTC (rev 135924)
+++ core-i686/PKGBUILD  2011-08-20 07:14:29 UTC (rev 135925)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=sudo
-_ver=1.8.1p2
-pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
-pkgrel=1
-pkgdesc=Give certain users the ability to run some commands as root
-arch=('i686' 'x86_64')
-url=http://www.sudo.ws/sudo/;
-license=('custom')
-depends=('glibc' 'pam')
-backup=('etc/sudoers' 'etc/pam.d/sudo')
-options=('!libtool' '!makeflags')
-source=(ftp://ftp.sudo.ws/pub/sudo/$pkgname-$_ver.tar.gz
-sudo.pam)
-md5sums=('e8330f0e63b0ecb2e12b5c76922818cc'
- '4e7ad4ec8f2fe6a40e12bcb2c0b256e3')
-
-build() {
-  cd $srcdir/$pkgname-$_ver
-
-  ./configure --prefix=/usr --with-pam --libexecdir=/usr/lib \
---with-env-editor --with-all-insults --with-logfac=auth
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$_ver
-  install -dm755 $pkgdir/var/lib
-
-  make DESTDIR=$pkgdir install
-  install -Dm644 $srcdir/sudo.pam $pkgdir/etc/pam.d/sudo
-
-  install -Dm644 doc/LICENSE $pkgdir/usr/share/licenses/sudo/LICENSE
-}

Copied: sudo/repos/core-i686/PKGBUILD (from rev 135900, 
sudo/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-20 07:14:29 UTC (rev 135925)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=sudo
+_ver=1.8.2
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+pkgrel=1
+pkgdesc=Give certain users the ability to run some commands as root
+arch=('i686' 'x86_64')
+url=http://www.sudo.ws/sudo/;
+license=('custom')
+depends=('glibc' 'pam')
+backup=('etc/sudoers' 'etc/pam.d/sudo')
+options=('!libtool' '!makeflags')
+source=(ftp://ftp.sudo.ws/pub/sudo/$pkgname-$_ver.tar.gz
+sudo.pam)
+md5sums=('000f458e7391be9fdf459a9ad6a4912a'
+ '4e7ad4ec8f2fe6a40e12bcb2c0b256e3')
+
+build() {
+  cd $srcdir/$pkgname-$_ver
+
+  ./configure --prefix=/usr --with-pam --libexecdir=/usr/lib \
+--with-env-editor --with-all-insults --with-logfac=auth
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_ver
+  install -dm755 $pkgdir/var/lib
+
+  make DESTDIR=$pkgdir install
+  install -Dm644 $srcdir/sudo.pam $pkgdir/etc/pam.d/sudo
+
+  install -Dm644 doc/LICENSE $pkgdir/usr/share/licenses/sudo/LICENSE
+}

Deleted: core-i686/sudo.pam
===
--- core-i686/sudo.pam  2011-08-20 07:14:27 UTC (rev 135924)
+++ core-i686/sudo.pam  2011-08-20 07:14:29 UTC (rev 135925)
@@ -1,3 +0,0 @@
-#%PAM-1.0
-auth   requiredpam_unix.so
-auth   requiredpam_nologin.so

Copied: sudo/repos/core-i686/sudo.pam (from rev 135900, 
sudo/repos/testing-i686/sudo.pam)
===
--- core-i686/sudo.pam  (rev 0)
+++ core-i686/sudo.pam  2011-08-20 07:14:29 UTC (rev 135925)
@@ -0,0 +1,3 @@
+#%PAM-1.0
+auth   requiredpam_unix.so
+auth   requiredpam_nologin.so



[arch-commits] Commit in sudo/repos (5 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 03:14:30
  Author: allan
Revision: 135926

db-move: moved sudo from [testing] to [core] (x86_64)

Added:
  sudo/repos/core-x86_64/PKGBUILD
(from rev 135900, sudo/repos/testing-x86_64/PKGBUILD)
  sudo/repos/core-x86_64/sudo.pam
(from rev 135900, sudo/repos/testing-x86_64/sudo.pam)
Deleted:
  sudo/repos/core-x86_64/PKGBUILD
  sudo/repos/core-x86_64/sudo.pam
  sudo/repos/testing-x86_64/

--+
 PKGBUILD |   74 ++---
 sudo.pam |6 ++--
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-20 07:14:29 UTC (rev 135925)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:30 UTC (rev 135926)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=sudo
-_ver=1.8.1p2
-pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
-pkgrel=1
-pkgdesc=Give certain users the ability to run some commands as root
-arch=('i686' 'x86_64')
-url=http://www.sudo.ws/sudo/;
-license=('custom')
-depends=('glibc' 'pam')
-backup=('etc/sudoers' 'etc/pam.d/sudo')
-options=('!libtool' '!makeflags')
-source=(ftp://ftp.sudo.ws/pub/sudo/$pkgname-$_ver.tar.gz
-sudo.pam)
-md5sums=('e8330f0e63b0ecb2e12b5c76922818cc'
- '4e7ad4ec8f2fe6a40e12bcb2c0b256e3')
-
-build() {
-  cd $srcdir/$pkgname-$_ver
-
-  ./configure --prefix=/usr --with-pam --libexecdir=/usr/lib \
---with-env-editor --with-all-insults --with-logfac=auth
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$_ver
-  install -dm755 $pkgdir/var/lib
-
-  make DESTDIR=$pkgdir install
-  install -Dm644 $srcdir/sudo.pam $pkgdir/etc/pam.d/sudo
-
-  install -Dm644 doc/LICENSE $pkgdir/usr/share/licenses/sudo/LICENSE
-}

Copied: sudo/repos/core-x86_64/PKGBUILD (from rev 135900, 
sudo/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-20 07:14:30 UTC (rev 135926)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=sudo
+_ver=1.8.2
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+pkgrel=1
+pkgdesc=Give certain users the ability to run some commands as root
+arch=('i686' 'x86_64')
+url=http://www.sudo.ws/sudo/;
+license=('custom')
+depends=('glibc' 'pam')
+backup=('etc/sudoers' 'etc/pam.d/sudo')
+options=('!libtool' '!makeflags')
+source=(ftp://ftp.sudo.ws/pub/sudo/$pkgname-$_ver.tar.gz
+sudo.pam)
+md5sums=('000f458e7391be9fdf459a9ad6a4912a'
+ '4e7ad4ec8f2fe6a40e12bcb2c0b256e3')
+
+build() {
+  cd $srcdir/$pkgname-$_ver
+
+  ./configure --prefix=/usr --with-pam --libexecdir=/usr/lib \
+--with-env-editor --with-all-insults --with-logfac=auth
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_ver
+  install -dm755 $pkgdir/var/lib
+
+  make DESTDIR=$pkgdir install
+  install -Dm644 $srcdir/sudo.pam $pkgdir/etc/pam.d/sudo
+
+  install -Dm644 doc/LICENSE $pkgdir/usr/share/licenses/sudo/LICENSE
+}

Deleted: core-x86_64/sudo.pam
===
--- core-x86_64/sudo.pam2011-08-20 07:14:29 UTC (rev 135925)
+++ core-x86_64/sudo.pam2011-08-20 07:14:30 UTC (rev 135926)
@@ -1,3 +0,0 @@
-#%PAM-1.0
-auth   requiredpam_unix.so
-auth   requiredpam_nologin.so

Copied: sudo/repos/core-x86_64/sudo.pam (from rev 135900, 
sudo/repos/testing-x86_64/sudo.pam)
===
--- core-x86_64/sudo.pam(rev 0)
+++ core-x86_64/sudo.pam2011-08-20 07:14:30 UTC (rev 135926)
@@ -0,0 +1,3 @@
+#%PAM-1.0
+auth   requiredpam_unix.so
+auth   requiredpam_nologin.so



[arch-commits] Commit in gpsd/trunk (PKGBUILD gpsd gpsd.conf.d)

2011-08-20 Thread Andrea Scarpino
Date: Saturday, August 20, 2011 @ 06:14:36
  Author: andrea
Revision: 135927

Fix man pages again; use our gpsd conf.d file; rc.d script updated/cleanup

Added:
  gpsd/trunk/gpsd.conf.d
Modified:
  gpsd/trunk/PKGBUILD
  gpsd/trunk/gpsd

-+
 PKGBUILD|   19 ---
 gpsd|   19 ++-
 gpsd.conf.d |5 +
 3 files changed, 23 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-20 07:14:30 UTC (rev 135926)
+++ PKGBUILD2011-08-20 10:14:36 UTC (rev 135927)
@@ -6,7 +6,7 @@
 
 pkgname=gpsd
 pkgver=3.0
-pkgrel=1
+pkgrel=2
 pkgdesc=GPS daemon and library to support USB/serial GPS devices
 arch=('i686' 'x86_64')
 url=http://gpsd.berlios.de;
@@ -19,9 +19,10 @@
 options=('!libtool' '!buildflags')
 install=${pkgname}.install
 source=(http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'gpsd')
+'gpsd' 'gpsd.conf.d')
 md5sums=('c63d41a26868e9bdd48d9e311a9cc42c'
- 'e287d4b34a4eb1da27f12533ae9b6dd5')
+ 'ffa9325cb53bf900b76d064b03ff71b7'
+ '5ebad060285f400fd202aef8fd5ed2a9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -43,15 +44,13 @@
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
+  # Fix man pages path (FS#21715)
+  sed -i 's|.so gps.1|.so man1/gps.1|' cgps.1 lcdgps.1 xgps.1 xgpsspeed.1
+
   export DESTDIR=${pkgdir}
   scons install
 
-  # Our own udev-install since the Makefile uses absolute paths
-  # Original file names are [mostly] unmodified: useful to match process name 
in case of error
-  # Following the switch from hotplug to udev helper scripts now live in 
/lib/udev/ instead of /etc/hotplug/
-  sed -i 's|GPSD_OPTIONS=|GPSD_OPTIONS=-P /var/run/gpsd/gpsd.pid|' 
packaging/deb/etc_default_gpsd
-  sed -i 's|/var/run/gpsd.sock|/var/run/gpsd/gpsd.sock|' 
packaging/deb/etc_default_gpsd
-  install -D -m644 packaging/deb/etc_default_gpsd ${pkgdir}/etc/conf.d/gpsd
+  install -D -m644 ${srcdir}/gpsd.conf.d ${pkgdir}/etc/conf.d/gpsd
 
   install -D -m644 gpsd.rules ${pkgdir}/lib/udev/rules.d/99-gpsd-usb.rules
 
@@ -74,5 +73,3 @@
 
   install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }
-md5sums=('c63d41a26868e9bdd48d9e311a9cc42c'
- '0d5879df32833ca67a5491ce1ff98dcc')

Modified: gpsd
===
--- gpsd2011-08-20 07:14:30 UTC (rev 135926)
+++ gpsd2011-08-20 10:14:36 UTC (rev 135927)
@@ -6,29 +6,30 @@
 
 NAME=gpsd
 DAEMON=/usr/sbin/$NAME
-PID=$(pidof -o %PPID /usr/sbin/gpsd)
+PIDFILE=/var/run/$NAME/$NAME.pid
+PID=$(cat $PIDFILE 2/dev/null)
 
 case $1 in
start)
-   stat_busy Starting gpsd
-   [ ! -d /var/run/gpsd ]  install -d /var/run/gpsd
-   [ -z $PID ]  $DAEMON ${GPSD_OPTIONS} -F ${GPSD_SOCKET} ${DEVICES}
+   stat_busy Starting $NAME
+   [ ! -d /var/run/$NAME ]  install -d /var/run/$NAME
+   [ -z $PID ]  $DAEMON -P $PIDFILE -F /var/run/$NAME/$NAME.sock 
${OPTIONS} ${DEVICE}
if [ $? -gt 0 ]; then
stat_fail
else
-   add_daemon gpsd
+   add_daemon $NAME
stat_done
fi
;;
stop)
-   stat_busy Stopping gpsd
+   stat_busy Stopping $NAME
[ ! -z $PID ]   kill $PID  /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
-   rm -f /var/run/gpsd/$PID.pid /dev/null
-   rm_daemon gpsd
-   stat_done
+   rm -f $PIDFILE /dev/null
+   rm_daemon $NAME
+   stat_done
fi
;;
 

Added: gpsd.conf.d
===
--- gpsd.conf.d (rev 0)
+++ gpsd.conf.d 2011-08-20 10:14:36 UTC (rev 135927)
@@ -0,0 +1,5 @@
+# Default settings for gpsd.
+START_DAEMON=true
+OPTIONS=
+DEVICE=
+USBAUTO=true



[arch-commits] Commit in gpsd/repos (testing-i686)

2011-08-20 Thread Andrea Scarpino
Date: Saturday, August 20, 2011 @ 06:14:45
  Author: andrea
Revision: 135928

archrelease: remove testing-i686

Deleted:
  gpsd/repos/testing-i686/



[arch-commits] Commit in gpsd/repos (testing-i686)

2011-08-20 Thread Andrea Scarpino
Date: Saturday, August 20, 2011 @ 06:14:59
  Author: andrea
Revision: 135929

archrelease: copy trunk to testing-i686

Added:
  gpsd/repos/testing-i686/



[arch-commits] Commit in gpsd/repos (testing-x86_64)

2011-08-20 Thread Andrea Scarpino
Date: Saturday, August 20, 2011 @ 06:15:02
  Author: andrea
Revision: 135930

archrelease: remove testing-x86_64

Deleted:
  gpsd/repos/testing-x86_64/



[arch-commits] Commit in gpsd/repos (testing-x86_64)

2011-08-20 Thread Andrea Scarpino
Date: Saturday, August 20, 2011 @ 06:15:17
  Author: andrea
Revision: 135931

archrelease: copy trunk to testing-x86_64

Added:
  gpsd/repos/testing-x86_64/



[arch-commits] Commit in wicd/trunk (PKGBUILD net-tools.patch)

2011-08-20 Thread Ronald van Haren
Date: Saturday, August 20, 2011 @ 07:35:33
  Author: ronald
Revision: 135932

upgpkg: wicd 1.7.0-11

add patch to be able to extract ip address from new ifconfig output in 
net-tools 1.60.20110819cvs

Added:
  wicd/trunk/net-tools.patch
Modified:
  wicd/trunk/PKGBUILD

-+
 PKGBUILD|   12 
 net-tools.patch |   11 +++
 2 files changed, 19 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-20 10:15:17 UTC (rev 135931)
+++ PKGBUILD2011-08-20 11:35:33 UTC (rev 135932)
@@ -5,7 +5,7 @@
 pkgbase=wicd
 pkgname=('wicd' 'wicd-gtk')
 pkgver=1.7.0
-pkgrel=10
+pkgrel=11
 arch=(any)
 url=http://wicd.sourceforge.net/;
 license=('GPL2')
@@ -15,23 +15,27 @@
 wicd-daemon
 wicd.desktop
 wicd-scripts-execution.patch
-   deepcopy+python27-fixes.patch)
+   deepcopy+python27-fixes.patch
+   net-tools.patch)
 makedepends=('python2')
 options=('emptydirs')
 md5sums=('003d2e67240989db55934553437ba32a'
  'f40e5f59998d0829707a7c9976afa8f8'
  '326df163a5732d38741371baa4fce9e5'
  'f4c377a25aa077cb76955124adfcc03f'
- '1b7ec95efcb8dc0fe48111da19b395b6')
+ '1b7ec95efcb8dc0fe48111da19b395b6'
+ '6cfa7abede7e85248c2305481601d68f')
 
 build() {
   cd $srcdir/$pkgbase-$pkgver
   patch -p0 $srcdir/wicd-scripts-execution.patch
   patch -p1 -i $srcdir/deepcopy+python27-fixes.patch
+  patch -p0 -i $srcdir/net-tools.patch
+
   find . -type f -exec sed -i 's@#!/usr.*python@#!/usr/bin/python2@' {} \;
   export PYTHON=python2
   python2 setup.py configure --no-install-init \
-   
 --resume=/usr/share/wicd/scripts/ \
+--resume=/usr/share/wicd/scripts/ \
  --suspend=/usr/share/wicd/scripts/ \
  --verbose \
  --python=/usr/bin/python2

Added: net-tools.patch
===
--- net-tools.patch (rev 0)
+++ net-tools.patch 2011-08-20 11:35:33 UTC (rev 135932)
@@ -0,0 +1,11 @@
+--- wicd/wnettools.py.bak  2011-08-20 12:55:32.898673334 +0200
 wicd/wnettools.py  2011-08-20 12:55:56.608671946 +0200
+@@ -58,7 +58,7 @@
+ wpa2_pattern = re.compile('(WPA2)', _re_mode)
+ 
+ #iwconfig-only regular expressions.
+-ip_pattern = re.compile(r'inet [Aa]d?dr[^.]*:([^.]*\.[^.]*\.[^.]*\.[0-9]*)', 
re.S)
++ip_pattern = re.compile(r'inet ([^.]*\.[^.]*\.[^.]*\.[0-9]*)', re.S)
+ bssid_pattern = re.compile('.*Access Point: (([0-9A-Z]{2}:){5}[0-9A-Z]{2})', 
_re_mode)
+ bitrate_pattern = re.compile('.*Bit Rate[=:](.*?/s)', _re_mode)
+ opmode_pattern = re.compile('.*Mode:(.*?) ', _re_mode)



[arch-commits] Commit in wicd/repos (10 files)

2011-08-20 Thread Ronald van Haren
Date: Saturday, August 20, 2011 @ 07:37:23
  Author: ronald
Revision: 135933

archrelease: copy trunk to testing-any

Added:
  wicd/repos/testing-any/
  wicd/repos/testing-any/ChangeLog
(from rev 135932, wicd/trunk/ChangeLog)
  wicd/repos/testing-any/PKGBUILD
(from rev 135932, wicd/trunk/PKGBUILD)
  wicd/repos/testing-any/deepcopy+python27-fixes.patch
(from rev 135932, wicd/trunk/deepcopy+python27-fixes.patch)
  wicd/repos/testing-any/wicd-daemon
(from rev 135932, wicd/trunk/wicd-daemon)
  wicd/repos/testing-any/wicd-locale.patch
(from rev 135932, wicd/trunk/wicd-locale.patch)
  wicd/repos/testing-any/wicd-scripts-execution.patch
(from rev 135932, wicd/trunk/wicd-scripts-execution.patch)
  wicd/repos/testing-any/wicd.desktop
(from rev 135932, wicd/trunk/wicd.desktop)
  wicd/repos/testing-any/wicd.install
(from rev 135932, wicd/trunk/wicd.install)
  wicd/repos/testing-any/wicd_in_usr.patch
(from rev 135932, wicd/trunk/wicd_in_usr.patch)

---+
 ChangeLog |   40 +++
 PKGBUILD  |  101 +++
 deepcopy+python27-fixes.patch |   72 +
 wicd-daemon   |   27 +
 wicd-locale.patch |   12 ++
 wicd-scripts-execution.patch  |   24 
 wicd.desktop  |   11 ++
 wicd.install  |   23 
 wicd_in_usr.patch |  208 
 9 files changed, 518 insertions(+)

Copied: wicd/repos/testing-any/ChangeLog (from rev 135932, wicd/trunk/ChangeLog)
===
--- testing-any/ChangeLog   (rev 0)
+++ testing-any/ChangeLog   2011-08-20 11:37:23 UTC (rev 135933)
@@ -0,0 +1,40 @@
+2008-10-07 Giovanni Scafora giova...@archlinux.org
+
+   * wicd-1.5.3
+
+2008-09-03 Giovanni Scafora giova...@archlinux.org
+
+   * wicd-1.5.1
+
+2008-01-11 Varun Acharya va...@archlinux.org
+
+   * wicd-1.4.1-4 moved to extra
+   * locale patch added to extra
+   * ethtool dependency fixed, thanks evdvelde (flyspray #9145)
+   * dhclient,wpa_supplicant are now deps
+   * wicd.install cleaned up
+
+2008-01-09 Varun Acharya va...@archlinux.org
+
+   * wicd-1.4.1-3 now in testing
+   * wicd-locale.patch added to cvs
+   * Locale issues fixed, see #9086
+
+2008-01-06 Varun Acharya va...@archlinux.org
+
+   * wicd-1.4.1 moved to extra
+   * tray icon bug fixed
+   * ChangeLog cleanup, thanks to evil overlord skeletor.
+  
+2008-01-03 Varun Acharya va...@archliunx.org
+
+   * wicd-1.4.0 now in testing
+
+2007-12-20 Varun Acharya va...@archlinux.org
+
+   * Added patch and removed sed from the PKGBUILD in testing
+
+2007-11-05 Varun Acharya va...@archlinux.org
+
+   * Cleaned up PKGBUILD, defaults to /usr/share
+   * Adopted from AUR and moved to testing/extra

Copied: wicd/repos/testing-any/PKGBUILD (from rev 135932, wicd/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-08-20 11:37:23 UTC (rev 135933)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Daniel Isenmann dan...@archlinux.org
+# Contributor: Rashif Don Ray Rahman rayras...@gmail.com
+
+pkgbase=wicd
+pkgname=('wicd' 'wicd-gtk')
+pkgver=1.7.0
+pkgrel=11
+arch=(any)
+url=http://wicd.sourceforge.net/;
+license=('GPL2')
+conflicts=('wicd-svn')
+install=wicd.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
+wicd-daemon
+wicd.desktop
+wicd-scripts-execution.patch
+   deepcopy+python27-fixes.patch
+   net-tools.patch)
+makedepends=('python2')
+options=('emptydirs')
+md5sums=('003d2e67240989db55934553437ba32a'
+ 'f40e5f59998d0829707a7c9976afa8f8'
+ '326df163a5732d38741371baa4fce9e5'
+ 'f4c377a25aa077cb76955124adfcc03f'
+ '1b7ec95efcb8dc0fe48111da19b395b6'
+ '6cfa7abede7e85248c2305481601d68f')
+
+build() {
+  cd $srcdir/$pkgbase-$pkgver
+  patch -p0 $srcdir/wicd-scripts-execution.patch
+  patch -p1 -i $srcdir/deepcopy+python27-fixes.patch
+  patch -p0 -i $srcdir/net-tools.patch
+
+  find . -type f -exec sed -i 's@#!/usr.*python@#!/usr/bin/python2@' {} \;
+  export PYTHON=python2
+  python2 setup.py configure --no-install-init \
+--resume=/usr/share/wicd/scripts/ \
+ --suspend=/usr/share/wicd/scripts/ \
+ --verbose \
+ --python=/usr/bin/python2
+}
+
+package_wicd() {
+  pkgdesc=Wired and wireless network manager for Linux
+  depends=('python2' 'dbus-python' 'dhcpcd' 'wpa_supplicant' 'wireless_tools'
+   'net-tools' 'ethtool' 'shared-mime-info' 'python-urwid' 'pygobject')
+  optdepends=('python-wpactrl: needed if you want to use the new experimental 
ioctrl 

[arch-commits] Commit in eject/trunk (9 files)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 11:14:00
  Author: tomegun
Revision: 135934

Add patches from Fedora and make sr0 the default device

Upstream is dead, but the package is needed by udisks, so we better keep it on 
life-support for the time being.

Many thanks to nat...@list.ru for hunting down the patches and making a 
package in AUR that I could steal.

I also changed the default device from cdrom to sr0, as the symlink is no 
longer created.

Added:
  eject/trunk/eject-2.1.1-verbose.patch
  eject/trunk/eject-2.1.5-lock.patch
  eject/trunk/eject-2.1.5-openrw.patch
  eject/trunk/eject-2.1.5-spaces.patch
  eject/trunk/eject-2.1.5-umount.patch
  eject/trunk/eject-2.1.5-unlock.patch
  eject/trunk/eject-timeout.patch
Modified:
  eject/trunk/PKGBUILD
Deleted:
  eject/trunk/eject-2.1.5-handle-spaces.patch

-+
 PKGBUILD|   43 +++--
 eject-2.1.1-verbose.patch   |   15 +++
 eject-2.1.5-handle-spaces.patch |   57 
 eject-2.1.5-lock.patch  |  171 
 eject-2.1.5-openrw.patch|   17 +++
 eject-2.1.5-spaces.patch|   62 +
 eject-2.1.5-umount.patch|  176 ++
 eject-2.1.5-unlock.patch|   59 
 eject-timeout.patch |   11 ++
 9 files changed, 544 insertions(+), 67 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-20 11:37:23 UTC (rev 135933)
+++ PKGBUILD2011-08-20 15:14:00 UTC (rev 135934)
@@ -1,29 +1,52 @@
 # $Id$
-# Maintainer:
+# Maintainer: Tom Gundersen t...@jlkm.no
+# Contributor: Natrio nat...@list.ru
 # Contributor: dorphell dorph...@archlinux.org
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=eject
 pkgver=2.1.5
-pkgrel=5
-pkgdesc=A program for ejecting removable media under software control
+pkgrel=6
+pkgdesc=A program for ejecting removable media under software control. 
Patched for unlock tray. Fedora's patches added.
 arch=('i686' 'x86_64')
 url=http://eject.sourceforge.net/;
 license=('GPL')
+conflicts=('eject')
+provides=('eject')
 depends=('glibc')
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
-'eject-2.1.5-handle-spaces.patch')
+source=(ftp://ftp.archlinux.org/other/eject/eject-${pkgver}.tar.bz2;
+'eject-2.1.1-verbose.patch'
+'eject-2.1.5-lock.patch'
+'eject-2.1.5-spaces.patch'
+'eject-2.1.5-umount.patch'
+'eject-timeout.patch'
+'eject-2.1.5-unlock.patch'
+'eject-2.1.5-openrw.patch')
 md5sums=('5a6cab2184ae4ed21128054d931d558f'
- '595b97c3bd56fd41e3b01b07885f81dc')
+ '4fb81806de181d5f353a459b7f122081'
+ '7d18c14f7b1bb50149fd2b41215dc4f2'
+ '64f5c54dac064e6dbc427025d919221b'
+ '34221248a269703d3a47a8d2a6fdd2e2'
+ 'f6b1b702ef9174e2fd05a56ee2de850e'
+ 'f384f98fa689b087d99217a7403bf706'
+ 'e74d742540e4f399d348af495bf00e85')
 
 build() {
-  cd ${srcdir}/${pkgname}
-  patch -Np0 -i ${srcdir}/eject-2.1.5-handle-spaces.patch
-  ./configure --prefix=/usr --mandir=/usr/share/man
+  cd ${srcdir}/eject
+  patch -p1 -i ${srcdir}/eject-2.1.1-verbose.patch
+  patch -p1 -i ${srcdir}/eject-2.1.5-lock.patch
+  patch -p1 -i ${srcdir}/eject-2.1.5-spaces.patch
+  patch -p1 -i ${srcdir}/eject-2.1.5-umount.patch
+  patch -p1 -i ${srcdir}/eject-timeout.patch
+  patch -p1 -i ${srcdir}/eject-2.1.5-unlock.patch
+  patch -p1 -i ${srcdir}/eject-2.1.5-openrw.patch
+  ./configure --prefix=/usr \
+  --mandir=/usr/share/man \
+  --enable-default-device=sr0
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}
+  cd ${srcdir}/eject
   make DESTDIR=${pkgdir} install
 }

Added: eject-2.1.1-verbose.patch
===
--- eject-2.1.1-verbose.patch   (rev 0)
+++ eject-2.1.1-verbose.patch   2011-08-20 15:14:00 UTC (rev 135934)
@@ -0,0 +1,15 @@
+diff --git a/eject.c b/eject.c
+index b14d5f2..662ba54 100644
+--- a/eject.c
 b/eject.c
+@@ -709,7 +709,9 @@ static int EjectScsi(int fd)
+   unsigned char sense_buffer[32];
+ 
+   if ((ioctl(fd, SG_GET_VERSION_NUM, k)  0) || (k  3)) {
+-printf(not an sg device, or old sg driver\n);
++if (v_option) {
++printf(_(not an sg device, or old sg driver\n));
++}
+ return 0;
+   }
+ 

Deleted: eject-2.1.5-handle-spaces.patch
===
--- eject-2.1.5-handle-spaces.patch 2011-08-20 11:37:23 UTC (rev 135933)
+++ eject-2.1.5-handle-spaces.patch 2011-08-20 15:14:00 UTC (rev 135934)
@@ -1,57 +0,0 @@
-http://bugs.gentoo.org/151257
-
 eject.c
-+++ eject.c
-@@ -370,6 +370,30 @@ static int FileExists(const char *name, 
- 
- 
- /*
-+ * Linux mangles spaces in mount points by changing them to an octal string
-+ * of 

[arch-commits] Commit in eject/repos (extra-i686)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 11:19:44
  Author: tomegun
Revision: 135935

archrelease: remove extra-i686

Deleted:
  eject/repos/extra-i686/



[arch-commits] Commit in eject/repos (extra-i686)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 11:19:56
  Author: tomegun
Revision: 135936

archrelease: copy trunk to extra-i686

Added:
  eject/repos/extra-i686/



[arch-commits] Commit in eject/repos (extra-x86_64)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 11:19:59
  Author: tomegun
Revision: 135937

archrelease: remove extra-x86_64

Deleted:
  eject/repos/extra-x86_64/



[arch-commits] Commit in eject/repos (extra-x86_64)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 11:20:11
  Author: tomegun
Revision: 135938

archrelease: copy trunk to extra-x86_64

Added:
  eject/repos/extra-x86_64/



[arch-commits] Commit in gpsd/trunk (PKGBUILD gpsd gpsd.conf.d)

2011-08-20 Thread Andrea Scarpino
Date: Saturday, August 20, 2011 @ 12:11:39
  Author: andrea
Revision: 135939

upgpkg: gpsd 3.0-3
Keep old variables names

Modified:
  gpsd/trunk/PKGBUILD
  gpsd/trunk/gpsd
  gpsd/trunk/gpsd.conf.d

-+
 PKGBUILD|6 +++---
 gpsd|2 +-
 gpsd.conf.d |4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-20 15:20:11 UTC (rev 135938)
+++ PKGBUILD2011-08-20 16:11:39 UTC (rev 135939)
@@ -6,7 +6,7 @@
 
 pkgname=gpsd
 pkgver=3.0
-pkgrel=2
+pkgrel=3
 pkgdesc=GPS daemon and library to support USB/serial GPS devices
 arch=('i686' 'x86_64')
 url=http://gpsd.berlios.de;
@@ -21,8 +21,8 @@
 source=(http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 'gpsd' 'gpsd.conf.d')
 md5sums=('c63d41a26868e9bdd48d9e311a9cc42c'
- 'ffa9325cb53bf900b76d064b03ff71b7'
- '5ebad060285f400fd202aef8fd5ed2a9')
+ '1f3402f8e33a7032b9ae6dfd077234f7'
+ '3e963df3f9f7ef3572ecc648ae829315')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}

Modified: gpsd
===
--- gpsd2011-08-20 15:20:11 UTC (rev 135938)
+++ gpsd2011-08-20 16:11:39 UTC (rev 135939)
@@ -13,7 +13,7 @@
start)
stat_busy Starting $NAME
[ ! -d /var/run/$NAME ]  install -d /var/run/$NAME
-   [ -z $PID ]  $DAEMON -P $PIDFILE -F /var/run/$NAME/$NAME.sock 
${OPTIONS} ${DEVICE}
+   [ -z $PID ]  $DAEMON -P $PIDFILE -F /var/run/$NAME/$NAME.sock 
${GPSD_OPTIONS} ${DEVICES}
if [ $? -gt 0 ]; then
stat_fail
else

Modified: gpsd.conf.d
===
--- gpsd.conf.d 2011-08-20 15:20:11 UTC (rev 135938)
+++ gpsd.conf.d 2011-08-20 16:11:39 UTC (rev 135939)
@@ -1,5 +1,5 @@
 # Default settings for gpsd.
 START_DAEMON=true
-OPTIONS=
-DEVICE=
+GPSD_OPTIONS=
+DEVICES=
 USBAUTO=true



[arch-commits] Commit in gpsd/repos (testing-i686)

2011-08-20 Thread Andrea Scarpino
Date: Saturday, August 20, 2011 @ 12:11:42
  Author: andrea
Revision: 135940

archrelease: remove testing-i686

Deleted:
  gpsd/repos/testing-i686/



[arch-commits] Commit in gpsd/repos (testing-i686)

2011-08-20 Thread Andrea Scarpino
Date: Saturday, August 20, 2011 @ 12:11:56
  Author: andrea
Revision: 135941

archrelease: copy trunk to testing-i686

Added:
  gpsd/repos/testing-i686/



[arch-commits] Commit in gpsd/repos (testing-x86_64)

2011-08-20 Thread Andrea Scarpino
Date: Saturday, August 20, 2011 @ 12:12:13
  Author: andrea
Revision: 135943

archrelease: copy trunk to testing-x86_64

Added:
  gpsd/repos/testing-x86_64/



[arch-commits] Commit in eject/trunk (PKGBUILD)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 13:05:11
  Author: tomegun
Revision: 135944

remove comment that only belonged in the AUR version

Modified:
  eject/trunk/PKGBUILD

--+
 PKGBUILD |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-20 16:12:13 UTC (rev 135943)
+++ PKGBUILD2011-08-20 17:05:11 UTC (rev 135944)
@@ -6,13 +6,11 @@
 
 pkgname=eject
 pkgver=2.1.5
-pkgrel=6
-pkgdesc=A program for ejecting removable media under software control. 
Patched for unlock tray. Fedora's patches added.
+pkgrel=7
+pkgdesc=A program for ejecting removable media under software control.
 arch=('i686' 'x86_64')
 url=http://eject.sourceforge.net/;
 license=('GPL')
-conflicts=('eject')
-provides=('eject')
 depends=('glibc')
 source=(ftp://ftp.archlinux.org/other/eject/eject-${pkgver}.tar.bz2;
 'eject-2.1.1-verbose.patch'



[arch-commits] Commit in eject/repos (extra-i686)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 13:08:26
  Author: tomegun
Revision: 135945

archrelease: remove extra-i686

Deleted:
  eject/repos/extra-i686/



[arch-commits] Commit in eject/repos (extra-i686)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 13:08:39
  Author: tomegun
Revision: 135946

archrelease: copy trunk to extra-i686

Added:
  eject/repos/extra-i686/



[arch-commits] Commit in eject/repos (extra-x86_64)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 13:08:41
  Author: tomegun
Revision: 135947

archrelease: remove extra-x86_64

Deleted:
  eject/repos/extra-x86_64/



[arch-commits] Commit in eject/repos (extra-x86_64)

2011-08-20 Thread Tom Gundersen
Date: Saturday, August 20, 2011 @ 13:08:54
  Author: tomegun
Revision: 135948

archrelease: copy trunk to extra-x86_64

Added:
  eject/repos/extra-x86_64/



[arch-commits] Commit in xfdesktop/repos/extra-x86_64 (5 files)

2011-08-20 Thread Eric Bélanger
Date: Saturday, August 20, 2011 @ 17:30:39
  Author: eric
Revision: 135949

archrelease: copy trunk to extra-x86_64

Added:
  xfdesktop/repos/extra-x86_64/PKGBUILD
(from rev 135948, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-x86_64/fix-desktop-drag-and-drop.patch
(from rev 135948, xfdesktop/trunk/fix-desktop-drag-and-drop.patch)
  xfdesktop/repos/extra-x86_64/xfdesktop.install
(from rev 135948, xfdesktop/trunk/xfdesktop.install)
Deleted:
  xfdesktop/repos/extra-x86_64/PKGBUILD
  xfdesktop/repos/extra-x86_64/xfdesktop.install

-+
 PKGBUILD|   88 +++---
 fix-desktop-drag-and-drop.patch |   57 
 xfdesktop.install   |   22 -
 3 files changed, 112 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-20 17:08:54 UTC (rev 135948)
+++ PKGBUILD2011-08-20 21:30:39 UTC (rev 135949)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: tobias tobias funnychar archlinux.org
-
-pkgname=xfdesktop
-pkgver=4.8.2
-pkgrel=3
-pkgdesc=A desktop manager for Xfce
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://www.xfce.org/;
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
-makedepends=('intltool' 'xfce4-panel=4.8.0')
-optdepends=('xfce4-panel: panel menu plugin')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-options=('!libtool')
-install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
-fix-desktop-drag-and-drop.patch)
-md5sums=('ed25d59f478afda552d121e96657d16f'
- '86d464bcd8ffae9f048454f49603658a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib \
-   --localstatedir=/var \
-   --disable-static \
-   --enable-gio-unix \
-   --enable-thunarx \
-   --enable-exo \
-   --enable-notifications \
-   --disable-debug
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xfdesktop/repos/extra-x86_64/PKGBUILD (from rev 135948, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-20 21:30:39 UTC (rev 135949)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: tobias tobias funnychar archlinux.org
+
+pkgname=xfdesktop
+pkgver=4.8.2
+pkgrel=3
+pkgdesc=A desktop manager for Xfce
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://www.xfce.org/;
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
+makedepends=('intltool' 'xfce4-panel=4.8.0')
+optdepends=('xfce4-panel: panel menu plugin')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+options=('!libtool')
+install=xfdesktop.install
+source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
+fix-desktop-drag-and-drop.patch)
+md5sums=('ed25d59f478afda552d121e96657d16f'
+ '86d464bcd8ffae9f048454f49603658a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var \
+   --disable-static \
+   --enable-gio-unix \
+   --enable-thunarx \
+   --enable-exo \
+   --enable-notifications \
+   --disable-debug
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: xfdesktop/repos/extra-x86_64/fix-desktop-drag-and-drop.patch (from rev 
135948, xfdesktop/trunk/fix-desktop-drag-and-drop.patch)
===
--- fix-desktop-drag-and-drop.patch (rev 0)
+++ fix-desktop-drag-and-drop.patch 2011-08-20 21:30:39 UTC (rev 135949)
@@ -0,0 +1,57 @@
+diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
+index 2711646..d3ca2eb 100644
+--- a/src/xfdesktop-file-icon-manager.c
 b/src/xfdesktop-file-icon-manager.c
+@@ -2794,7 +2794,7 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ GFile *tfile = NULL;
+ gboolean copy_only = TRUE, drop_ok = FALSE;
+ GList *file_list;
+-
++
+ if(info == TARGET_XDND_DIRECT_SAVE0) {
+ /* we don't suppose XdndDirectSave stage 3, result F, i.e., the app
+  * has to save the data itself given the filename we provided in
+@@ -2816,7 +2816,7 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ /* data is URL\nTITLE */
+ 

[arch-commits] Commit in xfdesktop/repos/extra-i686 (5 files)

2011-08-20 Thread Eric Bélanger
Date: Saturday, August 20, 2011 @ 17:31:40
  Author: eric
Revision: 135950

archrelease: copy trunk to extra-i686

Added:
  xfdesktop/repos/extra-i686/PKGBUILD
(from rev 135949, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-i686/fix-desktop-drag-and-drop.patch
(from rev 135949, xfdesktop/trunk/fix-desktop-drag-and-drop.patch)
  xfdesktop/repos/extra-i686/xfdesktop.install
(from rev 135949, xfdesktop/trunk/xfdesktop.install)
Deleted:
  xfdesktop/repos/extra-i686/PKGBUILD
  xfdesktop/repos/extra-i686/xfdesktop.install

-+
 PKGBUILD|   88 +++---
 fix-desktop-drag-and-drop.patch |   57 
 xfdesktop.install   |   22 -
 3 files changed, 112 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-20 21:30:39 UTC (rev 135949)
+++ PKGBUILD2011-08-20 21:31:40 UTC (rev 135950)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: tobias tobias funnychar archlinux.org
-
-pkgname=xfdesktop
-pkgver=4.8.2
-pkgrel=3
-pkgdesc=A desktop manager for Xfce
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://www.xfce.org/;
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
-makedepends=('intltool' 'xfce4-panel=4.8.0')
-optdepends=('xfce4-panel: panel menu plugin')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-options=('!libtool')
-install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
-fix-desktop-drag-and-drop.patch)
-md5sums=('ed25d59f478afda552d121e96657d16f'
- '86d464bcd8ffae9f048454f49603658a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib \
-   --localstatedir=/var \
-   --disable-static \
-   --enable-gio-unix \
-   --enable-thunarx \
-   --enable-exo \
-   --enable-notifications \
-   --disable-debug
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xfdesktop/repos/extra-i686/PKGBUILD (from rev 135949, 
xfdesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-20 21:31:40 UTC (rev 135950)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: tobias tobias funnychar archlinux.org
+
+pkgname=xfdesktop
+pkgver=4.8.2
+pkgrel=3
+pkgdesc=A desktop manager for Xfce
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://www.xfce.org/;
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar=1.2.0' 'garcon' 'hicolor-icon-theme' 
'libwnck=2.30.0')
+makedepends=('intltool' 'xfce4-panel=4.8.0')
+optdepends=('xfce4-panel: panel menu plugin')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+options=('!libtool')
+install=xfdesktop.install
+source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2
+fix-desktop-drag-and-drop.patch)
+md5sums=('ed25d59f478afda552d121e96657d16f'
+ '86d464bcd8ffae9f048454f49603658a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../fix-desktop-drag-and-drop.patch
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var \
+   --disable-static \
+   --enable-gio-unix \
+   --enable-thunarx \
+   --enable-exo \
+   --enable-notifications \
+   --disable-debug
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: xfdesktop/repos/extra-i686/fix-desktop-drag-and-drop.patch (from rev 
135949, xfdesktop/trunk/fix-desktop-drag-and-drop.patch)
===
--- fix-desktop-drag-and-drop.patch (rev 0)
+++ fix-desktop-drag-and-drop.patch 2011-08-20 21:31:40 UTC (rev 135950)
@@ -0,0 +1,57 @@
+diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
+index 2711646..d3ca2eb 100644
+--- a/src/xfdesktop-file-icon-manager.c
 b/src/xfdesktop-file-icon-manager.c
+@@ -2794,7 +2794,7 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ GFile *tfile = NULL;
+ gboolean copy_only = TRUE, drop_ok = FALSE;
+ GList *file_list;
+-
++
+ if(info == TARGET_XDND_DIRECT_SAVE0) {
+ /* we don't suppose XdndDirectSave stage 3, result F, i.e., the app
+  * has to save the data itself given the filename we provided in
+@@ -2816,7 +2816,7 @@ 
xfdesktop_file_icon_manager_drag_data_received(XfdesktopIconViewManager *manager
+ /* data is URL\nTITLE */
+ GFile 

[arch-commits] Commit in wicd/repos/testing-any (19 files)

2011-08-20 Thread Eric Bélanger
Date: Saturday, August 20, 2011 @ 17:33:41
  Author: eric
Revision: 135951

archrelease: copy trunk to testing-any

Added:
  wicd/repos/testing-any/ChangeLog
(from rev 135950, wicd/trunk/ChangeLog)
  wicd/repos/testing-any/PKGBUILD
(from rev 135950, wicd/trunk/PKGBUILD)
  wicd/repos/testing-any/deepcopy+python27-fixes.patch
(from rev 135950, wicd/trunk/deepcopy+python27-fixes.patch)
  wicd/repos/testing-any/net-tools.patch
(from rev 135950, wicd/trunk/net-tools.patch)
  wicd/repos/testing-any/wicd-daemon
(from rev 135950, wicd/trunk/wicd-daemon)
  wicd/repos/testing-any/wicd-locale.patch
(from rev 135950, wicd/trunk/wicd-locale.patch)
  wicd/repos/testing-any/wicd-scripts-execution.patch
(from rev 135950, wicd/trunk/wicd-scripts-execution.patch)
  wicd/repos/testing-any/wicd.desktop
(from rev 135950, wicd/trunk/wicd.desktop)
  wicd/repos/testing-any/wicd.install
(from rev 135950, wicd/trunk/wicd.install)
  wicd/repos/testing-any/wicd_in_usr.patch
(from rev 135950, wicd/trunk/wicd_in_usr.patch)
Deleted:
  wicd/repos/testing-any/ChangeLog
  wicd/repos/testing-any/PKGBUILD
  wicd/repos/testing-any/deepcopy+python27-fixes.patch
  wicd/repos/testing-any/wicd-daemon
  wicd/repos/testing-any/wicd-locale.patch
  wicd/repos/testing-any/wicd-scripts-execution.patch
  wicd/repos/testing-any/wicd.desktop
  wicd/repos/testing-any/wicd.install
  wicd/repos/testing-any/wicd_in_usr.patch

---+
 ChangeLog |   80 +++
 PKGBUILD  |  202 +--
 deepcopy+python27-fixes.patch |  144 ++---
 net-tools.patch   |   11 +
 wicd-daemon   |   54 ++---
 wicd-locale.patch |   24 +-
 wicd-scripts-execution.patch  |   48 ++--
 wicd.desktop  |   22 +-
 wicd.install  |   46 ++--
 wicd_in_usr.patch |  416 
 10 files changed, 529 insertions(+), 518 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 135950:135951 to see the changes.


[arch-commits] Commit in emacs/trunk (PKGBUILD emacs.install)

2011-08-20 Thread Eric Bélanger
Date: Saturday, August 20, 2011 @ 22:29:35
  Author: eric
Revision: 135952

upgpkg: emacs 23.3.a-2

Improve description, Update license, Clean up depends, Add 
desktop-file-utils depends to run update-desktop-database in install scriptlet, 
Update list of info pages in install scriptlet, Remove docs option, Remove cdet 
replace array

Modified:
  emacs/trunk/PKGBUILD
  emacs/trunk/emacs.install

---+
 PKGBUILD  |   17 +++--
 emacs.install |   12 
 2 files changed, 15 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-20 21:33:41 UTC (rev 135951)
+++ PKGBUILD2011-08-21 02:29:35 UTC (rev 135952)
@@ -8,24 +8,21 @@
 # upstream uses 23.3a, which is a bit silly and interpreted as alpha.
 pkgver=$_majorver.$_minorver
 _realver=$_majorver$_minorver
-pkgrel=1
-pkgdesc=The Emacs Editor
-arch=(i686 x86_64)
+pkgrel=2
+pkgdesc=The extensible, customizable, self-documenting real-time display 
editor
+arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/emacs/emacs.html;
-license=('GPL')
-options=(docs)
-replaces=(cedet)
-depends=('dbus-core' 'librsvg' 'gpm' 'giflib' 'libtiff'  'libxpm' 'libjpeg' 
'libxft' 'gtk2' 'texinfo' 'hicolor-icon-theme' 'gconf')
+license=('GPL3')
+depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'gtk2' 'hicolor-icon-theme' 'gconf' 
'desktop-file-utils')
+install=emacs.install
 source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$_realver.tar.gz emacs.desktop)
 md5sums=('20aef9ea5b5bf8050d39f8b1e96a1c04'
  '8af038d2ba4561271e935bb444ceb4e3')
-install=emacs.install
 
 build() {
   cd $srcdir/$pkgname-$_majorver
   ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
---localstatedir=/var --mandir=/usr/share/man --without-sound \
---with-x-toolkit=gtk --with-xft
+--localstatedir=/var --without-sound --with-x-toolkit=gtk --with-xft
   make
 }
 

Modified: emacs.install
===
--- emacs.install   2011-08-20 21:33:41 UTC (rev 135951)
+++ emacs.install   2011-08-21 02:29:35 UTC (rev 135952)
@@ -1,15 +1,17 @@
-ICON_PATH=/usr/share/icons/hicolor
-INFO_DIR=/usr/share/info
+ICON_PATH=usr/share/icons/hicolor
+INFO_DIR=usr/share/info
 
 INFO_FILES=(ada-mode auth autotype calc ccmode cl dbus dired-x ebrowse
-ediff efaq eintr elisp emacs emacs-mime epa erc eshell eudc flymake
+ede ediff edt efaq eieio eintr elisp emacs emacs-mime epa erc eshell eudc 
flymake
 forms gnus idlwave info mairix-el message mh-e newsticker nxml-mode
-org pcl-cvs pgg rcirc reftex remember sasl sc ses sieve smtpmail
+org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses sieve smtpmail
 speedbar tramp url vip viper widget woman)
 
 post_install() {
   gtk-update-icon-cache -q -t -f ${ICON_PATH}
+  update-desktop-database -q
 
+  [[ -x usr/bin/install-info ]] || return 0
   for f in ${INFO_FILES[@]}; do
 install-info ${INFO_DIR}/$f.gz ${INFO_DIR}/dir 2 /dev/null
   done
@@ -21,7 +23,9 @@
 
 pre_remove() {
   gtk-update-icon-cache -q -t -f ${ICON_PATH}
+  update-desktop-database -q
 
+  [[ -x usr/bin/install-info ]] || return 0
   for f in ${INFO_FILES[@]}; do
 install-info --delete ${INFO_DIR}/$f.gz ${INFO_DIR}/dir 2 /dev/null
   done



[arch-commits] Commit in emacs/repos/extra-i686 (6 files)

2011-08-20 Thread Eric Bélanger
Date: Saturday, August 20, 2011 @ 22:30:07
  Author: eric
Revision: 135953

archrelease: copy trunk to extra-i686

Added:
  emacs/repos/extra-i686/PKGBUILD
(from rev 135952, emacs/trunk/PKGBUILD)
  emacs/repos/extra-i686/emacs.desktop
(from rev 135952, emacs/trunk/emacs.desktop)
  emacs/repos/extra-i686/emacs.install
(from rev 135952, emacs/trunk/emacs.install)
Deleted:
  emacs/repos/extra-i686/PKGBUILD
  emacs/repos/extra-i686/emacs.desktop
  emacs/repos/extra-i686/emacs.install

---+
 PKGBUILD  |  100 
 emacs.desktop |   24 ++---
 emacs.install |   60 +
 3 files changed, 94 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 02:29:35 UTC (rev 135952)
+++ PKGBUILD2011-08-21 02:30:07 UTC (rev 135953)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel juer...@archlinux.org
-# Contributor: Renchi Raju ren...@green.tam.uiuc.edu
-pkgname=emacs
-pkgver=23.3a
-pkgrel=1
-pkgdesc=The Emacs Editor
-arch=(i686 x86_64)
-url=http://www.gnu.org/software/emacs/emacs.html;
-license=('GPL')
-options=(docs)
-replaces=(cedet)
-depends=('dbus-core' 'librsvg' 'gpm'  'giflib' 'libtiff'  'libxpm' 'libjpeg' 
'gtk2' 'texinfo' 'hicolor-icon-theme' 'gconf')
-source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.gz emacs.desktop)
-md5sums=('20aef9ea5b5bf8050d39f8b1e96a1c04'
- '8af038d2ba4561271e935bb444ceb4e3')
-install=emacs.install
-
-build() {
-  cd $startdir/src/$pkgname-${pkgver%[a-z]}
-  mandir=/usr/share/man
-
-  # gcc 4.5 Workaround: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43904
-  CFLAGS=${CFLAGS} -fno-optimize-sibling-calls\
-./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
---localstatedir=/var --mandir=${mandir} --without-sound 
--with-x-toolkit=gtk
-  make
-  make DESTDIR=$startdir/pkg install
-
-  # remove conflict with ctags package
-  mv $startdir/pkg/usr/bin/{ctags,ctags.emacs}
-  mv $startdir/pkg/usr/bin/{etags,etags.emacs}
-  mv $startdir/pkg${mandir}/man1/{etags.1,etags.emacs.1}
-  mv $startdir/pkg${mandir}/man1/{ctags.1,ctags.emacs.1}
-  # fix all the 777 perms on directories
-  find $startdir/pkg/usr/share/emacs/${pkgver%[a-z]} -type d -exec chmod 755 
{} \;
-  # fix user/root permissions on usr/share files
-  find $startdir/pkg/usr/share/emacs/${pkgver%[a-z]} -exec chown root.root {} 
\;
-  # fix perms on /var/games
-  chmod 775 ${startdir}/pkg/var/games
-  chmod 775 ${startdir}/pkg/var/games/emacs
-  chmod 664 ${startdir}/pkg/var/games/emacs/*
-  chown -R root:50 ${startdir}/pkg/var/games
-
-
-  # fix  FS#9253
-  mkdir -p $startdir/pkg/usr/share/pixmaps 
${startdir}/pkg/usr/share/applications
-  install -D -m644 ${startdir}/src/${pkgname}.desktop   
${startdir}/pkg/usr/share/applications
-  ln -s  
../emacs/${pkgver%[a-z]}/etc/images/icons/hicolor/48x48/apps/emacs.png 
$startdir/pkg/usr/share/pixmaps/emacs-icon.png
-}

Copied: emacs/repos/extra-i686/PKGBUILD (from rev 135952, emacs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 02:30:07 UTC (rev 135953)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+# Contributor: Renchi Raju ren...@green.tam.uiuc.edu
+pkgname=emacs
+_majorver=23.3
+_minorver=a
+# We want something like 23.3.a so pacman version comparison works, but
+# upstream uses 23.3a, which is a bit silly and interpreted as alpha.
+pkgver=$_majorver.$_minorver
+_realver=$_majorver$_minorver
+pkgrel=2
+pkgdesc=The extensible, customizable, self-documenting real-time display 
editor
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/emacs/emacs.html;
+license=('GPL3')
+depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'gtk2' 'hicolor-icon-theme' 'gconf' 
'desktop-file-utils')
+install=emacs.install
+source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$_realver.tar.gz emacs.desktop)
+md5sums=('20aef9ea5b5bf8050d39f8b1e96a1c04'
+ '8af038d2ba4561271e935bb444ceb4e3')
+
+build() {
+  cd $srcdir/$pkgname-$_majorver
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
+--localstatedir=/var --without-sound --with-x-toolkit=gtk --with-xft
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_majorver
+  make DESTDIR=$pkgdir install
+
+  # remove conflict with ctags package
+  mv $pkgdir/usr/bin/{ctags,ctags.emacs}
+  mv $pkgdir/usr/share/man/man1/{ctags.1,ctags.emacs.1}
+  # fix all the 777 perms on directories
+  find $pkgdir/usr/share/emacs/$_majorver -type d -exec chmod 755 {} \;
+  # fix user/root permissions on usr/share files
+  find $pkgdir/usr/share/emacs/$_majorver -exec chown root:root {} \;
+  # fix perms on /var/games
+  chmod 775 $pkgdir/var/games
+  chmod 775 $pkgdir/var/games/emacs
+  chmod 664 $pkgdir/var/games/emacs/*
+  chown -R root:games $pkgdir/var/games
+
+  # fix  

[arch-commits] Commit in emacs/repos/extra-x86_64 (6 files)

2011-08-20 Thread Eric Bélanger
Date: Saturday, August 20, 2011 @ 22:30:32
  Author: eric
Revision: 135954

archrelease: copy trunk to extra-x86_64

Added:
  emacs/repos/extra-x86_64/PKGBUILD
(from rev 135953, emacs/trunk/PKGBUILD)
  emacs/repos/extra-x86_64/emacs.desktop
(from rev 135953, emacs/trunk/emacs.desktop)
  emacs/repos/extra-x86_64/emacs.install
(from rev 135953, emacs/trunk/emacs.install)
Deleted:
  emacs/repos/extra-x86_64/PKGBUILD
  emacs/repos/extra-x86_64/emacs.desktop
  emacs/repos/extra-x86_64/emacs.install

---+
 PKGBUILD  |  100 
 emacs.desktop |   24 ++---
 emacs.install |   60 +
 3 files changed, 94 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 02:30:07 UTC (rev 135953)
+++ PKGBUILD2011-08-21 02:30:32 UTC (rev 135954)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel juer...@archlinux.org
-# Contributor: Renchi Raju ren...@green.tam.uiuc.edu
-pkgname=emacs
-pkgver=23.3a
-pkgrel=1
-pkgdesc=The Emacs Editor
-arch=(i686 x86_64)
-url=http://www.gnu.org/software/emacs/emacs.html;
-license=('GPL')
-options=(docs)
-replaces=(cedet)
-depends=('dbus-core' 'librsvg' 'gpm'  'giflib' 'libtiff'  'libxpm' 'libjpeg' 
'gtk2' 'texinfo' 'hicolor-icon-theme' 'gconf')
-source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.gz emacs.desktop)
-md5sums=('20aef9ea5b5bf8050d39f8b1e96a1c04'
- '8af038d2ba4561271e935bb444ceb4e3')
-install=emacs.install
-
-build() {
-  cd $startdir/src/$pkgname-${pkgver%[a-z]}
-  mandir=/usr/share/man
-
-  # gcc 4.5 Workaround: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43904
-  CFLAGS=${CFLAGS} -fno-optimize-sibling-calls\
-./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
---localstatedir=/var --mandir=${mandir} --without-sound 
--with-x-toolkit=gtk
-  make
-  make DESTDIR=$startdir/pkg install
-
-  # remove conflict with ctags package
-  mv $startdir/pkg/usr/bin/{ctags,ctags.emacs}
-  mv $startdir/pkg/usr/bin/{etags,etags.emacs}
-  mv $startdir/pkg${mandir}/man1/{etags.1,etags.emacs.1}
-  mv $startdir/pkg${mandir}/man1/{ctags.1,ctags.emacs.1}
-  # fix all the 777 perms on directories
-  find $startdir/pkg/usr/share/emacs/${pkgver%[a-z]} -type d -exec chmod 755 
{} \;
-  # fix user/root permissions on usr/share files
-  find $startdir/pkg/usr/share/emacs/${pkgver%[a-z]} -exec chown root.root {} 
\;
-  # fix perms on /var/games
-  chmod 775 ${startdir}/pkg/var/games
-  chmod 775 ${startdir}/pkg/var/games/emacs
-  chmod 664 ${startdir}/pkg/var/games/emacs/*
-  chown -R root:50 ${startdir}/pkg/var/games
-
-
-  # fix  FS#9253
-  mkdir -p $startdir/pkg/usr/share/pixmaps 
${startdir}/pkg/usr/share/applications
-  install -D -m644 ${startdir}/src/${pkgname}.desktop   
${startdir}/pkg/usr/share/applications
-  ln -s  
../emacs/${pkgver%[a-z]}/etc/images/icons/hicolor/48x48/apps/emacs.png 
$startdir/pkg/usr/share/pixmaps/emacs-icon.png
-}

Copied: emacs/repos/extra-x86_64/PKGBUILD (from rev 135953, 
emacs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 02:30:32 UTC (rev 135954)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+# Contributor: Renchi Raju ren...@green.tam.uiuc.edu
+pkgname=emacs
+_majorver=23.3
+_minorver=a
+# We want something like 23.3.a so pacman version comparison works, but
+# upstream uses 23.3a, which is a bit silly and interpreted as alpha.
+pkgver=$_majorver.$_minorver
+_realver=$_majorver$_minorver
+pkgrel=2
+pkgdesc=The extensible, customizable, self-documenting real-time display 
editor
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/emacs/emacs.html;
+license=('GPL3')
+depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'gtk2' 'hicolor-icon-theme' 'gconf' 
'desktop-file-utils')
+install=emacs.install
+source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$_realver.tar.gz emacs.desktop)
+md5sums=('20aef9ea5b5bf8050d39f8b1e96a1c04'
+ '8af038d2ba4561271e935bb444ceb4e3')
+
+build() {
+  cd $srcdir/$pkgname-$_majorver
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
+--localstatedir=/var --without-sound --with-x-toolkit=gtk --with-xft
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_majorver
+  make DESTDIR=$pkgdir install
+
+  # remove conflict with ctags package
+  mv $pkgdir/usr/bin/{ctags,ctags.emacs}
+  mv $pkgdir/usr/share/man/man1/{ctags.1,ctags.emacs.1}
+  # fix all the 777 perms on directories
+  find $pkgdir/usr/share/emacs/$_majorver -type d -exec chmod 755 {} \;
+  # fix user/root permissions on usr/share files
+  find $pkgdir/usr/share/emacs/$_majorver -exec chown root:root {} \;
+  # fix perms on /var/games
+  chmod 775 $pkgdir/var/games
+  chmod 775 $pkgdir/var/games/emacs
+  chmod 664 $pkgdir/var/games/emacs/*
+  chown -R root:games 

[arch-commits] Commit in isl/trunk (PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:43:39
  Author: allan
Revision: 135955

upgpkg: isl 0.07-1

upstream update, soname bump

Modified:
  isl/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 02:30:32 UTC (rev 135954)
+++ PKGBUILD2011-08-21 02:43:39 UTC (rev 135955)
@@ -2,15 +2,15 @@
 # Maintainer: Allan McRae al...@archlinux.org
 
 pkgname=isl
-pkgver=0.06
-pkgrel=2
+pkgver=0.07
+pkgrel=1
 pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
 arch=('i686' 'x86_64')
 url=http://www.kotnet.org/~skimo/isl/;
 license=('LGPL2.1')
 options=('!libtool')
 source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('504f054eaffdd8d07c497ebe3ebc7e04')
+md5sums=('0d1a38db9f1c7d526758092b985827ea')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -29,5 +29,5 @@
   
   # this seems a better place for this file...
   install -dm755 $pkgdir/usr/share/gdb/auto-load/
-  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.6.0.0-gdb.py
+  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
 }



[arch-commits] Commit in isl/repos (staging-i686 staging-i686/PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:44:06
  Author: allan
Revision: 135956

archrelease: copy trunk to staging-i686

Added:
  isl/repos/staging-i686/
  isl/repos/staging-i686/PKGBUILD
(from rev 135955, isl/trunk/PKGBUILD)

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Copied: isl/repos/staging-i686/PKGBUILD (from rev 135955, isl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-08-21 02:44:06 UTC (rev 135956)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.07
+pkgrel=1
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://www.kotnet.org/~skimo/isl/;
+license=('LGPL2.1')
+options=('!libtool')
+source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('0d1a38db9f1c7d526758092b985827ea')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+  
+  # this seems a better place for this file...
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/
+  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
+}



[arch-commits] Commit in isl/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:44:32
  Author: allan
Revision: 135957

archrelease: copy trunk to staging-x86_64

Added:
  isl/repos/staging-x86_64/
  isl/repos/staging-x86_64/PKGBUILD
(from rev 135956, isl/trunk/PKGBUILD)

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Copied: isl/repos/staging-x86_64/PKGBUILD (from rev 135956, isl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2011-08-21 02:44:32 UTC (rev 135957)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.07
+pkgrel=1
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://www.kotnet.org/~skimo/isl/;
+license=('LGPL2.1')
+options=('!libtool')
+source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('0d1a38db9f1c7d526758092b985827ea')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+  
+  # this seems a better place for this file...
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/
+  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
+}



[arch-commits] Commit in cloog/trunk (PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:48:03
  Author: allan
Revision: 135958

upgpkg: cloog 0.16.3-1

upstream update, isl rebuild, soname bump

Modified:
  cloog/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 02:44:32 UTC (rev 135957)
+++ PKGBUILD2011-08-21 02:48:03 UTC (rev 135958)
@@ -2,8 +2,8 @@
 # Maintainer: Allan McRae al...@archlinux.org
 
 pkgname=cloog
-pkgver=0.16.2
-pkgrel=2
+pkgver=0.16.3
+pkgrel=1
 pkgdesc=Library that generates loops for scanning polyhedra
 arch=('i686' 'x86_64')
 url=http://www.bastoul.net/cloog/;
@@ -12,7 +12,7 @@
 conflicts=('cloog-ppl0.15.10-2')
 options=('!libtool')
 source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
-md5sums=('83877caaa879c7160063138bb18348e7')
+md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in cloog/repos (staging-i686 staging-i686/PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:48:30
  Author: allan
Revision: 135959

archrelease: copy trunk to staging-i686

Added:
  cloog/repos/staging-i686/
  cloog/repos/staging-i686/PKGBUILD
(from rev 135958, cloog/trunk/PKGBUILD)

--+
 PKGBUILD |   31 +++
 1 file changed, 31 insertions(+)

Copied: cloog/repos/staging-i686/PKGBUILD (from rev 135958, 
cloog/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-08-21 02:48:30 UTC (rev 135959)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=cloog
+pkgver=0.16.3
+pkgrel=1
+pkgdesc=Library that generates loops for scanning polyhedra
+arch=('i686' 'x86_64')
+url=http://www.bastoul.net/cloog/;
+license=('GPL')
+depends=('isl' 'gmp')
+conflicts=('cloog-ppl0.15.10-2')
+options=('!libtool')
+source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
+md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-isl=system --with-gmp=system
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in cloog/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:48:57
  Author: allan
Revision: 135960

archrelease: copy trunk to staging-x86_64

Added:
  cloog/repos/staging-x86_64/
  cloog/repos/staging-x86_64/PKGBUILD
(from rev 135959, cloog/trunk/PKGBUILD)

--+
 PKGBUILD |   31 +++
 1 file changed, 31 insertions(+)

Copied: cloog/repos/staging-x86_64/PKGBUILD (from rev 135959, 
cloog/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2011-08-21 02:48:57 UTC (rev 135960)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=cloog
+pkgver=0.16.3
+pkgrel=1
+pkgdesc=Library that generates loops for scanning polyhedra
+arch=('i686' 'x86_64')
+url=http://www.bastoul.net/cloog/;
+license=('GPL')
+depends=('isl' 'gmp')
+conflicts=('cloog-ppl0.15.10-2')
+options=('!libtool')
+source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
+md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-isl=system --with-gmp=system
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in isl/repos/staging-i686 (PKGBUILD PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:49:54
  Author: allan
Revision: 135961

archrelease: copy trunk to staging-i686

Added:
  isl/repos/staging-i686/PKGBUILD
(from rev 135960, isl/trunk/PKGBUILD)
Deleted:
  isl/repos/staging-i686/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 02:48:57 UTC (rev 135960)
+++ PKGBUILD2011-08-21 02:49:54 UTC (rev 135961)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=isl
-pkgver=0.07
-pkgrel=1
-pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
-arch=('i686' 'x86_64')
-url=http://www.kotnet.org/~skimo/isl/;
-license=('LGPL2.1')
-options=('!libtool')
-source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('0d1a38db9f1c7d526758092b985827ea')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make -j1 DESTDIR=$pkgdir/ install
-  
-  # this seems a better place for this file...
-  install -dm755 $pkgdir/usr/share/gdb/auto-load/
-  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
-}

Copied: isl/repos/staging-i686/PKGBUILD (from rev 135960, isl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 02:49:54 UTC (rev 135961)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.07
+pkgrel=1
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://www.kotnet.org/~skimo/isl/;
+license=('LGPL2.1')
+options=('!libtool')
+source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('0d1a38db9f1c7d526758092b985827ea')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+  
+  # this seems a better place for this file...
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/
+  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
+}



[arch-commits] Commit in isl/repos/staging-x86_64 (PKGBUILD PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:50:34
  Author: allan
Revision: 135962

archrelease: copy trunk to staging-x86_64

Added:
  isl/repos/staging-x86_64/PKGBUILD
(from rev 135961, isl/trunk/PKGBUILD)
Deleted:
  isl/repos/staging-x86_64/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 02:49:54 UTC (rev 135961)
+++ PKGBUILD2011-08-21 02:50:34 UTC (rev 135962)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=isl
-pkgver=0.07
-pkgrel=1
-pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
-arch=('i686' 'x86_64')
-url=http://www.kotnet.org/~skimo/isl/;
-license=('LGPL2.1')
-options=('!libtool')
-source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('0d1a38db9f1c7d526758092b985827ea')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make -j1 DESTDIR=$pkgdir/ install
-  
-  # this seems a better place for this file...
-  install -dm755 $pkgdir/usr/share/gdb/auto-load/
-  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
-}

Copied: isl/repos/staging-x86_64/PKGBUILD (from rev 135961, isl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 02:50:34 UTC (rev 135962)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.07
+pkgrel=1
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://www.kotnet.org/~skimo/isl/;
+license=('LGPL2.1')
+options=('!libtool')
+source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('0d1a38db9f1c7d526758092b985827ea')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+  
+  # this seems a better place for this file...
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/
+  mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.7.0.0-gdb.py
+}



[arch-commits] Commit in cloog/repos/staging-i686 (PKGBUILD PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:51:22
  Author: allan
Revision: 135963

archrelease: copy trunk to staging-i686

Added:
  cloog/repos/staging-i686/PKGBUILD
(from rev 135962, cloog/trunk/PKGBUILD)
Deleted:
  cloog/repos/staging-i686/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 02:50:34 UTC (rev 135962)
+++ PKGBUILD2011-08-21 02:51:22 UTC (rev 135963)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=cloog
-pkgver=0.16.3
-pkgrel=1
-pkgdesc=Library that generates loops for scanning polyhedra
-arch=('i686' 'x86_64')
-url=http://www.bastoul.net/cloog/;
-license=('GPL')
-depends=('isl' 'gmp')
-conflicts=('cloog-ppl0.15.10-2')
-options=('!libtool')
-source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
-md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-isl=system --with-gmp=system
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: cloog/repos/staging-i686/PKGBUILD (from rev 135962, 
cloog/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 02:51:22 UTC (rev 135963)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=cloog
+pkgver=0.16.3
+pkgrel=1
+pkgdesc=Library that generates loops for scanning polyhedra
+arch=('i686' 'x86_64')
+url=http://www.bastoul.net/cloog/;
+license=('GPL')
+depends=('isl' 'gmp')
+conflicts=('cloog-ppl0.15.10-2')
+options=('!libtool')
+source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
+md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-isl=system --with-gmp=system
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in cloog/repos/staging-x86_64 (PKGBUILD PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:51:57
  Author: allan
Revision: 135964

archrelease: copy trunk to staging-x86_64

Added:
  cloog/repos/staging-x86_64/PKGBUILD
(from rev 135963, cloog/trunk/PKGBUILD)
Deleted:
  cloog/repos/staging-x86_64/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 02:51:22 UTC (rev 135963)
+++ PKGBUILD2011-08-21 02:51:57 UTC (rev 135964)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-pkgname=cloog
-pkgver=0.16.3
-pkgrel=1
-pkgdesc=Library that generates loops for scanning polyhedra
-arch=('i686' 'x86_64')
-url=http://www.bastoul.net/cloog/;
-license=('GPL')
-depends=('isl' 'gmp')
-conflicts=('cloog-ppl0.15.10-2')
-options=('!libtool')
-source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
-md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-isl=system --with-gmp=system
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: cloog/repos/staging-x86_64/PKGBUILD (from rev 135963, 
cloog/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 02:51:57 UTC (rev 135964)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=cloog
+pkgver=0.16.3
+pkgrel=1
+pkgdesc=Library that generates loops for scanning polyhedra
+arch=('i686' 'x86_64')
+url=http://www.bastoul.net/cloog/;
+license=('GPL')
+depends=('isl' 'gmp')
+conflicts=('cloog-ppl0.15.10-2')
+options=('!libtool')
+source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
+md5sums=('a0f8a241cd1c4f103f8d2c91642b3498')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-isl=system --with-gmp=system
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in gcc/trunk (PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:54:42
  Author: allan
Revision: 135965

upgpkg: gcc 4.6.1-4

isl and clog rebuild, new upstream snapshot from 4.6 branch, new 
snapshot for libstdc++ man pages, do not build libssp (not needed on a glibc 
system)

Modified:
  gcc/trunk/PKGBUILD

--+
 PKGBUILD |   26 +-
 1 file changed, 9 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 02:51:57 UTC (rev 135964)
+++ PKGBUILD2011-08-21 02:54:42 UTC (rev 135965)
@@ -6,9 +6,9 @@
 
 pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
 pkgver=4.6.1
-pkgrel=3
-#_snapshot=4.6-20110603
-_libstdcppmanver=20110201  # Note: check source directory name 
when updating this
+pkgrel=4
+_snapshot=4.6-20110819
+_libstdcppmanver=20110814  # Note: check source directory name 
when updating this
 pkgdesc=The GNU Compiler Collection
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL' 'custom')
@@ -16,13 +16,13 @@
 makedepends=('binutils=2.21-9' 'libmpc' 'cloog' 'ppl' 'gcc-ada')
 checkdepends=('dejagnu')
 options=('!libtool' '!emptydirs')
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
-   
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+   
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2

ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2
gcc_pure64.patch
gcc-hash-style-both.patch)
-md5sums=('c57a9170c677bf795bdc04ed796ca491'
- '1e9fd2eaf0ee47ea64e82c48998f1999'
+md5sums=('b14d22730f9085eab7fd927039e68d28'
+ 'ce920d2550ff7e042b9f091d27764d8f'
  '4030ee1c08dd1e843c0225b772360e76'
  '4df25b623799b148a0703eaeec8fdf3f')
 
@@ -63,17 +63,9 @@
   --with-ppl --enable-cloog-backend=isl \
   --enable-lto --enable-gold --enable-ld=default \
   --enable-plugin --with-plugin-ld=ld.gold \
-  --disable-multilib --disable-libstdcxx-pch \
+  --disable-multilib --disable-libssp --disable-libstdcxx-pch \
   --enable-checking=release
   make
-  
-  # rebuild libssp without -fstack-protector and -D_FORTIFY_SOURCE=2
-  # adjusting Makefile.in prior to build still results in these leaking 
through (yay libtool...)
-  cd $CHOST/libssp
-  sed -i -e s#-fstack-protector#-fno-stack-protector# \
- -e s#-D_FORTIFY_SOURCE=2#-U_FORTIFY_SOURCE# Makefile
-  make clean
-  make
 }
 
 check() {
@@ -97,7 +89,7 @@
 
   cd gcc-build
   make -j1 -C $CHOST/libgcc DESTDIR=${pkgdir} install-shared
-  for lib in libmudflap libgomp libssp libstdc++-v3/src; do
+  for lib in libmudflap libgomp libstdc++-v3/src; do
 make -j1 -C $CHOST/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
   done
   make -j1 -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install



[arch-commits] Commit in pidgin/trunk (2 files)

2011-08-20 Thread Evangelos Foutras
Date: Saturday, August 20, 2011 @ 22:57:32
  Author: foutrelis
Revision: 135966

upgpkg: pidgin 2.10.0-1
New upstream release.

Modified:
  pidgin/trunk/PKGBUILD
Deleted:
  pidgin/trunk/ticket-14351-multiple-display-of-room-members.patch

-+
 PKGBUILD|   16 +---
 ticket-14351-multiple-display-of-room-members.patch |   17 -
 2 files changed, 5 insertions(+), 28 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 02:54:42 UTC (rev 135965)
+++ PKGBUILD2011-08-21 02:57:32 UTC (rev 135966)
@@ -6,8 +6,8 @@
 # Contributor: Lucien Immink l.imm...@student.fnt.hvu.nl
 
 pkgname=('pidgin' 'libpurple' 'finch')
-pkgver=2.9.0
-pkgrel=3
+pkgver=2.10.0
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://pidgin.im/;
 license=('GPL')
@@ -17,11 +17,9 @@
  'networkmanager')
 options=('!libtool')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2
-nm09-more.patch
-ticket-14351-multiple-display-of-room-members.patch)
-md5sums=('2cd285c7a40f93b7a51bfe733971d3a6'
- 'a673659d86c7a65aa710f7c8c7feda82'
- '47f16f838b741cfdeda18d7b08a7b816')
+nm09-more.patch)
+md5sums=('e1453c9093c4f32beec19abd14069a3f'
+ 'a673659d86c7a65aa710f7c8c7feda82')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -30,10 +28,6 @@
   # http://developer.pidgin.im/ticket/13859
   patch -Np1 -i $srcdir/nm09-more.patch
 
-  # Fix upstream issue #14351: multiple display of room members
-  # http://developer.pidgin.im/ticket/14351
-  patch -Np0 -i $srcdir/ticket-14351-multiple-display-of-room-members.patch
-
   # Use Python 2
   sed -i 's/env python$/\02/' */plugins/*.py \
 libpurple/purple-{remote,notifications-example,url-handler}

Deleted: ticket-14351-multiple-display-of-room-members.patch
===
--- ticket-14351-multiple-display-of-room-members.patch 2011-08-21 02:54:42 UTC 
(rev 135965)
+++ ticket-14351-multiple-display-of-room-members.patch 2011-08-21 02:57:32 UTC 
(rev 135966)
@@ -1,17 +0,0 @@
-#
-#
-# patch libpurple/conversation.c
-#  from [cd6817f4863abafef969359f65cc025f9483b401]
-#to [19aac10ceebae1ee28788b6f0c02bcfcff0c8803]
-#
-
 libpurple/conversation.c   cd6817f4863abafef969359f65cc025f9483b401
-+++ libpurple/conversation.c   19aac10ceebae1ee28788b6f0c02bcfcff0c8803
-@@ -1978,7 +1978,6 @@ purple_conv_chat_clear_users(PurpleConvC
-   }
- 
-   g_hash_table_remove_all(chat-users);
--  chat-users = NULL;
- 
-   g_list_free(users);
-   chat-in_room = NULL;



[arch-commits] Commit in pidgin/repos (extra-i686)

2011-08-20 Thread Evangelos Foutras
Date: Saturday, August 20, 2011 @ 22:57:35
  Author: foutrelis
Revision: 135967

archrelease: remove extra-i686

Deleted:
  pidgin/repos/extra-i686/



[arch-commits] Commit in gcc/repos (9 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 22:57:44
  Author: allan
Revision: 135968

archrelease: copy trunk to staging-i686

Added:
  gcc/repos/staging-i686/
  gcc/repos/staging-i686/PKGBUILD
(from rev 135965, gcc/trunk/PKGBUILD)
  gcc/repos/staging-i686/gcc-ada.install
(from rev 135965, gcc/trunk/gcc-ada.install)
  gcc/repos/staging-i686/gcc-fortran.install
(from rev 135965, gcc/trunk/gcc-fortran.install)
  gcc/repos/staging-i686/gcc-go.install
(from rev 135965, gcc/trunk/gcc-go.install)
  gcc/repos/staging-i686/gcc-hash-style-both.patch
(from rev 135965, gcc/trunk/gcc-hash-style-both.patch)
  gcc/repos/staging-i686/gcc-libs.install
(from rev 135965, gcc/trunk/gcc-libs.install)
  gcc/repos/staging-i686/gcc.install
(from rev 135965, gcc/trunk/gcc.install)
  gcc/repos/staging-i686/gcc_pure64.patch
(from rev 135967, gcc/trunk/gcc_pure64.patch)

---+
 PKGBUILD  |  254 
 gcc-ada.install   |   20 +++
 gcc-fortran.install   |   16 ++
 gcc-go.install|   20 +++
 gcc-hash-style-both.patch |  122 +
 gcc-libs.install  |   16 ++
 gcc.install   |   20 +++
 gcc_pure64.patch  |   26 
 8 files changed, 494 insertions(+)

Copied: gcc/repos/staging-i686/PKGBUILD (from rev 135965, gcc/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-08-21 02:57:44 UTC (rev 135968)
@@ -0,0 +1,254 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
+# NOTE: libtool requires rebuilt with each new gcc version
+
+pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
+pkgver=4.6.1
+pkgrel=4
+_snapshot=4.6-20110819
+_libstdcppmanver=20110814  # Note: check source directory name 
when updating this
+pkgdesc=The GNU Compiler Collection
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL' 'custom')
+url=http://gcc.gnu.org;
+makedepends=('binutils=2.21-9' 'libmpc' 'cloog' 'ppl' 'gcc-ada')
+checkdepends=('dejagnu')
+options=('!libtool' '!emptydirs')
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+   
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+   
ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2
+   gcc_pure64.patch
+   gcc-hash-style-both.patch)
+md5sums=('b14d22730f9085eab7fd927039e68d28'
+ 'ce920d2550ff7e042b9f091d27764d8f'
+ '4030ee1c08dd1e843c0225b772360e76'
+ '4df25b623799b148a0703eaeec8fdf3f')
+
+if [ -n ${_snapshot} ]; then
+  _basedir=${srcdir}/gcc-${_snapshot}
+else
+  _basedir=${srcdir}/gcc-${pkgver}
+fi
+
+build() {
+  cd ${_basedir}
+
+  # Do not install libiberty
+  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
+
+  # Do not run fixincludes
+  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
+
+  if [ ${CARCH} = x86_64 ]; then
+patch -Np1 -i ${srcdir}/gcc_pure64.patch
+  fi
+  patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch
+
+  echo ${pkgver}  gcc/BASE-VER
+
+  cd ${srcdir}
+  mkdir gcc-build  cd gcc-build
+
+  ${_basedir}/configure --prefix=/usr \
+  --libdir=/usr/lib --libexecdir=/usr/lib \
+  --mandir=/usr/share/man --infodir=/usr/share/info \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
+  --enable-shared --enable-threads=posix \
+  --with-system-zlib --enable-__cxa_atexit \
+  --disable-libunwind-exceptions --enable-clocale=gnu \
+  --enable-gnu-unique-object --enable-linker-build-id \
+  --with-ppl --enable-cloog-backend=isl \
+  --enable-lto --enable-gold --enable-ld=default \
+  --enable-plugin --with-plugin-ld=ld.gold \
+  --disable-multilib --disable-libssp --disable-libstdcxx-pch \
+  --enable-checking=release
+  make
+}
+
+check() {
+  cd gcc-build
+
+  # increase stack size to prevent test failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
+  ulimit -s 32768
+
+  # do not abort on error as some are expected
+  make -k check || true
+  ${_basedir}/contrib/test_summary
+}
+
+package_gcc-libs()
+{
+  pkgdesc=Runtime libraries shipped by GCC
+  groups=('base')
+  depends=('glibc=2.14')
+  install=gcc-libs.install
+
+  cd gcc-build
+  make -j1 -C $CHOST/libgcc DESTDIR=${pkgdir} install-shared
+  for lib in libmudflap libgomp libstdc++-v3/src; do
+make -j1 -C $CHOST/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
+  done
+  make -j1 -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install
+  make -j1 -C $CHOST/libgomp DESTDIR=${pkgdir} install-info
+
+  make -j1 DESTDIR=${pkgdir} install-target-libquadmath  
+  make -j1 DESTDIR=${pkgdir} install-target-libgfortran
+  make -j1 DESTDIR=${pkgdir} 

[arch-commits] Commit in pidgin/repos (extra-i686)

2011-08-20 Thread Evangelos Foutras
Date: Saturday, August 20, 2011 @ 22:57:46
  Author: foutrelis
Revision: 135969

archrelease: copy trunk to extra-i686

Added:
  pidgin/repos/extra-i686/



[arch-commits] Commit in pidgin/repos (extra-x86_64)

2011-08-20 Thread Evangelos Foutras
Date: Saturday, August 20, 2011 @ 22:57:48
  Author: foutrelis
Revision: 135970

archrelease: remove extra-x86_64

Deleted:
  pidgin/repos/extra-x86_64/



[arch-commits] Commit in pidgin/repos (extra-x86_64)

2011-08-20 Thread Evangelos Foutras
Date: Saturday, August 20, 2011 @ 22:57:59
  Author: foutrelis
Revision: 135971

archrelease: copy trunk to extra-x86_64

Added:
  pidgin/repos/extra-x86_64/



[arch-commits] Commit in gcc/repos (9 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 23:00:57
  Author: allan
Revision: 135972

archrelease: copy trunk to staging-x86_64

Added:
  gcc/repos/staging-x86_64/
  gcc/repos/staging-x86_64/PKGBUILD
(from rev 135971, gcc/trunk/PKGBUILD)
  gcc/repos/staging-x86_64/gcc-ada.install
(from rev 135971, gcc/trunk/gcc-ada.install)
  gcc/repos/staging-x86_64/gcc-fortran.install
(from rev 135971, gcc/trunk/gcc-fortran.install)
  gcc/repos/staging-x86_64/gcc-go.install
(from rev 135971, gcc/trunk/gcc-go.install)
  gcc/repos/staging-x86_64/gcc-hash-style-both.patch
(from rev 135971, gcc/trunk/gcc-hash-style-both.patch)
  gcc/repos/staging-x86_64/gcc-libs.install
(from rev 135971, gcc/trunk/gcc-libs.install)
  gcc/repos/staging-x86_64/gcc.install
(from rev 135971, gcc/trunk/gcc.install)
  gcc/repos/staging-x86_64/gcc_pure64.patch
(from rev 135971, gcc/trunk/gcc_pure64.patch)

---+
 PKGBUILD  |  254 
 gcc-ada.install   |   20 +++
 gcc-fortran.install   |   16 ++
 gcc-go.install|   20 +++
 gcc-hash-style-both.patch |  122 +
 gcc-libs.install  |   16 ++
 gcc.install   |   20 +++
 gcc_pure64.patch  |   26 
 8 files changed, 494 insertions(+)

Copied: gcc/repos/staging-x86_64/PKGBUILD (from rev 135971, gcc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2011-08-21 03:00:57 UTC (rev 135972)
@@ -0,0 +1,254 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
+# NOTE: libtool requires rebuilt with each new gcc version
+
+pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
+pkgver=4.6.1
+pkgrel=4
+_snapshot=4.6-20110819
+_libstdcppmanver=20110814  # Note: check source directory name 
when updating this
+pkgdesc=The GNU Compiler Collection
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL' 'custom')
+url=http://gcc.gnu.org;
+makedepends=('binutils=2.21-9' 'libmpc' 'cloog' 'ppl' 'gcc-ada')
+checkdepends=('dejagnu')
+options=('!libtool' '!emptydirs')
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+   
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+   
ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2
+   gcc_pure64.patch
+   gcc-hash-style-both.patch)
+md5sums=('b14d22730f9085eab7fd927039e68d28'
+ 'ce920d2550ff7e042b9f091d27764d8f'
+ '4030ee1c08dd1e843c0225b772360e76'
+ '4df25b623799b148a0703eaeec8fdf3f')
+
+if [ -n ${_snapshot} ]; then
+  _basedir=${srcdir}/gcc-${_snapshot}
+else
+  _basedir=${srcdir}/gcc-${pkgver}
+fi
+
+build() {
+  cd ${_basedir}
+
+  # Do not install libiberty
+  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
+
+  # Do not run fixincludes
+  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
+
+  if [ ${CARCH} = x86_64 ]; then
+patch -Np1 -i ${srcdir}/gcc_pure64.patch
+  fi
+  patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch
+
+  echo ${pkgver}  gcc/BASE-VER
+
+  cd ${srcdir}
+  mkdir gcc-build  cd gcc-build
+
+  ${_basedir}/configure --prefix=/usr \
+  --libdir=/usr/lib --libexecdir=/usr/lib \
+  --mandir=/usr/share/man --infodir=/usr/share/info \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
+  --enable-shared --enable-threads=posix \
+  --with-system-zlib --enable-__cxa_atexit \
+  --disable-libunwind-exceptions --enable-clocale=gnu \
+  --enable-gnu-unique-object --enable-linker-build-id \
+  --with-ppl --enable-cloog-backend=isl \
+  --enable-lto --enable-gold --enable-ld=default \
+  --enable-plugin --with-plugin-ld=ld.gold \
+  --disable-multilib --disable-libssp --disable-libstdcxx-pch \
+  --enable-checking=release
+  make
+}
+
+check() {
+  cd gcc-build
+
+  # increase stack size to prevent test failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
+  ulimit -s 32768
+
+  # do not abort on error as some are expected
+  make -k check || true
+  ${_basedir}/contrib/test_summary
+}
+
+package_gcc-libs()
+{
+  pkgdesc=Runtime libraries shipped by GCC
+  groups=('base')
+  depends=('glibc=2.14')
+  install=gcc-libs.install
+
+  cd gcc-build
+  make -j1 -C $CHOST/libgcc DESTDIR=${pkgdir} install-shared
+  for lib in libmudflap libgomp libstdc++-v3/src; do
+make -j1 -C $CHOST/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
+  done
+  make -j1 -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install
+  make -j1 -C $CHOST/libgomp DESTDIR=${pkgdir} install-info
+
+  make -j1 DESTDIR=${pkgdir} install-target-libquadmath  
+  make -j1 DESTDIR=${pkgdir} install-target-libgfortran
+  make -j1 

[arch-commits] Commit in pidgin/trunk (PKGBUILD)

2011-08-20 Thread Evangelos Foutras
Date: Saturday, August 20, 2011 @ 23:22:53
  Author: foutrelis
Revision: 135973

Remove versioned dependency of pidgin on libpurple.

Modified:
  pidgin/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 03:00:57 UTC (rev 135972)
+++ PKGBUILD2011-08-21 03:22:53 UTC (rev 135973)
@@ -48,8 +48,8 @@
 
 package_pidgin(){
   pkgdesc=Multi-protocol instant messaging client
-  depends=(libpurple=$pkgver-$pkgrel 'startup-notification' 'gtkspell'
-   'libxss' 'libsm' 'gstreamer0.10' 'hicolor-icon-theme')
+  depends=('libpurple' 'startup-notification' 'gtkspell' 'libxss' 'libsm'
+   'gstreamer0.10' 'hicolor-icon-theme')
   optdepends=('aspell: for spelling correction'
   'ca-certificates: SSL CA certificates'
   'gstreamer0.10-good-plugins: video and voice support'



[arch-commits] Commit in avahi/trunk (PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 23:33:39
  Author: allan
Revision: 135974

upgpkg: avahi 0.6.30-5

rebuild without unneeded linking to libssp

Modified:
  avahi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 03:22:53 UTC (rev 135973)
+++ PKGBUILD2011-08-21 03:33:39 UTC (rev 135974)
@@ -4,7 +4,7 @@
 
 pkgname=avahi
 pkgver=0.6.30
-pkgrel=4
+pkgrel=5
 pkgdesc='A multicast/unicast DNS-SD framework'
 arch=('i686' 'x86_64')
 url='http://www.avahi.org/'



[arch-commits] Commit in avahi/repos (5 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 23:34:58
  Author: allan
Revision: 135975

archrelease: copy trunk to testing-i686

Added:
  avahi/repos/testing-i686/
  avahi/repos/testing-i686/PKGBUILD
(from rev 135974, avahi/trunk/PKGBUILD)
  avahi/repos/testing-i686/gnome-nettool.png
(from rev 135974, avahi/trunk/gnome-nettool.png)
  avahi/repos/testing-i686/install
(from rev 135974, avahi/trunk/install)
  avahi/repos/testing-i686/rc.d.patch
(from rev 135974, avahi/trunk/rc.d.patch)

+
 PKGBUILD   |   75 +++
 install|   21 
 rc.d.patch |   11 
 3 files changed, 107 insertions(+)

Copied: avahi/repos/testing-i686/PKGBUILD (from rev 135974, 
avahi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-08-21 03:34:58 UTC (rev 135975)
@@ -0,0 +1,75 @@
+# $Id$
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=avahi
+pkgver=0.6.30
+pkgrel=5
+pkgdesc='A multicast/unicast DNS-SD framework'
+arch=('i686' 'x86_64')
+url='http://www.avahi.org/'
+license=('LGPL')
+depends=('expat' 'libdaemon' 'glib2' 'dbus' 'libcap' 'gdbm')
+optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
+'gtk2: gtk2 bindings'
+'qt3: qt3 bindings'
+'qt: qt bindings'
+'pygtk: avahi-bookmarks, avahi-discover'
+'twisted: avahi-bookmarks'
+'mono: mono bindings'
+'dbus-python: avahi-discover'
+'nss-mdns: NSS support for mDNS')
+makedepends=('qt' 'qt3' 'pygtk' 'mono' 'intltool' 'dbus-python'
+ 'gtk-sharp-2' 'gobject-introspection' 'gtk3')
+backup=(etc/avahi/avahi-daemon.conf etc/avahi/services/{sftp-,}ssh.service)
+install=install
+conflicts=('howl' 'mdnsresponder')
+provides=('howl' 'mdnsresponder')
+replaces=('howl' 'mdnsresponder')
+options=('!libtool')
+source=(http://www.avahi.org/download/avahi-${pkgver}.tar.gz;
+'gnome-nettool.png'
+'rc.d.patch')
+sha1sums=('5b77443537600a00770e4c77e3c443eeb5861d06'
+  'cf56387c88aed246b9f435efc182ef44de4d52f3'
+  '625ad7c131c0c1c383caeddef18fc7a32d8f3ab9')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   sed -i 's/netdev/network/g' avahi-daemon/avahi-dbus.conf
+   patch -p1 -i ../rc.d.patch
+
+   # pygtk requires python2; make it explicit in case other python are 
installed: FS#21865
+   PYTHON=python2 \
+   PKG_CONFIG_PATH=/opt/qt/lib/pkgconfig \
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-static \
+   --disable-monodoc \
+   --disable-doxygen-doc \
+   --disable-xmltoman \
+   --enable-compat-libdns_sd \
+   --enable-compat-howl \
+   --with-distro=archlinux \
+   --with-avahi-priv-access-group=network \
+   --with-autoipd-user=avahi \
+   --with-autoipd-group=avahi \
+   --with-systemdsystemunitdir=/lib/systemd/system # See FS#20999
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   install -D -m 644 ../gnome-nettool.png 
${pkgdir}/usr/share/pixmaps/gnome-nettool.png
+
+   cd ${pkgdir}
+   sed -i '1c #!/usr/bin/python2' usr/bin/avahi-{bookmarks,discover}
+   # howl and mdnsresponder compatability
+   (cd usr/include; ln -s avahi-compat-libdns_sd/dns_sd.h dns_sd.h; ln -s 
avahi-compat-howl howl)
+   (cd usr/lib/pkgconfig; ln -s avahi-compat-howl.pc howl.pc)
+}

Copied: avahi/repos/testing-i686/gnome-nettool.png (from rev 135974, 
avahi/trunk/gnome-nettool.png)
===
(Binary files differ)

Copied: avahi/repos/testing-i686/install (from rev 135974, avahi/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2011-08-21 03:34:58 UTC (rev 135975)
@@ -0,0 +1,21 @@
+post_install() {
+  getent group avahi /dev/null || groupadd -r -g 84 avahi /dev/null
+  getent passwd avahi /dev/null || useradd -r -u 84 -g avahi -d / -s 
/bin/false -c avahi avahi /dev/null
+
+  cat EOF
+== The following daemons may be added to DAEMONS in /etc/rc.conf:
+== avahi-daemon: the mdns responder, you probably want this.
+==   dbus needs to be running when you start it.
+== avahi-dnsconfd: daemon used for peer-to-peer automatic dns
+== configuration on dhcp-less networks.
+
+== To use some of the client applications you will have to install python.
+== In addition, pygtk is required for the graphical ones and
+== twisted 

[arch-commits] Commit in avahi/repos (5 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 23:36:17
  Author: allan
Revision: 135976

archrelease: copy trunk to testing-x86_64

Added:
  avahi/repos/testing-x86_64/
  avahi/repos/testing-x86_64/PKGBUILD
(from rev 135975, avahi/trunk/PKGBUILD)
  avahi/repos/testing-x86_64/gnome-nettool.png
(from rev 135975, avahi/trunk/gnome-nettool.png)
  avahi/repos/testing-x86_64/install
(from rev 135975, avahi/trunk/install)
  avahi/repos/testing-x86_64/rc.d.patch
(from rev 135975, avahi/trunk/rc.d.patch)

+
 PKGBUILD   |   75 +++
 install|   21 
 rc.d.patch |   11 
 3 files changed, 107 insertions(+)

Copied: avahi/repos/testing-x86_64/PKGBUILD (from rev 135975, 
avahi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-08-21 03:36:17 UTC (rev 135976)
@@ -0,0 +1,75 @@
+# $Id$
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=avahi
+pkgver=0.6.30
+pkgrel=5
+pkgdesc='A multicast/unicast DNS-SD framework'
+arch=('i686' 'x86_64')
+url='http://www.avahi.org/'
+license=('LGPL')
+depends=('expat' 'libdaemon' 'glib2' 'dbus' 'libcap' 'gdbm')
+optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
+'gtk2: gtk2 bindings'
+'qt3: qt3 bindings'
+'qt: qt bindings'
+'pygtk: avahi-bookmarks, avahi-discover'
+'twisted: avahi-bookmarks'
+'mono: mono bindings'
+'dbus-python: avahi-discover'
+'nss-mdns: NSS support for mDNS')
+makedepends=('qt' 'qt3' 'pygtk' 'mono' 'intltool' 'dbus-python'
+ 'gtk-sharp-2' 'gobject-introspection' 'gtk3')
+backup=(etc/avahi/avahi-daemon.conf etc/avahi/services/{sftp-,}ssh.service)
+install=install
+conflicts=('howl' 'mdnsresponder')
+provides=('howl' 'mdnsresponder')
+replaces=('howl' 'mdnsresponder')
+options=('!libtool')
+source=(http://www.avahi.org/download/avahi-${pkgver}.tar.gz;
+'gnome-nettool.png'
+'rc.d.patch')
+sha1sums=('5b77443537600a00770e4c77e3c443eeb5861d06'
+  'cf56387c88aed246b9f435efc182ef44de4d52f3'
+  '625ad7c131c0c1c383caeddef18fc7a32d8f3ab9')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   sed -i 's/netdev/network/g' avahi-daemon/avahi-dbus.conf
+   patch -p1 -i ../rc.d.patch
+
+   # pygtk requires python2; make it explicit in case other python are 
installed: FS#21865
+   PYTHON=python2 \
+   PKG_CONFIG_PATH=/opt/qt/lib/pkgconfig \
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-static \
+   --disable-monodoc \
+   --disable-doxygen-doc \
+   --disable-xmltoman \
+   --enable-compat-libdns_sd \
+   --enable-compat-howl \
+   --with-distro=archlinux \
+   --with-avahi-priv-access-group=network \
+   --with-autoipd-user=avahi \
+   --with-autoipd-group=avahi \
+   --with-systemdsystemunitdir=/lib/systemd/system # See FS#20999
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   install -D -m 644 ../gnome-nettool.png 
${pkgdir}/usr/share/pixmaps/gnome-nettool.png
+
+   cd ${pkgdir}
+   sed -i '1c #!/usr/bin/python2' usr/bin/avahi-{bookmarks,discover}
+   # howl and mdnsresponder compatability
+   (cd usr/include; ln -s avahi-compat-libdns_sd/dns_sd.h dns_sd.h; ln -s 
avahi-compat-howl howl)
+   (cd usr/lib/pkgconfig; ln -s avahi-compat-howl.pc howl.pc)
+}

Copied: avahi/repos/testing-x86_64/gnome-nettool.png (from rev 135975, 
avahi/trunk/gnome-nettool.png)
===
(Binary files differ)

Copied: avahi/repos/testing-x86_64/install (from rev 135975, 
avahi/trunk/install)
===
--- testing-x86_64/install  (rev 0)
+++ testing-x86_64/install  2011-08-21 03:36:17 UTC (rev 135976)
@@ -0,0 +1,21 @@
+post_install() {
+  getent group avahi /dev/null || groupadd -r -g 84 avahi /dev/null
+  getent passwd avahi /dev/null || useradd -r -u 84 -g avahi -d / -s 
/bin/false -c avahi avahi /dev/null
+
+  cat EOF
+== The following daemons may be added to DAEMONS in /etc/rc.conf:
+== avahi-daemon: the mdns responder, you probably want this.
+==   dbus needs to be running when you start it.
+== avahi-dnsconfd: daemon used for peer-to-peer automatic dns
+== configuration on dhcp-less networks.
+
+== To use some of the client applications you will have to install python.
+== In addition, pygtk is required for the graphical 

[arch-commits] Commit in avahi/repos/testing-i686 (8 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 23:38:24
  Author: allan
Revision: 135977

archrelease: copy trunk to testing-i686

Added:
  avahi/repos/testing-i686/PKGBUILD
(from rev 135976, avahi/trunk/PKGBUILD)
  avahi/repos/testing-i686/gnome-nettool.png
(from rev 135976, avahi/trunk/gnome-nettool.png)
  avahi/repos/testing-i686/install
(from rev 135976, avahi/trunk/install)
  avahi/repos/testing-i686/rc.d.patch
(from rev 135976, avahi/trunk/rc.d.patch)
Deleted:
  avahi/repos/testing-i686/PKGBUILD
  avahi/repos/testing-i686/gnome-nettool.png
  avahi/repos/testing-i686/install
  avahi/repos/testing-i686/rc.d.patch

+
 PKGBUILD   |  150 +--
 install|   42 
 rc.d.patch |   22 
 3 files changed, 107 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 03:36:17 UTC (rev 135976)
+++ PKGBUILD2011-08-21 03:38:24 UTC (rev 135977)
@@ -1,75 +0,0 @@
-# $Id$
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=avahi
-pkgver=0.6.30
-pkgrel=5
-pkgdesc='A multicast/unicast DNS-SD framework'
-arch=('i686' 'x86_64')
-url='http://www.avahi.org/'
-license=('LGPL')
-depends=('expat' 'libdaemon' 'glib2' 'dbus' 'libcap' 'gdbm')
-optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
-'gtk2: gtk2 bindings'
-'qt3: qt3 bindings'
-'qt: qt bindings'
-'pygtk: avahi-bookmarks, avahi-discover'
-'twisted: avahi-bookmarks'
-'mono: mono bindings'
-'dbus-python: avahi-discover'
-'nss-mdns: NSS support for mDNS')
-makedepends=('qt' 'qt3' 'pygtk' 'mono' 'intltool' 'dbus-python'
- 'gtk-sharp-2' 'gobject-introspection' 'gtk3')
-backup=(etc/avahi/avahi-daemon.conf etc/avahi/services/{sftp-,}ssh.service)
-install=install
-conflicts=('howl' 'mdnsresponder')
-provides=('howl' 'mdnsresponder')
-replaces=('howl' 'mdnsresponder')
-options=('!libtool')
-source=(http://www.avahi.org/download/avahi-${pkgver}.tar.gz;
-'gnome-nettool.png'
-'rc.d.patch')
-sha1sums=('5b77443537600a00770e4c77e3c443eeb5861d06'
-  'cf56387c88aed246b9f435efc182ef44de4d52f3'
-  '625ad7c131c0c1c383caeddef18fc7a32d8f3ab9')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   sed -i 's/netdev/network/g' avahi-daemon/avahi-dbus.conf
-   patch -p1 -i ../rc.d.patch
-
-   # pygtk requires python2; make it explicit in case other python are 
installed: FS#21865
-   PYTHON=python2 \
-   PKG_CONFIG_PATH=/opt/qt/lib/pkgconfig \
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --disable-static \
-   --disable-monodoc \
-   --disable-doxygen-doc \
-   --disable-xmltoman \
-   --enable-compat-libdns_sd \
-   --enable-compat-howl \
-   --with-distro=archlinux \
-   --with-avahi-priv-access-group=network \
-   --with-autoipd-user=avahi \
-   --with-autoipd-group=avahi \
-   --with-systemdsystemunitdir=/lib/systemd/system # See FS#20999
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-   install -D -m 644 ../gnome-nettool.png 
${pkgdir}/usr/share/pixmaps/gnome-nettool.png
-
-   cd ${pkgdir}
-   sed -i '1c #!/usr/bin/python2' usr/bin/avahi-{bookmarks,discover}
-   # howl and mdnsresponder compatability
-   (cd usr/include; ln -s avahi-compat-libdns_sd/dns_sd.h dns_sd.h; ln -s 
avahi-compat-howl howl)
-   (cd usr/lib/pkgconfig; ln -s avahi-compat-howl.pc howl.pc)
-}

Copied: avahi/repos/testing-i686/PKGBUILD (from rev 135976, 
avahi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 03:38:24 UTC (rev 135977)
@@ -0,0 +1,75 @@
+# $Id$
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=avahi
+pkgver=0.6.30
+pkgrel=5
+pkgdesc='A multicast/unicast DNS-SD framework'
+arch=('i686' 'x86_64')
+url='http://www.avahi.org/'
+license=('LGPL')
+depends=('expat' 'libdaemon' 'glib2' 'dbus' 'libcap' 'gdbm')
+optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
+'gtk2: gtk2 bindings'
+'qt3: qt3 bindings'
+'qt: qt bindings'
+'pygtk: avahi-bookmarks, avahi-discover'
+'twisted: avahi-bookmarks'
+'mono: mono bindings'
+'dbus-python: avahi-discover'
+'nss-mdns: NSS support for mDNS')
+makedepends=('qt' 'qt3' 'pygtk' 'mono' 'intltool' 'dbus-python'
+ 'gtk-sharp-2' 

[arch-commits] Commit in avahi/repos/testing-x86_64 (8 files)

2011-08-20 Thread Allan McRae
Date: Saturday, August 20, 2011 @ 23:40:24
  Author: allan
Revision: 135978

archrelease: copy trunk to testing-x86_64

Added:
  avahi/repos/testing-x86_64/PKGBUILD
(from rev 135977, avahi/trunk/PKGBUILD)
  avahi/repos/testing-x86_64/gnome-nettool.png
(from rev 135977, avahi/trunk/gnome-nettool.png)
  avahi/repos/testing-x86_64/install
(from rev 135977, avahi/trunk/install)
  avahi/repos/testing-x86_64/rc.d.patch
(from rev 135977, avahi/trunk/rc.d.patch)
Deleted:
  avahi/repos/testing-x86_64/PKGBUILD
  avahi/repos/testing-x86_64/gnome-nettool.png
  avahi/repos/testing-x86_64/install
  avahi/repos/testing-x86_64/rc.d.patch

+
 PKGBUILD   |  150 +--
 install|   42 
 rc.d.patch |   22 
 3 files changed, 107 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 03:38:24 UTC (rev 135977)
+++ PKGBUILD2011-08-21 03:40:24 UTC (rev 135978)
@@ -1,75 +0,0 @@
-# $Id$
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=avahi
-pkgver=0.6.30
-pkgrel=5
-pkgdesc='A multicast/unicast DNS-SD framework'
-arch=('i686' 'x86_64')
-url='http://www.avahi.org/'
-license=('LGPL')
-depends=('expat' 'libdaemon' 'glib2' 'dbus' 'libcap' 'gdbm')
-optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
-'gtk2: gtk2 bindings'
-'qt3: qt3 bindings'
-'qt: qt bindings'
-'pygtk: avahi-bookmarks, avahi-discover'
-'twisted: avahi-bookmarks'
-'mono: mono bindings'
-'dbus-python: avahi-discover'
-'nss-mdns: NSS support for mDNS')
-makedepends=('qt' 'qt3' 'pygtk' 'mono' 'intltool' 'dbus-python'
- 'gtk-sharp-2' 'gobject-introspection' 'gtk3')
-backup=(etc/avahi/avahi-daemon.conf etc/avahi/services/{sftp-,}ssh.service)
-install=install
-conflicts=('howl' 'mdnsresponder')
-provides=('howl' 'mdnsresponder')
-replaces=('howl' 'mdnsresponder')
-options=('!libtool')
-source=(http://www.avahi.org/download/avahi-${pkgver}.tar.gz;
-'gnome-nettool.png'
-'rc.d.patch')
-sha1sums=('5b77443537600a00770e4c77e3c443eeb5861d06'
-  'cf56387c88aed246b9f435efc182ef44de4d52f3'
-  '625ad7c131c0c1c383caeddef18fc7a32d8f3ab9')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   sed -i 's/netdev/network/g' avahi-daemon/avahi-dbus.conf
-   patch -p1 -i ../rc.d.patch
-
-   # pygtk requires python2; make it explicit in case other python are 
installed: FS#21865
-   PYTHON=python2 \
-   PKG_CONFIG_PATH=/opt/qt/lib/pkgconfig \
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --disable-static \
-   --disable-monodoc \
-   --disable-doxygen-doc \
-   --disable-xmltoman \
-   --enable-compat-libdns_sd \
-   --enable-compat-howl \
-   --with-distro=archlinux \
-   --with-avahi-priv-access-group=network \
-   --with-autoipd-user=avahi \
-   --with-autoipd-group=avahi \
-   --with-systemdsystemunitdir=/lib/systemd/system # See FS#20999
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-   install -D -m 644 ../gnome-nettool.png 
${pkgdir}/usr/share/pixmaps/gnome-nettool.png
-
-   cd ${pkgdir}
-   sed -i '1c #!/usr/bin/python2' usr/bin/avahi-{bookmarks,discover}
-   # howl and mdnsresponder compatability
-   (cd usr/include; ln -s avahi-compat-libdns_sd/dns_sd.h dns_sd.h; ln -s 
avahi-compat-howl howl)
-   (cd usr/lib/pkgconfig; ln -s avahi-compat-howl.pc howl.pc)
-}

Copied: avahi/repos/testing-x86_64/PKGBUILD (from rev 135977, 
avahi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 03:40:24 UTC (rev 135978)
@@ -0,0 +1,75 @@
+# $Id$
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=avahi
+pkgver=0.6.30
+pkgrel=5
+pkgdesc='A multicast/unicast DNS-SD framework'
+arch=('i686' 'x86_64')
+url='http://www.avahi.org/'
+license=('LGPL')
+depends=('expat' 'libdaemon' 'glib2' 'dbus' 'libcap' 'gdbm')
+optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
+'gtk2: gtk2 bindings'
+'qt3: qt3 bindings'
+'qt: qt bindings'
+'pygtk: avahi-bookmarks, avahi-discover'
+'twisted: avahi-bookmarks'
+'mono: mono bindings'
+'dbus-python: avahi-discover'
+'nss-mdns: NSS support for mDNS')
+makedepends=('qt' 'qt3' 'pygtk' 'mono' 'intltool' 'dbus-python'
+ 

[arch-commits] Commit in zile/trunk (PKGBUILD)

2011-08-20 Thread Eric Bélanger
Date: Saturday, August 20, 2011 @ 23:50:46
  Author: eric
Revision: 135979

Remove help2man makedepends (close FS#22454)

Modified:
  zile/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 03:40:24 UTC (rev 135978)
+++ PKGBUILD2011-08-21 03:50:46 UTC (rev 135979)
@@ -9,20 +9,19 @@
 arch=(i686 x86_64)
 url=http://www.gnu.org/software/zile/;
 # Lua is not required, the author uses it to generate some source files.
-makedepends=('help2man')
 depends=('ncurses')
 license=('GPL')
 source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
 md5sums=('fe77d801ba69e0fb9b4914a04b9ff506')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
 }
 



[arch-commits] Commit in zile/repos/extra-i686 (PKGBUILD PKGBUILD)

2011-08-20 Thread Eric Bélanger
Date: Saturday, August 20, 2011 @ 23:51:10
  Author: eric
Revision: 135980

archrelease: copy trunk to extra-i686

Added:
  zile/repos/extra-i686/PKGBUILD
(from rev 135979, zile/trunk/PKGBUILD)
Deleted:
  zile/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |   55 +++
 1 file changed, 27 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 03:50:46 UTC (rev 135979)
+++ PKGBUILD2011-08-21 03:51:10 UTC (rev 135980)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Maintainer: Kevin Piche ke...@archlinux.org
-
-pkgname=zile
-pkgver=2.3.24
-pkgrel=1
-pkgdesc=A small, fast, and powerful Emacs clone
-arch=(i686 x86_64)
-url=http://www.gnu.org/software/zile/;
-# Lua is not required, the author uses it to generate some source files.
-makedepends=('help2man')
-depends=('ncurses')
-license=('GPL')
-source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('fe77d801ba69e0fb9b4914a04b9ff506')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-

Copied: zile/repos/extra-i686/PKGBUILD (from rev 135979, zile/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 03:51:10 UTC (rev 135980)
@@ -0,0 +1,27 @@
+# $Id$
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Maintainer: Kevin Piche ke...@archlinux.org
+
+pkgname=zile
+pkgver=2.3.24
+pkgrel=1
+pkgdesc=A small, fast, and powerful Emacs clone
+arch=(i686 x86_64)
+url=http://www.gnu.org/software/zile/;
+# Lua is not required, the author uses it to generate some source files.
+depends=('ncurses')
+license=('GPL')
+source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('fe77d801ba69e0fb9b4914a04b9ff506')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+



[arch-commits] Commit in zile/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2011-08-20 Thread Eric Bélanger
Date: Saturday, August 20, 2011 @ 23:51:34
  Author: eric
Revision: 135981

archrelease: copy trunk to extra-x86_64

Added:
  zile/repos/extra-x86_64/PKGBUILD
(from rev 135980, zile/trunk/PKGBUILD)
Deleted:
  zile/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   55 +++
 1 file changed, 27 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 03:51:10 UTC (rev 135980)
+++ PKGBUILD2011-08-21 03:51:34 UTC (rev 135981)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Maintainer: Kevin Piche ke...@archlinux.org
-
-pkgname=zile
-pkgver=2.3.24
-pkgrel=1
-pkgdesc=A small, fast, and powerful Emacs clone
-arch=(i686 x86_64)
-url=http://www.gnu.org/software/zile/;
-# Lua is not required, the author uses it to generate some source files.
-makedepends=('help2man')
-depends=('ncurses')
-license=('GPL')
-source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('fe77d801ba69e0fb9b4914a04b9ff506')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-

Copied: zile/repos/extra-x86_64/PKGBUILD (from rev 135980, zile/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 03:51:34 UTC (rev 135981)
@@ -0,0 +1,27 @@
+# $Id$
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Maintainer: Kevin Piche ke...@archlinux.org
+
+pkgname=zile
+pkgver=2.3.24
+pkgrel=1
+pkgdesc=A small, fast, and powerful Emacs clone
+arch=(i686 x86_64)
+url=http://www.gnu.org/software/zile/;
+# Lua is not required, the author uses it to generate some source files.
+depends=('ncurses')
+license=('GPL')
+source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('fe77d801ba69e0fb9b4914a04b9ff506')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+



[arch-commits] Commit in squid/trunk (PKGBUILD)

2011-08-20 Thread Eric Bélanger
Date: Sunday, August 21, 2011 @ 00:54:25
  Author: eric
Revision: 135982

upgpkg: squid 3.1.14-2

Add libtool depends (close FS#24153)

Modified:
  squid/trunk/PKGBUILD

--+
 PKGBUILD |   29 -
 1 file changed, 16 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 03:51:34 UTC (rev 135981)
+++ PKGBUILD2011-08-21 04:54:25 UTC (rev 135982)
@@ -4,29 +4,32 @@
 
 pkgname=squid
 pkgver=3.1.14
-pkgrel=1
+pkgrel=2
 pkgdesc=A full-featured Web proxy cache server.
 arch=(i686 x86_64)
 url=http://www.squid-cache.org;
-depends=('openssl' 'pam' 'cron' 'perl')
+depends=('openssl' 'pam' 'cron' 'perl' 'libtool')
 makedepends=('libcap=2.16')
 license=('GPL')
 backup=(etc/squid/squid.conf etc/squid/mime.conf etc/conf.d/squid)
 install=squid.install
 source=(http://www.squid-cache.org/Versions/v3/3.1/${pkgname}-${pkgver}.tar.bz2
 squid squid.conf.d squid.pam squid.cron squid-3.1.11-unused.patch)
-md5sums=('8f82a451b04c3bf3c29202c548d2f2dd' 'd213b0cc1db72b749bb8c88716fdab39'
- '2383772ef94efddc7b920628bc7ac5b0' '270977cdd9b47ef44c0c427ab9034777'
- '5e17df989e2a74e869790c066f61225b' '8e59089e4a8556fc18df51979f1cfbff')
+md5sums=('8f82a451b04c3bf3c29202c548d2f2dd'
+ 'd213b0cc1db72b749bb8c88716fdab39'
+ '2383772ef94efddc7b920628bc7ac5b0'
+ '270977cdd9b47ef44c0c427ab9034777'
+ '5e17df989e2a74e869790c066f61225b'
+ '8e59089e4a8556fc18df51979f1cfbff')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
 
   # gcc 4.6 doesn't support -fhuge-objects.
   sed '/^HUGE_OBJECT_FLAG=/ s/-fhuge-objects//' -i configure
   # fix compile errors with gcc 4.6
   # http://bugs.squid-cache.org/show_bug.cgi?id=3178
-  #patch -Np1 -i ${srcdir}/squid-3.1.11-unused.patch
+  #patch -Np1 -i ${srcdir}/squid-3.1.11-unused.patch
 
   # fix cache_dir, cache_dir size, and effective group.
   sed '/^DEFAULT_SWAP_DIR/ s@/cache@/cache/squid@' -i src/Makefile.in
@@ -55,12 +58,12 @@
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
 
-  install -D -m755 ${srcdir}/squid ${pkgdir}/etc/rc.d/squid
-  install -D -m755 ${srcdir}/squid.cron ${pkgdir}/etc/cron.weekly/squid
-  install -D -m644 ${srcdir}/squid.conf.d ${pkgdir}/etc/conf.d/squid
-  install -D -m644 ${srcdir}/squid.pam ${pkgdir}/etc/pam.d/squid
+  install -D -m755 ${srcdir}/squid ${pkgdir}/etc/rc.d/squid
+  install -D -m755 ${srcdir}/squid.cron ${pkgdir}/etc/cron.weekly/squid
+  install -D -m644 ${srcdir}/squid.conf.d ${pkgdir}/etc/conf.d/squid
+  install -D -m644 ${srcdir}/squid.pam ${pkgdir}/etc/pam.d/squid
 }
 # vim: ts=2 sw=2 et ft=sh



[arch-commits] Commit in squid/repos/extra-i686 (14 files)

2011-08-20 Thread Eric Bélanger
Date: Sunday, August 21, 2011 @ 00:55:26
  Author: eric
Revision: 135983

archrelease: copy trunk to extra-i686

Added:
  squid/repos/extra-i686/PKGBUILD
(from rev 135982, squid/trunk/PKGBUILD)
  squid/repos/extra-i686/squid
(from rev 135982, squid/trunk/squid)
  squid/repos/extra-i686/squid-3.1.11-unused.patch
(from rev 135982, squid/trunk/squid-3.1.11-unused.patch)
  squid/repos/extra-i686/squid.conf.d
(from rev 135982, squid/trunk/squid.conf.d)
  squid/repos/extra-i686/squid.cron
(from rev 135982, squid/trunk/squid.cron)
  squid/repos/extra-i686/squid.install
(from rev 135982, squid/trunk/squid.install)
  squid/repos/extra-i686/squid.pam
(from rev 135982, squid/trunk/squid.pam)
Deleted:
  squid/repos/extra-i686/PKGBUILD
  squid/repos/extra-i686/squid
  squid/repos/extra-i686/squid-3.1.11-unused.patch
  squid/repos/extra-i686/squid.conf.d
  squid/repos/extra-i686/squid.cron
  squid/repos/extra-i686/squid.install
  squid/repos/extra-i686/squid.pam

---+
 PKGBUILD  |  135 +-
 squid |  104 +++
 squid-3.1.11-unused.patch |  592 ++--
 squid.conf.d  |8 
 squid.cron|8 
 squid.install |   52 +--
 squid.pam |8 
 7 files changed, 455 insertions(+), 452 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 04:54:25 UTC (rev 135982)
+++ PKGBUILD2011-08-21 04:55:26 UTC (rev 135983)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Kevin Piche ke...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=squid
-pkgver=3.1.14
-pkgrel=1
-pkgdesc=A full-featured Web proxy cache server.
-arch=(i686 x86_64)
-url=http://www.squid-cache.org;
-depends=('openssl' 'pam' 'cron' 'perl')
-makedepends=('libcap=2.16')
-license=('GPL')
-backup=(etc/squid/squid.conf etc/squid/mime.conf etc/conf.d/squid)
-install=squid.install
-source=(http://www.squid-cache.org/Versions/v3/3.1/${pkgname}-${pkgver}.tar.bz2
-squid squid.conf.d squid.pam squid.cron squid-3.1.11-unused.patch)
-md5sums=('8f82a451b04c3bf3c29202c548d2f2dd' 'd213b0cc1db72b749bb8c88716fdab39'
- '2383772ef94efddc7b920628bc7ac5b0' '270977cdd9b47ef44c0c427ab9034777'
- '5e17df989e2a74e869790c066f61225b' '8e59089e4a8556fc18df51979f1cfbff')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # gcc 4.6 doesn't support -fhuge-objects.
-  sed '/^HUGE_OBJECT_FLAG=/ s/-fhuge-objects//' -i configure
-  # fix compile errors with gcc 4.6
-  # http://bugs.squid-cache.org/show_bug.cgi?id=3178
-  #patch -Np1 -i ${srcdir}/squid-3.1.11-unused.patch
-
-  # fix cache_dir, cache_dir size, and effective group.
-  sed '/^DEFAULT_SWAP_DIR/ s@/cache@/cache/squid@' -i src/Makefile.in
-  sed '/^#cache_dir/ s/100/256/
-   /^NAME: cache_effective_group/ {n;n;s/none/proxy/}' -i src/cf.data.pre
-
-  ./configure --prefix=/usr --datadir=/usr/share/squid \
-  --sysconfdir=/etc/squid --libexecdir=/usr/lib/squid \
-  --localstatedir=/var --with-logdir=/var/log/squid \
-  --enable-auth=basic,digest,ntlm --enable-removal-policies=lru,heap \
-  --enable-digest-auth-helpers=password 
--enable-storeio=aufs,ufs,diskd \
-  
--enable-basic-auth-helpers=getpwnam,YP,NCSA,SMB,MSNT,PAM,multi-domain-NTLM \
-  --enable-external-acl-helpers=ip_user,unix_group,wbinfo_group \
-  --enable-ntlm-auth-helpers=smb_lm,fakeauth,no_check \
-  --enable-delay-pools --enable-arp-acl --enable-ssl --enable-snmp \
-  --enable-linux-netfilter --enable-ident-lookups \
-  --enable-useragent-log --enable-cache-digests --enable-referer-log \
-  --enable-arp-acl --enable-htcp --enable-carp --enable-epoll \
-  --with-filedescriptors=4096 --with-large-files --enable-arp-acl \
-  --with-default-user=proxy \
-  --enable-async-io --enable-truncate
-#some versions have build problems with both async and truncate enabled:
-#  --enable-async-io
-
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -D -m755 ${srcdir}/squid ${pkgdir}/etc/rc.d/squid
-  install -D -m755 ${srcdir}/squid.cron ${pkgdir}/etc/cron.weekly/squid
-  install -D -m644 ${srcdir}/squid.conf.d ${pkgdir}/etc/conf.d/squid
-  install -D -m644 ${srcdir}/squid.pam ${pkgdir}/etc/pam.d/squid
-}
-# vim: ts=2 sw=2 et ft=sh

Copied: squid/repos/extra-i686/PKGBUILD (from rev 135982, squid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 04:55:26 UTC (rev 135983)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Kevin Piche ke...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=squid
+pkgver=3.1.14
+pkgrel=2
+pkgdesc=A full-featured Web proxy cache server.
+arch=(i686 x86_64)
+url=http://www.squid-cache.org;
+depends=('openssl' 'pam' 'cron' 

[arch-commits] Commit in squid/repos/extra-x86_64 (14 files)

2011-08-20 Thread Eric Bélanger
Date: Sunday, August 21, 2011 @ 00:56:14
  Author: eric
Revision: 135984

archrelease: copy trunk to extra-x86_64

Added:
  squid/repos/extra-x86_64/PKGBUILD
(from rev 135983, squid/trunk/PKGBUILD)
  squid/repos/extra-x86_64/squid
(from rev 135983, squid/trunk/squid)
  squid/repos/extra-x86_64/squid-3.1.11-unused.patch
(from rev 135983, squid/trunk/squid-3.1.11-unused.patch)
  squid/repos/extra-x86_64/squid.conf.d
(from rev 135983, squid/trunk/squid.conf.d)
  squid/repos/extra-x86_64/squid.cron
(from rev 135983, squid/trunk/squid.cron)
  squid/repos/extra-x86_64/squid.install
(from rev 135983, squid/trunk/squid.install)
  squid/repos/extra-x86_64/squid.pam
(from rev 135983, squid/trunk/squid.pam)
Deleted:
  squid/repos/extra-x86_64/PKGBUILD
  squid/repos/extra-x86_64/squid
  squid/repos/extra-x86_64/squid-3.1.11-unused.patch
  squid/repos/extra-x86_64/squid.conf.d
  squid/repos/extra-x86_64/squid.cron
  squid/repos/extra-x86_64/squid.install
  squid/repos/extra-x86_64/squid.pam

---+
 PKGBUILD  |  135 +-
 squid |  104 +++
 squid-3.1.11-unused.patch |  592 ++--
 squid.conf.d  |8 
 squid.cron|8 
 squid.install |   52 +--
 squid.pam |8 
 7 files changed, 455 insertions(+), 452 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 04:55:26 UTC (rev 135983)
+++ PKGBUILD2011-08-21 04:56:14 UTC (rev 135984)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Kevin Piche ke...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=squid
-pkgver=3.1.14
-pkgrel=1
-pkgdesc=A full-featured Web proxy cache server.
-arch=(i686 x86_64)
-url=http://www.squid-cache.org;
-depends=('openssl' 'pam' 'cron' 'perl')
-makedepends=('libcap=2.16')
-license=('GPL')
-backup=(etc/squid/squid.conf etc/squid/mime.conf etc/conf.d/squid)
-install=squid.install
-source=(http://www.squid-cache.org/Versions/v3/3.1/${pkgname}-${pkgver}.tar.bz2
-squid squid.conf.d squid.pam squid.cron squid-3.1.11-unused.patch)
-md5sums=('8f82a451b04c3bf3c29202c548d2f2dd' 'd213b0cc1db72b749bb8c88716fdab39'
- '2383772ef94efddc7b920628bc7ac5b0' '270977cdd9b47ef44c0c427ab9034777'
- '5e17df989e2a74e869790c066f61225b' '8e59089e4a8556fc18df51979f1cfbff')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # gcc 4.6 doesn't support -fhuge-objects.
-  sed '/^HUGE_OBJECT_FLAG=/ s/-fhuge-objects//' -i configure
-  # fix compile errors with gcc 4.6
-  # http://bugs.squid-cache.org/show_bug.cgi?id=3178
-  #patch -Np1 -i ${srcdir}/squid-3.1.11-unused.patch
-
-  # fix cache_dir, cache_dir size, and effective group.
-  sed '/^DEFAULT_SWAP_DIR/ s@/cache@/cache/squid@' -i src/Makefile.in
-  sed '/^#cache_dir/ s/100/256/
-   /^NAME: cache_effective_group/ {n;n;s/none/proxy/}' -i src/cf.data.pre
-
-  ./configure --prefix=/usr --datadir=/usr/share/squid \
-  --sysconfdir=/etc/squid --libexecdir=/usr/lib/squid \
-  --localstatedir=/var --with-logdir=/var/log/squid \
-  --enable-auth=basic,digest,ntlm --enable-removal-policies=lru,heap \
-  --enable-digest-auth-helpers=password 
--enable-storeio=aufs,ufs,diskd \
-  
--enable-basic-auth-helpers=getpwnam,YP,NCSA,SMB,MSNT,PAM,multi-domain-NTLM \
-  --enable-external-acl-helpers=ip_user,unix_group,wbinfo_group \
-  --enable-ntlm-auth-helpers=smb_lm,fakeauth,no_check \
-  --enable-delay-pools --enable-arp-acl --enable-ssl --enable-snmp \
-  --enable-linux-netfilter --enable-ident-lookups \
-  --enable-useragent-log --enable-cache-digests --enable-referer-log \
-  --enable-arp-acl --enable-htcp --enable-carp --enable-epoll \
-  --with-filedescriptors=4096 --with-large-files --enable-arp-acl \
-  --with-default-user=proxy \
-  --enable-async-io --enable-truncate
-#some versions have build problems with both async and truncate enabled:
-#  --enable-async-io
-
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -D -m755 ${srcdir}/squid ${pkgdir}/etc/rc.d/squid
-  install -D -m755 ${srcdir}/squid.cron ${pkgdir}/etc/cron.weekly/squid
-  install -D -m644 ${srcdir}/squid.conf.d ${pkgdir}/etc/conf.d/squid
-  install -D -m644 ${srcdir}/squid.pam ${pkgdir}/etc/pam.d/squid
-}
-# vim: ts=2 sw=2 et ft=sh

Copied: squid/repos/extra-x86_64/PKGBUILD (from rev 135983, 
squid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 04:56:14 UTC (rev 135984)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Kevin Piche ke...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=squid
+pkgver=3.1.14
+pkgrel=2
+pkgdesc=A full-featured Web proxy cache server.
+arch=(i686 x86_64)
+url=http://www.squid-cache.org;

[arch-commits] Commit in scummvm/trunk (PKGBUILD)

2011-08-20 Thread Eric Bélanger
Date: Sunday, August 21, 2011 @ 01:00:39
  Author: eric
Revision: 135985

upgpkg: scummvm 1.3.1-2

Add mpeg2 support (close FS#21669), Clean up depends

Modified:
  scummvm/trunk/PKGBUILD

--+
 PKGBUILD |   22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 04:56:14 UTC (rev 135984)
+++ PKGBUILD2011-08-21 05:00:39 UTC (rev 135985)
@@ -4,19 +4,20 @@
 
 pkgname=scummvm
 pkgver=1.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A 'virtual machine' for several classic graphical point-and-click 
adventure games.
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.scummvm.org/;
-depends=('gcc-libs' 'alsa-lib' 'libmad' 'libvorbis' 'zlib' 'flac=1.1.4' 'sdl' 
'fluidsynth')
+depends=('libmad' 'sdl' 'fluidsynth')
+makedepends=('libmpeg2')
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
 md5sums=('87e5076e93bfa762f1c5d7f45b41d4e2')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --backend=sdl --disable-debug \
---with-mpeg2-prefix=/usr \
+--enable-mpeg2 --with-mpeg2-prefix=/usr \
 --with-flac-prefix=/usr \
 --with-fluidsynth-prefix=/usr \
 --prefix=/usr
@@ -24,15 +25,14 @@
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  install -Dm755 scummvm ${pkgdir}/usr/bin/scummvm
-  install -Dm644 dists/scummvm.6 ${pkgdir}/usr/share/man/man6/scummvm.6
+  cd ${srcdir}/${pkgname}-${pkgver}
+  install -Dm755 scummvm ${pkgdir}/usr/bin/scummvm
+  install -Dm644 dists/scummvm.6 ${pkgdir}/usr/share/man/man6/scummvm.6
   # fixes FS#9118 
   install -Dm644 dists/${pkgname}.desktop \
-   ${pkgdir}/usr/share/applications/${pkgname}.desktop
+   ${pkgdir}/usr/share/applications/${pkgname}.desktop
   install -Dm644  icons/scummvm.xpm \
-   ${pkgdir}/usr/share/pixmaps/scummvm.xpm
+   ${pkgdir}/usr/share/pixmaps/scummvm.xpm
 
-  install -Dm644 gui/themes/scummmodern.zip 
${pkgdir}/usr/share/scummvm/scummmodern.zip
-
+  install -Dm644 gui/themes/scummmodern.zip 
${pkgdir}/usr/share/scummvm/scummmodern.zip
 }



[arch-commits] Commit in scummvm/repos/extra-i686 (PKGBUILD PKGBUILD)

2011-08-20 Thread Eric Bélanger
Date: Sunday, August 21, 2011 @ 01:00:51
  Author: eric
Revision: 135986

archrelease: copy trunk to extra-i686

Added:
  scummvm/repos/extra-i686/PKGBUILD
(from rev 135985, scummvm/trunk/PKGBUILD)
Deleted:
  scummvm/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |   76 ++---
 1 file changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 05:00:39 UTC (rev 135985)
+++ PKGBUILD2011-08-21 05:00:51 UTC (rev 135986)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: juergen juer...@hoetzel.info
-# Contributor: Manolis Tzanidakis, Petter Gundersen
-
-pkgname=scummvm
-pkgver=1.3.1
-pkgrel=1
-pkgdesc=A 'virtual machine' for several classic graphical point-and-click 
adventure games.
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.scummvm.org/;
-depends=('gcc-libs' 'alsa-lib' 'libmad' 'libvorbis' 'zlib' 'flac=1.1.4' 'sdl' 
'fluidsynth')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('87e5076e93bfa762f1c5d7f45b41d4e2')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --backend=sdl --disable-debug \
---with-mpeg2-prefix=/usr \
---with-flac-prefix=/usr \
---with-fluidsynth-prefix=/usr \
---prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  install -Dm755 scummvm ${pkgdir}/usr/bin/scummvm
-  install -Dm644 dists/scummvm.6 ${pkgdir}/usr/share/man/man6/scummvm.6
-  # fixes FS#9118 
-  install -Dm644 dists/${pkgname}.desktop \
-   ${pkgdir}/usr/share/applications/${pkgname}.desktop
-  install -Dm644  icons/scummvm.xpm \
-   ${pkgdir}/usr/share/pixmaps/scummvm.xpm
-
-  install -Dm644 gui/themes/scummmodern.zip 
${pkgdir}/usr/share/scummvm/scummmodern.zip
-
-}

Copied: scummvm/repos/extra-i686/PKGBUILD (from rev 135985, 
scummvm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 05:00:51 UTC (rev 135986)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: juergen juer...@hoetzel.info
+# Contributor: Manolis Tzanidakis, Petter Gundersen
+
+pkgname=scummvm
+pkgver=1.3.1
+pkgrel=2
+pkgdesc=A 'virtual machine' for several classic graphical point-and-click 
adventure games.
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.scummvm.org/;
+depends=('libmad' 'sdl' 'fluidsynth')
+makedepends=('libmpeg2')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('87e5076e93bfa762f1c5d7f45b41d4e2')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --backend=sdl --disable-debug \
+--enable-mpeg2 --with-mpeg2-prefix=/usr \
+--with-flac-prefix=/usr \
+--with-fluidsynth-prefix=/usr \
+--prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  install -Dm755 scummvm ${pkgdir}/usr/bin/scummvm
+  install -Dm644 dists/scummvm.6 ${pkgdir}/usr/share/man/man6/scummvm.6
+  # fixes FS#9118 
+  install -Dm644 dists/${pkgname}.desktop \
+   ${pkgdir}/usr/share/applications/${pkgname}.desktop
+  install -Dm644  icons/scummvm.xpm \
+   ${pkgdir}/usr/share/pixmaps/scummvm.xpm
+
+  install -Dm644 gui/themes/scummmodern.zip 
${pkgdir}/usr/share/scummvm/scummmodern.zip
+}



[arch-commits] Commit in scummvm/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2011-08-20 Thread Eric Bélanger
Date: Sunday, August 21, 2011 @ 01:01:03
  Author: eric
Revision: 135987

archrelease: copy trunk to extra-x86_64

Added:
  scummvm/repos/extra-x86_64/PKGBUILD
(from rev 135986, scummvm/trunk/PKGBUILD)
Deleted:
  scummvm/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   76 ++---
 1 file changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 05:00:51 UTC (rev 135986)
+++ PKGBUILD2011-08-21 05:01:03 UTC (rev 135987)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: juergen juer...@hoetzel.info
-# Contributor: Manolis Tzanidakis, Petter Gundersen
-
-pkgname=scummvm
-pkgver=1.3.1
-pkgrel=1
-pkgdesc=A 'virtual machine' for several classic graphical point-and-click 
adventure games.
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.scummvm.org/;
-depends=('gcc-libs' 'alsa-lib' 'libmad' 'libvorbis' 'zlib' 'flac=1.1.4' 'sdl' 
'fluidsynth')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('87e5076e93bfa762f1c5d7f45b41d4e2')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --backend=sdl --disable-debug \
---with-mpeg2-prefix=/usr \
---with-flac-prefix=/usr \
---with-fluidsynth-prefix=/usr \
---prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  install -Dm755 scummvm ${pkgdir}/usr/bin/scummvm
-  install -Dm644 dists/scummvm.6 ${pkgdir}/usr/share/man/man6/scummvm.6
-  # fixes FS#9118 
-  install -Dm644 dists/${pkgname}.desktop \
-   ${pkgdir}/usr/share/applications/${pkgname}.desktop
-  install -Dm644  icons/scummvm.xpm \
-   ${pkgdir}/usr/share/pixmaps/scummvm.xpm
-
-  install -Dm644 gui/themes/scummmodern.zip 
${pkgdir}/usr/share/scummvm/scummmodern.zip
-
-}

Copied: scummvm/repos/extra-x86_64/PKGBUILD (from rev 135986, 
scummvm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 05:01:03 UTC (rev 135987)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: juergen juer...@hoetzel.info
+# Contributor: Manolis Tzanidakis, Petter Gundersen
+
+pkgname=scummvm
+pkgver=1.3.1
+pkgrel=2
+pkgdesc=A 'virtual machine' for several classic graphical point-and-click 
adventure games.
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.scummvm.org/;
+depends=('libmad' 'sdl' 'fluidsynth')
+makedepends=('libmpeg2')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('87e5076e93bfa762f1c5d7f45b41d4e2')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --backend=sdl --disable-debug \
+--enable-mpeg2 --with-mpeg2-prefix=/usr \
+--with-flac-prefix=/usr \
+--with-fluidsynth-prefix=/usr \
+--prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  install -Dm755 scummvm ${pkgdir}/usr/bin/scummvm
+  install -Dm644 dists/scummvm.6 ${pkgdir}/usr/share/man/man6/scummvm.6
+  # fixes FS#9118 
+  install -Dm644 dists/${pkgname}.desktop \
+   ${pkgdir}/usr/share/applications/${pkgname}.desktop
+  install -Dm644  icons/scummvm.xpm \
+   ${pkgdir}/usr/share/pixmaps/scummvm.xpm
+
+  install -Dm644 gui/themes/scummmodern.zip 
${pkgdir}/usr/share/scummvm/scummmodern.zip
+}



[arch-commits] Commit in fakeroot/trunk (PKGBUILD)

2011-08-20 Thread Allan McRae
Date: Sunday, August 21, 2011 @ 01:20:10
  Author: allan
Revision: 135988

upgpkg: fakeroot 1.17-1

upstream update

Modified:
  fakeroot/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-21 05:01:03 UTC (rev 135987)
+++ PKGBUILD2011-08-21 05:20:10 UTC (rev 135988)
@@ -3,7 +3,7 @@
 # Contributor: Jochem Kossen j.kos...@home.nl
 
 pkgname=fakeroot
-pkgver=1.16
+pkgver=1.17
 pkgrel=1
 pkgdesc=Gives a fake root environment, useful for building packages as a 
non-privileged user
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
 options=('!libtool')
 
source=(http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.bz2)
-md5sums=('e8470aa7e965bfc74467de0e594e60b6')
+md5sums=('1adc603cc18eedee11d9889798c863db')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in fakeroot/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Sunday, August 21, 2011 @ 01:21:09
  Author: allan
Revision: 135989

archrelease: copy trunk to testing-i686

Added:
  fakeroot/repos/testing-i686/
  fakeroot/repos/testing-i686/PKGBUILD
(from rev 135988, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-i686/fakeroot.install
(from rev 135988, fakeroot/trunk/fakeroot.install)

--+
 PKGBUILD |   35 +++
 fakeroot.install |   14 ++
 2 files changed, 49 insertions(+)

Copied: fakeroot/repos/testing-i686/PKGBUILD (from rev 135988, 
fakeroot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-08-21 05:21:09 UTC (rev 135989)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Jochem Kossen j.kos...@home.nl
+
+pkgname=fakeroot
+pkgver=1.17
+pkgrel=1
+pkgdesc=Gives a fake root environment, useful for building packages as a 
non-privileged user
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://packages.debian.org/fakeroot;
+groups=('base-devel')
+install=fakeroot.install
+depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
+options=('!libtool')
+source=(http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.bz2)
+md5sums=('1adc603cc18eedee11d9889798c863db')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libdir=/usr/lib/libfakeroot \
+  --disable-static --with-ipc=sysv
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -dm755 ${pkgdir}/etc/ld.so.conf.d/
+  echo '/usr/lib/libfakeroot'  ${pkgdir}/etc/ld.so.conf.d/fakeroot.conf
+
+  # install README for sysv/tcp usage
+  install -Dm644 $srcdir/$pkgname-$pkgver/README 
$pkgdir/usr/share/doc/$pkgname/README
+}

Copied: fakeroot/repos/testing-i686/fakeroot.install (from rev 135988, 
fakeroot/trunk/fakeroot.install)
===
--- testing-i686/fakeroot.install   (rev 0)
+++ testing-i686/fakeroot.install   2011-08-21 05:21:09 UTC (rev 135989)
@@ -0,0 +1,14 @@
+post_install() {
+  sbin/ldconfig -r .
+}
+
+post_upgrade() {
+  if [ $(vercmp $2 1.14.4-2) -lt 0 ]; then
+sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
+  fi
+  sbin/ldconfig -r .
+}
+
+pre_remove() {
+  sbin/ldconfig -r .
+}



[arch-commits] Commit in fakeroot/repos (3 files)

2011-08-20 Thread Allan McRae
Date: Sunday, August 21, 2011 @ 01:22:11
  Author: allan
Revision: 135990

archrelease: copy trunk to testing-x86_64

Added:
  fakeroot/repos/testing-x86_64/
  fakeroot/repos/testing-x86_64/PKGBUILD
(from rev 135989, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-x86_64/fakeroot.install
(from rev 135989, fakeroot/trunk/fakeroot.install)

--+
 PKGBUILD |   35 +++
 fakeroot.install |   14 ++
 2 files changed, 49 insertions(+)

Copied: fakeroot/repos/testing-x86_64/PKGBUILD (from rev 135989, 
fakeroot/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-08-21 05:22:11 UTC (rev 135990)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Jochem Kossen j.kos...@home.nl
+
+pkgname=fakeroot
+pkgver=1.17
+pkgrel=1
+pkgdesc=Gives a fake root environment, useful for building packages as a 
non-privileged user
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://packages.debian.org/fakeroot;
+groups=('base-devel')
+install=fakeroot.install
+depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
+options=('!libtool')
+source=(http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.bz2)
+md5sums=('1adc603cc18eedee11d9889798c863db')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libdir=/usr/lib/libfakeroot \
+  --disable-static --with-ipc=sysv
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -dm755 ${pkgdir}/etc/ld.so.conf.d/
+  echo '/usr/lib/libfakeroot'  ${pkgdir}/etc/ld.so.conf.d/fakeroot.conf
+
+  # install README for sysv/tcp usage
+  install -Dm644 $srcdir/$pkgname-$pkgver/README 
$pkgdir/usr/share/doc/$pkgname/README
+}

Copied: fakeroot/repos/testing-x86_64/fakeroot.install (from rev 135989, 
fakeroot/trunk/fakeroot.install)
===
--- testing-x86_64/fakeroot.install (rev 0)
+++ testing-x86_64/fakeroot.install 2011-08-21 05:22:11 UTC (rev 135990)
@@ -0,0 +1,14 @@
+post_install() {
+  sbin/ldconfig -r .
+}
+
+post_upgrade() {
+  if [ $(vercmp $2 1.14.4-2) -lt 0 ]; then
+sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
+  fi
+  sbin/ldconfig -r .
+}
+
+pre_remove() {
+  sbin/ldconfig -r .
+}