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

2012-06-02 Thread Gaetan Bisson
Date: Sunday, June 3, 2012 @ 01:23:46
  Author: bisson
Revision: 160648

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

Added:
  pacman/repos/testing-i686/
  pacman/repos/testing-i686/PKGBUILD
(from rev 160647, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 160647, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf
(from rev 160647, pacman/trunk/pacman.conf)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 160647, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-i686/pacman.install
(from rev 160647, pacman/trunk/pacman.install)
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 160647, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 160647, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf
(from rev 160647, pacman/trunk/pacman.conf)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 160647, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/pacman.install
(from rev 160647, pacman/trunk/pacman.install)

---+
 testing-i686/PKGBUILD |   77 ++
 testing-i686/makepkg.conf |  121 
 testing-i686/pacman.conf  |   95 
 testing-i686/pacman.conf.x86_64   |  106 +++
 testing-i686/pacman.install   |   75 ++
 testing-x86_64/PKGBUILD   |   77 ++
 testing-x86_64/makepkg.conf   |  121 
 testing-x86_64/pacman.conf|   95 
 testing-x86_64/pacman.conf.x86_64 |  106 +++
 testing-x86_64/pacman.install |   75 ++
 10 files changed, 948 insertions(+)

Copied: pacman/repos/testing-i686/PKGBUILD (from rev 160647, 
pacman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-03 05:23:46 UTC (rev 160648)
@@ -0,0 +1,77 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee 
+# Maintainer: Dave Reisner 
+
+pkgname=pacman
+pkgver=4.0.3
+pkgrel=2
+pkgdesc="A library-based package manager with dependency support"
+arch=('i686' 'x86_64')
+url="http://www.archlinux.org/pacman/";
+license=('GPL')
+groups=('base')
+depends=('bash' 'glibc>=2.15' 'libarchive>=3.0.2' 'curl>=7.19.4'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+makedepends=('asciidoc')
+optdepends=('fakeroot: for makepkg usage as normal user')
+backup=(etc/pacman.conf etc/makepkg.conf)
+install=pacman.install
+options=(!libtool)
+source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf
+pacman.conf.x86_64
+makepkg.conf)
+md5sums=('387965c7125e60e5f0b9ff3b427fe0f9'
+ '1a70392526c8768470da678b31905a6e'
+ '99734ea46795f466d41c503e9e23b6d4'
+ '556d49489e82b5750cf026d3b18c8f4f'
+ '589cd34eb9d5b678455e8289394f523e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install Arch specific stuff
+  mkdir -p $pkgdir/etc
+  case "$CARCH" in
+i686)
+  install -m644 $srcdir/pacman.conf $pkgdir/etc/pacman.conf
+  mycarch="i686"
+  mychost="i686-pc-linux-gnu"
+  myflags="-march=i686"
+  ;;
+x86_64)
+  install -m644 $srcdir/pacman.conf.x86_64 $pkgdir/etc/pacman.conf
+  mycarch="x86_64"
+  mychost="x86_64-unknown-linux-gnu"
+  myflags="-march=x86-64"
+  ;;
+  esac
+  install -m644 $srcdir/makepkg.conf $pkgdir/etc/
+  # set things correctly in the default conf file
+  sed -i $pkgdir/etc/makepkg.conf \
+-e "s|@CARCH[@]|$mycarch|g" \
+-e "s|@CHOST[@]|$mychost|g" \
+-e "s|@CARCHFLAGS[@]|$myflags|g"
+
+  # install completion files
+  install -Dm644 contrib/bash_completion 
"$pkgdir/usr/share/bash-completion/completions/pacman"
+  for f in makepkg pacman-key; do
+ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f"
+  done
+
+  install -Dm644 contrib/zsh_completion 
$pkgdir/usr/share/zsh/site-functions/_pacman
+}

Copied: pacman/repos/testing-i686/makepkg.conf (from rev 160647, 
pacman/trunk/makepkg.conf)
===
--- testing-i686/makepkg.conf   (rev 0)
+++ testing-i686/makepkg.conf   2012-06-03 05:23:46 UTC (rev 160648)
@@ -0,0 +1,121 @@
+#
+# /etc/makepkg.conf
+#
+
+#
+# SOURCE ACQUISITION
+#

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

2012-06-02 Thread Gaetan Bisson
Date: Sunday, June 3, 2012 @ 01:22:57
  Author: bisson
Revision: 160647

upgpkg: pacman 4.0.3-2

- enable signature verification in pacman.conf, pacman.conf.x86_64
- add post_install instructions to create and populate keyring
- add dependency on archlinux-keyring

Modified:
  pacman/trunk/PKGBUILD
  pacman/trunk/pacman.conf
  pacman/trunk/pacman.conf.x86_64
  pacman/trunk/pacman.install

+
 PKGBUILD   |8 
 pacman.conf|   23 +--
 pacman.conf.x86_64 |   25 ++---
 pacman.install |   10 ++
 4 files changed, 29 insertions(+), 37 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-03 04:02:31 UTC (rev 160646)
+++ PKGBUILD2012-06-03 05:22:57 UTC (rev 160647)
@@ -5,14 +5,14 @@
 
 pkgname=pacman
 pkgver=4.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A library-based package manager with dependency support"
 arch=('i686' 'x86_64')
 url="http://www.archlinux.org/pacman/";
 license=('GPL')
 groups=('base')
 depends=('bash' 'glibc>=2.15' 'libarchive>=3.0.2' 'curl>=7.19.4'
- 'gpgme' 'pacman-mirrorlist')
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
 makedepends=('asciidoc')
 optdepends=('fakeroot: for makepkg usage as normal user')
 backup=(etc/pacman.conf etc/makepkg.conf)
@@ -24,8 +24,8 @@
 makepkg.conf)
 md5sums=('387965c7125e60e5f0b9ff3b427fe0f9'
  '1a70392526c8768470da678b31905a6e'
- '4605b3490d4fd1e5c6e20db17da9ded6'
- 'a0edf98ad1845a4c7d902a86638d5d2d'
+ '99734ea46795f466d41c503e9e23b6d4'
+ '556d49489e82b5750cf026d3b18c8f4f'
  '589cd34eb9d5b678455e8289394f523e')
 
 build() {

Modified: pacman.conf
===
--- pacman.conf 2012-06-03 04:02:31 UTC (rev 160646)
+++ pacman.conf 2012-06-03 05:22:57 UTC (rev 160647)
@@ -36,19 +36,14 @@
 CheckSpace
 #VerbosePkgLists
 
-# PGP signature checking
-# NOTE: None of this will work without running `pacman-key --init` first.
-# The compiled in default is equivalent to the following line. This requires
-# you to locally sign and trust packager keys using `pacman-key` for them to be
-# considered valid.
+# By default, pacman accepts packages signed by keys that its local keyring
+# trusts (see pacman-key and its man page), as well as unsigned packages.
 #SigLevel = Optional TrustedOnly
-# If you wish to check signatures but avoid local sign and trust issues, use
-# the following line. This will treat any key imported into pacman's keyring as
-# trusted.
-#SigLevel = Optional TrustAll
-# For now, off by default unless you read the above.
-SigLevel = Never
 
+# NOTE: You must run `pacman-key --init` before first using pacman; the local
+# keyring can then be populated with the keys of all official Arch Linux
+# packagers with `pacman-key --populate archlinux`.
+
 #
 # REPOSITORIES
 #   - can be defined here or included from another file
@@ -77,11 +72,11 @@
 #Include = /etc/pacman.d/mirrorlist
 
 [core]
-#SigLevel = PackageRequired
+SigLevel = PackageRequired
 Include = /etc/pacman.d/mirrorlist
 
 [extra]
-#SigLevel = PackageOptional
+SigLevel = PackageRequired
 Include = /etc/pacman.d/mirrorlist
 
 #[community-testing]
@@ -89,7 +84,7 @@
 #Include = /etc/pacman.d/mirrorlist
 
 [community]
-#SigLevel = PackageOptional
+SigLevel = PackageRequired
 Include = /etc/pacman.d/mirrorlist
 
 # An example of a custom package repository.  See the pacman manpage for

Modified: pacman.conf.x86_64
===
--- pacman.conf.x86_64  2012-06-03 04:02:31 UTC (rev 160646)
+++ pacman.conf.x86_64  2012-06-03 05:22:57 UTC (rev 160647)
@@ -36,19 +36,14 @@
 CheckSpace
 #VerbosePkgLists
 
-# PGP signature checking
-# NOTE: None of this will work without running `pacman-key --init` first.
-# The compiled in default is equivalent to the following line. This requires
-# you to locally sign and trust packager keys using `pacman-key` for them to be
-# considered valid.
+# By default, pacman accepts packages signed by keys that its local keyring
+# trusts (see pacman-key and its man page), as well as unsigned packages.
 #SigLevel = Optional TrustedOnly
-# If you wish to check signatures but avoid local sign and trust issues, use
-# the following line. This will treat any key imported into pacman's keyring as
-# trusted.
-#SigLevel = Optional TrustAll
-# For now, off by default unless you read the above.
-SigLevel = Never
 
+# NOTE: You must run `pacman-key --init` before first using pacman; the local
+# keyring can then be populated with the keys of all official Arch Linux
+# packagers with `pacman-key --populate archlinux`.
+
 #
 # REPOSITORIES
 #   - can be defined here or included from another file
@@ -77,11 +72,11 @@
 #Include = /etc/pacman.d/mirrorlist
 
 [core]
-#SigLevel = PackageRequired
+SigLevel = PackageRequired
 Include = /etc/pacman.d/mirrorli

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

2012-06-02 Thread Eric Bélanger
Date: Sunday, June 3, 2012 @ 00:02:31
  Author: eric
Revision: 160646

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

Added:
  sox/repos/extra-i686/PKGBUILD
(from rev 160645, sox/trunk/PKGBUILD)
  sox/repos/extra-i686/sox_default_audio_driver_fallback.patch
(from rev 160645, sox/trunk/sox_default_audio_driver_fallback.patch)
  sox/repos/extra-x86_64/PKGBUILD
(from rev 160645, sox/trunk/PKGBUILD)
  sox/repos/extra-x86_64/sox_default_audio_driver_fallback.patch
(from rev 160645, sox/trunk/sox_default_audio_driver_fallback.patch)
Deleted:
  sox/repos/extra-i686/PKGBUILD
  sox/repos/extra-x86_64/PKGBUILD

--+
 extra-i686/PKGBUILD  |   71 -
 extra-i686/sox_default_audio_driver_fallback.patch   |   51 
 extra-x86_64/PKGBUILD|   71 -
 extra-x86_64/sox_default_audio_driver_fallback.patch |   51 
 4 files changed, 176 insertions(+), 68 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-03 04:02:07 UTC (rev 160645)
+++ extra-i686/PKGBUILD 2012-06-03 04:02:31 UTC (rev 160646)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=sox
-pkgver=14.4.0
-pkgrel=1
-pkgdesc="The Swiss Army knife of sound processing tools"
-arch=('i686' 'x86_64')
-url="http://sox.sourceforge.net/";
-license=('GPL' 'LGPL')
-depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
-makedepends=('ffmpeg' 'libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse')
-optdepends=('libao: for ao plugin'
-'ffmpeg: for ffmpeg plugin'
-'libmad: for mp3 plugin'
-'libid3tag: for mp3 plugin'
-'wavpack: for wavpack plugin'
-'libpulse: for pulse plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('12dfc57e503ed4e18cedcac292cdae7982281978')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
-  ./configure --prefix=/usr --sysconfdir=/etc \
---with-dyn-default --with-distro="Arch Linux"
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: sox/repos/extra-i686/PKGBUILD (from rev 160645, sox/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-03 04:02:31 UTC (rev 160646)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=sox
+pkgver=14.4.0
+pkgrel=2
+pkgdesc="The Swiss Army knife of sound processing tools"
+arch=('i686' 'x86_64')
+url="http://sox.sourceforge.net/";
+license=('GPL' 'LGPL')
+depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
+makedepends=('ffmpeg' 'libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse')
+optdepends=('libao: for ao plugin'
+'ffmpeg: for ffmpeg plugin'
+'libmad: for mp3 plugin'
+'libid3tag: for mp3 plugin'
+'wavpack: for wavpack plugin'
+'libpulse: for pulse plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+sox_default_audio_driver_fallback.patch)
+sha1sums=('12dfc57e503ed4e18cedcac292cdae7982281978'
+  'ab304f1fc17269262dbc4977aa9b7e97ec805ae4')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p0 -i "${srcdir}/sox_default_audio_driver_fallback.patch"
+  sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-dyn-default --with-distro="Arch Linux"
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: sox/repos/extra-i686/sox_default_audio_driver_fallback.patch (from rev 
160645, sox/trunk/sox_default_audio_driver_fallback.patch)
===
--- extra-i686/sox_default_audio_driver_fallback.patch  
(rev 0)
+++ extra-i686/sox_default_audio_driver_fallback.patch  2012-06-03 04:02:31 UTC 
(rev 160646)
@@ -0,0 +1,51 @@
+--- src/sox.c.old  2012-05-06 22:45:45.380564154 -0400
 src/sox.c  2012-05-06 22:47:11.948248987 -0400
+@@ -2538,20 +2538,38 @@
+   return name? from_env? from_env : name : NULL;
+ }
+ 
++static char const * try_device(char const * name)
++{
++  sox_format_handler_t const * handler = sox_find_format(name, sox_false);
++  if (handler) {
++sox_format_t format, * ft = &format;
++memset(ft, 0, sizeof(*ft));
++ft->filename = (char *)device_name(name);
++ft->priv = lsx_calloc(1, handler->priv_size);
++if (handler->startwrite(ft) == SOX_SUCCESS) {
++  handler->stopwrite(ft);
++  free(ft->priv);
++  

[arch-commits] Commit in sox/trunk (PKGBUILD sox_default_audio_driver_fallback.patch)

2012-06-02 Thread Eric Bélanger
Date: Sunday, June 3, 2012 @ 00:02:07
  Author: eric
Revision: 160645

upgpkg: sox 14.4.0-2

Add default audio driver fallback (close FS#29524)

Added:
  sox/trunk/sox_default_audio_driver_fallback.patch
Modified:
  sox/trunk/PKGBUILD

-+
 PKGBUILD|9 +++--
 sox_default_audio_driver_fallback.patch |   51 ++
 2 files changed, 57 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 23:55:03 UTC (rev 160644)
+++ PKGBUILD2012-06-03 04:02:07 UTC (rev 160645)
@@ -3,7 +3,7 @@
 
 pkgname=sox
 pkgver=14.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="The Swiss Army knife of sound processing tools"
 arch=('i686' 'x86_64')
 url="http://sox.sourceforge.net/";
@@ -17,11 +17,14 @@
 'wavpack: for wavpack plugin'
 'libpulse: for pulse plugin')
 options=('!libtool')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('12dfc57e503ed4e18cedcac292cdae7982281978')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+sox_default_audio_driver_fallback.patch)
+sha1sums=('12dfc57e503ed4e18cedcac292cdae7982281978'
+  'ab304f1fc17269262dbc4977aa9b7e97ec805ae4')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p0 -i "${srcdir}/sox_default_audio_driver_fallback.patch"
   sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
   ./configure --prefix=/usr --sysconfdir=/etc \
 --with-dyn-default --with-distro="Arch Linux"

Added: sox_default_audio_driver_fallback.patch
===
--- sox_default_audio_driver_fallback.patch (rev 0)
+++ sox_default_audio_driver_fallback.patch 2012-06-03 04:02:07 UTC (rev 
160645)
@@ -0,0 +1,51 @@
+--- src/sox.c.old  2012-05-06 22:45:45.380564154 -0400
 src/sox.c  2012-05-06 22:47:11.948248987 -0400
+@@ -2538,20 +2538,38 @@
+   return name? from_env? from_env : name : NULL;
+ }
+ 
++static char const * try_device(char const * name)
++{
++  sox_format_handler_t const * handler = sox_find_format(name, sox_false);
++  if (handler) {
++sox_format_t format, * ft = &format;
++memset(ft, 0, sizeof(*ft));
++ft->filename = (char *)device_name(name);
++ft->priv = lsx_calloc(1, handler->priv_size);
++if (handler->startwrite(ft) == SOX_SUCCESS) {
++  handler->stopwrite(ft);
++  free(ft->priv);
++  return name;
++}
++free(ft->priv);
++  }
++  return NULL;
++}
++
+ static char const * set_default_device(file_t * f)
+ {
+   /* Default audio driver type in order of preference: */
+   if (!f->filetype) f->filetype = getenv("AUDIODRIVER");
+-  if (!f->filetype && sox_find_format("coreaudio", sox_false)) f->filetype = 
"coreaudio";
+-  if (!f->filetype && sox_find_format("pulseaudio" , sox_false)) f->filetype 
= "pulseaudio";
+-  if (!f->filetype && sox_find_format("alsa", sox_false)) f->filetype = 
"alsa";
+-  if (!f->filetype && sox_find_format("waveaudio" , sox_false)) f->filetype = 
"waveaudio";
+-  if (!f->filetype && sox_find_format("sndio", sox_false)) f->filetype = 
"sndio";
+-  if (!f->filetype && sox_find_format("oss" , sox_false)) f->filetype = "oss";
+-  if (!f->filetype && sox_find_format("sunau",sox_false)) f->filetype = 
"sunau";
+-  if (!f->filetype && sox_find_format("ao"  , sox_false) && file_count) 
/*!rec*/
+-f->filetype = "ao";
+-
++  if (!f->filetype) f->filetype = try_device("coreaudio");
++  if (!f->filetype) f->filetype = try_device("pulseaudio");
++  if (!f->filetype) f->filetype = try_device("alsa");
++  if (!f->filetype) f->filetype = try_device("waveaudio");
++  if (!f->filetype) f->filetype = try_device("sndio");
++  if (!f->filetype) f->filetype = try_device("oss");
++  if (!f->filetype) f->filetype = try_device("sunau");
++  if (!f->filetype && file_count) /*!rec*/
++f->filetype = try_device("ao");
++ 
+   if (!f->filetype) {
+ lsx_fail("Sorry, there is no default audio device configured");
+ exit(1);



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

2012-06-02 Thread Jan Steffens
Date: Saturday, June 2, 2012 @ 19:55:03
  Author: heftig
Revision: 160644

use /etc/wpa_supplicant/. the service is instantiatable per-interface and uses 
configuration from this directory

Modified:
  wpa_supplicant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 23:09:44 UTC (rev 160643)
+++ PKGBUILD2012-06-02 23:55:03 UTC (rev 160644)
@@ -11,9 +11,12 @@
 optdepends=('wpa_supplicant_gui: wpa_gui program')
 license=('GPL')
 groups=('base')
-backup=('etc/wpa_supplicant.conf')
+backup=('etc/wpa_supplicant/wpa_supplicant.conf')
 source=("http://w1.fi/releases/${pkgname}-${pkgver}.tar.gz";
config hostap_allow-linking-with-libnl-3.2.patch)
+md5sums=('8650f6aa23646ef634402552d0669640'
+ '380d8d1fe24bccb2a2636cb2a6038c39'
+ '473fb6b77909ec5a50b6f4d91370e86b')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}/"
@@ -34,8 +37,8 @@
   cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
   make PREFIX=/usr DESTDIR="${pkgdir}" install
 
-  install -d -m755 "${pkgdir}/etc"
-  install -m644 wpa_supplicant.conf "${pkgdir}/etc/wpa_supplicant.conf"
+  install -d -m755 "${pkgdir}/etc/wpa_supplicant"
+  install -m644 wpa_supplicant.conf 
"${pkgdir}/etc/wpa_supplicant/wpa_supplicant.conf"
 
   install -d -m755 "${pkgdir}/usr/share/man/man"{5,8}
   install -m644 doc/docbook/*.5 "${pkgdir}/usr/share/man/man5/"
@@ -51,6 +54,3 @@
   install -d -m755 "${pkgdir}/usr/lib/systemd/system"
   install -m644 systemd/*.service "${pkgdir}/usr/lib/systemd/system/"
 }
-md5sums=('8650f6aa23646ef634402552d0669640'
- '380d8d1fe24bccb2a2636cb2a6038c39'
- '473fb6b77909ec5a50b6f4d91370e86b')



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

2012-06-02 Thread Allan McRae
Date: Saturday, June 2, 2012 @ 19:09:44
  Author: allan
Revision: 160643

db-move: moved automake from [testing] to [core] (any)

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

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

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-06-02 23:03:27 UTC (rev 160642)
+++ core-any/PKGBUILD   2012-06-02 23:09:44 UTC (rev 160643)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: judd 
-
-pkgname=automake
-pkgver=1.12
-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=('5fc40c032ceaebecd1588b8d125b4781'
- 'c7298222918ea44c4dce97363173a02d')
-
-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/core-any/PKGBUILD (from rev 160642, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-06-02 23:09:44 UTC (rev 160643)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: judd 
+
+pkgname=automake
+pkgver=1.12.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=('036d79de6e443e02aec2be1df2b4f0ac'
+ '3f8f31210a3030ff9146a6696774f5e9')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2012-06-02 23:03:27 UTC (rev 160642)
+++ core-any/automake.install   2012-06-02 23:09:44 UTC (rev 160643)
@@ -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/core-any/automake.install (from rev 160642, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2012-06-02 23:09:44 UTC (rev 160643)
@@ -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 amule/repos (4 files)

2012-06-02 Thread Giovanni Scafora
Date: Saturday, June 2, 2012 @ 19:03:27
  Author: giovanni
Revision: 160642

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 23:03:01 UTC (rev 160641)
+++ extra-i686/PKGBUILD 2012-06-02 23:03:27 UTC (rev 160642)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Henrik Ronellenfitsch 
-# Contributor: Alessio Sergi 
-# Contributor: Dario 'Dax' Vilardi 
-
-pkgname=amule
-pkgver=10788
-pkgrel=1
-pkgdesc="An eMule-like client for ed2k p2p network"
-arch=('i686' 'x86_64')
-url="http://www.amule.org";
-license=('GPL')
-depends=('wxgtk' 'gd' 'geoip' 'libupnp' 'crypto++')
-source=("http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2";)
-md5sums=('a8b68be7382f64ffe32314935461cd78')
-
-build() {
-  cd "${srcdir}/aMule-SVN-r${pkgver}"
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --enable-cas \
-  --enable-wxcas \
-  --enable-amule-daemon \
-  --enable-amulecmd \
-  --enable-amule-gui \
-  --enable-alc \
-  --enable-alcc \
-  --enable-webserver \
-  --disable-debug \
-  --enable-optimize \
-  --enable-ccache \
-  --enable-geoip \
-  --enable-upnp
-
-  make
-}
-
-package() {
-  cd "${srcdir}/aMule-SVN-r${pkgver}"
-
-  make DESTDIR=${pkgdir}/ install
-}

Copied: amule/repos/extra-i686/PKGBUILD (from rev 160641, amule/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 23:03:27 UTC (rev 160642)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Henrik Ronellenfitsch 
+# Contributor: Alessio Sergi 
+# Contributor: Dario 'Dax' Vilardi 
+
+pkgname=amule
+pkgver=10790
+pkgrel=1
+pkgdesc="An eMule-like client for ed2k p2p network"
+arch=('i686' 'x86_64')
+url="http://www.amule.org";
+license=('GPL')
+depends=('wxgtk' 'gd' 'geoip' 'libupnp' 'crypto++')
+source=("http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2";)
+md5sums=('a76b0536f0b13fa278bd65287c443ad0')
+
+build() {
+  cd "${srcdir}/aMule-SVN-r${pkgver}"
+
+  ./configure --prefix=/usr \
+  --mandir=/usr/share/man \
+  --enable-cas \
+  --enable-wxcas \
+  --enable-amule-daemon \
+  --enable-amulecmd \
+  --enable-amule-gui \
+  --enable-alc \
+  --enable-alcc \
+  --enable-webserver \
+  --disable-debug \
+  --enable-optimize \
+  --enable-ccache \
+  --enable-geoip \
+  --enable-upnp
+
+  make
+}
+
+package() {
+  cd "${srcdir}/aMule-SVN-r${pkgver}"
+
+  make DESTDIR=${pkgdir}/ install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 23:03:01 UTC (rev 160641)
+++ extra-x86_64/PKGBUILD   2012-06-02 23:03:27 UTC (rev 160642)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Henrik Ronellenfitsch 
-# Contributor: Alessio Sergi 
-# Contributor: Dario 'Dax' Vilardi 
-
-pkgname=amule
-pkgver=10788
-pkgrel=1
-pkgdesc="An eMule-like client for ed2k p2p network"
-arch=('i686' 'x86_64')
-url="http://www.amule.org";
-license=('GPL')
-depends=('wxgtk' 'gd' 'geoip' 'libupnp' 'crypto++')
-source=("http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2";)
-md5sums=('a8b68be7382f64ffe32314935461cd78')
-
-build() {
-  cd "${srcdir}/aMule-SVN-r${pkgver}"
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --enable-cas \
-  --enable-wxcas \
-  --enable-amule-daemon \
-  --enable-amulecmd \
-  --enable-amule-gui \
-  --enable-alc \
-  --enable-alcc \
-  --enable-webserver \
-  --disable-debug \
-  --enable-optimize \
-  --enable-ccache \
-  --enable-geoip \
-  --enable-upnp
-
-  make
-}
-
-package() {
-  cd "${srcdir}/aMule-SVN-r${pkgver}"
-
-  make DESTDIR=${pkgdir}/ install
-}

Copied: amule/repos/extra-x86_64/PKGBUILD (from rev 160641, 
amule/trunk/PKGBUILD)
=

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

2012-06-02 Thread Giovanni Scafora
Date: Saturday, June 2, 2012 @ 19:03:01
  Author: giovanni
Revision: 160641

upgpkg: amule 10790-1

upstream release

Modified:
  amule/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 22:39:13 UTC (rev 160640)
+++ PKGBUILD2012-06-02 23:03:01 UTC (rev 160641)
@@ -5,7 +5,7 @@
 # Contributor: Dario 'Dax' Vilardi 
 
 pkgname=amule
-pkgver=10788
+pkgver=10790
 pkgrel=1
 pkgdesc="An eMule-like client for ed2k p2p network"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 license=('GPL')
 depends=('wxgtk' 'gd' 'geoip' 'libupnp' 'crypto++')
 source=("http://amule.sourceforge.net/tarballs/aMule-SVN-r${pkgver}.tar.bz2";)
-md5sums=('a8b68be7382f64ffe32314935461cd78')
+md5sums=('a76b0536f0b13fa278bd65287c443ad0')
 
 build() {
   cd "${srcdir}/aMule-SVN-r${pkgver}"



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

2012-06-02 Thread Dave Reisner
Date: Saturday, June 2, 2012 @ 18:39:13
  Author: dreisner
Revision: 160640

archrelease: copy trunk to testing-any

Added:
  mkinitcpio/repos/testing-any/
  mkinitcpio/repos/testing-any/PKGBUILD
(from rev 160639, mkinitcpio/trunk/PKGBUILD)
  mkinitcpio/repos/testing-any/mkinitcpio.install
(from rev 160639, mkinitcpio/trunk/mkinitcpio.install)

+
 PKGBUILD   |   30 ++
 mkinitcpio.install |8 
 2 files changed, 38 insertions(+)

Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 160639, 
mkinitcpio/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-06-02 22:39:13 UTC (rev 160640)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Maintainer: Thomas Bächler 
+
+pkgname=mkinitcpio
+pkgver=0.9.1
+pkgrel=1
+pkgdesc="Modular initramfs image creation utility"
+arch=('any')
+url="http://www.archlinux.org/";
+license=('GPL')
+depends=('awk' 'mkinitcpio-busybox>=1.19.4-2' 'kmod>=3' 'util-linux>=2.21' 
'libarchive' 'coreutils'
+ 'bash' 'findutils' 'sed' 'grep' 'filesystem>=2011.10-1' 'file' 'gzip' 
'systemd-tools')
+optdepends=('xz: Use lzma or xz compression for the initramfs image'
+'bzip2: Use bzip2 compression for the initramfs image'
+'lzop: Use lzo compression for the initramfs image'
+'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
+backup=('etc/mkinitcpio.conf')
+source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz";)
+install=mkinitcpio.install
+sha256sums=('c5093277e1c199fa8b9550548ddce61ce03606ea55ef8a012e2129cdb3d5cb54')
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+
+  # compat symlink
+  install -dm755 "$pkgdir/sbin"
+  ln -s /usr/bin/mkinitcpio "$pkgdir/sbin/mkinitcpio"
+}
+

Copied: mkinitcpio/repos/testing-any/mkinitcpio.install (from rev 160639, 
mkinitcpio/trunk/mkinitcpio.install)
===
--- testing-any/mkinitcpio.install  (rev 0)
+++ testing-any/mkinitcpio.install  2012-06-02 22:39:13 UTC (rev 160640)
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+post_upgrade() {
+  if [ "$(vercmp 0.9.0 "$2")" -eq 1 ]; then
+printf '==> If your /usr is on a separate partition, you must add the 
"usr" hook\n'
+printf 'to /etc/mkinitcpio.conf and regenerate your images before 
rebooting\n'
+  fi
+}



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

2012-06-02 Thread Dave Reisner
Date: Saturday, June 2, 2012 @ 18:39:08
  Author: dreisner
Revision: 160639

upgpkg: mkinitcpio 0.9.1-1

Dave Reisner (7):
  add_full_dir: properly handle symlinks and empty dirs
  update comments in config
  move running of hooks to separate function
  avoid subshell in adding --quiet to bsdcpio
  add hookpoints to --hookhelp output
  catch errors in ldd ELF dep resolution
  Don't report success when builderrors > 0

Modified:
  mkinitcpio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 22:26:01 UTC (rev 160638)
+++ PKGBUILD2012-06-02 22:39:08 UTC (rev 160639)
@@ -3,14 +3,14 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=mkinitcpio
-pkgver=0.9.0
-pkgrel=2
+pkgver=0.9.1
+pkgrel=1
 pkgdesc="Modular initramfs image creation utility"
 arch=('any')
 url="http://www.archlinux.org/";
 license=('GPL')
 depends=('awk' 'mkinitcpio-busybox>=1.19.4-2' 'kmod>=3' 'util-linux>=2.21' 
'libarchive' 'coreutils'
- 'bash' 'findutils' 'sed' 'grep' 'filesystem>=2011.10-1' 'file' 'gzip' 
'udev>=182-3')
+ 'bash' 'findutils' 'sed' 'grep' 'filesystem>=2011.10-1' 'file' 'gzip' 
'systemd-tools')
 optdepends=('xz: Use lzma or xz compression for the initramfs image'
 'bzip2: Use bzip2 compression for the initramfs image'
 'lzop: Use lzo compression for the initramfs image'
@@ -18,8 +18,7 @@
 backup=('etc/mkinitcpio.conf')
 source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz";)
 install=mkinitcpio.install
-md5sums=('cbe4783c39e48dff91385f443d300103')
-sha256sums=('e4a58ccb3b5293931fbc28de6b48df7e9e6fe63b41ef7b5038ea33a2e01dc878')
+sha256sums=('c5093277e1c199fa8b9550548ddce61ce03606ea55ef8a012e2129cdb3d5cb54')
 
 package() {
   make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install



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

2012-06-02 Thread Allan McRae
Date: Saturday, June 2, 2012 @ 18:26:01
  Author: allan
Revision: 160638

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

Added:
  openldap/repos/core-x86_64/PKGBUILD
(from rev 160634, openldap/repos/testing-x86_64/PKGBUILD)
  openldap/repos/core-x86_64/mutex-end-of-struct-sigsegv.patch
(from rev 160634, 
openldap/repos/testing-x86_64/mutex-end-of-struct-sigsegv.patch)
  openldap/repos/core-x86_64/ntlm.patch
(from rev 160634, openldap/repos/testing-x86_64/ntlm.patch)
  openldap/repos/core-x86_64/openldap.install
(from rev 160634, openldap/repos/testing-x86_64/openldap.install)
  openldap/repos/core-x86_64/slapd
(from rev 160634, openldap/repos/testing-x86_64/slapd)
  openldap/repos/core-x86_64/slapd.default
(from rev 160634, openldap/repos/testing-x86_64/slapd.default)
Deleted:
  openldap/repos/core-x86_64/PKGBUILD
  openldap/repos/core-x86_64/mutex-end-of-struct-sigsegv.patch
  openldap/repos/core-x86_64/ntlm.patch
  openldap/repos/core-x86_64/openldap.install
  openldap/repos/core-x86_64/slapd
  openldap/repos/core-x86_64/slapd.default
  openldap/repos/testing-x86_64/

---+
 PKGBUILD  |  204 ++--
 mutex-end-of-struct-sigsegv.patch |  586 ++--
 ntlm.patch|  460 ++--
 openldap.install  |   40 +-
 slapd |   98 +++---
 slapd.default |   12 
 6 files changed, 700 insertions(+), 700 deletions(-)

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


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

2012-06-02 Thread Allan McRae
Date: Saturday, June 2, 2012 @ 18:25:51
  Author: allan
Revision: 160637

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

Added:
  openldap/repos/core-i686/PKGBUILD
(from rev 160634, openldap/repos/testing-i686/PKGBUILD)
  openldap/repos/core-i686/mutex-end-of-struct-sigsegv.patch
(from rev 160634, 
openldap/repos/testing-i686/mutex-end-of-struct-sigsegv.patch)
  openldap/repos/core-i686/ntlm.patch
(from rev 160634, openldap/repos/testing-i686/ntlm.patch)
  openldap/repos/core-i686/openldap.install
(from rev 160634, openldap/repos/testing-i686/openldap.install)
  openldap/repos/core-i686/slapd
(from rev 160634, openldap/repos/testing-i686/slapd)
  openldap/repos/core-i686/slapd.default
(from rev 160634, openldap/repos/testing-i686/slapd.default)
Deleted:
  openldap/repos/core-i686/PKGBUILD
  openldap/repos/core-i686/mutex-end-of-struct-sigsegv.patch
  openldap/repos/core-i686/ntlm.patch
  openldap/repos/core-i686/openldap.install
  openldap/repos/core-i686/slapd
  openldap/repos/core-i686/slapd.default
  openldap/repos/testing-i686/

---+
 PKGBUILD  |  204 ++--
 mutex-end-of-struct-sigsegv.patch |  586 ++--
 ntlm.patch|  460 ++--
 openldap.install  |   40 +-
 slapd |   98 +++---
 slapd.default |   12 
 6 files changed, 700 insertions(+), 700 deletions(-)

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


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

2012-06-02 Thread Allan McRae
Date: Saturday, June 2, 2012 @ 18:25:49
  Author: allan
Revision: 160636

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

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

+
 PKGBUILD   |   64 +--
 db.install |   10 -
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-06-02 22:25:48 UTC (rev 160635)
+++ core-x86_64/PKGBUILD2012-06-02 22:25:49 UTC (rev 160636)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 
-# Contributor: Allan McRae 
-# Contributor: Andreas Radke 
-
-pkgname=db
-pkgver=5.3.15
-pkgrel=1
-pkgdesc="The Berkeley DB embedded database system"
-arch=('i686' 'x86_64')
-url="http://www.oracle.com/technology/software/products/berkeley-db/index.html";
-license=('custom')
-depends=('gcc-libs' 'sh')
-options=('!libtool')
-install=db.install
-source=(http://download.oracle.com/berkeley-db/db-${pkgver}.tar.gz)
-sha1sums=('7683b632a01ff3543c379a120809a942ec457738')
-
-build() {
-  cd "${srcdir}/$pkgname-${pkgver}/build_unix"
-  ../dist/configure --prefix=/usr --enable-compat185 \
---enable-shared --enable-static --enable-cxx --enable-dbm
-  make LIBSO_LIBS=-lpthread
-}
-
-package() {
-  cd "${srcdir}/$pkgname-${pkgver}/build_unix"
-  make DESTDIR="${pkgdir}" install
-  rm -r "${pkgdir}"/usr/docs
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: db/repos/core-x86_64/PKGBUILD (from rev 160634, 
db/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-06-02 22:25:49 UTC (rev 160636)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=db
+pkgver=5.3.21
+pkgrel=1
+pkgdesc="The Berkeley DB embedded database system"
+arch=('i686' 'x86_64')
+url="http://www.oracle.com/technology/software/products/berkeley-db/index.html";
+license=('custom')
+depends=('gcc-libs' 'sh')
+options=('!libtool')
+install=db.install
+source=(http://download.oracle.com/berkeley-db/db-${pkgver}.tar.gz)
+sha1sums=('32e43c4898c8996750c958a90c174bd116fcba83')
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver}/build_unix
+  ../dist/configure --prefix=/usr --enable-compat185 \
+--enable-shared --enable-static --enable-cxx --enable-dbm
+  make LIBSO_LIBS=-lpthread
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver}/build_unix
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}"/usr/docs
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE \
+"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: core-x86_64/db.install
===
--- core-x86_64/db.install  2012-06-02 22:25:48 UTC (rev 160635)
+++ core-x86_64/db.install  2012-06-02 22:25:49 UTC (rev 160636)
@@ -1,5 +0,0 @@
-post_upgrade() {
-  if [ "$(vercmp $2 5.1)" -lt 0 ]; then
-echo " >> Major version update. Consider running db_upgrade on Berkeley DB 
databases."
-  fi
-}

Copied: db/repos/core-x86_64/db.install (from rev 160634, 
db/repos/testing-x86_64/db.install)
===
--- core-x86_64/db.install  (rev 0)
+++ core-x86_64/db.install  2012-06-02 22:25:49 UTC (rev 160636)
@@ -0,0 +1,5 @@
+post_upgrade() {
+  if [ "$(vercmp $2 5.1)" -lt 0 ]; then
+echo " >> Major version update. Consider running db_upgrade on Berkeley DB 
databases."
+  fi
+}



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

2012-06-02 Thread Allan McRae
Date: Saturday, June 2, 2012 @ 18:25:48
  Author: allan
Revision: 160635

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

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

+
 PKGBUILD   |   64 +--
 db.install |   10 -
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-06-02 22:10:39 UTC (rev 160634)
+++ core-i686/PKGBUILD  2012-06-02 22:25:48 UTC (rev 160635)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 
-# Contributor: Allan McRae 
-# Contributor: Andreas Radke 
-
-pkgname=db
-pkgver=5.3.15
-pkgrel=1
-pkgdesc="The Berkeley DB embedded database system"
-arch=('i686' 'x86_64')
-url="http://www.oracle.com/technology/software/products/berkeley-db/index.html";
-license=('custom')
-depends=('gcc-libs' 'sh')
-options=('!libtool')
-install=db.install
-source=(http://download.oracle.com/berkeley-db/db-${pkgver}.tar.gz)
-sha1sums=('7683b632a01ff3543c379a120809a942ec457738')
-
-build() {
-  cd "${srcdir}/$pkgname-${pkgver}/build_unix"
-  ../dist/configure --prefix=/usr --enable-compat185 \
---enable-shared --enable-static --enable-cxx --enable-dbm
-  make LIBSO_LIBS=-lpthread
-}
-
-package() {
-  cd "${srcdir}/$pkgname-${pkgver}/build_unix"
-  make DESTDIR="${pkgdir}" install
-  rm -r "${pkgdir}"/usr/docs
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: db/repos/core-i686/PKGBUILD (from rev 160634, 
db/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-06-02 22:25:48 UTC (rev 160635)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=db
+pkgver=5.3.21
+pkgrel=1
+pkgdesc="The Berkeley DB embedded database system"
+arch=('i686' 'x86_64')
+url="http://www.oracle.com/technology/software/products/berkeley-db/index.html";
+license=('custom')
+depends=('gcc-libs' 'sh')
+options=('!libtool')
+install=db.install
+source=(http://download.oracle.com/berkeley-db/db-${pkgver}.tar.gz)
+sha1sums=('32e43c4898c8996750c958a90c174bd116fcba83')
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver}/build_unix
+  ../dist/configure --prefix=/usr --enable-compat185 \
+--enable-shared --enable-static --enable-cxx --enable-dbm
+  make LIBSO_LIBS=-lpthread
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver}/build_unix
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}"/usr/docs
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE \
+"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: core-i686/db.install
===
--- core-i686/db.install2012-06-02 22:10:39 UTC (rev 160634)
+++ core-i686/db.install2012-06-02 22:25:48 UTC (rev 160635)
@@ -1,5 +0,0 @@
-post_upgrade() {
-  if [ "$(vercmp $2 5.1)" -lt 0 ]; then
-echo " >> Major version update. Consider running db_upgrade on Berkeley DB 
databases."
-  fi
-}

Copied: db/repos/core-i686/db.install (from rev 160634, 
db/repos/testing-i686/db.install)
===
--- core-i686/db.install(rev 0)
+++ core-i686/db.install2012-06-02 22:25:48 UTC (rev 160635)
@@ -0,0 +1,5 @@
+post_upgrade() {
+  if [ "$(vercmp $2 5.1)" -lt 0 ]; then
+echo " >> Major version update. Consider running db_upgrade on Berkeley DB 
databases."
+  fi
+}



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

2012-06-02 Thread Dave Reisner
Date: Saturday, June 2, 2012 @ 18:10:39
  Author: dreisner
Revision: 160634

fix typo in intended check function

Modified:
  libx11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 21:43:25 UTC (rev 160633)
+++ PKGBUILD2012-06-02 22:10:39 UTC (rev 160634)
@@ -24,7 +24,7 @@
   make
 }
 
-package() {
+check() {
   cd "${srcdir}/libX11-${pkgver}"
   make check
 }



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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:43:25
  Author: andyrtr
Revision: 160633

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

Added:
  libx11/repos/extra-i686/PKGBUILD
(from rev 160632, libx11/trunk/PKGBUILD)
  libx11/repos/extra-i686/xorg.csh
(from rev 160632, libx11/trunk/xorg.csh)
  libx11/repos/extra-i686/xorg.sh
(from rev 160632, libx11/trunk/xorg.sh)
  libx11/repos/extra-x86_64/PKGBUILD
(from rev 160632, libx11/trunk/PKGBUILD)
  libx11/repos/extra-x86_64/xorg.csh
(from rev 160632, libx11/trunk/xorg.csh)
  libx11/repos/extra-x86_64/xorg.sh
(from rev 160632, libx11/trunk/xorg.sh)
Deleted:
  libx11/repos/extra-i686/PKGBUILD
  libx11/repos/extra-i686/xorg.csh
  libx11/repos/extra-i686/xorg.sh
  libx11/repos/extra-x86_64/PKGBUILD
  libx11/repos/extra-x86_64/xorg.csh
  libx11/repos/extra-x86_64/xorg.sh

---+
 extra-i686/PKGBUILD   |   82 
 extra-i686/xorg.csh   |   30 -
 extra-i686/xorg.sh|   30 -
 extra-x86_64/PKGBUILD |   82 
 extra-x86_64/xorg.csh |   30 -
 extra-x86_64/xorg.sh  |   30 -
 6 files changed, 142 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 21:42:39 UTC (rev 160632)
+++ extra-i686/PKGBUILD 2012-06-02 21:43:25 UTC (rev 160633)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libx11
-pkgver=1.4.99.902
-pkgrel=1
-pkgdesc="X11 client-side library"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-depends=('libxcb' 'xproto' 'kbproto')
-makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto')
-options=('!libtool')
-license=('custom')
-source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2
-xorg.sh
-xorg.csh)
-sha1sums=('afe75b7c2c54e354f726fd36251bcfec1e1f833a'
-  '4b756387426afb2a5bb7a155631ec42348abf5c1'
-  '45b0b310776cf5d9a94b4a18a5c63ddad9de6ba8')
-
-build() {
-  cd "${srcdir}/libX11-${pkgver}"
-  ./configure --prefix=/usr --disable-static --disable-xf86bigfont
-  make
-}
-
-package() {
-  cd "${srcdir}/libX11-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/libX11-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/etc/profile.d"
-  install -m755 "${srcdir}/"xorg.{sh,csh} "${pkgdir}/etc/profile.d/"
-
-  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libx11/repos/extra-i686/PKGBUILD (from rev 160632, 
libx11/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 21:43:25 UTC (rev 160633)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libx11
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="X11 client-side library"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+depends=('libxcb' 'xproto' 'kbproto')
+makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto')
+options=('!libtool')
+license=('custom')
+source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2
+xorg.sh
+xorg.csh)
+sha256sums=('c382efd7e92bfc3cef39a4b7f1ecf2744ba4414a705e3bc1e697f75502bd4d86'
+'1a1b5db0320579958fba24774bae7984a1b1b8c647ac6fbd4d8937178c48ed46'
+'96c85ccbdcb056540f2e2b6cf48dea067f80260c16957ee401c49cf94cea5894')
+
+build() {
+  cd "${srcdir}/libX11-${pkgver}"
+  ./configure --prefix=/usr --disable-static --disable-xf86bigfont
+  make
+}
+
+package() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/etc/profile.d"
+  install -m755 "${srcdir}/"xorg.{sh,csh} "${pkgdir}/etc/profile.d/"
+
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-i686/xorg.csh
===
--- extra-i686/xorg.csh 2012-06-02 21:42:39 UTC (rev 160632)
+++ extra-i686/xorg.csh 2012-06-02 21:43:25 UTC (rev 160633)
@@ -1,15 +0,0 @@
-setenv XDG_DATA_HOME ${HOME}/.local/share
-setenv XDG_CONFIG_HOME ${HOME}/.config
-setenv XDG_CACHE_HOME ${HOME}/.cache
-
-if (! ($?XDG_DATA_DIRS) ) then
-   setenv XDG_DATA_DIRS /usr/share/:/usr/local/share/
-else
-   setenv XDG_DATA_DIRS /usr/share/:/usr/local/share/:${XDG_DATA_DIRS}
-endif
-
-if (! ($?XDG_CONFIG_DIRS) ) then
-   setenv XDG_CONFIG_DIRS /etc/xdg
-else
-   setenv XDG_CONFIG_DIRS /etc/xdg:${XDG_CONFIG_DIRS}
-endif

Copied: libx11/repos/extra-i686/xorg.csh (from rev 160632, 
libx11/trunk/xorg.csh)
===
--- extra-i686/xorg.csh 

[arch-commits] Commit in libx11/trunk (PKGBUILD xorg.csh xorg.sh)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:42:39
  Author: andyrtr
Revision: 160632

upgpkg: libx11 1.5.0-1

upstream update 1.5.0; fix environment variable 
/usr/share/:/usr/local/share/:/usr/share order FS#30113

Modified:
  libx11/trunk/PKGBUILD
  libx11/trunk/xorg.csh
  libx11/trunk/xorg.sh

--+
 PKGBUILD |8 
 xorg.csh |4 ++--
 xorg.sh  |4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 21:31:52 UTC (rev 160631)
+++ PKGBUILD2012-06-02 21:42:39 UTC (rev 160632)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libx11
-pkgver=1.4.99.902
+pkgver=1.5.0
 pkgrel=1
 pkgdesc="X11 client-side library"
 arch=(i686 x86_64)
@@ -14,9 +14,9 @@
 source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2
 xorg.sh
 xorg.csh)
-sha1sums=('afe75b7c2c54e354f726fd36251bcfec1e1f833a'
-  '4b756387426afb2a5bb7a155631ec42348abf5c1'
-  '45b0b310776cf5d9a94b4a18a5c63ddad9de6ba8')
+sha256sums=('c382efd7e92bfc3cef39a4b7f1ecf2744ba4414a705e3bc1e697f75502bd4d86'
+'1a1b5db0320579958fba24774bae7984a1b1b8c647ac6fbd4d8937178c48ed46'
+'96c85ccbdcb056540f2e2b6cf48dea067f80260c16957ee401c49cf94cea5894')
 
 build() {
   cd "${srcdir}/libX11-${pkgver}"

Modified: xorg.csh
===
--- xorg.csh2012-06-02 21:31:52 UTC (rev 160631)
+++ xorg.csh2012-06-02 21:42:39 UTC (rev 160632)
@@ -3,9 +3,9 @@
 setenv XDG_CACHE_HOME ${HOME}/.cache
 
 if (! ($?XDG_DATA_DIRS) ) then
-   setenv XDG_DATA_DIRS /usr/share/:/usr/local/share/
+   setenv XDG_DATA_DIRS /usr/local/share/:/usr/share/
 else
-   setenv XDG_DATA_DIRS /usr/share/:/usr/local/share/:${XDG_DATA_DIRS}
+   setenv XDG_DATA_DIRS /usr/local/share/:/usr/share/:${XDG_DATA_DIRS}
 endif
 
 if (! ($?XDG_CONFIG_DIRS) ) then

Modified: xorg.sh
===
--- xorg.sh 2012-06-02 21:31:52 UTC (rev 160631)
+++ xorg.sh 2012-06-02 21:42:39 UTC (rev 160632)
@@ -3,9 +3,9 @@
 export XDG_CACHE_HOME=$HOME/.cache
 
 if [ -z $XDG_DATA_DIRS ]; then
-   export XDG_DATA_DIRS=/usr/share/:/usr/local/share/
+   export XDG_DATA_DIRS=/usr/local/share/:/usr/share/
 else
-   export XDG_DATA_DIRS=/usr/share/:/usr/local/share/:$XDG_DATA_DIRS
+   export XDG_DATA_DIRS=/usr/local/share/:/usr/share/:$XDG_DATA_DIRS
 fi
 
 if [ -z $XDG_CONFIG_DIRS ]; then



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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:31:52
  Author: andyrtr
Revision: 160631

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 21:31:14 UTC (rev 160630)
+++ extra-i686/PKGBUILD 2012-06-02 21:31:52 UTC (rev 160631)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libxaw
-pkgver=1.0.10
-pkgrel=1
-pkgdesc="X11 Athena Widget library"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://xorg.freedesktop.org/";
-depends=('libxmu' 'libxpm')
-makedepends=('xorg-util-macros')
-options=('!libtool')
-source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2)
-sha1sums=('8caa4c692e28f9681678a22168978b7668df57be')
-
-build() {
-  cd "${srcdir}/libXaw-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/libXaw-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libxaw/repos/extra-i686/PKGBUILD (from rev 160630, 
libxaw/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 21:31:52 UTC (rev 160631)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libxaw
+pkgver=1.0.11
+pkgrel=1
+pkgdesc="X11 Athena Widget library"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://xorg.freedesktop.org/";
+depends=('libxmu' 'libxpm')
+makedepends=('xorg-util-macros')
+options=('!libtool')
+source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2)
+sha256sums=('87a874acbb71d1ee59b8047312fc91d89dcb373e2970f121184cdae29a3d9492')
+
+build() {
+  cd "${srcdir}/libXaw-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/libXaw-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 21:31:14 UTC (rev 160630)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:31:52 UTC (rev 160631)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libxaw
-pkgver=1.0.10
-pkgrel=1
-pkgdesc="X11 Athena Widget library"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://xorg.freedesktop.org/";
-depends=('libxmu' 'libxpm')
-makedepends=('xorg-util-macros')
-options=('!libtool')
-source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2)
-sha1sums=('8caa4c692e28f9681678a22168978b7668df57be')
-
-build() {
-  cd "${srcdir}/libXaw-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/libXaw-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libxaw/repos/extra-x86_64/PKGBUILD (from rev 160630, 
libxaw/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:31:52 UTC (rev 160631)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libxaw
+pkgver=1.0.11
+pkgrel=1
+pkgdesc="X11 Athena Widget library"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://xorg.freedesktop.org/";
+depends=('libxmu' 'libxpm')
+makedepends=('xorg-util-macros')
+options=('!libtool')
+source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2)
+sha256sums=('87a874acbb71d1ee59b8047312fc91d89dcb373e2970f121184cdae29a3d9492')
+
+build() {
+  cd "${srcdir}/libXaw-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/libXaw-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:31:14
  Author: andyrtr
Revision: 160630

upgpkg: libxaw 1.0.11-1

upstream update 1.0.11

Modified:
  libxaw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 21:27:53 UTC (rev 160629)
+++ PKGBUILD2012-06-02 21:31:14 UTC (rev 160630)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libxaw
-pkgver=1.0.10
+pkgver=1.0.11
 pkgrel=1
 pkgdesc="X11 Athena Widget library"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('xorg-util-macros')
 options=('!libtool')
 source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2)
-sha1sums=('8caa4c692e28f9681678a22168978b7668df57be')
+sha256sums=('87a874acbb71d1ee59b8047312fc91d89dcb373e2970f121184cdae29a3d9492')
 
 build() {
   cd "${srcdir}/libXaw-${pkgver}"



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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:27:53
  Author: andyrtr
Revision: 160629

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

Added:
  libxft/repos/extra-i686/PKGBUILD
(from rev 160628, libxft/trunk/PKGBUILD)
  libxft/repos/extra-x86_64/PKGBUILD
(from rev 160628, libxft/trunk/PKGBUILD)
Deleted:
  libxft/repos/extra-i686/PKGBUILD
  libxft/repos/extra-i686/git_fixes.diff
  libxft/repos/extra-x86_64/PKGBUILD
  libxft/repos/extra-x86_64/git_fixes.diff

-+
 extra-i686/PKGBUILD |   62 +++---
 extra-i686/git_fixes.diff   |   43 -
 extra-x86_64/PKGBUILD   |   62 +++---
 extra-x86_64/git_fixes.diff |   43 -
 4 files changed, 58 insertions(+), 152 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 21:27:12 UTC (rev 160628)
+++ extra-i686/PKGBUILD 2012-06-02 21:27:53 UTC (rev 160629)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libxft
-pkgver=2.3.0
-pkgrel=2
-pkgdesc="FreeType-based font drawing library for X"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://xorg.freedesktop.org/";
-depends=('fontconfig' 'libxrender')
-makedepends=('pkgconfig')
-options=('!libtool')
-source=("${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2"
-git_fixes.diff)
-sha1sums=('687f38a810b9ae58e1169c295d9d438370235e23'
-  'a87a56f62905bfcd85469caf349d07f37f84a989')
-
-build() {
-  cd "${srcdir}/libXft-${pkgver}"
-  # fix broken bold fonts in urxvt terinals - 
https://bugs.freedesktop.org/show_bug.cgi?id=47178 + 
https://bugs.freedesktop.org/show_bug.cgi?id=47196
-  patch -Np1 -i ${srcdir}/git_fixes.diff
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/libXft-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-}

Copied: libxft/repos/extra-i686/PKGBUILD (from rev 160628, 
libxft/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 21:27:53 UTC (rev 160629)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libxft
+pkgver=2.3.1
+pkgrel=1
+pkgdesc="FreeType-based font drawing library for X"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://xorg.freedesktop.org/";
+depends=('fontconfig' 'libxrender')
+makedepends=('pkgconfig')
+options=('!libtool')
+source=("${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2")
+sha256sums=('7fce32b92dcb7b2869bed567af2abc7bbad0d5d6fcf471b8a3e137964a31bbbd')
+
+build() {
+  cd "${srcdir}/libXft-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/libXft-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+}

Deleted: extra-i686/git_fixes.diff
===
--- extra-i686/git_fixes.diff   2012-06-02 21:27:12 UTC (rev 160628)
+++ extra-i686/git_fixes.diff   2012-06-02 21:27:53 UTC (rev 160629)
@@ -1,43 +0,0 @@
-From 84b8b5b46773f9b686d57f28092824b86bffed9d Mon Sep 17 00:00:00 2001
-From: Mikael Magnusson 
-Date: Sun, 11 Mar 2012 01:41:55 +
-Subject: Fixup for 550b2f76401c2 which broke bold fonts
-
-The commit removed the line
-AC_CHECK_FUNCS(FT_Get_Next_Char FT_Get_BDF_Property FT_Get_PS_Font_Info 
FT_Has_PS_Glyph_Names FT_GlyphSlot_Embolden)
-but failed to remove the #if lines that this commit removes, resulting
-in that code never being executed.
-
-Fixes: https://bugs.freedesktop.org/attachment.cgi?id=58280
-
-Reviewed-by: Jeremy Huddleston 

-diff --git a/src/xftglyphs.c b/src/xftglyphs.c
-index 4a3b9d6..2f3dc5a 100644
 a/src/xftglyphs.c
-+++ b/src/xftglyphs.c
-@@ -24,9 +24,7 @@
- #include 
- #include 
- 
--#if HAVE_FT_GLYPHSLOT_EMBOLDEN
- #include 
--#endif
- 
- /*
-  * Validate the memory info for a font
-@@ -434,12 +432,10 @@ XftFontLoadGlyphs (Display   *dpy,
- 
-   glyphslot = face->glyph;
- 
--#if HAVE_FT_GLYPHSLOT_EMBOLDEN
-   /*
-* Embolden if required
-*/
-   if (font->info.embolden) FT_GlyphSlot_Embolden(glyphslot);
--#endif
- 
-   /*
-* Compute glyph metrics from FreeType information
---
-cgit v0.9.0.2-2-gbebe

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 21:27:12 UTC (rev 160628)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:27:53 UTC (rev 160629)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libxft
-pkgver=2.3.0
-pkgrel=2
-pkgdesc="Fre

[arch-commits] Commit in libxft/trunk (PKGBUILD git_fixes.diff)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:27:12
  Author: andyrtr
Revision: 160628

upgpkg: libxft 2.3.1-1

upstream update 2.3.1

Modified:
  libxft/trunk/PKGBUILD
Deleted:
  libxft/trunk/git_fixes.diff

+
 PKGBUILD   |   12 
 git_fixes.diff |   43 ---
 2 files changed, 4 insertions(+), 51 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 21:15:26 UTC (rev 160627)
+++ PKGBUILD2012-06-02 21:27:12 UTC (rev 160628)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libxft
-pkgver=2.3.0
-pkgrel=2
+pkgver=2.3.1
+pkgrel=1
 pkgdesc="FreeType-based font drawing library for X"
 arch=('i686' 'x86_64')
 license=('custom')
@@ -11,15 +11,11 @@
 depends=('fontconfig' 'libxrender')
 makedepends=('pkgconfig')
 options=('!libtool')
-source=("${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2"
-git_fixes.diff)
-sha1sums=('687f38a810b9ae58e1169c295d9d438370235e23'
-  'a87a56f62905bfcd85469caf349d07f37f84a989')
+source=("${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2")
+sha256sums=('7fce32b92dcb7b2869bed567af2abc7bbad0d5d6fcf471b8a3e137964a31bbbd')
 
 build() {
   cd "${srcdir}/libXft-${pkgver}"
-  # fix broken bold fonts in urxvt terinals - 
https://bugs.freedesktop.org/show_bug.cgi?id=47178 + 
https://bugs.freedesktop.org/show_bug.cgi?id=47196
-  patch -Np1 -i ${srcdir}/git_fixes.diff
   ./configure --prefix=/usr --sysconfdir=/etc --disable-static
   make
 }

Deleted: git_fixes.diff
===
--- git_fixes.diff  2012-06-02 21:15:26 UTC (rev 160627)
+++ git_fixes.diff  2012-06-02 21:27:12 UTC (rev 160628)
@@ -1,43 +0,0 @@
-From 84b8b5b46773f9b686d57f28092824b86bffed9d Mon Sep 17 00:00:00 2001
-From: Mikael Magnusson 
-Date: Sun, 11 Mar 2012 01:41:55 +
-Subject: Fixup for 550b2f76401c2 which broke bold fonts
-
-The commit removed the line
-AC_CHECK_FUNCS(FT_Get_Next_Char FT_Get_BDF_Property FT_Get_PS_Font_Info 
FT_Has_PS_Glyph_Names FT_GlyphSlot_Embolden)
-but failed to remove the #if lines that this commit removes, resulting
-in that code never being executed.
-
-Fixes: https://bugs.freedesktop.org/attachment.cgi?id=58280
-
-Reviewed-by: Jeremy Huddleston 

-diff --git a/src/xftglyphs.c b/src/xftglyphs.c
-index 4a3b9d6..2f3dc5a 100644
 a/src/xftglyphs.c
-+++ b/src/xftglyphs.c
-@@ -24,9 +24,7 @@
- #include 
- #include 
- 
--#if HAVE_FT_GLYPHSLOT_EMBOLDEN
- #include 
--#endif
- 
- /*
-  * Validate the memory info for a font
-@@ -434,12 +432,10 @@ XftFontLoadGlyphs (Display   *dpy,
- 
-   glyphslot = face->glyph;
- 
--#if HAVE_FT_GLYPHSLOT_EMBOLDEN
-   /*
-* Embolden if required
-*/
-   if (font->info.embolden) FT_GlyphSlot_Embolden(glyphslot);
--#endif
- 
-   /*
-* Compute glyph metrics from FreeType information
---
-cgit v0.9.0.2-2-gbebe



[arch-commits] Commit in java7-openjdk/repos (23 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:15:20
  Author: andyrtr
Revision: 160626

db-move: moved java7-openjdk from [testing] to [extra] (i686)

Added:
  java7-openjdk/repos/extra-i686/PKGBUILD
(from rev 160611, java7-openjdk/repos/testing-i686/PKGBUILD)
  java7-openjdk/repos/extra-i686/fix_corba_cmds_path.diff
(from rev 160611, java7-openjdk/repos/testing-i686/fix_corba_cmds_path.diff)
  java7-openjdk/repos/extra-i686/fontconfig-paths.diff
(from rev 160611, java7-openjdk/repos/testing-i686/fontconfig-paths.diff)
  java7-openjdk/repos/extra-i686/jdk7-openjdk.profile
(from rev 160611, java7-openjdk/repos/testing-i686/jdk7-openjdk.profile)
  java7-openjdk/repos/extra-i686/jdk7-openjdk.profile.csh
(from rev 160611, java7-openjdk/repos/testing-i686/jdk7-openjdk.profile.csh)
  java7-openjdk/repos/extra-i686/jre7-openjdk-headless.install
(from rev 160611, 
java7-openjdk/repos/testing-i686/jre7-openjdk-headless.install)
  java7-openjdk/repos/extra-i686/jre7-openjdk.install
(from rev 160611, java7-openjdk/repos/testing-i686/jre7-openjdk.install)
  java7-openjdk/repos/extra-i686/jre7-openjdk.profile
(from rev 160611, java7-openjdk/repos/testing-i686/jre7-openjdk.profile)
  java7-openjdk/repos/extra-i686/jre7-openjdk.profile.csh
(from rev 160611, java7-openjdk/repos/testing-i686/jre7-openjdk.profile.csh)
  java7-openjdk/repos/extra-i686/openjdk7_fix_jdk_cmds_path.diff
(from rev 160611, 
java7-openjdk/repos/testing-i686/openjdk7_fix_jdk_cmds_path.diff)
  java7-openjdk/repos/extra-i686/openjdk7_nonreparenting-wm.diff
(from rev 160611, 
java7-openjdk/repos/testing-i686/openjdk7_nonreparenting-wm.diff)
Deleted:
  java7-openjdk/repos/extra-i686/PKGBUILD
  java7-openjdk/repos/extra-i686/fix_corba_cmds_path.diff
  java7-openjdk/repos/extra-i686/fontconfig-paths.diff
  java7-openjdk/repos/extra-i686/jdk7-openjdk.profile
  java7-openjdk/repos/extra-i686/jdk7-openjdk.profile.csh
  java7-openjdk/repos/extra-i686/jre7-openjdk-headless.install
  java7-openjdk/repos/extra-i686/jre7-openjdk.install
  java7-openjdk/repos/extra-i686/jre7-openjdk.profile
  java7-openjdk/repos/extra-i686/jre7-openjdk.profile.csh
  java7-openjdk/repos/extra-i686/openjdk7_fix_jdk_cmds_path.diff
  java7-openjdk/repos/extra-i686/openjdk7_nonreparenting-wm.diff
  java7-openjdk/repos/testing-i686/

-+
 PKGBUILD|  702 +++---
 fix_corba_cmds_path.diff|   62 +--
 fontconfig-paths.diff   |  268 +++---
 jdk7-openjdk.profile|   12 
 jdk7-openjdk.profile.csh|2 
 jre7-openjdk-headless.install   |   30 -
 jre7-openjdk.install|   36 -
 jre7-openjdk.profile|   10 
 jre7-openjdk.profile.csh|   10 
 openjdk7_fix_jdk_cmds_path.diff |   82 +---
 openjdk7_nonreparenting-wm.diff |  116 +++---
 11 files changed, 660 insertions(+), 670 deletions(-)

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


[arch-commits] Commit in java7-openjdk/repos (23 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:15:26
  Author: andyrtr
Revision: 160627

db-move: moved java7-openjdk from [testing] to [extra] (x86_64)

Added:
  java7-openjdk/repos/extra-x86_64/PKGBUILD
(from rev 160611, java7-openjdk/repos/testing-x86_64/PKGBUILD)
  java7-openjdk/repos/extra-x86_64/fix_corba_cmds_path.diff
(from rev 160611, 
java7-openjdk/repos/testing-x86_64/fix_corba_cmds_path.diff)
  java7-openjdk/repos/extra-x86_64/fontconfig-paths.diff
(from rev 160611, java7-openjdk/repos/testing-x86_64/fontconfig-paths.diff)
  java7-openjdk/repos/extra-x86_64/jdk7-openjdk.profile
(from rev 160611, java7-openjdk/repos/testing-x86_64/jdk7-openjdk.profile)
  java7-openjdk/repos/extra-x86_64/jdk7-openjdk.profile.csh
(from rev 160611, 
java7-openjdk/repos/testing-x86_64/jdk7-openjdk.profile.csh)
  java7-openjdk/repos/extra-x86_64/jre7-openjdk-headless.install
(from rev 160611, 
java7-openjdk/repos/testing-x86_64/jre7-openjdk-headless.install)
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.install
(from rev 160611, java7-openjdk/repos/testing-x86_64/jre7-openjdk.install)
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.profile
(from rev 160611, java7-openjdk/repos/testing-x86_64/jre7-openjdk.profile)
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.profile.csh
(from rev 160611, 
java7-openjdk/repos/testing-x86_64/jre7-openjdk.profile.csh)
  java7-openjdk/repos/extra-x86_64/openjdk7_fix_jdk_cmds_path.diff
(from rev 160611, 
java7-openjdk/repos/testing-x86_64/openjdk7_fix_jdk_cmds_path.diff)
  java7-openjdk/repos/extra-x86_64/openjdk7_nonreparenting-wm.diff
(from rev 160611, 
java7-openjdk/repos/testing-x86_64/openjdk7_nonreparenting-wm.diff)
Deleted:
  java7-openjdk/repos/extra-x86_64/PKGBUILD
  java7-openjdk/repos/extra-x86_64/fix_corba_cmds_path.diff
  java7-openjdk/repos/extra-x86_64/fontconfig-paths.diff
  java7-openjdk/repos/extra-x86_64/jdk7-openjdk.profile
  java7-openjdk/repos/extra-x86_64/jdk7-openjdk.profile.csh
  java7-openjdk/repos/extra-x86_64/jre7-openjdk-headless.install
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.install
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.profile
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.profile.csh
  java7-openjdk/repos/extra-x86_64/openjdk7_fix_jdk_cmds_path.diff
  java7-openjdk/repos/extra-x86_64/openjdk7_nonreparenting-wm.diff
  java7-openjdk/repos/testing-x86_64/

-+
 PKGBUILD|  702 +++---
 fix_corba_cmds_path.diff|   62 +--
 fontconfig-paths.diff   |  268 +++---
 jdk7-openjdk.profile|   12 
 jdk7-openjdk.profile.csh|2 
 jre7-openjdk-headless.install   |   30 -
 jre7-openjdk.install|   36 -
 jre7-openjdk.profile|   10 
 jre7-openjdk.profile.csh|   10 
 openjdk7_fix_jdk_cmds_path.diff |   82 +---
 openjdk7_nonreparenting-wm.diff |  116 +++---
 11 files changed, 660 insertions(+), 670 deletions(-)

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


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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:15:14
  Author: andyrtr
Revision: 160625

db-move: moved hplip from [testing] to [extra] (x86_64)

Added:
  hplip/repos/extra-x86_64/PKGBUILD
(from rev 160611, hplip/repos/testing-x86_64/PKGBUILD)
  hplip/repos/extra-x86_64/hplip.install
(from rev 160611, hplip/repos/testing-x86_64/hplip.install)
Deleted:
  hplip/repos/extra-x86_64/PKGBUILD
  hplip/repos/extra-x86_64/hplip.install
  hplip/repos/testing-x86_64/

---+
 PKGBUILD  |  155 ++--
 hplip.install |   28 ++
 2 files changed, 102 insertions(+), 81 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 21:15:12 UTC (rev 160624)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:15:14 UTC (rev 160625)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor : Rémy Oudompheng 
-# Contributor: Morgan LEFIEUX 
-
-pkgname=hplip
-pkgver=3.12.4
-pkgrel=1
-pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
-arch=('i686' 'x86_64')
-url="http://hplipopensource.com";
-license=('GPL')
-depends=('python2' 'ghostscript>=8.64-6' 'foomatic-db' 'foomatic-db-engine'
-'net-snmp>=5.7.1')
-makedepends=('python2-pyqt' 'python2-gobject2' 'sane' 'rpcbind' 'cups')
-optdepends=('cups: for printing support'
-'dbus-python: for dbus support'
-'sane: for scanner support'
-'python-imaging: for commandline scanning support'
-'python-notify: for Desktop notification support'
-'rpcbind: for network support'
-'python2-pyqt: for running hp-toolbox'
-'python2-gobject2: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices')
-options=('!libtool')
-install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc})
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- export PYTHON=python2
- find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' base/magic.py
- sed -i 's|python ./print.py|python2 ./print.py|' scan.py
- sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
- sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
- sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
- sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
-
- export AUTOMAKE='automake --foreign'
- autoreconf --force --install
-
- ./configure --prefix=/usr \
- --enable-qt4 \
- --enable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
- --enable-hpcups-install \
- --enable-new-hpcups \
- --enable-cups-ppd-install \
- --enable-cups-drv-install \
- --enable-hpijs-install \
- --enable-foomatic-drv-install \
- --enable-pp-build \
- --enable-udev-acl-rules
-
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make rulesdir=/lib/udev/rules.d DESTDIR="$pkgdir/" install
- # remove config provided by sane and autostart of hp-daemon
- rm -rf "$pkgdir"/etc/{sane.d,xdg}
- # remove HAL .fdi file because HAL is no longer used
- rm -rf "$pkgdir"/usr/share/hal
- # move to /usr
- mv "$pkgdir"/lib/udev "$pkgdir"/usr/lib/
- rm "$pkgdir"/lib -r
-}
-md5sums=('a063f76aa47edab55a3f31ff2558df07'
- '2fe18f4091afb3dec200271dc7836128')

Copied: hplip/repos/extra-x86_64/PKGBUILD (from rev 160611, 
hplip/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:15:14 UTC (rev 160625)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor : Rémy Oudompheng 
+# Contributor: Morgan LEFIEUX 
+
+pkgname=hplip
+pkgver=3.12.4
+pkgrel=4
+pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
+arch=('i686' 'x86_64')
+url="http://hplipopensource.com";
+license=('GPL')
+depends=('python2' 'ghostscript>=8.64-6' 'foomatic-db' 'foomatic-db-engine'
+'net-snmp>=5.7.1')
+makedepends=('python2-pyqt' 'python2-gobject2' 'sane' 'rpcbind' 'cups')
+optdepends=('cups: for printing support'
+'dbus-python: for dbus support'
+'sane: for scanner support'
+'python-imaging: for commandline scanning support'
+'python-notify: for Desktop notification support'
+'rpcbind: for network support'
+'python2-pyqt: for running hp-toolbox'
+'python2-gobject2: for running hp-toolbox'
+'hplip-plugin: binary blobs for specific devices')
+options=('!libtool')
+install=hplip.install
+source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc})
+md5sums=('a06

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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:15:12
  Author: andyrtr
Revision: 160624

db-move: moved hplip from [testing] to [extra] (i686)

Added:
  hplip/repos/extra-i686/PKGBUILD
(from rev 160611, hplip/repos/testing-i686/PKGBUILD)
  hplip/repos/extra-i686/hplip.install
(from rev 160611, hplip/repos/testing-i686/hplip.install)
Deleted:
  hplip/repos/extra-i686/PKGBUILD
  hplip/repos/extra-i686/hplip.install
  hplip/repos/testing-i686/

---+
 PKGBUILD  |  155 ++--
 hplip.install |   28 ++
 2 files changed, 102 insertions(+), 81 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 21:15:09 UTC (rev 160623)
+++ extra-i686/PKGBUILD 2012-06-02 21:15:12 UTC (rev 160624)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor : Rémy Oudompheng 
-# Contributor: Morgan LEFIEUX 
-
-pkgname=hplip
-pkgver=3.12.4
-pkgrel=1
-pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
-arch=('i686' 'x86_64')
-url="http://hplipopensource.com";
-license=('GPL')
-depends=('python2' 'ghostscript>=8.64-6' 'foomatic-db' 'foomatic-db-engine'
-'net-snmp>=5.7.1')
-makedepends=('python2-pyqt' 'python2-gobject2' 'sane' 'rpcbind' 'cups')
-optdepends=('cups: for printing support'
-'dbus-python: for dbus support'
-'sane: for scanner support'
-'python-imaging: for commandline scanning support'
-'python-notify: for Desktop notification support'
-'rpcbind: for network support'
-'python2-pyqt: for running hp-toolbox'
-'python2-gobject2: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices')
-options=('!libtool')
-install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc})
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- export PYTHON=python2
- find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' base/magic.py
- sed -i 's|python ./print.py|python2 ./print.py|' scan.py
- sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
- sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
- sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
- sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
-
- export AUTOMAKE='automake --foreign'
- autoreconf --force --install
-
- ./configure --prefix=/usr \
- --enable-qt4 \
- --enable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
- --enable-hpcups-install \
- --enable-new-hpcups \
- --enable-cups-ppd-install \
- --enable-cups-drv-install \
- --enable-hpijs-install \
- --enable-foomatic-drv-install \
- --enable-pp-build \
- --enable-udev-acl-rules
-
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make rulesdir=/lib/udev/rules.d DESTDIR="$pkgdir/" install
- # remove config provided by sane and autostart of hp-daemon
- rm -rf "$pkgdir"/etc/{sane.d,xdg}
- # remove HAL .fdi file because HAL is no longer used
- rm -rf "$pkgdir"/usr/share/hal
- # move to /usr
- mv "$pkgdir"/lib/udev "$pkgdir"/usr/lib/
- rm "$pkgdir"/lib -r
-}
-md5sums=('a063f76aa47edab55a3f31ff2558df07'
- '2fe18f4091afb3dec200271dc7836128')

Copied: hplip/repos/extra-i686/PKGBUILD (from rev 160611, 
hplip/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 21:15:12 UTC (rev 160624)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor : Rémy Oudompheng 
+# Contributor: Morgan LEFIEUX 
+
+pkgname=hplip
+pkgver=3.12.4
+pkgrel=4
+pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
+arch=('i686' 'x86_64')
+url="http://hplipopensource.com";
+license=('GPL')
+depends=('python2' 'ghostscript>=8.64-6' 'foomatic-db' 'foomatic-db-engine'
+'net-snmp>=5.7.1')
+makedepends=('python2-pyqt' 'python2-gobject2' 'sane' 'rpcbind' 'cups')
+optdepends=('cups: for printing support'
+'dbus-python: for dbus support'
+'sane: for scanner support'
+'python-imaging: for commandline scanning support'
+'python-notify: for Desktop notification support'
+'rpcbind: for network support'
+'python2-pyqt: for running hp-toolbox'
+'python2-gobject2: for running hp-toolbox'
+'hplip-plugin: binary blobs for specific devices')
+options=('!libtool')
+install=hplip.install
+source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc})
+md5sums=('a063f76aa47edab55a3f31ff2558df07'
+ '2fe18f4091af

[arch-commits] Commit in xf86-video-intel/repos (3 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:15:09
  Author: andyrtr
Revision: 160623

db-move: moved xf86-video-intel from [testing] to [extra] (x86_64)

Added:
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
(from rev 160611, xf86-video-intel/repos/testing-x86_64/PKGBUILD)
Deleted:
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
  xf86-video-intel/repos/testing-x86_64/

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 21:15:06 UTC (rev 160622)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:15:09 UTC (rev 160623)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-intel
-pkgver=2.19.0
-pkgrel=2
-pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util>=0.3.8' 
'libxfixes' 'udev>=183')
-makedepends=('xorg-server-devel>=1.12.0' 'libx11' 'libdrm' 'xf86driproto' 
'glproto' 'mesa' 'libxvmc' 'libxrender')
-conflicts=('xorg-server<1.12.0' 'xf86-video-i810' 'xf86-video-intel-legacy')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('131934cf5e90bd48c883804cc644c4cb8b1de100')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --enable-dri
-  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: xf86-video-intel/repos/extra-x86_64/PKGBUILD (from rev 160611, 
xf86-video-intel/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:15:09 UTC (rev 160623)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+pkgver=2.19.0
+pkgrel=3
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util>=0.3.9' 
'libxfixes' 'udev>=183')
+makedepends=('xorg-server-devel>=1.12.0' 'libx11' 'libdrm' 'xf86driproto' 
'glproto' 'mesa' 'libxvmc' 'libxrender')
+conflicts=('xorg-server<1.12.0' 'xf86-video-i810' 'xf86-video-intel-legacy')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('131934cf5e90bd48c883804cc644c4cb8b1de100')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --enable-dri
+  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}/"
+}



[arch-commits] Commit in xf86-video-intel/repos (3 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:15:06
  Author: andyrtr
Revision: 160622

db-move: moved xf86-video-intel from [testing] to [extra] (i686)

Added:
  xf86-video-intel/repos/extra-i686/PKGBUILD
(from rev 160611, xf86-video-intel/repos/testing-i686/PKGBUILD)
Deleted:
  xf86-video-intel/repos/extra-i686/PKGBUILD
  xf86-video-intel/repos/testing-i686/

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 21:15:05 UTC (rev 160621)
+++ extra-i686/PKGBUILD 2012-06-02 21:15:06 UTC (rev 160622)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-intel
-pkgver=2.19.0
-pkgrel=2
-pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util>=0.3.8' 
'libxfixes' 'udev>=183')
-makedepends=('xorg-server-devel>=1.12.0' 'libx11' 'libdrm' 'xf86driproto' 
'glproto' 'mesa' 'libxvmc' 'libxrender')
-conflicts=('xorg-server<1.12.0' 'xf86-video-i810' 'xf86-video-intel-legacy')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('131934cf5e90bd48c883804cc644c4cb8b1de100')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --enable-dri
-  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: xf86-video-intel/repos/extra-i686/PKGBUILD (from rev 160611, 
xf86-video-intel/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 21:15:06 UTC (rev 160622)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+pkgver=2.19.0
+pkgrel=3
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util>=0.3.9' 
'libxfixes' 'udev>=183')
+makedepends=('xorg-server-devel>=1.12.0' 'libx11' 'libdrm' 'xf86driproto' 
'glproto' 'mesa' 'libxvmc' 'libxrender')
+conflicts=('xorg-server<1.12.0' 'xf86-video-i810' 'xf86-video-intel-legacy')
+options=('!libtool')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('131934cf5e90bd48c883804cc644c4cb8b1de100')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --enable-dri
+  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}/"
+}



[arch-commits] Commit in xcb-util-wm/repos (5 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:15:05
  Author: andyrtr
Revision: 160621

db-move: moved xcb-util-wm from [testing] to [extra] (x86_64)

Added:
  xcb-util-wm/repos/extra-x86_64/LICENSE
(from rev 160611, xcb-util-wm/repos/testing-x86_64/LICENSE)
  xcb-util-wm/repos/extra-x86_64/PKGBUILD
(from rev 160611, xcb-util-wm/repos/testing-x86_64/PKGBUILD)
Deleted:
  xcb-util-wm/repos/extra-x86_64/LICENSE
  xcb-util-wm/repos/extra-x86_64/PKGBUILD
  xcb-util-wm/repos/testing-x86_64/

--+
 LICENSE  |  534 ++---
 PKGBUILD |   74 
 2 files changed, 304 insertions(+), 304 deletions(-)

Deleted: extra-x86_64/LICENSE
===
--- extra-x86_64/LICENSE2012-06-02 21:15:03 UTC (rev 160620)
+++ extra-x86_64/LICENSE2012-06-02 21:15:05 UTC (rev 160621)
@@ -1,267 +0,0 @@
-/* Copyright (C) 2007 Bart Massey
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- * 
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * 
- * Except as contained in this notice, the names of the authors or their
- * institutions shall not be used in advertising or otherwise to promote the
- * sale, use or other dealings in this Software without prior written
- * authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008-2009 Julien Danjou 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other dealings in this Software without
- * prior written authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008 Arnaud Fontaine 
- * Copyright (C) 2007-2008 Vincent Torri 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * pr

[arch-commits] Commit in xcb-util-wm/repos (5 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:15:03
  Author: andyrtr
Revision: 160620

db-move: moved xcb-util-wm from [testing] to [extra] (i686)

Added:
  xcb-util-wm/repos/extra-i686/LICENSE
(from rev 160611, xcb-util-wm/repos/testing-i686/LICENSE)
  xcb-util-wm/repos/extra-i686/PKGBUILD
(from rev 160611, xcb-util-wm/repos/testing-i686/PKGBUILD)
Deleted:
  xcb-util-wm/repos/extra-i686/LICENSE
  xcb-util-wm/repos/extra-i686/PKGBUILD
  xcb-util-wm/repos/testing-i686/

--+
 LICENSE  |  534 ++---
 PKGBUILD |   74 
 2 files changed, 304 insertions(+), 304 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2012-06-02 21:15:01 UTC (rev 160619)
+++ extra-i686/LICENSE  2012-06-02 21:15:03 UTC (rev 160620)
@@ -1,267 +0,0 @@
-/* Copyright (C) 2007 Bart Massey
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- * 
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * 
- * Except as contained in this notice, the names of the authors or their
- * institutions shall not be used in advertising or otherwise to promote the
- * sale, use or other dealings in this Software without prior written
- * authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008-2009 Julien Danjou 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other dealings in this Software without
- * prior written authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008 Arnaud Fontaine 
- * Copyright (C) 2007-2008 Vincent Torri 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other deali

[arch-commits] Commit in xcb-util-keysyms/repos (5 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:15:01
  Author: andyrtr
Revision: 160619

db-move: moved xcb-util-keysyms from [testing] to [extra] (x86_64)

Added:
  xcb-util-keysyms/repos/extra-x86_64/LICENSE
(from rev 160611, xcb-util-keysyms/repos/testing-x86_64/LICENSE)
  xcb-util-keysyms/repos/extra-x86_64/PKGBUILD
(from rev 160611, xcb-util-keysyms/repos/testing-x86_64/PKGBUILD)
Deleted:
  xcb-util-keysyms/repos/extra-x86_64/LICENSE
  xcb-util-keysyms/repos/extra-x86_64/PKGBUILD
  xcb-util-keysyms/repos/testing-x86_64/

--+
 LICENSE  |  534 ++---
 PKGBUILD |   74 
 2 files changed, 304 insertions(+), 304 deletions(-)

Deleted: extra-x86_64/LICENSE
===
--- extra-x86_64/LICENSE2012-06-02 21:14:59 UTC (rev 160618)
+++ extra-x86_64/LICENSE2012-06-02 21:15:01 UTC (rev 160619)
@@ -1,267 +0,0 @@
-/* Copyright (C) 2007 Bart Massey
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- * 
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * 
- * Except as contained in this notice, the names of the authors or their
- * institutions shall not be used in advertising or otherwise to promote the
- * sale, use or other dealings in this Software without prior written
- * authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008-2009 Julien Danjou 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other dealings in this Software without
- * prior written authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008 Arnaud Fontaine 
- * Copyright (C) 2007-2008 Vincent Torri 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be us

[arch-commits] Commit in xcb-util-image/repos (5 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:14:58
  Author: andyrtr
Revision: 160617

db-move: moved xcb-util-image from [testing] to [extra] (x86_64)

Added:
  xcb-util-image/repos/extra-x86_64/LICENSE
(from rev 160611, xcb-util-image/repos/testing-x86_64/LICENSE)
  xcb-util-image/repos/extra-x86_64/PKGBUILD
(from rev 160611, xcb-util-image/repos/testing-x86_64/PKGBUILD)
Deleted:
  xcb-util-image/repos/extra-x86_64/LICENSE
  xcb-util-image/repos/extra-x86_64/PKGBUILD
  xcb-util-image/repos/testing-x86_64/

--+
 LICENSE  |  534 ++---
 PKGBUILD |   74 
 2 files changed, 304 insertions(+), 304 deletions(-)

Deleted: extra-x86_64/LICENSE
===
--- extra-x86_64/LICENSE2012-06-02 21:14:56 UTC (rev 160616)
+++ extra-x86_64/LICENSE2012-06-02 21:14:58 UTC (rev 160617)
@@ -1,267 +0,0 @@
-/* Copyright (C) 2007 Bart Massey
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- * 
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * 
- * Except as contained in this notice, the names of the authors or their
- * institutions shall not be used in advertising or otherwise to promote the
- * sale, use or other dealings in this Software without prior written
- * authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008-2009 Julien Danjou 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other dealings in this Software without
- * prior written authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008 Arnaud Fontaine 
- * Copyright (C) 2007-2008 Vincent Torri 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertisin

[arch-commits] Commit in xcb-util-keysyms/repos (5 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:14:59
  Author: andyrtr
Revision: 160618

db-move: moved xcb-util-keysyms from [testing] to [extra] (i686)

Added:
  xcb-util-keysyms/repos/extra-i686/LICENSE
(from rev 160611, xcb-util-keysyms/repos/testing-i686/LICENSE)
  xcb-util-keysyms/repos/extra-i686/PKGBUILD
(from rev 160611, xcb-util-keysyms/repos/testing-i686/PKGBUILD)
Deleted:
  xcb-util-keysyms/repos/extra-i686/LICENSE
  xcb-util-keysyms/repos/extra-i686/PKGBUILD
  xcb-util-keysyms/repos/testing-i686/

--+
 LICENSE  |  534 ++---
 PKGBUILD |   74 
 2 files changed, 304 insertions(+), 304 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2012-06-02 21:14:58 UTC (rev 160617)
+++ extra-i686/LICENSE  2012-06-02 21:14:59 UTC (rev 160618)
@@ -1,267 +0,0 @@
-/* Copyright (C) 2007 Bart Massey
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- * 
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * 
- * Except as contained in this notice, the names of the authors or their
- * institutions shall not be used in advertising or otherwise to promote the
- * sale, use or other dealings in this Software without prior written
- * authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008-2009 Julien Danjou 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other dealings in this Software without
- * prior written authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008 Arnaud Fontaine 
- * Copyright (C) 2007-2008 Vincent Torri 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to

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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:14:55
  Author: andyrtr
Revision: 160615

db-move: moved xcb-util from [testing] to [extra] (x86_64)

Added:
  xcb-util/repos/extra-x86_64/LICENSE
(from rev 160611, xcb-util/repos/testing-x86_64/LICENSE)
  xcb-util/repos/extra-x86_64/PKGBUILD
(from rev 160611, xcb-util/repos/testing-x86_64/PKGBUILD)
Deleted:
  xcb-util/repos/extra-x86_64/LICENSE
  xcb-util/repos/extra-x86_64/PKGBUILD
  xcb-util/repos/testing-x86_64/

--+
 LICENSE  |  534 ++---
 PKGBUILD |   76 
 2 files changed, 305 insertions(+), 305 deletions(-)

Deleted: extra-x86_64/LICENSE
===
--- extra-x86_64/LICENSE2012-06-02 21:14:52 UTC (rev 160614)
+++ extra-x86_64/LICENSE2012-06-02 21:14:55 UTC (rev 160615)
@@ -1,267 +0,0 @@
-/* Copyright (C) 2007 Bart Massey
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- * 
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * 
- * Except as contained in this notice, the names of the authors or their
- * institutions shall not be used in advertising or otherwise to promote the
- * sale, use or other dealings in this Software without prior written
- * authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008-2009 Julien Danjou 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other dealings in this Software without
- * prior written authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008 Arnaud Fontaine 
- * Copyright (C) 2007-2008 Vincent Torri 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or o

[arch-commits] Commit in xcb-util-image/repos (5 files)

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:14:56
  Author: andyrtr
Revision: 160616

db-move: moved xcb-util-image from [testing] to [extra] (i686)

Added:
  xcb-util-image/repos/extra-i686/LICENSE
(from rev 160611, xcb-util-image/repos/testing-i686/LICENSE)
  xcb-util-image/repos/extra-i686/PKGBUILD
(from rev 160611, xcb-util-image/repos/testing-i686/PKGBUILD)
Deleted:
  xcb-util-image/repos/extra-i686/LICENSE
  xcb-util-image/repos/extra-i686/PKGBUILD
  xcb-util-image/repos/testing-i686/

--+
 LICENSE  |  534 ++---
 PKGBUILD |   74 
 2 files changed, 304 insertions(+), 304 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2012-06-02 21:14:55 UTC (rev 160615)
+++ extra-i686/LICENSE  2012-06-02 21:14:56 UTC (rev 160616)
@@ -1,267 +0,0 @@
-/* Copyright (C) 2007 Bart Massey
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- * 
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * 
- * Except as contained in this notice, the names of the authors or their
- * institutions shall not be used in advertising or otherwise to promote the
- * sale, use or other dealings in this Software without prior written
- * authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008-2009 Julien Danjou 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other dealings in this Software without
- * prior written authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008 Arnaud Fontaine 
- * Copyright (C) 2007-2008 Vincent Torri 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the 

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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:14:52
  Author: andyrtr
Revision: 160614

db-move: moved xcb-util from [testing] to [extra] (i686)

Added:
  xcb-util/repos/extra-i686/LICENSE
(from rev 160611, xcb-util/repos/testing-i686/LICENSE)
  xcb-util/repos/extra-i686/PKGBUILD
(from rev 160611, xcb-util/repos/testing-i686/PKGBUILD)
Deleted:
  xcb-util/repos/extra-i686/LICENSE
  xcb-util/repos/extra-i686/PKGBUILD
  xcb-util/repos/testing-i686/

--+
 LICENSE  |  534 ++---
 PKGBUILD |   76 
 2 files changed, 305 insertions(+), 305 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2012-06-02 21:14:51 UTC (rev 160613)
+++ extra-i686/LICENSE  2012-06-02 21:14:52 UTC (rev 160614)
@@ -1,267 +0,0 @@
-/* Copyright (C) 2007 Bart Massey
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- * 
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * 
- * Except as contained in this notice, the names of the authors or their
- * institutions shall not be used in advertising or otherwise to promote the
- * sale, use or other dealings in this Software without prior written
- * authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008-2009 Julien Danjou 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other dealings in this Software without
- * prior written authorization from the authors.
- */
-
-/*
- * Copyright (C) 2008 Arnaud Fontaine 
- * Copyright (C) 2007-2008 Vincent Torri 
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Except as contained in this notice, the names of the authors or
- * their institutions shall not be used in advertising or otherwise to
- * promote the sale, use or other dealings in this Software wit

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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:14:51
  Author: andyrtr
Revision: 160613

db-move: moved startup-notification from [testing] to [extra] (x86_64)

Added:
  startup-notification/repos/extra-x86_64/PKGBUILD
(from rev 160611, startup-notification/repos/testing-x86_64/PKGBUILD)
Deleted:
  startup-notification/repos/extra-x86_64/PKGBUILD
  startup-notification/repos/testing-x86_64/

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 21:14:50 UTC (rev 160612)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:14:51 UTC (rev 160613)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: dorphell 
-
-pkgname=startup-notification
-pkgver=0.12
-pkgrel=2
-pkgdesc="Monitor and display application startup"
-arch=(i686 x86_64)
-license=('LGPL')
-depends=('libx11' 'xcb-util>=0.3.8')
-options=('!libtool')
-url="http://www.freedesktop.org";
-source=(http://www.freedesktop.org/software/startup-notification/releases/${pkgname}-${pkgver}.tar.gz)
-md5sums=('2cd77326d4dcaed9a5a23a1232fb38e9')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i -e '/AC_PATH_XTRA/d' configure.in
-  autoreconf --force --install
-  ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: startup-notification/repos/extra-x86_64/PKGBUILD (from rev 160611, 
startup-notification/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:14:51 UTC (rev 160613)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: dorphell 
+
+pkgname=startup-notification
+pkgver=0.12
+pkgrel=3
+pkgdesc="Monitor and display application startup"
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('libx11' 'xcb-util>=0.3.9')
+options=('!libtool')
+url="http://www.freedesktop.org";
+source=(http://www.freedesktop.org/software/startup-notification/releases/${pkgname}-${pkgver}.tar.gz)
+md5sums=('2cd77326d4dcaed9a5a23a1232fb38e9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -i -e '/AC_PATH_XTRA/d' configure.in
+  autoreconf --force --install
+  ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:14:50
  Author: andyrtr
Revision: 160612

db-move: moved startup-notification from [testing] to [extra] (i686)

Added:
  startup-notification/repos/extra-i686/PKGBUILD
(from rev 160611, startup-notification/repos/testing-i686/PKGBUILD)
Deleted:
  startup-notification/repos/extra-i686/PKGBUILD
  startup-notification/repos/testing-i686/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 21:10:00 UTC (rev 160611)
+++ extra-i686/PKGBUILD 2012-06-02 21:14:50 UTC (rev 160612)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: dorphell 
-
-pkgname=startup-notification
-pkgver=0.12
-pkgrel=2
-pkgdesc="Monitor and display application startup"
-arch=(i686 x86_64)
-license=('LGPL')
-depends=('libx11' 'xcb-util>=0.3.8')
-options=('!libtool')
-url="http://www.freedesktop.org";
-source=(http://www.freedesktop.org/software/startup-notification/releases/${pkgname}-${pkgver}.tar.gz)
-md5sums=('2cd77326d4dcaed9a5a23a1232fb38e9')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i -e '/AC_PATH_XTRA/d' configure.in
-  autoreconf --force --install
-  ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: startup-notification/repos/extra-i686/PKGBUILD (from rev 160611, 
startup-notification/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 21:14:50 UTC (rev 160612)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: dorphell 
+
+pkgname=startup-notification
+pkgver=0.12
+pkgrel=3
+pkgdesc="Monitor and display application startup"
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('libx11' 'xcb-util>=0.3.9')
+options=('!libtool')
+url="http://www.freedesktop.org";
+source=(http://www.freedesktop.org/software/startup-notification/releases/${pkgname}-${pkgver}.tar.gz)
+md5sums=('2cd77326d4dcaed9a5a23a1232fb38e9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -i -e '/AC_PATH_XTRA/d' configure.in
+  autoreconf --force --install
+  ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 17:10:00
  Author: ibiru
Revision: 160611

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

Added:
  iptraf-ng/repos/extra-i686/PKGBUILD
(from rev 160610, iptraf-ng/trunk/PKGBUILD)
  iptraf-ng/repos/extra-x86_64/PKGBUILD
(from rev 160610, iptraf-ng/trunk/PKGBUILD)
Deleted:
  iptraf-ng/repos/extra-i686/PKGBUILD
  iptraf-ng/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 21:08:59 UTC (rev 160610)
+++ extra-i686/PKGBUILD 2012-06-02 21:10:00 UTC (rev 160611)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: sh0 
-
-pkgname=iptraf-ng
-pkgver=1.1.1
-pkgrel=2
-pkgdesc="A console-based network monitoring utility (a fork of original 
iptraf)"
-url="https://fedorahosted.org/iptraf-ng/";
-arch=('i686' 'x86_64')
-depends=('ncurses')
-license=('GPL2')
-replaces=('iptraf')
-options=('!libtool')
-source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a48c30c186aafc1e8921b611236b732b')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed s/ncurses5-config/ncursesw5-config/ -i configure.ac
-  autoreconf -fi
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make CFLAGS="$CFLAGS"
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR=$pkgdir install
-}

Copied: iptraf-ng/repos/extra-i686/PKGBUILD (from rev 160610, 
iptraf-ng/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 21:10:00 UTC (rev 160611)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: sh0 
+
+pkgname=iptraf-ng
+pkgver=1.1.3.1
+pkgrel=1
+pkgdesc="A console-based network monitoring utility (a fork of original 
iptraf)"
+url="https://fedorahosted.org/iptraf-ng/";
+arch=('i686' 'x86_64')
+depends=('ncurses')
+license=('GPL2')
+replaces=('iptraf')
+options=('!libtool')
+source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('1a2c02944b0b012d6a3de96207610fa2')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --sbindir=/usr/sbin
+  make CFLAGS="$CFLAGS -std=gnu99"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 21:08:59 UTC (rev 160610)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:10:00 UTC (rev 160611)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: sh0 
-
-pkgname=iptraf-ng
-pkgver=1.1.1
-pkgrel=2
-pkgdesc="A console-based network monitoring utility (a fork of original 
iptraf)"
-url="https://fedorahosted.org/iptraf-ng/";
-arch=('i686' 'x86_64')
-depends=('ncurses')
-license=('GPL2')
-replaces=('iptraf')
-options=('!libtool')
-source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a48c30c186aafc1e8921b611236b732b')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed s/ncurses5-config/ncursesw5-config/ -i configure.ac
-  autoreconf -fi
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make CFLAGS="$CFLAGS"
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR=$pkgdir install
-}

Copied: iptraf-ng/repos/extra-x86_64/PKGBUILD (from rev 160610, 
iptraf-ng/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 21:10:00 UTC (rev 160611)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: sh0 
+
+pkgname=iptraf-ng
+pkgver=1.1.3.1
+pkgrel=1
+pkgdesc="A console-based network monitoring utility (a fork of original 
iptraf)"
+url="https://fedorahosted.org/iptraf-ng/";
+arch=('i686' 'x86_64')
+depends=('ncurses')
+license=('GPL2')
+replaces=('iptraf')
+options=('!libtool')
+source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('1a2c02944b0b012d6a3de96207610fa2')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --sbindir=/usr/sbin
+  make CFLAGS="$CFLAGS -std=gnu99"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR=$pkgdir install
+}



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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 17:08:59
  Author: ibiru
Revision: 160610

update to 1.1.3.1

Modified:
  iptraf-ng/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 1 file changed, 7 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 21:07:20 UTC (rev 160609)
+++ PKGBUILD2012-06-02 21:08:59 UTC (rev 160610)
@@ -3,8 +3,8 @@
 # Maintainer: sh0 
 
 pkgname=iptraf-ng
-pkgver=1.1.1
-pkgrel=2
+pkgver=1.1.3.1
+pkgrel=1
 pkgdesc="A console-based network monitoring utility (a fork of original 
iptraf)"
 url="https://fedorahosted.org/iptraf-ng/";
 arch=('i686' 'x86_64')
@@ -13,18 +13,16 @@
 replaces=('iptraf')
 options=('!libtool')
 source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a48c30c186aafc1e8921b611236b732b')
+md5sums=('1a2c02944b0b012d6a3de96207610fa2')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed s/ncurses5-config/ncursesw5-config/ -i configure.ac
-  autoreconf -fi
+  cd "$pkgname-$pkgver"
   ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make CFLAGS="$CFLAGS"
+  --localstatedir=/var --sbindir=/usr/sbin
+  make CFLAGS="$CFLAGS -std=gnu99"
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
   make DESTDIR=$pkgdir install
 }



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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:07:20
  Author: andyrtr
Revision: 160609

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

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

--+
 testing-i686/PKGBUILD|  166 -
 testing-i686/hplip.install   |   28 --
 testing-x86_64/PKGBUILD  |  166 -
 testing-x86_64/hplip.install |   28 --
 4 files changed, 204 insertions(+), 184 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2012-06-02 21:06:41 UTC (rev 160608)
+++ testing-i686/PKGBUILD   2012-06-02 21:07:20 UTC (rev 160609)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor : Rémy Oudompheng 
-# Contributor: Morgan LEFIEUX 
-
-pkgname=hplip
-pkgver=3.12.4
-pkgrel=3
-pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
-arch=('i686' 'x86_64')
-url="http://hplipopensource.com";
-license=('GPL')
-depends=('python2' 'ghostscript>=8.64-6' 'foomatic-db' 'foomatic-db-engine'
-'net-snmp>=5.7.1')
-makedepends=('python2-pyqt' 'python2-gobject2' 'sane' 'rpcbind' 'cups')
-optdepends=('cups: for printing support'
-'dbus-python: for dbus support'
-'sane: for scanner support'
-'python-imaging: for commandline scanning support'
-'python-notify: for Desktop notification support'
-'rpcbind: for network support'
-'python2-pyqt: for running hp-toolbox'
-'python2-gobject2: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices')
-options=('!libtool')
-install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc})
-md5sums=('a063f76aa47edab55a3f31ff2558df07'
- '2fe18f4091afb3dec200271dc7836128')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- export PYTHON=python2
- find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' base/magic.py
- sed -i 's|python ./print.py|python2 ./print.py|' scan.py
- sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
- sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
- sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
- sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
-
- # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
- # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
- # The hpcups driver does not use foomatic-rip
-   local i
-   for i in ppd/hpijs/*.ppd.gz ; do
-   rm -f ${i}.temp
-   gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \
-   gzip > ${i}.temp || return 1
-   mv ${i}.temp ${i}
-   done
-
- export AUTOMAKE='automake --foreign'
- autoreconf --force --install
-
- ./configure --prefix=/usr \
- --enable-qt4 \
- --disable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
- --enable-hpcups-install \
- --enable-new-hpcups \
- --enable-cups-ppd-install \
- --enable-cups-drv-install \
- --enable-hpijs-install \
- --enable-foomatic-drv-install \
- --enable-pp-build \
- --enable-udev-acl-rules
-
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make rulesdir=/lib/udev/rules.d DESTDIR="$pkgdir/" install
- # remove config provided by sane and autostart of hp-daemon
- rm -rf "$pkgdir"/etc/{sane.d,xdg}
- # remove HAL .fdi file because HAL is no longer used
- rm -rf "$pkgdir"/usr/share/hal
- # move to /usr
- mv "$pkgdir"/lib/udev "$pkgdir"/usr/lib/
- rm "$pkgdir"/lib -r
-}

Copied: hplip/repos/testing-i686/PKGBUILD (from rev 160608, 
hplip/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-02 21:07:20 UTC (rev 160609)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor : Rémy Oudompheng 
+# Contributor: Morgan LEFIEUX 
+
+pkgname=hplip
+pkgver=3.12.4
+pkgrel=4
+pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
+arch=('i686' 'x86_64')
+url="http://hplipopensource.com";
+license=('GPL')
+dep

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

2012-06-02 Thread andyrtr
Date: Saturday, June 2, 2012 @ 17:06:41
  Author: andyrtr
Revision: 160608

upgpkg: hplip 3.12.4-4

fix python interpreter; FS#30024

Modified:
  hplip/trunk/PKGBUILD
  hplip/trunk/hplip.install

---+
 PKGBUILD  |6 --
 hplip.install |8 
 2 files changed, 12 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 21:00:23 UTC (rev 160607)
+++ PKGBUILD2012-06-02 21:06:41 UTC (rev 160608)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.12.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com";
@@ -31,8 +31,10 @@
 build() {
  cd "$srcdir/$pkgname-$pkgver"
  export PYTHON=python2
+ 
  find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
  sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' base/magic.py
+ sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' ui/upgradeform.py 
uninstall.py upgrade.py config_usb_printer.py
  sed -i 's|python ./print.py|python2 ./print.py|' scan.py
  sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
  sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
@@ -49,7 +51,7 @@
gzip > ${i}.temp || return 1
mv ${i}.temp ${i}
done
-
+   
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 

Modified: hplip.install
===
--- hplip.install   2012-06-02 21:00:23 UTC (rev 160607)
+++ hplip.install   2012-06-02 21:06:41 UTC (rev 160608)
@@ -8,3 +8,11 @@
 
 EOF
 }
+
+post_upgrade() {
+  if [ "`vercmp $2 3.12.4-2`" -lt 0 ]; then
+# important upgrade notice
+echo "> Please remove your printer in cups, then add it"
+echo "> back and reconfigure it to make it work again!"
+  fi
+}



[arch-commits] Commit in media-player-info/repos/extra-any (PKGBUILD PKGBUILD)

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 17:00:23
  Author: ibiru
Revision: 160607

archrelease: copy trunk to extra-any

Added:
  media-player-info/repos/extra-any/PKGBUILD
(from rev 160606, media-player-info/trunk/PKGBUILD)
Deleted:
  media-player-info/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-06-02 20:59:44 UTC (rev 160606)
+++ PKGBUILD2012-06-02 21:00:23 UTC (rev 160607)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Marti Raudsepp 
-
-pkgname=media-player-info
-pkgver=16
-pkgrel=1
-pkgdesc="Data files describing media player capabilities, for post-HAL systems"
-arch=('any')
-license=('BSD')
-url="http://cgit.freedesktop.org/media-player-info/";
-depends=('udev')
-source=(http://www.freedesktop.org/software/media-player-info/$pkgname-$pkgver.tar.gz)
-sha256sums=('655baef727eafba27d72cf49b866e2f7614b13201ad71d5e8af0901ed4d5acca')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr \
-  --with-udevdir=/usr/lib/udev
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: media-player-info/repos/extra-any/PKGBUILD (from rev 160606, 
media-player-info/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-06-02 21:00:23 UTC (rev 160607)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Marti Raudsepp 
+
+pkgname=media-player-info
+pkgver=17
+pkgrel=1
+pkgdesc="Data files describing media player capabilities, for post-HAL systems"
+arch=('any')
+license=('BSD')
+url="http://cgit.freedesktop.org/media-player-info/";
+depends=('udev')
+source=(http://www.freedesktop.org/software/media-player-info/$pkgname-$pkgver.tar.gz)
+sha256sums=('ceab4699e27b683dec4f985be5667b684e1502728243a1bb711590a58ee31e46')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+  --with-udevdir=/usr/lib/udev
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname"
+}



[arch-commits] Commit in media-player-info/trunk (PKGBUILD)

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:59:44
  Author: ibiru
Revision: 160606

update to version 17

Modified:
  media-player-info/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 20:59:03 UTC (rev 160605)
+++ PKGBUILD2012-06-02 20:59:44 UTC (rev 160606)
@@ -3,7 +3,7 @@
 # Contributor: Marti Raudsepp 
 
 pkgname=media-player-info
-pkgver=16
+pkgver=17
 pkgrel=1
 pkgdesc="Data files describing media player capabilities, for post-HAL systems"
 arch=('any')
@@ -11,7 +11,7 @@
 url="http://cgit.freedesktop.org/media-player-info/";
 depends=('udev')
 
source=(http://www.freedesktop.org/software/media-player-info/$pkgname-$pkgver.tar.gz)
-sha256sums=('655baef727eafba27d72cf49b866e2f7614b13201ad71d5e8af0901ed4d5acca')
+sha256sums=('ceab4699e27b683dec4f985be5667b684e1502728243a1bb711590a58ee31e46')
 
 build() {
   cd $pkgname-$pkgver



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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:59:03
  Author: ibiru
Revision: 160605

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 20:56:53 UTC (rev 160604)
+++ extra-i686/PKGBUILD 2012-06-02 20:59:03 UTC (rev 160605)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: Ionut Biru 
-
-pkgname=colord
-pkgver=0.1.19
-pkgrel=2
-pkgdesc="Color daemon"
-arch=('i686' 'x86_64')
-url="http://www.freedesktop.org/software/colord";
-license=('GPL2')
-depends=('lcms2' 'libgusb' 'polkit' 'sane' 'shared-color-profiles' 'sqlite' 
'udev')
-makedepends=('intltool' 'gobject-introspection' 'vala' 'docbook2x')
-source=($url/releases/$pkgname-$pkgver.tar.xz)
-options=('!libtool')
-sha1sums=('d133c6320fcdd069be86f4a7afa723f48f99acb3')
-
-build() {
-  cd "$pkgname-$pkgver"
-  
-  # put udev files in /usr/lib
-  sed -i "/slashlibdir=/s#/lib#/usr/lib#" configure
-  
-  ./configure --prefix=/usr \
---sysconfdir=/etc --libexecdir=/usr/lib/colord \
---localstatedir=/var --disable-static \
---with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: colord/repos/extra-i686/PKGBUILD (from rev 160604, 
colord/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 20:59:03 UTC (rev 160605)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: Ionut Biru 
+
+pkgname=colord
+pkgver=0.1.21
+pkgrel=1
+pkgdesc="Color daemon"
+arch=('i686' 'x86_64')
+url="http://www.freedesktop.org/software/colord";
+license=('GPL2')
+depends=('lcms2' 'libgusb' 'polkit' 'sane' 'shared-color-profiles' 'sqlite' 
'udev')
+makedepends=('intltool' 'gobject-introspection' 'vala' 'docbook2x')
+source=($url/releases/$pkgname-$pkgver.tar.xz)
+options=('!libtool')
+sha1sums=('dbf981beec70e81c45cf46b150f426fc1eb56c24')
+
+build() {
+  cd "$pkgname-$pkgver"
+  
+  # put udev files in /usr/lib
+  sed -i "/slashlibdir=/s#/lib#/usr/lib#" configure
+  
+  ./configure --prefix=/usr \
+--sysconfdir=/etc --libexecdir=/usr/lib/colord \
+--localstatedir=/var --disable-static \
+--with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 20:56:53 UTC (rev 160604)
+++ extra-x86_64/PKGBUILD   2012-06-02 20:59:03 UTC (rev 160605)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: Ionut Biru 
-
-pkgname=colord
-pkgver=0.1.19
-pkgrel=2
-pkgdesc="Color daemon"
-arch=('i686' 'x86_64')
-url="http://www.freedesktop.org/software/colord";
-license=('GPL2')
-depends=('lcms2' 'libgusb' 'polkit' 'sane' 'shared-color-profiles' 'sqlite' 
'udev')
-makedepends=('intltool' 'gobject-introspection' 'vala' 'docbook2x')
-source=($url/releases/$pkgname-$pkgver.tar.xz)
-options=('!libtool')
-sha1sums=('d133c6320fcdd069be86f4a7afa723f48f99acb3')
-
-build() {
-  cd "$pkgname-$pkgver"
-  
-  # put udev files in /usr/lib
-  sed -i "/slashlibdir=/s#/lib#/usr/lib#" configure
-  
-  ./configure --prefix=/usr \
---sysconfdir=/etc --libexecdir=/usr/lib/colord \
---localstatedir=/var --disable-static \
---with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: colord/repos/extra-x86_64/PKGBUILD (from rev 160604, 
colord/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 20:59:03 UTC (rev 160605)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: Ionut Biru 
+
+pkgname=colord
+pkgver=0.1.21
+pkgrel=1
+pkgdesc="Color daemon"
+arch=('i686' 'x86_64')
+url="http://www.freedesktop.org/software/colord";
+license=('GPL2')
+depends=('lcms2' 'libgusb' 'polkit' 'sane' 'shared-color-profiles' 'sqlite' 
'udev')
+makedepends=('intltool' 'gobject-introspection' 'vala' 'docbook2x')
+source=($url/releases/$pkgname-$pkgver.tar.xz)
+options=('!libtool')

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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:56:53
  Author: ibiru
Revision: 160604

update to 0.1.21

Modified:
  colord/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 20:37:34 UTC (rev 160603)
+++ PKGBUILD2012-06-02 20:56:53 UTC (rev 160604)
@@ -3,8 +3,8 @@
 # Contributor: Ionut Biru 
 
 pkgname=colord
-pkgver=0.1.19
-pkgrel=2
+pkgver=0.1.21
+pkgrel=1
 pkgdesc="Color daemon"
 arch=('i686' 'x86_64')
 url="http://www.freedesktop.org/software/colord";
@@ -13,7 +13,7 @@
 makedepends=('intltool' 'gobject-introspection' 'vala' 'docbook2x')
 source=($url/releases/$pkgname-$pkgver.tar.xz)
 options=('!libtool')
-sha1sums=('d133c6320fcdd069be86f4a7afa723f48f99acb3')
+sha1sums=('dbf981beec70e81c45cf46b150f426fc1eb56c24')
 
 build() {
   cd "$pkgname-$pkgver"



[arch-commits] Commit in gnome-user-docs/repos/extra-any (PKGBUILD PKGBUILD)

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:37:34
  Author: ibiru
Revision: 160603

archrelease: copy trunk to extra-any

Added:
  gnome-user-docs/repos/extra-any/PKGBUILD
(from rev 160602, gnome-user-docs/trunk/PKGBUILD)
Deleted:
  gnome-user-docs/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2012-06-02 20:36:46 UTC (rev 160602)
+++ PKGBUILD2012-06-02 20:37:34 UTC (rev 160603)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-user-docs
-pkgver=3.4.1
-pkgrel=1
-pkgdesc="User documentation for GNOME"
-arch=(any)
-license=('FDL')
-depends=('yelp')
-makedepends=('gnome-doc-utils' 'itstool')
-url="http://www.gnome.org";
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('dbbee5a13e0ef9b64366149fc68faeb7716c533a3b613306e9c077d92d38849a')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-user-docs/repos/extra-any/PKGBUILD (from rev 160602, 
gnome-user-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-06-02 20:37:34 UTC (rev 160603)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-user-docs
+pkgver=3.4.2
+pkgrel=1
+pkgdesc="User documentation for GNOME"
+arch=(any)
+license=('FDL')
+depends=('yelp')
+makedepends=('gnome-doc-utils' 'itstool')
+url="http://www.gnome.org";
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('65ca3921f3afa275b4d64eff2ec29f65d8b118c5e3778b1cd715bd6bdced39cf')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in gnome-user-docs/trunk (PKGBUILD)

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:36:46
  Author: ibiru
Revision: 160602

update to 3.4.2

Modified:
  gnome-user-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 20:33:51 UTC (rev 160601)
+++ PKGBUILD2012-06-02 20:36:46 UTC (rev 160602)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=gnome-user-docs
-pkgver=3.4.1
+pkgver=3.4.2
 pkgrel=1
 pkgdesc="User documentation for GNOME"
 arch=(any)
@@ -12,7 +12,7 @@
 url="http://www.gnome.org";
 groups=('gnome')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('dbbee5a13e0ef9b64366149fc68faeb7716c533a3b613306e9c077d92d38849a')
+sha256sums=('65ca3921f3afa275b4d64eff2ec29f65d8b118c5e3778b1cd715bd6bdced39cf')
 
 build() {
   cd $pkgname-$pkgver



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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:33:51
  Author: ibiru
Revision: 160601

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 20:32:27 UTC (rev 160600)
+++ extra-i686/PKGBUILD 2012-06-02 20:33:51 UTC (rev 160601)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgbase=vte3
-pkgname=(vte3 vte-common)
-pkgver=0.32.1
-pkgrel=1
-pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
-arch=('i686' 'x86_64')
-license=('LGPL')
-options=('!libtool' '!emptydirs')
-makedepends=('intltool' 'gobject-introspection' 'gtk3')
-url="http://www.gnome.org";
-source=(http://ftp.gnome.org/pub/GNOME/sources/vte/${pkgver%.*}/vte-$pkgver.tar.xz
-make_alt_work.patch::http://git.gnome.org/browse/vte/patch/?id=b73782a28894e25ed146271f9d6c6775a6836199)
-sha256sums=('543e489943d439dc82a4ba54871984ea843c3ef0a1fffa24aa65dabc57e7e4da'
-'8307623b13bcaf214cc25207ee7afaf65575d334623460311c24437fbbae14d3')
-
-build() {
-  cd "vte-$pkgver"
-  patch -Np1 -R -i "$srcdir/make_alt_work.patch"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/vte \
-  --localstatedir=/var --disable-static \
-  --enable-introspection
-  make
-}
-
-package_vte3(){
-  depends=('gtk3' 'vte-common')
-  cd "vte-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/lib/vte/gnome-pty-helper
-}
-
-package_vte-common() {
-  pkgdesc="Common files used by vte and vte3"
-  cd "vte-$pkgver"
-
-  make -C gnome-pty-helper DESTDIR="$pkgdir" install
-}

Copied: vte3/repos/extra-i686/PKGBUILD (from rev 160600, vte3/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 20:33:51 UTC (rev 160601)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgbase=vte3
+pkgname=(vte3 vte-common)
+pkgver=0.32.2
+pkgrel=1
+pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
+arch=('i686' 'x86_64')
+license=('LGPL')
+options=('!libtool' '!emptydirs')
+makedepends=('intltool' 'gobject-introspection' 'gtk3')
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/GNOME/sources/vte/${pkgver%.*}/vte-$pkgver.tar.xz)
+sha256sums=('d69ec071f7a380d8b8b981b35a9a0b891f37c4b6b17d08407f66ac98d619486a')
+
+build() {
+  cd "vte-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vte \
+  --localstatedir=/var --disable-static \
+  --enable-introspection
+  make
+}
+
+package_vte3(){
+  depends=('gtk3' 'vte-common')
+  cd "vte-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/lib/vte/gnome-pty-helper
+}
+
+package_vte-common() {
+  pkgdesc="Common files used by vte and vte3"
+  cd "vte-$pkgver"
+
+  make -C gnome-pty-helper DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 20:32:27 UTC (rev 160600)
+++ extra-x86_64/PKGBUILD   2012-06-02 20:33:51 UTC (rev 160601)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgbase=vte3
-pkgname=(vte3 vte-common)
-pkgver=0.32.1
-pkgrel=1
-pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
-arch=('i686' 'x86_64')
-license=('LGPL')
-options=('!libtool' '!emptydirs')
-makedepends=('intltool' 'gobject-introspection' 'gtk3')
-url="http://www.gnome.org";
-source=(http://ftp.gnome.org/pub/GNOME/sources/vte/${pkgver%.*}/vte-$pkgver.tar.xz
-make_alt_work.patch::http://git.gnome.org/browse/vte/patch/?id=b73782a28894e25ed146271f9d6c6775a6836199)
-sha256sums=('543e489943d439dc82a4ba54871984ea843c3ef0a1fffa24aa65dabc57e7e4da'
-'8307623b13bcaf214cc25207ee7afaf65575d334623460311c24437fbbae14d3')
-
-build() {
-  cd "vte-$pkgver"
-  patch -Np1 -R -i "$srcdir/make_alt_work.patch"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/vte \
-  --localstatedir=/var --disable-static \
-  --enable-introspection
-  make
-}
-
-package_vte3(){
-  depends=('gtk3' 'vte-common')
-  cd "vte-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/lib/vte/gnome-pty-helper
-}
-
-package_vte-common() {
-  pkgdesc="Common files used by vte and vte3"
-  cd "vte-$pkgver"
-
-  make -C gnome-pty-helper DESTDIR="$pkgdir" install
-}

Copied: vte3/repos/extra-x86_64/PKGBUILD (from rev 160600, vte3/trunk/PKGBUILD)
=

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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:32:27
  Author: ibiru
Revision: 160600

update to 0.32.2

Modified:
  vte3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 20:26:43 UTC (rev 160599)
+++ PKGBUILD2012-06-02 20:32:27 UTC (rev 160600)
@@ -3,7 +3,7 @@
 
 pkgbase=vte3
 pkgname=(vte3 vte-common)
-pkgver=0.32.1
+pkgver=0.32.2
 pkgrel=1
 pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
 arch=('i686' 'x86_64')
@@ -11,14 +11,11 @@
 options=('!libtool' '!emptydirs')
 makedepends=('intltool' 'gobject-introspection' 'gtk3')
 url="http://www.gnome.org";
-source=(http://ftp.gnome.org/pub/GNOME/sources/vte/${pkgver%.*}/vte-$pkgver.tar.xz
-make_alt_work.patch::http://git.gnome.org/browse/vte/patch/?id=b73782a28894e25ed146271f9d6c6775a6836199)
-sha256sums=('543e489943d439dc82a4ba54871984ea843c3ef0a1fffa24aa65dabc57e7e4da'
-'8307623b13bcaf214cc25207ee7afaf65575d334623460311c24437fbbae14d3')
+source=(http://ftp.gnome.org/pub/GNOME/sources/vte/${pkgver%.*}/vte-$pkgver.tar.xz)
+sha256sums=('d69ec071f7a380d8b8b981b35a9a0b891f37c4b6b17d08407f66ac98d619486a')
 
 build() {
   cd "vte-$pkgver"
-  patch -Np1 -R -i "$srcdir/make_alt_work.patch"
   ./configure --prefix=/usr --sysconfdir=/etc \
   --libexecdir=/usr/lib/vte \
   --localstatedir=/var --disable-static \



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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:26:43
  Author: ibiru
Revision: 160599

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 20:21:11 UTC (rev 160598)
+++ extra-i686/PKGBUILD 2012-06-02 20:26:43 UTC (rev 160599)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Sergej Pupykin 
-# Contributor: William Rea 
-
-pkgname=clutter
-pkgver=1.10.4
-pkgrel=1
-pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
-arch=('i686' 'x86_64')
-url="http://clutter-project.org/";
-options=('!libtool')
-license=('LGPL')
-depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
-makedepends=('gobject-introspection' 'mesa')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2f2f03c3f385db402898d2607e72d5ad9be2d14402a900c446273e5ae8be250a')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --enable-introspection
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: clutter/repos/extra-i686/PKGBUILD (from rev 160598, 
clutter/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 20:26:43 UTC (rev 160599)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=clutter
+pkgver=1.10.6
+pkgrel=1
+pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
+arch=('i686' 'x86_64')
+url="http://clutter-project.org/";
+options=('!libtool')
+license=('LGPL')
+depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
+makedepends=('gobject-introspection' 'mesa')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('1599432d5ea79b0260cdea72803784d3b94ee14de2722ad29eefbe75975630f2')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --enable-introspection
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 20:21:11 UTC (rev 160598)
+++ extra-x86_64/PKGBUILD   2012-06-02 20:26:43 UTC (rev 160599)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Sergej Pupykin 
-# Contributor: William Rea 
-
-pkgname=clutter
-pkgver=1.10.4
-pkgrel=1
-pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
-arch=('i686' 'x86_64')
-url="http://clutter-project.org/";
-options=('!libtool')
-license=('LGPL')
-depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
-makedepends=('gobject-introspection' 'mesa')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2f2f03c3f385db402898d2607e72d5ad9be2d14402a900c446273e5ae8be250a')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --enable-introspection
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: clutter/repos/extra-x86_64/PKGBUILD (from rev 160598, 
clutter/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 20:26:43 UTC (rev 160599)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=clutter
+pkgver=1.10.6
+pkgrel=1
+pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
+arch=('i686' 'x86_64')
+url="http://clutter-project.org/";
+options=('!libtool')
+license=('LGPL')
+depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
+makedepends=('gobject-introspection' 'mesa')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('1599432d5ea79b0260cdea72803784d3b94ee14de2722ad29eefbe75975630f2')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --enable-introspection
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}



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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:21:11
  Author: ibiru
Revision: 160598

update to 1.10.6

Modified:
  clutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 20:11:49 UTC (rev 160597)
+++ PKGBUILD2012-06-02 20:21:11 UTC (rev 160598)
@@ -4,7 +4,7 @@
 # Contributor: William Rea 
 
 pkgname=clutter
-pkgver=1.10.4
+pkgver=1.10.6
 pkgrel=1
 pkgdesc="A GObject based library for creating fast, visually rich graphical 
user interfaces"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
 makedepends=('gobject-introspection' 'mesa')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2f2f03c3f385db402898d2607e72d5ad9be2d14402a900c446273e5ae8be250a')
+sha256sums=('1599432d5ea79b0260cdea72803784d3b94ee14de2722ad29eefbe75975630f2')
 
 build() {
   cd "$pkgname-$pkgver"



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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:11:49
  Author: ibiru
Revision: 160597

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

Added:
  eog-plugins/repos/extra-i686/PKGBUILD
(from rev 160596, eog-plugins/trunk/PKGBUILD)
  eog-plugins/repos/extra-i686/eog-plugins.install
(from rev 160596, eog-plugins/trunk/eog-plugins.install)
  eog-plugins/repos/extra-x86_64/PKGBUILD
(from rev 160596, eog-plugins/trunk/PKGBUILD)
  eog-plugins/repos/extra-x86_64/eog-plugins.install
(from rev 160596, eog-plugins/trunk/eog-plugins.install)
Deleted:
  eog-plugins/repos/extra-i686/PKGBUILD
  eog-plugins/repos/extra-i686/eog-plugins.install
  eog-plugins/repos/extra-x86_64/PKGBUILD
  eog-plugins/repos/extra-x86_64/eog-plugins.install

--+
 extra-i686/PKGBUILD  |   62 ++---
 extra-i686/eog-plugins.install   |   22 ++---
 extra-x86_64/PKGBUILD|   62 ++---
 extra-x86_64/eog-plugins.install |   22 ++---
 4 files changed, 84 insertions(+), 84 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 20:10:48 UTC (rev 160596)
+++ extra-i686/PKGBUILD 2012-06-02 20:11:49 UTC (rev 160597)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=eog-plugins
-pkgver=3.4.0
-pkgrel=2
-pkgdesc="Plugins for Eye of Gnome"
-arch=('i686' 'x86_64')
-url="http://www.gnome.org/";
-license=('GPL2')
-depends=('eog' 'libchamplain' 'libgdata')
-makedepends=('intltool')
-install=eog-plugins.install
-options=('!libtool')
-groups=(gnome-extra)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('21a63f8f6e3a5b30f2f05133edc46becd4c83343c0f462a345204326071bc139')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
---sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: eog-plugins/repos/extra-i686/PKGBUILD (from rev 160596, 
eog-plugins/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 20:11:49 UTC (rev 160597)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=eog-plugins
+pkgver=3.4.1
+pkgrel=1
+pkgdesc="Plugins for Eye of Gnome"
+arch=('i686' 'x86_64')
+url="http://www.gnome.org/";
+license=('GPL2')
+depends=('eog' 'libchamplain' 'libgdata')
+makedepends=('intltool')
+install=eog-plugins.install
+options=('!libtool')
+groups=(gnome-extra)
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e1f7c4a0a9cc825d1ac8a64cc3d8db4da3054d294e4cd60b28eba13643d71055')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+--sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/eog-plugins.install
===
--- extra-i686/eog-plugins.install  2012-06-02 20:10:48 UTC (rev 160596)
+++ extra-i686/eog-plugins.install  2012-06-02 20:11:49 UTC (rev 160597)
@@ -1,11 +0,0 @@
-post_install() {
-  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: eog-plugins/repos/extra-i686/eog-plugins.install (from rev 160596, 
eog-plugins/trunk/eog-plugins.install)
===
--- extra-i686/eog-plugins.install  (rev 0)
+++ extra-i686/eog-plugins.install  2012-06-02 20:11:49 UTC (rev 160597)
@@ -0,0 +1,11 @@
+post_install() {
+  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 20:10:48 UTC (rev 160596)
+++ extra-x86_64/PKGBUILD   2012-06-02 20:11:49 UTC (rev 160597)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=eog-plugins
-pkgver=3.4.0
-pkgrel=2
-pkgdesc="Plugins for Eye of Gnome"
-arch=('i686' 'x86_64')
-url="http://www.gnome.org/";
-license=('GPL2')
-depends=('eog' 'libchamplain' 'libgdata')
-makedepends=('intltool')
-install=eog-plugins.install
-options=('!libtool')
-groups=(gnome-extra)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('21a63f8f6e3a5b30f2f05133edc46becd4c83343c0f462a345204326071bc139')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
---sys

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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 16:10:48
  Author: ibiru
Revision: 160596

update to 3.4.1

Modified:
  eog-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 19:09:24 UTC (rev 160595)
+++ PKGBUILD2012-06-02 20:10:48 UTC (rev 160596)
@@ -2,8 +2,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=eog-plugins
-pkgver=3.4.0
-pkgrel=2
+pkgver=3.4.1
+pkgrel=1
 pkgdesc="Plugins for Eye of Gnome"
 arch=('i686' 'x86_64')
 url="http://www.gnome.org/";
@@ -14,7 +14,7 @@
 options=('!libtool')
 groups=(gnome-extra)
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('21a63f8f6e3a5b30f2f05133edc46becd4c83343c0f462a345204326071bc139')
+sha256sums=('e1f7c4a0a9cc825d1ac8a64cc3d8db4da3054d294e4cd60b28eba13643d71055')
 
 build() {
   cd $pkgname-$pkgver



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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 15:09:24
  Author: ibiru
Revision: 160595

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

Added:
  clutter-gst/repos/extra-i686/PKGBUILD
(from rev 160594, clutter-gst/trunk/PKGBUILD)
  clutter-gst/repos/extra-x86_64/PKGBUILD
(from rev 160594, clutter-gst/trunk/PKGBUILD)
Deleted:
  clutter-gst/repos/extra-i686/PKGBUILD
  clutter-gst/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 2012-06-02 18:59:36 UTC (rev 160594)
+++ extra-i686/PKGBUILD 2012-06-02 19:09:24 UTC (rev 160595)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-
-pkgname=clutter-gst
-pkgver=1.5.4
-pkgrel=1
-pkgdesc="GStreamer bindings for clutter"
-arch=('i686' 'x86_64')
-url="http://www.clutter-project.org/";
-license=('LGPL')
-depends=('clutter' 'gstreamer0.10-base' 'libxdamage')
-makedepends=('gobject-introspection')
-options=('!libtool')
-source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('a137313ad134cd3737c018cc8f725ed1a4d1cf7d276012d75467b55f1f9859d7')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: clutter-gst/repos/extra-i686/PKGBUILD (from rev 160594, 
clutter-gst/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 19:09:24 UTC (rev 160595)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+
+pkgname=clutter-gst
+pkgver=1.5.6
+pkgrel=1
+pkgdesc="GStreamer bindings for clutter"
+arch=('i686' 'x86_64')
+url="http://www.clutter-project.org/";
+license=('LGPL')
+depends=('clutter' 'gstreamer0.10-base' 'libxdamage')
+makedepends=('gobject-introspection')
+options=('!libtool')
+source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f12b59d5a548abe38c63750ae2e6cb909afd90cfdcc06d2c4288097f962b08bc')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 18:59:36 UTC (rev 160594)
+++ extra-x86_64/PKGBUILD   2012-06-02 19:09:24 UTC (rev 160595)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-
-pkgname=clutter-gst
-pkgver=1.5.4
-pkgrel=1
-pkgdesc="GStreamer bindings for clutter"
-arch=('i686' 'x86_64')
-url="http://www.clutter-project.org/";
-license=('LGPL')
-depends=('clutter' 'gstreamer0.10-base' 'libxdamage')
-makedepends=('gobject-introspection')
-options=('!libtool')
-source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('a137313ad134cd3737c018cc8f725ed1a4d1cf7d276012d75467b55f1f9859d7')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: clutter-gst/repos/extra-x86_64/PKGBUILD (from rev 160594, 
clutter-gst/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 19:09:24 UTC (rev 160595)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan "heftig" Steffens 
+
+pkgname=clutter-gst
+pkgver=1.5.6
+pkgrel=1
+pkgdesc="GStreamer bindings for clutter"
+arch=('i686' 'x86_64')
+url="http://www.clutter-project.org/";
+license=('LGPL')
+depends=('clutter' 'gstreamer0.10-base' 'libxdamage')
+makedepends=('gobject-introspection')
+options=('!libtool')
+source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f12b59d5a548abe38c63750ae2e6cb909afd90cfdcc06d2c4288097f962b08bc')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2012-06-02 Thread Ionut Biru
Date: Saturday, June 2, 2012 @ 14:59:36
  Author: ibiru
Revision: 160594

update to 1.5.6

Modified:
  clutter-gst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 18:42:56 UTC (rev 160593)
+++ PKGBUILD2012-06-02 18:59:36 UTC (rev 160594)
@@ -2,7 +2,7 @@
 # Maintainer: Jan "heftig" Steffens 
 
 pkgname=clutter-gst
-pkgver=1.5.4
+pkgver=1.5.6
 pkgrel=1
 pkgdesc="GStreamer bindings for clutter"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('gobject-introspection')
 options=('!libtool')
 
source=(http://clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('a137313ad134cd3737c018cc8f725ed1a4d1cf7d276012d75467b55f1f9859d7')
+sha256sums=('f12b59d5a548abe38c63750ae2e6cb909afd90cfdcc06d2c4288097f962b08bc')
 
 build() {
   cd "$pkgname-$pkgver"



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

2012-06-02 Thread Eric Bélanger
Date: Saturday, June 2, 2012 @ 14:42:56
  Author: eric
Revision: 160593

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 18:42:33 UTC (rev 160592)
+++ extra-i686/PKGBUILD 2012-06-02 18:42:56 UTC (rev 160593)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=fsarchiver
-pkgver=0.6.13
-pkgrel=1
-pkgdesc="A safe and flexible file-system backup and deployment tool"
-arch=('i686' 'x86_64')
-url="http://www.fsarchiver.org/";
-license=('GPL')
-depends=('bzip2' 'e2fsprogs' 'lzo2' 'xz' 'libgcrypt')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('49e974cbb18332bb67e6089d942eac66')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: fsarchiver/repos/extra-i686/PKGBUILD (from rev 160592, 
fsarchiver/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 18:42:56 UTC (rev 160593)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=fsarchiver
+pkgver=0.6.15
+pkgrel=1
+pkgdesc="A safe and flexible file-system backup and deployment tool"
+arch=('i686' 'x86_64')
+url="http://www.fsarchiver.org/";
+license=('GPL2')
+depends=('bzip2' 'e2fsprogs' 'lzo2' 'xz' 'libgcrypt')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('f55a9022ab692c394b366161c52db0700956e0b2')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 18:42:33 UTC (rev 160592)
+++ extra-x86_64/PKGBUILD   2012-06-02 18:42:56 UTC (rev 160593)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=fsarchiver
-pkgver=0.6.13
-pkgrel=1
-pkgdesc="A safe and flexible file-system backup and deployment tool"
-arch=('i686' 'x86_64')
-url="http://www.fsarchiver.org/";
-license=('GPL')
-depends=('bzip2' 'e2fsprogs' 'lzo2' 'xz' 'libgcrypt')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('49e974cbb18332bb67e6089d942eac66')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: fsarchiver/repos/extra-x86_64/PKGBUILD (from rev 160592, 
fsarchiver/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 18:42:56 UTC (rev 160593)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=fsarchiver
+pkgver=0.6.15
+pkgrel=1
+pkgdesc="A safe and flexible file-system backup and deployment tool"
+arch=('i686' 'x86_64')
+url="http://www.fsarchiver.org/";
+license=('GPL2')
+depends=('bzip2' 'e2fsprogs' 'lzo2' 'xz' 'libgcrypt')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('f55a9022ab692c394b366161c52db0700956e0b2')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2012-06-02 Thread Eric Bélanger
Date: Saturday, June 2, 2012 @ 14:42:33
  Author: eric
Revision: 160592

upgpkg: fsarchiver 0.6.15-1

Upstream update, Fix license

Modified:
  fsarchiver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 17:08:42 UTC (rev 160591)
+++ PKGBUILD2012-06-02 18:42:33 UTC (rev 160592)
@@ -4,19 +4,18 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=fsarchiver
-pkgver=0.6.13
+pkgver=0.6.15
 pkgrel=1
 pkgdesc="A safe and flexible file-system backup and deployment tool"
 arch=('i686' 'x86_64')
 url="http://www.fsarchiver.org/";
-license=('GPL')
+license=('GPL2')
 depends=('bzip2' 'e2fsprogs' 'lzo2' 'xz' 'libgcrypt')
 
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('49e974cbb18332bb67e6089d942eac66')
+sha1sums=('f55a9022ab692c394b366161c52db0700956e0b2')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-
   ./configure --prefix=/usr
   make
 }



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

2012-06-02 Thread Gaetan Bisson
Date: Saturday, June 2, 2012 @ 13:08:42
  Author: bisson
Revision: 160591

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

Added:
  xournal/repos/extra-i686/PKGBUILD
(from rev 160590, xournal/trunk/PKGBUILD)
  xournal/repos/extra-i686/install
(from rev 160590, xournal/trunk/install)
  xournal/repos/extra-x86_64/PKGBUILD
(from rev 160590, xournal/trunk/PKGBUILD)
  xournal/repos/extra-x86_64/install
(from rev 160590, xournal/trunk/install)
Deleted:
  xournal/repos/extra-i686/PKGBUILD
  xournal/repos/extra-i686/install
  xournal/repos/extra-i686/pdf-export-64.patch
  xournal/repos/extra-i686/poppler-api.patch
  xournal/repos/extra-x86_64/PKGBUILD
  xournal/repos/extra-x86_64/install
  xournal/repos/extra-x86_64/pdf-export-64.patch
  xournal/repos/extra-x86_64/poppler-api.patch

--+
 extra-i686/PKGBUILD  |   62 ++
 extra-i686/install   |   26 +++---
 extra-i686/pdf-export-64.patch   |   89 
 extra-i686/poppler-api.patch |  158 -
 extra-x86_64/PKGBUILD|   62 ++
 extra-x86_64/install |   26 +++---
 extra-x86_64/pdf-export-64.patch |   89 
 extra-x86_64/poppler-api.patch   |  158 -
 8 files changed, 80 insertions(+), 590 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 17:05:28 UTC (rev 160590)
+++ extra-i686/PKGBUILD 2012-06-02 17:08:42 UTC (rev 160591)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-
-pkgname=xournal
-pkgver=0.4.5
-pkgrel=5
-pkgdesc='Notetaking and sketching application'
-arch=('i686' 'x86_64')
-url='http://xournal.sourceforge.net/'
-license=('GPL')
-depends=('libgnomecanvas' 'poppler-glib' 'shared-mime-info' 
'desktop-file-utils' 'hicolor-icon-theme')
-optdepends=('ghostscript: import PS/PDF files as bitmap backgrounds')
-source=("http://downloads.sourceforge.net/xournal/xournal-${pkgver}.tar.gz";
-'pdf-export-64.patch'
-'poppler-api.patch')
-sha1sums=('390cb275774469ed1b04b7268dd625bd456c895e'
-  'f23f53b9f69ba8a5773c53d7bca99abf9d8504f8'
-  '5aedd5610b42df96e964bb889d4bf0831c2080bc')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   patch -p1 -i ../pdf-export-64.patch # from xournal CVS, see FS#21693
-   patch -p1 -i ../poppler-api.patch
-
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install desktop-install
-}

Copied: xournal/repos/extra-i686/PKGBUILD (from rev 160590, 
xournal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 17:08:42 UTC (rev 160591)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+
+pkgname=xournal
+pkgver=0.4.6
+pkgrel=1
+pkgdesc='Notetaking and sketching application'
+url='http://xournal.sourceforge.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('libgnomecanvas' 'poppler-glib' 'shared-mime-info' 
'desktop-file-utils' 'hicolor-icon-theme')
+optdepends=('ghostscript: import PS/PDF files as bitmap backgrounds')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('4ebe79e3df7155d2a09c341537a639ac2332d4c8')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr LIBS='-lm -lz'
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install desktop-install
+}

Deleted: extra-i686/install
===
--- extra-i686/install  2012-06-02 17:05:28 UTC (rev 160590)
+++ extra-i686/install  2012-06-02 17:08:42 UTC (rev 160591)
@@ -1,13 +0,0 @@
-post_install() {
-   update-desktop-database -q
-   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-   update-mime-database usr/share/mime &>/dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: xournal/repos/extra-i686/install (from rev 160590, 
xournal/trunk/install)
===
--- extra-i686/install  (rev 0)
+++ extra-i686/install  2012-06-02 17:08:42 UTC (rev 160591)
@@ -0,0 +1,13 @@
+post_install() {
+   update-desktop-database -q
+   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+   update-mime-database usr/share/mime &>/dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-i686/pdf-export-64.patch
===
--- extra-i686/pdf-export-64.patch  2012-06-02 17:05:28 

[arch-commits] Commit in xournal/trunk (3 files)

2012-06-02 Thread Gaetan Bisson
Date: Saturday, June 2, 2012 @ 13:05:28
  Author: bisson
Revision: 160590

upstream update

Modified:
  xournal/trunk/PKGBUILD
Deleted:
  xournal/trunk/pdf-export-64.patch
  xournal/trunk/poppler-api.patch

-+
 PKGBUILD|   20 +-
 pdf-export-64.patch |   89 
 poppler-api.patch   |  158 --
 3 files changed, 6 insertions(+), 261 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 11:45:11 UTC (rev 160589)
+++ PKGBUILD2012-06-02 17:05:28 UTC (rev 160590)
@@ -2,30 +2,22 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=xournal
-pkgver=0.4.5
-pkgrel=5
+pkgver=0.4.6
+pkgrel=1
 pkgdesc='Notetaking and sketching application'
-arch=('i686' 'x86_64')
 url='http://xournal.sourceforge.net/'
 license=('GPL')
+arch=('i686' 'x86_64')
 depends=('libgnomecanvas' 'poppler-glib' 'shared-mime-info' 
'desktop-file-utils' 'hicolor-icon-theme')
 optdepends=('ghostscript: import PS/PDF files as bitmap backgrounds')
-source=("http://downloads.sourceforge.net/xournal/xournal-${pkgver}.tar.gz";
-'pdf-export-64.patch'
-'poppler-api.patch')
-sha1sums=('390cb275774469ed1b04b7268dd625bd456c895e'
-  'f23f53b9f69ba8a5773c53d7bca99abf9d8504f8'
-  '5aedd5610b42df96e964bb889d4bf0831c2080bc')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('4ebe79e3df7155d2a09c341537a639ac2332d4c8')
 
 install=install
 
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
-
-   patch -p1 -i ../pdf-export-64.patch # from xournal CVS, see FS#21693
-   patch -p1 -i ../poppler-api.patch
-
-   ./configure --prefix=/usr
+   ./configure --prefix=/usr LIBS='-lm -lz'
make
 }
 

Deleted: pdf-export-64.patch
===
--- pdf-export-64.patch 2012-06-02 11:45:11 UTC (rev 160589)
+++ pdf-export-64.patch 2012-06-02 17:05:28 UTC (rev 160590)
@@ -1,89 +0,0 @@
-diff -aur old/src/xo-print.c new/src/xo-print.c
 old/src/xo-print.c 2009-09-28 23:36:54.0 +0200
-+++ new/src/xo-print.c 2009-11-15 06:06:00.0 +0100
-@@ -761,7 +761,7 @@
- 
-   make_xref(xref, xref->last+1, pdfbuf->len);
-   g_string_append_printf(pdfbuf, 
--"%d 0 obj\n<< /Length %d /Filter /FlateDecode /Type /Xobject "
-+"%d 0 obj\n<< /Length %zu /Filter /FlateDecode /Type /Xobject "
- "/Subtype /Image /Width %d /Height %d /ColorSpace /DeviceRGB "
- "/BitsPerComponent 8 >> stream\n",
- xref->last, zpix->len, width, height);
-@@ -840,8 +840,10 @@
-   gboolean fallback, is_binary;
-   guchar encoding[256];
-   gushort glyphs[256];
--  int i, j, num, len1, len2;
--  gsize len;
-+  int i, j, num;
-+  guint32 len1, len2;
-+  guint32 tt_len;
-+  gsize t1_len;
-   TrueTypeFont *ttfnt;
-   char *seg1, *seg2;
-   char *fontdata, *p;
-@@ -862,14 +864,14 @@
-   }
- font->num_glyphs_used = num-1;
- if (OpenTTFont(font->filename, 0, &ttfnt) == SF_OK) {
--  if (CreateTTFromTTGlyphs_tomemory(ttfnt, (guint8**)&fontdata, &len, 
glyphs, encoding, num, 
-+  if (CreateTTFromTTGlyphs_tomemory(ttfnt, (guint8**)&fontdata, &tt_len, 
glyphs, encoding, num, 
-0, NULL, TTCF_AutoName | TTCF_IncludeOS2) == SF_OK) {
- make_xref(xref, xref->last+1, pdfbuf->len);
- nobj_fontprog = xref->last;
- g_string_append_printf(pdfbuf, 
--  "%d 0 obj\n<< /Length %d /Length1 %d >> stream\n",
--  nobj_fontprog, (int)len, (int)len);
--g_string_append_len(pdfbuf, fontdata, len);
-+  "%d 0 obj\n<< /Length %u /Length1 %u >> stream\n",
-+  nobj_fontprog, tt_len, tt_len);
-+g_string_append_len(pdfbuf, fontdata, tt_len);
- g_string_append(pdfbuf, "endstream\nendobj\n");
- g_free(fontdata);
-   }
-@@ -879,7 +881,7 @@
- else fallback = TRUE;
-   } else {
-   // embed the font file: Type1 case
--if (g_file_get_contents(font->filename, &fontdata, &len, NULL) && len>=8) 
{
-+if (g_file_get_contents(font->filename, &fontdata, &t1_len, NULL) && 
t1_len>=8) {
-   if (fontdata[0]==(char)0x80 && fontdata[1]==(char)0x01) {
- is_binary = TRUE;
- len1 = pfb_get_length((unsigned char *)fontdata+2);
-@@ -898,7 +900,7 @@
-   if (*p=='\n' || *p=='\r') p++;
-   if (*p=='\n' || *p=='\r') p++;
-   len1 = p-fontdata;
--  p = g_strrstr_len(fontdata, len, T1_SEGMENT_3_END);
-+  p = g_strrstr_len(fontdata, t1_len, T1_SEGMENT_3_END);
-   if (p==NULL) fallback = TRUE;
-   else {
- // rewind 512 zeros
-@@ -936,7 +938,7 @@
- make_xref(xref, xref->last+1, pdfbuf->len);
- nobj_fontprog = xref->last;
- g_string_append_printf(pdfbuf, 
--  "%d 0 obj\n<< /Length %d /Length1 %d /Length2 %d /Length3 0 >> 
stream\n",
-+  "%d 

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

2012-06-02 Thread Allan McRae
Date: Saturday, June 2, 2012 @ 07:45:11
  Author: allan
Revision: 160589

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 11:44:12 UTC (rev 160588)
+++ extra-i686/PKGBUILD 2012-06-02 11:45:11 UTC (rev 160589)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=pmount
-pkgver=0.9.23
-pkgrel=3
-pkgdesc="mount removable devices as normal user"
-arch=(i686 x86_64)
-license=('GPL2')
-url="http://pmount.alioth.debian.org/";
-backup=('etc/pmount.allow')
-depends=('sysfsutils>=2.0.0-1' 'bash' 'util-linux')
-makedepends=('intltool')
-source=(https://alioth.debian.org/frs/download.php/3310/pmount-0.9.23.tar.bz2)
-md5sums=('db19f5bf3151b1b41705ec7bafa439d3')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-hal
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: pmount/repos/extra-i686/PKGBUILD (from rev 160588, 
pmount/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 11:45:11 UTC (rev 160589)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=pmount
+pkgver=0.9.23
+pkgrel=4
+pkgdesc="mount removable devices as normal user"
+arch=(i686 x86_64)
+license=('GPL2')
+url="http://pmount.alioth.debian.org/";
+backup=('etc/pmount.allow')
+depends=('sysfsutils>=2.0.0-1' 'bash' 'util-linux')
+makedepends=('intltool')
+source=(https://alioth.debian.org/frs/download.php/3310/pmount-0.9.23.tar.bz2)
+md5sums=('db19f5bf3151b1b41705ec7bafa439d3')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-hal \
+--with-cryptsetup-prog=/usr/sbin/cryptsetup
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 11:44:12 UTC (rev 160588)
+++ extra-x86_64/PKGBUILD   2012-06-02 11:45:11 UTC (rev 160589)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=pmount
-pkgver=0.9.23
-pkgrel=3
-pkgdesc="mount removable devices as normal user"
-arch=(i686 x86_64)
-license=('GPL2')
-url="http://pmount.alioth.debian.org/";
-backup=('etc/pmount.allow')
-depends=('sysfsutils>=2.0.0-1' 'bash' 'util-linux')
-makedepends=('intltool')
-source=(https://alioth.debian.org/frs/download.php/3310/pmount-0.9.23.tar.bz2)
-md5sums=('db19f5bf3151b1b41705ec7bafa439d3')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-hal
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: pmount/repos/extra-x86_64/PKGBUILD (from rev 160588, 
pmount/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 11:45:11 UTC (rev 160589)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=pmount
+pkgver=0.9.23
+pkgrel=4
+pkgdesc="mount removable devices as normal user"
+arch=(i686 x86_64)
+license=('GPL2')
+url="http://pmount.alioth.debian.org/";
+backup=('etc/pmount.allow')
+depends=('sysfsutils>=2.0.0-1' 'bash' 'util-linux')
+makedepends=('intltool')
+source=(https://alioth.debian.org/frs/download.php/3310/pmount-0.9.23.tar.bz2)
+md5sums=('db19f5bf3151b1b41705ec7bafa439d3')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-hal \
+--with-cryptsetup-prog=/usr/sbin/cryptsetup
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2012-06-02 Thread Allan McRae
Date: Saturday, June 2, 2012 @ 07:44:12
  Author: allan
Revision: 160588

upgpkg: pmount 0.9.23-4

fix cryptsetup path (FS#30071)

Modified:
  pmount/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-02 10:54:59 UTC (rev 160587)
+++ PKGBUILD2012-06-02 11:44:12 UTC (rev 160588)
@@ -3,7 +3,7 @@
 
 pkgname=pmount
 pkgver=0.9.23
-pkgrel=3
+pkgrel=4
 pkgdesc="mount removable devices as normal user"
 arch=(i686 x86_64)
 license=('GPL2')
@@ -16,7 +16,8 @@
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-hal
+  ./configure --prefix=/usr --disable-hal \
+--with-cryptsetup-prog=/usr/sbin/cryptsetup
   make
 }
 



[arch-commits] Commit in perl/repos (19 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:54:59
  Author: bluewind
Revision: 160587

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

Added:
  
perl/repos/core-x86_64/0001-Append-CFLAGS-and-LDFLAGS-to-their-Config.pm-counter.patch
(from rev 160585, 
perl/repos/testing-x86_64/0001-Append-CFLAGS-and-LDFLAGS-to-their-Config.pm-counter.patch)
  perl/repos/core-x86_64/ChangeLog
(from rev 160585, perl/repos/testing-x86_64/ChangeLog)
  perl/repos/core-x86_64/PKGBUILD
(from rev 160585, perl/repos/testing-x86_64/PKGBUILD)
  perl/repos/core-x86_64/digest_eval_hole.diff
(from rev 160585, perl/repos/testing-x86_64/digest_eval_hole.diff)
  perl/repos/core-x86_64/fix-h2ph-and-tests.patch
(from rev 160585, perl/repos/testing-x86_64/fix-h2ph-and-tests.patch)
  perl/repos/core-x86_64/perl.install
(from rev 160585, perl/repos/testing-x86_64/perl.install)
  perl/repos/core-x86_64/perlbin.csh
(from rev 160585, perl/repos/testing-x86_64/perlbin.csh)
  perl/repos/core-x86_64/perlbin.sh
(from rev 160585, perl/repos/testing-x86_64/perlbin.sh)
  perl/repos/core-x86_64/provides.pl
(from rev 160585, perl/repos/testing-x86_64/provides.pl)
Deleted:
  
perl/repos/core-x86_64/0001-Append-CFLAGS-and-LDFLAGS-to-their-Config.pm-counter.patch
  perl/repos/core-x86_64/ChangeLog
  perl/repos/core-x86_64/PKGBUILD
  perl/repos/core-x86_64/digest_eval_hole.diff
  perl/repos/core-x86_64/fix-h2ph-and-tests.patch
  perl/repos/core-x86_64/perl.install
  perl/repos/core-x86_64/perlbin.csh
  perl/repos/core-x86_64/perlbin.sh
  perl/repos/core-x86_64/provides.pl
  perl/repos/testing-x86_64/

-+
 0001-Append-CFLAGS-and-LDFLAGS-to-their-Config.pm-counter.patch |  166 +-
 ChangeLog   |  132 +-
 PKGBUILD|  242 +---
 digest_eval_hole.diff   |  122 +-
 fix-h2ph-and-tests.patch|  208 +--
 perl.install|   20 
 perlbin.csh |   30 
 perlbin.sh  |   36 
 provides.pl |  585 
+-
 9 files changed, 772 insertions(+), 769 deletions(-)

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


[arch-commits] Commit in perl/repos (19 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:54:57
  Author: bluewind
Revision: 160586

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

Added:
  
perl/repos/core-i686/0001-Append-CFLAGS-and-LDFLAGS-to-their-Config.pm-counter.patch
(from rev 160585, 
perl/repos/testing-i686/0001-Append-CFLAGS-and-LDFLAGS-to-their-Config.pm-counter.patch)
  perl/repos/core-i686/ChangeLog
(from rev 160585, perl/repos/testing-i686/ChangeLog)
  perl/repos/core-i686/PKGBUILD
(from rev 160585, perl/repos/testing-i686/PKGBUILD)
  perl/repos/core-i686/digest_eval_hole.diff
(from rev 160585, perl/repos/testing-i686/digest_eval_hole.diff)
  perl/repos/core-i686/fix-h2ph-and-tests.patch
(from rev 160585, perl/repos/testing-i686/fix-h2ph-and-tests.patch)
  perl/repos/core-i686/perl.install
(from rev 160585, perl/repos/testing-i686/perl.install)
  perl/repos/core-i686/perlbin.csh
(from rev 160585, perl/repos/testing-i686/perlbin.csh)
  perl/repos/core-i686/perlbin.sh
(from rev 160585, perl/repos/testing-i686/perlbin.sh)
  perl/repos/core-i686/provides.pl
(from rev 160585, perl/repos/testing-i686/provides.pl)
Deleted:
  
perl/repos/core-i686/0001-Append-CFLAGS-and-LDFLAGS-to-their-Config.pm-counter.patch
  perl/repos/core-i686/ChangeLog
  perl/repos/core-i686/PKGBUILD
  perl/repos/core-i686/digest_eval_hole.diff
  perl/repos/core-i686/fix-h2ph-and-tests.patch
  perl/repos/core-i686/perl.install
  perl/repos/core-i686/perlbin.csh
  perl/repos/core-i686/perlbin.sh
  perl/repos/core-i686/provides.pl
  perl/repos/testing-i686/

-+
 0001-Append-CFLAGS-and-LDFLAGS-to-their-Config.pm-counter.patch |  166 +-
 ChangeLog   |  132 +-
 PKGBUILD|  242 +---
 digest_eval_hole.diff   |  122 +-
 fix-h2ph-and-tests.patch|  208 +--
 perl.install|   20 
 perlbin.csh |   30 
 perlbin.sh  |   36 
 provides.pl |  585 
+-
 9 files changed, 772 insertions(+), 769 deletions(-)

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


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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:29:16
  Author: bluewind
Revision: 160585

db-move: moved xfconf from [testing] to [extra] (x86_64)

Added:
  xfconf/repos/extra-x86_64/PKGBUILD
(from rev 160459, xfconf/repos/testing-x86_64/PKGBUILD)
Deleted:
  xfconf/repos/extra-x86_64/PKGBUILD
  xfconf/repos/testing-x86_64/

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:29:14 UTC (rev 160584)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:29:16 UTC (rev 160585)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfconf
-pkgver=4.10.0
-pkgrel=1
-pkgdesc="A simple client-server configuration storage and query system"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/";
-license=('GPL2')
-groups=('xfce4')
-# http://www.xfce.org/documentation/requirements
-# keep dbus, see also http://bugs.archlinux.org/task/14536
-depends=('libxfce4util' 'dbus-glib' 'dbus')
-makedepends=('pkgconfig' 'perl-extutils-depends' 'perl-extutils-pkgconfig'
- 'glib-perl' 'intltool' 'gtk-doc' 'chrpath')
-options=('!libtool' '!emptydirs')
-source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
-sha256sums=('175219a441cc7d0f210bbd1a3b0abba41598627cd9db27235811400c3e100576')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---enable-gtk-doc \
---with-perl-options=INSTALLDIRS="vendor" \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # remove unneeded dynloader bootstrap file
-  rm "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.bs"
-
-  # fix insecure rpath, http://bugs.archlinux.org/task/19980
-  chrpath -d "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.so"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfconf/repos/extra-x86_64/PKGBUILD (from rev 160459, 
xfconf/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:29:16 UTC (rev 160585)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfconf
+pkgver=4.10.0
+pkgrel=2
+pkgdesc="A simple client-server configuration storage and query system"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+# http://www.xfce.org/documentation/requirements
+# keep dbus, see also http://bugs.archlinux.org/task/14536
+depends=('libxfce4util' 'dbus-glib' 'dbus')
+makedepends=('pkgconfig' 'perl-extutils-depends' 'perl-extutils-pkgconfig'
+ 'glib-perl' 'intltool' 'gtk-doc' 'chrpath')
+options=('!libtool' '!emptydirs')
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
+sha256sums=('175219a441cc7d0f210bbd1a3b0abba41598627cd9db27235811400c3e100576')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--enable-gtk-doc \
+--with-perl-options=INSTALLDIRS="vendor" \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # remove unneeded dynloader bootstrap file
+  rm "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.bs"
+
+  # fix insecure rpath, http://bugs.archlinux.org/task/19980
+  chrpath -d "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.so"
+}
+
+# vim:set ts=2 sw=2 et:



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:29:14
  Author: bluewind
Revision: 160584

db-move: moved xfconf from [testing] to [extra] (i686)

Added:
  xfconf/repos/extra-i686/PKGBUILD
(from rev 160459, xfconf/repos/testing-i686/PKGBUILD)
Deleted:
  xfconf/repos/extra-i686/PKGBUILD
  xfconf/repos/testing-i686/

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:29:13 UTC (rev 160583)
+++ extra-i686/PKGBUILD 2012-06-02 10:29:14 UTC (rev 160584)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfconf
-pkgver=4.10.0
-pkgrel=1
-pkgdesc="A simple client-server configuration storage and query system"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/";
-license=('GPL2')
-groups=('xfce4')
-# http://www.xfce.org/documentation/requirements
-# keep dbus, see also http://bugs.archlinux.org/task/14536
-depends=('libxfce4util' 'dbus-glib' 'dbus')
-makedepends=('pkgconfig' 'perl-extutils-depends' 'perl-extutils-pkgconfig'
- 'glib-perl' 'intltool' 'gtk-doc' 'chrpath')
-options=('!libtool' '!emptydirs')
-source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
-sha256sums=('175219a441cc7d0f210bbd1a3b0abba41598627cd9db27235811400c3e100576')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---enable-gtk-doc \
---with-perl-options=INSTALLDIRS="vendor" \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # remove unneeded dynloader bootstrap file
-  rm "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.bs"
-
-  # fix insecure rpath, http://bugs.archlinux.org/task/19980
-  chrpath -d "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.so"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfconf/repos/extra-i686/PKGBUILD (from rev 160459, 
xfconf/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:29:14 UTC (rev 160584)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfconf
+pkgver=4.10.0
+pkgrel=2
+pkgdesc="A simple client-server configuration storage and query system"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+# http://www.xfce.org/documentation/requirements
+# keep dbus, see also http://bugs.archlinux.org/task/14536
+depends=('libxfce4util' 'dbus-glib' 'dbus')
+makedepends=('pkgconfig' 'perl-extutils-depends' 'perl-extutils-pkgconfig'
+ 'glib-perl' 'intltool' 'gtk-doc' 'chrpath')
+options=('!libtool' '!emptydirs')
+source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2)
+sha256sums=('175219a441cc7d0f210bbd1a3b0abba41598627cd9db27235811400c3e100576')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--enable-gtk-doc \
+--with-perl-options=INSTALLDIRS="vendor" \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # remove unneeded dynloader bootstrap file
+  rm "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.bs"
+
+  # fix insecure rpath, http://bugs.archlinux.org/task/19980
+  chrpath -d "$pkgdir/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.so"
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in xchat/repos (11 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:29:13
  Author: bluewind
Revision: 160583

db-move: moved xchat from [testing] to [extra] (x86_64)

Added:
  xchat/repos/extra-x86_64/PKGBUILD
(from rev 160459, xchat/repos/testing-x86_64/PKGBUILD)
  xchat/repos/extra-x86_64/xchat-2.8.8-glib-2.31.patch
(from rev 160459, xchat/repos/testing-x86_64/xchat-2.8.8-glib-2.31.patch)
  xchat/repos/extra-x86_64/xchat-2.8.8-libnotify07.patch
(from rev 160459, xchat/repos/testing-x86_64/xchat-2.8.8-libnotify07.patch)
  xchat/repos/extra-x86_64/xchat-2.8.8-link-against-libnotify.patch
(from rev 160459, 
xchat/repos/testing-x86_64/xchat-2.8.8-link-against-libnotify.patch)
  xchat/repos/extra-x86_64/xchat.install
(from rev 160459, xchat/repos/testing-x86_64/xchat.install)
Deleted:
  xchat/repos/extra-x86_64/PKGBUILD
  xchat/repos/extra-x86_64/xchat-2.8.8-glib-2.31.patch
  xchat/repos/extra-x86_64/xchat-2.8.8-libnotify07.patch
  xchat/repos/extra-x86_64/xchat-2.8.8-link-against-libnotify.patch
  xchat/repos/extra-x86_64/xchat.install
  xchat/repos/testing-x86_64/

--+
 PKGBUILD |  102 ++--
 xchat-2.8.8-glib-2.31.patch  |  124 ++---
 xchat-2.8.8-libnotify07.patch|   48 +-
 xchat-2.8.8-link-against-libnotify.patch |  686 ++---
 xchat.install|   22 
 5 files changed, 491 insertions(+), 491 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:29:11 UTC (rev 160582)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:29:13 UTC (rev 160583)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=xchat
-pkgver=2.8.8
-pkgrel=9
-pkgdesc="A GTK+ based IRC client"
-arch=('i686' 'x86_64')
-url="http://www.xchat.org/";
-license=('GPL')
-depends=('gtk2' 'openssl' 'dbus-glib' 'libnotify' 'hicolor-icon-theme')
-makedepends=('tcl' 'perl' 'python2' 'librsvg')
-optdepends=('enchant: for spell checking support' 'tcl: for tcl plugin'
-'python2: for python plugin')
-options=('!libtool')
-install=xchat.install
-source=(http://www.xchat.org/files/source/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
-http://xchat.org/files/icons/xchat-svg.tar.bz2
-xchat-2.8.8-libnotify07.patch
-xchat-2.8.8-link-against-libnotify.patch
-xchat-2.8.8-glib-2.31.patch)
-sha1sums=('e12305da42d1aacc26c2ca25e239f393d4dd3532'
-  '0d366346cc11e0efb57fc2648fe423c94a3469bd'
-  'a053fba4e1911d1ee6a8248fe19e344797920fe3'
-  '70c3cc29fc55ff35f701ef8ac23078b6e3761ce1'
-  'aecaf6176a7cfd62555207b02f2793b360aa39da')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -p1 -i "${srcdir}/xchat-2.8.8-libnotify07.patch"
-  patch -p1 -i "${srcdir}/xchat-2.8.8-link-against-libnotify.patch"
-  patch -p1 -i "${srcdir}/xchat-2.8.8-glib-2.31.patch"
-  autoconf
-  autoheader
-
-  LIBS+="-lgmodule-2.0" ./configure --prefix=/usr --sysconfdir=/etc 
--datadir=/usr/share \
---enable-openssl --enable-dbus --disable-textfe --enable-ipv6 --enable-shm 
--enable-spell=static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  for i in 24 32 48 64 128 256 ; do
-install -d "${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps"
-rsvg-convert -w $i -h $i -o 
"${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps/xchat.png" ../xchat-cloned.svg
-  done
-  install -D -m644 ../xchat-cloned.svg 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/xchat.svg"
-  install -D -m644 ../xchat-used.svg 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/xchat2.svg"
-}

Copied: xchat/repos/extra-x86_64/PKGBUILD (from rev 160459, 
xchat/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:29:13 UTC (rev 160583)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=xchat
+pkgver=2.8.8
+pkgrel=10
+pkgdesc="A GTK+ based IRC client"
+arch=('i686' 'x86_64')
+url="http://www.xchat.org/";
+license=('GPL')
+depends=('gtk2' 'openssl' 'dbus-glib' 'libnotify' 'hicolor-icon-theme')
+makedepends=('tcl' 'perl' 'python2' 'librsvg')
+optdepends=('enchant: for spell checking support' 'tcl: for tcl plugin'
+'python2: for python plugin')
+options=('!libtool')
+install=xchat.install
+source=(http://www.xchat.org/files/source/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
+http://xchat.org/files/icons/xchat-svg.tar.bz2
+xchat-2.8.8-libnotify07.patch
+xchat-2.8.8-link-against-libnotify.patch
+xchat-2.8.8-glib-2.31.patch)
+sha1sums=('e12305da42d1aacc26c2ca25e239f393d4dd3532'
+  '0d366346cc11e0efb57fc2648fe423c94a3469bd'
+  'a053fba4e1911d1ee6a8248fe19e344797920fe3'
+  '70c3cc29fc55ff35f701ef8ac23078b6e3761ce1'
+  'aecaf6

[arch-commits] Commit in xchat/repos (11 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:29:11
  Author: bluewind
Revision: 160582

db-move: moved xchat from [testing] to [extra] (i686)

Added:
  xchat/repos/extra-i686/PKGBUILD
(from rev 160459, xchat/repos/testing-i686/PKGBUILD)
  xchat/repos/extra-i686/xchat-2.8.8-glib-2.31.patch
(from rev 160459, xchat/repos/testing-i686/xchat-2.8.8-glib-2.31.patch)
  xchat/repos/extra-i686/xchat-2.8.8-libnotify07.patch
(from rev 160459, xchat/repos/testing-i686/xchat-2.8.8-libnotify07.patch)
  xchat/repos/extra-i686/xchat-2.8.8-link-against-libnotify.patch
(from rev 160459, 
xchat/repos/testing-i686/xchat-2.8.8-link-against-libnotify.patch)
  xchat/repos/extra-i686/xchat.install
(from rev 160459, xchat/repos/testing-i686/xchat.install)
Deleted:
  xchat/repos/extra-i686/PKGBUILD
  xchat/repos/extra-i686/xchat-2.8.8-glib-2.31.patch
  xchat/repos/extra-i686/xchat-2.8.8-libnotify07.patch
  xchat/repos/extra-i686/xchat-2.8.8-link-against-libnotify.patch
  xchat/repos/extra-i686/xchat.install
  xchat/repos/testing-i686/

--+
 PKGBUILD |  102 ++--
 xchat-2.8.8-glib-2.31.patch  |  124 ++---
 xchat-2.8.8-libnotify07.patch|   48 +-
 xchat-2.8.8-link-against-libnotify.patch |  686 ++---
 xchat.install|   22 
 5 files changed, 491 insertions(+), 491 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:29:09 UTC (rev 160581)
+++ extra-i686/PKGBUILD 2012-06-02 10:29:11 UTC (rev 160582)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=xchat
-pkgver=2.8.8
-pkgrel=9
-pkgdesc="A GTK+ based IRC client"
-arch=('i686' 'x86_64')
-url="http://www.xchat.org/";
-license=('GPL')
-depends=('gtk2' 'openssl' 'dbus-glib' 'libnotify' 'hicolor-icon-theme')
-makedepends=('tcl' 'perl' 'python2' 'librsvg')
-optdepends=('enchant: for spell checking support' 'tcl: for tcl plugin'
-'python2: for python plugin')
-options=('!libtool')
-install=xchat.install
-source=(http://www.xchat.org/files/source/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
-http://xchat.org/files/icons/xchat-svg.tar.bz2
-xchat-2.8.8-libnotify07.patch
-xchat-2.8.8-link-against-libnotify.patch
-xchat-2.8.8-glib-2.31.patch)
-sha1sums=('e12305da42d1aacc26c2ca25e239f393d4dd3532'
-  '0d366346cc11e0efb57fc2648fe423c94a3469bd'
-  'a053fba4e1911d1ee6a8248fe19e344797920fe3'
-  '70c3cc29fc55ff35f701ef8ac23078b6e3761ce1'
-  'aecaf6176a7cfd62555207b02f2793b360aa39da')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -p1 -i "${srcdir}/xchat-2.8.8-libnotify07.patch"
-  patch -p1 -i "${srcdir}/xchat-2.8.8-link-against-libnotify.patch"
-  patch -p1 -i "${srcdir}/xchat-2.8.8-glib-2.31.patch"
-  autoconf
-  autoheader
-
-  LIBS+="-lgmodule-2.0" ./configure --prefix=/usr --sysconfdir=/etc 
--datadir=/usr/share \
---enable-openssl --enable-dbus --disable-textfe --enable-ipv6 --enable-shm 
--enable-spell=static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  for i in 24 32 48 64 128 256 ; do
-install -d "${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps"
-rsvg-convert -w $i -h $i -o 
"${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps/xchat.png" ../xchat-cloned.svg
-  done
-  install -D -m644 ../xchat-cloned.svg 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/xchat.svg"
-  install -D -m644 ../xchat-used.svg 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/xchat2.svg"
-}

Copied: xchat/repos/extra-i686/PKGBUILD (from rev 160459, 
xchat/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:29:11 UTC (rev 160582)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=xchat
+pkgver=2.8.8
+pkgrel=10
+pkgdesc="A GTK+ based IRC client"
+arch=('i686' 'x86_64')
+url="http://www.xchat.org/";
+license=('GPL')
+depends=('gtk2' 'openssl' 'dbus-glib' 'libnotify' 'hicolor-icon-theme')
+makedepends=('tcl' 'perl' 'python2' 'librsvg')
+optdepends=('enchant: for spell checking support' 'tcl: for tcl plugin'
+'python2: for python plugin')
+options=('!libtool')
+install=xchat.install
+source=(http://www.xchat.org/files/source/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
+http://xchat.org/files/icons/xchat-svg.tar.bz2
+xchat-2.8.8-libnotify07.patch
+xchat-2.8.8-link-against-libnotify.patch
+xchat-2.8.8-glib-2.31.patch)
+sha1sums=('e12305da42d1aacc26c2ca25e239f393d4dd3532'
+  '0d366346cc11e0efb57fc2648fe423c94a3469bd'
+  'a053fba4e1911d1ee6a8248fe19e344797920fe3'
+  '70c3cc29fc55ff35f701ef8ac23078b6e3761ce1'
+  'aecaf6176a7cfd62555207b02f2793b360aa39da')
+
+build() {
+  cd "${srcdir}/${pkg

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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:29:09
  Author: bluewind
Revision: 160581

db-move: moved weechat from [testing] to [extra] (x86_64)

Added:
  weechat/repos/extra-x86_64/PKGBUILD
(from rev 160459, weechat/repos/testing-x86_64/PKGBUILD)
Deleted:
  weechat/repos/extra-x86_64/PKGBUILD
  weechat/repos/testing-x86_64/

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:29:08 UTC (rev 160580)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:29:09 UTC (rev 160581)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=0.3.7
-pkgrel=1
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/";
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('cmake' 'pkgconfig' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
-options=('!libtool')
-source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('62bb5002b2ba9e5816dfeededc3fa276')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  mkdir build
-  cd build
-  cmake .. -DPREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/build"
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: weechat/repos/extra-x86_64/PKGBUILD (from rev 160459, 
weechat/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:29:09 UTC (rev 160581)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=0.3.7
+pkgrel=2
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/";
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('cmake' 'pkgconfig' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
+options=('!libtool')
+source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('62bb5002b2ba9e5816dfeededc3fa276')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  mkdir build
+  cd build
+  cmake .. -DPREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+
+  make DESTDIR="${pkgdir}/" install
+}



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:29:08
  Author: bluewind
Revision: 160580

db-move: moved weechat from [testing] to [extra] (i686)

Added:
  weechat/repos/extra-i686/PKGBUILD
(from rev 160459, weechat/repos/testing-i686/PKGBUILD)
Deleted:
  weechat/repos/extra-i686/PKGBUILD
  weechat/repos/testing-i686/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:29:06 UTC (rev 160579)
+++ extra-i686/PKGBUILD 2012-06-02 10:29:08 UTC (rev 160580)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=0.3.7
-pkgrel=1
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/";
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('cmake' 'pkgconfig' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
-options=('!libtool')
-source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('62bb5002b2ba9e5816dfeededc3fa276')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  mkdir build
-  cd build
-  cmake .. -DPREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/build"
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: weechat/repos/extra-i686/PKGBUILD (from rev 160459, 
weechat/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:29:08 UTC (rev 160580)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=0.3.7
+pkgrel=2
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/";
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('cmake' 'pkgconfig' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell')
+options=('!libtool')
+source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('62bb5002b2ba9e5816dfeededc3fa276')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  mkdir build
+  cd build
+  cmake .. -DPREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+
+  make DESTDIR="${pkgdir}/" install
+}



[arch-commits] Commit in vim/repos (11 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:29:06
  Author: bluewind
Revision: 160579

db-move: moved vim from [testing] to [extra] (x86_64)

Added:
  vim/repos/extra-x86_64/PKGBUILD
(from rev 160459, vim/repos/testing-x86_64/PKGBUILD)
  vim/repos/extra-x86_64/archlinux.vim
(from rev 160459, vim/repos/testing-x86_64/archlinux.vim)
  vim/repos/extra-x86_64/gvim.desktop
(from rev 160459, vim/repos/testing-x86_64/gvim.desktop)
  vim/repos/extra-x86_64/gvim.install
(from rev 160459, vim/repos/testing-x86_64/gvim.install)
  vim/repos/extra-x86_64/vimrc
(from rev 160459, vim/repos/testing-x86_64/vimrc)
Deleted:
  vim/repos/extra-x86_64/PKGBUILD
  vim/repos/extra-x86_64/archlinux.vim
  vim/repos/extra-x86_64/gvim.desktop
  vim/repos/extra-x86_64/gvim.install
  vim/repos/extra-x86_64/vimrc
  vim/repos/testing-x86_64/

---+
 PKGBUILD  |  432 
 archlinux.vim |   52 +++---
 gvim.desktop  |  126 
 gvim.install  |   22 +-
 vimrc |   32 ++--
 5 files changed, 332 insertions(+), 332 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:29:02 UTC (rev 160578)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:29:06 UTC (rev 160579)
@@ -1,216 +0,0 @@
-# $Id$
-# Contributor: Jan "heftig" Steffens 
-# Maintainer: tobias [ tobias at archlinux org ]
-# Maintainer: Daniel J Griffiths 
-
-pkgbase=vim
-pkgname=('vim' 'gvim' 'vim-runtime')
-_topver=7.3
-_patchlevel=515
-__hgrev=8201108e9cf0
-_versiondir="vim${_topver//./}"
-pkgver=${_topver}.${_patchlevel}
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('custom:vim')
-url="http://www.vim.org";
-makedepends=('gpm' 'python2' 'ruby' 'libxt' 'desktop-file-utils' 'gtk2' 'lua')
-source=("ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz";
-"ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz.sig";
-
'pythoncomplete.vim::http://www.vim.org/scripts/download_script.php?src_id=10872'
-'vimrc'
-'archlinux.vim'
-'gvim.desktop')
-sha1sums=('10d7642d5062effdb51f53952622f9338003bbbf'
-  '0c1c584c1a2a2a279507f793cd5eff82863c625b'
-  '4d9dcfb32874aa5467e6f06e418aeb4e675daaf2'
-  '3494baf53a63581ba69f86a81293640ff681c5c5'
-  '25dd3c2ce436e73a367c8f73b68f7f6889682437'
-  '4a579cf66590d711f49c5dfb4a25e5df116ff7ba')
-
-# source PKGBUILD && mksource
-mksource() {
-
-  [[ -x /usr/bin/hg ]] || (echo "hg not found. Install mercurial." && return 1)
-
-  __hgroot='http://vim.googlecode.com/hg/'
-  __hgrepo='vim'
-  __hgbranch='default'
-
-  hg clone -b ${__hgbranch} -u ${__hgrev} "${__hgroot}${__hgrepo}" ${__hgrepo}
-
-  pushd ${__hgrepo}
-  if (( $(hg id -n) < $(hg id -nr ${__hgbranch}) )); then
-printf 'You are not building the latest revision!\n'
-printf "Consider updating __hgrev to $(hg id -r ${__hgbranch}).\n"
-  fi
-  popd
-
-  mv vim ${pkgname}-${pkgver}
-  find ${pkgname}-${pkgver} -depth -type d -name .hg -exec rm -rf {} \;
-  rm ${pkgname}-${pkgver}/{.hgignore,.hgtags}
-  tar -cJf ${pkgname}-${pkgver}.tar.xz ${pkgname}-${pkgver}/*
-  rm -r ${pkgname}-${pkgver}
-  #gpg --detach-sign --use-agent -u ${GPGKEY} ${pkgname}-${pkgver}.tar.xz
-}
-
-build() {
-  # remove -O2 because there is a crash with python because of it
-  # fedora br: https://bugzilla.redhat.com/show_bug.cgi?id=817196
-  export CFLAGS="${CFLAGS/-O2 /}"
-
-  cd "${srcdir}"
-
-  cp -a ${pkgname}-${pkgver} vim-build
-
-  # define the place for the global (g)vimrc file (set to /etc/vimrc)
-  sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' \
-vim-build/src/feature.h
-  sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' \
-vim-build/src/feature.h
-  # fix python name
-  sed -i -e 's|vi_cv_path_python, python|vi_cv_path_python, python2|' \
-vim-build/src/configure.in
-  (cd vim-build/src && autoconf)
-
-  cp -a vim-build gvim-build
-
-  cd "${srcdir}"/vim-build
-
-  ./configure --prefix=/usr --localstatedir=/var/lib/vim \
---with-features=big --with-compiledby=ArchLinux \
---enable-gpm --enable-acl --with-x=no \
---disable-gui --enable-multibyte --enable-cscope \
---disable-netbeans --enable-perlinterp --disable-pythoninterp \
---disable-python3interp --disable-rubyinterp --disable-luainterp
-
-  make
-
-  cd "${srcdir}"/gvim-build
-
-  ./configure --prefix=/usr --localstatedir=/var/lib/vim \
---with-features=big --with-compiledby=ArchLinux \
---enable-gpm --enable-acl --with-x=yes \
---enable-gui=gtk2 --enable-multibyte --enable-cscope \
---enable-netbeans --enable-perlinterp --enable-pythoninterp \
---disable-python3interp --enable-rubyinterp --enable-luainterp
-
-  make
-}
-
-check() {
-  # disable tests because they seem to freeze
-
-  cd "${srcdir}"/vim-build
-
-  #make test
-
-  cd "${srcdir}"/gvim-build
-
-  #make test
-}
-
-package_vim() {
-  pkgdesc='Vi Improved, a highly configura

[arch-commits] Commit in subversion/repos (11 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:29:00
  Author: bluewind
Revision: 160577

db-move: moved subversion from [testing] to [extra] (x86_64)

Added:
  subversion/repos/extra-x86_64/PKGBUILD
(from rev 160459, subversion/repos/testing-x86_64/PKGBUILD)
  subversion/repos/extra-x86_64/subversion.rpath.fix.patch
(from rev 160459, 
subversion/repos/testing-x86_64/subversion.rpath.fix.patch)
  subversion/repos/extra-x86_64/svn
(from rev 160459, subversion/repos/testing-x86_64/svn)
  subversion/repos/extra-x86_64/svnserve
(from rev 160459, subversion/repos/testing-x86_64/svnserve)
  subversion/repos/extra-x86_64/svnserve.conf
(from rev 160459, subversion/repos/testing-x86_64/svnserve.conf)
Deleted:
  subversion/repos/extra-x86_64/PKGBUILD
  subversion/repos/extra-x86_64/subversion.rpath.fix.patch
  subversion/repos/extra-x86_64/svn
  subversion/repos/extra-x86_64/svnserve
  subversion/repos/extra-x86_64/svnserve.conf
  subversion/repos/testing-x86_64/

+
 PKGBUILD   |  158 +--
 subversion.rpath.fix.patch |   20 ++---
 svn|   22 ++---
 svnserve   |   84 +++---
 svnserve.conf  |   14 +--
 5 files changed, 149 insertions(+), 149 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:58 UTC (rev 160576)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:29:00 UTC (rev 160577)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 
-# Contributor: Paul Mattal 
-# Contributor: Jason Chu 
-
-pkgname=subversion
-pkgver=1.7.5
-pkgrel=1
-pkgdesc="A Modern Concurrent Version Control System"
-arch=('i686' 'x86_64')
-license=('APACHE')
-depends=('neon' 'apr-util' 'sqlite' 'file')
-optdepends=('libgnome-keyring' 'kdeutils-kwallet' 'bash-completion: for svn 
bash completion' \
-'python2: for some hook scripts') # 'ruby: for some hook scripts' 
'java-environment')
-makedepends=('krb5' 'apache' 'python2' 'perl' 'swig' 'java-runtime' 
'java-environment'
- 'autoconf' 'db' 'e2fsprogs' 'libgnome-keyring' 'kdelibs')
-backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
-url="http://subversion.apache.org/";
-provides=('svn')
-options=('!makeflags' '!libtool' '!emptydirs')
-source=(http://apache.mirror.rafal.ca/subversion/$pkgname-$pkgver.tar.bz2{,.asc}
-svnserve svn svnserve.conf subversion.rpath.fix.patch)
-sha1sums=('05c079762690d5ac1ccd2549742e7ef70fa45cf1'
-  'b267cba19b4f56360657a5bf5b231950e027a45a'
-  '64ba3e6ebafc08ac62f59d788f7a825fdce69573'
-  '73b36c046c09cec2093354911c89e3ba8056af6c'
-  'ad117bf3b2a838a9a678a93fd8db1a066ad46c41'
-  '3d1e28408a9abb42af2e531adc0d01ce21acfad6')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export PYTHON=/usr/bin/python2
-
-   patch -p0 -i ../subversion.rpath.fix.patch
-   sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
tools/hook-scripts/{,mailer/{,tests/}}*.py
-
-   ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr \
-   --with-zlib=/usr --with-neon=/usr --with-apxs \
-   --with-sqlite=/usr 
--with-berkeley-db=:/usr/include/:/usr/lib:db-5.3 \
-   --enable-javahl --with-gnome-keyring --with-kwallet
-
-   make external-all
-   make LT_LDFLAGS="-L$Fdestdir/usr/lib" local-all
-   make swig_pydir=/usr/lib/python2.7/site-packages/libsvn \
- swig_pydir_extra=/usr/lib/python2.7/site-packages/svn swig-py swig-pl 
javahl # swig-rb
-}
-
-#check() {
-#   cd "${srcdir}/${pkgname}-${pkgver}"
-#   export LANG=C LC_ALL=C
-#   make check check-swig-pl check-swig-py check-javahl CLEANUP=yes # 
check-swig-rb
-#}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
-   make DESTDIR="${pkgdir}" INSTALLDIRS=vendor \
- swig_pydir=/usr/lib/python2.7/site-packages/libsvn \
- swig_pydir_extra=/usr/lib/python2.7/site-packages/svn \
- install install-swig-py install-swig-pl install-javahl # install-swig-rb
-
-   install -d "${pkgdir}"/usr/share/subversion
-   cp -a tools/hook-scripts "${pkgdir}"/usr/share/subversion/
-   rm "${pkgdir}"/usr/share/subversion/hook-scripts/*.in
-
-   rm "${pkgdir}"/usr/lib/perl5/vendor_perl/auto/SVN/_Core/.packlist
-   rm -r "${pkgdir}"/usr/lib/perl5/core_perl
-
-   install -D -m 755 "${srcdir}"/svnserve "${pkgdir}"/etc/rc.d/svnserve
-   install -D -m 644 "${srcdir}"/svn "${pkgdir}"/etc/xinetd.d/svn
-   install -D -m 644 "${srcdir}"/svnserve.conf "${pkgdir}"/etc/conf.d/svnserve
-
-   install -Dm 644 tools/client-side/bash_completion \
- "${pkgdir}"/usr/share/bash-completion/completions/subversion
-   for i in svn svnadmin svndumpfilter svnlook svnsync svnversion; do
-  ln -sf subversion "${pkgdir}"/usr/share/bash-completion/completions/${i}
-   done
-}

Copied: subversion/repos/extra-x86_64/P

[arch-commits] Commit in vim/repos (11 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:29:02
  Author: bluewind
Revision: 160578

db-move: moved vim from [testing] to [extra] (i686)

Added:
  vim/repos/extra-i686/PKGBUILD
(from rev 160459, vim/repos/testing-i686/PKGBUILD)
  vim/repos/extra-i686/archlinux.vim
(from rev 160459, vim/repos/testing-i686/archlinux.vim)
  vim/repos/extra-i686/gvim.desktop
(from rev 160459, vim/repos/testing-i686/gvim.desktop)
  vim/repos/extra-i686/gvim.install
(from rev 160459, vim/repos/testing-i686/gvim.install)
  vim/repos/extra-i686/vimrc
(from rev 160459, vim/repos/testing-i686/vimrc)
Deleted:
  vim/repos/extra-i686/PKGBUILD
  vim/repos/extra-i686/archlinux.vim
  vim/repos/extra-i686/gvim.desktop
  vim/repos/extra-i686/gvim.install
  vim/repos/extra-i686/vimrc
  vim/repos/testing-i686/

---+
 PKGBUILD  |  432 
 archlinux.vim |   52 +++---
 gvim.desktop  |  126 
 gvim.install  |   22 +-
 vimrc |   32 ++--
 5 files changed, 332 insertions(+), 332 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:29:00 UTC (rev 160577)
+++ extra-i686/PKGBUILD 2012-06-02 10:29:02 UTC (rev 160578)
@@ -1,216 +0,0 @@
-# $Id$
-# Contributor: Jan "heftig" Steffens 
-# Maintainer: tobias [ tobias at archlinux org ]
-# Maintainer: Daniel J Griffiths 
-
-pkgbase=vim
-pkgname=('vim' 'gvim' 'vim-runtime')
-_topver=7.3
-_patchlevel=515
-__hgrev=8201108e9cf0
-_versiondir="vim${_topver//./}"
-pkgver=${_topver}.${_patchlevel}
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('custom:vim')
-url="http://www.vim.org";
-makedepends=('gpm' 'python2' 'ruby' 'libxt' 'desktop-file-utils' 'gtk2' 'lua')
-source=("ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz";
-"ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz.sig";
-
'pythoncomplete.vim::http://www.vim.org/scripts/download_script.php?src_id=10872'
-'vimrc'
-'archlinux.vim'
-'gvim.desktop')
-sha1sums=('10d7642d5062effdb51f53952622f9338003bbbf'
-  '0c1c584c1a2a2a279507f793cd5eff82863c625b'
-  '4d9dcfb32874aa5467e6f06e418aeb4e675daaf2'
-  '3494baf53a63581ba69f86a81293640ff681c5c5'
-  '25dd3c2ce436e73a367c8f73b68f7f6889682437'
-  '4a579cf66590d711f49c5dfb4a25e5df116ff7ba')
-
-# source PKGBUILD && mksource
-mksource() {
-
-  [[ -x /usr/bin/hg ]] || (echo "hg not found. Install mercurial." && return 1)
-
-  __hgroot='http://vim.googlecode.com/hg/'
-  __hgrepo='vim'
-  __hgbranch='default'
-
-  hg clone -b ${__hgbranch} -u ${__hgrev} "${__hgroot}${__hgrepo}" ${__hgrepo}
-
-  pushd ${__hgrepo}
-  if (( $(hg id -n) < $(hg id -nr ${__hgbranch}) )); then
-printf 'You are not building the latest revision!\n'
-printf "Consider updating __hgrev to $(hg id -r ${__hgbranch}).\n"
-  fi
-  popd
-
-  mv vim ${pkgname}-${pkgver}
-  find ${pkgname}-${pkgver} -depth -type d -name .hg -exec rm -rf {} \;
-  rm ${pkgname}-${pkgver}/{.hgignore,.hgtags}
-  tar -cJf ${pkgname}-${pkgver}.tar.xz ${pkgname}-${pkgver}/*
-  rm -r ${pkgname}-${pkgver}
-  #gpg --detach-sign --use-agent -u ${GPGKEY} ${pkgname}-${pkgver}.tar.xz
-}
-
-build() {
-  # remove -O2 because there is a crash with python because of it
-  # fedora br: https://bugzilla.redhat.com/show_bug.cgi?id=817196
-  export CFLAGS="${CFLAGS/-O2 /}"
-
-  cd "${srcdir}"
-
-  cp -a ${pkgname}-${pkgver} vim-build
-
-  # define the place for the global (g)vimrc file (set to /etc/vimrc)
-  sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' \
-vim-build/src/feature.h
-  sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' \
-vim-build/src/feature.h
-  # fix python name
-  sed -i -e 's|vi_cv_path_python, python|vi_cv_path_python, python2|' \
-vim-build/src/configure.in
-  (cd vim-build/src && autoconf)
-
-  cp -a vim-build gvim-build
-
-  cd "${srcdir}"/vim-build
-
-  ./configure --prefix=/usr --localstatedir=/var/lib/vim \
---with-features=big --with-compiledby=ArchLinux \
---enable-gpm --enable-acl --with-x=no \
---disable-gui --enable-multibyte --enable-cscope \
---disable-netbeans --enable-perlinterp --disable-pythoninterp \
---disable-python3interp --disable-rubyinterp --disable-luainterp
-
-  make
-
-  cd "${srcdir}"/gvim-build
-
-  ./configure --prefix=/usr --localstatedir=/var/lib/vim \
---with-features=big --with-compiledby=ArchLinux \
---enable-gpm --enable-acl --with-x=yes \
---enable-gui=gtk2 --enable-multibyte --enable-cscope \
---enable-netbeans --enable-perlinterp --enable-pythoninterp \
---disable-python3interp --enable-rubyinterp --enable-luainterp
-
-  make
-}
-
-check() {
-  # disable tests because they seem to freeze
-
-  cd "${srcdir}"/vim-build
-
-  #make test
-
-  cd "${srcdir}"/gvim-build
-
-  #make test
-}
-
-package_vim() {
-  pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
-  dep

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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:55
  Author: bluewind
Revision: 160575

db-move: moved rrdtool from [testing] to [extra] (x86_64)

Added:
  rrdtool/repos/extra-x86_64/PKGBUILD
(from rev 160459, rrdtool/repos/testing-x86_64/PKGBUILD)
Deleted:
  rrdtool/repos/extra-x86_64/PKGBUILD
  rrdtool/repos/testing-x86_64/

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:54 UTC (rev 160574)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:55 UTC (rev 160575)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=rrdtool
-pkgver=1.4.7
-pkgrel=1
-pkgdesc="Data logging and graphing application"
-arch=('i686' 'x86_64')
-url="http://www.rrdtool.org";
-license=('GPL' 'custom')
-depends=('libxml2' 'pango' 'ttf-dejavu')
-makedepends=('intltool' 'ruby' 'python2' 'tcl' 'lua')
-optdepends=('tcl: to use corresponding binding' \
-'python2: to use corresponding binding' \
-'ruby: to use corresponding binding' \
-'lua: to use corresponding binding')
-options=('!libtool' '!emptydirs' '!makeflags')
-source=(http://oss.oetiker.ch/rrdtool/pub/rrdtool-${pkgver}.tar.gz)
-sha1sums=('faab7df7696b69f85d6f89dd9708d7cf0c9a273b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # fix FS#28521 make ruby install to vendor_ruby instead of site_ruby
-  sed -e 's/$(RUBY) extconf.rb/& --vendor/' -i bindings/Makefile.in
-
-  PYTHON=python2 ./configure --prefix=/usr --localstatedir=/var 
--disable-rpath \
---enable-perl --enable-perl-site-install 
--with-perl-options='INSTALLDIRS=vendor' \
---enable-ruby --enable-ruby-site-install --enable-python \
---enable-lua --enable-lua-site-install --enable-tcl --disable-libwrap
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: rrdtool/repos/extra-x86_64/PKGBUILD (from rev 160459, 
rrdtool/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:55 UTC (rev 160575)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=rrdtool
+pkgver=1.4.7
+pkgrel=2
+pkgdesc="Data logging and graphing application"
+arch=('i686' 'x86_64')
+url="http://www.rrdtool.org";
+license=('GPL' 'custom')
+depends=('libxml2' 'pango' 'ttf-dejavu')
+makedepends=('intltool' 'ruby' 'python2' 'tcl' 'lua')
+optdepends=('tcl: to use corresponding binding' \
+'python2: to use corresponding binding' \
+'ruby: to use corresponding binding' \
+'lua: to use corresponding binding')
+options=('!libtool' '!emptydirs' '!makeflags')
+source=(http://oss.oetiker.ch/rrdtool/pub/rrdtool-${pkgver}.tar.gz)
+sha1sums=('faab7df7696b69f85d6f89dd9708d7cf0c9a273b')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # fix FS#28521 make ruby install to vendor_ruby instead of site_ruby
+  sed -e 's/$(RUBY) extconf.rb/& --vendor/' -i bindings/Makefile.in
+
+  PYTHON=python2 ./configure --prefix=/usr --localstatedir=/var 
--disable-rpath \
+--enable-perl --enable-perl-site-install 
--with-perl-options='INSTALLDIRS=vendor' \
+--enable-ruby --enable-ruby-site-install --enable-python \
+--enable-lua --enable-lua-site-install --enable-tcl --disable-libwrap
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



[arch-commits] Commit in subversion/repos (11 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:58
  Author: bluewind
Revision: 160576

db-move: moved subversion from [testing] to [extra] (i686)

Added:
  subversion/repos/extra-i686/PKGBUILD
(from rev 160459, subversion/repos/testing-i686/PKGBUILD)
  subversion/repos/extra-i686/subversion.rpath.fix.patch
(from rev 160459, subversion/repos/testing-i686/subversion.rpath.fix.patch)
  subversion/repos/extra-i686/svn
(from rev 160459, subversion/repos/testing-i686/svn)
  subversion/repos/extra-i686/svnserve
(from rev 160459, subversion/repos/testing-i686/svnserve)
  subversion/repos/extra-i686/svnserve.conf
(from rev 160459, subversion/repos/testing-i686/svnserve.conf)
Deleted:
  subversion/repos/extra-i686/PKGBUILD
  subversion/repos/extra-i686/subversion.rpath.fix.patch
  subversion/repos/extra-i686/svn
  subversion/repos/extra-i686/svnserve
  subversion/repos/extra-i686/svnserve.conf
  subversion/repos/testing-i686/

+
 PKGBUILD   |  158 +--
 subversion.rpath.fix.patch |   20 ++---
 svn|   22 ++---
 svnserve   |   84 +++---
 svnserve.conf  |   14 +--
 5 files changed, 149 insertions(+), 149 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:55 UTC (rev 160575)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:58 UTC (rev 160576)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 
-# Contributor: Paul Mattal 
-# Contributor: Jason Chu 
-
-pkgname=subversion
-pkgver=1.7.5
-pkgrel=1
-pkgdesc="A Modern Concurrent Version Control System"
-arch=('i686' 'x86_64')
-license=('APACHE')
-depends=('neon' 'apr-util' 'sqlite' 'file')
-optdepends=('libgnome-keyring' 'kdeutils-kwallet' 'bash-completion: for svn 
bash completion' \
-'python2: for some hook scripts') # 'ruby: for some hook scripts' 
'java-environment')
-makedepends=('krb5' 'apache' 'python2' 'perl' 'swig' 'java-runtime' 
'java-environment'
- 'autoconf' 'db' 'e2fsprogs' 'libgnome-keyring' 'kdelibs')
-backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
-url="http://subversion.apache.org/";
-provides=('svn')
-options=('!makeflags' '!libtool' '!emptydirs')
-source=(http://apache.mirror.rafal.ca/subversion/$pkgname-$pkgver.tar.bz2{,.asc}
-svnserve svn svnserve.conf subversion.rpath.fix.patch)
-sha1sums=('05c079762690d5ac1ccd2549742e7ef70fa45cf1'
-  'b267cba19b4f56360657a5bf5b231950e027a45a'
-  '64ba3e6ebafc08ac62f59d788f7a825fdce69573'
-  '73b36c046c09cec2093354911c89e3ba8056af6c'
-  'ad117bf3b2a838a9a678a93fd8db1a066ad46c41'
-  '3d1e28408a9abb42af2e531adc0d01ce21acfad6')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export PYTHON=/usr/bin/python2
-
-   patch -p0 -i ../subversion.rpath.fix.patch
-   sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
tools/hook-scripts/{,mailer/{,tests/}}*.py
-
-   ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr \
-   --with-zlib=/usr --with-neon=/usr --with-apxs \
-   --with-sqlite=/usr 
--with-berkeley-db=:/usr/include/:/usr/lib:db-5.3 \
-   --enable-javahl --with-gnome-keyring --with-kwallet
-
-   make external-all
-   make LT_LDFLAGS="-L$Fdestdir/usr/lib" local-all
-   make swig_pydir=/usr/lib/python2.7/site-packages/libsvn \
- swig_pydir_extra=/usr/lib/python2.7/site-packages/svn swig-py swig-pl 
javahl # swig-rb
-}
-
-#check() {
-#   cd "${srcdir}/${pkgname}-${pkgver}"
-#   export LANG=C LC_ALL=C
-#   make check check-swig-pl check-swig-py check-javahl CLEANUP=yes # 
check-swig-rb
-#}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
-   make DESTDIR="${pkgdir}" INSTALLDIRS=vendor \
- swig_pydir=/usr/lib/python2.7/site-packages/libsvn \
- swig_pydir_extra=/usr/lib/python2.7/site-packages/svn \
- install install-swig-py install-swig-pl install-javahl # install-swig-rb
-
-   install -d "${pkgdir}"/usr/share/subversion
-   cp -a tools/hook-scripts "${pkgdir}"/usr/share/subversion/
-   rm "${pkgdir}"/usr/share/subversion/hook-scripts/*.in
-
-   rm "${pkgdir}"/usr/lib/perl5/vendor_perl/auto/SVN/_Core/.packlist
-   rm -r "${pkgdir}"/usr/lib/perl5/core_perl
-
-   install -D -m 755 "${srcdir}"/svnserve "${pkgdir}"/etc/rc.d/svnserve
-   install -D -m 644 "${srcdir}"/svn "${pkgdir}"/etc/xinetd.d/svn
-   install -D -m 644 "${srcdir}"/svnserve.conf "${pkgdir}"/etc/conf.d/svnserve
-
-   install -Dm 644 tools/client-side/bash_completion \
- "${pkgdir}"/usr/share/bash-completion/completions/subversion
-   for i in svn svnadmin svndumpfilter svnlook svnsync svnversion; do
-  ln -sf subversion "${pkgdir}"/usr/share/bash-completion/completions/${i}
-   done
-}

Copied: subversion/repos/extra-i686/PKGBUILD (from rev 160459, 
subversion/repos/testing-i68

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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:54
  Author: bluewind
Revision: 160574

db-move: moved rrdtool from [testing] to [extra] (i686)

Added:
  rrdtool/repos/extra-i686/PKGBUILD
(from rev 160459, rrdtool/repos/testing-i686/PKGBUILD)
Deleted:
  rrdtool/repos/extra-i686/PKGBUILD
  rrdtool/repos/testing-i686/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:53 UTC (rev 160573)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:54 UTC (rev 160574)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=rrdtool
-pkgver=1.4.7
-pkgrel=1
-pkgdesc="Data logging and graphing application"
-arch=('i686' 'x86_64')
-url="http://www.rrdtool.org";
-license=('GPL' 'custom')
-depends=('libxml2' 'pango' 'ttf-dejavu')
-makedepends=('intltool' 'ruby' 'python2' 'tcl' 'lua')
-optdepends=('tcl: to use corresponding binding' \
-'python2: to use corresponding binding' \
-'ruby: to use corresponding binding' \
-'lua: to use corresponding binding')
-options=('!libtool' '!emptydirs' '!makeflags')
-source=(http://oss.oetiker.ch/rrdtool/pub/rrdtool-${pkgver}.tar.gz)
-sha1sums=('faab7df7696b69f85d6f89dd9708d7cf0c9a273b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # fix FS#28521 make ruby install to vendor_ruby instead of site_ruby
-  sed -e 's/$(RUBY) extconf.rb/& --vendor/' -i bindings/Makefile.in
-
-  PYTHON=python2 ./configure --prefix=/usr --localstatedir=/var 
--disable-rpath \
---enable-perl --enable-perl-site-install 
--with-perl-options='INSTALLDIRS=vendor' \
---enable-ruby --enable-ruby-site-install --enable-python \
---enable-lua --enable-lua-site-install --enable-tcl --disable-libwrap
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: rrdtool/repos/extra-i686/PKGBUILD (from rev 160459, 
rrdtool/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:54 UTC (rev 160574)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=rrdtool
+pkgver=1.4.7
+pkgrel=2
+pkgdesc="Data logging and graphing application"
+arch=('i686' 'x86_64')
+url="http://www.rrdtool.org";
+license=('GPL' 'custom')
+depends=('libxml2' 'pango' 'ttf-dejavu')
+makedepends=('intltool' 'ruby' 'python2' 'tcl' 'lua')
+optdepends=('tcl: to use corresponding binding' \
+'python2: to use corresponding binding' \
+'ruby: to use corresponding binding' \
+'lua: to use corresponding binding')
+options=('!libtool' '!emptydirs' '!makeflags')
+source=(http://oss.oetiker.ch/rrdtool/pub/rrdtool-${pkgver}.tar.gz)
+sha1sums=('faab7df7696b69f85d6f89dd9708d7cf0c9a273b')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # fix FS#28521 make ruby install to vendor_ruby instead of site_ruby
+  sed -e 's/$(RUBY) extconf.rb/& --vendor/' -i bindings/Makefile.in
+
+  PYTHON=python2 ./configure --prefix=/usr --localstatedir=/var 
--disable-rpath \
+--enable-perl --enable-perl-site-install 
--with-perl-options='INSTALLDIRS=vendor' \
+--enable-ruby --enable-ruby-site-install --enable-python \
+--enable-lua --enable-lua-site-install --enable-tcl --disable-libwrap
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:53
  Author: bluewind
Revision: 160573

db-move: moved razor from [testing] to [extra] (x86_64)

Added:
  razor/repos/extra-x86_64/PKGBUILD
(from rev 160459, razor/repos/testing-x86_64/PKGBUILD)
Deleted:
  razor/repos/extra-x86_64/PKGBUILD
  razor/repos/testing-x86_64/

--+
 PKGBUILD |   86 +
 1 file changed, 41 insertions(+), 45 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:52 UTC (rev 160572)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:53 UTC (rev 160573)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Dale Blount 
-# Contributor: Manolis Tzanidakis
-
-pkgname=razor
-pkgver=2.84
-pkgrel=6
-pkgdesc="A distributed, collaborative, spam detection and filtering network"
-arch=('i686' 'x86_64')
-url="http://razor.sourceforge.net";
-license=('PerlArtistic')
-depends=('perl-net-dns' 'perl-digest-sha1' 'perl-uri' 'perl-digest-nilsimsa' 
'perl>=5.14.0')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-agents-${pkgver}.tar.bz2";)
-md5sums=('8b9a11a6ce020383c32c45d1530d77c2')
-options=('!emptydirs')
-
-build() {
-  cd "${srcdir}"/${pkgname}-agents-${pkgver}
-
-  # skip install_razor_agents (we'll do the linking later)
-  # /bin/sed -i "s|install :: all pure_install doc_install 
install_razor_agents|install :: all pure_install doc_install|g" Makefile
-
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}"/${pkgname}-agents-${pkgver}
-  make test
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-agents-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-
-  # cd ${pkgdir}/usr/bin
-  # for i in razor-check razor-report razor-revoke razor-admin; do 
-  #  /bin/ln -sf razor-client $i; 
-  # done
-}

Copied: razor/repos/extra-x86_64/PKGBUILD (from rev 160459, 
razor/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:53 UTC (rev 160573)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer:
+# Contributor: Dale Blount 
+# Contributor: Manolis Tzanidakis
+
+pkgname=razor
+pkgver=2.84
+pkgrel=7
+pkgdesc="A distributed, collaborative, spam detection and filtering network"
+arch=('i686' 'x86_64')
+url="http://razor.sourceforge.net";
+license=('PerlArtistic')
+depends=('perl-net-dns' 'perl-digest-sha1' 'perl-uri' 'perl-digest-nilsimsa' 
'perl')
+options=('!emptydirs')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-agents-${pkgver}.tar.bz2";)
+md5sums=('8b9a11a6ce020383c32c45d1530d77c2')
+
+build() {
+  cd "${srcdir}"/${pkgname}-agents-${pkgver}
+
+  # skip install_razor_agents (we'll do the linking later)
+  # /bin/sed -i "s|install :: all pure_install doc_install 
install_razor_agents|install :: all pure_install doc_install|g" Makefile
+
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}"/${pkgname}-agents-${pkgver}
+  make test
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-agents-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # cd ${pkgdir}/usr/bin
+  # for i in razor-check razor-report razor-revoke razor-admin; do 
+  #  /bin/ln -sf razor-client $i; 
+  # done
+}



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:52
  Author: bluewind
Revision: 160572

db-move: moved razor from [testing] to [extra] (i686)

Added:
  razor/repos/extra-i686/PKGBUILD
(from rev 160459, razor/repos/testing-i686/PKGBUILD)
Deleted:
  razor/repos/extra-i686/PKGBUILD
  razor/repos/testing-i686/

--+
 PKGBUILD |   86 +
 1 file changed, 41 insertions(+), 45 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:50 UTC (rev 160571)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:52 UTC (rev 160572)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Dale Blount 
-# Contributor: Manolis Tzanidakis
-
-pkgname=razor
-pkgver=2.84
-pkgrel=6
-pkgdesc="A distributed, collaborative, spam detection and filtering network"
-arch=('i686' 'x86_64')
-url="http://razor.sourceforge.net";
-license=('PerlArtistic')
-depends=('perl-net-dns' 'perl-digest-sha1' 'perl-uri' 'perl-digest-nilsimsa' 
'perl>=5.14.0')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-agents-${pkgver}.tar.bz2";)
-md5sums=('8b9a11a6ce020383c32c45d1530d77c2')
-options=('!emptydirs')
-
-build() {
-  cd "${srcdir}"/${pkgname}-agents-${pkgver}
-
-  # skip install_razor_agents (we'll do the linking later)
-  # /bin/sed -i "s|install :: all pure_install doc_install 
install_razor_agents|install :: all pure_install doc_install|g" Makefile
-
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}"/${pkgname}-agents-${pkgver}
-  make test
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-agents-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-
-  # cd ${pkgdir}/usr/bin
-  # for i in razor-check razor-report razor-revoke razor-admin; do 
-  #  /bin/ln -sf razor-client $i; 
-  # done
-}

Copied: razor/repos/extra-i686/PKGBUILD (from rev 160459, 
razor/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:52 UTC (rev 160572)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer:
+# Contributor: Dale Blount 
+# Contributor: Manolis Tzanidakis
+
+pkgname=razor
+pkgver=2.84
+pkgrel=7
+pkgdesc="A distributed, collaborative, spam detection and filtering network"
+arch=('i686' 'x86_64')
+url="http://razor.sourceforge.net";
+license=('PerlArtistic')
+depends=('perl-net-dns' 'perl-digest-sha1' 'perl-uri' 'perl-digest-nilsimsa' 
'perl')
+options=('!emptydirs')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-agents-${pkgver}.tar.bz2";)
+md5sums=('8b9a11a6ce020383c32c45d1530d77c2')
+
+build() {
+  cd "${srcdir}"/${pkgname}-agents-${pkgver}
+
+  # skip install_razor_agents (we'll do the linking later)
+  # /bin/sed -i "s|install :: all pure_install doc_install 
install_razor_agents|install :: all pure_install doc_install|g" Makefile
+
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}"/${pkgname}-agents-${pkgver}
+  make test
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-agents-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # cd ${pkgdir}/usr/bin
+  # for i in razor-check razor-report razor-revoke razor-admin; do 
+  #  /bin/ln -sf razor-client $i; 
+  # done
+}



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:50
  Author: bluewind
Revision: 160571

db-move: moved postgresql from [testing] to [extra] (x86_64)

Added:
  postgresql/repos/extra-x86_64/PKGBUILD
(from rev 160459, postgresql/repos/testing-x86_64/PKGBUILD)
  postgresql/repos/extra-x86_64/postgresql.confd
(from rev 160459, postgresql/repos/testing-x86_64/postgresql.confd)
  postgresql/repos/extra-x86_64/postgresql.install
(from rev 160459, postgresql/repos/testing-x86_64/postgresql.install)
  postgresql/repos/extra-x86_64/postgresql.logrotate
(from rev 160459, postgresql/repos/testing-x86_64/postgresql.logrotate)
  postgresql/repos/extra-x86_64/postgresql.pam
(from rev 160459, postgresql/repos/testing-x86_64/postgresql.pam)
  postgresql/repos/extra-x86_64/postgresql.rcd
(from rev 160459, postgresql/repos/testing-x86_64/postgresql.rcd)
Deleted:
  postgresql/repos/extra-x86_64/PKGBUILD
  postgresql/repos/extra-x86_64/postgresql.confd
  postgresql/repos/extra-x86_64/postgresql.install
  postgresql/repos/extra-x86_64/postgresql.logrotate
  postgresql/repos/extra-x86_64/postgresql.pam
  postgresql/repos/extra-x86_64/postgresql.rcd
  postgresql/repos/testing-x86_64/

--+
 PKGBUILD |  301 +++--
 postgresql.confd |   22 +--
 postgresql.install   |   52 
 postgresql.logrotate |8 -
 postgresql.pam   |6 
 postgresql.rcd   |  158 -
 6 files changed, 269 insertions(+), 278 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:48 UTC (rev 160570)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:50 UTC (rev 160571)
@@ -1,155 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgbase=postgresql
-pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql')
-pkgver=9.1.3
-_majorver=${pkgver%.*}
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.postgresql.org/";
-license=('custom:PostgreSQL')
-makedepends=('libxml2' 'python2' 'perl' 'tcl' 'openssl>=1.0.0')
-source=(ftp://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2
-postgresql.rcd postgresql.confd postgresql.pam postgresql.logrotate)
-
-build() {
-  cd "${srcdir}/postgresql-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --datadir=/usr/share/postgresql \
-  --with-libxml \
-  --with-openssl \
-  --with-perl \
-  --with-python PYTHON=/usr/bin/python2 \
-  --with-tcl \
-  --with-pam \
-  --with-system-tzdata=/usr/share/zoneinfo \
-  --enable-nls \
-  --enable-thread-safety
-
-  make world
-}
-
-package_postgresql-libs() {
-  pkgdesc="Libraries for use with PostgreSQL"
-  depends=('openssl>=1.0.0' 'readline>=6.0')
-  provides=('postgresql-client')
-  conflicts=('postgresql-client')
-
-  cd "${srcdir}/postgresql-${pkgver}"
-
-  # install license
-  install -D -m644 COPYRIGHT 
"${pkgdir}/usr/share/licenses/postgresql-libs/LICENSE"
-
-  # install libs
-  for dir in src/interfaces src/bin/pg_config src/bin/psql; do
-make -C ${dir} DESTDIR="${pkgdir}" install
-  done
-
-  install -D -m644 doc/src/sgml/man1/pg_config.1 
"${pkgdir}/usr/share/man/man1/pg_config.1"
-  install -D -m644 doc/src/sgml/man1/psql.1 
"${pkgdir}/usr/share/man/man1/psql.1"
-
-  cd src/include
-
-  mkdir -p "${pkgdir}"/usr/include/{libpq,postgresql/internal/libpq}
-
-  # these headers are needed by the public headers of the interfaces
-  install -m644 pg_config.h "${pkgdir}/usr/include/"
-  install -m644 pg_config_os.h "${pkgdir}/usr/include/"
-  install -m644 postgres_ext.h "${pkgdir}/usr/include/"
-  install -m644 libpq/libpq-fs.h "${pkgdir}/usr/include/libpq/"
-  install -m644 pg_config_manual.h "${pkgdir}/usr/include/"
-
-  # these headers are needed by the not-so-public headers of the interfaces
-  install -m644 c.h "${pkgdir}/usr/include/postgresql/internal/"
-  install -m644 port.h "${pkgdir}/usr/include/postgresql/internal/"
-  install -m644 postgres_fe.h "${pkgdir}/usr/include/postgresql/internal/"
-  install -m644 libpq/pqcomm.h 
"${pkgdir}/usr/include/postgresql/internal/libpq/"
-}
-
-package_postgresql-docs() {
-  pkgdesc="HTML documentation for PostgreSQL"
-  options=(docs)
-
-  cd "${srcdir}/postgresql-${pkgver}"
-
-  # install license
-  install -D -m644 COPYRIGHT 
"${pkgdir}/usr/share/licenses/postgresql-docs/LICENSE"
-
-  make -C doc/src/sgml DESTDIR="${pkgdir}" install-html
-  chown -R root:root "${pkgdir}/usr/share/doc/postgresql/html/"
-
-  # clean up
-  rmdir "${pkgdir}"/usr/share/man/man{1,3,7}
-  rmdir "${pkgdir}"/usr/share/man
-}
-
-package_postgresql() {
-  pkgdesc="A sophisticated object-relational DBMS"
-  backup=('etc/conf.d/postgresql' 'etc/pam.d/postgresql' 
'etc/logrotate.d/postgresql')
-  depends=("postgresql-libs>=${pkgver}" 'libxml2' 'readline>=6.0' 
'openssl>=1.0.0')
-  optdepends=('python2: for PL/Python support'
-  'perl: for PL/Perl support'
-  't

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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:48
  Author: bluewind
Revision: 160570

db-move: moved postgresql from [testing] to [extra] (i686)

Added:
  postgresql/repos/extra-i686/PKGBUILD
(from rev 160459, postgresql/repos/testing-i686/PKGBUILD)
  postgresql/repos/extra-i686/postgresql.confd
(from rev 160459, postgresql/repos/testing-i686/postgresql.confd)
  postgresql/repos/extra-i686/postgresql.install
(from rev 160459, postgresql/repos/testing-i686/postgresql.install)
  postgresql/repos/extra-i686/postgresql.logrotate
(from rev 160459, postgresql/repos/testing-i686/postgresql.logrotate)
  postgresql/repos/extra-i686/postgresql.pam
(from rev 160459, postgresql/repos/testing-i686/postgresql.pam)
  postgresql/repos/extra-i686/postgresql.rcd
(from rev 160459, postgresql/repos/testing-i686/postgresql.rcd)
Deleted:
  postgresql/repos/extra-i686/PKGBUILD
  postgresql/repos/extra-i686/postgresql.confd
  postgresql/repos/extra-i686/postgresql.install
  postgresql/repos/extra-i686/postgresql.logrotate
  postgresql/repos/extra-i686/postgresql.pam
  postgresql/repos/extra-i686/postgresql.rcd
  postgresql/repos/testing-i686/

--+
 PKGBUILD |  301 +++--
 postgresql.confd |   22 +--
 postgresql.install   |   52 
 postgresql.logrotate |8 -
 postgresql.pam   |6 
 postgresql.rcd   |  158 -
 6 files changed, 269 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:46 UTC (rev 160569)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:48 UTC (rev 160570)
@@ -1,155 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgbase=postgresql
-pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql')
-pkgver=9.1.3
-_majorver=${pkgver%.*}
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.postgresql.org/";
-license=('custom:PostgreSQL')
-makedepends=('libxml2' 'python2' 'perl' 'tcl' 'openssl>=1.0.0')
-source=(ftp://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2
-postgresql.rcd postgresql.confd postgresql.pam postgresql.logrotate)
-
-build() {
-  cd "${srcdir}/postgresql-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --datadir=/usr/share/postgresql \
-  --with-libxml \
-  --with-openssl \
-  --with-perl \
-  --with-python PYTHON=/usr/bin/python2 \
-  --with-tcl \
-  --with-pam \
-  --with-system-tzdata=/usr/share/zoneinfo \
-  --enable-nls \
-  --enable-thread-safety
-
-  make world
-}
-
-package_postgresql-libs() {
-  pkgdesc="Libraries for use with PostgreSQL"
-  depends=('openssl>=1.0.0' 'readline>=6.0')
-  provides=('postgresql-client')
-  conflicts=('postgresql-client')
-
-  cd "${srcdir}/postgresql-${pkgver}"
-
-  # install license
-  install -D -m644 COPYRIGHT 
"${pkgdir}/usr/share/licenses/postgresql-libs/LICENSE"
-
-  # install libs
-  for dir in src/interfaces src/bin/pg_config src/bin/psql; do
-make -C ${dir} DESTDIR="${pkgdir}" install
-  done
-
-  install -D -m644 doc/src/sgml/man1/pg_config.1 
"${pkgdir}/usr/share/man/man1/pg_config.1"
-  install -D -m644 doc/src/sgml/man1/psql.1 
"${pkgdir}/usr/share/man/man1/psql.1"
-
-  cd src/include
-
-  mkdir -p "${pkgdir}"/usr/include/{libpq,postgresql/internal/libpq}
-
-  # these headers are needed by the public headers of the interfaces
-  install -m644 pg_config.h "${pkgdir}/usr/include/"
-  install -m644 pg_config_os.h "${pkgdir}/usr/include/"
-  install -m644 postgres_ext.h "${pkgdir}/usr/include/"
-  install -m644 libpq/libpq-fs.h "${pkgdir}/usr/include/libpq/"
-  install -m644 pg_config_manual.h "${pkgdir}/usr/include/"
-
-  # these headers are needed by the not-so-public headers of the interfaces
-  install -m644 c.h "${pkgdir}/usr/include/postgresql/internal/"
-  install -m644 port.h "${pkgdir}/usr/include/postgresql/internal/"
-  install -m644 postgres_fe.h "${pkgdir}/usr/include/postgresql/internal/"
-  install -m644 libpq/pqcomm.h 
"${pkgdir}/usr/include/postgresql/internal/libpq/"
-}
-
-package_postgresql-docs() {
-  pkgdesc="HTML documentation for PostgreSQL"
-  options=(docs)
-
-  cd "${srcdir}/postgresql-${pkgver}"
-
-  # install license
-  install -D -m644 COPYRIGHT 
"${pkgdir}/usr/share/licenses/postgresql-docs/LICENSE"
-
-  make -C doc/src/sgml DESTDIR="${pkgdir}" install-html
-  chown -R root:root "${pkgdir}/usr/share/doc/postgresql/html/"
-
-  # clean up
-  rmdir "${pkgdir}"/usr/share/man/man{1,3,7}
-  rmdir "${pkgdir}"/usr/share/man
-}
-
-package_postgresql() {
-  pkgdesc="A sophisticated object-relational DBMS"
-  backup=('etc/conf.d/postgresql' 'etc/pam.d/postgresql' 
'etc/logrotate.d/postgresql')
-  depends=("postgresql-libs>=${pkgver}" 'libxml2' 'readline>=6.0' 
'openssl>=1.0.0')
-  optdepends=('python2: for PL/Python support'
-  'perl: for PL/Perl support'
-  'tcl: for PL/Tcl support'
-  'postgresql-old-upg

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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:46
  Author: bluewind
Revision: 160569

db-move: moved pidgin from [testing] to [extra] (x86_64)

Added:
  pidgin/repos/extra-x86_64/PKGBUILD
(from rev 160459, pidgin/repos/testing-x86_64/PKGBUILD)
  pidgin/repos/extra-x86_64/pidgin.install
(from rev 160459, pidgin/repos/testing-x86_64/pidgin.install)
Deleted:
  pidgin/repos/extra-x86_64/PKGBUILD
  pidgin/repos/extra-x86_64/pidgin.install
  pidgin/repos/testing-x86_64/

+
 PKGBUILD   |  200 +++
 pidgin.install |   22 +++---
 2 files changed, 111 insertions(+), 111 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:43 UTC (rev 160568)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:46 UTC (rev 160569)
@@ -1,100 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Ionut Biru 
-# Contributor: Andrea Scarpino 
-# Contributor: Alexander Fehr 
-# Contributor: Lucien Immink 
-
-pkgname=('pidgin' 'libpurple' 'finch')
-pkgver=2.10.4
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://pidgin.im/";
-license=('GPL')
-makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
- 'libidn' 'python2' 'hicolor-icon-theme' 'gstreamer0.10'
- 'farstream' 'avahi' 'tk' 'ca-certificates' 'intltool'
- 'networkmanager')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('8fbef835c8dfa2281532ad7064d664477d72015d6dcd4345362dcfe658aaee0e')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # Use Python 2
-  sed -i 's/env python$/&2/' */plugins/*.py \
-libpurple/purple-{remote,notifications-example,url-handler}
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---disable-schemas-install \
---disable-meanwhile \
---disable-gnutls \
---enable-cyrus-sasl \
---disable-doxygen \
---enable-nm \
---with-python=/usr/bin/python2 \
---with-system-ssl-certs=/etc/ssl/certs
-make
-}
-
-package_pidgin(){
-  pkgdesc="Multi-protocol instant messaging client"
-  depends=('libpurple' 'startup-notification' 'gtkspell' 'libxss' 'libsm'
-   'gstreamer0.10' 'hicolor-icon-theme')
-  optdepends=('aspell: for spelling correction'
-  'gstreamer0.10-good-plugins: video and voice support')
-  install=pidgin.install
-
-  cd "$srcdir/pidgin-$pkgver"
-
-  # For linking
-  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
-
-  make -C pidgin DESTDIR="$pkgdir" install
-  make -C doc DESTDIR="$pkgdir" install
-
-  # Remove files that are packaged in libpurle
-  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
-
-  install -Dm644 pidgin.desktop "$pkgdir"/usr/share/applications/pidgin.desktop
-
-  rm "$pkgdir/usr/share/man/man1/finch.1"
-}
-
-package_libpurple(){
-  pkgdesc="IM library extracted from Pidgin"
-  depends=('farstream' 'libsasl' 'libidn' 'dbus-glib' 'nss')
-  optdepends=('avahi: Bonjour protocol support'
-  'ca-certificates: SSL CA certificates'
-  'dbus-python: for purple-remote and purple-url-handler'
-  'tk: Tcl/Tk scripting support')
-
-  cd "$srcdir/pidgin-$pkgver"
-
-  for _dir in libpurple share/sounds share/ca-certs m4macros po; do
-make -C "$_dir" DESTDIR="$pkgdir" install
-  done
-}
-
-package_finch(){
-  pkgdesc="A ncurses-based messaging client"
-  depends=("libpurple=$pkgver-$pkgrel" 'python2' 'gstreamer0.10')
-
-  cd "$srcdir/pidgin-$pkgver"
-
-  # For linking
-  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
-
-  make -C finch DESTDIR="$pkgdir" install
-  make -C doc DESTDIR="$pkgdir" install
-
-  # Remove files that are packaged in libpurle
-  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
-
-  rm "$pkgdir"/usr/share/man/man1/pidgin.1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pidgin/repos/extra-x86_64/PKGBUILD (from rev 160459, 
pidgin/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:46 UTC (rev 160569)
@@ -0,0 +1,100 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Ionut Biru 
+# Contributor: Andrea Scarpino 
+# Contributor: Alexander Fehr 
+# Contributor: Lucien Immink 
+
+pkgname=('pidgin' 'libpurple' 'finch')
+pkgver=2.10.4
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://pidgin.im/";
+license=('GPL')
+makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
+ 'libidn' 'python2' 'hicolor-icon-theme' 'gstreamer0.10'
+ 'farstream' 'avahi' 'tk' 'ca-certificates' 'intltool'
+ 'networkmanager')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('8fbef835c8dfa2281532ad7064d664477d72015d6dcd4345362dc

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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:43
  Author: bluewind
Revision: 160568

db-move: moved pidgin from [testing] to [extra] (i686)

Added:
  pidgin/repos/extra-i686/PKGBUILD
(from rev 160459, pidgin/repos/testing-i686/PKGBUILD)
  pidgin/repos/extra-i686/pidgin.install
(from rev 160459, pidgin/repos/testing-i686/pidgin.install)
Deleted:
  pidgin/repos/extra-i686/PKGBUILD
  pidgin/repos/extra-i686/pidgin.install
  pidgin/repos/testing-i686/

+
 PKGBUILD   |  200 +++
 pidgin.install |   22 +++---
 2 files changed, 111 insertions(+), 111 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:42 UTC (rev 160567)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:43 UTC (rev 160568)
@@ -1,100 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Ionut Biru 
-# Contributor: Andrea Scarpino 
-# Contributor: Alexander Fehr 
-# Contributor: Lucien Immink 
-
-pkgname=('pidgin' 'libpurple' 'finch')
-pkgver=2.10.4
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://pidgin.im/";
-license=('GPL')
-makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
- 'libidn' 'python2' 'hicolor-icon-theme' 'gstreamer0.10'
- 'farstream' 'avahi' 'tk' 'ca-certificates' 'intltool'
- 'networkmanager')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('8fbef835c8dfa2281532ad7064d664477d72015d6dcd4345362dcfe658aaee0e')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # Use Python 2
-  sed -i 's/env python$/&2/' */plugins/*.py \
-libpurple/purple-{remote,notifications-example,url-handler}
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---disable-schemas-install \
---disable-meanwhile \
---disable-gnutls \
---enable-cyrus-sasl \
---disable-doxygen \
---enable-nm \
---with-python=/usr/bin/python2 \
---with-system-ssl-certs=/etc/ssl/certs
-make
-}
-
-package_pidgin(){
-  pkgdesc="Multi-protocol instant messaging client"
-  depends=('libpurple' 'startup-notification' 'gtkspell' 'libxss' 'libsm'
-   'gstreamer0.10' 'hicolor-icon-theme')
-  optdepends=('aspell: for spelling correction'
-  'gstreamer0.10-good-plugins: video and voice support')
-  install=pidgin.install
-
-  cd "$srcdir/pidgin-$pkgver"
-
-  # For linking
-  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
-
-  make -C pidgin DESTDIR="$pkgdir" install
-  make -C doc DESTDIR="$pkgdir" install
-
-  # Remove files that are packaged in libpurle
-  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
-
-  install -Dm644 pidgin.desktop "$pkgdir"/usr/share/applications/pidgin.desktop
-
-  rm "$pkgdir/usr/share/man/man1/finch.1"
-}
-
-package_libpurple(){
-  pkgdesc="IM library extracted from Pidgin"
-  depends=('farstream' 'libsasl' 'libidn' 'dbus-glib' 'nss')
-  optdepends=('avahi: Bonjour protocol support'
-  'ca-certificates: SSL CA certificates'
-  'dbus-python: for purple-remote and purple-url-handler'
-  'tk: Tcl/Tk scripting support')
-
-  cd "$srcdir/pidgin-$pkgver"
-
-  for _dir in libpurple share/sounds share/ca-certs m4macros po; do
-make -C "$_dir" DESTDIR="$pkgdir" install
-  done
-}
-
-package_finch(){
-  pkgdesc="A ncurses-based messaging client"
-  depends=("libpurple=$pkgver-$pkgrel" 'python2' 'gstreamer0.10')
-
-  cd "$srcdir/pidgin-$pkgver"
-
-  # For linking
-  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
-
-  make -C finch DESTDIR="$pkgdir" install
-  make -C doc DESTDIR="$pkgdir" install
-
-  # Remove files that are packaged in libpurle
-  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
-
-  rm "$pkgdir"/usr/share/man/man1/pidgin.1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pidgin/repos/extra-i686/PKGBUILD (from rev 160459, 
pidgin/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:43 UTC (rev 160568)
@@ -0,0 +1,100 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Ionut Biru 
+# Contributor: Andrea Scarpino 
+# Contributor: Alexander Fehr 
+# Contributor: Lucien Immink 
+
+pkgname=('pidgin' 'libpurple' 'finch')
+pkgver=2.10.4
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://pidgin.im/";
+license=('GPL')
+makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
+ 'libidn' 'python2' 'hicolor-icon-theme' 'gstreamer0.10'
+ 'farstream' 'avahi' 'tk' 'ca-certificates' 'intltool'
+ 'networkmanager')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('8fbef835c8dfa2281532ad7064d664477d72015d6dcd4345362dcfe658aaee0e')
+
+build() {
+  cd "$srcdir/$pkgname-$pk

[arch-commits] Commit in perl-yaml-syck/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:42
  Author: bluewind
Revision: 160567

db-move: moved perl-yaml-syck from [testing] to [extra] (x86_64)

Added:
  perl-yaml-syck/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-yaml-syck/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-yaml-syck/repos/extra-x86_64/PKGBUILD
  perl-yaml-syck/repos/testing-x86_64/

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:40 UTC (rev 160566)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:42 UTC (rev 160567)
@@ -1,41 +0,0 @@
-# $Id$
-# This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman
-# Maintainer: kevin 
-
-pkgname=perl-yaml-syck
-_realname=YAML-Syck
-pkgver=1.20
-pkgrel=1
-pkgdesc="Fast, lightweight YAML loader and dumper"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://search.cpan.org/dist/${_realname}/";
-depends=('perl>=5.10.0')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/T/TO/TODDR/${_realname}-$pkgver.tar.gz)
-md5sums=('8f6d04ee5817b8479e1234264a8d458d')
-
-build() {
-  cd "${srcdir}/${_realname}-$pkgver"
-
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}/${_realname}-$pkgver"
-  make test
-}
-
-package() {
-  cd "${srcdir}/${_realname}-$pkgver"
-  make install DESTDIR="${pkgdir}"
-
-  # remove perllocal.pod and .packlist
-  find "${pkgdir}" -name perllocal.pod -delete
-  find "${pkgdir}" -name .packlist -delete
-
-  # license.
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: perl-yaml-syck/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-yaml-syck/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:42 UTC (rev 160567)
@@ -0,0 +1,37 @@
+# $Id$
+# This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman
+# Maintainer: kevin 
+
+pkgname=perl-yaml-syck
+_realname=YAML-Syck
+pkgver=1.20
+pkgrel=2
+pkgdesc="Fast, lightweight YAML loader and dumper"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://search.cpan.org/dist/${_realname}/";
+depends=('perl')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/T/TO/TODDR/${_realname}-$pkgver.tar.gz)
+md5sums=('8f6d04ee5817b8479e1234264a8d458d')
+
+build() {
+  cd "${srcdir}/${_realname}-$pkgver"
+
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/${_realname}-$pkgver"
+  make test
+}
+
+package() {
+  cd "${srcdir}/${_realname}-$pkgver"
+  make install DESTDIR="${pkgdir}"
+
+  # license.
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



[arch-commits] Commit in perl-yaml-syck/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:40
  Author: bluewind
Revision: 160566

db-move: moved perl-yaml-syck from [testing] to [extra] (i686)

Added:
  perl-yaml-syck/repos/extra-i686/PKGBUILD
(from rev 160459, perl-yaml-syck/repos/testing-i686/PKGBUILD)
Deleted:
  perl-yaml-syck/repos/extra-i686/PKGBUILD
  perl-yaml-syck/repos/testing-i686/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:38 UTC (rev 160565)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:40 UTC (rev 160566)
@@ -1,41 +0,0 @@
-# $Id$
-# This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman
-# Maintainer: kevin 
-
-pkgname=perl-yaml-syck
-_realname=YAML-Syck
-pkgver=1.20
-pkgrel=1
-pkgdesc="Fast, lightweight YAML loader and dumper"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://search.cpan.org/dist/${_realname}/";
-depends=('perl>=5.10.0')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/T/TO/TODDR/${_realname}-$pkgver.tar.gz)
-md5sums=('8f6d04ee5817b8479e1234264a8d458d')
-
-build() {
-  cd "${srcdir}/${_realname}-$pkgver"
-
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}/${_realname}-$pkgver"
-  make test
-}
-
-package() {
-  cd "${srcdir}/${_realname}-$pkgver"
-  make install DESTDIR="${pkgdir}"
-
-  # remove perllocal.pod and .packlist
-  find "${pkgdir}" -name perllocal.pod -delete
-  find "${pkgdir}" -name .packlist -delete
-
-  # license.
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: perl-yaml-syck/repos/extra-i686/PKGBUILD (from rev 160459, 
perl-yaml-syck/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:40 UTC (rev 160566)
@@ -0,0 +1,37 @@
+# $Id$
+# This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman
+# Maintainer: kevin 
+
+pkgname=perl-yaml-syck
+_realname=YAML-Syck
+pkgver=1.20
+pkgrel=2
+pkgdesc="Fast, lightweight YAML loader and dumper"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://search.cpan.org/dist/${_realname}/";
+depends=('perl')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/T/TO/TODDR/${_realname}-$pkgver.tar.gz)
+md5sums=('8f6d04ee5817b8479e1234264a8d458d')
+
+build() {
+  cd "${srcdir}/${_realname}-$pkgver"
+
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/${_realname}-$pkgver"
+  make test
+}
+
+package() {
+  cd "${srcdir}/${_realname}-$pkgver"
+  make install DESTDIR="${pkgdir}"
+
+  # license.
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



[arch-commits] Commit in perl-xml-parser/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:38
  Author: bluewind
Revision: 160565

db-move: moved perl-xml-parser from [testing] to [extra] (x86_64)

Added:
  perl-xml-parser/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-xml-parser/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-xml-parser/repos/extra-x86_64/PKGBUILD
  perl-xml-parser/repos/testing-x86_64/

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:35 UTC (rev 160564)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:38 UTC (rev 160565)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: firmicus 
-# Contributor: dorphell 
-# Contributor: herb 
-
-pkgname=perl-xml-parser
-_realname=XML-Parser
-pkgver=2.41
-pkgrel=2
-pkgdesc="Expat-based XML parser module for perl"
-arch=('i686' 'x86_64')
-license=('GPL' 'PerlArtistic')
-url="http://search.cpan.org/dist/${_realname}/";
-depends=('perl' 'expat')
-replaces=('perlxml')
-provides=("perlxml=${pkgver}")
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/${_realname}-${pkgver}.tar.gz";)
-md5sums=('c320d2ffa459e6cdc6f9f59c1185855e')
-
-build() {
-  cd "${srcdir}/${_realname}-${pkgver}"
-
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}/${_realname}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${srcdir}/${_realname}-${pkgver}"
-  make install DESTDIR="${pkgdir}"
-
-  # remove perllocal.pod and .packlist.
-  find "${pkgdir}" -name perllocal.pod -delete
-  find "${pkgdir}" -name .packlist -delete
-}

Copied: perl-xml-parser/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-xml-parser/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:38 UTC (rev 160565)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer:
+# Contributor: firmicus 
+# Contributor: dorphell 
+# Contributor: herb 
+
+pkgname=perl-xml-parser
+_realname=XML-Parser
+pkgver=2.41
+pkgrel=3
+pkgdesc="Expat-based XML parser module for perl"
+arch=('i686' 'x86_64')
+license=('GPL' 'PerlArtistic')
+url="http://search.cpan.org/dist/${_realname}/";
+depends=('perl' 'expat')
+replaces=('perlxml')
+provides=("perlxml=${pkgver}")
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/${_realname}-${pkgver}.tar.gz";)
+md5sums=('c320d2ffa459e6cdc6f9f59c1185855e')
+
+build() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make install DESTDIR="${pkgdir}"
+
+  # remove perllocal.pod and .packlist.
+  find "${pkgdir}" -name perllocal.pod -delete
+  find "${pkgdir}" -name .packlist -delete
+}



[arch-commits] Commit in perl-xml-parser/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:35
  Author: bluewind
Revision: 160564

db-move: moved perl-xml-parser from [testing] to [extra] (i686)

Added:
  perl-xml-parser/repos/extra-i686/PKGBUILD
(from rev 160459, perl-xml-parser/repos/testing-i686/PKGBUILD)
Deleted:
  perl-xml-parser/repos/extra-i686/PKGBUILD
  perl-xml-parser/repos/testing-i686/

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:34 UTC (rev 160563)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:35 UTC (rev 160564)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: firmicus 
-# Contributor: dorphell 
-# Contributor: herb 
-
-pkgname=perl-xml-parser
-_realname=XML-Parser
-pkgver=2.41
-pkgrel=2
-pkgdesc="Expat-based XML parser module for perl"
-arch=('i686' 'x86_64')
-license=('GPL' 'PerlArtistic')
-url="http://search.cpan.org/dist/${_realname}/";
-depends=('perl' 'expat')
-replaces=('perlxml')
-provides=("perlxml=${pkgver}")
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/${_realname}-${pkgver}.tar.gz";)
-md5sums=('c320d2ffa459e6cdc6f9f59c1185855e')
-
-build() {
-  cd "${srcdir}/${_realname}-${pkgver}"
-
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}/${_realname}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${srcdir}/${_realname}-${pkgver}"
-  make install DESTDIR="${pkgdir}"
-
-  # remove perllocal.pod and .packlist.
-  find "${pkgdir}" -name perllocal.pod -delete
-  find "${pkgdir}" -name .packlist -delete
-}

Copied: perl-xml-parser/repos/extra-i686/PKGBUILD (from rev 160459, 
perl-xml-parser/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:35 UTC (rev 160564)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer:
+# Contributor: firmicus 
+# Contributor: dorphell 
+# Contributor: herb 
+
+pkgname=perl-xml-parser
+_realname=XML-Parser
+pkgver=2.41
+pkgrel=3
+pkgdesc="Expat-based XML parser module for perl"
+arch=('i686' 'x86_64')
+license=('GPL' 'PerlArtistic')
+url="http://search.cpan.org/dist/${_realname}/";
+depends=('perl' 'expat')
+replaces=('perlxml')
+provides=("perlxml=${pkgver}")
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/${_realname}-${pkgver}.tar.gz";)
+md5sums=('c320d2ffa459e6cdc6f9f59c1185855e')
+
+build() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make install DESTDIR="${pkgdir}"
+
+  # remove perllocal.pod and .packlist.
+  find "${pkgdir}" -name perllocal.pod -delete
+  find "${pkgdir}" -name .packlist -delete
+}



[arch-commits] Commit in perl-unicode-string/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:34
  Author: bluewind
Revision: 160563

db-move: moved perl-unicode-string from [testing] to [extra] (x86_64)

Added:
  perl-unicode-string/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-unicode-string/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-unicode-string/repos/extra-x86_64/PKGBUILD
  perl-unicode-string/repos/testing-x86_64/

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:33 UTC (rev 160562)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:34 UTC (rev 160563)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: James Rayner 
-# Contributor: Andrew Simmons 
-
-pkgname=perl-unicode-string
-_realname=Unicode-String
-pkgver=2.09
-pkgrel=6
-pkgdesc="String of Unicode characters for perl (UCS2/UTF16)"
-arch=('i686' 'x86_64')
-license=('PerlArtistic')
-url="http://search.cpan.org/dist/${_realname}/";
-depends=('perl>=5.10.0')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/${_realname}-${pkgver}.tar.gz)
-md5sums=('553e68e603723bf7c631f8701ab0d678')
-
-build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  # in stall module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-  make test
-}
-
-package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-}

Copied: perl-unicode-string/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-unicode-string/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:34 UTC (rev 160563)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: James Rayner 
+# Contributor: Andrew Simmons 
+
+pkgname=perl-unicode-string
+_realname=Unicode-String
+pkgver=2.09
+pkgrel=7
+pkgdesc="String of Unicode characters for perl (UCS2/UTF16)"
+arch=('i686' 'x86_64')
+license=('PerlArtistic')
+url="http://search.cpan.org/dist/${_realname}/";
+depends=('perl')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/${_realname}-${pkgver}.tar.gz)
+md5sums=('553e68e603723bf7c631f8701ab0d678')
+
+build() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  # in stall module in vendor directories.
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make install DESTDIR="${pkgdir}"
+}



[arch-commits] Commit in perl-unicode-string/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:33
  Author: bluewind
Revision: 160562

db-move: moved perl-unicode-string from [testing] to [extra] (i686)

Added:
  perl-unicode-string/repos/extra-i686/PKGBUILD
(from rev 160459, perl-unicode-string/repos/testing-i686/PKGBUILD)
Deleted:
  perl-unicode-string/repos/extra-i686/PKGBUILD
  perl-unicode-string/repos/testing-i686/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:31 UTC (rev 160561)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:33 UTC (rev 160562)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: James Rayner 
-# Contributor: Andrew Simmons 
-
-pkgname=perl-unicode-string
-_realname=Unicode-String
-pkgver=2.09
-pkgrel=6
-pkgdesc="String of Unicode characters for perl (UCS2/UTF16)"
-arch=('i686' 'x86_64')
-license=('PerlArtistic')
-url="http://search.cpan.org/dist/${_realname}/";
-depends=('perl>=5.10.0')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/${_realname}-${pkgver}.tar.gz)
-md5sums=('553e68e603723bf7c631f8701ab0d678')
-
-build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  # in stall module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-  make test
-}
-
-package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-}

Copied: perl-unicode-string/repos/extra-i686/PKGBUILD (from rev 160459, 
perl-unicode-string/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:33 UTC (rev 160562)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: James Rayner 
+# Contributor: Andrew Simmons 
+
+pkgname=perl-unicode-string
+_realname=Unicode-String
+pkgver=2.09
+pkgrel=7
+pkgdesc="String of Unicode characters for perl (UCS2/UTF16)"
+arch=('i686' 'x86_64')
+license=('PerlArtistic')
+url="http://search.cpan.org/dist/${_realname}/";
+depends=('perl')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/${_realname}-${pkgver}.tar.gz)
+md5sums=('553e68e603723bf7c631f8701ab0d678')
+
+build() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  # in stall module in vendor directories.
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make install DESTDIR="${pkgdir}"
+}



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:31
  Author: bluewind
Revision: 160561

db-move: moved perl-tk from [testing] to [extra] (x86_64)

Added:
  perl-tk/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-tk/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-tk/repos/extra-x86_64/PKGBUILD
  perl-tk/repos/testing-x86_64/

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:28 UTC (rev 160560)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:31 UTC (rev 160561)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: François Charette 
-# Contributor: Jason Chu 
-# Contributor: Juergen Hoetzel 
-
-pkgname=perl-tk
-_cpanname=Tk
-pkgver=804.030
-pkgrel=2
-pkgdesc="A graphical user interface toolkit for Perl"
-arch=('i686' 'x86_64')
-url="http://search.cpan.org/dist/${_cpanname}";
-license=('PerlArtistic' 'GPL' 'custom')
-depends=('libpng' 'libjpeg' 'tk' 'perl')
-options=('!emptydirs')
-replaces=('perltk')
-provides=('perltk')
-source=(http://www.cpan.org/authors/id/S/SR/SREZIC/${_cpanname}-${pkgver}.tar.gz)
-md5sums=('13275e85f99ee467a86d9598a437abff')
-
-build() {
-  cd "$srcdir/${_cpanname}-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-#check() {
-#  cd "$srcdir/${_cpanname}-$pkgver"
-#  make test
-#}
-
-package() {
-  cd "$srcdir/${_cpanname}-$pkgver"
-  make install DESTDIR="$pkgdir"
-
-  # license
-  install -D -m644 pTk/license.terms \
-   "${pkgdir}/usr/share/licenses/${pkgname}/tk.license"
-  install -D -m644 pTk/Tix.license \
-   "${pkgdir}/usr/share/licenses/${pkgname}/tix.license"
-}

Copied: perl-tk/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-tk/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:31 UTC (rev 160561)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: François Charette 
+# Contributor: Jason Chu 
+# Contributor: Juergen Hoetzel 
+
+pkgname=perl-tk
+_cpanname=Tk
+pkgver=804.030
+pkgrel=3
+pkgdesc="A graphical user interface toolkit for Perl"
+arch=('i686' 'x86_64')
+url="http://search.cpan.org/dist/${_cpanname}";
+license=('PerlArtistic' 'GPL' 'custom')
+depends=('libpng' 'libjpeg' 'tk' 'perl')
+options=('!emptydirs')
+replaces=('perltk')
+provides=('perltk')
+source=(http://www.cpan.org/authors/id/S/SR/SREZIC/${_cpanname}-${pkgver}.tar.gz)
+md5sums=('13275e85f99ee467a86d9598a437abff')
+
+build() {
+  cd "$srcdir/${_cpanname}-$pkgver"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+#check() {
+#  cd "$srcdir/${_cpanname}-$pkgver"
+#  make test
+#}
+
+package() {
+  cd "$srcdir/${_cpanname}-$pkgver"
+  make install DESTDIR="$pkgdir"
+
+  # license
+  install -D -m644 pTk/license.terms \
+   "${pkgdir}/usr/share/licenses/${pkgname}/tk.license"
+  install -D -m644 pTk/Tix.license \
+   "${pkgdir}/usr/share/licenses/${pkgname}/tix.license"
+}



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:28
  Author: bluewind
Revision: 160560

db-move: moved perl-tk from [testing] to [extra] (i686)

Added:
  perl-tk/repos/extra-i686/PKGBUILD
(from rev 160459, perl-tk/repos/testing-i686/PKGBUILD)
Deleted:
  perl-tk/repos/extra-i686/PKGBUILD
  perl-tk/repos/testing-i686/

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:27 UTC (rev 160559)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:28 UTC (rev 160560)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: François Charette 
-# Contributor: Jason Chu 
-# Contributor: Juergen Hoetzel 
-
-pkgname=perl-tk
-_cpanname=Tk
-pkgver=804.030
-pkgrel=2
-pkgdesc="A graphical user interface toolkit for Perl"
-arch=('i686' 'x86_64')
-url="http://search.cpan.org/dist/${_cpanname}";
-license=('PerlArtistic' 'GPL' 'custom')
-depends=('libpng' 'libjpeg' 'tk' 'perl')
-options=('!emptydirs')
-replaces=('perltk')
-provides=('perltk')
-source=(http://www.cpan.org/authors/id/S/SR/SREZIC/${_cpanname}-${pkgver}.tar.gz)
-md5sums=('13275e85f99ee467a86d9598a437abff')
-
-build() {
-  cd "$srcdir/${_cpanname}-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-#check() {
-#  cd "$srcdir/${_cpanname}-$pkgver"
-#  make test
-#}
-
-package() {
-  cd "$srcdir/${_cpanname}-$pkgver"
-  make install DESTDIR="$pkgdir"
-
-  # license
-  install -D -m644 pTk/license.terms \
-   "${pkgdir}/usr/share/licenses/${pkgname}/tk.license"
-  install -D -m644 pTk/Tix.license \
-   "${pkgdir}/usr/share/licenses/${pkgname}/tix.license"
-}

Copied: perl-tk/repos/extra-i686/PKGBUILD (from rev 160459, 
perl-tk/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:28 UTC (rev 160560)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: François Charette 
+# Contributor: Jason Chu 
+# Contributor: Juergen Hoetzel 
+
+pkgname=perl-tk
+_cpanname=Tk
+pkgver=804.030
+pkgrel=3
+pkgdesc="A graphical user interface toolkit for Perl"
+arch=('i686' 'x86_64')
+url="http://search.cpan.org/dist/${_cpanname}";
+license=('PerlArtistic' 'GPL' 'custom')
+depends=('libpng' 'libjpeg' 'tk' 'perl')
+options=('!emptydirs')
+replaces=('perltk')
+provides=('perltk')
+source=(http://www.cpan.org/authors/id/S/SR/SREZIC/${_cpanname}-${pkgver}.tar.gz)
+md5sums=('13275e85f99ee467a86d9598a437abff')
+
+build() {
+  cd "$srcdir/${_cpanname}-$pkgver"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+#check() {
+#  cd "$srcdir/${_cpanname}-$pkgver"
+#  make test
+#}
+
+package() {
+  cd "$srcdir/${_cpanname}-$pkgver"
+  make install DESTDIR="$pkgdir"
+
+  # license
+  install -D -m644 pTk/license.terms \
+   "${pkgdir}/usr/share/licenses/${pkgname}/tk.license"
+  install -D -m644 pTk/Tix.license \
+   "${pkgdir}/usr/share/licenses/${pkgname}/tix.license"
+}



[arch-commits] Commit in perl-time-hires/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:27
  Author: bluewind
Revision: 160559

db-move: moved perl-time-hires from [testing] to [extra] (x86_64)

Added:
  perl-time-hires/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-time-hires/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-time-hires/repos/extra-x86_64/PKGBUILD
  perl-time-hires/repos/testing-x86_64/

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:25 UTC (rev 160558)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:27 UTC (rev 160559)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: mezcal 
-
-pkgname=perl-time-hires
-pkgver=1.9725
-pkgrel=1
-pkgdesc="Perl module: high resolution time, sleep, and alarm"
-arch=('i686' 'x86_64')
-license=('PerlArtistic')
-url="http://search.cpan.org/dist/Time-HiRes/";
-depends=('perl')
-options=(!emptydirs)
-source=("http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Time-HiRes-${pkgver}.tar.gz";)
-md5sums=('cb1108c076d26f3d2fed0bb91313135a')
-
-build() {
-  cd "${srcdir}/Time-HiRes-${pkgver}"
-
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-
-  make
-}
-
-check() {
-  cd "${srcdir}/Time-HiRes-${pkgver}"
-
-  make test
-}
-
-package() {
-  cd "${srcdir}/Time-HiRes-${pkgver}"
-
-  make install DESTDIR="${pkgdir}"
-}

Copied: perl-time-hires/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-time-hires/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:27 UTC (rev 160559)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: mezcal 
+
+pkgname=perl-time-hires
+pkgver=1.9725
+pkgrel=2
+pkgdesc="Perl module: high resolution time, sleep, and alarm"
+arch=('i686' 'x86_64')
+license=('PerlArtistic')
+url="http://search.cpan.org/dist/Time-HiRes/";
+depends=('perl')
+options=(!emptydirs)
+source=("http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Time-HiRes-${pkgver}.tar.gz";)
+md5sums=('cb1108c076d26f3d2fed0bb91313135a')
+
+build() {
+  cd "${srcdir}/Time-HiRes-${pkgver}"
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+
+  make
+}
+
+check() {
+  cd "${srcdir}/Time-HiRes-${pkgver}"
+
+  make test
+}
+
+package() {
+  cd "${srcdir}/Time-HiRes-${pkgver}"
+
+  make install DESTDIR="${pkgdir}"
+}



[arch-commits] Commit in perl-time-hires/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:25
  Author: bluewind
Revision: 160558

db-move: moved perl-time-hires from [testing] to [extra] (i686)

Added:
  perl-time-hires/repos/extra-i686/PKGBUILD
(from rev 160459, perl-time-hires/repos/testing-i686/PKGBUILD)
Deleted:
  perl-time-hires/repos/extra-i686/PKGBUILD
  perl-time-hires/repos/testing-i686/

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:23 UTC (rev 160557)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:25 UTC (rev 160558)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: mezcal 
-
-pkgname=perl-time-hires
-pkgver=1.9725
-pkgrel=1
-pkgdesc="Perl module: high resolution time, sleep, and alarm"
-arch=('i686' 'x86_64')
-license=('PerlArtistic')
-url="http://search.cpan.org/dist/Time-HiRes/";
-depends=('perl')
-options=(!emptydirs)
-source=("http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Time-HiRes-${pkgver}.tar.gz";)
-md5sums=('cb1108c076d26f3d2fed0bb91313135a')
-
-build() {
-  cd "${srcdir}/Time-HiRes-${pkgver}"
-
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-
-  make
-}
-
-check() {
-  cd "${srcdir}/Time-HiRes-${pkgver}"
-
-  make test
-}
-
-package() {
-  cd "${srcdir}/Time-HiRes-${pkgver}"
-
-  make install DESTDIR="${pkgdir}"
-}

Copied: perl-time-hires/repos/extra-i686/PKGBUILD (from rev 160459, 
perl-time-hires/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:25 UTC (rev 160558)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: mezcal 
+
+pkgname=perl-time-hires
+pkgver=1.9725
+pkgrel=2
+pkgdesc="Perl module: high resolution time, sleep, and alarm"
+arch=('i686' 'x86_64')
+license=('PerlArtistic')
+url="http://search.cpan.org/dist/Time-HiRes/";
+depends=('perl')
+options=(!emptydirs)
+source=("http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Time-HiRes-${pkgver}.tar.gz";)
+md5sums=('cb1108c076d26f3d2fed0bb91313135a')
+
+build() {
+  cd "${srcdir}/Time-HiRes-${pkgver}"
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+
+  make
+}
+
+check() {
+  cd "${srcdir}/Time-HiRes-${pkgver}"
+
+  make test
+}
+
+package() {
+  cd "${srcdir}/Time-HiRes-${pkgver}"
+
+  make install DESTDIR="${pkgdir}"
+}



[arch-commits] Commit in perl-text-iconv/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:22
  Author: bluewind
Revision: 160556

db-move: moved perl-text-iconv from [testing] to [extra] (i686)

Added:
  perl-text-iconv/repos/extra-i686/PKGBUILD
(from rev 160459, perl-text-iconv/repos/testing-i686/PKGBUILD)
Deleted:
  perl-text-iconv/repos/extra-i686/PKGBUILD
  perl-text-iconv/repos/testing-i686/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:20 UTC (rev 160555)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:22 UTC (rev 160556)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: 
-# Contributor: Francois Charette 
-
-pkgname=perl-text-iconv
-_realname=Text-Iconv
-pkgver=1.7
-pkgrel=6
-pkgdesc="Interface to iconv codeset conversion"
-arch=('i686' 'x86_64')
-url="http://search.cpan.org/dist/${_realname}/";
-license=('GPL' 'PerlArtistic')
-depends=('perl>=5.10.0')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/M/MP/MPIOTR/${_realname}-${pkgver}.tar.gz)
 
-md5sums=('81b26e069eaebb084e91ea3c009b67ae')
-
-build() {
-  cd  ${srcdir}/${_realname}-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-  make test
-}
-
-package() {
-  cd  ${srcdir}/${_realname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: perl-text-iconv/repos/extra-i686/PKGBUILD (from rev 160459, 
perl-text-iconv/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:22 UTC (rev 160556)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: 
+# Contributor: Francois Charette 
+
+pkgname=perl-text-iconv
+_realname=Text-Iconv
+pkgver=1.7
+pkgrel=7
+pkgdesc="Interface to iconv codeset conversion"
+arch=('i686' 'x86_64')
+url="http://search.cpan.org/dist/${_realname}/";
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/M/MP/MPIOTR/${_realname}-${pkgver}.tar.gz)
 
+md5sums=('81b26e069eaebb084e91ea3c009b67ae')
+
+build() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in perl-text-iconv/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:23
  Author: bluewind
Revision: 160557

db-move: moved perl-text-iconv from [testing] to [extra] (x86_64)

Added:
  perl-text-iconv/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-text-iconv/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-text-iconv/repos/extra-x86_64/PKGBUILD
  perl-text-iconv/repos/testing-x86_64/

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:22 UTC (rev 160556)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:23 UTC (rev 160557)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: 
-# Contributor: Francois Charette 
-
-pkgname=perl-text-iconv
-_realname=Text-Iconv
-pkgver=1.7
-pkgrel=6
-pkgdesc="Interface to iconv codeset conversion"
-arch=('i686' 'x86_64')
-url="http://search.cpan.org/dist/${_realname}/";
-license=('GPL' 'PerlArtistic')
-depends=('perl>=5.10.0')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/M/MP/MPIOTR/${_realname}-${pkgver}.tar.gz)
 
-md5sums=('81b26e069eaebb084e91ea3c009b67ae')
-
-build() {
-  cd  ${srcdir}/${_realname}-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-  make test
-}
-
-package() {
-  cd  ${srcdir}/${_realname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: perl-text-iconv/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-text-iconv/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:23 UTC (rev 160557)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: 
+# Contributor: Francois Charette 
+
+pkgname=perl-text-iconv
+_realname=Text-Iconv
+pkgver=1.7
+pkgrel=7
+pkgdesc="Interface to iconv codeset conversion"
+arch=('i686' 'x86_64')
+url="http://search.cpan.org/dist/${_realname}/";
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/M/MP/MPIOTR/${_realname}-${pkgver}.tar.gz)
 
+md5sums=('81b26e069eaebb084e91ea3c009b67ae')
+
+build() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in perl-term-readkey/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:20
  Author: bluewind
Revision: 160555

db-move: moved perl-term-readkey from [testing] to [extra] (x86_64)

Added:
  perl-term-readkey/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-term-readkey/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-term-readkey/repos/extra-x86_64/PKGBUILD
  perl-term-readkey/repos/testing-x86_64/

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:18 UTC (rev 160554)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:20 UTC (rev 160555)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: kevin 
-# Contributor: Wael Nasreddine 
-# Contributor: Francois Charette  
-
-pkgname=perl-term-readkey
-_realname=TermReadKey
-pkgver=2.30.02
-pkgrel=1
-pkgdesc="Provides simple control over terminal driver modes"
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('perl>=5.10.0' 'glibc')
-url="http://search.cpan.org/~stsi/${_realname}/";
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/S/ST/STSI/${_realname}-$pkgver.tar.gz)
-md5sums=('69b92c8ddca8691c83823c683cd9838a')
-
-build() {
-  cd "${srcdir}/TermReadKey-$pkgver"
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}/TermReadKey-$pkgver"
-  make test
-}
-
-package() {
-  cd "${srcdir}/TermReadKey-$pkgver"
-  make DESTDIR="${pkgdir}" install
-  install -d "${pkgdir}/usr/share/licenses/$pkgname/"
-  head -7 README > "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
-
-  # remove perllocal.pod and .packlist
-  find "${pkgdir}" -name perllocal.pod -delete
-  find "${pkgdir}" -name .packlist -delete
-}

Copied: perl-term-readkey/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-term-readkey/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:20 UTC (rev 160555)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: kevin 
+# Contributor: Wael Nasreddine 
+# Contributor: Francois Charette  
+
+pkgname=perl-term-readkey
+_realname=TermReadKey
+pkgver=2.30.02
+pkgrel=2
+pkgdesc="Provides simple control over terminal driver modes"
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('perl' 'glibc')
+url="http://search.cpan.org/~stsi/${_realname}/";
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/S/ST/STSI/${_realname}-$pkgver.tar.gz)
+md5sums=('69b92c8ddca8691c83823c683cd9838a')
+
+build() {
+  cd "${srcdir}/TermReadKey-$pkgver"
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/TermReadKey-$pkgver"
+  make test
+}
+
+package() {
+  cd "${srcdir}/TermReadKey-$pkgver"
+  make DESTDIR="${pkgdir}" install
+  chmod 755 "${pkgdir}/usr/lib/perl5/vendor_perl/auto/Term/ReadKey/ReadKey.so"
+  install -d "${pkgdir}/usr/share/licenses/$pkgname/"
+  head -7 README > "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in perl-term-readkey/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:18
  Author: bluewind
Revision: 160554

db-move: moved perl-term-readkey from [testing] to [extra] (i686)

Added:
  perl-term-readkey/repos/extra-i686/PKGBUILD
(from rev 160459, perl-term-readkey/repos/testing-i686/PKGBUILD)
Deleted:
  perl-term-readkey/repos/extra-i686/PKGBUILD
  perl-term-readkey/repos/testing-i686/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:17 UTC (rev 160553)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:18 UTC (rev 160554)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: kevin 
-# Contributor: Wael Nasreddine 
-# Contributor: Francois Charette  
-
-pkgname=perl-term-readkey
-_realname=TermReadKey
-pkgver=2.30.02
-pkgrel=1
-pkgdesc="Provides simple control over terminal driver modes"
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('perl>=5.10.0' 'glibc')
-url="http://search.cpan.org/~stsi/${_realname}/";
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/S/ST/STSI/${_realname}-$pkgver.tar.gz)
-md5sums=('69b92c8ddca8691c83823c683cd9838a')
-
-build() {
-  cd "${srcdir}/TermReadKey-$pkgver"
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}/TermReadKey-$pkgver"
-  make test
-}
-
-package() {
-  cd "${srcdir}/TermReadKey-$pkgver"
-  make DESTDIR="${pkgdir}" install
-  install -d "${pkgdir}/usr/share/licenses/$pkgname/"
-  head -7 README > "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
-
-  # remove perllocal.pod and .packlist
-  find "${pkgdir}" -name perllocal.pod -delete
-  find "${pkgdir}" -name .packlist -delete
-}

Copied: perl-term-readkey/repos/extra-i686/PKGBUILD (from rev 160459, 
perl-term-readkey/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:18 UTC (rev 160554)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: kevin 
+# Contributor: Wael Nasreddine 
+# Contributor: Francois Charette  
+
+pkgname=perl-term-readkey
+_realname=TermReadKey
+pkgver=2.30.02
+pkgrel=2
+pkgdesc="Provides simple control over terminal driver modes"
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('perl' 'glibc')
+url="http://search.cpan.org/~stsi/${_realname}/";
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/S/ST/STSI/${_realname}-$pkgver.tar.gz)
+md5sums=('69b92c8ddca8691c83823c683cd9838a')
+
+build() {
+  cd "${srcdir}/TermReadKey-$pkgver"
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}/TermReadKey-$pkgver"
+  make test
+}
+
+package() {
+  cd "${srcdir}/TermReadKey-$pkgver"
+  make DESTDIR="${pkgdir}" install
+  chmod 755 "${pkgdir}/usr/lib/perl5/vendor_perl/auto/Term/ReadKey/ReadKey.so"
+  install -d "${pkgdir}/usr/share/licenses/$pkgname/"
+  head -7 README > "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}



[arch-commits] Commit in perl-template-toolkit/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:17
  Author: bluewind
Revision: 160553

db-move: moved perl-template-toolkit from [testing] to [extra] (x86_64)

Added:
  perl-template-toolkit/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-template-toolkit/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-template-toolkit/repos/extra-x86_64/PKGBUILD
  perl-template-toolkit/repos/testing-x86_64/

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:15 UTC (rev 160552)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:17 UTC (rev 160553)
@@ -1,32 +0,0 @@
-# Maintainer: Firmicus 
-# Contributor: Tom Killian 
-# Contributor: FJ 
-
-pkgname=perl-template-toolkit
-_realname=Template-Toolkit
-pkgver=2.22
-pkgrel=4
-pkgdesc="Perl template processing system"
-arch=(i686 x86_64)
-license=('PerlArtistic')
-url="http://search.cpan.org/dist/${_realname}/";
-depends=('perl-appconfig' 'perl>=5.10.0')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/A/AB/ABW/${_realname}-$pkgver.tar.gz)
 
-md5sums=('d98277f6420e5da6b93d99a8db2b3934')
-
-build() {
-  cd ${srcdir}/${_realname}-$pkgver
-  # install module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd ${srcdir}/${_realname}-$pkgver
-  make install DESTDIR=${startdir}/pkg
-
-  # remove perllocal.pod and .packlist
-  find ${startdir}/pkg -name perllocal.pod -delete
-  find ${startdir}/pkg -name .packlist -delete
-}

Copied: perl-template-toolkit/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-template-toolkit/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:17 UTC (rev 160553)
@@ -0,0 +1,32 @@
+# Maintainer: Firmicus 
+# Contributor: Tom Killian 
+# Contributor: FJ 
+
+pkgname=perl-template-toolkit
+_realname=Template-Toolkit
+pkgver=2.22
+pkgrel=5
+pkgdesc="Perl template processing system"
+arch=(i686 x86_64)
+license=('PerlArtistic')
+url="http://search.cpan.org/dist/${_realname}/";
+depends=('perl-appconfig' 'perl>=5.10.0')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/A/AB/ABW/${_realname}-$pkgver.tar.gz)
 
+md5sums=('d98277f6420e5da6b93d99a8db2b3934')
+
+build() {
+  cd ${srcdir}/${_realname}-$pkgver
+  # install module in vendor directories.
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/${_realname}-$pkgver
+  make install DESTDIR=${startdir}/pkg
+
+  # remove perllocal.pod and .packlist
+  find ${startdir}/pkg -name perllocal.pod -delete
+  find ${startdir}/pkg -name .packlist -delete
+}



[arch-commits] Commit in perl-template-toolkit/repos (3 files)

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:15
  Author: bluewind
Revision: 160552

db-move: moved perl-template-toolkit from [testing] to [extra] (i686)

Added:
  perl-template-toolkit/repos/extra-i686/PKGBUILD
(from rev 160459, perl-template-toolkit/repos/testing-i686/PKGBUILD)
Deleted:
  perl-template-toolkit/repos/extra-i686/PKGBUILD
  perl-template-toolkit/repos/testing-i686/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:14 UTC (rev 160551)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:15 UTC (rev 160552)
@@ -1,32 +0,0 @@
-# Maintainer: Firmicus 
-# Contributor: Tom Killian 
-# Contributor: FJ 
-
-pkgname=perl-template-toolkit
-_realname=Template-Toolkit
-pkgver=2.22
-pkgrel=4
-pkgdesc="Perl template processing system"
-arch=(i686 x86_64)
-license=('PerlArtistic')
-url="http://search.cpan.org/dist/${_realname}/";
-depends=('perl-appconfig' 'perl>=5.10.0')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/A/AB/ABW/${_realname}-$pkgver.tar.gz)
 
-md5sums=('d98277f6420e5da6b93d99a8db2b3934')
-
-build() {
-  cd ${srcdir}/${_realname}-$pkgver
-  # install module in vendor directories.
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd ${srcdir}/${_realname}-$pkgver
-  make install DESTDIR=${startdir}/pkg
-
-  # remove perllocal.pod and .packlist
-  find ${startdir}/pkg -name perllocal.pod -delete
-  find ${startdir}/pkg -name .packlist -delete
-}

Copied: perl-template-toolkit/repos/extra-i686/PKGBUILD (from rev 160459, 
perl-template-toolkit/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:15 UTC (rev 160552)
@@ -0,0 +1,32 @@
+# Maintainer: Firmicus 
+# Contributor: Tom Killian 
+# Contributor: FJ 
+
+pkgname=perl-template-toolkit
+_realname=Template-Toolkit
+pkgver=2.22
+pkgrel=5
+pkgdesc="Perl template processing system"
+arch=(i686 x86_64)
+license=('PerlArtistic')
+url="http://search.cpan.org/dist/${_realname}/";
+depends=('perl-appconfig' 'perl>=5.10.0')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/A/AB/ABW/${_realname}-$pkgver.tar.gz)
 
+md5sums=('d98277f6420e5da6b93d99a8db2b3934')
+
+build() {
+  cd ${srcdir}/${_realname}-$pkgver
+  # install module in vendor directories.
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/${_realname}-$pkgver
+  make install DESTDIR=${startdir}/pkg
+
+  # remove perllocal.pod and .packlist
+  find ${startdir}/pkg -name perllocal.pod -delete
+  find ${startdir}/pkg -name .packlist -delete
+}



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:14
  Author: bluewind
Revision: 160551

db-move: moved perl-socket6 from [testing] to [extra] (x86_64)

Added:
  perl-socket6/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-socket6/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-socket6/repos/extra-x86_64/PKGBUILD
  perl-socket6/repos/testing-x86_64/

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:11 UTC (rev 160550)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:14 UTC (rev 160551)
@@ -1,49 +0,0 @@
-# Maintainer: Florian Pritz 
-# Generator  : CPANPLUS::Dist::Arch 1.18
-
-pkgname='perl-socket6'
-pkgver='0.23'
-pkgrel='1'
-pkgdesc="getaddrinfo/getnameinfo support module"
-arch=('i686' 'x86_64')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-makedepends=()
-url='http://search.cpan.org/dist/Socket6'
-source=('http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-0.23.tar.gz')
-md5sums=('2c02adb13c449d48d232bb704ddbd492')
-sha512sums=('39ced223ecdef89e6fa241031019bb5a73e63d2dfdaf3edb55bfea0cb81b91bea09f1cc26b2d15fa28d32227cc13cdb093c70f0ba346c9bdb523359de53d96f9')
-_distdir="${srcdir}/Socket6-0.23"
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
-  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
-  MODULEBUILDRC=/dev/null
-
-cd "$_distdir"
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  cd "$_distdir"
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-make test
-  )
-}
-
-package() {
-  cd "$_distdir"
-  make install
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}
-
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
-# vim:set ts=2 sw=2 et:

Copied: perl-socket6/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-socket6/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:14 UTC (rev 160551)
@@ -0,0 +1,49 @@
+# Maintainer: Florian Pritz 
+# Generator  : CPANPLUS::Dist::Arch 1.18
+
+pkgname='perl-socket6'
+pkgver='0.23'
+pkgrel='2'
+pkgdesc="getaddrinfo/getnameinfo support module"
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+makedepends=()
+url='http://search.cpan.org/dist/Socket6'
+source=('http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-0.23.tar.gz')
+md5sums=('2c02adb13c449d48d232bb704ddbd492')
+sha512sums=('39ced223ecdef89e6fa241031019bb5a73e63d2dfdaf3edb55bfea0cb81b91bea09f1cc26b2d15fa28d32227cc13cdb093c70f0ba346c9bdb523359de53d96f9')
+_distdir="${srcdir}/Socket6-0.23"
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+  MODULEBUILDRC=/dev/null
+
+cd "$_distdir"
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd "$_distdir"
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+make test
+  )
+}
+
+package() {
+  cd "$_distdir"
+  make install
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:11
  Author: bluewind
Revision: 160550

db-move: moved perl-socket6 from [testing] to [extra] (i686)

Added:
  perl-socket6/repos/extra-i686/PKGBUILD
(from rev 160459, perl-socket6/repos/testing-i686/PKGBUILD)
Deleted:
  perl-socket6/repos/extra-i686/PKGBUILD
  perl-socket6/repos/testing-i686/

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-02 10:28:09 UTC (rev 160549)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:11 UTC (rev 160550)
@@ -1,49 +0,0 @@
-# Maintainer: Florian Pritz 
-# Generator  : CPANPLUS::Dist::Arch 1.18
-
-pkgname='perl-socket6'
-pkgver='0.23'
-pkgrel='1'
-pkgdesc="getaddrinfo/getnameinfo support module"
-arch=('i686' 'x86_64')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-makedepends=()
-url='http://search.cpan.org/dist/Socket6'
-source=('http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-0.23.tar.gz')
-md5sums=('2c02adb13c449d48d232bb704ddbd492')
-sha512sums=('39ced223ecdef89e6fa241031019bb5a73e63d2dfdaf3edb55bfea0cb81b91bea09f1cc26b2d15fa28d32227cc13cdb093c70f0ba346c9bdb523359de53d96f9')
-_distdir="${srcdir}/Socket6-0.23"
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
-  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
-  MODULEBUILDRC=/dev/null
-
-cd "$_distdir"
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  cd "$_distdir"
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-make test
-  )
-}
-
-package() {
-  cd "$_distdir"
-  make install
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}
-
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
-# vim:set ts=2 sw=2 et:

Copied: perl-socket6/repos/extra-i686/PKGBUILD (from rev 160459, 
perl-socket6/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-02 10:28:11 UTC (rev 160550)
@@ -0,0 +1,49 @@
+# Maintainer: Florian Pritz 
+# Generator  : CPANPLUS::Dist::Arch 1.18
+
+pkgname='perl-socket6'
+pkgver='0.23'
+pkgrel='2'
+pkgdesc="getaddrinfo/getnameinfo support module"
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+makedepends=()
+url='http://search.cpan.org/dist/Socket6'
+source=('http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-0.23.tar.gz')
+md5sums=('2c02adb13c449d48d232bb704ddbd492')
+sha512sums=('39ced223ecdef89e6fa241031019bb5a73e63d2dfdaf3edb55bfea0cb81b91bea09f1cc26b2d15fa28d32227cc13cdb093c70f0ba346c9bdb523359de53d96f9')
+_distdir="${srcdir}/Socket6-0.23"
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+  MODULEBUILDRC=/dev/null
+
+cd "$_distdir"
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd "$_distdir"
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+make test
+  )
+}
+
+package() {
+  cd "$_distdir"
+  make install
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:



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

2012-06-02 Thread Florian Pritz
Date: Saturday, June 2, 2012 @ 06:28:09
  Author: bluewind
Revision: 160549

db-move: moved perl-sdl from [testing] to [extra] (x86_64)

Added:
  perl-sdl/repos/extra-x86_64/PKGBUILD
(from rev 160459, perl-sdl/repos/testing-x86_64/PKGBUILD)
Deleted:
  perl-sdl/repos/extra-x86_64/PKGBUILD
  perl-sdl/repos/testing-x86_64/

--+
 PKGBUILD |   82 +++--
 1 file changed, 42 insertions(+), 40 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-02 10:28:07 UTC (rev 160548)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:09 UTC (rev 160549)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: Allan McRae 
-# Contributor: Sarah Hay 
-
-pkgname=perl-sdl
-pkgver=2.531
-pkgrel=3
-pkgdesc="Simple DirectMedia Layer for Perl"
-arch=(i686 x86_64)
-license=(LGPL)
-url="http://sdl.perl.org";
-depends=(perl-alien-sdl perl-tie-simple
- sdl_{net,ttf,image,mixer,gfx,pango} mesa smpeg)
-#makedepends=(perl-yaml)
-options=('!emptydirs')
-replaces=(sdl_perl)
-conflicts=(sdl_perl)
-provides=("sdl_perl=$pkgver")
-source=(http://search.cpan.org/CPAN/authors/id/G/GA/GARU/SDL-$pkgver.tar.gz)
-md5sums=('ed39c87ae685d3a933705a2ea82a9e18')
-
-build() {
-  cd "$srcdir/SDL-$pkgver"
-  # Perl selects the proper CFLAGS set for binary modules
-  unset CFLAGS
-  # install module in vendor directories
-  perl Build.PL installdirs=vendor
-  perl Build
-}
-
-check() {
-  cd "$srcdir/SDL-$pkgver"
-  perl Build test || true
-}
-
-package() {
-  cd "$srcdir/SDL-$pkgver"
-  perl Build install destdir="$pkgdir"
-}

Copied: perl-sdl/repos/extra-x86_64/PKGBUILD (from rev 160459, 
perl-sdl/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-02 10:28:09 UTC (rev 160549)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Allan McRae 
+# Contributor: Sarah Hay 
+
+pkgname=perl-sdl
+pkgver=2.536
+pkgrel=1
+pkgdesc="Simple DirectMedia Layer for Perl"
+arch=(i686 x86_64)
+license=(LGPL)
+url="http://sdl.perl.org";
+depends=(perl-alien-sdl perl-tie-simple
+ sdl_{net,ttf,image,mixer,gfx,pango} mesa smpeg)
+#makedepends=(perl-yaml)
+options=('!emptydirs')
+replaces=(sdl_perl)
+conflicts=(sdl_perl)
+provides=("sdl_perl=$pkgver")
+# http://search.cpan.org/dist/SDL/
+_author=FROGGS
+source=(http://search.cpan.org/CPAN/authors/id/${_author:0:1}/${_author:0:2}/$_author/SDL-$pkgver.tar.gz)
+md5sums=('5c682e8a96cd655e959497b034b978ce')
+
+build() {
+  cd "$srcdir/SDL-$pkgver"
+  # Perl selects the proper CFLAGS set for binary modules
+  unset CFLAGS
+  # install module in vendor directories
+  perl Build.PL installdirs=vendor
+  perl Build
+}
+
+check() {
+  cd "$srcdir/SDL-$pkgver"
+  perl Build test || true
+}
+
+package() {
+  cd "$srcdir/SDL-$pkgver"
+  perl Build install destdir="$pkgdir"
+}



  1   2   >