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

2013-07-19 Thread Gaetan Bisson
Date: Friday, July 19, 2013 @ 10:41:41
  Author: bisson
Revision: 191183

push earlier changes, tentative fix for FS#36198

Modified:
  mpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 02:41:51 UTC (rev 191182)
+++ PKGBUILD2013-07-19 08:41:41 UTC (rev 191183)
@@ -7,7 +7,7 @@
 
 pkgname=mpd
 pkgver=0.17.4
-pkgrel=2
+pkgrel=3
 pkgdesc='Flexible, powerful, server-side application for playing music'
 url='http://www.musicpd.org/'
 license=('GPL')



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

2013-07-19 Thread Gaetan Bisson
Date: Friday, July 19, 2013 @ 10:42:12
  Author: bisson
Revision: 191184

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

Added:
  mpd/repos/testing-i686/
  mpd/repos/testing-i686/PKGBUILD
(from rev 191183, mpd/trunk/PKGBUILD)
  mpd/repos/testing-i686/install
(from rev 191183, mpd/trunk/install)
  mpd/repos/testing-i686/tmpfiles.d
(from rev 191183, mpd/trunk/tmpfiles.d)
  mpd/repos/testing-x86_64/
  mpd/repos/testing-x86_64/PKGBUILD
(from rev 191183, mpd/trunk/PKGBUILD)
  mpd/repos/testing-x86_64/install
(from rev 191183, mpd/trunk/install)
  mpd/repos/testing-x86_64/tmpfiles.d
(from rev 191183, mpd/trunk/tmpfiles.d)

---+
 testing-i686/PKGBUILD |   61 
 testing-i686/install  |   11 +++
 testing-i686/tmpfiles.d   |1 
 testing-x86_64/PKGBUILD   |   61 
 testing-x86_64/install|   11 +++
 testing-x86_64/tmpfiles.d |1 
 6 files changed, 146 insertions(+)

Copied: mpd/repos/testing-i686/PKGBUILD (from rev 191183, mpd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-07-19 08:42:12 UTC (rev 191184)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: Ben b...@benmazer.net
+
+pkgname=mpd
+pkgver=0.17.4
+pkgrel=3
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='http://www.musicpd.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
+ 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl')
+makedepends=('doxygen')
+source=(http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+'tmpfiles.d')
+sha1sums=('f60b54e368fe74fde2fd4571227b0428fe0ae3cb'
+  'f4d5922abb69abb739542d8e93f4dfd748acdad7')
+
+backup=('etc/mpd.conf')
+install=install
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed 's:cdio/paranoia.h:cdio/paranoia/paranoia.h:g' -i 
src/input/cdio_paranoia_input_plugin.c
+   sed 's:AVCODEC_MAX_AUDIO_FRAME_SIZE:192000:g' -i 
src/decoder/ffmpeg_decoder_plugin.c
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --enable-jack \
+   --enable-lastfm \
+   --enable-soundcloud \
+   --enable-pulse \
+   --disable-sidplay \
+   --with-systemdsystemunitdir=/usr/lib/systemd/system
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   install -d ${pkgdir}/usr/lib/systemd/user
+   install -d -g 45 -o 45 ${pkgdir}/var/lib/mpd/playlists
+   install -Dm644 doc/mpdconf.example ${pkgdir}/etc/mpd.conf
+   install -Dm644 ../tmpfiles.d ${pkgdir}/usr/lib/tmpfiles.d/mpd.conf
+   ln -s ../system/mpd.service ${pkgdir}/usr/lib/systemd/user/mpd.service
+   sed \
+   -e '/^#playlist_directory/c playlist_directory 
/var/lib/mpd/playlists' \
+   -e '/^#db_file/c db_file /var/lib/mpd/mpd.db' \
+   -e '/^#pid_file/c pid_file /run/mpd/mpd.pid' \
+   -e '/^#state_file/c state_file /var/lib/mpd/mpdstate' \
+   -e '/^#user/c user mpd' \
+   -i ${pkgdir}/etc/mpd.conf
+}

Copied: mpd/repos/testing-i686/install (from rev 191183, mpd/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2013-07-19 08:42:12 UTC (rev 191184)
@@ -0,0 +1,11 @@
+post_install() {
+   getent group mpd /dev/null || groupadd -r -g 45 mpd /dev/null
+   getent passwd mpd /dev/null || useradd -r -u 45 -g mpd -d 
/var/lib/mpd -s /bin/false -G audio mpd /dev/null
+   usr/bin/systemd-tmpfiles --create mpd.conf || true
+}
+
+post_remove() {
+   getent passwd mpd /dev/null  userdel mpd /dev/null
+   getent group mpd /dev/null  groupdel mpd /dev/null
+   true
+}

Copied: mpd/repos/testing-i686/tmpfiles.d (from rev 191183, 
mpd/trunk/tmpfiles.d)
===
--- testing-i686/tmpfiles.d (rev 0)
+++ testing-i686/tmpfiles.d 2013-07-19 08:42:12 UTC (rev 191184)
@@ -0,0 +1 @@
+d /run/mpd 0755 mpd mpd

Copied: mpd/repos/testing-x86_64/PKGBUILD (from rev 191183, mpd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 

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

2013-07-19 Thread Jelle van der Waa
Date: Friday, July 19, 2013 @ 12:21:35
  Author: jelle
Revision: 94300

upgpkg: calibre 0.9.40-1

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 01:50:09 UTC (rev 94299)
+++ PKGBUILD2013-07-19 10:21:35 UTC (rev 94300)
@@ -7,7 +7,7 @@
 # Contributor: Larry Hajali larryh...@gmail.com
 
 pkgname=calibre
-pkgver=0.9.39
+pkgver=0.9.40
 pkgrel=1
 pkgdesc=Ebook management application
 arch=('i686' 'x86_64') 
@@ -25,7 +25,7 @@
 
source=(http://sourceforge.net/projects/calibre/files/${pkgver}/calibre-${pkgver}.tar.xz;
 'desktop_integration.patch'
 'calibre-mount-helper')
-md5sums=('7ac795465e8e28da415141f1ad15dd2d'
+md5sums=('f63b0e5697c5e997ecaaeaa82a14cd60'
  '8353d1878c5a498b3e49eddef473605f'
  '675cd87d41342119827ef706055491e7')
 prepare(){



[arch-commits] Commit in calibre/repos (16 files)

2013-07-19 Thread Jelle van der Waa
Date: Friday, July 19, 2013 @ 12:22:46
  Author: jelle
Revision: 94301

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

Added:
  calibre/repos/community-i686/PKGBUILD
(from rev 94300, calibre/trunk/PKGBUILD)
  calibre/repos/community-i686/calibre-mount-helper
(from rev 94300, calibre/trunk/calibre-mount-helper)
  calibre/repos/community-i686/calibre.install
(from rev 94300, calibre/trunk/calibre.install)
  calibre/repos/community-i686/desktop_integration.patch
(from rev 94300, calibre/trunk/desktop_integration.patch)
  calibre/repos/community-x86_64/PKGBUILD
(from rev 94300, calibre/trunk/PKGBUILD)
  calibre/repos/community-x86_64/calibre-mount-helper
(from rev 94300, calibre/trunk/calibre-mount-helper)
  calibre/repos/community-x86_64/calibre.install
(from rev 94300, calibre/trunk/calibre.install)
  calibre/repos/community-x86_64/desktop_integration.patch
(from rev 94300, calibre/trunk/desktop_integration.patch)
Deleted:
  calibre/repos/community-i686/PKGBUILD
  calibre/repos/community-i686/calibre-mount-helper
  calibre/repos/community-i686/calibre.install
  calibre/repos/community-i686/desktop_integration.patch
  calibre/repos/community-x86_64/PKGBUILD
  calibre/repos/community-x86_64/calibre-mount-helper
  calibre/repos/community-x86_64/calibre.install
  calibre/repos/community-x86_64/desktop_integration.patch

+
 /PKGBUILD  |  176 +
 /calibre-mount-helper  |   56 ++
 /calibre.install   |   24 ++
 /desktop_integration.patch |  218 +++
 community-i686/PKGBUILD|   88 --
 community-i686/calibre-mount-helper|   28 ---
 community-i686/calibre.install |   12 -
 community-i686/desktop_integration.patch   |  109 -
 community-x86_64/PKGBUILD  |   88 --
 community-x86_64/calibre-mount-helper  |   28 ---
 community-x86_64/calibre.install   |   12 -
 community-x86_64/desktop_integration.patch |  109 -
 12 files changed, 474 insertions(+), 474 deletions(-)

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


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

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 13:49:24
  Author: heftig
Revision: 191185

1.4.0

Modified:
  libmbim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 08:42:12 UTC (rev 191184)
+++ PKGBUILD2013-07-19 11:49:24 UTC (rev 191185)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=libmbim
-pkgver=1.2.0
+pkgver=1.4.0
 pkgrel=1
 pkgdesc=MBIM modem protocol helper library
 arch=(i686 x86_64)
@@ -11,13 +11,13 @@
 depends=(glib2 bash systemd)
 makedepends=(gtk-doc python)
 options=('!libtool')
-source=(http://cgit.freedesktop.org/libmbim/libmbim/snapshot/$pkgname-$pkgver.tar.xz)
-sha256sums=('0b00085486bb34b772e56643d6605eaffc3b2dd620485bc598cab8b0c6051825')
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('a7fa909df229574eb11baac89075ac1366a2ac1670f586483bdf0173257cf781')
 
 build() {
   cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --with-tests
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static
   make
 }
 



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

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 13:52:46
  Author: heftig
Revision: 191186

switch to release tarball

Modified:
  libqmi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 11:49:24 UTC (rev 191185)
+++ PKGBUILD2013-07-19 11:52:46 UTC (rev 191186)
@@ -3,20 +3,20 @@
 
 pkgname=libqmi
 pkgver=1.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc=QMI modem protocol helper library
 arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/libqmi;
+url=http://www.freedesktop.org/wiki/Software/libqmi/;
 license=(GPL2)
 depends=(glib2 bash)
 makedepends=(gtk-doc python)
 options=('!libtool')
-source=($url/snapshot/$pkgname-$pkgver.tar.xz)
-sha256sums=('3a9d1359da703905147c173df4f6c0e5bb5dbca0a0fd3d0ce6efe26331bcafeb')
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('812515c36fd77c5f7eb9d52804e9666c4341e8c7dd3d932ca1e607b467831af3')
 
 build() {
   cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
 --disable-static --with-tests
   make
 }



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

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 13:53:49
  Author: heftig
Revision: 191187

fix url

Modified:
  libmbim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 11:52:46 UTC (rev 191186)
+++ PKGBUILD2013-07-19 11:53:49 UTC (rev 191187)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc=MBIM modem protocol helper library
 arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/libmbim/libmbim;
+url=http://www.freedesktop.org/wiki/Software/libmbim/;
 license=(GPL2)
 depends=(glib2 bash systemd)
 makedepends=(gtk-doc python)



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

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 13:59:31
  Author: heftig
Revision: 191188

1.0.0

Modified:
  modemmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 11:53:49 UTC (rev 191187)
+++ PKGBUILD2013-07-19 11:59:31 UTC (rev 191188)
@@ -4,34 +4,33 @@
 
 pkgname=modemmanager
 _realname=ModemManager
-pkgver=0.7.991
+pkgver=1.0.0
 pkgrel=1
 pkgdesc=Mobile broadband modem management service
 arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/ModemManager/ModemManager/;
+url=http://www.freedesktop.org/wiki/Software/ModemManager/;
 license=(GPL2)
 depends=(udev ppp libqmi libmbim polkit hicolor-icon-theme)
-makedepends=(intltool git gtk-doc)
+makedepends=(intltool gtk-doc)
 optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
 options=('!libtool')
 install=modemmanager.install
-#source=(http://download.gnome.org/sources/$_realname/${pkgver::3}/$_realname-$pkgver.tar.xz)
-source=(git://anongit.freedesktop.org/$_realname/$_realname#commit=a00f1d7)
-sha256sums=('SKIP')
+source=(http://www.freedesktop.org/software/$_realname/$_realname-$pkgver.tar.xz)
+sha256sums=('e0f3bbd9a7353f7d87be2391b8718a81d11f9ff8b1c067d640928322f8808563')
 
 build() {
-  cd $_realname
-   ./autogen.sh --prefix=/usr \
+  cd $_realname-$pkgver
+  ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --localstatedir=/var \
 --sbindir=/usr/bin \
 --with-udev-base-dir=/usr/lib/udev \
 --disable-static \
---with-polkit
+--with-polkit=permissive
   make
 }
 
 package() {
-  cd $_realname
+  cd $_realname-$pkgver
   make DESTDIR=$pkgdir install
 }



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

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 14:04:24
  Author: heftig
Revision: 191189

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

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

---+
 /PKGBUILD |   64 
 extra-i686/PKGBUILD   |   32 
 extra-x86_64/PKGBUILD |   32 
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-19 11:59:31 UTC (rev 191188)
+++ extra-i686/PKGBUILD 2013-07-19 12:04:24 UTC (rev 191189)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=libmbim
-pkgver=1.2.0
-pkgrel=1
-pkgdesc=MBIM modem protocol helper library
-arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/libmbim/libmbim;
-license=(GPL2)
-depends=(glib2 bash systemd)
-makedepends=(gtk-doc python)
-options=('!libtool')
-source=(http://cgit.freedesktop.org/libmbim/libmbim/snapshot/$pkgname-$pkgver.tar.xz)
-sha256sums=('0b00085486bb34b772e56643d6605eaffc3b2dd620485bc598cab8b0c6051825')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --with-tests
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libmbim/repos/extra-i686/PKGBUILD (from rev 191188, 
libmbim/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-19 12:04:24 UTC (rev 191189)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=libmbim
+pkgver=1.4.0
+pkgrel=1
+pkgdesc=MBIM modem protocol helper library
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libmbim/;
+license=(GPL2)
+depends=(glib2 bash systemd)
+makedepends=(gtk-doc python)
+options=('!libtool')
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('a7fa909df229574eb11baac89075ac1366a2ac1670f586483bdf0173257cf781')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-07-19 11:59:31 UTC (rev 191188)
+++ extra-x86_64/PKGBUILD   2013-07-19 12:04:24 UTC (rev 191189)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=libmbim
-pkgver=1.2.0
-pkgrel=1
-pkgdesc=MBIM modem protocol helper library
-arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/libmbim/libmbim;
-license=(GPL2)
-depends=(glib2 bash systemd)
-makedepends=(gtk-doc python)
-options=('!libtool')
-source=(http://cgit.freedesktop.org/libmbim/libmbim/snapshot/$pkgname-$pkgver.tar.xz)
-sha256sums=('0b00085486bb34b772e56643d6605eaffc3b2dd620485bc598cab8b0c6051825')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --with-tests
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libmbim/repos/extra-x86_64/PKGBUILD (from rev 191188, 
libmbim/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-07-19 12:04:24 UTC (rev 191189)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=libmbim
+pkgver=1.4.0
+pkgrel=1
+pkgdesc=MBIM modem protocol helper library
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libmbim/;
+license=(GPL2)
+depends=(glib2 bash systemd)
+makedepends=(gtk-doc python)
+options=('!libtool')
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('a7fa909df229574eb11baac89075ac1366a2ac1670f586483bdf0173257cf781')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 14:11:16
  Author: heftig
Revision: 191190

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

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

---+
 /PKGBUILD |   64 
 extra-i686/PKGBUILD   |   32 
 extra-x86_64/PKGBUILD |   32 
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-19 12:04:24 UTC (rev 191189)
+++ extra-i686/PKGBUILD 2013-07-19 12:11:16 UTC (rev 191190)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=libqmi
-pkgver=1.4.0
-pkgrel=1
-pkgdesc=QMI modem protocol helper library
-arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/libqmi;
-license=(GPL2)
-depends=(glib2 bash)
-makedepends=(gtk-doc python)
-options=('!libtool')
-source=($url/snapshot/$pkgname-$pkgver.tar.xz)
-sha256sums=('3a9d1359da703905147c173df4f6c0e5bb5dbca0a0fd3d0ce6efe26331bcafeb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --with-tests
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libqmi/repos/extra-i686/PKGBUILD (from rev 191189, 
libqmi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-19 12:11:16 UTC (rev 191190)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=libqmi
+pkgver=1.4.0
+pkgrel=2
+pkgdesc=QMI modem protocol helper library
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libqmi/;
+license=(GPL2)
+depends=(glib2 bash)
+makedepends=(gtk-doc python)
+options=('!libtool')
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('812515c36fd77c5f7eb9d52804e9666c4341e8c7dd3d932ca1e607b467831af3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --with-tests
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-07-19 12:04:24 UTC (rev 191189)
+++ extra-x86_64/PKGBUILD   2013-07-19 12:11:16 UTC (rev 191190)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=libqmi
-pkgver=1.4.0
-pkgrel=1
-pkgdesc=QMI modem protocol helper library
-arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/libqmi;
-license=(GPL2)
-depends=(glib2 bash)
-makedepends=(gtk-doc python)
-options=('!libtool')
-source=($url/snapshot/$pkgname-$pkgver.tar.xz)
-sha256sums=('3a9d1359da703905147c173df4f6c0e5bb5dbca0a0fd3d0ce6efe26331bcafeb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --with-tests
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libqmi/repos/extra-x86_64/PKGBUILD (from rev 191189, 
libqmi/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-07-19 12:11:16 UTC (rev 191190)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=libqmi
+pkgver=1.4.0
+pkgrel=2
+pkgdesc=QMI modem protocol helper library
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libqmi/;
+license=(GPL2)
+depends=(glib2 bash)
+makedepends=(gtk-doc python)
+options=('!libtool')
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('812515c36fd77c5f7eb9d52804e9666c4341e8c7dd3d932ca1e607b467831af3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --with-tests
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 14:16:04
  Author: heftig
Revision: 191191

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

Added:
  modemmanager/repos/extra-i686/PKGBUILD
(from rev 191190, modemmanager/trunk/PKGBUILD)
  modemmanager/repos/extra-i686/modemmanager.install
(from rev 191190, modemmanager/trunk/modemmanager.install)
  modemmanager/repos/extra-x86_64/PKGBUILD
(from rev 191190, modemmanager/trunk/PKGBUILD)
  modemmanager/repos/extra-x86_64/modemmanager.install
(from rev 191190, modemmanager/trunk/modemmanager.install)
Deleted:
  modemmanager/repos/extra-i686/PKGBUILD
  modemmanager/repos/extra-i686/modemmanager.install
  modemmanager/repos/extra-x86_64/PKGBUILD
  modemmanager/repos/extra-x86_64/modemmanager.install

---+
 /PKGBUILD |   72 
 /modemmanager.install |   26 +
 extra-i686/PKGBUILD   |   37 --
 extra-i686/modemmanager.install   |   13 --
 extra-x86_64/PKGBUILD |   37 --
 extra-x86_64/modemmanager.install |   13 --
 6 files changed, 98 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-19 12:11:16 UTC (rev 191190)
+++ extra-i686/PKGBUILD 2013-07-19 12:16:04 UTC (rev 191191)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=modemmanager
-_realname=ModemManager
-pkgver=0.7.991
-pkgrel=1
-pkgdesc=Mobile broadband modem management service
-arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/ModemManager/ModemManager/;
-license=(GPL2)
-depends=(udev ppp libqmi libmbim polkit hicolor-icon-theme)
-makedepends=(intltool git gtk-doc)
-optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
-options=('!libtool')
-install=modemmanager.install
-#source=(http://download.gnome.org/sources/$_realname/${pkgver::3}/$_realname-$pkgver.tar.xz)
-source=(git://anongit.freedesktop.org/$_realname/$_realname#commit=a00f1d7)
-sha256sums=('SKIP')
-
-build() {
-  cd $_realname
-   ./autogen.sh --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---with-udev-base-dir=/usr/lib/udev \
---disable-static \
---with-polkit
-  make
-}
-
-package() {
-  cd $_realname
-  make DESTDIR=$pkgdir install
-}

Copied: modemmanager/repos/extra-i686/PKGBUILD (from rev 191190, 
modemmanager/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-19 12:16:04 UTC (rev 191191)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=modemmanager
+_realname=ModemManager
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=Mobile broadband modem management service
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/ModemManager/;
+license=(GPL2)
+depends=(udev ppp libqmi libmbim polkit hicolor-icon-theme)
+makedepends=(intltool gtk-doc)
+optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
+options=('!libtool')
+install=modemmanager.install
+source=(http://www.freedesktop.org/software/$_realname/$_realname-$pkgver.tar.xz)
+sha256sums=('e0f3bbd9a7353f7d87be2391b8718a81d11f9ff8b1c067d640928322f8808563')
+
+build() {
+  cd $_realname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--with-udev-base-dir=/usr/lib/udev \
+--disable-static \
+--with-polkit=permissive
+  make
+}
+
+package() {
+  cd $_realname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/modemmanager.install
===
--- extra-i686/modemmanager.install 2013-07-19 12:11:16 UTC (rev 191190)
+++ extra-i686/modemmanager.install 2013-07-19 12:16:04 UTC (rev 191191)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P gtk-update-icon-cache /dev/null; then
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-  fi
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: modemmanager/repos/extra-i686/modemmanager.install (from rev 191190, 
modemmanager/trunk/modemmanager.install)
===
--- extra-i686/modemmanager.install (rev 0)
+++ extra-i686/modemmanager.install 2013-07-19 12:16:04 UTC (rev 191191)
@@ -0,0 +1,13 @@
+post_install() {
+  if type -P gtk-update-icon-cache /dev/null; then
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  fi
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+

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

2013-07-19 Thread Sergej Pupykin
Date: Friday, July 19, 2013 @ 17:21:00
  Author: spupykin
Revision: 94303

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

Added:
  darktable/repos/community-i686/PKGBUILD
(from rev 94302, darktable/trunk/PKGBUILD)
  darktable/repos/community-i686/darktable.install
(from rev 94302, darktable/trunk/darktable.install)
  darktable/repos/community-x86_64/PKGBUILD
(from rev 94302, darktable/trunk/PKGBUILD)
  darktable/repos/community-x86_64/darktable.install
(from rev 94302, darktable/trunk/darktable.install)
Deleted:
  darktable/repos/community-i686/PKGBUILD
  darktable/repos/community-i686/darktable.install
  darktable/repos/community-x86_64/PKGBUILD
  darktable/repos/community-x86_64/darktable.install

+
 /PKGBUILD  |   88 +++
 /darktable.install |   22 
 community-i686/PKGBUILD|   44 -
 community-i686/darktable.install   |   11 
 community-x86_64/PKGBUILD  |   44 -
 community-x86_64/darktable.install |   11 
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-19 15:20:40 UTC (rev 94302)
+++ community-i686/PKGBUILD 2013-07-19 15:21:00 UTC (rev 94303)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer:  Christian Himpel chressie at gmail dot com
-# Contributor: Johannes Hanika hanatos at gmail dot com
-
-pkgname=darktable
-pkgver=1.2.2
-_pkgver=1.2
-pkgrel=1
-pkgdesc=Utility to organize and develop raw images
-arch=('i686' 'x86_64')
-url=http://darktable.sf.net/
-license=('GPL3')
-depends=('exiv2=0.18' 'intltool=0.40' 'lcms2' 'lensfun=0.2.3' 'libglade' 
'dbus-glib'
-'curl' 'libgnome-keyring' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
-'libsoup' 'gtk-engines')
-makedepends=('intltool=0.40' 'cmake' 'librsvg')
-optdepends=('librsvg')
-install=darktable.install
-options=(!libtool)
-source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.xz)
-md5sums=('df2a2b02d6d855cfd8f1cf77c7e12995')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  mkdir -p build
-  cd build
-  CXXFLAGS+= -fpermissive
-  cmake \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DDONT_INSTALL_GCONF_SCHEMAS=True \
-  -DBINARY_PACKAGE_BUILD=1 \
-  -DUSE_GCONF_BACKEND=Off \
-  -DBUILD_USERMANUAL=False \
-  ..
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver/build
-  make DESTDIR=$pkgdir install
-  mv ${pkgdir}/usr/share/doc/darktable 
${pkgdir}/usr/share/doc/${pkgname}-${pkgver}
-}

Copied: darktable/repos/community-i686/PKGBUILD (from rev 94302, 
darktable/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-19 15:21:00 UTC (rev 94303)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer:  Christian Himpel chressie at gmail dot com
+# Contributor: Johannes Hanika hanatos at gmail dot com
+
+pkgname=darktable
+pkgver=1.2.2
+_pkgver=1.2
+pkgrel=2
+pkgdesc=Utility to organize and develop raw images
+arch=('i686' 'x86_64')
+url=http://darktable.sf.net/
+license=('GPL3')
+depends=('exiv2=0.18' 'intltool=0.40' 'lcms2' 'lensfun=0.2.3' 'libglade' 
'dbus-glib'
+'curl' 'libgnome-keyring' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
+'libsoup' 'gtk-engines' 'json-glib' 'flickcurl')
+makedepends=('intltool=0.40' 'cmake' 'librsvg')
+optdepends=('librsvg')
+install=darktable.install
+options=(!libtool)
+source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.xz)
+md5sums=('df2a2b02d6d855cfd8f1cf77c7e12995')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  mkdir -p build
+  cd build
+  CXXFLAGS+= -fpermissive
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DDONT_INSTALL_GCONF_SCHEMAS=True \
+  -DBINARY_PACKAGE_BUILD=1 \
+  -DUSE_GCONF_BACKEND=Off \
+  -DBUILD_USERMANUAL=False \
+  ..
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver/build
+  make DESTDIR=$pkgdir install
+  mv ${pkgdir}/usr/share/doc/darktable 
${pkgdir}/usr/share/doc/${pkgname}-${pkgver}
+}

Deleted: community-i686/darktable.install
===
--- community-i686/darktable.install2013-07-19 15:20:40 UTC (rev 94302)
+++ community-i686/darktable.install2013-07-19 15:21:00 UTC (rev 94303)
@@ -1,11 +0,0 @@
-post_install() {
-  [ -x `which update-desktop-database 2/dev/null` ]   
update-desktop-database -q
-}
-
-post_upgrade() {
-  [ -x `which update-desktop-database 2/dev/null` ]   
update-desktop-database -q
-}
-
-post_remove() {
-  [ 

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

2013-07-19 Thread Sergej Pupykin
Date: Friday, July 19, 2013 @ 17:20:40
  Author: spupykin
Revision: 94302

upgpkg: darktable 1.2.2-2

upd

Modified:
  darktable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 10:22:46 UTC (rev 94301)
+++ PKGBUILD2013-07-19 15:20:40 UTC (rev 94302)
@@ -6,14 +6,14 @@
 pkgname=darktable
 pkgver=1.2.2
 _pkgver=1.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Utility to organize and develop raw images
 arch=('i686' 'x86_64')
 url=http://darktable.sf.net/
 license=('GPL3')
 depends=('exiv2=0.18' 'intltool=0.40' 'lcms2' 'lensfun=0.2.3' 'libglade' 
'dbus-glib'
 'curl' 'libgnome-keyring' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
-'libsoup' 'gtk-engines')
+'libsoup' 'gtk-engines' 'json-glib' 'flickcurl')
 makedepends=('intltool=0.40' 'cmake' 'librsvg')
 optdepends=('librsvg')
 install=darktable.install



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

2013-07-19 Thread Sergej Pupykin
Date: Friday, July 19, 2013 @ 17:21:05
  Author: spupykin
Revision: 94304

upgpkg: parcellite 1.1.5-1

upd

Modified:
  parcellite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 15:21:00 UTC (rev 94303)
+++ PKGBUILD2013-07-19 15:21:05 UTC (rev 94304)
@@ -3,7 +3,7 @@
 # Maintainer: Alexander Fehr pizzapunk gmail com
 
 pkgname=parcellite
-pkgver=1.1.4
+pkgver=1.1.5
 pkgrel=1
 pkgdesc=Lightweight GTK+ clipboard manager
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('gtk2')
 makedepends=('intltool')
 source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz)
-md5sums=('81633e87f096030e1f23904927f4c32f')
+md5sums=('62f96188afc1cc2fe5b48f334bd4c99f')
 
 build() {
   cd $srcdir/parcellite-$pkgver



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

2013-07-19 Thread Sergej Pupykin
Date: Friday, July 19, 2013 @ 17:21:24
  Author: spupykin
Revision: 94305

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

Added:
  parcellite/repos/community-i686/ChangeLog
(from rev 94304, parcellite/trunk/ChangeLog)
  parcellite/repos/community-i686/PKGBUILD
(from rev 94304, parcellite/trunk/PKGBUILD)
  parcellite/repos/community-i686/history_menu_crash_patch
(from rev 94304, parcellite/trunk/history_menu_crash_patch)
  parcellite/repos/community-x86_64/ChangeLog
(from rev 94304, parcellite/trunk/ChangeLog)
  parcellite/repos/community-x86_64/PKGBUILD
(from rev 94304, parcellite/trunk/PKGBUILD)
  parcellite/repos/community-x86_64/history_menu_crash_patch
(from rev 94304, parcellite/trunk/history_menu_crash_patch)
Deleted:
  parcellite/repos/community-i686/ChangeLog
  parcellite/repos/community-i686/PKGBUILD
  parcellite/repos/community-i686/history_menu_crash_patch
  parcellite/repos/community-x86_64/ChangeLog
  parcellite/repos/community-x86_64/PKGBUILD
  parcellite/repos/community-x86_64/history_menu_crash_patch

---+
 /ChangeLog|   34 
 /PKGBUILD |   52 ++
 /history_menu_crash_patch |   78 
 community-i686/ChangeLog  |   17 --
 community-i686/PKGBUILD   |   22 ---
 community-i686/history_menu_crash_patch   |   39 --
 community-x86_64/ChangeLog|   17 --
 community-x86_64/PKGBUILD |   22 ---
 community-x86_64/history_menu_crash_patch |   39 --
 9 files changed, 164 insertions(+), 156 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2013-07-19 15:21:05 UTC (rev 94304)
+++ community-i686/ChangeLog2013-07-19 15:21:24 UTC (rev 94305)
@@ -1,17 +0,0 @@
-2009-05-05  Biru Ionut  biru.ionut at gmail.com
-  * parcellite-0.9.1-1:
-  New upstream release.
-
-2008-12-14  Alexander Fehr  pizzapunk gmail com
-
-  * parcellite-0.9-1:
-  New upstream release.
-
-2008-08-14  Alexander Fehr  pizzapunk gmail com
-
-  * parcellite-0.8-1:
-  New upstream release.
-  Changed url.
-  Added make dependency on intltool.
-  Changed download location to downloads.sourceforge.net.
-  Added ChangeLog.

Copied: parcellite/repos/community-i686/ChangeLog (from rev 94304, 
parcellite/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2013-07-19 15:21:24 UTC (rev 94305)
@@ -0,0 +1,17 @@
+2009-05-05  Biru Ionut  biru.ionut at gmail.com
+  * parcellite-0.9.1-1:
+  New upstream release.
+
+2008-12-14  Alexander Fehr  pizzapunk gmail com
+
+  * parcellite-0.9-1:
+  New upstream release.
+
+2008-08-14  Alexander Fehr  pizzapunk gmail com
+
+  * parcellite-0.8-1:
+  New upstream release.
+  Changed url.
+  Added make dependency on intltool.
+  Changed download location to downloads.sourceforge.net.
+  Added ChangeLog.

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-19 15:21:05 UTC (rev 94304)
+++ community-i686/PKGBUILD 2013-07-19 15:21:24 UTC (rev 94305)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Alexander Fehr pizzapunk gmail com
-
-pkgname=parcellite
-pkgver=1.1.4
-pkgrel=1
-pkgdesc=Lightweight GTK+ clipboard manager
-arch=('i686' 'x86_64')
-url=http://parcellite.sourceforge.net/;
-license=('GPL3')
-depends=('gtk2')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz)
-md5sums=('81633e87f096030e1f23904927f4c32f')
-
-build() {
-  cd $srcdir/parcellite-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-  make DESTDIR=$pkgdir install
-}

Copied: parcellite/repos/community-i686/PKGBUILD (from rev 94304, 
parcellite/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-19 15:21:24 UTC (rev 94305)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Alexander Fehr pizzapunk gmail com
+
+pkgname=parcellite
+pkgver=1.1.5
+pkgrel=1
+pkgdesc=Lightweight GTK+ clipboard manager
+arch=('i686' 'x86_64')
+url=http://parcellite.sourceforge.net/;
+license=('GPL3')
+depends=('gtk2')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz)
+md5sums=('62f96188afc1cc2fe5b48f334bd4c99f')
+
+build() {
+  cd $srcdir/parcellite-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/parcellite-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: 

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

2013-07-19 Thread Sergej Pupykin
Date: Friday, July 19, 2013 @ 17:21:45
  Author: spupykin
Revision: 94307

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

Added:
  passenger/repos/community-i686/PKGBUILD
(from rev 94306, passenger/trunk/PKGBUILD)
  passenger/repos/community-i686/passenger.install
(from rev 94306, passenger/trunk/passenger.install)
  passenger/repos/community-x86_64/PKGBUILD
(from rev 94306, passenger/trunk/PKGBUILD)
  passenger/repos/community-x86_64/passenger.install
(from rev 94306, passenger/trunk/passenger.install)
Deleted:
  passenger/repos/community-i686/PKGBUILD
  passenger/repos/community-i686/passenger.install
  passenger/repos/community-x86_64/PKGBUILD
  passenger/repos/community-x86_64/passenger.install

+
 /PKGBUILD  |   72 +++
 /passenger.install |   64 +++
 community-i686/PKGBUILD|   36 -
 community-i686/passenger.install   |   32 ---
 community-x86_64/PKGBUILD  |   36 -
 community-x86_64/passenger.install |   32 ---
 6 files changed, 136 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-19 15:21:29 UTC (rev 94306)
+++ community-i686/PKGBUILD 2013-07-19 15:21:45 UTC (rev 94307)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=passenger
-pkgver=4.0.7
-pkgrel=2
-pkgdesc=mod_rails passenger
-arch=('i686' 'x86_64')
-url=http://www.modrails.com;
-#http://rubyforge.org/frs/?group_id=5873
-license=('GPL')
-depends=('ruby' 'ruby-rack' 'curl')
-makedepends=('apache')
-install=passenger.install
-options=('!emptydirs')
-source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
-md5sums=('07f892d34164bfcc883a46d8b730b8e5')
-
-build(){
-  cd $srcdir/passenger-release-$pkgver
-
-#  sed -i 's/env python/env python2/' 
lib/phusion_passenger/wsgi/request_handler.py
-
-  ./bin/passenger-install-apache2-module -a
-  rake nginx
-}
-
-package() {
-  cd $srcdir/passenger-release-$pkgver
-
-  mkdir -p $pkgdir/usr/lib/passenger/
-  cp -R * $pkgdir/usr/lib/passenger/
-
-  mkdir -p $pkgdir/usr/lib/httpd/modules
-  ln -sf /usr/lib/passenger/buildout/apache2/mod_passenger.so 
$pkgdir/usr/lib/httpd/modules/mod_passenger.so
-}

Copied: passenger/repos/community-i686/PKGBUILD (from rev 94306, 
passenger/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-19 15:21:45 UTC (rev 94307)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=passenger
+pkgver=4.0.10
+pkgrel=1
+pkgdesc=mod_rails passenger
+arch=('i686' 'x86_64')
+url=http://www.modrails.com;
+#http://rubyforge.org/frs/?group_id=5873
+license=('GPL')
+depends=('ruby' 'ruby-rack' 'curl')
+makedepends=('apache')
+install=passenger.install
+options=('!emptydirs')
+source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
+md5sums=('a30ec12f12923aedd42ed2747903f65a')
+
+build(){
+  cd $srcdir/passenger-release-$pkgver
+
+#  sed -i 's/env python/env python2/' 
lib/phusion_passenger/wsgi/request_handler.py
+
+  ./bin/passenger-install-apache2-module -a
+  rake nginx
+}
+
+package() {
+  cd $srcdir/passenger-release-$pkgver
+
+  mkdir -p $pkgdir/usr/lib/passenger/
+  cp -R * $pkgdir/usr/lib/passenger/
+
+  mkdir -p $pkgdir/usr/lib/httpd/modules
+  ln -sf /usr/lib/passenger/buildout/apache2/mod_passenger.so 
$pkgdir/usr/lib/httpd/modules/mod_passenger.so
+}

Deleted: community-i686/passenger.install
===
--- community-i686/passenger.install2013-07-19 15:21:29 UTC (rev 94306)
+++ community-i686/passenger.install2013-07-19 15:21:45 UTC (rev 94307)
@@ -1,32 +0,0 @@
-post_install() {
-   echo Please edit your Apache configuration file, and add these lines:
-   echo 
-   echo LoadModule passenger_module 
/usr/lib/httpd/modules/mod_passenger.so
-   echo PassengerRoot /usr/lib/passenger
-   echo PassengerRuby /usr/bin/ruby
-   echo 
-   echo After you restart Apache, you are ready to deploy any number of 
Ruby on Rails
-   echo applications on Apache, without any further Ruby on 
Rails-specific
-   echo configuration!
-   echo 
-   echo 
-   echo Deploying a Ruby on Rails application: an example
-   echo 
-   echo Suppose you have a Ruby on Rails application in /somewhere. Add a 
virtual host
-   echo to your Apache configuration file, and set its DocumentRoot to
-   echo /somewhere/public, like this:
-   echo 
-   echo VirtualHost *:80
-   echo   ServerName www.yourhost.com
- 

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

2013-07-19 Thread Andreas Radke
Date: Friday, July 19, 2013 @ 17:01:13
  Author: andyrtr
Revision: 191193

upgpkg: vigra 1.9.0-4

boost rebuild; FS#36196

Modified:
  vigra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 14:13:15 UTC (rev 191192)
+++ PKGBUILD2013-07-19 15:01:13 UTC (rev 191193)
@@ -5,14 +5,14 @@
 pkgbase=vigra
 pkgname=('vigra' 'vigra-doc')
 pkgver=1.9.0
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url=http://hci.iwr.uni-heidelberg.de/vigra/;
 license=('custom:MIT')
 makedepends=(# runtime deps
  'libpng=1.5.7' 'libtiff=4.0.0' 'gcc-libs' 'sh' 'hdf5=1.8.7' 
'fftw'
 # additional makedeps
- 'cmake' 'python2-nose' 'doxygen' 'python2-sphinx' 'boost' 
'python2-numpy')
+ 'cmake' 'python2-nose' 'doxygen' 'python2-sphinx' 'boost=1.54.0' 
'python2-numpy')
 options=('!libtool')
 
source=(http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/${pkgname}-${pkgver}-src.tar.gz)
 md5sums=('b6155afe1ea967917d2be16d98a85404')



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

2013-07-19 Thread Andreas Radke
Date: Friday, July 19, 2013 @ 17:01:34
  Author: andyrtr
Revision: 191194

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

Added:
  vigra/repos/extra-i686/PKGBUILD
(from rev 191193, vigra/trunk/PKGBUILD)
  vigra/repos/extra-i686/vigra-1.7.1.gcc460.patch
(from rev 191193, vigra/trunk/vigra-1.7.1.gcc460.patch)
  vigra/repos/extra-x86_64/PKGBUILD
(from rev 191193, vigra/trunk/PKGBUILD)
  vigra/repos/extra-x86_64/vigra-1.7.1.gcc460.patch
(from rev 191193, vigra/trunk/vigra-1.7.1.gcc460.patch)
Deleted:
  vigra/repos/extra-i686/PKGBUILD
  vigra/repos/extra-i686/vigra-1.7.1.gcc460.patch
  vigra/repos/extra-x86_64/PKGBUILD
  vigra/repos/extra-x86_64/vigra-1.7.1.gcc460.patch

---+
 /PKGBUILD |  128 
 /vigra-1.7.1.gcc460.patch |   66 
 extra-i686/PKGBUILD   |   64 
 extra-i686/vigra-1.7.1.gcc460.patch   |   33 
 extra-x86_64/PKGBUILD |   64 
 extra-x86_64/vigra-1.7.1.gcc460.patch |   33 
 6 files changed, 194 insertions(+), 194 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-19 15:01:13 UTC (rev 191193)
+++ extra-i686/PKGBUILD 2013-07-19 15:01:34 UTC (rev 191194)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
-
-pkgbase=vigra
-pkgname=('vigra' 'vigra-doc')
-pkgver=1.9.0
-pkgrel=3
-arch=('i686' 'x86_64')
-url=http://hci.iwr.uni-heidelberg.de/vigra/;
-license=('custom:MIT')
-makedepends=(# runtime deps
- 'libpng=1.5.7' 'libtiff=4.0.0' 'gcc-libs' 'sh' 'hdf5=1.8.7' 
'fftw'
-# additional makedeps
- 'cmake' 'python2-nose' 'doxygen' 'python2-sphinx' 'boost' 
'python2-numpy')
-options=('!libtool')
-source=(http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/${pkgname}-${pkgver}-src.tar.gz)
-md5sums=('b6155afe1ea967917d2be16d98a85404')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
-  -DPYTHON_EXECUTABLE=/usr/bin/python2 \
-  -DWITH_VIGRANUMPY=1 \
-  -DDOCINSTALL=share/doc
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make -k check || /bin/true # i686 fails
-}
-
-package_vigra() {
-  pkgdesc=Computer vision library
-  depends=('libpng=1.5.7' 'libtiff=4.0.0' 'gcc-libs' 'sh' 'hdf5=1.8.7' 
'fftw')
-  optdepends=('python2: for python bindings'
-  'boost-libs: for python bindings')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  # license
-  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  
-  # remove doc
-  rm -rf ${pkgdir}/usr/share/doc
-  
-  #fix shebang for python2
-  sed -i 's|python$|python2|' $pkgdir/usr/bin/vigra-config
-}
-
-package_vigra-doc() {
-  pkgdesc=Computer vision library - documentation and examples
-  #depends=('vigra')
-  #arch=('any')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  # cleanup
-  rm -rf ${pkgdir}/usr/{bin,include,lib}
-
-  # license
-  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: vigra/repos/extra-i686/PKGBUILD (from rev 191193, vigra/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-19 15:01:34 UTC (rev 191194)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+
+pkgbase=vigra
+pkgname=('vigra' 'vigra-doc')
+pkgver=1.9.0
+pkgrel=4
+arch=('i686' 'x86_64')
+url=http://hci.iwr.uni-heidelberg.de/vigra/;
+license=('custom:MIT')
+makedepends=(# runtime deps
+ 'libpng=1.5.7' 'libtiff=4.0.0' 'gcc-libs' 'sh' 'hdf5=1.8.7' 
'fftw'
+# additional makedeps
+ 'cmake' 'python2-nose' 'doxygen' 'python2-sphinx' 'boost=1.54.0' 
'python2-numpy')
+options=('!libtool')
+source=(http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/${pkgname}-${pkgver}-src.tar.gz)
+md5sums=('b6155afe1ea967917d2be16d98a85404')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+  -DWITH_VIGRANUMPY=1 \
+  -DDOCINSTALL=share/doc
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make -k check || /bin/true # i686 fails
+}
+
+package_vigra() {
+  pkgdesc=Computer vision library
+  depends=('libpng=1.5.7' 'libtiff=4.0.0' 'gcc-libs' 'sh' 'hdf5=1.8.7' 
'fftw')
+  optdepends=('python2: for python bindings'
+  'boost-libs: for python bindings')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # license
+  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  
+  # remove doc
+  rm -rf 

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

2013-07-19 Thread Sergej Pupykin
Date: Friday, July 19, 2013 @ 17:21:29
  Author: spupykin
Revision: 94306

upgpkg: passenger 4.0.10-1

upd

Modified:
  passenger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 15:21:24 UTC (rev 94305)
+++ PKGBUILD2013-07-19 15:21:29 UTC (rev 94306)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=passenger
-pkgver=4.0.7
-pkgrel=2
+pkgver=4.0.10
+pkgrel=1
 pkgdesc=mod_rails passenger
 arch=('i686' 'x86_64')
 url=http://www.modrails.com;
@@ -14,7 +14,7 @@
 install=passenger.install
 options=('!emptydirs')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
-md5sums=('07f892d34164bfcc883a46d8b730b8e5')
+md5sums=('a30ec12f12923aedd42ed2747903f65a')
 
 build(){
   cd $srcdir/passenger-release-$pkgver



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

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 17:52:07
  Author: heftig
Revision: 191195

3.8.3

Modified:
  bijiben/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 15:01:34 UTC (rev 191194)
+++ PKGBUILD2013-07-19 15:52:07 UTC (rev 191195)
@@ -2,18 +2,18 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=bijiben
-pkgver=3.8.2
+pkgver=3.8.3
 pkgrel=1
 pkgdesc=Write out notes, every detail matters
 arch=(i686 x86_64)
 url=https://live.gnome.org/Bijiben;
 license=(GPL)
-depends=(libtracker-sparql clutter-gtk libzeitgeist webkitgtk3 
hicolor-icon-theme desktop-file-utils)
+depends=(tracker clutter-gtk libzeitgeist webkitgtk3 hicolor-icon-theme 
desktop-file-utils)
 makedepends=(intltool itstool)
 options=(!emptydirs)
 install=bijiben.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('c8c02c3701594d0b7f212c25613c097e2343d104157518c7c8cfb6a1bc111cf8')
+sha256sums=('287742267c7484a92ead8c896091ceb0b2603ba8b5dccf304ea534456735beec')
 
 build() {
   cd $pkgname-$pkgver



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

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 17:53:05
  Author: heftig
Revision: 191196

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

Added:
  bijiben/repos/extra-i686/PKGBUILD
(from rev 191195, bijiben/trunk/PKGBUILD)
  bijiben/repos/extra-i686/bijiben.install
(from rev 191195, bijiben/trunk/bijiben.install)
  bijiben/repos/extra-x86_64/PKGBUILD
(from rev 191195, bijiben/trunk/PKGBUILD)
  bijiben/repos/extra-x86_64/bijiben.install
(from rev 191195, bijiben/trunk/bijiben.install)
Deleted:
  bijiben/repos/extra-i686/PKGBUILD
  bijiben/repos/extra-i686/bijiben.install
  bijiben/repos/extra-x86_64/PKGBUILD
  bijiben/repos/extra-x86_64/bijiben.install

--+
 /PKGBUILD|   56 +
 /bijiben.install |   26 +++
 extra-i686/PKGBUILD  |   28 
 extra-i686/bijiben.install   |   13 -
 extra-x86_64/PKGBUILD|   28 
 extra-x86_64/bijiben.install |   13 -
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-19 15:52:07 UTC (rev 191195)
+++ extra-i686/PKGBUILD 2013-07-19 15:53:05 UTC (rev 191196)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=bijiben
-pkgver=3.8.2
-pkgrel=1
-pkgdesc=Write out notes, every detail matters
-arch=(i686 x86_64)
-url=https://live.gnome.org/Bijiben;
-license=(GPL)
-depends=(libtracker-sparql clutter-gtk libzeitgeist webkitgtk3 
hicolor-icon-theme desktop-file-utils)
-makedepends=(intltool itstool)
-options=(!emptydirs)
-install=bijiben.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('c8c02c3701594d0b7f212c25613c097e2343d104157518c7c8cfb6a1bc111cf8')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: bijiben/repos/extra-i686/PKGBUILD (from rev 191195, 
bijiben/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-19 15:53:05 UTC (rev 191196)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=bijiben
+pkgver=3.8.3
+pkgrel=1
+pkgdesc=Write out notes, every detail matters
+arch=(i686 x86_64)
+url=https://live.gnome.org/Bijiben;
+license=(GPL)
+depends=(tracker clutter-gtk libzeitgeist webkitgtk3 hicolor-icon-theme 
desktop-file-utils)
+makedepends=(intltool itstool)
+options=(!emptydirs)
+install=bijiben.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::3}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('287742267c7484a92ead8c896091ceb0b2603ba8b5dccf304ea534456735beec')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/bijiben.install
===
--- extra-i686/bijiben.install  2013-07-19 15:52:07 UTC (rev 191195)
+++ extra-i686/bijiben.install  2013-07-19 15:53:05 UTC (rev 191196)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: bijiben/repos/extra-i686/bijiben.install (from rev 191195, 
bijiben/trunk/bijiben.install)
===
--- extra-i686/bijiben.install  (rev 0)
+++ extra-i686/bijiben.install  2013-07-19 15:53:05 UTC (rev 191196)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-07-19 15:52:07 UTC (rev 191195)
+++ extra-x86_64/PKGBUILD   2013-07-19 15:53:05 UTC (rev 191196)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=bijiben
-pkgver=3.8.2
-pkgrel=1
-pkgdesc=Write out notes, every detail matters
-arch=(i686 x86_64)
-url=https://live.gnome.org/Bijiben;
-license=(GPL)
-depends=(libtracker-sparql clutter-gtk libzeitgeist webkitgtk3 
hicolor-icon-theme desktop-file-utils)
-makedepends=(intltool itstool)

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

2013-07-19 Thread Andreas Radke
Date: Friday, July 19, 2013 @ 19:34:12
  Author: andyrtr
Revision: 191197

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

Added:
  gnutls/repos/extra-i686/PKGBUILD
(from rev 191196, gnutls/trunk/PKGBUILD)
  gnutls/repos/extra-i686/gnutls.install
(from rev 191196, gnutls/trunk/gnutls.install)
  gnutls/repos/extra-x86_64/PKGBUILD
(from rev 191196, gnutls/trunk/PKGBUILD)
  gnutls/repos/extra-x86_64/gnutls.install
(from rev 191196, gnutls/trunk/gnutls.install)
Deleted:
  gnutls/repos/extra-i686/PKGBUILD
  gnutls/repos/extra-i686/check_fix.diff
  gnutls/repos/extra-i686/gnutls.install
  gnutls/repos/extra-x86_64/PKGBUILD
  gnutls/repos/extra-x86_64/check_fix.diff
  gnutls/repos/extra-x86_64/gnutls.install

-+
 /PKGBUILD   |   88 ++
 /gnutls.install |   40 +++
 extra-i686/PKGBUILD |   50 ---
 extra-i686/check_fix.diff   |   34 
 extra-i686/gnutls.install   |   20 -
 extra-x86_64/PKGBUILD   |   50 ---
 extra-x86_64/check_fix.diff |   34 
 extra-x86_64/gnutls.install |   20 -
 8 files changed, 128 insertions(+), 208 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-19 15:53:05 UTC (rev 191196)
+++ extra-i686/PKGBUILD 2013-07-19 17:34:12 UTC (rev 191197)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgname=gnutls
-pkgver=3.2.1
-pkgrel=1
-pkgdesc=A library which provides a secure layer over a reliable transport 
layer
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL2.1')
-url=http://www.gnutls.org/;
-install=gnutls.install
-options=('!libtool' '!zipman')
-depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
-makedepends=('valgrind' 'strace' 'datefudge')
-source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/${pkgname}-${pkgver}.tar.xz{,.sig}
-check_fix.diff)
-md5sums=('c220b50736f61292ed8722d5132b6a3e'
- 'SKIP'
- '53ae2a58a401d9e6d052910670da8b07')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  
-  # fix i686 test suite failure
-  patch -Np1 -i ${srcdir}/check_fix.diff
-  
-  ./configure --prefix=/usr \
-   --with-zlib \
-   --disable-static \
-   --disable-guile \
-   --disable-valgrind-tests
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make -k check
-  #make -j1 check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  
-  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
-  # gzip -9 all files in infodir and manpages manually
-  find $pkgdir/usr/share/info -name '*.info*' -exec gzip -9 {} \;
-  find $pkgdir/usr/share/man -exec gzip -9 {} \;
-}

Copied: gnutls/repos/extra-i686/PKGBUILD (from rev 191196, 
gnutls/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-19 17:34:12 UTC (rev 191197)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=gnutls
+pkgver=3.2.2
+pkgrel=1
+pkgdesc=A library which provides a secure layer over a reliable transport 
layer
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL2.1')
+url=http://www.gnutls.org/;
+install=gnutls.install
+options=('!libtool' '!zipman')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
+makedepends=('valgrind' 'strace' 'datefudge')
+source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('9dd691ad1ccdb7386029809afef6b5ea'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --with-zlib \
+   --disable-static \
+   --disable-guile \
+   --disable-valgrind-tests
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  #make -k check
+  make -j1 check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
+  # gzip -9 all files in infodir and manpages manually
+  find $pkgdir/usr/share/info -name '*.info*' -exec gzip -9 {} \;
+  find $pkgdir/usr/share/man -exec gzip -9 {} \;
+}

Deleted: extra-i686/check_fix.diff
===
--- extra-i686/check_fix.diff   2013-07-19 15:53:05 UTC (rev 191196)
+++ extra-i686/check_fix.diff   2013-07-19 17:34:12 UTC (rev 191197)
@@ -1,34 +0,0 @@
-From b12040aeab5fbaf02677571db1d8bf1995bd5ee0 Mon Sep 17 00:00:00 2001
-From: Nikos Mavrogiannopoulos n...@gnutls.org
-Date: Sun, 2 Jun 2013 12:10:06 +0200
-Subject: [PATCH] Avoid 

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

2013-07-19 Thread Ray Rashif
Date: Friday, July 19, 2013 @ 19:36:37
  Author: schiv
Revision: 94309

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

Added:
  qtractor/repos/community-i686/PKGBUILD
(from rev 94308, qtractor/trunk/PKGBUILD)
  qtractor/repos/community-i686/qtractor.install
(from rev 94308, qtractor/trunk/qtractor.install)
  qtractor/repos/community-x86_64/PKGBUILD
(from rev 94308, qtractor/trunk/PKGBUILD)
  qtractor/repos/community-x86_64/qtractor.install
(from rev 94308, qtractor/trunk/qtractor.install)
Deleted:
  qtractor/repos/community-i686/PKGBUILD
  qtractor/repos/community-i686/qtractor.install
  qtractor/repos/community-x86_64/PKGBUILD
  qtractor/repos/community-x86_64/qtractor.install

---+
 /PKGBUILD |   66 
 /qtractor.install |   26 ++
 community-i686/PKGBUILD   |   33 --
 community-i686/qtractor.install   |   13 ---
 community-x86_64/PKGBUILD |   33 --
 community-x86_64/qtractor.install |   13 ---
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-19 17:36:12 UTC (rev 94308)
+++ community-i686/PKGBUILD 2013-07-19 17:36:37 UTC (rev 94309)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Philipp Überbacher hollunder at gmx dot at
-
-pkgname=qtractor
-pkgver=0.5.9
-pkgrel=1
-pkgdesc=Audio/MIDI multitrack sequencer
-arch=('i686' 'x86_64')
-url=http://qtractor.sourceforge.net/;
-license=('GPL')
-depends=('qt4' 'suil' 'lilv' 'libmad' 'liblo'
- 'rubberband' 'shared-mime-info')
-makedepends=('ladspa' 'dssi')
-[ $CARCH = i686 ]  optdepends=('dssi-vst: win32 VST support')
-install=qtractor.install
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('92e18a45e8a378761119440eb677a908')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package () {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: qtractor/repos/community-i686/PKGBUILD (from rev 94308, 
qtractor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-19 17:36:37 UTC (rev 94309)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Philipp Überbacher hollunder at gmx dot at
+
+pkgname=qtractor
+pkgver=0.5.10
+pkgrel=1
+pkgdesc=Audio/MIDI multitrack sequencer
+arch=('i686' 'x86_64')
+url=http://qtractor.sourceforge.net/;
+license=('GPL')
+depends=('qt4' 'suil' 'lilv' 'libmad' 'liblo'
+ 'rubberband' 'shared-mime-info')
+makedepends=('ladspa' 'dssi')
+[ $CARCH = i686 ]  optdepends=('dssi-vst: win32 VST support')
+install=qtractor.install
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('54a9c2b4eb0f65e44bdc27c91849a341')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package () {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/qtractor.install
===
--- community-i686/qtractor.install 2013-07-19 17:36:12 UTC (rev 94308)
+++ community-i686/qtractor.install 2013-07-19 17:36:37 UTC (rev 94309)
@@ -1,13 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-  update-mime-database usr/share/mime  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: qtractor/repos/community-i686/qtractor.install (from rev 94308, 
qtractor/trunk/qtractor.install)
===
--- community-i686/qtractor.install (rev 0)
+++ community-i686/qtractor.install 2013-07-19 17:36:37 UTC (rev 94309)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-mime-database usr/share/mime  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-07-19 17:36:12 UTC (rev 94308)
+++ community-x86_64/PKGBUILD   2013-07-19 17:36:37 UTC (rev 94309)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Philipp Überbacher hollunder at gmx dot at
-
-pkgname=qtractor
-pkgver=0.5.9
-pkgrel=1
-pkgdesc=Audio/MIDI multitrack sequencer
-arch=('i686' 'x86_64')
-url=http://qtractor.sourceforge.net/;
-license=('GPL')
-depends=('qt4' 

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

2013-07-19 Thread Ray Rashif
Date: Friday, July 19, 2013 @ 19:36:12
  Author: schiv
Revision: 94308

upgpkg: qtractor 0.5.10-1

upstream release

Modified:
  qtractor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 15:21:45 UTC (rev 94307)
+++ PKGBUILD2013-07-19 17:36:12 UTC (rev 94308)
@@ -3,7 +3,7 @@
 # Contributor: Philipp Überbacher hollunder at gmx dot at
 
 pkgname=qtractor
-pkgver=0.5.9
+pkgver=0.5.10
 pkgrel=1
 pkgdesc=Audio/MIDI multitrack sequencer
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 [ $CARCH = i686 ]  optdepends=('dssi-vst: win32 VST support')
 install=qtractor.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('92e18a45e8a378761119440eb677a908')
+md5sums=('54a9c2b4eb0f65e44bdc27c91849a341')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2013-07-19 Thread Dave Reisner
Date: Friday, July 19, 2013 @ 21:58:01
  Author: dreisner
Revision: 191198

upgpkg: mkinitcpio 0.15.0-1

https://projects.archlinux.org/mkinitcpio.git/log/?id=0.14.0..0.15.0

Modified:
  mkinitcpio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 17:34:12 UTC (rev 191197)
+++ PKGBUILD2013-07-19 19:58:01 UTC (rev 191198)
@@ -3,7 +3,7 @@
 # Maintainer: Thomas Bächler tho...@archlinux.org
 
 pkgname=mkinitcpio
-pkgver=0.14.0
+pkgver=0.15.0
 pkgrel=1
 pkgdesc=Modular initramfs image creation utility
 arch=('any')
@@ -18,7 +18,7 @@
 backup=('etc/mkinitcpio.conf')
 
source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
 install=mkinitcpio.install
-sha256sums=('d482339da733d1282cb9ff8f5c1c86463ba745eb092f1e8e3829753c2fe9db46'
+sha256sums=('2a00421c5ce4abfcc971c71a6efd22f6bbaf0e541f9a93410f35e864c818c3db'
 'SKIP')
 
 package() {



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

2013-07-19 Thread Dave Reisner
Date: Friday, July 19, 2013 @ 21:58:13
  Author: dreisner
Revision: 191199

archrelease: copy trunk to testing-any

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

+
 PKGBUILD   |   27 +++
 mkinitcpio.install |   15 +++
 2 files changed, 42 insertions(+)

Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 191198, 
mkinitcpio/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-07-19 19:58:13 UTC (rev 191199)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=mkinitcpio
+pkgver=0.15.0
+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' 'util-linux=2.23' 
'libarchive'
+ 'coreutils' 'bash' 'findutils' 'grep' 'filesystem=2011.10-1' 'gzip' 
'systemd')
+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{,.sig})
+install=mkinitcpio.install
+sha256sums=('2a00421c5ce4abfcc971c71a6efd22f6bbaf0e541f9a93410f35e864c818c3db'
+'SKIP')
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}
+

Copied: mkinitcpio/repos/testing-any/mkinitcpio.install (from rev 191198, 
mkinitcpio/trunk/mkinitcpio.install)
===
--- testing-any/mkinitcpio.install  (rev 0)
+++ testing-any/mkinitcpio.install  2013-07-19 19:58:13 UTC (rev 191199)
@@ -0,0 +1,15 @@
+#!/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
+
+  if [ $(vercmp 0.12.0 $2) -eq 1 ]; then
+printf '== The block hook has replaced several hooks:\n'
+printf '   fw, sata, pata, scsi, virtio, mmc, usb\n'
+printf 'Replace any and all of these in /etc/mkinitcpio.conf with a 
single\n'
+printf 'instance of the block hook\n'
+  fi
+}



[arch-commits] Commit in gnome-settings-daemon/repos (10 files)

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 22:57:52
  Author: heftig
Revision: 191201

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

Added:
  gnome-settings-daemon/repos/extra-i686/PKGBUILD
(from rev 191200, gnome-settings-daemon/trunk/PKGBUILD)
  gnome-settings-daemon/repos/extra-i686/gnome-settings-daemon.install
(from rev 191200, gnome-settings-daemon/trunk/gnome-settings-daemon.install)
  gnome-settings-daemon/repos/extra-x86_64/PKGBUILD
(from rev 191200, gnome-settings-daemon/trunk/PKGBUILD)
  gnome-settings-daemon/repos/extra-x86_64/gnome-settings-daemon.install
(from rev 191200, gnome-settings-daemon/trunk/gnome-settings-daemon.install)
Deleted:
  gnome-settings-daemon/repos/extra-i686/PKGBUILD
  gnome-settings-daemon/repos/extra-i686/git-fixes.patch
  gnome-settings-daemon/repos/extra-i686/gnome-settings-daemon.install
  gnome-settings-daemon/repos/extra-x86_64/PKGBUILD
  gnome-settings-daemon/repos/extra-x86_64/git-fixes.patch
  gnome-settings-daemon/repos/extra-x86_64/gnome-settings-daemon.install

+
 /PKGBUILD  |   70 +++
 /gnome-settings-daemon.install |   24 ++
 extra-i686/PKGBUILD|   45 
 extra-i686/git-fixes.patch |  258 ---
 extra-i686/gnome-settings-daemon.install   |   12 -
 extra-x86_64/PKGBUILD  |   45 
 extra-x86_64/git-fixes.patch   |  258 ---
 extra-x86_64/gnome-settings-daemon.install |   12 -
 8 files changed, 94 insertions(+), 630 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-19 20:56:35 UTC (rev 191200)
+++ extra-i686/PKGBUILD 2013-07-19 20:57:52 UTC (rev 191201)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=gnome-settings-daemon
-pkgver=3.8.3
-pkgrel=2
-pkgdesc=The GNOME Settings daemon
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dconf' 'gnome-desktop' 'gsettings-desktop-schemas' 
'hicolor-icon-theme' 'libcanberra-pulse' 'libnotify'
- 'libsystemd' 'libwacom' 'pulseaudio' 'pulseaudio-alsa' 'upower' 
'ibus' 'librsvg')
-makedepends=('intltool' 'xf86-input-wacom' 'libxslt' 'docbook-xsl')
-options=('!emptydirs' '!libtool')
-install=gnome-settings-daemon.install
-url=http://www.gnome.org;
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-git-fixes.patch)
-sha256sums=('00e7f46c9a6fb8b148255adfcdd26bc5f2c1d393b8dfbac69da100c8dcfa1b6c'
-'30b0a42df9ea0c6c18ed51cb8f150008e4b5ab624eb420f0251d08ab2503c330')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../git-fixes.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  aclocal
-  autoconf
-  automake --add-missing
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/gnome-settings-daemon --disable-static
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gnome-settings-daemon/repos/extra-i686/PKGBUILD (from rev 191200, 
gnome-settings-daemon/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-19 20:57:52 UTC (rev 191201)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=gnome-settings-daemon
+pkgver=3.8.4
+pkgrel=1
+pkgdesc=The GNOME Settings daemon
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dconf' 'gnome-desktop' 'gsettings-desktop-schemas' 
'hicolor-icon-theme' 'libcanberra-pulse' 'libnotify'
+ 'libsystemd' 'libwacom' 'pulseaudio' 'pulseaudio-alsa' 'upower' 
'ibus' 'librsvg')
+makedepends=('intltool' 'xf86-input-wacom' 'libxslt' 'docbook-xsl')
+options=('!emptydirs' '!libtool')
+install=gnome-settings-daemon.install
+url=http://www.gnome.org;
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('03ad56a8d517faf0754efcf2e7e26257e9ddbe32ef2931f3579138659cc178bc')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/git-fixes.patch
===
--- extra-i686/git-fixes.patch  2013-07-19 20:56:35 UTC (rev 191200)
+++ extra-i686/git-fixes.patch  2013-07-19 20:57:52 UTC (rev 191201)
@@ -1,258 +0,0 @@
-diff --git 

[arch-commits] Commit in gnome-settings-daemon/trunk (PKGBUILD git-fixes.patch)

2013-07-19 Thread Jan Steffens
Date: Friday, July 19, 2013 @ 22:56:35
  Author: heftig
Revision: 191200

3.8.4

Modified:
  gnome-settings-daemon/trunk/PKGBUILD
Deleted:
  gnome-settings-daemon/trunk/git-fixes.patch

-+
 PKGBUILD|   20 +---
 git-fixes.patch |  258 --
 2 files changed, 5 insertions(+), 273 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 19:58:13 UTC (rev 191199)
+++ PKGBUILD2013-07-19 20:56:35 UTC (rev 191200)
@@ -2,8 +2,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=gnome-settings-daemon
-pkgver=3.8.3
-pkgrel=2
+pkgver=3.8.4
+pkgrel=1
 pkgdesc=The GNOME Settings daemon
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -14,24 +14,14 @@
 install=gnome-settings-daemon.install
 url=http://www.gnome.org;
 groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-git-fixes.patch)
-sha256sums=('00e7f46c9a6fb8b148255adfcdd26bc5f2c1d393b8dfbac69da100c8dcfa1b6c'
-'30b0a42df9ea0c6c18ed51cb8f150008e4b5ab624eb420f0251d08ab2503c330')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('03ad56a8d517faf0754efcf2e7e26257e9ddbe32ef2931f3579138659cc178bc')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../git-fixes.patch
-}
-
 build() {
   cd $pkgname-$pkgver
-  aclocal
-  autoconf
-  automake --add-missing
 
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/gnome-settings-daemon --disable-static
+  --libexecdir=/usr/lib/$pkgname --disable-static
 
   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool

Deleted: git-fixes.patch
===
--- git-fixes.patch 2013-07-19 19:58:13 UTC (rev 191199)
+++ git-fixes.patch 2013-07-19 20:56:35 UTC (rev 191200)
@@ -1,258 +0,0 @@
-diff --git a/data/gnome-settings-daemon.desktop.in.in 
b/data/gnome-settings-daemon.desktop.in.in
-index c5a5518..ff71eee 100644
 a/data/gnome-settings-daemon.desktop.in.in
-+++ b/data/gnome-settings-daemon.desktop.in.in
-@@ -1,7 +1,7 @@
- [Desktop Entry]
- Type=Application
- _Name=GNOME Settings Daemon
--Exec=@libexecdir@/gnome-settings-daemon
-+Exec=@libexecdir@/gnome-settings-daemon-localeexec
- OnlyShowIn=GNOME;
- NoDisplay=true
- X-GNOME-Autostart-Phase=Initialization
-diff --git a/gnome-settings-daemon/Makefile.am 
b/gnome-settings-daemon/Makefile.am
-index 194a7cc..94b3861 100644
 a/gnome-settings-daemon/Makefile.am
-+++ b/gnome-settings-daemon/Makefile.am
-@@ -48,6 +48,15 @@ gsddir = $(libexecdir)
- gsd_PROGRAMS = \
-   gnome-settings-daemon
- 
-+gsd_SCRIPTS = \
-+  gnome-settings-daemon-localeexec
-+
-+EXTRA_DIST = \
-+  gnome-settings-daemon-localeexec.in
-+
-+gnome-settings-daemon-localeexec: gnome-settings-daemon-localeexec.in
-+  $(AM_V_GEN) sed -e s|\@libexecdir\@|$(libexecdir)| -e 
s|\@prefix\@|$(prefix)|  $  $@.tmp  mv $@.tmp $@
-+
- apidir   = 
$(includedir)/gnome-settings-daemon-$(GSD_API_VERSION)/gnome-settings-daemon
- api_DATA =\
-   gnome-settings-plugin.h
-diff --git a/gnome-settings-daemon/gnome-settings-daemon-localeexec.in 
b/gnome-settings-daemon/gnome-settings-daemon-localeexec.in
-new file mode 100755
-index 000..eed91a4
 /dev/null
-+++ b/gnome-settings-daemon/gnome-settings-daemon-localeexec.in
-@@ -0,0 +1,20 @@
-+#!/bin/sh
-+
-+SETTING=$(gsettings get org.gnome.system.locale region)
-+REGION=${SETTING#\'}
-+REGION=${REGION%\'}
-+
-+if [ -n $REGION ]; then
-+  export LC_TIME=$REGION
-+  export LC_NUMERIC=$REGION
-+  export LC_MONETARY=$REGION
-+  export LC_MEASUREMENT=$REGION
-+  export LC_PAPER=$REGION
-+fi
-+
-+if [ -x @prefix@/bin/ibus-daemon ]; then
-+  export QT_IM_MODULE=ibus
-+  export XMODIFIERS=@im=ibus
-+fi
-+
-+exec @libexecdir@/gnome-settings-daemon
-diff --git a/gnome-settings-daemon/main.c b/gnome-settings-daemon/main.c
-index 24c1598..16017df 100644
 a/gnome-settings-daemon/main.c
-+++ b/gnome-settings-daemon/main.c
-@@ -279,37 +279,6 @@ set_legacy_ibus_env_vars (GDBusProxy *proxy)
- }
- #endif
- 
--/* Keep synchronised with set_locale() and
-- * set_legacy_ibus_env_vars() above */
--static void
--set_locale_env (void)
--{
--GSettings *locale_settings;
--gchar *region;
--
--/* Set locale environment */
--locale_settings = g_settings_new (org.gnome.system.locale);
--region = g_settings_get_string (locale_settings, region);
--if (region[0]) {
--g_setenv (LC_TIME, region, TRUE);
--g_setenv (LC_NUMERIC, region, TRUE);
--g_setenv (LC_MONETARY, region, TRUE);
--g_setenv (LC_MEASUREMENT, region, TRUE);
--g_setenv (LC_PAPER, region, TRUE);
-- 

[arch-commits] Commit in mpd/repos (14 files)

2013-07-19 Thread Gaetan Bisson
Date: Saturday, July 20, 2013 @ 02:58:51
  Author: bisson
Revision: 191202

db-move: moved mpd from [testing] to [extra] (i686, x86_64)

Added:
  mpd/repos/extra-i686/PKGBUILD
(from rev 191201, mpd/repos/testing-i686/PKGBUILD)
  mpd/repos/extra-i686/install
(from rev 191201, mpd/repos/testing-i686/install)
  mpd/repos/extra-i686/tmpfiles.d
(from rev 191201, mpd/repos/testing-i686/tmpfiles.d)
  mpd/repos/extra-x86_64/PKGBUILD
(from rev 191201, mpd/repos/testing-x86_64/PKGBUILD)
  mpd/repos/extra-x86_64/install
(from rev 191201, mpd/repos/testing-x86_64/install)
  mpd/repos/extra-x86_64/tmpfiles.d
(from rev 191201, mpd/repos/testing-x86_64/tmpfiles.d)
Deleted:
  mpd/repos/extra-i686/PKGBUILD
  mpd/repos/extra-i686/install
  mpd/repos/extra-i686/tmpfiles.d
  mpd/repos/extra-x86_64/PKGBUILD
  mpd/repos/extra-x86_64/install
  mpd/repos/extra-x86_64/tmpfiles.d
  mpd/repos/testing-i686/
  mpd/repos/testing-x86_64/

-+
 /PKGBUILD   |  122 ++
 /install|   22 
 /tmpfiles.d |2 
 extra-i686/PKGBUILD |   53 ---
 extra-i686/install  |   11 
 extra-i686/tmpfiles.d   |1 
 extra-x86_64/PKGBUILD   |   53 ---
 extra-x86_64/install|   11 
 extra-x86_64/tmpfiles.d |1 
 9 files changed, 146 insertions(+), 130 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-19 20:57:52 UTC (rev 191201)
+++ extra-i686/PKGBUILD 2013-07-20 00:58:51 UTC (rev 191202)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-# Contributor: Ben b...@benmazer.net
-
-pkgname=mpd
-pkgver=0.17.4
-pkgrel=1
-pkgdesc='Flexible, powerful, server-side application for playing music'
-url='http://www.musicpd.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
- 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl')
-makedepends=('doxygen')
-source=(http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
-'tmpfiles.d')
-sha1sums=('f60b54e368fe74fde2fd4571227b0428fe0ae3cb'
-  'f4d5922abb69abb739542d8e93f4dfd748acdad7')
-
-backup=('etc/mpd.conf')
-install=install
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-jack \
-   --enable-lastfm \
-   --enable-soundcloud \
-   --enable-pulse \
-   --disable-sidplay \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-   install -d -g 45 -o 45 ${pkgdir}/var/lib/mpd/playlists
-   install -Dm644 doc/mpdconf.example ${pkgdir}/etc/mpd.conf
-   install -Dm644 ../tmpfiles.d ${pkgdir}/usr/lib/tmpfiles.d/mpd.conf
-   sed \
-   -e '/^#playlist_directory/c playlist_directory 
/var/lib/mpd/playlists' \
-   -e '/^#db_file/c db_file /var/lib/mpd/mpd.db' \
-   -e '/^#pid_file/c pid_file /run/mpd/mpd.pid' \
-   -e '/^#state_file/c state_file /var/lib/mpd/mpdstate' \
-   -e '/^#user/c user mpd' \
-   -i ${pkgdir}/etc/mpd.conf
-}

Copied: mpd/repos/extra-i686/PKGBUILD (from rev 191201, 
mpd/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-20 00:58:51 UTC (rev 191202)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: Ben b...@benmazer.net
+
+pkgname=mpd
+pkgver=0.17.4
+pkgrel=3
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='http://www.musicpd.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
+ 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl')
+makedepends=('doxygen')
+source=(http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+'tmpfiles.d')
+sha1sums=('f60b54e368fe74fde2fd4571227b0428fe0ae3cb'
+  'f4d5922abb69abb739542d8e93f4dfd748acdad7')
+
+backup=('etc/mpd.conf')
+install=install
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed 's:cdio/paranoia.h:cdio/paranoia/paranoia.h:g' -i 
src/input/cdio_paranoia_input_plugin.c

[arch-commits] Commit in youtube-dl/repos/community-any (PKGBUILD PKGBUILD)

2013-07-19 Thread Eric Bélanger
Date: Saturday, July 20, 2013 @ 03:23:58
  Author: eric
Revision: 94311

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 94310, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-20 01:23:40 UTC (rev 94310)
+++ PKGBUILD2013-07-20 01:23:58 UTC (rev 94311)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=youtube-dl
-pkgver=2013.07.18
-pkgrel=1
-pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
-arch=('any')
-url=http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python')
-makedepends=('python-distribute')
-optdepends=('ffmpeg: for video post-processing')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha1sums=('79577ff3d1eb37b664be9cc544c79d341b8ec158'
-  'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root=${pkgdir}/ --optimize=1
-  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
-${pkgdir}/usr/share/bash-completion/completions/youtube-dl
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 94310, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-07-20 01:23:58 UTC (rev 94311)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=youtube-dl
+pkgver=2013.07.19
+pkgrel=1
+pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
+arch=('any')
+url=http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python')
+makedepends=('python-distribute')
+optdepends=('ffmpeg: for video post-processing')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha1sums=('2585bb3b86060c7b748a05627ad4b0bed71b6728'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root=${pkgdir}/ --optimize=1
+  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
+${pkgdir}/usr/share/bash-completion/completions/youtube-dl
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2013-07-19 Thread Eric Bélanger
Date: Saturday, July 20, 2013 @ 03:23:40
  Author: eric
Revision: 94310

upgpkg: youtube-dl 2013.07.19-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-19 17:36:37 UTC (rev 94309)
+++ PKGBUILD2013-07-20 01:23:40 UTC (rev 94310)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=youtube-dl
-pkgver=2013.07.18
+pkgver=2013.07.19
 pkgrel=1
 pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-distribute')
 optdepends=('ffmpeg: for video post-processing')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha1sums=('79577ff3d1eb37b664be9cc544c79d341b8ec158'
+sha1sums=('2585bb3b86060c7b748a05627ad4b0bed71b6728'
   'SKIP')
 
 prepare() {



[arch-commits] Commit in purple-plugin-pack/trunk (PKGBUILD)

2013-07-19 Thread Evangelos Foutras
Date: Saturday, July 20, 2013 @ 03:47:53
  Author: foutrelis
Revision: 191203

Fix upstream URL

Modified:
  purple-plugin-pack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-20 00:58:51 UTC (rev 191202)
+++ PKGBUILD2013-07-20 01:47:53 UTC (rev 191203)
@@ -9,7 +9,7 @@
 pkgrel=1
 pkgdesc=Compilation of plugins for the libpurple family of IM clients
 arch=('i686' 'x86_64')
-url=https://www.guifications.org/projects/purple-plugin-pack;
+url=https://bitbucket.org/rekkanoryo/purple-plugin-pack;
 license=('GPL')
 depends=('libpurple')
 makedepends=('intltool' 'gettext' 'python2' 'pidgin')



[arch-commits] Commit in purple-plugin-pack/repos (4 files)

2013-07-19 Thread Evangelos Foutras
Date: Saturday, July 20, 2013 @ 03:49:05
  Author: foutrelis
Revision: 191204

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

Added:
  purple-plugin-pack/repos/extra-i686/PKGBUILD
(from rev 191203, purple-plugin-pack/trunk/PKGBUILD)
  purple-plugin-pack/repos/extra-x86_64/PKGBUILD
(from rev 191203, purple-plugin-pack/trunk/PKGBUILD)
Deleted:
  purple-plugin-pack/repos/extra-i686/PKGBUILD
  purple-plugin-pack/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 extra-i686/PKGBUILD   |   34 
 extra-x86_64/PKGBUILD |   34 
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-07-20 01:47:53 UTC (rev 191203)
+++ extra-i686/PKGBUILD 2013-07-20 01:49:05 UTC (rev 191204)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: Dale Blount d...@archlinux.org
-
-pkgname=purple-plugin-pack
-pkgver=2.7.0
-pkgrel=1
-pkgdesc=Compilation of plugins for the libpurple family of IM clients
-arch=('i686' 'x86_64')
-url=https://www.guifications.org/projects/purple-plugin-pack;
-license=('GPL')
-depends=('libpurple')
-makedepends=('intltool' 'gettext' 'python2' 'pidgin')
-options=('!libtool')
-source=(https://www.guifications.org/attachments/download/201/purple-plugin-pack-2.7.0.tar.bz2)
-sha256sums=('2bbcf5e778a33968ba7f2864d2a6cb526a8984be3e4151642a583eee8eafb03c')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  PYTHON=/usr/bin/python2 \
-./configure --prefix=/usr
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: purple-plugin-pack/repos/extra-i686/PKGBUILD (from rev 191203, 
purple-plugin-pack/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-20 01:49:05 UTC (rev 191204)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+# Contributor: Dale Blount d...@archlinux.org
+
+pkgname=purple-plugin-pack
+pkgver=2.7.0
+pkgrel=1
+pkgdesc=Compilation of plugins for the libpurple family of IM clients
+arch=('i686' 'x86_64')
+url=https://bitbucket.org/rekkanoryo/purple-plugin-pack;
+license=('GPL')
+depends=('libpurple')
+makedepends=('intltool' 'gettext' 'python2' 'pidgin')
+options=('!libtool')
+source=(https://bitbucket.org/rekkanoryo/$pkgname/downloads/$pkgname-$pkgver.tar.bz2)
+sha256sums=('2bbcf5e778a33968ba7f2864d2a6cb526a8984be3e4151642a583eee8eafb03c')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  PYTHON=/usr/bin/python2 \
+./configure --prefix=/usr
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-07-20 01:47:53 UTC (rev 191203)
+++ extra-x86_64/PKGBUILD   2013-07-20 01:49:05 UTC (rev 191204)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: Dale Blount d...@archlinux.org
-
-pkgname=purple-plugin-pack
-pkgver=2.7.0
-pkgrel=1
-pkgdesc=Compilation of plugins for the libpurple family of IM clients
-arch=('i686' 'x86_64')
-url=https://www.guifications.org/projects/purple-plugin-pack;
-license=('GPL')
-depends=('libpurple')
-makedepends=('intltool' 'gettext' 'python2' 'pidgin')
-options=('!libtool')
-source=(https://www.guifications.org/attachments/download/201/purple-plugin-pack-2.7.0.tar.bz2)
-sha256sums=('2bbcf5e778a33968ba7f2864d2a6cb526a8984be3e4151642a583eee8eafb03c')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  PYTHON=/usr/bin/python2 \
-./configure --prefix=/usr
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: purple-plugin-pack/repos/extra-x86_64/PKGBUILD (from rev 191203, 
purple-plugin-pack/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-07-20 01:49:05 UTC (rev 191204)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+# Contributor: Dale Blount d...@archlinux.org
+
+pkgname=purple-plugin-pack
+pkgver=2.7.0
+pkgrel=1
+pkgdesc=Compilation of plugins for the libpurple family of IM 

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

2013-07-19 Thread Evangelos Foutras
Date: Saturday, July 20, 2013 @ 04:05:44
  Author: foutrelis
Revision: 191206

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

Added:
  libpng/repos/testing-i686/
  libpng/repos/testing-i686/PKGBUILD
(from rev 191205, libpng/trunk/PKGBUILD)
  libpng/repos/testing-x86_64/
  libpng/repos/testing-x86_64/PKGBUILD
(from rev 191205, libpng/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   45 +
 testing-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: libpng/repos/testing-i686/PKGBUILD (from rev 191205, 
libpng/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-07-20 02:05:44 UTC (rev 191206)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: dorphell dorph...@archlinux.org
+# Contributor: Travis Willard tra...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=libpng
+pkgver=1.6.3
+_apngver=1.6.3
+pkgrel=1
+pkgdesc=A collection of routines used to create PNG format graphics files
+arch=('i686' 'x86_64')
+url=http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('zlib' 'sh')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz;
+
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz;)
+md5sums=('9307f8ab04f4be3c1889ffb504f0fe5c'
+ '57007fc121baa2cdc48abcfb26300e78')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Add animated PNG (apng) support
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -Np1 -i ../libpng-$_apngver-apng.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  cd contrib/pngminus
+  make PNGLIB=-L$pkgdir/usr/lib -lpng -f makefile.std png2pnm pnm2png
+  install -m755 png2pnm pnm2png $pkgdir/usr/bin/
+  install -D -m644 ../../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: libpng/repos/testing-x86_64/PKGBUILD (from rev 191205, 
libpng/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-07-20 02:05:44 UTC (rev 191206)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: dorphell dorph...@archlinux.org
+# Contributor: Travis Willard tra...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=libpng
+pkgver=1.6.3
+_apngver=1.6.3
+pkgrel=1
+pkgdesc=A collection of routines used to create PNG format graphics files
+arch=('i686' 'x86_64')
+url=http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('zlib' 'sh')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz;
+
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz;)
+md5sums=('9307f8ab04f4be3c1889ffb504f0fe5c'
+ '57007fc121baa2cdc48abcfb26300e78')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Add animated PNG (apng) support
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -Np1 -i ../libpng-$_apngver-apng.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  cd contrib/pngminus
+  make PNGLIB=-L$pkgdir/usr/lib -lpng -f makefile.std png2pnm pnm2png
+  install -m755 png2pnm pnm2png $pkgdir/usr/bin/
+  install -D -m644 ../../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2013-07-19 Thread Evangelos Foutras
Date: Saturday, July 20, 2013 @ 04:05:33
  Author: foutrelis
Revision: 191205

upgpkg: libpng 1.6.3-1

New upstream release.

Modified:
  libpng/trunk/PKGBUILD
Deleted:
  libpng/trunk/0001-libpng16-Avoid-dereferencing-NULL-pointer-possibly-r.patch
  libpng/trunk/0002-libpng16-Calculate-our-own-zlib-windowBits-when-deco.patch
  libpng/trunk/adjust-apng-patch-for-libpng16-git-changes.patch

-+
 0001-libpng16-Avoid-dereferencing-NULL-pointer-possibly-r.patch |  106 ---
 0002-libpng16-Calculate-our-own-zlib-windowBits-when-deco.patch |  133 
--
 PKGBUILD|   23 -
 adjust-apng-patch-for-libpng16-git-changes.patch|   19 -
 4 files changed, 6 insertions(+), 275 deletions(-)

Deleted: 0001-libpng16-Avoid-dereferencing-NULL-pointer-possibly-r.patch
===
--- 0001-libpng16-Avoid-dereferencing-NULL-pointer-possibly-r.patch 
2013-07-20 01:49:05 UTC (rev 191204)
+++ 0001-libpng16-Avoid-dereferencing-NULL-pointer-possibly-r.patch 
2013-07-20 02:05:33 UTC (rev 191205)
@@ -1,106 +0,0 @@
-From 56d6bc2e8855d25e03816509a0137c3a70410ae6 Mon Sep 17 00:00:00 2001
-From: Glenn Randers-Pehrson glennrp at users.sourceforge.net
-Date: Mon, 29 Apr 2013 08:57:14 -0500
-Subject: [PATCH 06/10] [libpng16] Avoid dereferencing NULL pointer possibly
- returned from
-
-png_create_write_struct() (Andrew Church).

- ANNOUNCE   |  6 --
- CHANGES|  4 +++-
- pngwrite.c | 65 +++---
- 3 files changed, 39 insertions(+), 36 deletions(-)
-
- (foutrelis: pruned non-code changes to apply cleanly to libpng 1.6.2.)
-
-diff --git a/pngwrite.c b/pngwrite.c
-index 33924aa..b71a3d3 100644
 a/pngwrite.c
-+++ b/pngwrite.c
-@@ -494,51 +494,50 @@ png_create_write_struct_2,(png_const_charp user_png_ver, 
png_voidp error_ptr,
-png_structrp png_ptr = png_create_png_struct(user_png_ver, error_ptr,
-   error_fn, warn_fn, mem_ptr, malloc_fn, free_fn);
- #endif /* PNG_USER_MEM_SUPPORTED */
-+   if (png_ptr != NULL)
-+   {
-+  /* Set the zlib control values to defaults; they can be overridden by 
the
-+   * application after the struct has been created.
-+   */
-+  png_ptr-zbuffer_size = PNG_ZBUF_SIZE;
- 
--   /* Set the zlib control values to defaults; they can be overridden by the
--* application after the struct has been created.
--*/
--   png_ptr-zbuffer_size = PNG_ZBUF_SIZE;
--
--   /* The 'zlib_strategy' setting is irrelevant because png_default_claim in
--* pngwutil.c defaults it according to whether or not filters will be used,
--* and ignores this setting.
--*/
--   png_ptr-zlib_strategy = PNG_Z_DEFAULT_STRATEGY;
--   png_ptr-zlib_level = PNG_Z_DEFAULT_COMPRESSION;
--   png_ptr-zlib_mem_level = 8;
--   png_ptr-zlib_window_bits = 15;
--   png_ptr-zlib_method = 8;
-+  /* The 'zlib_strategy' setting is irrelevant because png_default_claim 
in
-+   * pngwutil.c defaults it according to whether or not filters will be
-+   * used, and ignores this setting.
-+   */
-+  png_ptr-zlib_strategy = PNG_Z_DEFAULT_STRATEGY;
-+  png_ptr-zlib_level = PNG_Z_DEFAULT_COMPRESSION;
-+  png_ptr-zlib_mem_level = 8;
-+  png_ptr-zlib_window_bits = 15;
-+  png_ptr-zlib_method = 8;
- 
- #ifdef PNG_WRITE_COMPRESSED_TEXT_SUPPORTED
--   png_ptr-zlib_text_strategy = PNG_TEXT_Z_DEFAULT_STRATEGY;
--   png_ptr-zlib_text_level = PNG_TEXT_Z_DEFAULT_COMPRESSION;
--   png_ptr-zlib_text_mem_level = 8;
--   png_ptr-zlib_text_window_bits = 15;
--   png_ptr-zlib_text_method = 8;
-+  png_ptr-zlib_text_strategy = PNG_TEXT_Z_DEFAULT_STRATEGY;
-+  png_ptr-zlib_text_level = PNG_TEXT_Z_DEFAULT_COMPRESSION;
-+  png_ptr-zlib_text_mem_level = 8;
-+  png_ptr-zlib_text_window_bits = 15;
-+  png_ptr-zlib_text_method = 8;
- #endif /* PNG_WRITE_COMPRESSED_TEXT_SUPPORTED */
- 
--   /* This is a highly dubious configuration option; by default it is off, but
--* it may be appropriate for private builds that are testing extensions not
--* conformant to the current specification, or of applications that must 
not
--* fail to write at all costs!
--*/
--#  ifdef PNG_BENIGN_WRITE_ERRORS_SUPPORTED
-+  /* This is a highly dubious configuration option; by default it is off,
-+   * but it may be appropriate for private builds that are testing
-+   * extensions not conformant to the current specification, or of
-+   * applications that must not fail to write at all costs!
-+   */
-+#ifdef PNG_BENIGN_WRITE_ERRORS_SUPPORTED
-   png_ptr-flags |= PNG_FLAG_BENIGN_ERRORS_WARN;
-   /* In stable builds only warn if an application error can be completely
-* handled.
-*/
--#  endif
-+#endif
- 
--   /* App warnings are warnings in release (or release candidate) builds but
--* are errors 

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

2013-07-19 Thread speps
Date: Saturday, July 20, 2013 @ 04:12:46
  Author: speps
Revision: 94312

upgpkg: guitarix2 0.28.0-1

Modified:
  guitarix2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-20 01:23:58 UTC (rev 94311)
+++ PKGBUILD2013-07-20 02:12:46 UTC (rev 94312)
@@ -2,8 +2,8 @@
 # Maintainer: speps speps at aur dot archlinux dot org
 
 pkgname=guitarix2
-pkgver=0.27.1
-pkgrel=2
+pkgver=0.28.0
+pkgrel=1
 pkgdesc=A simple mono guitar amplifier and FX for JACK using Faust
 arch=('i686' 'x86_64')
 url=http://guitarix.sourceforge.net/;
@@ -16,7 +16,7 @@
 replaces=('guitarix' 'gx_head')
 install=$pkgname.install
 
source=(http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.bz2;)
-md5sums=('65e0917f9529460931be522e2879e514')
+md5sums=('1f515c13d4577a6dbc7c4b1606395989')
 
 build() {
   cd $srcdir/guitarix-$pkgver
@@ -26,8 +26,7 @@
 --no-faust \
 --optimization \
 --shared-lib \
---lib-dev \
---build-lv2
+--lib-dev
   python2 waf build
 }
 



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

2013-07-19 Thread speps
Date: Saturday, July 20, 2013 @ 04:13:10
  Author: speps
Revision: 94313

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

Added:
  guitarix2/repos/community-i686/PKGBUILD
(from rev 94312, guitarix2/trunk/PKGBUILD)
  guitarix2/repos/community-i686/guitarix2.install
(from rev 94312, guitarix2/trunk/guitarix2.install)
  guitarix2/repos/community-x86_64/PKGBUILD
(from rev 94312, guitarix2/trunk/PKGBUILD)
  guitarix2/repos/community-x86_64/guitarix2.install
(from rev 94312, guitarix2/trunk/guitarix2.install)
Deleted:
  guitarix2/repos/community-i686/PKGBUILD
  guitarix2/repos/community-i686/guitarix2.install
  guitarix2/repos/community-x86_64/PKGBUILD
  guitarix2/repos/community-x86_64/guitarix2.install

+
 /PKGBUILD  |   72 +++
 /guitarix2.install |   22 ++
 community-i686/PKGBUILD|   37 -
 community-i686/guitarix2.install   |   11 -
 community-x86_64/PKGBUILD  |   37 -
 community-x86_64/guitarix2.install |   11 -
 6 files changed, 94 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-20 02:12:46 UTC (rev 94312)
+++ community-i686/PKGBUILD 2013-07-20 02:13:10 UTC (rev 94313)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-
-pkgname=guitarix2
-pkgver=0.27.1
-pkgrel=2
-pkgdesc=A simple mono guitar amplifier and FX for JACK using Faust
-arch=('i686' 'x86_64')
-url=http://guitarix.sourceforge.net/;
-license=('GPL')
-depends=('gtkmm' 'jack' 'liblrdf' 'boost-libs' 'zita-convolver' 
'zita-resampler')
-makedepends=('python2' 'boost' 'intltool' 'lv2')
-optdepends=('meterbridge: sound meters')
-provides=('guitarix' 'gx_head')
-conflicts=('guitarix' 'gx_head')
-replaces=('guitarix' 'gx_head')
-install=$pkgname.install
-source=(http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.bz2;)
-md5sums=('65e0917f9529460931be522e2879e514')
-
-build() {
-  cd $srcdir/guitarix-$pkgver
-  python2 waf configure --prefix=/usr \
---no-desktop-update \
---no-ldconfig \
---no-faust \
---optimization \
---shared-lib \
---lib-dev \
---build-lv2
-  python2 waf build
-}
-
-package() {
-  cd $srcdir/guitarix-$pkgver
-  python2 waf install --destdir=$pkgdir
-}

Copied: guitarix2/repos/community-i686/PKGBUILD (from rev 94312, 
guitarix2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-20 02:13:10 UTC (rev 94313)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: speps speps at aur dot archlinux dot org
+
+pkgname=guitarix2
+pkgver=0.28.0
+pkgrel=1
+pkgdesc=A simple mono guitar amplifier and FX for JACK using Faust
+arch=('i686' 'x86_64')
+url=http://guitarix.sourceforge.net/;
+license=('GPL')
+depends=('gtkmm' 'jack' 'liblrdf' 'boost-libs' 'zita-convolver' 
'zita-resampler')
+makedepends=('python2' 'boost' 'intltool' 'lv2')
+optdepends=('meterbridge: sound meters')
+provides=('guitarix' 'gx_head')
+conflicts=('guitarix' 'gx_head')
+replaces=('guitarix' 'gx_head')
+install=$pkgname.install
+source=(http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.bz2;)
+md5sums=('1f515c13d4577a6dbc7c4b1606395989')
+
+build() {
+  cd $srcdir/guitarix-$pkgver
+  python2 waf configure --prefix=/usr \
+--no-desktop-update \
+--no-ldconfig \
+--no-faust \
+--optimization \
+--shared-lib \
+--lib-dev
+  python2 waf build
+}
+
+package() {
+  cd $srcdir/guitarix-$pkgver
+  python2 waf install --destdir=$pkgdir
+}

Deleted: community-i686/guitarix2.install
===
--- community-i686/guitarix2.install2013-07-20 02:12:46 UTC (rev 94312)
+++ community-i686/guitarix2.install2013-07-20 02:13:10 UTC (rev 94313)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: guitarix2/repos/community-i686/guitarix2.install (from rev 94312, 
guitarix2/trunk/guitarix2.install)
===
--- community-i686/guitarix2.install(rev 0)
+++ community-i686/guitarix2.install2013-07-20 02:13:10 UTC (rev 94313)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD

[arch-commits] Commit in (5 files)

2013-07-19 Thread Daniel Wallace
Date: Saturday, July 20, 2013 @ 05:11:07
  Author: dwallace
Revision: 94314

move uuid from aur to community

Added:
  uuid/
  uuid/repos/
  uuid/trunk/
  uuid/trunk/PKGBUILD
  uuid/trunk/ossp.patch

+
 PKGBUILD   |   38 ++
 ossp.patch |  207 +++
 2 files changed, 245 insertions(+)

Added: uuid/trunk/PKGBUILD
===
--- uuid/trunk/PKGBUILD (rev 0)
+++ uuid/trunk/PKGBUILD 2013-07-20 03:11:07 UTC (rev 94314)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred.com`
+# Contributor: Jeff Cook j...@deserettechnology.com
+# Contributor: Michael Asher  michael at we solve every thing dot com 
+# Contributor: William Díaz wd...@archlinux.us
+# Contributor: vwyodajl donjuansjiz   GmaIL   com
+
+pkgname=uuid
+pkgver=1.6.2
+pkgrel=11
+pkgdesc=OSSP Universally Unique Identifier
+arch=('i686' 'x86_64')
+url=http://www.ossp.org/pkg/lib/uuid;
+license=('MIT')
+depends=('sh')
+options=('!libtool')
+source=(http://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+ossp.patch)
+md5sums=('5db0d43a9022a6ebbbc25337ae28942f'
+ '6f0591cfa3e6d5f70c290963d2c5a0a0')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # Rename because conflicts with util-linux
+  patch -p1 -i ${srcdir}/ossp.patch
+
+  ./configure --prefix=/usr --with-perl
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 README \
+${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}


Property changes on: uuid/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: uuid/trunk/ossp.patch
===
--- uuid/trunk/ossp.patch   (rev 0)
+++ uuid/trunk/ossp.patch   2013-07-20 03:11:07 UTC (rev 94314)
@@ -0,0 +1,207 @@
+diff -up uuid-1.6.1/uuid-config.in.BAD uuid-1.6.1/uuid-config.in
+--- uuid-1.6.1/uuid-config.in.BAD  2008-03-06 11:56:13.0 -0500
 uuid-1.6.1/uuid-config.in  2008-03-06 11:56:25.0 -0500
+@@ -121,7 +121,7 @@ do
+ output_extra=$output_extra $uuid_ldflags
+ ;;
+ --libs)
+-output=$output -luuid
++output=$output -lossp-uuid
+ output_extra=$output_extra $uuid_libs
+ ;;
+ * )
+diff -up uuid-1.6.1/Makefile.in.BAD uuid-1.6.1/Makefile.in
+--- uuid-1.6.1/Makefile.in.BAD 2008-03-06 11:10:13.0 -0500
 uuid-1.6.1/Makefile.in 2008-03-06 11:11:39.0 -0500
+@@ -62,13 +62,13 @@ PERL= @PERL@
+ PHP = @PHP@
+ PG_CONFIG   = @PG_CONFIG@
+ 
+-LIB_NAME= libuuid.la
++LIB_NAME= libossp-uuid.la
+ LIB_OBJS= uuid.lo uuid_md5.lo uuid_sha1.lo uuid_prng.lo uuid_mac.lo 
uuid_time.lo uuid_ui64.lo uuid_ui128.lo uuid_str.lo
+ 
+-DCE_NAME= libuuid_dce.la
++DCE_NAME= libossp-uuid_dce.la
+ DCE_OBJS= uuid_dce.lo $(LIB_OBJS)
+ 
+-CXX_NAME= libuuid++.la
++CXX_NAME= libossp-uuid++.la
+ CXX_OBJS= uuid++.lo $(LIB_OBJS)
+ 
+ PRG_NAME= uuid
+@@ -79,10 +79,10 @@ MAN_NAME= uuid.3 uuid++.3 uuid.1
+ PERL_NAME   = $(S)/perl/blib/lib/OSSP/uuid.pm
+ PERL_OBJS   = $(S)/perl/uuid.pm
+ 
+-PHP_NAME= $(S)/php/modules/uuid.so
++PHP_NAME= $(S)/php/modules/ossp-uuid.so
+ PHP_OBJS= $(S)/php/uuid.c
+ 
+-PGSQL_NAME  = $(S)/pgsql/libuuid.so
++PGSQL_NAME  = $(S)/pgsql/libossp-uuid.so
+ PGSQL_OBJS  = $(S)/pgsql/uuid.c
+ 
+ TARGETS = $(LIB_NAME) @DCE_NAME@ @CXX_NAME@ $(PRG_NAME) @PERL_NAME@ 
@PHP_NAME@ @PGSQL_NAME@
+@@ -231,7 +231,7 @@ install:
+   $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man1
+   $(SHTOOL) install -c -m 755 uuid-config $(DESTDIR)$(bindir)/
+   $(SHTOOL) install -c -m 644 $(S)/uuid-config.1 $(DESTDIR)$(mandir)/man1/
+-  $(SHTOOL) install -c -m 644 $(S)/uuid.pc $(DESTDIR)$(libdir)/pkgconfig/
++  $(SHTOOL) install -c -m 644 $(S)/uuid.pc 
$(DESTDIR)$(libdir)/pkgconfig/ossp-uuid.pc
+   $(SHTOOL) install -c -m 644 uuid.h $(DESTDIR)$(includedir)/
+   -@if [ .$(WITH_DCE) = .yes ]; then \
+   echo $(SHTOOL) install -c -m 644 $(S)/uuid_dce.h 
$(DESTDIR)$(includedir)/; \
+@@ -241,7 +241,7 @@ install:
+   echo $(SHTOOL) install -c -m 644 $(S)/uuid++.hh 
$(DESTDIR)$(includedir)/; \
+   $(SHTOOL) install -c -m 644 $(S)/uuid++.hh 
$(DESTDIR)$(includedir)/; \
+   fi
+-  $(SHTOOL) install -c -m 644 $(S)/uuid.3 $(DESTDIR)$(mandir)/man3/
++  $(SHTOOL) install -c -m 644 $(S)/uuid.3 
$(DESTDIR)$(mandir)/man3/ossp-uuid.3
+   -@if [ .$(WITH_CXX) = .yes ]; then \
+   echo $(SHTOOL) install -c -m 644 $(S)/uuid++.3 
$(DESTDIR)$(mandir)/man3/; \
+   $(SHTOOL) install -c -m 644 $(S)/uuid++.3 
$(DESTDIR)$(mandir)/man3/; \
+@@ -276,7 +276,7 @@ uninstall:
+ 

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

2013-07-19 Thread Daniel Wallace
Date: Saturday, July 20, 2013 @ 05:45:10
  Author: dwallace
Revision: 94315

upgpkg: uuid 1.6.2-12

move uuid from aur to community

Modified:
  uuid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-20 03:11:07 UTC (rev 94314)
+++ PKGBUILD2013-07-20 03:45:10 UTC (rev 94315)
@@ -7,13 +7,13 @@
 
 pkgname=uuid
 pkgver=1.6.2
-pkgrel=11
+pkgrel=12
 pkgdesc=OSSP Universally Unique Identifier
 arch=('i686' 'x86_64')
 url=http://www.ossp.org/pkg/lib/uuid;
 license=('MIT')
 depends=('sh')
-options=('!libtool')
+options=('!libtool' '!emptydirs')
 
source=(http://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 ossp.patch)
 md5sums=('5db0d43a9022a6ebbbc25337ae28942f'
@@ -24,8 +24,10 @@
 
   # Rename because conflicts with util-linux
   patch -p1 -i ${srcdir}/ossp.patch
-
-  ./configure --prefix=/usr --with-perl
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--disable-static \
+--bindir=/usr/bin
   make
 }
 



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

2013-07-19 Thread Daniel Wallace
Date: Saturday, July 20, 2013 @ 05:45:40
  Author: dwallace
Revision: 94316

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

Added:
  uuid/repos/community-i686/
  uuid/repos/community-i686/PKGBUILD
(from rev 94315, uuid/trunk/PKGBUILD)
  uuid/repos/community-i686/ossp.patch
(from rev 94315, uuid/trunk/ossp.patch)
  uuid/repos/community-x86_64/
  uuid/repos/community-x86_64/PKGBUILD
(from rev 94315, uuid/trunk/PKGBUILD)
  uuid/repos/community-x86_64/ossp.patch
(from rev 94315, uuid/trunk/ossp.patch)

-+
 community-i686/PKGBUILD |   40 
 community-i686/ossp.patch   |  207 ++
 community-x86_64/PKGBUILD   |   40 
 community-x86_64/ossp.patch |  207 ++
 4 files changed, 494 insertions(+)

Copied: uuid/repos/community-i686/PKGBUILD (from rev 94315, uuid/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-20 03:45:40 UTC (rev 94316)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred.com`
+# Contributor: Jeff Cook j...@deserettechnology.com
+# Contributor: Michael Asher  michael at we solve every thing dot com 
+# Contributor: William Díaz wd...@archlinux.us
+# Contributor: vwyodajl donjuansjiz   GmaIL   com
+
+pkgname=uuid
+pkgver=1.6.2
+pkgrel=12
+pkgdesc=OSSP Universally Unique Identifier
+arch=('i686' 'x86_64')
+url=http://www.ossp.org/pkg/lib/uuid;
+license=('MIT')
+depends=('sh')
+options=('!libtool' '!emptydirs')
+source=(http://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+ossp.patch)
+md5sums=('5db0d43a9022a6ebbbc25337ae28942f'
+ '6f0591cfa3e6d5f70c290963d2c5a0a0')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # Rename because conflicts with util-linux
+  patch -p1 -i ${srcdir}/ossp.patch
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--disable-static \
+--bindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 README \
+${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: uuid/repos/community-i686/ossp.patch (from rev 94315, 
uuid/trunk/ossp.patch)
===
--- community-i686/ossp.patch   (rev 0)
+++ community-i686/ossp.patch   2013-07-20 03:45:40 UTC (rev 94316)
@@ -0,0 +1,207 @@
+diff -up uuid-1.6.1/uuid-config.in.BAD uuid-1.6.1/uuid-config.in
+--- uuid-1.6.1/uuid-config.in.BAD  2008-03-06 11:56:13.0 -0500
 uuid-1.6.1/uuid-config.in  2008-03-06 11:56:25.0 -0500
+@@ -121,7 +121,7 @@ do
+ output_extra=$output_extra $uuid_ldflags
+ ;;
+ --libs)
+-output=$output -luuid
++output=$output -lossp-uuid
+ output_extra=$output_extra $uuid_libs
+ ;;
+ * )
+diff -up uuid-1.6.1/Makefile.in.BAD uuid-1.6.1/Makefile.in
+--- uuid-1.6.1/Makefile.in.BAD 2008-03-06 11:10:13.0 -0500
 uuid-1.6.1/Makefile.in 2008-03-06 11:11:39.0 -0500
+@@ -62,13 +62,13 @@ PERL= @PERL@
+ PHP = @PHP@
+ PG_CONFIG   = @PG_CONFIG@
+ 
+-LIB_NAME= libuuid.la
++LIB_NAME= libossp-uuid.la
+ LIB_OBJS= uuid.lo uuid_md5.lo uuid_sha1.lo uuid_prng.lo uuid_mac.lo 
uuid_time.lo uuid_ui64.lo uuid_ui128.lo uuid_str.lo
+ 
+-DCE_NAME= libuuid_dce.la
++DCE_NAME= libossp-uuid_dce.la
+ DCE_OBJS= uuid_dce.lo $(LIB_OBJS)
+ 
+-CXX_NAME= libuuid++.la
++CXX_NAME= libossp-uuid++.la
+ CXX_OBJS= uuid++.lo $(LIB_OBJS)
+ 
+ PRG_NAME= uuid
+@@ -79,10 +79,10 @@ MAN_NAME= uuid.3 uuid++.3 uuid.1
+ PERL_NAME   = $(S)/perl/blib/lib/OSSP/uuid.pm
+ PERL_OBJS   = $(S)/perl/uuid.pm
+ 
+-PHP_NAME= $(S)/php/modules/uuid.so
++PHP_NAME= $(S)/php/modules/ossp-uuid.so
+ PHP_OBJS= $(S)/php/uuid.c
+ 
+-PGSQL_NAME  = $(S)/pgsql/libuuid.so
++PGSQL_NAME  = $(S)/pgsql/libossp-uuid.so
+ PGSQL_OBJS  = $(S)/pgsql/uuid.c
+ 
+ TARGETS = $(LIB_NAME) @DCE_NAME@ @CXX_NAME@ $(PRG_NAME) @PERL_NAME@ 
@PHP_NAME@ @PGSQL_NAME@
+@@ -231,7 +231,7 @@ install:
+   $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man1
+   $(SHTOOL) install -c -m 755 uuid-config $(DESTDIR)$(bindir)/
+   $(SHTOOL) install -c -m 644 $(S)/uuid-config.1 $(DESTDIR)$(mandir)/man1/
+-  $(SHTOOL) install -c -m 644 $(S)/uuid.pc $(DESTDIR)$(libdir)/pkgconfig/
++  $(SHTOOL) install -c -m 644 $(S)/uuid.pc 
$(DESTDIR)$(libdir)/pkgconfig/ossp-uuid.pc
+   $(SHTOOL) install -c -m 644 uuid.h $(DESTDIR)$(includedir)/
+   -@if [ .$(WITH_DCE) = .yes ]; then \
+   echo $(SHTOOL) install -c -m 644 $(S)/uuid_dce.h 
$(DESTDIR)$(includedir)/; \
+@@ -241,7 +241,7 @@ install:
+   echo $(SHTOOL) install -c -m 644 $(S)/uuid++.hh