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

2013-01-01 Thread Dan McGee
Date: Tuesday, January 1, 2013 @ 22:39:24
  Author: dan
Revision: 174029

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

Added:
  cvsps/repos/extra-i686/PKGBUILD
(from rev 174028, cvsps/trunk/PKGBUILD)
  cvsps/repos/extra-x86_64/PKGBUILD
(from rev 174028, cvsps/trunk/PKGBUILD)
Deleted:
  cvsps/repos/extra-i686/PKGBUILD
  cvsps/repos/extra-i686/cvsps-buffer-overflow.patch
  cvsps/repos/extra-x86_64/PKGBUILD
  cvsps/repos/extra-x86_64/cvsps-buffer-overflow.patch

--+
 extra-i686/PKGBUILD  |   53 ++-
 extra-i686/cvsps-buffer-overflow.patch   |   66 -
 extra-x86_64/PKGBUILD|   53 ++-
 extra-x86_64/cvsps-buffer-overflow.patch |   66 -
 4 files changed, 50 insertions(+), 188 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-02 03:38:51 UTC (rev 174028)
+++ extra-i686/PKGBUILD 2013-01-02 03:39:24 UTC (rev 174029)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Jeff 'codemac' Mickey 
-
-pkgname=cvsps
-pkgver=3.2
-pkgrel=1
-pkgdesc="Generating 'patchset' information from a CVS repository"
-url="http://www.catb.org/esr/cvsps/";
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('zlib')
-makedepends=('asciidoc')
-source=("http://www.catb.org/~esr/cvsps/cvsps-${pkgver}.tar.gz";
-cvsps-buffer-overflow.patch)
-md5sums=('4a00c4b0d504078268db7c6c68decc38'
- '6cfe55ee7f1137f9d2e670502d8cc3c7')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 < ../cvsps-buffer-overflow.patch
-  make prefix=/usr
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix="$pkgdir/usr" install
-}

Copied: cvsps/repos/extra-i686/PKGBUILD (from rev 174028, cvsps/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-02 03:39:24 UTC (rev 174029)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Dan McGee 
+# Contributor: Jeff 'codemac' Mickey 
+
+pkgname=cvsps
+pkgver=3.4
+pkgrel=1
+pkgdesc="Generating 'patchset' information from a CVS repository"
+url="http://www.catb.org/esr/cvsps/";
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('zlib')
+makedepends=('asciidoc')
+source=("http://www.catb.org/~esr/cvsps/cvsps-${pkgver}.tar.gz";)
+md5sums=('5bdcc9e49e1837e8016cdd139fe05ce7')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make prefix=/usr
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make prefix="$pkgdir/usr" install
+}

Deleted: extra-i686/cvsps-buffer-overflow.patch
===
--- extra-i686/cvsps-buffer-overflow.patch  2013-01-02 03:38:51 UTC (rev 
174028)
+++ extra-i686/cvsps-buffer-overflow.patch  2013-01-02 03:39:24 UTC (rev 
174029)
@@ -1,66 +0,0 @@
-diff -Naur cvsps-3.2.orig/cvsps.c cvsps-3.2/cvsps.c
 cvsps-3.2.orig/cvsps.c 2012-12-24 19:23:24.0 +
-+++ cvsps-3.2/cvsps.c  2012-12-27 03:28:24.698076155 +
-@@ -1078,17 +1078,16 @@
- static CvsFile * parse_rcs_file(const char * buff)
- {
- char fn[PATH_MAX];
--int len = strlen(buff + 10);
-+size_t len = strlen(buff + 10);
- char * p;
- 
- /* once a single file has been parsed ok we set this */
- static bool path_ok;
--
-+
- /* chop the ",v" string and the "LF" */
- len -= 3;
- memcpy(fn, buff + 10, len);
- fn[len] = 0;
--
- if (strncmp(fn, strip_path, strip_path_len) != 0)
- {
-   /* if the very first file fails the strip path,
-@@ -1109,10 +1108,10 @@
- 
-   while ((p = strstr(p, repository_path)))
-   lastp = p++;
--  
-+
-   if (lastp)
-   {
--  int len = strlen(repository_path);
-+  size_t len = strlen(repository_path);
-   memcpy(strip_path, fn, lastp - fn + len + 1);
-   strip_path_len = lastp - fn + len + 1;
-   strip_path[strip_path_len] = 0;
-@@ -1136,16 +1135,26 @@
-*
-* For now just ignore such files
-*/
--  debug(DEBUG_APPWARN, "WARNING: file %s doesn't match strip_path %s. 
ignoring", 
-+  debug(DEBUG_APPWARN, "WARNING: file %s doesn't match strip_path %s. 
ignoring",
- fn, strip_path);
-   return NULL;
- }
- 
-  ok:
--path_ok = true;
--
-+ /*
-+ fix for rhbz#576076
-+ ./cvsps --norc -q --cvs-direct -u -A --root 
:pserver:anonym...@cvs-mirror.mozilla.org:/cvsroot NSS
-+ */
-+if(len <= strip_path_len)
-+{
-+debug(DEBUG_APPWARN, "WARNING: file %s doesn't match strip_path %s. 
ignoring",
-+fn, strip_path);
-+return NULL;
-+}
- /* remove from beginning the 'strip_path' string */
- len -= strip_path_len;
-+path_ok = true;
-+
- memmove(fn, fn + strip_path_len, len);
- fn[

[arch-commits] Commit in cvsps/trunk (PKGBUILD cvsps-buffer-overflow.patch)

2013-01-01 Thread Dan McGee
Date: Tuesday, January 1, 2013 @ 22:38:51
  Author: dan
Revision: 174028

upgpkg: cvsps 3.4-1

Modified:
  cvsps/trunk/PKGBUILD
Deleted:
  cvsps/trunk/cvsps-buffer-overflow.patch

-+
 PKGBUILD|   11 ++-
 cvsps-buffer-overflow.patch |   66 --
 2 files changed, 4 insertions(+), 73 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-02 02:57:17 UTC (rev 174027)
+++ PKGBUILD2013-01-02 03:38:51 UTC (rev 174028)
@@ -1,9 +1,9 @@
 # $Id$
-# Maintainer:
+# Maintainer: Dan McGee 
 # Contributor: Jeff 'codemac' Mickey 
 
 pkgname=cvsps
-pkgver=3.2
+pkgver=3.4
 pkgrel=1
 pkgdesc="Generating 'patchset' information from a CVS repository"
 url="http://www.catb.org/esr/cvsps/";
@@ -11,14 +11,11 @@
 arch=('i686' 'x86_64')
 depends=('zlib')
 makedepends=('asciidoc')
-source=("http://www.catb.org/~esr/cvsps/cvsps-${pkgver}.tar.gz";
-cvsps-buffer-overflow.patch)
-md5sums=('4a00c4b0d504078268db7c6c68decc38'
- '6cfe55ee7f1137f9d2e670502d8cc3c7')
+source=("http://www.catb.org/~esr/cvsps/cvsps-${pkgver}.tar.gz";)
+md5sums=('5bdcc9e49e1837e8016cdd139fe05ce7')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 < ../cvsps-buffer-overflow.patch
   make prefix=/usr
 }
 

Deleted: cvsps-buffer-overflow.patch
===
--- cvsps-buffer-overflow.patch 2013-01-02 02:57:17 UTC (rev 174027)
+++ cvsps-buffer-overflow.patch 2013-01-02 03:38:51 UTC (rev 174028)
@@ -1,66 +0,0 @@
-diff -Naur cvsps-3.2.orig/cvsps.c cvsps-3.2/cvsps.c
 cvsps-3.2.orig/cvsps.c 2012-12-24 19:23:24.0 +
-+++ cvsps-3.2/cvsps.c  2012-12-27 03:28:24.698076155 +
-@@ -1078,17 +1078,16 @@
- static CvsFile * parse_rcs_file(const char * buff)
- {
- char fn[PATH_MAX];
--int len = strlen(buff + 10);
-+size_t len = strlen(buff + 10);
- char * p;
- 
- /* once a single file has been parsed ok we set this */
- static bool path_ok;
--
-+
- /* chop the ",v" string and the "LF" */
- len -= 3;
- memcpy(fn, buff + 10, len);
- fn[len] = 0;
--
- if (strncmp(fn, strip_path, strip_path_len) != 0)
- {
-   /* if the very first file fails the strip path,
-@@ -1109,10 +1108,10 @@
- 
-   while ((p = strstr(p, repository_path)))
-   lastp = p++;
--  
-+
-   if (lastp)
-   {
--  int len = strlen(repository_path);
-+  size_t len = strlen(repository_path);
-   memcpy(strip_path, fn, lastp - fn + len + 1);
-   strip_path_len = lastp - fn + len + 1;
-   strip_path[strip_path_len] = 0;
-@@ -1136,16 +1135,26 @@
-*
-* For now just ignore such files
-*/
--  debug(DEBUG_APPWARN, "WARNING: file %s doesn't match strip_path %s. 
ignoring", 
-+  debug(DEBUG_APPWARN, "WARNING: file %s doesn't match strip_path %s. 
ignoring",
- fn, strip_path);
-   return NULL;
- }
- 
-  ok:
--path_ok = true;
--
-+ /*
-+ fix for rhbz#576076
-+ ./cvsps --norc -q --cvs-direct -u -A --root 
:pserver:anonym...@cvs-mirror.mozilla.org:/cvsroot NSS
-+ */
-+if(len <= strip_path_len)
-+{
-+debug(DEBUG_APPWARN, "WARNING: file %s doesn't match strip_path %s. 
ignoring",
-+fn, strip_path);
-+return NULL;
-+}
- /* remove from beginning the 'strip_path' string */
- len -= strip_path_len;
-+path_ok = true;
-+
- memmove(fn, fn + strip_path_len, len);
- fn[len] = 0;
- 



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

2013-01-01 Thread Stéphane Gaudreault
Date: Tuesday, January 1, 2013 @ 21:57:17
  Author: stephane
Revision: 174027

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

Added:
  ginac/repos/community-i686/
  ginac/repos/community-i686/PKGBUILD
(from rev 174026, ginac/trunk/PKGBUILD)
  ginac/repos/community-i686/ginac.install
(from rev 174026, ginac/trunk/ginac.install)
  ginac/repos/community-x86_64/
  ginac/repos/community-x86_64/PKGBUILD
(from rev 174026, ginac/trunk/PKGBUILD)
  ginac/repos/community-x86_64/ginac.install
(from rev 174026, ginac/trunk/ginac.install)

+
 community-i686/PKGBUILD|   33 +
 community-i686/ginac.install   |   20 
 community-x86_64/PKGBUILD  |   33 +
 community-x86_64/ginac.install |   20 
 4 files changed, 106 insertions(+)

Copied: ginac/repos/community-i686/PKGBUILD (from rev 174026, 
ginac/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-01-02 02:57:17 UTC (rev 174027)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Thomas Baechler 
+
+pkgname=ginac
+pkgver=1.6.2
+pkgrel=2
+pkgdesc="C++ library for symbolic calculations"
+arch=('i686' 'x86_64')
+url="http://www.ginac.de/";
+license=("GPL")
+depends=('cln')
+makedepends=('transfig' 'doxygen' 'texlive-bin')
+source=(http://www.ginac.de/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('c93913c4c543874b2ade4f0390030641be7e0c41')
+options=(!libtool)
+install=${pkgname}.install
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: ginac/repos/community-i686/ginac.install (from rev 174026, 
ginac/trunk/ginac.install)
===
--- community-i686/ginac.install(rev 0)
+++ community-i686/ginac.install2013-01-02 02:57:17 UTC (rev 174027)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(ginac.info)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+usr/bin/install-info $infodir/$file $infodir/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+usr/bin/install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}

Copied: ginac/repos/community-x86_64/PKGBUILD (from rev 174026, 
ginac/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-01-02 02:57:17 UTC (rev 174027)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Thomas Baechler 
+
+pkgname=ginac
+pkgver=1.6.2
+pkgrel=2
+pkgdesc="C++ library for symbolic calculations"
+arch=('i686' 'x86_64')
+url="http://www.ginac.de/";
+license=("GPL")
+depends=('cln')
+makedepends=('transfig' 'doxygen' 'texlive-bin')
+source=(http://www.ginac.de/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('c93913c4c543874b2ade4f0390030641be7e0c41')
+options=(!libtool)
+install=${pkgname}.install
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: ginac/repos/community-x86_64/ginac.install (from rev 174026, 
ginac/trunk/ginac.install)
===
--- community-x86_64/ginac.install  (rev 0)
+++ community-x86_64/ginac.install  2013-01-02 02:57:17 UTC (rev 174027)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(ginac.info)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+usr/bin/install-info $infodir/$file $infodir/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+usr/bin/install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}



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

2013-01-01 Thread Stéphane Gaudreault
Date: Tuesday, January 1, 2013 @ 21:56:53
  Author: stephane
Revision: 174026

upgpkg: ginac 1.6.2-2

rebuild of old pkg, tidy-up PKGBUILD

Added:
  ginac/trunk/ginac.install
Modified:
  ginac/trunk/PKGBUILD

---+
 PKGBUILD  |   34 ++
 ginac.install |   20 
 2 files changed, 42 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 19:16:09 UTC (rev 174025)
+++ PKGBUILD2013-01-02 02:56:53 UTC (rev 174026)
@@ -1,23 +1,33 @@
 # $Id$
-# Maintainer: Thomas Baechler 
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Thomas Baechler 
 
 pkgname=ginac
-pkgver=1.4.1
-pkgrel=1
-pkgdesc="set of libraries to allow the creation of integrated systems that 
embed symbolic manipulations"
+pkgver=1.6.2
+pkgrel=2
+pkgdesc="C++ library for symbolic calculations"
 arch=('i686' 'x86_64')
 url="http://www.ginac.de/";
 license=("GPL")
-depends=('cln>=1.2.0')
-makedepends=('transfig')
-source=(http://www.ginac.de/$pkgname-$pkgver.tar.bz2)
-md5sums=('37356db3fe520498f2857e3ed6daec82')
+depends=('cln')
+makedepends=('transfig' 'doxygen' 'texlive-bin')
+source=(http://www.ginac.de/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('c93913c4c543874b2ade4f0390030641be7e0c41')
 options=(!libtool)
+install=${pkgname}.install
 
 build() {
-  cd $startdir/src/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make || return 1
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
   make check
-  make DESTDIR=$startdir/pkg install
 }
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Added: ginac.install
===
--- ginac.install   (rev 0)
+++ ginac.install   2013-01-02 02:56:53 UTC (rev 174026)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(ginac.info)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+usr/bin/install-info $infodir/$file $infodir/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+usr/bin/install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}



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

2013-01-01 Thread andyrtr
Date: Tuesday, January 1, 2013 @ 14:16:09
  Author: andyrtr
Revision: 174025

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

Added:
  libxcb/repos/extra-i686/PKGBUILD
(from rev 174024, libxcb/trunk/PKGBUILD)
  libxcb/repos/extra-i686/libxcb-1.1-no-pthread-stubs.patch
(from rev 174024, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch)
  libxcb/repos/extra-x86_64/PKGBUILD
(from rev 174024, libxcb/trunk/PKGBUILD)
  libxcb/repos/extra-x86_64/libxcb-1.1-no-pthread-stubs.patch
(from rev 174024, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch)
Deleted:
  libxcb/repos/extra-i686/PKGBUILD
  libxcb/repos/extra-i686/libxcb-1.1-no-pthread-stubs.patch
  libxcb/repos/extra-x86_64/PKGBUILD
  libxcb/repos/extra-x86_64/libxcb-1.1-no-pthread-stubs.patch

+
 extra-i686/PKGBUILD|   71 +++
 extra-i686/libxcb-1.1-no-pthread-stubs.patch   |   22 +++
 extra-x86_64/PKGBUILD  |   71 +++
 extra-x86_64/libxcb-1.1-no-pthread-stubs.patch |   22 +++
 4 files changed, 94 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-01 19:15:32 UTC (rev 174024)
+++ extra-i686/PKGBUILD 2013-01-01 19:16:09 UTC (rev 174025)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=libxcb
-pkgver=1.9
-pkgrel=1
-pkgdesc="X11 client-side library"
-arch=(i686 x86_64)
-url="http://xcb.freedesktop.org/";
-depends=('xcb-proto>=1.7' 'libxdmcp' 'libxau')
-makedepends=('pkgconfig' 'libxslt' 'python2')
-options=('!libtool')
-license=('custom')
-source=($url/dist/$pkgname-$pkgver.tar.bz2
-libxcb-1.1-no-pthread-stubs.patch)
-sha1sums=('ad2fb95eeec41ba3d39502a4f7460c3b64fdf061'
-  'd2df03ddf3e949c10c2c185256b0eb7fa02837ab')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 -i "$srcdir/libxcb-1.1-no-pthread-stubs.patch"
-  PYTHON=/usr/bin/python2 
-  ./autogen.sh --prefix=/usr \
---enable-xinput \
---disable-static
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -m755 -d "$pkgdir/usr/share/licenses/$pkgname"
-  install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: libxcb/repos/extra-i686/PKGBUILD (from rev 174024, 
libxcb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-01 19:16:09 UTC (rev 174025)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libxcb
+pkgver=1.9
+pkgrel=2
+pkgdesc="X11 client-side library"
+arch=(i686 x86_64)
+url="http://xcb.freedesktop.org/";
+depends=('xcb-proto>=1.7' 'libxdmcp' 'libxau')
+makedepends=('pkgconfig' 'libxslt' 'python2')
+options=('!libtool')
+license=('custom')
+source=($url/dist/$pkgname-$pkgver.tar.bz2
+libxcb-1.1-no-pthread-stubs.patch)
+sha1sums=('ad2fb95eeec41ba3d39502a4f7460c3b64fdf061'
+  'd2df03ddf3e949c10c2c185256b0eb7fa02837ab')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -Np1 -i "$srcdir/libxcb-1.1-no-pthread-stubs.patch"
+  PYTHON=/usr/bin/python2 
+  ./autogen.sh --prefix=/usr \
+--enable-xinput \
+--enable-xkb \
+--disable-static
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -m755 -d "$pkgdir/usr/share/licenses/$pkgname"
+  install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname"
+}

Deleted: extra-i686/libxcb-1.1-no-pthread-stubs.patch
===
--- extra-i686/libxcb-1.1-no-pthread-stubs.patch2013-01-01 19:15:32 UTC 
(rev 174024)
+++ extra-i686/libxcb-1.1-no-pthread-stubs.patch2013-01-01 19:16:09 UTC 
(rev 174025)
@@ -1,11 +0,0 @@
 libxcb-1.8.1/configure.ac  2012-03-09 15:38:38.0 +0100
-+++ libxcb-1.8.1/configure.ac.new  2012-03-09 16:50:40.107109896 +0100
-@@ -35,7 +35,7 @@
- 
- # Checks for pkg-config packages
- PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.7)
--NEEDED="pthread-stubs xau >= 0.99.2"
-+NEEDED="xau >= 0.99.2"
- PKG_CHECK_MODULES(NEEDED, $NEEDED)
- 
- have_xdmcp="no"

Copied: libxcb/repos/extra-i686/libxcb-1.1-no-pthread-stubs.patch (from rev 
174024, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch)
===
--- extra-i686/libxcb-1.1-no-pthread-stubs.patch
(rev 0)
+++ extra-i686/libxcb-1.1-no-pthread-stubs.patch2013-01-01 19:16:09 UTC 
(rev 174025)
@@ -0,0 +1,11 @@
+--- libxcb-1.8.1/configure.ac  2012-03-09 15:38:38.0 +0100
 libxcb-1.8.1/configure.ac.new  2012-03-09 16:50:40.107109896 +0100
+@@ -35,7 +35,7 @@
+ 
+ # Checks for pkg-config packages
+ PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.7)
+-NEEDED="pthread-

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

2013-01-01 Thread andyrtr
Date: Tuesday, January 1, 2013 @ 14:15:32
  Author: andyrtr
Revision: 174024

upgpkg: libxcb 1.9-2

enable xkb extension; FS#33259

Modified:
  libxcb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 18:37:13 UTC (rev 174023)
+++ PKGBUILD2013-01-01 19:15:32 UTC (rev 174024)
@@ -4,7 +4,7 @@
 
 pkgname=libxcb
 pkgver=1.9
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 client-side library"
 arch=(i686 x86_64)
 url="http://xcb.freedesktop.org/";
@@ -23,6 +23,7 @@
   PYTHON=/usr/bin/python2 
   ./autogen.sh --prefix=/usr \
 --enable-xinput \
+--enable-xkb \
 --disable-static
   make
 }



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

2013-01-01 Thread andyrtr
Date: Tuesday, January 1, 2013 @ 13:37:13
  Author: andyrtr
Revision: 174023

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

Added:
  redland/repos/extra-i686/PKGBUILD
(from rev 174022, redland/trunk/PKGBUILD)
  redland/repos/extra-i686/rpath.diff
(from rev 174022, redland/trunk/rpath.diff)
  redland/repos/extra-x86_64/PKGBUILD
(from rev 174022, redland/trunk/PKGBUILD)
  redland/repos/extra-x86_64/rpath.diff
(from rev 174022, redland/trunk/rpath.diff)
Deleted:
  redland/repos/extra-i686/PKGBUILD
  redland/repos/extra-i686/rpath.diff
  redland/repos/extra-x86_64/PKGBUILD
  redland/repos/extra-x86_64/rpath.diff

-+
 extra-i686/PKGBUILD |  159 +++---
 extra-i686/rpath.diff   |   22 +++---
 extra-x86_64/PKGBUILD   |  159 +++---
 extra-x86_64/rpath.diff |   22 +++---
 4 files changed, 182 insertions(+), 180 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-01 18:36:34 UTC (rev 174022)
+++ extra-i686/PKGBUILD 2013-01-01 18:37:13 UTC (rev 174023)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Francois Charette  
-
-pkgbase=redland
-epoch=1
-pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 
'redland-storage-virtuoso' 'redland-storage-sqlite')
-pkgver=1.0.15
-pkgrel=3
-url="http://librdf.org/";
-license=("GPL")
-arch=('i686' 'x86_64')
-makedepends=('rasqal>=0.9.28' 'raptor>=2.0.6' 'db>=5.3' 'postgresql-libs' 
'libmysqlclient' 'unixodbc' 'sqlite3')
-options=('!libtool')
-source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz{,.asc}
-rpath.diff)
-sha1sums=('e93d6fafaeebdf9f15a1044be6f4a88270f007af'
-  '3aeef38a7247ae33db6a0a19511ef4132240164b'
-  'f5db05c925b6bcd6402d5abd75c648b137f069c7')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-   --enable-release \
-   --disable-static \
-   --with-raptor=system \
-   --with-rasqal=system \
-   --with-sqlite=3
-
-  # nuke rpath
-  patch -Np0 -i "${srcdir}/rpath.diff"
-
-  make
-}
-
-package_redland() {
- pkgdesc="Library that provides a high-level interface to RDF data"
- depends=('rasqal>=0.9.26' 'raptor>=2.0.6' 'libltdl')
- 
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}/usr/lib/redland"
-}
-
-package_redland-storage-mysql() {
- pkgdesc="MySQL storage support for Redland"
- depends=('redland' 'libmysqlclient')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  install -dm755 "${pkgdir}/usr/lib/redland"
-  install -m755 src/.libs/librdf_storage_mysql.so 
"${pkgdir}/usr/lib/redland/librdf_storage_mysql.so"
-}
-
-package_redland-storage-postgresql() {
- pkgdesc="PostgreSQL storage support for Redland"
- depends=('redland' 'postgresql-libs')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  install -dm755 "${pkgdir}/usr/lib/redland"
-  install -m755 src/.libs/librdf_storage_postgresql.so 
"${pkgdir}/usr/lib/redland/"
-}
-
-package_redland-storage-virtuoso() {
- pkgdesc="Virtuoso storage support for Redland"
- depends=('redland' 'unixodbc' 'db')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  install -dm755 "${pkgdir}/usr/lib/redland"
-  install -m755 src/.libs/librdf_storage_virtuoso.so 
"${pkgdir}/usr/lib/redland/"
-}
-
-package_redland-storage-sqlite() {
- pkgdesc="SQLite storage support for Redland"
- depends=('redland' 'sqlite3' 'db')
- 
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  install -dm755 "${pkgdir}/usr/lib/redland"
-  install -m755 src/.libs/librdf_storage_sqlite.so "${pkgdir}/usr/lib/redland/"
-}

Copied: redland/repos/extra-i686/PKGBUILD (from rev 174022, 
redland/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-01 18:37:13 UTC (rev 174023)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: AndyRTR 
+# Contributor: Francois Charette  
+
+pkgbase=redland
+epoch=1
+pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 
'redland-storage-virtuoso' 'redland-storage-sqlite')
+pkgver=1.0.16
+pkgrel=1
+url="http://librdf.org/";
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=('rasqal' 'raptor' 'db' 'postgresql-libs' 'libmysqlclient' 
'unixodbc' 'sqlite')
+options=('!libtool')
+source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz{,.asc}
+rpath.diff)
+sha256sums=('d9a274fc086e61119d5c9beafb8d05527e040ec86f4c0961276ca8de0a049dbd'
+'2955af40eb2fbffa6e1ef28f7f1b7f607a3958478a5080896b878da96605246d'
+'9ddf9f7581f5194d73ad908f3b26354c70d3079a7a87c8add8a0d0e4c6974fec')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+   --enable-release \
+   --disable-static \
+   --with-raptor=system \
+   --with-rasqal=system \
+   --with-sqlite=3

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

2013-01-01 Thread andyrtr
Date: Tuesday, January 1, 2013 @ 13:36:34
  Author: andyrtr
Revision: 174022

upgpkg: redland 1:1.0.16-1

upstream update 1.0.16

Modified:
  redland/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 15:15:16 UTC (rev 174021)
+++ PKGBUILD2013-01-01 18:36:34 UTC (rev 174022)
@@ -6,8 +6,8 @@
 pkgbase=redland
 epoch=1
 pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 
'redland-storage-virtuoso' 'redland-storage-sqlite')
-pkgver=1.0.15
-pkgrel=3
+pkgver=1.0.16
+pkgrel=1
 url="http://librdf.org/";
 license=("GPL")
 arch=('i686' 'x86_64')
@@ -15,9 +15,9 @@
 options=('!libtool')
 source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz{,.asc}
 rpath.diff)
-sha1sums=('e93d6fafaeebdf9f15a1044be6f4a88270f007af'
-  '3aeef38a7247ae33db6a0a19511ef4132240164b'
-  'f5db05c925b6bcd6402d5abd75c648b137f069c7')
+sha256sums=('d9a274fc086e61119d5c9beafb8d05527e040ec86f4c0961276ca8de0a049dbd'
+'2955af40eb2fbffa6e1ef28f7f1b7f607a3958478a5080896b878da96605246d'
+'9ddf9f7581f5194d73ad908f3b26354c70d3079a7a87c8add8a0d0e4c6974fec')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in patch/repos (12 files)

2013-01-01 Thread Evangelos Foutras
Date: Tuesday, January 1, 2013 @ 10:15:16
  Author: foutrelis
Revision: 174021

db-move: moved patch from [testing] to [core] (i686, x86_64)

Added:
  patch/repos/core-i686/PKGBUILD
(from rev 174020, patch/repos/testing-i686/PKGBUILD)
  patch/repos/core-i686/patch-2.6.1-get-arg.patch
(from rev 174020, patch/repos/testing-i686/patch-2.6.1-get-arg.patch)
  
patch/repos/core-i686/patch-2.7.1-initialize-data-structures-early-enough.patch
(from rev 174020, 
patch/repos/testing-i686/patch-2.7.1-initialize-data-structures-early-enough.patch)
  patch/repos/core-x86_64/PKGBUILD
(from rev 174020, patch/repos/testing-x86_64/PKGBUILD)
  patch/repos/core-x86_64/patch-2.6.1-get-arg.patch
(from rev 174020, patch/repos/testing-x86_64/patch-2.6.1-get-arg.patch)
  
patch/repos/core-x86_64/patch-2.7.1-initialize-data-structures-early-enough.patch
(from rev 174020, 
patch/repos/testing-x86_64/patch-2.7.1-initialize-data-structures-early-enough.patch)
Deleted:
  patch/repos/core-i686/PKGBUILD
  patch/repos/core-i686/patch-2.6.1-get-arg.patch
  patch/repos/core-x86_64/PKGBUILD
  patch/repos/core-x86_64/patch-2.6.1-get-arg.patch
  patch/repos/testing-i686/
  patch/repos/testing-x86_64/

---+
 core-i686/PKGBUILD|   77 
+
 core-i686/patch-2.6.1-get-arg.patch   |   24 +-
 core-i686/patch-2.7.1-initialize-data-structures-early-enough.patch   |   81 
++
 core-x86_64/PKGBUILD  |   77 
+
 core-x86_64/patch-2.6.1-get-arg.patch |   24 +-
 core-x86_64/patch-2.7.1-initialize-data-structures-early-enough.patch |   81 
++
 6 files changed, 272 insertions(+), 92 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2013-01-01 14:05:40 UTC (rev 174020)
+++ core-i686/PKGBUILD  2013-01-01 15:15:16 UTC (rev 174021)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: judd 
-
-pkgname=patch
-pkgver=2.7.1
-pkgrel=1
-pkgdesc="A utility to apply patch files to original sources"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/patch/patch.html";
-license=('GPL')
-groups=('base-devel')
-depends=('glibc')
-makedepends=('ed')
-optdepends=('ed: for patch -e functionality')
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('e9ae5393426d3ad783a300a338c09b72'
- 'b12189e0de3cb2af25268441647ec517')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir install
-}

Copied: patch/repos/core-i686/PKGBUILD (from rev 174020, 
patch/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2013-01-01 15:15:16 UTC (rev 174021)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: judd 
+
+pkgname=patch
+pkgver=2.7.1
+pkgrel=2
+pkgdesc="A utility to apply patch files to original sources"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/patch/patch.html";
+license=('GPL')
+groups=('base-devel')
+depends=('glibc')
+makedepends=('ed')
+optdepends=('ed: for patch -e functionality')
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
+patch-2.7.1-initialize-data-structures-early-enough.patch)
+md5sums=('e9ae5393426d3ad783a300a338c09b72'
+ 'b12189e0de3cb2af25268441647ec517'
+ 'dc6367a7cd49933d4006c246789e98da')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Fix segfault on non-numeric strip-count
+  # (also segfaults on nonexistent directory passed to -d)
+  # http://savannah.gnu.org/bugs/?37500
+  patch -Np1 -i \
+$srcdir/patch-2.7.1-initialize-data-structures-early-enough.patch
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}

Deleted: core-i686/patch-2.6.1-get-arg.patch
===
--- core-i686/patch-2.6.1-get-arg.patch 2013-01-01 14:05:40 UTC (rev 174020)
+++ core-i686/patch-2.6.1-get-arg.patch 2013-01-01 15:15:16 UTC (rev 174021)
@@ -1,12 +0,0 @@
-diff -up patch-2.6.1/src/patch.c.get-arg patch-2.6.1/src/patch.c
 patch-2.6.1/src/patch.c.get-arg2010-07-27 18:05:26.217150510 +0100
-+++ patch-2.6.1/src/patch.c2010-07-27 18:05:47.464150892 +0100
-@@ -558,7 +558,7 @@ static struct option const longopts[] =
-   {"remove-empty-files", no_argument, NULL, 'E'},
-   {"force", no_argument, NULL, 'f'},
-   {"fuzz", required_argument, NULL, 'F'},
--  {"get", n

[arch-commits] Commit in automake/repos/testing-any (4 files)

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 09:05:40
  Author: allan
Revision: 174020

archrelease: copy trunk to testing-any

Added:
  automake/repos/testing-any/PKGBUILD
(from rev 174019, automake/trunk/PKGBUILD)
  automake/repos/testing-any/automake.install
(from rev 174019, automake/trunk/automake.install)
Deleted:
  automake/repos/testing-any/PKGBUILD
  automake/repos/testing-any/automake.install

--+
 PKGBUILD |   68 ++---
 automake.install |   44 +-
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-01-01 14:05:11 UTC (rev 174019)
+++ PKGBUILD2013-01-01 14:05:40 UTC (rev 174020)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: judd 
-
-pkgname=automake
-pkgver=1.13
-pkgrel=1
-pkgdesc="A GNU tool for automatically creating Makefiles"
-arch=('any')
-license=('GPL')
-url="http://www.gnu.org/software/automake";
-groups=('base-devel')
-depends=('perl' 'bash')
-makedepends=('autoconf')
-install=automake.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('bb37ffad523a1928efdd157b6561b631'
- '4fb5ba9b5c4a1b9c6b77bdcd663a01bc')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: automake/repos/testing-any/PKGBUILD (from rev 174019, 
automake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-01-01 14:05:40 UTC (rev 174020)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: judd 
+
+pkgname=automake
+pkgver=1.13.1
+pkgrel=1
+pkgdesc="A GNU tool for automatically creating Makefiles"
+arch=('any')
+license=('GPL')
+url="http://www.gnu.org/software/automake";
+groups=('base-devel')
+depends=('perl' 'bash')
+makedepends=('autoconf')
+install=automake.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('a60380ab11e1481376b7747d1b42ced2'
+ '272d0de0756252b1835234cca0ff2cfe')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: automake.install
===
--- automake.install2013-01-01 14:05:11 UTC (rev 174019)
+++ automake.install2013-01-01 14:05:40 UTC (rev 174020)
@@ -1,22 +0,0 @@
-infodir=/usr/share/info
-filelist=(automake.info automake.info-1 automake.info-2)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: automake/repos/testing-any/automake.install (from rev 174019, 
automake/trunk/automake.install)
===
--- automake.install(rev 0)
+++ automake.install2013-01-01 14:05:40 UTC (rev 174020)
@@ -0,0 +1,22 @@
+infodir=/usr/share/info
+filelist=(automake.info automake.info-1 automake.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 09:05:11
  Author: allan
Revision: 174019

upgpkg: automake 1.13.1-1

upstream update

Modified:
  automake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 13:24:02 UTC (rev 174018)
+++ PKGBUILD2013-01-01 14:05:11 UTC (rev 174019)
@@ -3,7 +3,7 @@
 # Contributor: judd 
 
 pkgname=automake
-pkgver=1.13
+pkgver=1.13.1
 pkgrel=1
 pkgdesc="A GNU tool for automatically creating Makefiles"
 arch=('any')
@@ -14,8 +14,8 @@
 makedepends=('autoconf')
 install=automake.install
 source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('bb37ffad523a1928efdd157b6561b631'
- '4fb5ba9b5c4a1b9c6b77bdcd663a01bc')
+md5sums=('a60380ab11e1481376b7747d1b42ced2'
+ '272d0de0756252b1835234cca0ff2cfe')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-01-01 Thread Gaetan Bisson
Date: Tuesday, January 1, 2013 @ 08:24:02
  Author: bisson
Revision: 174018

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

Added:
  uim/repos/extra-i686/PKGBUILD
(from rev 174017, uim/trunk/PKGBUILD)
  uim/repos/extra-i686/install
(from rev 174017, uim/trunk/install)
  uim/repos/extra-x86_64/PKGBUILD
(from rev 174017, uim/trunk/PKGBUILD)
  uim/repos/extra-x86_64/install
(from rev 174017, uim/trunk/install)
Deleted:
  uim/repos/extra-i686/PKGBUILD
  uim/repos/extra-i686/install
  uim/repos/extra-x86_64/PKGBUILD
  uim/repos/extra-x86_64/install

---+
 extra-i686/PKGBUILD   |   82 
 extra-i686/install|   24 +++---
 extra-x86_64/PKGBUILD |   82 
 extra-x86_64/install  |   24 +++---
 4 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-01 13:23:35 UTC (rev 174017)
+++ extra-i686/PKGBUILD 2013-01-01 13:24:02 UTC (rev 174018)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: damir 
-
-pkgname=uim
-pkgver=1.8.3
-pkgrel=1
-pkgdesc='Multilingual input method library'
-url='http://code.google.com/p/uim/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-depends=('libxft' 'libedit' 'anthy' 'm17n-lib')
-makedepends=('intltool' 'gettext' 'qt' 'gtk2' 'gtk3' 'gnome-panel')
-optdepends=('qt: immodule and helper applications'
-'gtk2: immodule and helper applications'
-'gtk3: immodules and helper applications'
-'gnome-panel: gnome applet indicator')
-options=('!libtool')
-source=("http://uim.googlecode.com/files/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('4f63836935051d52b9194572afb904892fe89595')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib/uim \
-   --with-anthy-utf8 \
-   --with-qt4 \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   rm "${pkgdir}"/usr/lib/libgcroots.a
-   install -D -m644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: uim/repos/extra-i686/PKGBUILD (from rev 174017, uim/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-01 13:24:02 UTC (rev 174018)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: damir 
+
+pkgname=uim
+pkgver=1.8.4
+pkgrel=1
+pkgdesc='Multilingual input method library'
+url='http://code.google.com/p/uim/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('libxft' 'libedit' 'anthy' 'm17n-lib')
+makedepends=('intltool' 'gettext' 'qt' 'gtk2' 'gtk3' 'gnome-panel')
+optdepends=('qt: immodule and helper applications'
+'gtk2: immodule and helper applications'
+'gtk3: immodules and helper applications'
+'gnome-panel: gnome applet indicator')
+options=('!libtool')
+source=("http://uim.googlecode.com/files/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('4f40912e4d4a85d9967044caef9e1ef349f3d6f2')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/uim \
+   --with-anthy-utf8 \
+   --with-qt4 \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rm "${pkgdir}"/usr/lib/libgcroots.a
+   install -D -m644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-i686/install
===
--- extra-i686/install  2013-01-01 13:23:35 UTC (rev 174017)
+++ extra-i686/install  2013-01-01 13:24:02 UTC (rev 174018)
@@ -1,12 +0,0 @@
-post_install() {
-   [[ -x usr/bin/gtk-query-immodules-2.0 ]] && 
usr/bin/gtk-query-immodules-2.0 > etc/gtk-2.0/gtk.immodules
-   [[ -x usr/bin/gtk-query-immodules-3.0 ]] && 
usr/bin/gtk-query-immodules-3.0 > usr/lib/gtk-3.0/3.0.0/immodules.cache
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: uim/repos/extra-i686/install (from rev 174017, uim/trunk/install)
===
--- extra-i686/install  (rev 0)
+++ extra-i686/install  2013-01-01 13:24:02 UTC (rev 174018)
@@ -0,0 +1,12 @@
+post_install() {
+   [[ -x usr/bin/gtk-query-immodules-2.0 ]] && 
usr/bin/gtk-query-immodules-2.0 > etc/gtk-2.0/gtk.immodules
+   [[ -x usr/bin/gtk-query-immodules-3.0 ]] && 
usr/bin/gtk-query-immodules-3.0 > usr/lib/gtk-3.0/3.0.0/immodules.cache
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove(

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

2013-01-01 Thread Gaetan Bisson
Date: Tuesday, January 1, 2013 @ 08:23:35
  Author: bisson
Revision: 174017

upstream update

Modified:
  uim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 13:09:35 UTC (rev 174016)
+++ PKGBUILD2013-01-01 13:23:35 UTC (rev 174017)
@@ -3,7 +3,7 @@
 # Contributor: damir 
 
 pkgname=uim
-pkgver=1.8.3
+pkgver=1.8.4
 pkgrel=1
 pkgdesc='Multilingual input method library'
 url='http://code.google.com/p/uim/'
@@ -17,7 +17,7 @@
 'gnome-panel: gnome applet indicator')
 options=('!libtool')
 source=("http://uim.googlecode.com/files/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('4f63836935051d52b9194572afb904892fe89595')
+sha1sums=('4f40912e4d4a85d9967044caef9e1ef349f3d6f2')
 
 install=install
 



[arch-commits] Commit in ttf-junicode/repos/extra-any (6 files)

2013-01-01 Thread Gaetan Bisson
Date: Tuesday, January 1, 2013 @ 08:09:35
  Author: bisson
Revision: 174016

archrelease: copy trunk to extra-any

Added:
  ttf-junicode/repos/extra-any/LICENSE
(from rev 174015, ttf-junicode/trunk/LICENSE)
  ttf-junicode/repos/extra-any/PKGBUILD
(from rev 174015, ttf-junicode/trunk/PKGBUILD)
  ttf-junicode/repos/extra-any/ttf.install
(from rev 174015, ttf-junicode/trunk/ttf.install)
Deleted:
  ttf-junicode/repos/extra-any/LICENSE
  ttf-junicode/repos/extra-any/PKGBUILD
  ttf-junicode/repos/extra-any/ttf.install

-+
 LICENSE |  194 +-
 PKGBUILD|   54 
 ttf.install |   30 
 3 files changed, 139 insertions(+), 139 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2013-01-01 13:09:14 UTC (rev 174015)
+++ LICENSE 2013-01-01 13:09:35 UTC (rev 174016)
@@ -1,97 +0,0 @@
-Copyright (c) ,  (),
-with Reserved Font Name .
-Copyright (c) ,  (),
-with Reserved Font Name .
-Copyright (c) ,  ().
-
-This Font Software is licensed under the SIL Open Font License, Version 1.1.
-This license is copied below, and is also available with a FAQ at:
-http://scripts.sil.org/OFL
-
-

-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007

-
-PREAMBLE
-The goals of the Open Font License (OFL) are to stimulate worldwide
-development of collaborative font projects, to support the font creation
-efforts of academic and linguistic communities, and to provide a free and
-open framework in which fonts may be shared and improved in partnership
-with others.
-
-The OFL allows the licensed fonts to be used, studied, modified and
-redistributed freely as long as they are not sold by themselves. The
-fonts, including any derivative works, can be bundled, embedded, 
-redistributed and/or sold with any software provided that any reserved
-names are not used by derivative works. The fonts and derivatives,
-however, cannot be released under any other type of license. The
-requirement for fonts to remain under this license does not apply
-to any document created using the fonts or their derivatives.
-
-DEFINITIONS
-"Font Software" refers to the set of files released by the Copyright
-Holder(s) under this license and clearly marked as such. This may
-include source files, build scripts and documentation.
-
-"Reserved Font Name" refers to any names specified as such after the
-copyright statement(s).
-
-"Original Version" refers to the collection of Font Software components as
-distributed by the Copyright Holder(s).
-
-"Modified Version" refers to any derivative made by adding to, deleting,
-or substituting -- in part or in whole -- any of the components of the
-Original Version, by changing formats or by porting the Font Software to a
-new environment.
-
-"Author" refers to any designer, engineer, programmer, technical
-writer or other person who contributed to the Font Software.
-
-PERMISSION & CONDITIONS
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of the Font Software, to use, study, copy, merge, embed, modify,
-redistribute, and sell modified and unmodified copies of the Font
-Software, subject to the following conditions:
-
-1) Neither the Font Software nor any of its individual components,
-in Original or Modified Versions, may be sold by itself.
-
-2) Original or Modified Versions of the Font Software may be bundled,
-redistributed and/or sold with any software, provided that each copy
-contains the above copyright notice and this license. These can be
-included either as stand-alone text files, human-readable headers or
-in the appropriate machine-readable metadata fields within text or
-binary files as long as those fields can be easily viewed by the user.
-
-3) No Modified Version of the Font Software may use the Reserved Font
-Name(s) unless explicit written permission is granted by the corresponding
-Copyright Holder. This restriction only applies to the primary font name as
-presented to the users.
-
-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
-Software shall not be used to promote, endorse or advertise any
-Modified Version, except to acknowledge the contribution(s) of the
-Copyright Holder(s) and the Author(s) or with their explicit written
-permission.
-
-5) The Font Software, modified or unmodified, in part or in whole,
-must be distributed entirely under this license, and must not be
-distributed under any other license. The requirement for fonts to
-remain under this license does not apply to any document created
-using the Font Software.
-
-TERMINATION
-This license becomes null and void if any of the above conditions are
-not met.
-
-DISCLAIMER
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WAR

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

2013-01-01 Thread Gaetan Bisson
Date: Tuesday, January 1, 2013 @ 08:09:14
  Author: bisson
Revision: 174015

upstream update

Modified:
  ttf-junicode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 13:05:38 UTC (rev 174014)
+++ PKGBUILD2013-01-01 13:09:14 UTC (rev 174015)
@@ -3,7 +3,7 @@
 # Contributor: Firmicus 
 
 pkgname=ttf-junicode
-pkgver=0.7.7
+pkgver=0.7.8
 pkgrel=1
 pkgdesc='Junius-Unicode: a Unicode font targeted at medievalists'
 url='http://junicode.sourceforge.net'
@@ -12,7 +12,7 @@
 depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 
'fontconfig')
 
source=("http://downloads.sourceforge.net/junicode/junicode-${pkgver//\./-}.zip";
 'LICENSE')
-sha1sums=('83df5325552f4d3fc6ba7a02787e712e1b4907db'
+sha1sums=('492946ca18c3e23febd7c77221ff438ad85d2147'
   '84e2137ba63c1983a1e36371fc7e08ef5d94542e')
 
 install=ttf.install



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

2013-01-01 Thread Gaetan Bisson
Date: Tuesday, January 1, 2013 @ 08:05:38
  Author: bisson
Revision: 174014

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

Added:
  sharutils/repos/extra-i686/PKGBUILD
(from rev 174013, sharutils/trunk/PKGBUILD)
  sharutils/repos/extra-i686/install
(from rev 174013, sharutils/trunk/install)
  sharutils/repos/extra-x86_64/PKGBUILD
(from rev 174013, sharutils/trunk/PKGBUILD)
  sharutils/repos/extra-x86_64/install
(from rev 174013, sharutils/trunk/install)
Deleted:
  sharutils/repos/extra-i686/PKGBUILD
  sharutils/repos/extra-i686/install
  sharutils/repos/extra-x86_64/PKGBUILD
  sharutils/repos/extra-x86_64/install

---+
 extra-i686/PKGBUILD   |   64 
 extra-i686/install|   36 +--
 extra-x86_64/PKGBUILD |   64 
 extra-x86_64/install  |   36 +--
 4 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-01 13:05:12 UTC (rev 174013)
+++ extra-i686/PKGBUILD 2013-01-01 13:05:38 UTC (rev 174014)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Kevin Piche 
-# Contributor: Tom Newsom 
-
-pkgname=sharutils
-pkgver=4.11.1
-pkgrel=1
-pkgdesc='Makes so-called shell archives out of many files'
-url='http://www.gnu.org/software/sharutils/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('perl' 'gettext' 'texinfo')
-source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('e9c9f869f8ecb3bcb30cc323e02e0a1266aeb109')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --mandir=/usr/share/man \
-   --infodir=/usr/share/info \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: sharutils/repos/extra-i686/PKGBUILD (from rev 174013, 
sharutils/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-01 13:05:38 UTC (rev 174014)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Kevin Piche 
+# Contributor: Tom Newsom 
+
+pkgname=sharutils
+pkgver=4.13
+pkgrel=1
+pkgdesc='Makes so-called shell archives out of many files'
+url='http://www.gnu.org/software/sharutils/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('perl' 'gettext' 'texinfo')
+source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('8c1531846bc397c2afbbbf2ca33c8d5fd78bbc3d')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+   --infodir=/usr/share/info \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/install
===
--- extra-i686/install  2013-01-01 13:05:12 UTC (rev 174013)
+++ extra-i686/install  2013-01-01 13:05:38 UTC (rev 174014)
@@ -1,18 +0,0 @@
-infodir=/usr/share/info
-filelist=(sharutils.info.gz)
-
-post_install() {
-   for file in ${filelist[@]}; do
-   install-info $infodir/$file $infodir/dir
-   done
-}
-
-post_upgrade() {
-   post_install
-}
-
-pre_remove() {
-   for file in ${filelist[@]}; do
-   install-info --delete $infodir/$file $infodir/dir
-   done
-}

Copied: sharutils/repos/extra-i686/install (from rev 174013, 
sharutils/trunk/install)
===
--- extra-i686/install  (rev 0)
+++ extra-i686/install  2013-01-01 13:05:38 UTC (rev 174014)
@@ -0,0 +1,18 @@
+infodir=/usr/share/info
+filelist=(sharutils.info.gz)
+
+post_install() {
+   for file in ${filelist[@]}; do
+   install-info $infodir/$file $infodir/dir
+   done
+}
+
+post_upgrade() {
+   post_install
+}
+
+pre_remove() {
+   for file in ${filelist[@]}; do
+   install-info --delete $infodir/$file $infodir/dir
+   done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-01-01 13:05:12 UTC (rev 174013)
+++ extra-x86_64/PKGBUILD   2013-01-01 13:05:38 UTC (rev 174014)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Kevin Piche 
-# Contributor: Tom Newsom 
-
-pkgname=sharutils
-pkgver=4.11.1
-pkgrel=1
-pkgdesc='Makes so-called shell archives out of many files'
-url='http://www.gnu.org/software/sharutils/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('perl' 'gettext' 'texinfo')
-source=("ftp://ftp.gnu.org/gnu/${pkgn

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

2013-01-01 Thread Gaetan Bisson
Date: Tuesday, January 1, 2013 @ 08:05:12
  Author: bisson
Revision: 174013

upstream update

Modified:
  sharutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 13:02:26 UTC (rev 174012)
+++ PKGBUILD2013-01-01 13:05:12 UTC (rev 174013)
@@ -4,15 +4,15 @@
 # Contributor: Tom Newsom 
 
 pkgname=sharutils
-pkgver=4.11.1
+pkgver=4.13
 pkgrel=1
 pkgdesc='Makes so-called shell archives out of many files'
 url='http://www.gnu.org/software/sharutils/'
 license=('GPL')
 arch=('i686' 'x86_64')
 depends=('perl' 'gettext' 'texinfo')
-source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('e9c9f869f8ecb3bcb30cc323e02e0a1266aeb109')
+source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('8c1531846bc397c2afbbbf2ca33c8d5fd78bbc3d')
 
 install=install
 



[arch-commits] Commit in feh/repos (4 files)

2013-01-01 Thread Gaetan Bisson
Date: Tuesday, January 1, 2013 @ 08:02:26
  Author: bisson
Revision: 174012

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

Added:
  feh/repos/extra-i686/PKGBUILD
(from rev 174011, feh/trunk/PKGBUILD)
  feh/repos/extra-x86_64/PKGBUILD
(from rev 174011, feh/trunk/PKGBUILD)
Deleted:
  feh/repos/extra-i686/PKGBUILD
  feh/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   60 
 extra-x86_64/PKGBUILD |   60 
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-01-01 13:01:47 UTC (rev 174011)
+++ extra-i686/PKGBUILD 2013-01-01 13:02:26 UTC (rev 174012)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Andrea Scarpino 
-# Contributor: dorphell 
-# Contributor: Tom Newsom 
-
-pkgname=feh
-pkgver=2.7
-pkgrel=1
-pkgdesc='Fast and light imlib2-based image viewer'
-url='http://feh.finalrewind.org/'
-license=('custom:MIT')
-arch=('i686' 'x86_64')
-depends=('giblib' 'curl' 'libxinerama' 'libexif')
-optdepends=('perl: feh-cam, webcam wrapper for feh'
-'imagemagick: support more file formats')
-makedepends=('libxt')
-source=("${url}${pkgname}-${pkgver}.tar.bz2")
-sha1sums=('25c3cf8af2d30b9cc176b36f2a78344ba9ae18f1')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make PREFIX=/usr exif=1 help=1
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make PREFIX=/usr DESTDIR="${pkgdir}" install
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: feh/repos/extra-i686/PKGBUILD (from rev 174011, feh/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-01 13:02:26 UTC (rev 174012)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Andrea Scarpino 
+# Contributor: dorphell 
+# Contributor: Tom Newsom 
+
+pkgname=feh
+pkgver=2.8
+pkgrel=1
+pkgdesc='Fast and light imlib2-based image viewer'
+url='http://feh.finalrewind.org/'
+license=('custom:MIT')
+arch=('i686' 'x86_64')
+depends=('giblib' 'curl' 'libxinerama' 'libexif')
+optdepends=('perl: feh-cam, webcam wrapper for feh'
+'imagemagick: support more file formats')
+makedepends=('libxt')
+source=("${url}${pkgname}-${pkgver}.tar.bz2")
+sha1sums=('eeb251d5971cf07e632661ef0b514fc3b0c7aca6')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make PREFIX=/usr exif=1 help=1
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make PREFIX=/usr DESTDIR="${pkgdir}" install
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-01-01 13:01:47 UTC (rev 174011)
+++ extra-x86_64/PKGBUILD   2013-01-01 13:02:26 UTC (rev 174012)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Andrea Scarpino 
-# Contributor: dorphell 
-# Contributor: Tom Newsom 
-
-pkgname=feh
-pkgver=2.7
-pkgrel=1
-pkgdesc='Fast and light imlib2-based image viewer'
-url='http://feh.finalrewind.org/'
-license=('custom:MIT')
-arch=('i686' 'x86_64')
-depends=('giblib' 'curl' 'libxinerama' 'libexif')
-optdepends=('perl: feh-cam, webcam wrapper for feh'
-'imagemagick: support more file formats')
-makedepends=('libxt')
-source=("${url}${pkgname}-${pkgver}.tar.bz2")
-sha1sums=('25c3cf8af2d30b9cc176b36f2a78344ba9ae18f1')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make PREFIX=/usr exif=1 help=1
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make PREFIX=/usr DESTDIR="${pkgdir}" install
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: feh/repos/extra-x86_64/PKGBUILD (from rev 174011, feh/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-01-01 13:02:26 UTC (rev 174012)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Andrea Scarpino 
+# Contributor: dorphell 
+# Contributor: Tom Newsom 
+
+pkgname=feh
+pkgver=2.8
+pkgrel=1
+pkgdesc='Fast and light imlib2-based image viewer'
+url='http://feh.finalrewind.org/'
+license=('custom:MIT')
+arch=('i686' 'x86_64')
+depends=('giblib' 'curl' 'libxinerama' 'libexif')
+optdepends=('perl: feh-cam, webcam wrapper for feh'
+'imagemagick: support more file formats')
+makedepends=('libxt')
+source=("${url}${pkgname}-${pkgver}.tar.bz2")
+sha1sums=('eeb251d5971cf07e632661ef0b514fc3b0c7aca6')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make PREFIX=/usr exif=1 help=1
+}
+
+package() {
+ 

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

2013-01-01 Thread Gaetan Bisson
Date: Tuesday, January 1, 2013 @ 08:01:47
  Author: bisson
Revision: 174011

upstream update

Modified:
  feh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 12:52:44 UTC (rev 174010)
+++ PKGBUILD2013-01-01 13:01:47 UTC (rev 174011)
@@ -5,7 +5,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=feh
-pkgver=2.7
+pkgver=2.8
 pkgrel=1
 pkgdesc='Fast and light imlib2-based image viewer'
 url='http://feh.finalrewind.org/'
@@ -16,7 +16,7 @@
 'imagemagick: support more file formats')
 makedepends=('libxt')
 source=("${url}${pkgname}-${pkgver}.tar.bz2")
-sha1sums=('25c3cf8af2d30b9cc176b36f2a78344ba9ae18f1')
+sha1sums=('eeb251d5971cf07e632661ef0b514fc3b0c7aca6')
 
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in (terminal)

2013-01-01 Thread Evangelos Foutras
Date: Tuesday, January 1, 2013 @ 07:52:44
  Author: foutrelis
Revision: 174010

Drop terminal package; replaced by xfce4-terminal.

Deleted:
  terminal/



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

2013-01-01 Thread Evangelos Foutras
Date: Tuesday, January 1, 2013 @ 07:51:50
  Author: foutrelis
Revision: 174009

db-remove: terminal removed by foutrelis

Deleted:
  terminal/repos/extra-x86_64/



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

2013-01-01 Thread Evangelos Foutras
Date: Tuesday, January 1, 2013 @ 07:51:36
  Author: foutrelis
Revision: 174008

db-remove: terminal removed by foutrelis

Deleted:
  terminal/repos/extra-i686/



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

2013-01-01 Thread Evangelos Foutras
Date: Tuesday, January 1, 2013 @ 07:50:48
  Author: foutrelis
Revision: 174007

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

Added:
  xfce4-terminal/repos/extra-i686/
  xfce4-terminal/repos/extra-i686/PKGBUILD
(from rev 174006, xfce4-terminal/trunk/PKGBUILD)
  xfce4-terminal/repos/extra-i686/xfce4-terminal.install
(from rev 174006, xfce4-terminal/trunk/xfce4-terminal.install)
  xfce4-terminal/repos/extra-x86_64/
  xfce4-terminal/repos/extra-x86_64/PKGBUILD
(from rev 174006, xfce4-terminal/trunk/PKGBUILD)
  xfce4-terminal/repos/extra-x86_64/xfce4-terminal.install
(from rev 174006, xfce4-terminal/trunk/xfce4-terminal.install)

-+
 extra-i686/PKGBUILD |   41 ++
 extra-i686/xfce4-terminal.install   |   13 ++
 extra-x86_64/PKGBUILD   |   41 ++
 extra-x86_64/xfce4-terminal.install |   13 ++
 4 files changed, 108 insertions(+)

Copied: xfce4-terminal/repos/extra-i686/PKGBUILD (from rev 174006, 
xfce4-terminal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-01 12:50:48 UTC (rev 174007)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-terminal
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="A modern terminal emulator primarly for the Xfce desktop environment"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'vte' 'hicolor-icon-theme')
+makedepends=('intltool')
+conflicts=('terminal')
+replaces=('terminal')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/apps/$pkgname/0.6/$pkgname-$pkgver.tar.bz2)
+sha256sums=('61346427e55af79e86511572bfabb2e025cb13720879226ea1b98a92f0bcd4c8')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: xfce4-terminal/repos/extra-i686/xfce4-terminal.install (from rev 
174006, xfce4-terminal/trunk/xfce4-terminal.install)
===
--- extra-i686/xfce4-terminal.install   (rev 0)
+++ extra-i686/xfce4-terminal.install   2013-01-01 12:50:48 UTC (rev 174007)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: xfce4-terminal/repos/extra-x86_64/PKGBUILD (from rev 174006, 
xfce4-terminal/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-01-01 12:50:48 UTC (rev 174007)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-terminal
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="A modern terminal emulator primarly for the Xfce desktop environment"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'vte' 'hicolor-icon-theme')
+makedepends=('intltool')
+conflicts=('terminal')
+replaces=('terminal')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/apps/$pkgname/0.6/$pkgname-$pkgver.tar.bz2)
+sha256sums=('61346427e55af79e86511572bfabb2e025cb13720879226ea1b98a92f0bcd4c8')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: xfce4-terminal/repos/extra-x86_64/xfce4-terminal.install (from rev 
174006, xfce4-terminal/trunk/xfce4-terminal.install)
===
--- extra-x86_64/xfce4-terminal.install (rev 0)
+++ extra-x86_64/xfce4-terminal.install 2013-01-01 12:50:48 UTC (rev 174007)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-01-01 Thread Evangelos Foutras
Date: Tuesday, January 1, 2013 @ 07:50:31
  Author: foutrelis
Revision: 174006

upgpkg: xfce4-terminal 0.6.1-1

New upstream release.

Modified:
  xfce4-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 11:55:48 UTC (rev 174005)
+++ PKGBUILD2013-01-01 12:50:31 UTC (rev 174006)
@@ -4,7 +4,7 @@
 # Contributor: Aurelien Foret 
 
 pkgname=xfce4-terminal
-pkgver=0.6.0
+pkgver=0.6.1
 pkgrel=1
 pkgdesc="A modern terminal emulator primarly for the Xfce desktop environment"
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 options=('!libtool')
 install=$pkgname.install
 source=(http://archive.xfce.org/src/apps/$pkgname/0.6/$pkgname-$pkgver.tar.bz2)
-sha256sums=('5ef54194e69b4f3ada885d73f6950b7cf9d2300a532e71963b9b8ee4a7598edf')
+sha256sums=('61346427e55af79e86511572bfabb2e025cb13720879226ea1b98a92f0bcd4c8')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 06:55:48
  Author: allan
Revision: 174005

add to base-devel

Modified:
  findutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 11:55:29 UTC (rev 174004)
+++ PKGBUILD2013-01-01 11:55:48 UTC (rev 174005)
@@ -7,7 +7,7 @@
 pkgdesc="GNU utilities to locate files"
 arch=('i686' 'x86_64')
 license=('GPL3')
-groups=('base')
+groups=('base' 'base-devel')
 depends=('glibc' 'sh')
 url="http://www.gnu.org/software/findutils";
 source=(ftp://ftp.gnu.org/pub/gnu/findutils/${pkgname}-${pkgver}.tar.gz)



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 06:55:29
  Author: allan
Revision: 174004

add to base-devel

Modified:
  util-linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 11:55:10 UTC (rev 174003)
+++ PKGBUILD2013-01-01 11:55:29 UTC (rev 174004)
@@ -8,7 +8,7 @@
 pkgdesc="Miscellaneous system utilities for Linux"
 url="http://www.kernel.org/pub/linux/utils/util-linux/";
 arch=('i686' 'x86_64')
-groups=('base')
+groups=('base' 'base-devel')
 depends=('pam' 'shadow' 'coreutils' 'glibc')
 # checkdepends=('bc')
 conflicts=('util-linux-ng' 'eject')



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 06:55:10
  Author: allan
Revision: 174003

add to base-devel

Modified:
  pacman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 11:53:35 UTC (rev 174002)
+++ PKGBUILD2013-01-01 11:55:10 UTC (rev 174003)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 url="http://www.archlinux.org/pacman/";
 license=('GPL')
-groups=('base')
+groups=('base' 'base-devel')
 depends=('bash' 'glibc>=2.15' 'libarchive>=3.0.2' 'curl>=7.19.4'
  'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
 makedepends=('asciidoc')



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 06:53:35
  Author: allan
Revision: 174002

add to base-devel

Modified:
  which/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 11:53:17 UTC (rev 174001)
+++ PKGBUILD2013-01-01 11:53:35 UTC (rev 174002)
@@ -9,7 +9,7 @@
 arch=('i686' 'x86_64')
 url="http://www.xs4all.nl/~carlo17/which";
 license=('GPL3')
-groups=('base')
+groups=('base' 'base-devel')
 depends=('glibc' 'sh')
 install=which.install
 source=(http://www.xs4all.nl/~carlo17/$pkgname/$pkgname-$pkgver.tar.gz)



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 06:53:17
  Author: allan
Revision: 174001

add to base-devel

Modified:
  texinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 11:52:58 UTC (rev 174000)
+++ PKGBUILD2013-01-01 11:53:17 UTC (rev 174001)
@@ -9,7 +9,7 @@
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/texinfo/";
 license=('GPL3')
-groups=('base')
+groups=('base' 'base-devel')
 depends=('ncurses' 'findutils' 'gzip')
 install=texinfo.install
 source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig}



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 06:52:58
  Author: allan
Revision: 174000

add to base-devel

Modified:
  sed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 11:52:40 UTC (rev 173999)
+++ PKGBUILD2013-01-01 11:52:58 UTC (rev 174000)
@@ -9,7 +9,7 @@
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/sed";
 license=('GPL3')
-groups=('base')
+groups=('base' 'base-devel')
 depends=('acl' 'sh')
 makedepends=('gettext')
 install=sed.install



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 06:52:40
  Author: allan
Revision: 173999

add to base-devel

Modified:
  gzip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 11:52:16 UTC (rev 173998)
+++ PKGBUILD2013-01-01 11:52:40 UTC (rev 173999)
@@ -9,7 +9,7 @@
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/gzip/";
 license=('GPL3')
-groups=('base')
+groups=('base' 'base-devel')
 depends=('glibc' 'bash')
 install=gzip.install
 source=(ftp://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.xz{,.sig})



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 06:52:16
  Author: allan
Revision: 173998

add to base-devel

Modified:
  grep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-01 11:51:55 UTC (rev 173997)
+++ PKGBUILD2013-01-01 11:52:16 UTC (rev 173998)
@@ -9,7 +9,7 @@
 arch=('i686' 'x86_64')
 license=('GPL3')
 url="http://www.gnu.org/software/grep/grep.html";
-groups=('base')
+groups=('base' 'base-devel')
 depends=('glibc' 'pcre' 'sh')
 makedepends=('texinfo')
 install=${pkgname}.install



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

2013-01-01 Thread Allan McRae
Date: Tuesday, January 1, 2013 @ 06:51:55
  Author: allan
Revision: 173997

add to base-devel

Modified:
  file/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-12-31 13:04:28 UTC (rev 173996)
+++ PKGBUILD2013-01-01 11:51:55 UTC (rev 173997)
@@ -8,7 +8,7 @@
 pkgdesc="File type identification utility"
 arch=('i686' 'x86_64')
 license=('custom')
-groups=('base')
+groups=('base' 'base-devel')
 url="http://www.darwinsys.com/file/";
 depends=('glibc' 'zlib')
 options=('!libtool')