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

2013-04-30 Thread Pierre Schmitz
Date: Wednesday, May 1, 2013 @ 08:54:16
  Author: pierre
Revision: 184025

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

Added:
  logrotate/repos/testing-i686/
  logrotate/repos/testing-i686/PKGBUILD
(from rev 184024, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-i686/logrotate.conf
(from rev 184024, logrotate/trunk/logrotate.conf)
  logrotate/repos/testing-i686/logrotate.cron.daily
(from rev 184024, logrotate/trunk/logrotate.cron.daily)
  logrotate/repos/testing-i686/noasprintf.patch
(from rev 184024, logrotate/trunk/noasprintf.patch)
  logrotate/repos/testing-i686/paths.patch
(from rev 184024, logrotate/trunk/paths.patch)
  logrotate/repos/testing-x86_64/
  logrotate/repos/testing-x86_64/PKGBUILD
(from rev 184024, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-x86_64/logrotate.conf
(from rev 184024, logrotate/trunk/logrotate.conf)
  logrotate/repos/testing-x86_64/logrotate.cron.daily
(from rev 184024, logrotate/trunk/logrotate.cron.daily)
  logrotate/repos/testing-x86_64/noasprintf.patch
(from rev 184024, logrotate/trunk/noasprintf.patch)
  logrotate/repos/testing-x86_64/paths.patch
(from rev 184024, logrotate/trunk/paths.patch)

-+
 testing-i686/PKGBUILD   |   46 +
 testing-i686/logrotate.conf |   38 
 testing-i686/logrotate.cron.daily   |   24 +++
 testing-i686/noasprintf.patch   |   53 ++
 testing-i686/paths.patch|   25 
 testing-x86_64/PKGBUILD |   46 +
 testing-x86_64/logrotate.conf   |   38 
 testing-x86_64/logrotate.cron.daily |   24 +++
 testing-x86_64/noasprintf.patch |   53 ++
 testing-x86_64/paths.patch  |   25 
 10 files changed, 372 insertions(+)

Copied: logrotate/repos/testing-i686/PKGBUILD (from rev 184024, 
logrotate/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-01 06:54:16 UTC (rev 184025)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=logrotate
+pkgver=3.8.4
+pkgrel=1
+pkgdesc="Rotates system logs automatically"
+arch=('i686' 'x86_64')
+url="https://fedorahosted.org/logrotate/";
+license=('GPL')
+groups=('base')
+depends=('popt' 'gzip' 'acl')
+optdepends=('cron: scheduled log rotation')
+backup=('etc/logrotate.conf')
+source=("https://fedorahosted.org/releases/l/o/logrotate/logrotate-${pkgver}.tar.gz";
+'noasprintf.patch'
+'paths.patch'
+'logrotate.conf'
+'logrotate.cron.daily')
+md5sums=('7be7f1eabea33a1d0483438a6e33d634'
+ 'cd76976b5ce37d328b452c806b55a015'
+ 'e76526bcd6fc33c9d921e1cb1eff1ffb'
+ '86209d257c8b8bc0ae34d6f6ef057c0f'
+ 'aa8ac8283908b6114483a293adcb650f')
+
+build() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   patch -p0 -i "$srcdir/noasprintf.patch"
+   patch -p0 -i "$srcdir/paths.patch"
+
+   make WITH_ACL=yes RPM_OPT_FLAGS="$CFLAGS" EXTRA_LDFLAGS="$LDFLAGS"
+}
+
+check() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+   make test
+}
+
+package() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+   make PREFIX="$pkgdir" MANDIR="/usr/share/man" install
+
+   install -Dm644 "$srcdir/logrotate.conf" "$pkgdir/etc/logrotate.conf"
+   install -Dm744 "$srcdir/logrotate.cron.daily" 
"$pkgdir/etc/cron.daily/logrotate"
+}

Copied: logrotate/repos/testing-i686/logrotate.conf (from rev 184024, 
logrotate/trunk/logrotate.conf)
===
--- testing-i686/logrotate.conf (rev 0)
+++ testing-i686/logrotate.conf 2013-05-01 06:54:16 UTC (rev 184025)
@@ -0,0 +1,38 @@
+# see "man logrotate" for details
+# rotate log files weekly
+weekly
+
+# keep 4 weeks worth of backlogs
+rotate 4
+
+# restrict maximum size of log files
+#size 20M
+
+# create new (empty) log files after rotating old ones
+create
+
+# uncomment this if you want your log files compressed
+#compress
+
+# Logs are moved into directory for rotation
+# olddir /var/log/archive
+
+# Ignore pacman saved files
+tabooext + .pacorig .pacnew .pacsave
+
+# Arch packages drop log rotation information into this directory
+include /etc/logrotate.d
+
+/var/log/wtmp {
+monthly
+create 0664 root utmp
+   minsize 1M
+rotate 1
+}
+
+/var/log/btmp {
+missingok
+monthly
+create 0600 root utmp
+rotate 1
+}

Copied: logrotate/repos/testing-i686/logrotate.cron.daily (from rev 184024, 
logrotate/trunk/logrotate.cron.daily)
===
--- testing-i686/logrotate.cron.daily   (rev 0)
+++ testing-i686/logrotate.cron.daily   2013-05-01

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

2013-04-30 Thread Pierre Schmitz
Date: Wednesday, May 1, 2013 @ 08:53:56
  Author: pierre
Revision: 184024

upgpkg: logrotate 3.8.4-1

Modified:
  logrotate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-01 06:28:49 UTC (rev 184023)
+++ PKGBUILD2013-05-01 06:53:56 UTC (rev 184024)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=logrotate
-pkgver=3.8.3
+pkgver=3.8.4
 pkgrel=1
 pkgdesc="Rotates system logs automatically"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 'paths.patch'
 'logrotate.conf'
 'logrotate.cron.daily')
-md5sums=('df67c8bda9139131d919931da443794d'
+md5sums=('7be7f1eabea33a1d0483438a6e33d634'
  'cd76976b5ce37d328b452c806b55a015'
  'e76526bcd6fc33c9d921e1cb1eff1ffb'
  '86209d257c8b8bc0ae34d6f6ef057c0f'



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

2013-04-30 Thread Giovanni Scafora
Date: Wednesday, May 1, 2013 @ 08:28:49
  Author: giovanni
Revision: 184023

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

Added:
  unrar/repos/extra-i686/PKGBUILD
(from rev 184022, unrar/trunk/PKGBUILD)
  unrar/repos/extra-i686/unrar-5.0.2-soname.patch
(from rev 184022, unrar/trunk/unrar-5.0.2-soname.patch)
  unrar/repos/extra-x86_64/PKGBUILD
(from rev 184022, unrar/trunk/PKGBUILD)
  unrar/repos/extra-x86_64/unrar-5.0.2-soname.patch
(from rev 184022, unrar/trunk/unrar-5.0.2-soname.patch)
Deleted:
  unrar/repos/extra-i686/PKGBUILD
  unrar/repos/extra-i686/unrar-4.2.1-soname.patch
  unrar/repos/extra-x86_64/PKGBUILD
  unrar/repos/extra-x86_64/unrar-4.2.1-soname.patch

---+
 /PKGBUILD |   98 
 extra-i686/PKGBUILD   |   49 
 extra-i686/unrar-4.2.1-soname.patch   |   11 ---
 extra-i686/unrar-5.0.2-soname.patch   |   11 +++
 extra-x86_64/PKGBUILD |   49 
 extra-x86_64/unrar-4.2.1-soname.patch |   11 ---
 extra-x86_64/unrar-5.0.2-soname.patch |   11 +++
 7 files changed, 120 insertions(+), 120 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-05-01 06:28:43 UTC (rev 184022)
+++ extra-i686/PKGBUILD 2013-05-01 06:28:49 UTC (rev 184023)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: dorphell 
-
-pkgbase=unrar
-pkgname=('unrar' 'libunrar')
-pkgver=4.2.4
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.rarlab.com/rar_add.htm";
-license=('custom')
-makedepends=('gcc-libs')
-source=("http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz";
-'unrar-4.2.1-soname.patch')
-md5sums=('8ea9d1b4139474b282d76e627a2de3e4'
- 'b9ec767da9a36f5ac38034c974e77758')
-
-build() {
-  cd "${srcdir}/${pkgbase}"
-
-  patch -Np0 -i "${srcdir}/unrar-4.2.1-soname.patch"
-
-  cp -a ${srcdir}/unrar ${srcdir}/libunrar
-  make -C "${srcdir}"/libunrar -f makefile.unix lib libversion=${pkgver} 
CXXFLAGS="-fPIC ${CXXFLAGS}"
-  make -f makefile.unix CXXFLAGS="-fPIC ${CXXFLAGS}" STRIP="true"
-}
-
-package_unrar() {
-  pkgdesc="The RAR uncompression program"
-  depends=('gcc-libs')
-  cd "${srcdir}/${pkgbase}"
-
-  install -Dm755 unrar "${pkgdir}/usr/bin/unrar"
-  # install license
-  install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_libunrar() {
-  pkgdesc="Library and header file for applications that use libunrar"
-  depends=('gcc-libs')
-  cd "${srcdir}/libunrar"
-
-  install -Dm755 libunrar.so.${pkgver} 
"${pkgdir}/usr/lib/libunrar.so.${pkgver}"
-  install -Dm644 dll.hpp "${pkgdir}/usr/include/unrar/dll.hpp"
-  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so.4"
-  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so"
-  # install license
-  install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: unrar/repos/extra-i686/PKGBUILD (from rev 184022, unrar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-05-01 06:28:49 UTC (rev 184023)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: dorphell 
+
+pkgbase=unrar
+pkgname=('unrar' 'libunrar')
+pkgver=5.0.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.rarlab.com/rar_add.htm";
+license=('custom')
+makedepends=('gcc-libs')
+source=("http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz";
+'unrar-5.0.2-soname.patch')
+md5sums=('f8295f66c8323c73c286fd8eef63b235'
+ '4b7cad1a0cd7225f7e115f770e85dd58')
+
+build() {
+  cd "${srcdir}/${pkgbase}"
+
+  patch -Np0 -i "${srcdir}/unrar-5.0.2-soname.patch"
+
+  cp -a ${srcdir}/unrar ${srcdir}/libunrar
+  make -C "${srcdir}"/libunrar -f makefile lib libversion=${pkgver} 
CXXFLAGS="-fPIC ${CXXFLAGS}"
+  make -f makefile CXXFLAGS="-fPIC ${CXXFLAGS}" STRIP="true"
+}
+
+package_unrar() {
+  pkgdesc="The RAR uncompression program"
+  depends=('gcc-libs')
+  cd "${srcdir}/${pkgbase}"
+
+  install -Dm755 unrar "${pkgdir}/usr/bin/unrar"
+  # install license
+  install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_libunrar() {
+  pkgdesc="Library and header file for applications that use libunrar"
+  depends=('gcc-libs')
+  cd "${srcdir}/libunrar"
+
+  install -Dm755 libunrar.so.${pkgver} 
"${pkgdir}/usr/lib/libunrar.so.${pkgver}"
+  install -Dm644 dll.hpp "${pkgdir}/usr/include/unrar/dll.hpp"
+  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so.5"
+  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so"
+  # install license
+  install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-i686/unrar-4.2.1-soname.patch
===
--- extra-i686/unrar-4.2.1-soname.patch 2013-05-01

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

2013-04-30 Thread Giovanni Scafora
Date: Wednesday, May 1, 2013 @ 08:28:43
  Author: giovanni
Revision: 184022

upgpkg: unrar 5.0.2-1

upstream release

Added:
  unrar/trunk/unrar-5.0.2-soname.patch
Modified:
  unrar/trunk/PKGBUILD
Deleted:
  unrar/trunk/unrar-4.2.1-soname.patch

--+
 PKGBUILD |   16 
 unrar-4.2.1-soname.patch |   11 ---
 unrar-5.0.2-soname.patch |   11 +++
 3 files changed, 19 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-01 05:45:14 UTC (rev 184021)
+++ PKGBUILD2013-05-01 06:28:43 UTC (rev 184022)
@@ -4,25 +4,25 @@
 
 pkgbase=unrar
 pkgname=('unrar' 'libunrar')
-pkgver=4.2.4
+pkgver=5.0.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.rarlab.com/rar_add.htm";
 license=('custom')
 makedepends=('gcc-libs')
 source=("http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz";
-'unrar-4.2.1-soname.patch')
-md5sums=('8ea9d1b4139474b282d76e627a2de3e4'
- 'b9ec767da9a36f5ac38034c974e77758')
+'unrar-5.0.2-soname.patch')
+md5sums=('f8295f66c8323c73c286fd8eef63b235'
+ '4b7cad1a0cd7225f7e115f770e85dd58')
 
 build() {
   cd "${srcdir}/${pkgbase}"
 
-  patch -Np0 -i "${srcdir}/unrar-4.2.1-soname.patch"
+  patch -Np0 -i "${srcdir}/unrar-5.0.2-soname.patch"
 
   cp -a ${srcdir}/unrar ${srcdir}/libunrar
-  make -C "${srcdir}"/libunrar -f makefile.unix lib libversion=${pkgver} 
CXXFLAGS="-fPIC ${CXXFLAGS}"
-  make -f makefile.unix CXXFLAGS="-fPIC ${CXXFLAGS}" STRIP="true"
+  make -C "${srcdir}"/libunrar -f makefile lib libversion=${pkgver} 
CXXFLAGS="-fPIC ${CXXFLAGS}"
+  make -f makefile CXXFLAGS="-fPIC ${CXXFLAGS}" STRIP="true"
 }
 
 package_unrar() {
@@ -42,7 +42,7 @@
 
   install -Dm755 libunrar.so.${pkgver} 
"${pkgdir}/usr/lib/libunrar.so.${pkgver}"
   install -Dm644 dll.hpp "${pkgdir}/usr/include/unrar/dll.hpp"
-  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so.4"
+  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so.5"
   ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so"
   # install license
   install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"

Deleted: unrar-4.2.1-soname.patch
===
--- unrar-4.2.1-soname.patch2013-05-01 05:45:14 UTC (rev 184021)
+++ unrar-4.2.1-soname.patch2013-05-01 06:28:43 UTC (rev 184022)
@@ -1,11 +0,0 @@
 makefile.unix  2012-02-23 10:23:14.0 +0100
-+++ makefile.unix  2012-05-05 12:58:13.0 +0200
-@@ -131,7 +131,7 @@
- lib:  CXXFLAGS+=$(LIBFLAGS)
- lib:  clean $(OBJECTS) $(LIB_OBJ)
-   @rm -f libunrar.so
--  $(LINK) -shared -o libunrar.so $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
-+  $(LINK) -shared -Wl,-soname,libunrar.so.$(libversion) -o 
libunrar.so.$(libversion) $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
- 
- install-unrar:
-   install -D unrar $(DESTDIR)/bin/unrar

Added: unrar-5.0.2-soname.patch
===
--- unrar-5.0.2-soname.patch(rev 0)
+++ unrar-5.0.2-soname.patch2013-05-01 06:28:43 UTC (rev 184022)
@@ -0,0 +1,11 @@
+--- makefile   2013-04-29 16:27:05.0 +0200
 makefile   2013-05-01 08:06:07.0 +0200
+@@ -133,7 +133,7 @@
+ lib:  CXXFLAGS+=$(LIBFLAGS)
+ lib:  clean $(OBJECTS) $(LIB_OBJ)
+   @rm -f libunrar.so
+-  $(LINK) -shared -o libunrar.so $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
++  $(LINK) -shared -Wl,-soname,libunrar.so.$(libversion) -o 
libunrar.so.$(libversion) $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
+ 
+ install-unrar:
+   install -D unrar $(DESTDIR)/bin/unrar



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

2013-04-30 Thread Giovanni Scafora
Date: Wednesday, May 1, 2013 @ 07:38:53
  Author: giovanni
Revision: 89650

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

Added:
  ccid/repos/community-i686/PKGBUILD
(from rev 89649, ccid/trunk/PKGBUILD)
  ccid/repos/community-x86_64/PKGBUILD
(from rev 89649, ccid/trunk/PKGBUILD)
Deleted:
  ccid/repos/community-i686/PKGBUILD
  ccid/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-01 05:38:46 UTC (rev 89649)
+++ community-i686/PKGBUILD 2013-05-01 05:38:53 UTC (rev 89650)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Daniel Plaza 
-
-pkgname=ccid
-pkgver=1.4.9
-pkgrel=1
-pkgdesc="A generic USB Chip/Smart Card Interface Devices driver"
-arch=('i686' 'x86_64')
-url="http://pcsclite.alioth.debian.org/ccid.html";
-license=('LGPL' 'GPL')
-depends=('pcsclite' 'libusbx')
-makedepends=('pkg-config')
-backup=(etc/reader.conf.d/libccidtwin)
-source=("https://alioth.debian.org/frs/download.php/3864/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('1afd9cc6fb1676d1fdd605d10c70d08e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --enable-twinserial
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: ccid/repos/community-i686/PKGBUILD (from rev 89649, ccid/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-01 05:38:53 UTC (rev 89650)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Daniel Plaza 
+
+pkgname=ccid
+pkgver=1.4.10
+pkgrel=1
+pkgdesc="A generic USB Chip/Smart Card Interface Devices driver"
+arch=('i686' 'x86_64')
+url="http://pcsclite.alioth.debian.org/ccid.html";
+license=('LGPL' 'GPL')
+depends=('pcsclite' 'libusbx')
+makedepends=('pkg-config')
+backup=(etc/reader.conf.d/libccidtwin)
+source=("https://alioth.debian.org/frs/download.php/3897/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('5372e8593624dee837269bf86e4b8b06')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --enable-twinserial
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-05-01 05:38:46 UTC (rev 89649)
+++ community-x86_64/PKGBUILD   2013-05-01 05:38:53 UTC (rev 89650)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Daniel Plaza 
-
-pkgname=ccid
-pkgver=1.4.9
-pkgrel=1
-pkgdesc="A generic USB Chip/Smart Card Interface Devices driver"
-arch=('i686' 'x86_64')
-url="http://pcsclite.alioth.debian.org/ccid.html";
-license=('LGPL' 'GPL')
-depends=('pcsclite' 'libusbx')
-makedepends=('pkg-config')
-backup=(etc/reader.conf.d/libccidtwin)
-source=("https://alioth.debian.org/frs/download.php/3864/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('1afd9cc6fb1676d1fdd605d10c70d08e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --enable-twinserial
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: ccid/repos/community-x86_64/PKGBUILD (from rev 89649, 
ccid/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-05-01 05:38:53 UTC (rev 89650)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Daniel Plaza 
+
+pkgname=ccid
+pkgver=1.4.10
+pkgrel=1
+pkgdesc="A generic USB Chip/Smart Card Interface Devices driver"
+arch=('i686' 'x86_64')
+url="http://pcsclite.alioth.debian.org/ccid.html";
+license=('LGPL' 'GPL')
+depends=('pcsclite' 'libusbx')
+makedepends=('pkg-config')
+backup=(etc/reader.conf.d/libccidtwin)
+source=("https://alioth.debian.org/frs/download.php/3897/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('5372e8593624dee837269bf86e4b8b06')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --enable-twinserial
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}



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

2013-04-30 Thread Giovanni Scafora
Date: Wednesday, May 1, 2013 @ 07:38:46
  Author: giovanni
Revision: 89649

upgpkg: ccid 1.4.10-1

upstream release

Modified:
  ccid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 22:18:11 UTC (rev 89648)
+++ PKGBUILD2013-05-01 05:38:46 UTC (rev 89649)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Plaza 
 
 pkgname=ccid
-pkgver=1.4.9
+pkgver=1.4.10
 pkgrel=1
 pkgdesc="A generic USB Chip/Smart Card Interface Devices driver"
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 depends=('pcsclite' 'libusbx')
 makedepends=('pkg-config')
 backup=(etc/reader.conf.d/libccidtwin)
-source=("https://alioth.debian.org/frs/download.php/3864/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('1afd9cc6fb1676d1fdd605d10c70d08e')
+source=("https://alioth.debian.org/frs/download.php/3897/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('5372e8593624dee837269bf86e4b8b06')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



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

2013-04-30 Thread Giovanni Scafora
Date: Wednesday, May 1, 2013 @ 07:23:57
  Author: giovanni
Revision: 184020

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

Added:
  live-media/repos/extra-i686/PKGBUILD
(from rev 184019, live-media/trunk/PKGBUILD)
  live-media/repos/extra-x86_64/PKGBUILD
(from rev 184019, live-media/trunk/PKGBUILD)
Deleted:
  live-media/repos/extra-i686/PKGBUILD
  live-media/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-05-01 05:23:49 UTC (rev 184019)
+++ extra-i686/PKGBUILD 2013-05-01 05:23:57 UTC (rev 184020)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Gilles CHAUVIN 
-
-pkgname=live-media
-pkgver=2013.04.29
-pkgrel=1
-pkgdesc="A set of C++ libraries for multimedia streaming"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://live555.com/liveMedia";
-depends=('gcc-libs')
-source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
-md5sums=('9cdb58c0ecc02711388e9cded104aad6')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
-install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} "${pkgdir}/usr/bin"
-  done
-}

Copied: live-media/repos/extra-i686/PKGBUILD (from rev 184019, 
live-media/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-05-01 05:23:57 UTC (rev 184020)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Gilles CHAUVIN 
+
+pkgname=live-media
+pkgver=2013.04.30
+pkgrel=1
+pkgdesc="A set of C++ libraries for multimedia streaming"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://live555.com/liveMedia";
+depends=('gcc-libs')
+source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
+md5sums=('95533d91bd196e42fd748076dc244b09')
+
+build() {
+  cd ${srcdir}/live
+
+  sed \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
+  -i config.linux
+  ./genMakefiles linux
+  make
+}
+
+package() {
+  cd ${srcdir}/live
+
+  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
+install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
+install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
+install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
+  done
+
+  for testprog in `find testProgs -type f -perm 755`; do
+install ${testprog} "${pkgdir}/usr/bin"
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-05-01 05:23:49 UTC (rev 184019)
+++ extra-x86_64/PKGBUILD   2013-05-01 05:23:57 UTC (rev 184020)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Gilles CHAUVIN 
-
-pkgname=live-media
-pkgver=2013.04.29
-pkgrel=1
-pkgdesc="A set of C++ libraries for multimedia streaming"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://live555.com/liveMedia";
-depends=('gcc-libs')
-source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
-md5sums=('9cdb58c0ecc02711388e9cded104aad6')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
-install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} "${pkgdir}/usr/bin"
-  done
-}

Copied: live-media/repos/extra-x86_64/PKGBUILD (from rev 184019, 
live-media/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-05-01 05:23:57 UTC (rev 184020)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Gilles CHAUVI

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

2013-04-30 Thread Giovanni Scafora
Date: Wednesday, May 1, 2013 @ 07:23:49
  Author: giovanni
Revision: 184019

upgpkg: live-media 2013.04.30-1

upstream release

Modified:
  live-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-01 03:08:39 UTC (rev 184018)
+++ PKGBUILD2013-05-01 05:23:49 UTC (rev 184019)
@@ -3,7 +3,7 @@
 # Contributor: Gilles CHAUVIN 
 
 pkgname=live-media
-pkgver=2013.04.29
+pkgver=2013.04.30
 pkgrel=1
 pkgdesc="A set of C++ libraries for multimedia streaming"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 url="http://live555.com/liveMedia";
 depends=('gcc-libs')
 source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
-md5sums=('9cdb58c0ecc02711388e9cded104aad6')
+md5sums=('95533d91bd196e42fd748076dc244b09')
 
 build() {
   cd ${srcdir}/live



[arch-commits] Commit in fvwm-crystal/repos/extra-any (3 files)

2013-04-30 Thread Eric Bélanger
Date: Wednesday, May 1, 2013 @ 05:02:34
  Author: eric
Revision: 184017

archrelease: copy trunk to extra-any

Added:
  fvwm-crystal/repos/extra-any/PKGBUILD
(from rev 184016, fvwm-crystal/trunk/PKGBUILD)
Deleted:
  fvwm-crystal/repos/extra-any/PKGBUILD
  fvwm-crystal/repos/extra-any/python2.6.patch

-+
 PKGBUILD|   52 +++--
 python2.6.patch |   68 --
 2 files changed, 19 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-05-01 03:02:00 UTC (rev 184016)
+++ PKGBUILD2013-05-01 03:02:34 UTC (rev 184017)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=fvwm-crystal
-pkgver=3.0.6
-pkgrel=4
-pkgdesc="Transparent Themes for fvwm"
-arch=('any')
-url="http://gna.org/projects/fvwm-crystal/";
-license=('GPL')
-depends=('fvwm' 'imagemagick' 'python2' 'habak' 'trayer')
-options=('!makeflags')
-source=(http://download.gna.org/fvwm-crystal/${pkgver}/${pkgname}-${pkgver}.tar.gz
 python2.6.patch)
-md5sums=('82e2800882abb2c822519f1aa4dc0c72'
- 'c0baa3da5e188f7e0f7a01d6481b6a53')
-sha1sums=('965e521f64b8a89994f5afee25c8b1c88239bff0'
-  'cfac2165ca8311fc446410cfed3b1d1f92b8ae61')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -p0 < ../python2.6.patch
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make prefix="${pkgdir}/usr" install install-doc
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/fvwm-crystal.{apps,wallpaper} \
-
"${pkgdir}"/usr/share/fvwm-crystal/fvwm/scripts/FvwmMPD/{getprevdir.py,stripnames.py}
-  install -D -m644 addons/fvwm-crystal.desktop 
"${pkgdir}/usr/share/xsessions/fvwm-crystal.desktop"
-
-  # Cleaning up files from svn tree
-  find "${pkgdir}" -depth -type d -name .svn -exec rm -rf {} \;
-}

Copied: fvwm-crystal/repos/extra-any/PKGBUILD (from rev 184016, 
fvwm-crystal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-05-01 03:02:34 UTC (rev 184017)
@@ -0,0 +1,19 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=fvwm-crystal
+pkgver=3.1.7
+pkgrel=1
+pkgdesc="Transparent Themes for fvwm"
+arch=('any')
+url="http://fvwm-crystal.sourceforge.net/";
+license=('GPL')
+depends=('fvwm' 'imagemagick' 'python2' 'habak' 'trayer')
+options=('!makeflags')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('2824991976918621d05160aa76c742382e6e5176')
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" prefix=/usr install install-doc
+}

Deleted: python2.6.patch
===
--- python2.6.patch 2013-05-01 03:02:00 UTC (rev 184016)
+++ python2.6.patch 2013-05-01 03:02:34 UTC (rev 184017)
@@ -1,68 +0,0 @@
 bin/fvwm-crystal.apps.new  2008-10-24 23:48:23.0 +0200
-+++ bin/fvwm-crystal.apps  2008-10-24 23:54:45.0 +0200
-@@ -102,7 +102,7 @@
-   group = OptionGroup(parser, "General creation options", "Options 
definig what should be generated")
- # group.add_option('-g', '--generate', action = 'store', 
choices=['all','menus','panel','topapps'], dest='generate', default='all', 
metavar='WHAT',
- # help = "what should be generated. aviable options are: all, 
menus, panel, topapps. default is all.")
--  group.add_option('--with', action = 'append', type='string', 
dest='with', metavar='DIRECTORY',
-+  group.add_option('--with', action = 'append', type='string', 
dest='withdir', metavar='DIRECTORY',
-   help = 'generate entries only for defined entries (directories 
or files)')
-   group.add_option('--without', action = 'append', type='string', 
dest='without', metavar='DIRECTORY',
-   help = 'do NOT use defined entries (directories or files) for 
generating output.')
-@@ -206,7 +206,7 @@
- #end of parseArgv
- 
- 
--def 
getAppsData(databases=[database],checkExecs=False,searchIconsIn='',sortOrder='prio',minLength=3,with=None,without=None,rootName='/Applications',topInSub=True,fileIcon='default.png',dirIcon='directory.png'):
-+def 
getAppsData(databases=[database],checkExecs=False,searchIconsIn='',sortOrder='prio',minLength=3,withdir=None,without=None,rootName='/Applications',topInSub=True,fileIcon='default.png',dirIcon='directory.png'):
-   """Read application databases from directories.
-   if checkExecs is True then use exec_field from file name to check 
access before adding it to database
-   if searchIconsIn is provided then use this path to check icons existence
-@@ -235,7 +235,7 @@
-   return True
-   return False
- 
--  def get_entry(root,dir,cat,sort,check,with,without,realcat):
-+  def get_entry(root,dir,cat,sort,check,withdir,without,real

[arch-commits] Commit in fvwm-crystal/trunk (PKGBUILD python2.6.patch)

2013-04-30 Thread Eric Bélanger
Date: Wednesday, May 1, 2013 @ 05:02:00
  Author: eric
Revision: 184016

upgpkg: fvwm-crystal 3.1.7-1

Upstream update, Update url, Remove old patch, PKGBUILD clean up

Modified:
  fvwm-crystal/trunk/PKGBUILD
Deleted:
  fvwm-crystal/trunk/python2.6.patch

-+
 PKGBUILD|   28 +-
 python2.6.patch |   68 --
 2 files changed, 7 insertions(+), 89 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-01 02:10:20 UTC (rev 184015)
+++ PKGBUILD2013-05-01 03:02:00 UTC (rev 184016)
@@ -2,32 +2,18 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=fvwm-crystal
-pkgver=3.0.6
-pkgrel=4
+pkgver=3.1.7
+pkgrel=1
 pkgdesc="Transparent Themes for fvwm"
 arch=('any')
-url="http://gna.org/projects/fvwm-crystal/";
+url="http://fvwm-crystal.sourceforge.net/";
 license=('GPL')
 depends=('fvwm' 'imagemagick' 'python2' 'habak' 'trayer')
 options=('!makeflags')
-source=(http://download.gna.org/fvwm-crystal/${pkgver}/${pkgname}-${pkgver}.tar.gz
 python2.6.patch)
-md5sums=('82e2800882abb2c822519f1aa4dc0c72'
- 'c0baa3da5e188f7e0f7a01d6481b6a53')
-sha1sums=('965e521f64b8a89994f5afee25c8b1c88239bff0'
-  'cfac2165ca8311fc446410cfed3b1d1f92b8ae61')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('2824991976918621d05160aa76c742382e6e5176')
 
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -p0 < ../python2.6.patch
-}
-
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make prefix="${pkgdir}/usr" install install-doc
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/fvwm-crystal.{apps,wallpaper} \
-
"${pkgdir}"/usr/share/fvwm-crystal/fvwm/scripts/FvwmMPD/{getprevdir.py,stripnames.py}
-  install -D -m644 addons/fvwm-crystal.desktop 
"${pkgdir}/usr/share/xsessions/fvwm-crystal.desktop"
-
-  # Cleaning up files from svn tree
-  find "${pkgdir}" -depth -type d -name .svn -exec rm -rf {} \;
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" prefix=/usr install install-doc
 }

Deleted: python2.6.patch
===
--- python2.6.patch 2013-05-01 02:10:20 UTC (rev 184015)
+++ python2.6.patch 2013-05-01 03:02:00 UTC (rev 184016)
@@ -1,68 +0,0 @@
 bin/fvwm-crystal.apps.new  2008-10-24 23:48:23.0 +0200
-+++ bin/fvwm-crystal.apps  2008-10-24 23:54:45.0 +0200
-@@ -102,7 +102,7 @@
-   group = OptionGroup(parser, "General creation options", "Options 
definig what should be generated")
- # group.add_option('-g', '--generate', action = 'store', 
choices=['all','menus','panel','topapps'], dest='generate', default='all', 
metavar='WHAT',
- # help = "what should be generated. aviable options are: all, 
menus, panel, topapps. default is all.")
--  group.add_option('--with', action = 'append', type='string', 
dest='with', metavar='DIRECTORY',
-+  group.add_option('--with', action = 'append', type='string', 
dest='withdir', metavar='DIRECTORY',
-   help = 'generate entries only for defined entries (directories 
or files)')
-   group.add_option('--without', action = 'append', type='string', 
dest='without', metavar='DIRECTORY',
-   help = 'do NOT use defined entries (directories or files) for 
generating output.')
-@@ -206,7 +206,7 @@
- #end of parseArgv
- 
- 
--def 
getAppsData(databases=[database],checkExecs=False,searchIconsIn='',sortOrder='prio',minLength=3,with=None,without=None,rootName='/Applications',topInSub=True,fileIcon='default.png',dirIcon='directory.png'):
-+def 
getAppsData(databases=[database],checkExecs=False,searchIconsIn='',sortOrder='prio',minLength=3,withdir=None,without=None,rootName='/Applications',topInSub=True,fileIcon='default.png',dirIcon='directory.png'):
-   """Read application databases from directories.
-   if checkExecs is True then use exec_field from file name to check 
access before adding it to database
-   if searchIconsIn is provided then use this path to check icons existence
-@@ -235,7 +235,7 @@
-   return True
-   return False
- 
--  def get_entry(root,dir,cat,sort,check,with,without,realcat):
-+  def get_entry(root,dir,cat,sort,check,withdir,without,realcat):
-   if not os.path.isdir(os.path.join(root,dir)) or not 
os.access(os.path.join(root,dir),os.R_OK):
-   yield None
-   for entry in os.listdir(os.path.join(root,dir)):
-@@ -268,9 +268,9 @@
-   if not checkFileAccess(test):
-   continue
- 
--  if with and len(with)>0:
-+  if withdir and len(withdir)>0:
-   cont=False
--  for i,v in 

[arch-commits] Commit in alsa-firmware/repos (testing-any testing-any/PKGBUILD)

2013-04-30 Thread Jan Steffens
Date: Wednesday, May 1, 2013 @ 04:10:20
  Author: heftig
Revision: 184015

archrelease: copy trunk to testing-any

Added:
  alsa-firmware/repos/testing-any/
  alsa-firmware/repos/testing-any/PKGBUILD
(from rev 184014, alsa-firmware/trunk/PKGBUILD)

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

Copied: alsa-firmware/repos/testing-any/PKGBUILD (from rev 184014, 
alsa-firmware/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-05-01 02:10:20 UTC (rev 184015)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Jochen Immendörfer 
+pkgname=alsa-firmware
+pkgver=1.0.27
+pkgrel=2
+pkgdesc="ALSA firmware package"
+arch=('any')
+url="http://alsa-project.org/";
+license=('GPL')
+source=(ftp://ftp.alsa-project.org/pub/firmware/$pkgname-$pkgver.tar.bz2)
+options=(!strip)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-hotplug-dir=/usr/lib/firmware
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # remove files which conflicts with linux-firmware
+  rm -rf ${pkgdir}/usr/lib/firmware/{ct{efx,speq}.bin,ess,korg,sb16,yamaha}
+  # remove broken symlinks (broken upstream)
+  rm -rf ${pkgdir}/usr/lib/firmware/turtlebeach
+  # remove empty dir
+  rm -rf ${pkgdir}/usr/bin
+}
+md5sums=('b373b350d5151dd7d64db2fc12936b04')



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

2013-04-30 Thread Jan Steffens
Date: Wednesday, May 1, 2013 @ 04:09:14
  Author: heftig
Revision: 184014

arch=any (contents identical); more linux-firmware conflicts

Modified:
  alsa-firmware/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 20:28:23 UTC (rev 184013)
+++ PKGBUILD2013-05-01 02:09:14 UTC (rev 184014)
@@ -3,9 +3,9 @@
 # Contributor: Jochen Immendörfer 
 pkgname=alsa-firmware
 pkgver=1.0.27
-pkgrel=1
+pkgrel=2
 pkgdesc="ALSA firmware package"
-arch=('i686' 'x86_64')
+arch=('any')
 url="http://alsa-project.org/";
 license=('GPL')
 source=(ftp://ftp.alsa-project.org/pub/firmware/$pkgname-$pkgver.tar.bz2)
@@ -21,7 +21,7 @@
   cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
   # remove files which conflicts with linux-firmware
-  rm -rf ${pkgdir}/usr/lib/firmware/{ess,korg,sb16,yamaha}
+  rm -rf ${pkgdir}/usr/lib/firmware/{ct{efx,speq}.bin,ess,korg,sb16,yamaha}
   # remove broken symlinks (broken upstream)
   rm -rf ${pkgdir}/usr/lib/firmware/turtlebeach
   # remove empty dir



[arch-commits] Commit in cinnamon/repos (28 files)

2013-04-30 Thread Alexandre Filgueira
Date: Wednesday, May 1, 2013 @ 00:18:11
  Author: faidoc
Revision: 89648

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

Added:
  cinnamon/repos/community-i686/PKGBUILD
(from rev 89647, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-i686/cinnamon.install
(from rev 89647, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-i686/fallback-helpers.patch
(from rev 89647, cinnamon/trunk/fallback-helpers.patch)
  cinnamon/repos/community-i686/fix-control-center-check.patch
(from rev 89647, cinnamon/trunk/fix-control-center-check.patch)
  cinnamon/repos/community-i686/gnome-3.8.patch
(from rev 89647, cinnamon/trunk/gnome-3.8.patch)
  cinnamon/repos/community-i686/keyboard_applet.patch
(from rev 89647, cinnamon/trunk/keyboard_applet.patch)
  cinnamon/repos/community-i686/switch-applications.patch
(from rev 89647, cinnamon/trunk/switch-applications.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 89647, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/cinnamon.install
(from rev 89647, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-x86_64/fallback-helpers.patch
(from rev 89647, cinnamon/trunk/fallback-helpers.patch)
  cinnamon/repos/community-x86_64/fix-control-center-check.patch
(from rev 89647, cinnamon/trunk/fix-control-center-check.patch)
  cinnamon/repos/community-x86_64/gnome-3.8.patch
(from rev 89647, cinnamon/trunk/gnome-3.8.patch)
  cinnamon/repos/community-x86_64/keyboard_applet.patch
(from rev 89647, cinnamon/trunk/keyboard_applet.patch)
  cinnamon/repos/community-x86_64/switch-applications.patch
(from rev 89647, cinnamon/trunk/switch-applications.patch)
Deleted:
  cinnamon/repos/community-i686/PKGBUILD
  cinnamon/repos/community-i686/cinnamon.install
  cinnamon/repos/community-i686/fallback-helpers.patch
  cinnamon/repos/community-i686/fix-control-center-check.patch
  cinnamon/repos/community-i686/gnome-3.8.patch
  cinnamon/repos/community-i686/keyboard_applet.patch
  cinnamon/repos/community-i686/switch-applications.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/cinnamon.install
  cinnamon/repos/community-x86_64/fallback-helpers.patch
  cinnamon/repos/community-x86_64/fix-control-center-check.patch
  cinnamon/repos/community-x86_64/gnome-3.8.patch
  cinnamon/repos/community-x86_64/keyboard_applet.patch
  cinnamon/repos/community-x86_64/switch-applications.patch

-+
 /PKGBUILD   |  158 
 /cinnamon.install   |   22 
 /fallback-helpers.patch |   40 
 /fix-control-center-check.patch |   24 
 /gnome-3.8.patch| 7904 ++
 /keyboard_applet.patch  |  284 
 /switch-applications.patch  |   62 
 community-i686/PKGBUILD |   79 
 community-i686/cinnamon.install |   11 
 community-i686/fallback-helpers.patch   |   20 
 community-i686/fix-control-center-check.patch   |   12 
 community-i686/gnome-3.8.patch  | 3962 ---
 community-i686/keyboard_applet.patch|  142 
 community-i686/switch-applications.patch|   31 
 community-x86_64/PKGBUILD   |   79 
 community-x86_64/cinnamon.install   |   11 
 community-x86_64/fallback-helpers.patch |   20 
 community-x86_64/fix-control-center-check.patch |   12 
 community-x86_64/gnome-3.8.patch| 3962 ---
 community-x86_64/keyboard_applet.patch  |  142 
 community-x86_64/switch-applications.patch  |   31 
 21 files changed, 8494 insertions(+), 8514 deletions(-)

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


[arch-commits] Commit in cinnamon/trunk (PKGBUILD gnome-3.8.patch)

2013-04-30 Thread Alexandre Filgueira
Date: Wednesday, May 1, 2013 @ 00:17:28
  Author: faidoc
Revision: 89647

upgpkg: cinnamon 1.7.8-1

Modified:
  cinnamon/trunk/PKGBUILD
  cinnamon/trunk/gnome-3.8.patch

-+
 PKGBUILD|   16 
 gnome-3.8.patch |   30 ++
 2 files changed, 18 insertions(+), 28 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 21:58:46 UTC (rev 89646)
+++ PKGBUILD2013-04-30 22:17:28 UTC (rev 89647)
@@ -5,8 +5,8 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=1.7.7
-pkgrel=2
+pkgver=1.7.8
+pkgrel=1
 pkgdesc="Linux desktop which provides advanced innovative features and a 
traditional user experience"
 arch=('i686' 'x86_64')
 url="http://cinnamon.linuxmint.com/";
@@ -30,12 +30,12 @@
 "gnome-3.8.patch"
 "switch-applications.patch"
 "fallback-helpers.patch")
-md5sums=('a0ed2648d1d95edeac2e45e2c11508fe'
- '2b1ece84416c3e4de030be15f1774d82'
- 'c3f25b06d345d9d36c197cd96e08f496'
- '75c7e0d8d0e6fc4861753ce27e0438c8'
- '3880fa4c5234771644e5b57a1ade4456'
- '0dac5a546bf16921a4fdde8525366a24')
+sha256sums=('812042c6b7685e2054602a29ed190f8efc07f67f92be1bc496358307534cb969'
+'a0c05c995102b16f1060cbd43931eeaefeafd0265a0335e4ca14a143bd4c8c30'
+'ee5694bdc997ffa35a817f691b15bae13747137d35ec2aecd0da298d7edbe426'
+'0971ac14bc31167d3b94ea93e608c5d49518a12b89f40c97f84d80e715657aa3'
+'921a1f63d2890dd54c149aa27a3d3209ac2fb843be597ae4ef3b4621e76a2262'
+'fc8e8f5b7772ff331212280b0d4cf624c5ca2a442e8e8defc319cc2f2b060f2e')
 
 build() {
   cd ${srcdir}/linuxmint-Cinnamon*

Modified: gnome-3.8.patch
===
--- gnome-3.8.patch 2013-04-30 21:58:46 UTC (rev 89646)
+++ gnome-3.8.patch 2013-04-30 22:17:28 UTC (rev 89647)
@@ -196,11 +196,9 @@

  
""
-diff --git a/files/usr/lib/cinnamon-settings/modules/cs_backgrounds.py 
b/files/usr/lib/cinnamon-settings/modules/cs_backgrounds.py
-index f964aed..4a38c84 100644
 a/files/usr/lib/cinnamon-settings/modules/cs_backgrounds.py
-+++ b/files/usr/lib/cinnamon-settings/modules/cs_backgrounds.py
-@@ -232,11 +232,11 @@ def getFirstFileFromBackgroundXml(self, filename):
+--- 
linuxmint-Cinnamon-a464dc9.orig/files/usr/lib/cinnamon-settings/modules/cs_backgrounds.py
 2013-04-30 18:01:56.0 +0200
 
linuxmint-Cinnamon-a464dc9/files/usr/lib/cinnamon-settings/modules/cs_backgrounds.py
  2013-04-30 23:36:46.718385152 +0200
+@@ -232,11 +232,11 @@
  
  
  class BackgroundWallpaperPane (Gtk.VBox):
@@ -214,7 +212,7 @@
  self._sidepage = sidepage
  
  scw = Gtk.ScrolledWindow()
-@@ -263,15 +263,15 @@ def _on_selection_changed(self, iconview):
+@@ -263,15 +263,15 @@
  if wallpaper:
  for key in wallpaper:
  if key == "filename":
@@ -235,16 +233,7 @@
  if (not "metadataFile" in wallpaper) or 
(wallpaper["metadataFile"] == ""):
  self._sidepage.remove_wallpaper_button.set_sensitive(True)
  
-@@ -364,7 +364,7 @@ def run(self):
- return res
- 
- class BackgroundSlideshowPane(Gtk.Table):
--def __init__(self, sidepage, gnome_background_schema, 
cinnamon_background_schema):
-+def __init__(self, sidepage, cinnamon_background_schema):
- Gtk.Table.__init__(self)
- self.set_col_spacings(5)
- self.set_row_spacings(5)
-@@ -445,12 +445,11 @@ def _do_update_list(self, folder, recursive, delay, 
transition_duration = 0):
+@@ -445,12 +445,11 @@
  f = open(filename, "w")
  f.write(xml_data)
  f.close()
@@ -253,23 +242,23 @@
  
  class BackgroundSidePage (SidePage):
  def __init__(self, name, icon, keywords, advanced, content_box):
- SidePage.__init__(self, name, icon, keywords, advanced, content_box, 
True)
+ SidePage.__init__(self, name, icon, keywords, advanced, content_box, 
-1)
 -self._gnome_background_schema = 
Gio.Settings("org.gnome.desktop.background")
  self._cinnamon_background_schema = 
Gio.Settings("org.cinnamon.background")
  self._add_wallpapers_dialog = AddWallpapersDialog()
  
-@@ -515,8 +514,8 @@ def build(self, advanced):
+@@ -515,8 +514,8 @@
  self.mainbox.set_visible_window(False)
  self.content_box.pack_start(self.mainbox, True, True, 3)
  
 -self.wallpaper_pane = BackgroundWallpaperPane(self, 
self._gnome_background_schema)
 -self.slideshow_pane = BackgroundSlideshowPane(self, 
self._gnome_background_schema, self._cinnamon_background_schema)
 +self.wallpaper_pane = BackgroundWallpaperPane(self, 
self._cinnamon_background_schema)
-+self.slideshow_pane = BackgroundSlideshowPane(self, 
self._cinnamon_background_schema)
++self.slideshow_pane = BackgroundSlideshowPane(self, 
self._ci

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

2013-04-30 Thread Eric Bélanger
Date: Tuesday, April 30, 2013 @ 23:58:46
  Author: eric
Revision: 89646

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-30 21:58:20 UTC (rev 89645)
+++ PKGBUILD2013-04-30 21:58:46 UTC (rev 89646)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=youtube-dl
-pkgver=2013.04.22
-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')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha1sums=('d28148c1f10aae7555471ad98be7dc457db2c77c'
-  '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 89645, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-04-30 21:58:46 UTC (rev 89646)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=youtube-dl
+pkgver=2013.04.31
+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')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha1sums=('03fc4109cccb8359f30c17da59f22235ae7400f4'
+  '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-04-30 Thread Eric Bélanger
Date: Tuesday, April 30, 2013 @ 23:58:20
  Author: eric
Revision: 89645

upgpkg: youtube-dl 2013.04.31-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 21:20:15 UTC (rev 89644)
+++ PKGBUILD2013-04-30 21:58:20 UTC (rev 89645)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=youtube-dl
-pkgver=2013.04.22
+pkgver=2013.04.31
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python')
 makedepends=('python-distribute')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha1sums=('d28148c1f10aae7555471ad98be7dc457db2c77c'
+sha1sums=('03fc4109cccb8359f30c17da59f22235ae7400f4'
   'SKIP')
 
 prepare() {



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

2013-04-30 Thread Alexandre Filgueira
Date: Tuesday, April 30, 2013 @ 23:20:15
  Author: faidoc
Revision: 89644

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

Added:
  nemo/repos/community-i686/PKGBUILD
(from rev 89643, nemo/trunk/PKGBUILD)
  nemo/repos/community-i686/nemo.install
(from rev 89643, nemo/trunk/nemo.install)
  nemo/repos/community-i686/remove-desktop-background.patch
(from rev 89643, nemo/trunk/remove-desktop-background.patch)
  nemo/repos/community-i686/tracker-0.16.patch
(from rev 89643, nemo/trunk/tracker-0.16.patch)
  nemo/repos/community-x86_64/PKGBUILD
(from rev 89643, nemo/trunk/PKGBUILD)
  nemo/repos/community-x86_64/nemo.install
(from rev 89643, nemo/trunk/nemo.install)
  nemo/repos/community-x86_64/remove-desktop-background.patch
(from rev 89643, nemo/trunk/remove-desktop-background.patch)
  nemo/repos/community-x86_64/tracker-0.16.patch
(from rev 89643, nemo/trunk/tracker-0.16.patch)
Deleted:
  nemo/repos/community-i686/PKGBUILD
  nemo/repos/community-i686/nemo.install
  nemo/repos/community-i686/remove-desktop-background.patch
  nemo/repos/community-i686/tracker-0.16.patch
  nemo/repos/community-x86_64/PKGBUILD
  nemo/repos/community-x86_64/nemo.install
  nemo/repos/community-x86_64/remove-desktop-background.patch
  nemo/repos/community-x86_64/tracker-0.16.patch

--+
 /PKGBUILD|  102 +
 /nemo.install|   28 
 /remove-desktop-background.patch | 2100 +
 /tracker-0.16.patch  |   66 
 community-i686/PKGBUILD  |   51 
 community-i686/nemo.install  |   14 
 community-i686/remove-desktop-background.patch   | 1050 --
 community-i686/tracker-0.16.patch|   33 
 community-x86_64/PKGBUILD|   51 
 community-x86_64/nemo.install|   14 
 community-x86_64/remove-desktop-background.patch | 1050 --
 community-x86_64/tracker-0.16.patch  |   33 
 12 files changed, 2296 insertions(+), 2296 deletions(-)

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


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

2013-04-30 Thread Alexandre Filgueira
Date: Tuesday, April 30, 2013 @ 23:19:43
  Author: faidoc
Revision: 89643

upgpkg: nemo 1.7.5-1

Modified:
  nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 20:49:34 UTC (rev 89642)
+++ PKGBUILD2013-04-30 21:19:43 UTC (rev 89643)
@@ -3,7 +3,7 @@
 # Contributor: Ner0
 
 pkgname=nemo
-pkgver=1.7.4
+pkgver=1.7.5
 pkgrel=1
 pkgdesc="Cinnamon file manager (Nautilus fork)"
 arch=('i686' 'x86_64')
@@ -18,9 +18,9 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver";
 "tracker-0.16.patch"
 "remove-desktop-background.patch")
-md5sums=('fc5595a2489ed28f274c5f79ce95d5de'
- '9e170cc74eee901634b3367b06a209c6'
- 'f10af52377e44e1efe8ec4934aa4d4d2')
+sha256sums=('d7937ddeb6e9fe1da1283ff306fbb32e6554701d629b63232cbb0a5a9268c99d'
+'2b86f486add84e3affb0b14eb84425443e7cf5e593738d10d02e9c2ac0f17626'
+'0bd07fd931ad701442358cdcbd26e0c5d57717ffadfd39a1cba137e36def1aa5')
 
 build() {
   cd linuxmint-nemo-*



[arch-commits] Commit in terminator/repos/community-any (4 files)

2013-04-30 Thread Guillaume Alaux
Date: Tuesday, April 30, 2013 @ 22:49:34
  Author: guillaume
Revision: 89642

archrelease: copy trunk to community-any

Added:
  terminator/repos/community-any/PKGBUILD
(from rev 89641, terminator/trunk/PKGBUILD)
  terminator/repos/community-any/terminator.install
(from rev 89641, terminator/trunk/terminator.install)
Deleted:
  terminator/repos/community-any/PKGBUILD
  terminator/repos/community-any/terminator.install

+
 PKGBUILD   |   84 ++-
 terminator.install |   24 +++---
 2 files changed, 55 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-30 20:48:43 UTC (rev 89641)
+++ PKGBUILD2013-04-30 20:49:34 UTC (rev 89642)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX 
-# Contributor: Allan McRae 
-# Contributor: fancris3 
-# Contributor: Daniel J Griffiths 
-
-pkgname=terminator
-pkgver=0.96
-pkgrel=4
-pkgdesc='Terminal emulator that supports tabs and grids'
-arch=('any')
-url='http://www.tenshu.net/p/terminator.html'
-license=('GPL2')
-depends=('vte' 'pygtk' 'xdg-utils' 'python2-notify' 'python2-keybinder2')
-makedepends=('desktop-file-utils' 'gettext' 'intltool')
-install=terminator.install
-source=("https://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz";)
-sha256sums=('d708c783c36233fcafbd0139a91462478ae40f5cf696ef4acfcaf5891a843201')
-
-build() {
-cd ${pkgname}-${pkgver}
-
-# python2 fix
-for file in terminatorlib/{,plugins/}*.py; do
-sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-done
-
-python2 setup.py build
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-python2 setup.py install --skip-build --root=${pkgdir}
-
-rm -f ${pkgdir}/usr/share/applications/${pkgname}.desktop
-rm -f ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache
-install -D -m644 ${srcdir}/${pkgname}-${pkgver}/data/${pkgname}.desktop.in 
${pkgdir}/usr/share/applications/${pkgname}.desktop
-sed -i 's|_||' ${pkgdir}/usr/share/applications/${pkgname}.desktop
-}

Copied: terminator/repos/community-any/PKGBUILD (from rev 89641, 
terminator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-04-30 20:49:34 UTC (rev 89642)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Guillaume ALAUX 
+# Contributor: Allan McRae 
+# Contributor: fancris3 
+# Contributor: Daniel J Griffiths 
+
+pkgname=terminator
+pkgver=0.97
+pkgrel=1
+pkgdesc='Terminal emulator that supports tabs and grids'
+arch=('any')
+url='http://www.tenshu.net/p/terminator.html'
+license=('GPL2')
+# Note: the package named 'vte3' is actually vte for GTK 3
+# and terminator seems to require vte for GTK 2
+depends=('vte' 'pygtk' 'xdg-utils' 'python2-notify' 'python2-keybinder2')
+makedepends=('desktop-file-utils' 'gettext' 'intltool')
+install=terminator.install
+source=("http://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('0281b568913f392eec92ebee3c6fea15afe4f4e01869bad38d9efe0eb305be49')
+
+build() {
+cd ${srcdir}/trunk
+
+# python2 fix
+for file in terminatorlib/{,plugins/}*.py; do
+sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+done
+
+python2 setup.py build
+}
+
+package() {
+cd ${srcdir}/trunk
+
+python2 setup.py install --skip-build --root=${pkgdir}
+
+rm -f ${pkgdir}/usr/share/applications/${pkgname}.desktop
+rm -f ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache
+install -D -m644 ${srcdir}/trunk/data/${pkgname}.desktop.in 
${pkgdir}/usr/share/applications/${pkgname}.desktop
+sed -i 's|_||' ${pkgdir}/usr/share/applications/${pkgname}.desktop
+}

Deleted: terminator.install
===
--- terminator.install  2013-04-30 20:48:43 UTC (rev 89641)
+++ terminator.install  2013-04-30 20:49:34 UTC (rev 89642)
@@ -1,12 +0,0 @@
-post_install() {
-  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
-}
-

Copied: terminator/repos/community-any/terminator.install (from rev 89641, 
terminator/trunk/terminator.install)
===
--- terminator.install  (rev 0)
+++ terminator.install  2013-04-30 20:49:34 UTC (rev 89642)
@@ -0,0 +1,12 @@
+post_install() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  which xdg-icon-resource

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

2013-04-30 Thread Guillaume Alaux
Date: Tuesday, April 30, 2013 @ 22:48:43
  Author: guillaume
Revision: 89641

Upstream release

Modified:
  terminator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 19:52:06 UTC (rev 89640)
+++ PKGBUILD2013-04-30 20:48:43 UTC (rev 89641)
@@ -5,20 +5,22 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=terminator
-pkgver=0.96
-pkgrel=4
+pkgver=0.97
+pkgrel=1
 pkgdesc='Terminal emulator that supports tabs and grids'
 arch=('any')
 url='http://www.tenshu.net/p/terminator.html'
 license=('GPL2')
+# Note: the package named 'vte3' is actually vte for GTK 3
+# and terminator seems to require vte for GTK 2
 depends=('vte' 'pygtk' 'xdg-utils' 'python2-notify' 'python2-keybinder2')
 makedepends=('desktop-file-utils' 'gettext' 'intltool')
 install=terminator.install
-source=("https://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz";)
-sha256sums=('d708c783c36233fcafbd0139a91462478ae40f5cf696ef4acfcaf5891a843201')
+source=("http://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('0281b568913f392eec92ebee3c6fea15afe4f4e01869bad38d9efe0eb305be49')
 
 build() {
-cd ${pkgname}-${pkgver}
+cd ${srcdir}/trunk
 
 # python2 fix
 for file in terminatorlib/{,plugins/}*.py; do
@@ -30,12 +32,12 @@
 }
 
 package() {
-cd ${pkgname}-${pkgver}
+cd ${srcdir}/trunk
 
 python2 setup.py install --skip-build --root=${pkgdir}
 
 rm -f ${pkgdir}/usr/share/applications/${pkgname}.desktop
 rm -f ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache
-install -D -m644 ${srcdir}/${pkgname}-${pkgver}/data/${pkgname}.desktop.in 
${pkgdir}/usr/share/applications/${pkgname}.desktop
+install -D -m644 ${srcdir}/trunk/data/${pkgname}.desktop.in 
${pkgdir}/usr/share/applications/${pkgname}.desktop
 sed -i 's|_||' ${pkgdir}/usr/share/applications/${pkgname}.desktop
 }



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

2013-04-30 Thread Giovanni Scafora
Date: Tuesday, April 30, 2013 @ 22:28:23
  Author: giovanni
Revision: 184013

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

Added:
  live-media/repos/extra-i686/PKGBUILD
(from rev 184012, live-media/trunk/PKGBUILD)
  live-media/repos/extra-x86_64/PKGBUILD
(from rev 184012, live-media/trunk/PKGBUILD)
Deleted:
  live-media/repos/extra-i686/PKGBUILD
  live-media/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-30 20:28:14 UTC (rev 184012)
+++ extra-i686/PKGBUILD 2013-04-30 20:28:23 UTC (rev 184013)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Gilles CHAUVIN 
-
-pkgname=live-media
-pkgver=2013.04.23
-pkgrel=1
-pkgdesc="A set of C++ libraries for multimedia streaming"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://live555.com/liveMedia";
-depends=('gcc-libs')
-source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
-md5sums=('1440933d015689ca400d2a27884aee6f')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
-install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} "${pkgdir}/usr/bin"
-  done
-}

Copied: live-media/repos/extra-i686/PKGBUILD (from rev 184012, 
live-media/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-30 20:28:23 UTC (rev 184013)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Gilles CHAUVIN 
+
+pkgname=live-media
+pkgver=2013.04.29
+pkgrel=1
+pkgdesc="A set of C++ libraries for multimedia streaming"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://live555.com/liveMedia";
+depends=('gcc-libs')
+source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
+md5sums=('9cdb58c0ecc02711388e9cded104aad6')
+
+build() {
+  cd ${srcdir}/live
+
+  sed \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
+  -i config.linux
+  ./genMakefiles linux
+  make
+}
+
+package() {
+  cd ${srcdir}/live
+
+  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
+install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
+install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
+install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
+  done
+
+  for testprog in `find testProgs -type f -perm 755`; do
+install ${testprog} "${pkgdir}/usr/bin"
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-04-30 20:28:14 UTC (rev 184012)
+++ extra-x86_64/PKGBUILD   2013-04-30 20:28:23 UTC (rev 184013)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Gilles CHAUVIN 
-
-pkgname=live-media
-pkgver=2013.04.23
-pkgrel=1
-pkgdesc="A set of C++ libraries for multimedia streaming"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://live555.com/liveMedia";
-depends=('gcc-libs')
-source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
-md5sums=('1440933d015689ca400d2a27884aee6f')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
-install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} "${pkgdir}/usr/bin"
-  done
-}

Copied: live-media/repos/extra-x86_64/PKGBUILD (from rev 184012, 
live-media/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-04-30 20:28:23 UTC (rev 184013)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Gilles CHAUV

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

2013-04-30 Thread Giovanni Scafora
Date: Tuesday, April 30, 2013 @ 22:28:14
  Author: giovanni
Revision: 184012

upgpkg: live-media 2013.04.29-1

upstream release

Modified:
  live-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 20:11:04 UTC (rev 184011)
+++ PKGBUILD2013-04-30 20:28:14 UTC (rev 184012)
@@ -3,7 +3,7 @@
 # Contributor: Gilles CHAUVIN 
 
 pkgname=live-media
-pkgver=2013.04.23
+pkgver=2013.04.29
 pkgrel=1
 pkgdesc="A set of C++ libraries for multimedia streaming"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 url="http://live555.com/liveMedia";
 depends=('gcc-libs')
 source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
-md5sums=('1440933d015689ca400d2a27884aee6f')
+md5sums=('9cdb58c0ecc02711388e9cded104aad6')
 
 build() {
   cd ${srcdir}/live



[arch-commits] Commit in gstreamer0.10/repos (6 files)

2013-04-30 Thread Jan de Groot
Date: Tuesday, April 30, 2013 @ 22:11:04
  Author: jgc
Revision: 184011

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

Added:
  gstreamer0.10/repos/extra-i686/PKGBUILD
(from rev 184010, gstreamer0.10/trunk/PKGBUILD)
  
gstreamer0.10/repos/extra-i686/tests-remove-silly-test_fail_abstract_new-check.patch
(from rev 184010, 
gstreamer0.10/trunk/tests-remove-silly-test_fail_abstract_new-check.patch)
  gstreamer0.10/repos/extra-x86_64/PKGBUILD
(from rev 184010, gstreamer0.10/trunk/PKGBUILD)
  
gstreamer0.10/repos/extra-x86_64/tests-remove-silly-test_fail_abstract_new-check.patch
(from rev 184010, 
gstreamer0.10/trunk/tests-remove-silly-test_fail_abstract_new-check.patch)
Deleted:
  gstreamer0.10/repos/extra-i686/PKGBUILD
  gstreamer0.10/repos/extra-x86_64/PKGBUILD

+
 /PKGBUILD  |   92 
++
 extra-i686/PKGBUILD|   41 
 extra-i686/tests-remove-silly-test_fail_abstract_new-check.patch   |   60 
++
 extra-x86_64/PKGBUILD  |   41 
 extra-x86_64/tests-remove-silly-test_fail_abstract_new-check.patch |   60 
++
 5 files changed, 212 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-30 20:10:58 UTC (rev 184010)
+++ extra-i686/PKGBUILD 2013-04-30 20:11:04 UTC (rev 184011)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gstreamer0.10
-pkgver=0.10.36
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/";
-depends=('libxml2' 'glib2')
-optdepends=('sh: feedback script')
-makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection')
-options=('!libtool')
-source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
-md5sums=('15389c73e091b1dda915279c388b9cb2')
-
-build() {
-  cd "${srcdir}/gstreamer-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
---with-package-name="GStreamer (Archlinux)" \
---with-package-origin="http://www.archlinux.org/"; \
---enable-gtk-doc --disable-static
-  make
-}
-
-check() {
-  cd "${srcdir}/gstreamer-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/gstreamer-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  #Remove unversioned gst-* binaries to get rid of conflicts
-  cd "${pkgdir}/usr/bin"
-  for bins in `ls *-0.10`; do
-rm -f ${bins/-0.10/}
-  done
-}

Copied: gstreamer0.10/repos/extra-i686/PKGBUILD (from rev 184010, 
gstreamer0.10/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-30 20:11:04 UTC (rev 184011)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gstreamer0.10
+pkgver=0.10.36
+pkgrel=2
+pkgdesc="GStreamer Multimedia Framework"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.com";
+depends=('libxml2' 'glib2')
+optdepends=('sh: feedback script')
+makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection' 'git')
+options=('!libtool')
+source=("git://anongit.freedesktop.org/gstreamer-sdk/gstreamer#commit=ce96cff8e2bf1772dc330387fa98e94f187fc2ab"
+tests-remove-silly-test_fail_abstract_new-check.patch)
+sha256sums=('SKIP'
+'d3d3f4f04453831fdb4244bfe174a38c4e6f9f4da5c8c9050dcfa1a6097aad52')
+
+build() {
+  cd "${srcdir}/gstreamer"
+  patch -Np1 -i ../tests-remove-silly-test_fail_abstract_new-check.patch
+  sed -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' -i configure.ac
+  NOCONFIGURE=1 ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
+--with-package-name="GStreamer (Archlinux)" \
+--with-package-origin="http://www.archlinux.org/"; \
+--enable-gtk-doc --disable-static
+  make
+}
+
+check() {
+  cd "${srcdir}/gstreamer"
+  make check
+}
+
+package() {
+  cd "${srcdir}/gstreamer"
+  make DESTDIR="${pkgdir}" install
+
+  #Remove unversioned gst-* binaries to get rid of conflicts
+  cd "${pkgdir}/usr/bin"
+  for bins in `ls *-0.10`; do
+rm -f ${bins/-0.10/}
+  done
+}

Copied: 
gstreamer0.10/repos/extra-i686/tests-remove-silly-test_fail_abstract_new-check.patch
 (from rev 184010, 
gstreamer0.10/trunk/tests-remove-silly-test_fail_abstract_new-check.patch)
===
--- extra-i686/tests-remove-silly-test_fail_abstract_new-check.patch
(rev 0)
+++ extra-i686/tests-remove-silly-test_fail_abstract_new-check.patch
2013-04-30 20:11:04 UTC (rev 184011)
@@ -0,0 +1,60 @@
+From 5bff3ba949d2ac0a9946c1240e6d4a5bb53fda99 Mon Sep 17 00:00:00 2001
+From: Tim-Philipp Müller 
+Date: Wed, 08 Aug 2012 13:49:23 +
+Sub

[arch-commits] Commit in gstreamer0.10/trunk (2 files)

2013-04-30 Thread Jan de Groot
Date: Tuesday, April 30, 2013 @ 22:10:58
  Author: jgc
Revision: 184010

upgpkg: gstreamer0.10 0.10.36-2

Switch to GStreamer SDK for 0.10 branch. This is the only way to get supported 
0.10 maintenance

Added:
  gstreamer0.10/trunk/tests-remove-silly-test_fail_abstract_new-check.patch
Modified:
  gstreamer0.10/trunk/PKGBUILD

---+
 PKGBUILD  |   21 +++--
 tests-remove-silly-test_fail_abstract_new-check.patch |   60 
 2 files changed, 73 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 20:08:12 UTC (rev 184009)
+++ PKGBUILD2013-04-30 20:10:58 UTC (rev 184010)
@@ -3,20 +3,25 @@
 
 pkgname=gstreamer0.10
 pkgver=0.10.36
-pkgrel=1
+pkgrel=2
 pkgdesc="GStreamer Multimedia Framework"
 arch=('i686' 'x86_64')
 license=('LGPL')
-url="http://gstreamer.freedesktop.org/";
+url="http://gstreamer.com";
 depends=('libxml2' 'glib2')
 optdepends=('sh: feedback script')
-makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection')
+makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection' 'git')
 options=('!libtool')
-source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
-md5sums=('15389c73e091b1dda915279c388b9cb2')
+source=("git://anongit.freedesktop.org/gstreamer-sdk/gstreamer#commit=ce96cff8e2bf1772dc330387fa98e94f187fc2ab"
+tests-remove-silly-test_fail_abstract_new-check.patch)
+sha256sums=('SKIP'
+'d3d3f4f04453831fdb4244bfe174a38c4e6f9f4da5c8c9050dcfa1a6097aad52')
 
 build() {
-  cd "${srcdir}/gstreamer-${pkgver}"
+  cd "${srcdir}/gstreamer"
+  patch -Np1 -i ../tests-remove-silly-test_fail_abstract_new-check.patch
+  sed -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' -i configure.ac
+  NOCONFIGURE=1 ./autogen.sh
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
 --with-package-name="GStreamer (Archlinux)" \
 --with-package-origin="http://www.archlinux.org/"; \
@@ -25,12 +30,12 @@
 }
 
 check() {
-  cd "${srcdir}/gstreamer-${pkgver}"
+  cd "${srcdir}/gstreamer"
   make check
 }
 
 package() {
-  cd "${srcdir}/gstreamer-${pkgver}"
+  cd "${srcdir}/gstreamer"
   make DESTDIR="${pkgdir}" install
 
   #Remove unversioned gst-* binaries to get rid of conflicts

Added: tests-remove-silly-test_fail_abstract_new-check.patch
===
--- tests-remove-silly-test_fail_abstract_new-check.patch   
(rev 0)
+++ tests-remove-silly-test_fail_abstract_new-check.patch   2013-04-30 
20:10:58 UTC (rev 184010)
@@ -0,0 +1,60 @@
+From 5bff3ba949d2ac0a9946c1240e6d4a5bb53fda99 Mon Sep 17 00:00:00 2001
+From: Tim-Philipp Müller 
+Date: Wed, 08 Aug 2012 13:49:23 +
+Subject: tests: remove silly test_fail_abstract_new check
+
+Our check would make sure that GLib segfaults when
+someone tries to instantiate an abstract type, which
+is an extremely useful thing to check for.
+
+In newer GLibs this is fixed and we get an abort with
+a g_error() now it seems, so let's just remove this
+check entirely.
+---
+(limited to 'tests/check/gst/gstobject.c')
+
+diff --git a/tests/check/gst/gstobject.c b/tests/check/gst/gstobject.c
+index 6f7ccb8..ce2ed3e 100644
+--- a/tests/check/gst/gstobject.c
 b/tests/check/gst/gstobject.c
+@@ -72,19 +72,6 @@ gst_fake_object_get_type (void)
+   return fake_object_type;
+ }
+ 
+-#ifndef HAVE_OSX
+-/* g_object_new on abstract GstObject should fail */
+-GST_START_TEST (test_fail_abstract_new)
+-{
+-  GstObject *object;
+-
+-  ASSERT_CRITICAL (object = g_object_new (gst_object_get_type (), NULL));
+-  fail_unless (object == NULL, "Created an instance of abstract GstObject");
+-}
+-
+-GST_END_TEST;
+-#endif
+-
+ /* g_object_new on GstFakeObject should succeed */
+ GST_START_TEST (test_fake_object_new)
+ {
+@@ -529,18 +516,6 @@ gst_object_suite (void)
+   tcase_add_test (tc_chain, test_fake_object_has_ancestor);
+   //tcase_add_checked_fixture (tc_chain, setup, teardown);
+ 
+-  /* FIXME: GLib shouldn't crash here, but issue a warning and return a NULL
+-   * object, or at least g_error() and then abort properly ... (tpm) */
+-#ifndef HAVE_OSX
+-  /* Disabled for OS/X because a) it's a pretty silly test anyway and
+-   * b) different OS/X versions raise different signals and it isn't worth
+-   * the effort to try and detect which one should be producing which
+-   */
+-  /* SEGV tests go last so we can debug the others */
+-  if (g_getenv ("CK_FORK") == NULL || strcmp (g_getenv ("CK_FORK"), "no") != 
0)
+-tcase_add_test_raise_signal (tc_chain, test_fail_abstract_new, SIGSEGV);
+-#endif
+-
+   return s;
+ }
+ 
+--
+cgit v0.9.0.2-2-gbebe



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

2013-04-30 Thread Giovanni Scafora
Date: Tuesday, April 30, 2013 @ 22:08:12
  Author: giovanni
Revision: 184009

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

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

-+
 /PKGBUILD   |  168 ++
 /mkvtoolnix.install |   28 ++
 extra-i686/PKGBUILD |   84 ---
 extra-i686/mkvtoolnix.install   |   14 ---
 extra-x86_64/PKGBUILD   |   84 ---
 extra-x86_64/mkvtoolnix.install |   14 ---
 6 files changed, 196 insertions(+), 196 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-30 20:08:05 UTC (rev 184008)
+++ extra-i686/PKGBUILD 2013-04-30 20:08:12 UTC (rev 184009)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: xduugu 
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=6.1.0
-pkgrel=2
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.bunkus.org/videotools/mkvtoolnix/index.html";
-makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
- 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
-source=("http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz";)
-md5sums=('171e241756eb3b6f2e506f8539331fd9')
-
-build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  # Disable automagic curl dep used for online update checking
-  sed -i -e '/curl/d' configure.in
-  export CURL_CFLAGS="" CURL_LIBS=""
-
-  export CFLAGS="${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
-  export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3"
-
-  autoreconf
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
-  --disable-gui
-  rake
-
-  mv src/mkvinfo{,-cli}
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib
-  rake
-}
-
-package_mkvtoolnix-cli() {
-  pkgdesc="Set of tools to create, edit and inspect Matroska files - CLI 
version"
-  depends=('libmatroska' 'expat' 'flac' 'libvorbis' 'file' 'boost-libs' 'lzo2')
-  provides=('mkvtoolnix')
-  conflicts=('mkvtoolnix')
-  replaces=('mkvtoolnix')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  rake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/bin/mkvinfo
-  install -Dm755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
-
-  rm -rf "${pkgdir}"/usr/bin/mmg
-  rm -rf "${pkgdir}"/usr/share/man/ja/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/nl/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/zh_CN/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/man/uk/man1/mmg.1
-  rm -rf "${pkgdir}"/usr/share/applications
-  rm -rf "${pkgdir}"/usr/share/icons
-  rm -rf "${pkgdir}"/usr/share/mime
-}
-
-package_mkvtoolnix-gtk() {
-  pkgdesc="Set of tools to create, edit and inspect Matroska files - wxGTK GUI"
-  depends=("mkvtoolnix-cli=${pkgver}" 'wxgtk' 'xdg-utils')
-  install=mkvtoolnix.install
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  rake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/bin/mkv*
-  install -Dm755 src/mkvinfo "${pkgdir}"/usr/bin/mkvinfo-gtk
-  sed -ri 's/^(Exec=mkvinfo)/\1-gtk/' 
"${pkgdir}"/usr/share/applications/mkvinfo.desktop
-
-  rm -rf "${pkgdir}"/usr/share/doc
-  rm -rf "${pkgdir}"/usr/share/locale
-  rm -rf "${pkgdir}"/usr/share/man/ja/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/nl/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/zh_CN/man1/mkv*
-  rm -rf "${pkgdir}"/usr/share/man/uk/man1/mkv*
-}

Copied: mkvtoolnix/repos/extra-i686/PKGBUILD (from rev 184008, 
mkvtoolnix/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-30 20:08:12 UTC (rev 184009)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: xduugu 
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
+pkgver=6.2.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.bunkus.org/videotools/mkvtoolnix/index.html";
+makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
+ 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
+source=("http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz";)
+md5sums=('a09b69f7e17677f1b5bfd15720dd004c')
+
+build() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"

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

2013-04-30 Thread Giovanni Scafora
Date: Tuesday, April 30, 2013 @ 22:08:05
  Author: giovanni
Revision: 184008

upgpkg: mkvtoolnix 6.2.0-1

upstream release

Modified:
  mkvtoolnix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 18:49:43 UTC (rev 184007)
+++ PKGBUILD2013-04-30 20:08:05 UTC (rev 184008)
@@ -4,15 +4,15 @@
 
 pkgbase=mkvtoolnix
 pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=6.1.0
-pkgrel=2
+pkgver=6.2.0
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
 url="http://www.bunkus.org/videotools/mkvtoolnix/index.html";
 makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
  'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
 
source=("http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz";)
-md5sums=('171e241756eb3b6f2e506f8539331fd9')
+md5sums=('a09b69f7e17677f1b5bfd15720dd004c')
 
 build() {
   cd "${srcdir}/${pkgbase}-${pkgver}"



[arch-commits] Commit in zim/repos/community-any (4 files)

2013-04-30 Thread Florian Pritz
Date: Tuesday, April 30, 2013 @ 21:52:06
  Author: bluewind
Revision: 89640

archrelease: copy trunk to community-any

Added:
  zim/repos/community-any/PKGBUILD
(from rev 89639, zim/trunk/PKGBUILD)
  zim/repos/community-any/zim.install
(from rev 89639, zim/trunk/zim.install)
Deleted:
  zim/repos/community-any/PKGBUILD
  zim/repos/community-any/zim.install

-+
 PKGBUILD|   90 +-
 zim.install |   42 +--
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-30 19:51:59 UTC (rev 89639)
+++ PKGBUILD2013-04-30 19:52:06 UTC (rev 89640)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Kevin Piche 
-# Contributor: Daniel J Griffiths 
-
-pkgname=zim
-pkgver=0.59
-pkgrel=1
-pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
-arch=(any)
-license=('GPL' 'PerlArtistic')
-url="http://zim-wiki.org/";
-depends=('pygtk' 'ttf-dejavu')
-optdepends=('bzr: Version Control plugin'
-'git: Version Control plugin'
-'mercurial: Version Control plugin'
-'gnuplot: Insert Gnuplot plugin'
-'ditaa: Insert Ditaa plugin'
-'graphviz: Insert Diagram & Link Map plugins'
-'python2-gtkspell: Spell Checker plugin'
-'r: Insert GNU R Plot plugin'
-'scrot: Insert Screenshot plugin'
-'libzeitgeist: Log events with Zeitgeist plugin'
-'lilypond: Insert Score plugin'
-'texlive-bin: Insert Equation plugin')
-install=zim.install
-source=(http://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz)
-md5sums=('f73eb8ed903ac93ffce0a42ac3d75106')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-# python2 fixes
-for file in zim/inc/xdot.py zim/_version.py; do
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-done
-
-   sed -i 's|\t\tinstall_class.run(self)|&\n\t\treturn None|' setup.py
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: zim/repos/community-any/PKGBUILD (from rev 89639, zim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-04-30 19:52:06 UTC (rev 89640)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Kevin Piche 
+# Contributor: Daniel J Griffiths 
+
+pkgname=zim
+pkgver=0.60
+pkgrel=1
+pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
+arch=(any)
+license=('GPL' 'PerlArtistic')
+url="http://zim-wiki.org/";
+depends=('pygtk' 'ttf-dejavu')
+optdepends=('bzr: Version Control plugin'
+'git: Version Control plugin'
+'mercurial: Version Control plugin'
+'gnuplot: Insert Gnuplot plugin'
+'ditaa: Insert Ditaa plugin'
+'graphviz: Insert Diagram & Link Map plugins'
+'python2-gtkspell: Spell Checker plugin'
+'r: Insert GNU R Plot plugin'
+'scrot: Insert Screenshot plugin'
+'libzeitgeist: Log events with Zeitgeist plugin'
+'lilypond: Insert Score plugin'
+'texlive-bin: Insert Equation plugin')
+install=zim.install
+source=(http://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz)
+md5sums=('f781cefa9f8c669b1a664e03361977e2')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+# python2 fixes
+for file in zim/inc/xdot.py zim/_version.py; do
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+done
+
+   sed -i 's|\t\tinstall_class.run(self)|&\n\t\treturn None|' setup.py
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   python2 setup.py install --root=${pkgdir} --optimize=1
+}

Deleted: zim.install
===
--- zim.install 2013-04-30 19:51:59 UTC (rev 89639)
+++ zim.install 2013-04-30 19:52:06 UTC (rev 89640)
@@ -1,21 +0,0 @@
-updatedesktopdtb() {
-  [ -x /usr/bin/update-desktop-database ] \
-&& update-desktop-database -q
-  [ -x /usr/bin/update-mime-database ] \
-&& update-mime-database usr/share/mime > /dev/null 2>&1
-}
-
-post_install() {
-  updatedesktopdtb
-   echo
-  echo " >>> zim package need a browser to work properly"
-  echo " >>> you can choose a browser like firefox, chromium, konqueror, ..."
-}
-
-post_upgrade() {
-  updatedesktopdtb
-}
-
-post_remove() {
-  updatedesktopdtb
-}

Copied: zim/repos/community-any/zim.install (from rev 89639, 
zim/trunk/zim.install)
===
--- zim.install (rev 0)
+++ zim.install 2013-04-30 19:52:06 UTC (rev 89640)
@@ -0,0 +1,21 @@
+updatedesktopdtb() {
+  [ 

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

2013-04-30 Thread Florian Pritz
Date: Tuesday, April 30, 2013 @ 21:51:59
  Author: bluewind
Revision: 89639

upgpkg: zim 0.60-1

upstream update

Modified:
  zim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 19:20:26 UTC (rev 89638)
+++ PKGBUILD2013-04-30 19:51:59 UTC (rev 89639)
@@ -4,7 +4,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=zim
-pkgver=0.59
+pkgver=0.60
 pkgrel=1
 pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
 arch=(any)
@@ -25,7 +25,7 @@
 'texlive-bin: Insert Equation plugin')
 install=zim.install
 source=(http://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz)
-md5sums=('f73eb8ed903ac93ffce0a42ac3d75106')
+md5sums=('f781cefa9f8c669b1a664e03361977e2')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in linux-tools/repos (24 files)

2013-04-30 Thread Sébastien Luttringer
Date: Tuesday, April 30, 2013 @ 21:20:26
  Author: seblu
Revision: 89638

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

Added:
  linux-tools/repos/community-i686/PKGBUILD
(from rev 89637, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-i686/cpupower.default
(from rev 89637, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-i686/cpupower.install
(from rev 89637, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-i686/cpupower.service
(from rev 89637, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-i686/cpupower.systemd
(from rev 89637, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-i686/usbipd.service
(from rev 89637, linux-tools/trunk/usbipd.service)
  linux-tools/repos/community-x86_64/PKGBUILD
(from rev 89637, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-x86_64/cpupower.default
(from rev 89637, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-x86_64/cpupower.install
(from rev 89637, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-x86_64/cpupower.service
(from rev 89637, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-x86_64/cpupower.systemd
(from rev 89637, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-x86_64/usbipd.service
(from rev 89637, linux-tools/trunk/usbipd.service)
Deleted:
  linux-tools/repos/community-i686/PKGBUILD
  linux-tools/repos/community-i686/cpupower.default
  linux-tools/repos/community-i686/cpupower.install
  linux-tools/repos/community-i686/cpupower.service
  linux-tools/repos/community-i686/cpupower.systemd
  linux-tools/repos/community-i686/usbipd.service
  linux-tools/repos/community-x86_64/PKGBUILD
  linux-tools/repos/community-x86_64/cpupower.default
  linux-tools/repos/community-x86_64/cpupower.install
  linux-tools/repos/community-x86_64/cpupower.service
  linux-tools/repos/community-x86_64/cpupower.systemd
  linux-tools/repos/community-x86_64/usbipd.service

---+
 /PKGBUILD |  330 
 /cpupower.default |   58 ++
 /cpupower.install |   26 ++
 /cpupower.service |   20 ++
 /cpupower.systemd |   64 ++
 /usbipd.service   |   18 +
 community-i686/PKGBUILD   |  164 -
 community-i686/cpupower.default   |   29 ---
 community-i686/cpupower.install   |   13 -
 community-i686/cpupower.service   |   10 -
 community-i686/cpupower.systemd   |   32 ---
 community-i686/usbipd.service |9 
 community-x86_64/PKGBUILD |  164 -
 community-x86_64/cpupower.default |   29 ---
 community-x86_64/cpupower.install |   13 -
 community-x86_64/cpupower.service |   10 -
 community-x86_64/cpupower.systemd |   32 ---
 community-x86_64/usbipd.service   |9 
 18 files changed, 516 insertions(+), 514 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-30 19:20:08 UTC (rev 89637)
+++ community-i686/PKGBUILD 2013-04-30 19:20:26 UTC (rev 89638)
@@ -1,164 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=linux-tools
-pkgname=('linux-tools-meta'
- 'libtraceevent'
- 'perf'
- 'cpupower'
- 'x86_energy_perf_policy'
- 'usbip')
-pkgver=3.8
-pkgrel=1
-license=('GPL2')
-arch=('i686' 'x86_64')
-url='http://www.kernel.org'
-options=('!strip')
-# split packages need all package dependencies set manually in makedepends
-# kernel source deps
-makedepends=('asciidoc' 'xmlto')
-# perf deps
-makedepends+=('perl' 'python2' 'libnewt' 'elfutils' 'audit' 'libunwind')
-# cpupower deps
-makedepends+=('pciutils')
-# usbip deps
-makedepends+=('glib2' 'sysfsutils')
-groups=("$pkgbase")
-source=("http://ftp.kernel.org/pub/linux/kernel/v3.x/linux-$pkgver.tar.xz";
-#"http://ftp.kernel.org/pub/linux/kernel/v3.x/patch-$pkgver.6.xz";
-'cpupower.default'
-'cpupower.systemd'
-'cpupower.service'
-'usbipd.service')
-sha256sums=('e070d1bdfbded5676a4f374721c63565f1c969466c5a3e214004a136b583184b'
-'4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f'
-'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e'
-'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc'
-'8053a6bcd0776a7fefccc5012f93a1710653529e0eab59afcc39f24361c64869')
-
-build() {
-  # apply stable patching set
-  if (( NOEXTRACT == 0 )) && [[ -e "$srcdir"/patch-* ]]; then
-msg2 'Applying stable patch set'
-patch -N -p1 -i "$srcdir"/patch-*
-  fi
-
-  msg2 'Build libtraceevent'
-  pushd linux-$pkgver/tools/lib/traceevent
-  make
-  popd
-
-  msg2 'Build perf'
-  pushd linux-$pkgver/tools/perf
-  make \
-WERROR=0 \
-DESTDIR="$pkgdir/usr" \
-

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

2013-04-30 Thread Sébastien Luttringer
Date: Tuesday, April 30, 2013 @ 21:20:08
  Author: seblu
Revision: 89637

upgpkg: linux-tools 3.9-1

Modified:
  linux-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 16:42:36 UTC (rev 89636)
+++ PKGBUILD2013-04-30 19:20:08 UTC (rev 89637)
@@ -8,7 +8,7 @@
  'cpupower'
  'x86_energy_perf_policy'
  'usbip')
-pkgver=3.8
+pkgver=3.9
 pkgrel=1
 license=('GPL2')
 arch=('i686' 'x86_64')
@@ -30,8 +30,8 @@
 'cpupower.systemd'
 'cpupower.service'
 'usbipd.service')
-# http://www.kernel.org/pub/linux/kernel/v3.0/sha256sums.asc
-sha256sums=('e070d1bdfbded5676a4f374721c63565f1c969466c5a3e214004a136b583184b'
+# http://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
+sha256sums=('60bc3e64ee5dc778de2cd7cd7640abf518a4c9d4f31b8ed624e16fad53f54541'
 '4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f'
 'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e'
 'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc'



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

2013-04-30 Thread Giovanni Scafora
Date: Tuesday, April 30, 2013 @ 20:49:43
  Author: giovanni
Revision: 184007

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

Added:
  gparted/repos/extra-i686/PKGBUILD
(from rev 184006, gparted/trunk/PKGBUILD)
  gparted/repos/extra-i686/gparted.install
(from rev 184006, gparted/trunk/gparted.install)
  gparted/repos/extra-i686/org.archlinux.pkexec.gparted.policy
(from rev 184006, gparted/trunk/org.archlinux.pkexec.gparted.policy)
  gparted/repos/extra-x86_64/PKGBUILD
(from rev 184006, gparted/trunk/PKGBUILD)
  gparted/repos/extra-x86_64/gparted.install
(from rev 184006, gparted/trunk/gparted.install)
  gparted/repos/extra-x86_64/org.archlinux.pkexec.gparted.policy
(from rev 184006, gparted/trunk/org.archlinux.pkexec.gparted.policy)
Deleted:
  gparted/repos/extra-i686/PKGBUILD
  gparted/repos/extra-i686/gparted.install
  gparted/repos/extra-i686/org.archlinux.pkexec.gparted.policy
  gparted/repos/extra-x86_64/PKGBUILD
  gparted/repos/extra-x86_64/gparted.install
  gparted/repos/extra-x86_64/org.archlinux.pkexec.gparted.policy

--+
 /PKGBUILD|  104 +
 /gparted.install |   28 +
 /org.archlinux.pkexec.gparted.policy |   40 
 extra-i686/PKGBUILD  |   52 --
 extra-i686/gparted.install   |   14 --
 extra-i686/org.archlinux.pkexec.gparted.policy   |   20 
 extra-x86_64/PKGBUILD|   52 --
 extra-x86_64/gparted.install |   14 --
 extra-x86_64/org.archlinux.pkexec.gparted.policy |   20 
 9 files changed, 172 insertions(+), 172 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-30 18:49:35 UTC (rev 184006)
+++ extra-i686/PKGBUILD 2013-04-30 18:49:43 UTC (rev 184007)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Andrew Simmons 
-# Contributor: György Balló 
-
-pkgname=gparted
-pkgver=0.16.0
-pkgrel=1
-pkgdesc="A Partition Magic clone, frontend to GNU Parted"
-arch=('i686' 'x86_64')
-url="http://gparted.sourceforge.net";
-license=('GPL')
-depends=('parted' 'gtkmm' 'hicolor-icon-theme')
-makedepends=('intltool' 'pkg-config' 'gnome-doc-utils')
-optdepends=('dosfstools: for FAT16 and FAT32 partitions'
-'jfsutils: for jfs partitions'
-'ntfs-3g: for ntfs partitions'
-'reiserfsprogs: for reiser partitions'
-'xfsprogs: for xfs partitions'
-'nilfs-utils: for nilfs2 support'
-'polkit-gnome: to run gparted directly from menu'
-'gpart: for recovering corrupt partition tables'
-'mtools: utilities to access MS-DOS disks')
-install=gparted.install
-source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2";
-'org.archlinux.pkexec.gparted.policy')
-md5sums=('880e58673c9ef195181c0d721717a601'
- 'c031d7d2b845ccb025b9f83e0ddd5653')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  # Install policy file
-  install -Dm644 "${srcdir}/org.archlinux.pkexec.gparted.policy" 
"${pkgdir}/usr/share/polkit-1/actions/org.archlinux.pkexec.gparted.policy"
-
-  # We need rename the original script
-  mv "${pkgdir}/usr/sbin/gparted" "${pkgdir}/usr/sbin/gparted.elf"
-
-  # Install launcher script
-  echo '#!/bin/sh' > ${pkgdir}/usr/sbin/gparted
-  echo 'pkexec --disable-internal-agent "/usr/sbin/gparted.elf" "$@"' >> 
${pkgdir}/usr/sbin/gparted
-  chmod 755 ${pkgdir}/usr/sbin/gparted
-}

Copied: gparted/repos/extra-i686/PKGBUILD (from rev 184006, 
gparted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-30 18:49:43 UTC (rev 184007)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Andrew Simmons 
+# Contributor: György Balló 
+
+pkgname=gparted
+pkgver=0.16.1
+pkgrel=1
+pkgdesc="A Partition Magic clone, frontend to GNU Parted"
+arch=('i686' 'x86_64')
+url="http://gparted.sourceforge.net";
+license=('GPL')
+depends=('parted' 'gtkmm' 'hicolor-icon-theme')
+makedepends=('intltool' 'pkg-config' 'gnome-doc-utils')
+optdepends=('dosfstools: for FAT16 and FAT32 partitions'
+'jfsutils: for jfs partitions'
+'ntfs-3g: for ntfs partitions'
+'reiserfsprogs: for reiser partitions'
+'xfsprogs: for xfs partitions'
+'nilfs-utils: for nilfs2 support'
+'polkit-gnome: to run gparted directly from menu'
+'gpart: for recovering corrupt partition tables'
+'mtools: utilities to access MS-DOS disks')

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

2013-04-30 Thread Giovanni Scafora
Date: Tuesday, April 30, 2013 @ 20:49:35
  Author: giovanni
Revision: 184006

upgpkg: gparted 0.16.1-1

upstream release

Modified:
  gparted/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 18:42:55 UTC (rev 184005)
+++ PKGBUILD2013-04-30 18:49:35 UTC (rev 184006)
@@ -4,7 +4,7 @@
 # Contributor: György Balló 
 
 pkgname=gparted
-pkgver=0.16.0
+pkgver=0.16.1
 pkgrel=1
 pkgdesc="A Partition Magic clone, frontend to GNU Parted"
 arch=('i686' 'x86_64')
@@ -24,7 +24,7 @@
 install=gparted.install
 
source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2";
 'org.archlinux.pkexec.gparted.policy')
-md5sums=('880e58673c9ef195181c0d721717a601'
+md5sums=('3f399bff031b5ce14d11a8c346f4b89c'
  'c031d7d2b845ccb025b9f83e0ddd5653')
 
 build() {



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

2013-04-30 Thread Giovanni Scafora
Date: Tuesday, April 30, 2013 @ 20:42:55
  Author: giovanni
Revision: 184005

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

Added:
  tcpdump/repos/extra-i686/PKGBUILD
(from rev 184004, tcpdump/trunk/PKGBUILD)
  tcpdump/repos/extra-i686/tcpdump_duplicate_executable.patch
(from rev 184004, tcpdump/trunk/tcpdump_duplicate_executable.patch)
  tcpdump/repos/extra-x86_64/PKGBUILD
(from rev 184004, tcpdump/trunk/PKGBUILD)
  tcpdump/repos/extra-x86_64/tcpdump_duplicate_executable.patch
(from rev 184004, tcpdump/trunk/tcpdump_duplicate_executable.patch)
Deleted:
  tcpdump/repos/extra-i686/PKGBUILD
  tcpdump/repos/extra-i686/tcpdump_duplicate_executable.patch
  tcpdump/repos/extra-x86_64/PKGBUILD
  tcpdump/repos/extra-x86_64/tcpdump_duplicate_executable.patch

-+
 /PKGBUILD   |   72 ++
 /tcpdump_duplicate_executable.patch |   20 ++
 extra-i686/PKGBUILD |   36 ---
 extra-i686/tcpdump_duplicate_executable.patch   |   10 ---
 extra-x86_64/PKGBUILD   |   36 ---
 extra-x86_64/tcpdump_duplicate_executable.patch |   10 ---
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-30 18:42:48 UTC (rev 184004)
+++ extra-i686/PKGBUILD 2013-04-30 18:42:55 UTC (rev 184005)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: dorphell 
-
-pkgname=tcpdump
-pkgver=4.3.0
-pkgrel=1
-pkgdesc="A tool for network monitoring and data acquisition"
-arch=('i686' 'x86_64')
-url="http://www.tcpdump.org";
-license=('BSD')
-depends=('libpcap' 'openssl')
-source=("http://www.tcpdump.org/release/${pkgname}-${pkgver}.tar.gz";
-'tcpdump_duplicate_executable.patch')
-md5sums=('a3fe4d30ac85ff5467c889ff46b7e1e8'
- '96c116e5ed51759a029bb6c236d63178')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # do not install tcpdump-4.1.1 executable (FS#23346)
-  patch -Np1 -i "${srcdir}/tcpdump_duplicate_executable.patch"
-
-  ./configure --prefix=/usr \
-  --enable-ipv6
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  #install the license
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: tcpdump/repos/extra-i686/PKGBUILD (from rev 184004, 
tcpdump/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-30 18:42:55 UTC (rev 184005)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: dorphell 
+
+pkgname=tcpdump
+pkgver=4.4.0
+pkgrel=1
+pkgdesc="A tool for network monitoring and data acquisition"
+arch=('i686' 'x86_64')
+url="http://www.tcpdump.org";
+license=('BSD')
+depends=('libpcap' 'openssl')
+source=("http://www.tcpdump.org/release/${pkgname}-${pkgver}.tar.gz";
+'tcpdump_duplicate_executable.patch')
+md5sums=('6f75aabcffd012f73bd7c331bb5d8232'
+ '96c116e5ed51759a029bb6c236d63178')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # do not install tcpdump-4.1.1 executable (FS#23346)
+  patch -Np1 -i "${srcdir}/tcpdump_duplicate_executable.patch"
+
+  ./configure --prefix=/usr \
+  --enable-ipv6
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  #install the license
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-i686/tcpdump_duplicate_executable.patch
===
--- extra-i686/tcpdump_duplicate_executable.patch   2013-04-30 18:42:48 UTC 
(rev 184004)
+++ extra-i686/tcpdump_duplicate_executable.patch   2013-04-30 18:42:55 UTC 
(rev 184005)
@@ -1,10 +0,0 @@
 a/Makefile.in  2012-06-12 18:56:20.0 +0200
-+++ b/Makefile.in  2012-06-13 08:41:09.0 +0200
-@@ -409,7 +409,6 @@
-   [ -d $(DESTDIR)$(sbindir) ] || \
-   (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
-   $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
--  $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat 
${srcdir}/VERSION`
-   [ -d $(DESTDIR)$(mandir)/man1 ] || \
-   (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 
$(DESTDIR)$(mandir)/man1)
-   $(INSTALL_DATA) $(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1

Copied: tcpdump/repos/extra-i686/tcpdump_duplicate_executable.patch (from rev 
184004, tcpdump/trunk/tcpdump_duplicate_executable.patch)
===
--- extra-i686/tcpdump_duplicate_executable.patch   
(rev 0)
+++ extra-i686/tcpdump_duplicate_executable.patch   2013-04-30 18:42:55 UTC 
(rev 18400

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

2013-04-30 Thread Giovanni Scafora
Date: Tuesday, April 30, 2013 @ 20:42:48
  Author: giovanni
Revision: 184004

upgpkg: tcpdump 4.4.0-1

upstream release

Modified:
  tcpdump/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 15:06:18 UTC (rev 184003)
+++ PKGBUILD2013-04-30 18:42:48 UTC (rev 184004)
@@ -3,7 +3,7 @@
 # Contributor: dorphell 
 
 pkgname=tcpdump
-pkgver=4.3.0
+pkgver=4.4.0
 pkgrel=1
 pkgdesc="A tool for network monitoring and data acquisition"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libpcap' 'openssl')
 source=("http://www.tcpdump.org/release/${pkgname}-${pkgver}.tar.gz";
 'tcpdump_duplicate_executable.patch')
-md5sums=('a3fe4d30ac85ff5467c889ff46b7e1e8'
+md5sums=('6f75aabcffd012f73bd7c331bb5d8232'
  '96c116e5ed51759a029bb6c236d63178')
 
 build() {



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 18:42:36
  Author: foutrelis
Revision: 89636

archrelease: copy trunk to community-staging-i686

Added:
  zsnes/repos/community-staging-i686/
  zsnes/repos/community-staging-i686/PKGBUILD
(from rev 89635, zsnes/trunk/PKGBUILD)
  zsnes/repos/community-staging-i686/zsnes-1.51-libpng15.patch
(from rev 89635, zsnes/trunk/zsnes-1.51-libpng15.patch)
  zsnes/repos/community-staging-i686/zsnes.patch
(from rev 89635, zsnes/trunk/zsnes.patch)
  zsnes/repos/community-staging-i686/zsnes.png
(from rev 89635, zsnes/trunk/zsnes.png)

---+
 PKGBUILD  |   77 ++
 zsnes-1.51-libpng15.patch |   12 ++
 zsnes.patch   |   80 
 3 files changed, 169 insertions(+)

Copied: zsnes/repos/community-staging-i686/PKGBUILD (from rev 89635, 
zsnes/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 16:42:36 UTC (rev 89636)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Frank Tetzel 
+# Contributor: Hugo Doria 
+# Contributor: Aurelien Foret 
+
+pkgname=zsnes
+pkgver=1.51
+pkgrel=17
+pkgdesc="Super Nintendo emulator"
+url="http://www.zsnes.com/";
+arch=('i686' 'x86_64')
+license=('GPL')
+options=(!buildflags)
+
+if [[ $CARCH == "x86_64" ]]; then
+  depends=('lib32-gcc-libs' 'lib32-sdl' 'lib32-libpng>=1.5.0' 'lib32-libgl' 
'lib32-ncurses')
+  optdepends=('lib32-alsa-lib: sound support')
+  makedepends=('nasm' 'gcc-multilib' 'gendesk' 'mesa')
+else
+  depends=('gcc-libs' 'sdl' 'libpng>=1.5.0' 'libgl' 'ncurses')
+  optdepends=('alsa-lib: sound support')
+  makedepends=('nasm' 'gcc' 'gendesk' 'mesa')
+fi
+
+source=(http://downloads.sourceforge.net/${pkgname}/zsnes151src.tar.bz2
+zsnes.patch
+zsnes-1.51-libpng15.patch
+zsnes.png)
+md5sums=('7071186bf80632ae88a153239498d8c9'
+ 'fd13769c13de49601a234b46fb802a75'
+ 'ea82b4dbf31c87dbcc6c67d02ddfb299'
+ 'b5260c02adfc3b7ff725041214b00bfd')
+
+prepare() {
+  cd "$srcdir/${pkgname}_1_51"
+
+  patch -p1 -i ../zsnes.patch
+  patch -p0 -i ../zsnes-1.51-libpng15.patch
+}
+
+build() {
+  cd "$srcdir/${pkgname}_1_51/src"
+
+  if [ $CARCH == "x86_64" ]; then
+export CC="gcc -m32"
+export CXX="g++ -m32"
+  fi
+
+  ./configure \
+--prefix=/usr \
+--enable-release \
+x_libraries=/usr/lib \
+force_arch=i686
+
+  make
+}
+
+package() {
+  cd "$srcdir"
+
+  gendesk
+
+  cd "${pkgname}_1_51/src"
+
+  make DESTDIR=${pkgdir} install
+
+  # adding --mandir= to autoconf line fails
+  install -dm755 ${pkgdir}/usr/share
+
+  install -Dm644 ${srcdir}/zsnes.desktop 
${pkgdir}/usr/share/applications/zsnes.desktop
+  install -Dm644 ${srcdir}/zsnes.png ${pkgdir}/usr/share/pixmaps/zsnes.png
+
+  mv ${pkgdir}/usr/man ${pkgdir}/usr/share
+}
+
+# vim:set ts=2 sw=2 et:

Copied: zsnes/repos/community-staging-i686/zsnes-1.51-libpng15.patch (from rev 
89635, zsnes/trunk/zsnes-1.51-libpng15.patch)
===
--- community-staging-i686/zsnes-1.51-libpng15.patch
(rev 0)
+++ community-staging-i686/zsnes-1.51-libpng15.patch2013-04-30 16:42:36 UTC 
(rev 89636)
@@ -0,0 +1,12 @@
+Use existing png_set_IHDR() and stop accessing PNG structure members directly
+
+--- src/zip/zpng.c
 src/zip/zpng.c
+@@ -129,7 +129,6 @@
+ png_set_IHDR(png_ptr, info_ptr, width, height, 8,
+  PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE,
+  PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
+-info_ptr->color_type = PNG_COLOR_TYPE_RGB;
+ 
+ //Allocate an array of scanline pointers
+ row_pointers = (png_bytep*)malloc(height*sizeof(png_bytep));

Copied: zsnes/repos/community-staging-i686/zsnes.patch (from rev 89635, 
zsnes/trunk/zsnes.patch)
===
--- community-staging-i686/zsnes.patch  (rev 0)
+++ community-staging-i686/zsnes.patch  2013-04-30 16:42:36 UTC (rev 89636)
@@ -0,0 +1,80 @@
+diff -aur zsnes_1_51//src/Makefile.in zsnes_1_51_new//src/Makefile.in
+--- zsnes_1_51//src/Makefile.in2007-01-24 21:54:12.0 +0100
 zsnes_1_51_new//src/Makefile.in2010-09-06 00:03:04.715810431 +0200
+@@ -95,7 +95,7 @@
+ %.o: %.cpp
+   @CXX@ @CXXFLAGS@ -o $@ -c $<
+ %.o %.h: %.psr $(PSR)
+-  ./$(PSR) @PSRFLAGS@ -gcc @CC@ -compile -flags "@CFLAGS@ -O1" -cheader 
$*.h -fname $* $*.o $<
++  ./$(PSR) @PSRFLAGS@ -gcc "@CC@" -compile -flags "@CFLAGS@ -O1 
-D_FORTIFY_SOURCE=0" -cheader $*.h -fname $* $*.o $<
+ 
+ default: main
+ all: main tools
+@@ -133,7 +133,7 @@
+ 
+ include makefile.dep
+ makefile.dep: $(TOOL_D)/depbuild Makefile
+-  $(TOOL_D)/depbuild @CC@ "@CFLAGS@" @

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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 18:37:55
  Author: foutrelis
Revision: 89635

archrelease: copy trunk to multilib-staging-x86_64

Added:
  zsnes/repos/multilib-staging-x86_64/
  zsnes/repos/multilib-staging-x86_64/PKGBUILD
(from rev 89634, zsnes/trunk/PKGBUILD)
  zsnes/repos/multilib-staging-x86_64/zsnes-1.51-libpng15.patch
(from rev 89634, zsnes/trunk/zsnes-1.51-libpng15.patch)
  zsnes/repos/multilib-staging-x86_64/zsnes.patch
(from rev 89634, zsnes/trunk/zsnes.patch)
  zsnes/repos/multilib-staging-x86_64/zsnes.png
(from rev 89634, zsnes/trunk/zsnes.png)

---+
 PKGBUILD  |   77 ++
 zsnes-1.51-libpng15.patch |   12 ++
 zsnes.patch   |   80 
 3 files changed, 169 insertions(+)

Copied: zsnes/repos/multilib-staging-x86_64/PKGBUILD (from rev 89634, 
zsnes/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2013-04-30 16:37:55 UTC (rev 89635)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Frank Tetzel 
+# Contributor: Hugo Doria 
+# Contributor: Aurelien Foret 
+
+pkgname=zsnes
+pkgver=1.51
+pkgrel=17
+pkgdesc="Super Nintendo emulator"
+url="http://www.zsnes.com/";
+arch=('i686' 'x86_64')
+license=('GPL')
+options=(!buildflags)
+
+if [[ $CARCH == "x86_64" ]]; then
+  depends=('lib32-gcc-libs' 'lib32-sdl' 'lib32-libpng>=1.5.0' 'lib32-libgl' 
'lib32-ncurses')
+  optdepends=('lib32-alsa-lib: sound support')
+  makedepends=('nasm' 'gcc-multilib' 'gendesk' 'mesa')
+else
+  depends=('gcc-libs' 'sdl' 'libpng>=1.5.0' 'libgl' 'ncurses')
+  optdepends=('alsa-lib: sound support')
+  makedepends=('nasm' 'gcc' 'gendesk' 'mesa')
+fi
+
+source=(http://downloads.sourceforge.net/${pkgname}/zsnes151src.tar.bz2
+zsnes.patch
+zsnes-1.51-libpng15.patch
+zsnes.png)
+md5sums=('7071186bf80632ae88a153239498d8c9'
+ 'fd13769c13de49601a234b46fb802a75'
+ 'ea82b4dbf31c87dbcc6c67d02ddfb299'
+ 'b5260c02adfc3b7ff725041214b00bfd')
+
+prepare() {
+  cd "$srcdir/${pkgname}_1_51"
+
+  patch -p1 -i ../zsnes.patch
+  patch -p0 -i ../zsnes-1.51-libpng15.patch
+}
+
+build() {
+  cd "$srcdir/${pkgname}_1_51/src"
+
+  if [ $CARCH == "x86_64" ]; then
+export CC="gcc -m32"
+export CXX="g++ -m32"
+  fi
+
+  ./configure \
+--prefix=/usr \
+--enable-release \
+x_libraries=/usr/lib \
+force_arch=i686
+
+  make
+}
+
+package() {
+  cd "$srcdir"
+
+  gendesk
+
+  cd "${pkgname}_1_51/src"
+
+  make DESTDIR=${pkgdir} install
+
+  # adding --mandir= to autoconf line fails
+  install -dm755 ${pkgdir}/usr/share
+
+  install -Dm644 ${srcdir}/zsnes.desktop 
${pkgdir}/usr/share/applications/zsnes.desktop
+  install -Dm644 ${srcdir}/zsnes.png ${pkgdir}/usr/share/pixmaps/zsnes.png
+
+  mv ${pkgdir}/usr/man ${pkgdir}/usr/share
+}
+
+# vim:set ts=2 sw=2 et:

Copied: zsnes/repos/multilib-staging-x86_64/zsnes-1.51-libpng15.patch (from rev 
89634, zsnes/trunk/zsnes-1.51-libpng15.patch)
===
--- multilib-staging-x86_64/zsnes-1.51-libpng15.patch   
(rev 0)
+++ multilib-staging-x86_64/zsnes-1.51-libpng15.patch   2013-04-30 16:37:55 UTC 
(rev 89635)
@@ -0,0 +1,12 @@
+Use existing png_set_IHDR() and stop accessing PNG structure members directly
+
+--- src/zip/zpng.c
 src/zip/zpng.c
+@@ -129,7 +129,6 @@
+ png_set_IHDR(png_ptr, info_ptr, width, height, 8,
+  PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE,
+  PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
+-info_ptr->color_type = PNG_COLOR_TYPE_RGB;
+ 
+ //Allocate an array of scanline pointers
+ row_pointers = (png_bytep*)malloc(height*sizeof(png_bytep));

Copied: zsnes/repos/multilib-staging-x86_64/zsnes.patch (from rev 89634, 
zsnes/trunk/zsnes.patch)
===
--- multilib-staging-x86_64/zsnes.patch (rev 0)
+++ multilib-staging-x86_64/zsnes.patch 2013-04-30 16:37:55 UTC (rev 89635)
@@ -0,0 +1,80 @@
+diff -aur zsnes_1_51//src/Makefile.in zsnes_1_51_new//src/Makefile.in
+--- zsnes_1_51//src/Makefile.in2007-01-24 21:54:12.0 +0100
 zsnes_1_51_new//src/Makefile.in2010-09-06 00:03:04.715810431 +0200
+@@ -95,7 +95,7 @@
+ %.o: %.cpp
+   @CXX@ @CXXFLAGS@ -o $@ -c $<
+ %.o %.h: %.psr $(PSR)
+-  ./$(PSR) @PSRFLAGS@ -gcc @CC@ -compile -flags "@CFLAGS@ -O1" -cheader 
$*.h -fname $* $*.o $<
++  ./$(PSR) @PSRFLAGS@ -gcc "@CC@" -compile -flags "@CFLAGS@ -O1 
-D_FORTIFY_SOURCE=0" -cheader $*.h -fname $* $*.o $<
+ 
+ default: main
+ all: main tools
+@@ -133,7 +133,7 @@
+ 
+ include makefile.dep
+ makefile.dep: $(TOOL_D)/depbuild Makefile
+-  $(TOOL_D)/depbuild @CC@ "@C

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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 18:37:45
  Author: foutrelis
Revision: 89634

upgpkg: zsnes 1.51-17

libpng 1.6 rebuild.

Modified:
  zsnes/trunk/PKGBUILD

--+
 PKGBUILD |   23 ++-
 1 file changed, 14 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 16:23:21 UTC (rev 89633)
+++ PKGBUILD2013-04-30 16:37:45 UTC (rev 89634)
@@ -6,7 +6,7 @@
 
 pkgname=zsnes
 pkgver=1.51
-pkgrel=16
+pkgrel=17
 pkgdesc="Super Nintendo emulator"
 url="http://www.zsnes.com/";
 arch=('i686' 'x86_64')
@@ -32,22 +32,27 @@
  'ea82b4dbf31c87dbcc6c67d02ddfb299'
  'b5260c02adfc3b7ff725041214b00bfd')
 
-build() {
+prepare() {
   cd "$srcdir/${pkgname}_1_51"
 
   patch -p1 -i ../zsnes.patch
   patch -p0 -i ../zsnes-1.51-libpng15.patch
-  
-  cd src
+}
+
+build() {
+  cd "$srcdir/${pkgname}_1_51/src"
+
   if [ $CARCH == "x86_64" ]; then
 export CC="gcc -m32"
 export CXX="g++ -m32"
   fi
-  ./autogen.sh --prefix=/usr \
+
+  ./configure \
+--prefix=/usr \
+--enable-release \
 x_libraries=/usr/lib \
-force_arch=i686 \
---enable-release
-  
+force_arch=i686
+
   make
 }
 
@@ -59,7 +64,7 @@
   cd "${pkgname}_1_51/src"
 
   make DESTDIR=${pkgdir} install
-  
+
   # adding --mandir= to autoconf line fails
   install -dm755 ${pkgdir}/usr/share
 



[arch-commits] Commit in virtualbox/repos (32 files)

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 18:23:21
  Author: foutrelis
Revision: 89633

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

Added:
  virtualbox/repos/community-staging-i686/
  virtualbox/repos/community-staging-i686/001-vboxdrv-reference.patch
(from rev 89632, virtualbox/trunk/001-vboxdrv-reference.patch)
  virtualbox/repos/community-staging-i686/002-change_default_driver_dir.patch
(from rev 89632, virtualbox/trunk/002-change_default_driver_dir.patch)
  virtualbox/repos/community-staging-i686/003-gcc-48.patch
(from rev 89632, virtualbox/trunk/003-gcc-48.patch)
  virtualbox/repos/community-staging-i686/004-system-xorg.patch
(from rev 89632, virtualbox/trunk/004-system-xorg.patch)
  virtualbox/repos/community-staging-i686/10-vboxdrv.rules
(from rev 89632, virtualbox/trunk/10-vboxdrv.rules)
  virtualbox/repos/community-staging-i686/60-vboxguest.rules
(from rev 89632, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-staging-i686/LocalConfig.kmk
(from rev 89632, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-staging-i686/PKGBUILD
(from rev 89632, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-staging-i686/vboxservice.service
(from rev 89632, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-staging-i686/vboxweb.service
(from rev 89632, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-staging-i686/virtualbox-ext-vnc.install
(from rev 89632, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-staging-i686/virtualbox-guest-dkms.install
(from rev 89632, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-staging-i686/virtualbox-guest-utils.install
(from rev 89632, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-staging-i686/virtualbox-host-dkms.install
(from rev 89632, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-staging-i686/virtualbox.install
(from rev 89632, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-staging-x86_64/
  virtualbox/repos/community-staging-x86_64/001-vboxdrv-reference.patch
(from rev 89632, virtualbox/trunk/001-vboxdrv-reference.patch)
  virtualbox/repos/community-staging-x86_64/002-change_default_driver_dir.patch
(from rev 89632, virtualbox/trunk/002-change_default_driver_dir.patch)
  virtualbox/repos/community-staging-x86_64/003-gcc-48.patch
(from rev 89632, virtualbox/trunk/003-gcc-48.patch)
  virtualbox/repos/community-staging-x86_64/004-system-xorg.patch
(from rev 89632, virtualbox/trunk/004-system-xorg.patch)
  virtualbox/repos/community-staging-x86_64/10-vboxdrv.rules
(from rev 89632, virtualbox/trunk/10-vboxdrv.rules)
  virtualbox/repos/community-staging-x86_64/60-vboxguest.rules
(from rev 89632, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-staging-x86_64/LocalConfig.kmk
(from rev 89632, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-staging-x86_64/PKGBUILD
(from rev 89632, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-staging-x86_64/vboxservice.service
(from rev 89632, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-staging-x86_64/vboxweb.service
(from rev 89632, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-staging-x86_64/virtualbox-ext-vnc.install
(from rev 89632, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-staging-x86_64/virtualbox-guest-dkms.install
(from rev 89632, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-staging-x86_64/virtualbox-guest-utils.install
(from rev 89632, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-staging-x86_64/virtualbox-host-dkms.install
(from rev 89632, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-staging-x86_64/virtualbox.install
(from rev 89632, virtualbox/trunk/virtualbox.install)

--+
 community-staging-i686/001-vboxdrv-reference.patch   |   57 +
 community-staging-i686/002-change_default_driver_dir.patch   |   18 
 community-staging-i686/003-gcc-48.patch  |   39 +
 community-staging-i686/004-system-xorg.patch |  245 
 community-staging-i686/10-vboxdrv.rules  |5 
 community-staging-i686/60-vboxguest.rules|2 
 community-staging-i686/LocalConfig.kmk   |   20 
 community-staging-i686/PKGBUILD  |  291 ++
 community-staging-i686/vboxservice.service   |9 
 community-staging-i686/vboxweb.service   |   11 
 community-staging-i686/virtualbox-ext-vnc.install|   25 
 community-staging-i686/virtualbox-guest-dkms.install |   30 +
 community-stag

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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 18:22:22
  Author: foutrelis
Revision: 89632

upgpkg: virtualbox 4.2.12-2

libpng 1.6 rebuild.

Modified:
  virtualbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 16:12:44 UTC (rev 89631)
+++ PKGBUILD2013-04-30 16:22:22 UTC (rev 89632)
@@ -10,7 +10,7 @@
  'virtualbox-guest-utils'
  'virtualbox-ext-vnc')
 pkgver=4.2.12
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL' 'custom')



[arch-commits] Commit in lib32-qt4/repos (2 files)

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 18:12:44
  Author: foutrelis
Revision: 89631

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-qt4/repos/multilib-staging-x86_64/
  lib32-qt4/repos/multilib-staging-x86_64/PKGBUILD
(from rev 89630, lib32-qt4/trunk/PKGBUILD)

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

Copied: lib32-qt4/repos/multilib-staging-x86_64/PKGBUILD (from rev 89630, 
lib32-qt4/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2013-04-30 16:12:44 UTC (rev 89631)
@@ -0,0 +1,89 @@
+# $Id: PKGBUILD 80785 2012-12-03 16:17:19Z bluewind $
+# Maintainer: Florian Pritz 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+_pkgbasename=qt4
+pkgname=lib32-$_pkgbasename
+pkgver=4.8.4
+pkgrel=5
+pkgdesc='A cross-platform application and UI framework (32-bit)'
+arch=('x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL')
+depends=(lib32-{fontconfig,sqlite3,alsa-lib,glib2,dbus-core,openssl}
+ lib32-lib{png,tiff,mng,gl,sm,xrandr,xv,xi} $_pkgbasename)
+optdepends=('lib32-libxinerama: Xinerama support'
+'lib32-libxcursor: Xcursor support'
+'lib32-libxfixes: Xfixes support')
+makedepends=(cups gcc-multilib lib32-{mesa,libcups,libxfixes,gtk2})
+options=('!libtool')
+provides=(lib32-qtwebkit)
+replaces=(lib32-qtwebkit 'lib32-qt<=4.8.4')
+conflicts=(lib32-qtwebkit lib32-qt)
+_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
+source=("http://releases.qt-project.org/qt4/source/${_pkgfqn}.tar.gz";)
+md5sums=('89c5ecba180cae74c66260ac732dc5cb')
+
+build() {
+  cd $srcdir/$_pkgfqn
+
+  export QT4DIR=$srcdir/$_pkgfqn
+  export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  # some of those are likely unnecessary, but I'm too lazy to find and remove 
them
+  sed -i "/^QMAKE_LINK\s/s|g++|g++ -m32|g" mkspecs/common/g++-base.conf
+  sed -i "s|-O2|${CXXFLAGS} -m32|" mkspecs/common/g++-base.conf
+  sed -i "s|-O2|${CXXFLAGS} -m32|" mkspecs/common/gcc-base.conf
+  sed -i "/^QMAKE_LFLAGS_RPATH/s| -Wl,-rpath,||g" 
mkspecs/common/gcc-base-unix.conf
+  sed -i "/^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS} -m32|g" 
mkspecs/common/gcc-base.conf
+  sed -i "s|-Wl,-O1|-m32 -Wl,-O1|" mkspecs/common/g++-unix.conf
+  sed -e "s|-O2|$CXXFLAGS -m32|" \
+  -e "/^QMAKE_RPATH/s| -Wl,-rpath,||g" \
+  -e "/^QMAKE_LINK\s/s|g++|g++ -m32|g" \
+  -e "/^QMAKE_LFLAGS\s/s|+=|+= $LDFLAGS|g" \
+  -i mkspecs/common/g++.conf
+
+  ./configure -confirm-license -opensource -v -platform linux-g++-32 \
+-prefix /usr \
+-libdir /usr/lib32 \
+-plugindir /usr/lib32/qt/plugins \
+-importdir /usr/lib32/qt/imports \
+-datadir /usr/share/qt \
+-translationdir /usr/share/qt/translations \
+-sysconfdir /etc \
+-system-sqlite \
+-no-phonon \
+-no-phonon-backend \
+-webkit \
+-graphicssystem raster \
+-openssl-linked \
+-nomake demos \
+-nomake examples \
+-nomake docs \
+-nomake tools \
+-optimized-qmake \
+-no-rpath \
+-dbus-linked \
+-reduce-relocations \
+-no-openvg
+
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgfqn
+  make INSTALL_ROOT=$pkgdir install
+
+  # Fix wrong path in pkgconfig files
+  find ${pkgdir}/usr/lib32/pkgconfig -type f -name '*.pc' \
+-exec perl -pi -e "s, -L${srcdir}/?\S+,,g" {} \;
+  # Fix wrong path in prl files
+  find ${pkgdir}/usr/lib32 -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin,tests}
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 18:12:37
  Author: foutrelis
Revision: 89630

upgpkg: lib32-qt4 4.8.4-5

libpng 1.6 rebuild.

Modified:
  lib32-qt4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 15:37:06 UTC (rev 89629)
+++ PKGBUILD2013-04-30 16:12:37 UTC (rev 89630)
@@ -6,7 +6,7 @@
 _pkgbasename=qt4
 pkgname=lib32-$_pkgbasename
 pkgver=4.8.4
-pkgrel=4
+pkgrel=5
 pkgdesc='A cross-platform application and UI framework (32-bit)'
 arch=('x86_64')
 url='http://qt-project.org/'



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 17:37:06
  Author: foutrelis
Revision: 89629

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

Added:
  cinelerra-cv/repos/community-staging-i686/
  cinelerra-cv/repos/community-staging-i686/PKGBUILD
(from rev 89628, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-i686/cinelerra-std_and_str_h.patch
(from rev 89628, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg_api.patch
(from rev 89628, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-i686/v4l1_removal.patch
(from rev 89628, cinelerra-cv/trunk/v4l1_removal.patch)
  cinelerra-cv/repos/community-staging-x86_64/
  cinelerra-cv/repos/community-staging-x86_64/PKGBUILD
(from rev 89628, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-x86_64/cinelerra-std_and_str_h.patch
(from rev 89628, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg_api.patch
(from rev 89628, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-x86_64/v4l1_removal.patch
(from rev 89628, cinelerra-cv/trunk/v4l1_removal.patch)

+
 community-staging-i686/PKGBUILD|   85 +++
 community-staging-i686/cinelerra-std_and_str_h.patch   |   81 +++
 community-staging-i686/ffmpeg_api.patch|  163 +++
 community-staging-i686/v4l1_removal.patch  |  125 +++
 community-staging-x86_64/PKGBUILD  |   85 +++
 community-staging-x86_64/cinelerra-std_and_str_h.patch |   81 +++
 community-staging-x86_64/ffmpeg_api.patch  |  163 +++
 community-staging-x86_64/v4l1_removal.patch|  125 +++
 8 files changed, 908 insertions(+)

Copied: cinelerra-cv/repos/community-staging-i686/PKGBUILD (from rev 89628, 
cinelerra-cv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 15:37:06 UTC (rev 89629)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Daniel J Griffiths 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Alexander Rødseth 
+
+pkgname=cinelerra-cv
+pkgver=2.2
+_gitrel=2.2.0
+pkgrel=15
+epoch=1
+pkgdesc="Professional video editing and compositing environment"
+arch=('x86_64' 'i686')
+url="http://cinelerra.org/";
+license=('GPL')
+depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
+ 'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
+ 'ffmpeg' 'faad2' 'faac' 'openexr>=2.0.0')
+makedepends=('git' 'nasm' 'mesa')
+options=('!libtool')
+source=("$pkgname::git+git://git.cinelerra.org/CinelerraCV.git#branch=rel$_gitrel"
+'v4l1_removal.patch'
+'cinelerra-std_and_str_h.patch'
+'ffmpeg_api.patch')
+md5sums=('SKIP'
+ 'bfa85e20809429d88eba4ab83e569612'
+ '02d8222e596133bbc05eaad15bef242c'
+ 'b05ec2fb54e7d02f6167525417802111')
+
+_confit() {
+  ./configure --prefix=/usr \
+  --with-buildinfo=git/recompile \
+  --with-external-ffmpeg \
+  --enable-opengl \
+  --disable-esd $@
+}
+
+prepare() {
+  cd "$srcdir/$pkgname"
+
+  # v4l1 removal patch
+  patch -Np1 -i "$srcdir/v4l1_removal.patch"
+
+  patch -Np0 -i "$srcdir/cinelerra-std_and_str_h.patch"
+
+  # new ffmpeg api patch
+  patch -Np1 -i "$srcdir/ffmpeg_api.patch"
+
+  # TODO: check if this is still needed (not sure what it does) --schiv
+  sed -i -e '/Debian/d' admin/nasm
+
+  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
+  # TODO: kind of forgot about the specifics of this one, recheck --schiv
+  sed -i '/\/X11R6/s///' configure.in
+}
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  # gcc 4.6 workaround
+  export CFLAGS+=" -Wwrite-strings -D__STDC_CONSTANT_MACROS"
+  export CPPFLAGS="$CFLAGS"
+
+  # remove executable stack
+  export LDFLAGS+=" -Wl,-z,noexecstack"
+
+  ./autogen.sh
+
+  # TODO: check if this is still needed (forgot why at all) --schiv
+  if [ "$CARCH" = 'x86_64' ]; then
+_confit --disable-mmx
+  else
+_confit --enable-mmx
+  fi
+
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: cinelerra-cv/repos/community-staging-i686/cinelerra-std_and_str_h.patch 
(from rev 89628, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
===
--- community-staging-i686/cinelerra-std_and_str_h.patch
(rev 0)
+++ community-staging-i686/cinelerra-std_and_str_h.patch2013-04-30 
15:37:06 UTC (rev 89629)
@@ -0,0 +1,81 @@
+Include required headers for free(), memcpy(), strcpy(), bcopy(), and more
+Thanks to Marti

[arch-commits] Commit in cinelerra-cv/trunk (PKGBUILD cinelerra-std_and_str_h.patch)

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 17:36:41
  Author: foutrelis
Revision: 89628

upgpkg: cinelerra-cv 1:2.2-15

libpng 1.6 rebuild.

Added:
  cinelerra-cv/trunk/cinelerra-std_and_str_h.patch
Modified:
  cinelerra-cv/trunk/PKGBUILD

---+
 PKGBUILD  |6 ++
 cinelerra-std_and_str_h.patch |   81 
 2 files changed, 86 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 15:00:40 UTC (rev 89627)
+++ PKGBUILD2013-04-30 15:36:41 UTC (rev 89628)
@@ -7,7 +7,7 @@
 pkgname=cinelerra-cv
 pkgver=2.2
 _gitrel=2.2.0
-pkgrel=14
+pkgrel=15
 epoch=1
 pkgdesc="Professional video editing and compositing environment"
 arch=('x86_64' 'i686')
@@ -20,9 +20,11 @@
 options=('!libtool')
 
source=("$pkgname::git+git://git.cinelerra.org/CinelerraCV.git#branch=rel$_gitrel"
 'v4l1_removal.patch'
+'cinelerra-std_and_str_h.patch'
 'ffmpeg_api.patch')
 md5sums=('SKIP'
  'bfa85e20809429d88eba4ab83e569612'
+ '02d8222e596133bbc05eaad15bef242c'
  'b05ec2fb54e7d02f6167525417802111')
 
 _confit() {
@@ -39,6 +41,8 @@
   # v4l1 removal patch
   patch -Np1 -i "$srcdir/v4l1_removal.patch"
 
+  patch -Np0 -i "$srcdir/cinelerra-std_and_str_h.patch"
+
   # new ffmpeg api patch
   patch -Np1 -i "$srcdir/ffmpeg_api.patch"
 

Added: cinelerra-std_and_str_h.patch
===
--- cinelerra-std_and_str_h.patch   (rev 0)
+++ cinelerra-std_and_str_h.patch   2013-04-30 15:36:41 UTC (rev 89628)
@@ -0,0 +1,81 @@
+Include required headers for free(), memcpy(), strcpy(), bcopy(), and more
+Thanks to Martin von Gagern for reporting and initial patch
+See, http://bugs.gentoo.org/show_bug.cgi?id=465478
+
+--- cinelerra/vdevicebuz.C
 cinelerra/vdevicebuz.C
+@@ -49,6 +49,8 @@
+ #include 
+ #include 
+ #include 
++#include 
++#include 
+ 
+ #define BASE_VIDIOCPRIVATE192 
+ 
+--- cinelerra/videodevice.C
 cinelerra/videodevice.C
+@@ -53,6 +53,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ KeepaliveThread::KeepaliveThread(VideoDevice *device)
+  : Thread()
+--- libmpeg3/audio/ac3.c
 libmpeg3/audio/ac3.c
+@@ -1,3 +1,4 @@
++#include 
+ #include 
+ #include 
+ 
+--- libmpeg3/audio/layer3.c
 libmpeg3/audio/layer3.c
+@@ -4,6 +4,7 @@
+ #include "tables.h"
+ 
+ #include 
++#include 
+ #include 
+ 
+ struct gr_info_s 
+--- mplexlo/mplex.c
 mplexlo/mplex.c
+@@ -1,6 +1,6 @@
+ #include 
+ #include 
+-
++#include 
+ 
+ #include "libmpeg3.h"
+ #include "mpeg3protos.h"
+--- quicktime/graphics.c
 quicktime/graphics.c
+@@ -1,5 +1,6 @@
+ #include "graphics.h"
+ 
++#include 
+ #include 
+ 
+ /* Graphics acceleration routines */
+--- quicktime/libmjpeg.c
 quicktime/libmjpeg.c
+@@ -17,6 +17,7 @@
+  
+ #include 
+ #include 
++#include 
+ #include "colormodels.h"
+ #include "libmjpeg.h"
+ 
+--- quicktime/qtpng.c
 quicktime/qtpng.c
+@@ -1,6 +1,7 @@
+ #include "colormodels.h"
+ #include "funcprotos.h"
+ #include 
++#include 
+ #include "quicktime.h"
+ #include "qtpng.h"
+ 



[arch-commits] Commit in gstreamer0.10-good/repos (8 files)

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 17:06:18
  Author: foutrelis
Revision: 184003

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

Added:
  gstreamer0.10-good/repos/staging-i686/
  gstreamer0.10-good/repos/staging-i686/PKGBUILD
(from rev 184002, gstreamer0.10-good/trunk/PKGBUILD)
  gstreamer0.10-good/repos/staging-i686/gstreamer0.10-good-plugins.install
(from rev 184002, 
gstreamer0.10-good/trunk/gstreamer0.10-good-plugins.install)
  gstreamer0.10-good/repos/staging-i686/linux-3.6.patch
(from rev 184002, gstreamer0.10-good/trunk/linux-3.6.patch)
  gstreamer0.10-good/repos/staging-x86_64/
  gstreamer0.10-good/repos/staging-x86_64/PKGBUILD
(from rev 184002, gstreamer0.10-good/trunk/PKGBUILD)
  gstreamer0.10-good/repos/staging-x86_64/gstreamer0.10-good-plugins.install
(from rev 184002, 
gstreamer0.10-good/trunk/gstreamer0.10-good-plugins.install)
  gstreamer0.10-good/repos/staging-x86_64/linux-3.6.patch
(from rev 184002, gstreamer0.10-good/trunk/linux-3.6.patch)

---+
 staging-i686/PKGBUILD |   68 
 staging-i686/gstreamer0.10-good-plugins.install   |   19 +
 staging-i686/linux-3.6.patch  |   31 +
 staging-x86_64/PKGBUILD   |   68 
 staging-x86_64/gstreamer0.10-good-plugins.install |   19 +
 staging-x86_64/linux-3.6.patch|   31 +
 6 files changed, 236 insertions(+)

Copied: gstreamer0.10-good/repos/staging-i686/PKGBUILD (from rev 184002, 
gstreamer0.10-good/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-30 15:06:18 UTC (rev 184003)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=gstreamer0.10-good
+pkgname=('gstreamer0.10-good' 'gstreamer0.10-good-plugins')
+pkgver=0.10.31
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('LGPL')
+makedepends=('intltool' 'pkgconfig' 'gstreamer0.10-base>=0.10.34' 'libavc1394' 
'libiec61883' 'aalib' 'libshout' 'libdv' 'flac' 'gconf' 'wavpack' 'taglib' 
'libsoup-gnome' 'v4l-utils' 'libcaca' 'bzip2' 'gdk-pixbuf2' 'libpulse' 'jack' 
'udev')
+url="http://gstreamer.freedesktop.org/";
+options=(!libtool !emptydirs)
+source=(${url}/src/gst-plugins-good/gst-plugins-good-${pkgver}.tar.xz
+linux-3.6.patch)
+sha256sums=('77a8436a7c0a15f876bad29616835046890df2bcaf72da02151bd91e3d292b64'
+'d14a9ebfdbff69a3dd27057d764ad0c68f62aa6ae9f20bb62a0d09b29c0c2cfe')
+
+prepare() {
+  cd "${srcdir}/gst-plugins-good-${pkgver}"
+  # https://bugzilla.gnome.org/show_bug.cgi?id=681491
+  patch -Np1 -i "${srcdir}/linux-3.6.patch"
+  sed -i '/AC_PATH_XTRA/d' configure.ac
+  sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac
+  autoreconf -vi --force
+}
+
+build() {
+  cd "${srcdir}/gst-plugins-good-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--disable-schemas-install \
+--disable-hal \
+--disable-esd \
+--with-package-name="GStreamer Good Plugins (Archlinux)" \
+--with-package-origin="http://www.archlinux.org/";
+
+  make
+  sed -e 's/gst sys ext/gst/' -i Makefile
+}
+
+check() {
+  cd "${srcdir}/gst-plugins-good-${pkgver}"
+  make check
+}
+
+package_gstreamer0.10-good() {
+  depends=('gstreamer0.10-base>=0.10.34' 'bzip2')
+  pkgdesc="GStreamer Multimedia Framework Good plugin libraries"
+
+  cd "${srcdir}/gst-plugins-good-${pkgver}"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}/etc/gconf"
+}
+
+package_gstreamer0.10-good-plugins() {
+  depends=("gstreamer0.10-good=${pkgver}" 'libavc1394' 'libiec61883' 'aalib' 
'libshout' 'libdv' 'flac' 'gconf' 'wavpack' 'taglib' 'libsoup-gnome' 
'v4l-utils' 'libcaca' 'libpng' 'libjpeg' 'jack' 'libpulse' 'udev')
+  pkgdesc="GStreamer Multimedia Framework Good Plugins (gst-plugins-good)"
+  groups=('gstreamer0.10-plugins')
+  replaces=('gstreamer0.10-aalib' 'gstreamer0.10-wavpack' 
'gstreamer0.10-shout2' 'gstreamer0.10-taglib' 'gstreamer0.10-libcaca' 
'gstreamer0.10-libpng' 'gstreamer0.10-jpeg' 'gstreamer0.10-cairo' 
'gstreamer0.10-flac' 'gstreamer0.10-speex' 'gstreamer0.10-gdkpixbuf' 
'gstreamer0.10-dv1394' 'gstreamer0.10-annodex' 'gstreamer0.10-gconf' 
'gstreamer0.10-esd' 'gstreamer0.10-cdio' 'gstreamer0.10-dv' 
'gstreamer0.10-soup' 'gstreamer0.10-pulse')
+  conflicts=('gstreamer0.10-aalib' 'gstreamer0.10-wavpack' 
'gstreamer0.10-shout2' 'gstreamer0.10-taglib' 'gstreamer0.10-libcaca' 
'gstreamer0.10-libpng' 'gstreamer0.10-jpeg' 'gstreamer0.10-cairo' 
'gstreamer0.10-flac' 'gstreamer0.10-speex' 'gstreamer0.10-gdkpixbuf' 
'gstreamer0.10-dv1394' 'gstreamer0.10-annodex' 'gstreamer0.10-gconf' 
'gstreamer0.10-esd' 'gstreamer0.10-cdio' 'gstreamer0.10-dv' 
'gstreamer0.10-bad-plugins<0.10.7' 'gstreamer0.10-soup' 'gstreamer

[arch-commits] Commit in gstreamer0.10-good/trunk (PKGBUILD linux-3.6.patch)

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 17:06:05
  Author: foutrelis
Revision: 184002

upgpkg: gstreamer0.10-good 0.10.31-2

libpng 1.6 rebuild.

Added:
  gstreamer0.10-good/trunk/linux-3.6.patch
Modified:
  gstreamer0.10-good/trunk/PKGBUILD

-+
 PKGBUILD|   19 ++-
 linux-3.6.patch |   31 +++
 2 files changed, 45 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 14:56:53 UTC (rev 184001)
+++ PKGBUILD2013-04-30 15:06:05 UTC (rev 184002)
@@ -4,19 +4,28 @@
 pkgbase=gstreamer0.10-good
 pkgname=('gstreamer0.10-good' 'gstreamer0.10-good-plugins')
 pkgver=0.10.31
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL')
 makedepends=('intltool' 'pkgconfig' 'gstreamer0.10-base>=0.10.34' 'libavc1394' 
'libiec61883' 'aalib' 'libshout' 'libdv' 'flac' 'gconf' 'wavpack' 'taglib' 
'libsoup-gnome' 'v4l-utils' 'libcaca' 'bzip2' 'gdk-pixbuf2' 'libpulse' 'jack' 
'udev')
 url="http://gstreamer.freedesktop.org/";
 options=(!libtool !emptydirs)
-source=(${url}/src/gst-plugins-good/gst-plugins-good-${pkgver}.tar.xz)
-sha256sums=('77a8436a7c0a15f876bad29616835046890df2bcaf72da02151bd91e3d292b64')
+source=(${url}/src/gst-plugins-good/gst-plugins-good-${pkgver}.tar.xz
+linux-3.6.patch)
+sha256sums=('77a8436a7c0a15f876bad29616835046890df2bcaf72da02151bd91e3d292b64'
+'d14a9ebfdbff69a3dd27057d764ad0c68f62aa6ae9f20bb62a0d09b29c0c2cfe')
 
+prepare() {
+  cd "${srcdir}/gst-plugins-good-${pkgver}"
+  # https://bugzilla.gnome.org/show_bug.cgi?id=681491
+  patch -Np1 -i "${srcdir}/linux-3.6.patch"
+  sed -i '/AC_PATH_XTRA/d' configure.ac
+  sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac
+  autoreconf -vi --force
+}
+
 build() {
   cd "${srcdir}/gst-plugins-good-${pkgver}"
-  sed -i '/AC_PATH_XTRA/d' configure.ac
-  autoreconf
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
 --disable-static --enable-experimental \
 --disable-schemas-install \

Added: linux-3.6.patch
===
--- linux-3.6.patch (rev 0)
+++ linux-3.6.patch 2013-04-30 15:06:05 UTC (rev 184002)
@@ -0,0 +1,31 @@
+From bfb1ac952b4c3caaba0297bbe7dc73ea92f9b292 Mon Sep 17 00:00:00 2001
+From: Matthias Clasen 
+Date: Thu, 09 Aug 2012 07:35:23 +
+Subject: v4l2: fix build with recent kernels, the v4l2_buffer input field was 
removed
+
+This was unused apparently and removed in the kernel in commit:
+
+ From 2b719d7baf490e24ce7d817c6337b7c87fda84c1 Mon Sep 17 00:00:00 2001
+ From: Sakari Ailus 
+ Date: Wed, 2 May 2012 09:40:03 -0300
+ Subject: [PATCH] [media] v4l: drop v4l2_buffer.input and V4L2_BUF_FLAG_INPUT
+
+ Remove input field in struct v4l2_buffer and flag V4L2_BUF_FLAG_INPUT which
+ tells the former is valid. The flag is used by no driver currently.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=681491
+---
+diff --git a/sys/v4l2/gstv4l2bufferpool.c b/sys/v4l2/gstv4l2bufferpool.c
+index 2e3a563..5aaed5a 100644
+--- a/sys/v4l2/gstv4l2bufferpool.c
 b/sys/v4l2/gstv4l2bufferpool.c
+@@ -182,7 +182,6 @@ gst_v4l2_buffer_new (GstV4l2BufferPool * pool, guint 
index, GstCaps * caps)
+ GST_LOG_OBJECT (pool->v4l2elem, "  MMAP offset:  %u",
+ ret->vbuffer.m.offset);
+   GST_LOG_OBJECT (pool->v4l2elem, "  length:%u", ret->vbuffer.length);
+-  GST_LOG_OBJECT (pool->v4l2elem, "  input: %u", ret->vbuffer.input);
+ 
+   ret->mmap_length = ret->vbuffer.length;
+   data = (guint8 *) v4l2_mmap (0, ret->vbuffer.length,
+--
+cgit v0.9.0.2-2-gbebe



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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 17:00:40
  Author: bpiotrowski
Revision: 89627

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

Added:
  podofo/repos/community-staging-i686/
  podofo/repos/community-staging-i686/PKGBUILD
(from rev 89626, podofo/trunk/PKGBUILD)
  podofo/repos/community-staging-x86_64/
  podofo/repos/community-staging-x86_64/PKGBUILD
(from rev 89626, podofo/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   34 ++
 community-staging-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: podofo/repos/community-staging-i686/PKGBUILD (from rev 89626, 
podofo/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 15:00:40 UTC (rev 89627)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Preecha Patumchareonpol  
+
+pkgname=podofo
+pkgver=0.9.2
+pkgrel=2
+pkgdesc="A C++ library to work with the PDF file format"
+arch=('i686' 'x86_64')
+url="http://podofo.sourceforge.net";
+license=('GPL')
+depends=('openssl' 'libidn' 'lua51' 'fontconfig' 'libpng' 'libtiff')
+makedepends=('cmake')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('41966c57fa4266ac5cef80bfade0c8e7')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  mkdir build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .. \
+-DPODOFO_BUILD_SHARED=1 \
+-DPODOFO_HAVE_JPEG_LIB=1 \
+-DPODOFO_HAVE_PNG_LIB=1 \
+-DPODOFO_HAVE_TIFF_LIB=1
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+  make DESTDIR=$pkgdir install
+}

Copied: podofo/repos/community-staging-x86_64/PKGBUILD (from rev 89626, 
podofo/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-30 15:00:40 UTC (rev 89627)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Preecha Patumchareonpol  
+
+pkgname=podofo
+pkgver=0.9.2
+pkgrel=2
+pkgdesc="A C++ library to work with the PDF file format"
+arch=('i686' 'x86_64')
+url="http://podofo.sourceforge.net";
+license=('GPL')
+depends=('openssl' 'libidn' 'lua51' 'fontconfig' 'libpng' 'libtiff')
+makedepends=('cmake')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('41966c57fa4266ac5cef80bfade0c8e7')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  mkdir build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .. \
+-DPODOFO_BUILD_SHARED=1 \
+-DPODOFO_HAVE_JPEG_LIB=1 \
+-DPODOFO_HAVE_PNG_LIB=1 \
+-DPODOFO_HAVE_TIFF_LIB=1
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+  make DESTDIR=$pkgdir install
+}



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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 17:00:25
  Author: bpiotrowski
Revision: 89626

upgpkg: podofo 0.9.2-2

- rebuild against libpng 1.6

Modified:
  podofo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 14:49:19 UTC (rev 89625)
+++ PKGBUILD2013-04-30 15:00:25 UTC (rev 89626)
@@ -5,7 +5,7 @@
 
 pkgname=podofo
 pkgver=0.9.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A C++ library to work with the PDF file format"
 arch=('i686' 'x86_64')
 url="http://podofo.sourceforge.net";



[arch-commits] Commit in linux/trunk (config config.x86_64)

2013-04-30 Thread Tobias Powalowski
Date: Tuesday, April 30, 2013 @ 16:56:53
  Author: tpowa
Revision: 184001

add SUNRPC_DEBUG

Modified:
  linux/trunk/config
  linux/trunk/config.x86_64

---+
 config|2 +-
 config.x86_64 |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: config
===
--- config  2013-04-30 14:56:42 UTC (rev 184000)
+++ config  2013-04-30 14:56:53 UTC (rev 184001)
@@ -5751,7 +5751,7 @@
 CONFIG_SUNRPC_GSS=m
 CONFIG_SUNRPC_BACKCHANNEL=y
 CONFIG_RPCSEC_GSS_KRB5=m
-# CONFIG_SUNRPC_DEBUG is not set
+CONFIG_SUNRPC_DEBUG=y
 CONFIG_CEPH_FS=m
 CONFIG_CIFS=m
 CONFIG_CIFS_STATS=y

Modified: config.x86_64
===
--- config.x86_64   2013-04-30 14:56:42 UTC (rev 184000)
+++ config.x86_64   2013-04-30 14:56:53 UTC (rev 184001)
@@ -5540,7 +5540,7 @@
 CONFIG_SUNRPC_GSS=m
 CONFIG_SUNRPC_BACKCHANNEL=y
 CONFIG_RPCSEC_GSS_KRB5=m
-# CONFIG_SUNRPC_DEBUG is not set
+CONFIG_SUNRPC_DEBUG=y 
 CONFIG_CEPH_FS=m
 CONFIG_CIFS=m
 CONFIG_CIFS_STATS=y



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:56:42
  Author: foutrelis
Revision: 184000

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

Added:
  xawtv/repos/staging-i686/
  xawtv/repos/staging-i686/PKGBUILD
(from rev 183999, xawtv/trunk/PKGBUILD)
  xawtv/repos/staging-x86_64/
  xawtv/repos/staging-x86_64/PKGBUILD
(from rev 183999, xawtv/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   27 +++
 staging-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: xawtv/repos/staging-i686/PKGBUILD (from rev 183999, 
xawtv/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-30 14:56:42 UTC (rev 184000)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sarah Hay 
+# Contributor: Jason Chu 
+
+pkgname=xawtv
+pkgver=3.103
+pkgrel=1
+pkgdesc="A simple Xaw-based TV program which uses the bttv driver or 
video4linux"
+arch=('i686' 'x86_64')
+url="http://git.linuxtv.org/xawtv3.git";
+license=('GPL')
+depends=('aalib' 'v4l-utils' 'libxv' 'libxxf86dga' 'libxrandr' 'libgl' 'libdv' 
'zvbi' 'libxinerama' 'lirc-utils' 'libxft' 'libxaw' 'xorg-fonts-misc' 
'libxxf86vm')
+makedepends=('mesa')
+source=(http://linuxtv.org/downloads/xawtv/xawtv-${pkgver}.tar.bz2)
+md5sums=('18822bb3660540fa9ea8b643a5b30d6b')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-motif --disable-quicktime
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: xawtv/repos/staging-x86_64/PKGBUILD (from rev 183999, 
xawtv/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-04-30 14:56:42 UTC (rev 184000)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sarah Hay 
+# Contributor: Jason Chu 
+
+pkgname=xawtv
+pkgver=3.103
+pkgrel=1
+pkgdesc="A simple Xaw-based TV program which uses the bttv driver or 
video4linux"
+arch=('i686' 'x86_64')
+url="http://git.linuxtv.org/xawtv3.git";
+license=('GPL')
+depends=('aalib' 'v4l-utils' 'libxv' 'libxxf86dga' 'libxrandr' 'libgl' 'libdv' 
'zvbi' 'libxinerama' 'lirc-utils' 'libxft' 'libxaw' 'xorg-fonts-misc' 
'libxxf86vm')
+makedepends=('mesa')
+source=(http://linuxtv.org/downloads/xawtv/xawtv-${pkgver}.tar.bz2)
+md5sums=('18822bb3660540fa9ea8b643a5b30d6b')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-motif --disable-quicktime
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:56:32
  Author: foutrelis
Revision: 183999

upgpkg: xawtv 3.103-1

libpng 1.6 rebuild.

Modified:
  xawtv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 14:41:28 UTC (rev 183998)
+++ PKGBUILD2013-04-30 14:56:32 UTC (rev 183999)
@@ -4,8 +4,8 @@
 # Contributor: Jason Chu 
 
 pkgname=xawtv
-pkgver=3.101
-pkgrel=2
+pkgver=3.103
+pkgrel=1
 pkgdesc="A simple Xaw-based TV program which uses the bttv driver or 
video4linux"
 arch=('i686' 'x86_64')
 url="http://git.linuxtv.org/xawtv3.git";
@@ -13,12 +13,10 @@
 depends=('aalib' 'v4l-utils' 'libxv' 'libxxf86dga' 'libxrandr' 'libgl' 'libdv' 
'zvbi' 'libxinerama' 'lirc-utils' 'libxft' 'libxaw' 'xorg-fonts-misc' 
'libxxf86vm')
 makedepends=('mesa')
 source=(http://linuxtv.org/downloads/xawtv/xawtv-${pkgver}.tar.bz2)
-md5sums=('330ce1789595e370be34ad4cae3dc3fa')
-  
+md5sums=('18822bb3660540fa9ea8b643a5b30d6b')
+
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-  autoconf
-  autoheader
   ./configure --prefix=/usr --disable-motif --disable-quicktime
   make
 }



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:49:19
  Author: foutrelis
Revision: 89625

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

Added:
  guvcview/repos/community-staging-i686/
  guvcview/repos/community-staging-i686/PKGBUILD
(from rev 89624, guvcview/trunk/PKGBUILD)
  guvcview/repos/community-staging-x86_64/
  guvcview/repos/community-staging-x86_64/PKGBUILD
(from rev 89624, guvcview/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   31 +++
 community-staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: guvcview/repos/community-staging-i686/PKGBUILD (from rev 89624, 
guvcview/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 14:49:19 UTC (rev 89625)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Maxwell Pray a.k.a. Synthead 
+
+pkgname=guvcview
+pkgver=1.7.0
+pkgrel=2
+pkgdesc="A video viewer and capturer for the linux uvc driver"
+arch=('i686' 'x86_64')
+url="http://guvcview.sourceforge.net/";
+license=('GPL')
+depends=('portaudio' 'ffmpeg' 'gtk3')
+makedepends=('pkg-config' 'intltool')
+optdepends=('pulseaudio: for PulseAudio support')
+options=('!docs')
+source=("http://downloads.sourceforge.net/project/${pkgname}/source/${pkgname}-src-${pkgver}.tar.gz";)
+md5sums=('fe141fe2fe2a16df69f7866c27334a56')
+
+build() {
+  cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --disable-debian-menu
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: guvcview/repos/community-staging-x86_64/PKGBUILD (from rev 89624, 
guvcview/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-30 14:49:19 UTC (rev 89625)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Maxwell Pray a.k.a. Synthead 
+
+pkgname=guvcview
+pkgver=1.7.0
+pkgrel=2
+pkgdesc="A video viewer and capturer for the linux uvc driver"
+arch=('i686' 'x86_64')
+url="http://guvcview.sourceforge.net/";
+license=('GPL')
+depends=('portaudio' 'ffmpeg' 'gtk3')
+makedepends=('pkg-config' 'intltool')
+optdepends=('pulseaudio: for PulseAudio support')
+options=('!docs')
+source=("http://downloads.sourceforge.net/project/${pkgname}/source/${pkgname}-src-${pkgver}.tar.gz";)
+md5sums=('fe141fe2fe2a16df69f7866c27334a56')
+
+build() {
+  cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --disable-debian-menu
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:49:11
  Author: foutrelis
Revision: 89624

upgpkg: guvcview 1.7.0-2

libpng 1.6 rebuild.

Modified:
  guvcview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 13:50:02 UTC (rev 89623)
+++ PKGBUILD2013-04-30 14:49:11 UTC (rev 89624)
@@ -4,8 +4,8 @@
 
 pkgname=guvcview
 pkgver=1.7.0
-pkgrel=1
-pkgdesc="A video viewer and capturer for the linux uvc driver" 
+pkgrel=2
+pkgdesc="A video viewer and capturer for the linux uvc driver"
 arch=('i686' 'x86_64')
 url="http://guvcview.sourceforge.net/";
 license=('GPL')



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:41:28
  Author: foutrelis
Revision: 183998

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

Added:
  xsane/repos/staging-i686/
  xsane/repos/staging-i686/PKGBUILD
(from rev 183997, xsane/trunk/PKGBUILD)
  xsane/repos/staging-i686/xsane-0.995-xdg-open.patch
(from rev 183997, xsane/trunk/xsane-0.995-xdg-open.patch)
  xsane/repos/staging-i686/xsane.install
(from rev 183997, xsane/trunk/xsane.install)
  xsane/repos/staging-x86_64/
  xsane/repos/staging-x86_64/PKGBUILD
(from rev 183997, xsane/trunk/PKGBUILD)
  xsane/repos/staging-x86_64/xsane-0.995-xdg-open.patch
(from rev 183997, xsane/trunk/xsane-0.995-xdg-open.patch)
  xsane/repos/staging-x86_64/xsane.install
(from rev 183997, xsane/trunk/xsane.install)

---+
 staging-i686/PKGBUILD |   70 
 staging-i686/xsane-0.995-xdg-open.patch   |   12 
 staging-i686/xsane.install|   17 ++
 staging-x86_64/PKGBUILD   |   70 
 staging-x86_64/xsane-0.995-xdg-open.patch |   12 
 staging-x86_64/xsane.install  |   17 ++
 6 files changed, 198 insertions(+)

Copied: xsane/repos/staging-i686/PKGBUILD (from rev 183997, 
xsane/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-30 14:41:28 UTC (rev 183998)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Sarah Hay 
+
+pkgbase=xsane
+pkgname=('xsane' 'xsane-gimp')
+pkgver=0.998
+pkgrel=4
+arch=(i686 x86_64)
+url="http://www.xsane.org";
+license=('GPL2')
+makedepends=('gtk2' 'lcms' 'sane' 'zlib' 'libjpeg' 'gimp')
+source=(http://www.xsane.org/download/$pkgname-$pkgver.tar.gz
+   xsane-0.995-xdg-open.patch)
+md5sums=('936f1cc76b37caa8f285e1e15ac7e0aa'
+ '15541ff0ddc10acfa2059cf99d5478eb')
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  # fix use "xdg-open" instead of "netscape" to launch help browser - taken 
from Fedora
+  patch -Np1 -i "${srcdir}/xsane-0.995-xdg-open.patch"
+  sed -i -e 's:png_ptr->jmpbuf:png_jmpbuf(png_ptr):' src/xsane-save.c
+
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--enable-gimp
+  make
+  mv src/xsane src/xsane-gimp
+
+  # build again with gimp enabled
+  make clean
+  ./configure --prefix=/usr --mandir=/usr/share/man --disable-gimp
+  make
+}
+
+package_xsane() {
+  pkgdesc="A GTK-based X11 frontend for SANE and plugin for Gimp."
+  install=$pkgname.install
+  depends=('gtk2' 'lcms' 'sane' 'zlib' 'libjpeg')  
+  optdepends=('xsane-gimp: for gimp plugin support')
+  cd "$srcdir/$pkgbase-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+package_xsane-gimp() {
+  pkgdesc="XSane Gimp plugin"
+  depends=('xsane' 'gimp')
+  cd "$srcdir/$pkgbase-$pkgver"
+  install -D -m755 src/xsane-gimp "${pkgdir}/usr/bin/xsane-gimp"
+
+  ## For making Gimp Plugin available 
+  /bin/mkdir -p "$pkgdir/usr/lib/gimp/2.0/plug-ins"
+  cd "$pkgdir/usr/lib/gimp/2.0/plug-ins/"
+  /bin/ln -s ../../../../bin/xsane-gimp xsane
+
+# 
http://cvs.fedoraproject.org/viewvc/rpms/xsane/devel/xsane.spec?revision=1.80&view=markup
+# when makepkg will allow splitted pkg install file support we might change 
add a xsane-gimp.install file with the commands that are used by fedora, 
+# gentoo has something similar
+#%post gimp
+#107   if [ -x "%{_sbindir}/gimp-plugin-mgr" ]; then
+#108   %{_sbindir}/gimp-plugin-mgr --install xsane
+#109   fi
+#110   
+#111   %preun gimp
+#112   if [ $1 = 0 ]; then
+#113   if [ -x "%{_sbindir}/gimp-plugin-mgr" ]; then
+#114   %{_sbindir}/gimp-plugin-mgr --uninstall xsane
+#115   fi
+#116   fi 
+}

Copied: xsane/repos/staging-i686/xsane-0.995-xdg-open.patch (from rev 183997, 
xsane/trunk/xsane-0.995-xdg-open.patch)
===
--- staging-i686/xsane-0.995-xdg-open.patch (rev 0)
+++ staging-i686/xsane-0.995-xdg-open.patch 2013-04-30 14:41:28 UTC (rev 
183998)
@@ -0,0 +1,12 @@
+diff -up xsane-0.995/src/xsane.h.xdg-open xsane-0.995/src/xsane.h
+--- xsane-0.995/src/xsane.h.xdg-open   2007-08-13 09:20:32.0 +0200
 xsane-0.995/src/xsane.h2007-11-23 11:50:49.0 +0100
+@@ -251,7 +251,7 @@
+ # elif defined(HAVE_OS2_H)
+ #  define DEFAULT_BROWSER "netscape"
+ # else
+-#  define DEFAULT_BROWSER "netscape"
++#  define DEFAULT_BROWSER "xdg-open"
+ # endif
+ #endif
+ 

Copied: xsane/repos/staging-i686/xsane.install (from rev 183997, 
xsane/trunk/xsane.install)
===
--- staging-i686/xsane.install  (rev 0)
+++ staging-i686/xsane.install  2013-04-30 14:41:28 UTC (rev 183998)
@@ -0,0 +1,17 @@
+# arg 1:  the new package version
+# arg 2:  the old package version
+
+post_install() {
+  echo "NOTE:"
+  echo "  If 

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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:41:15
  Author: foutrelis
Revision: 183997

upgpkg: xsane 0.998-4

libpng 1.6 rebuild.

Modified:
  xsane/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 14:38:18 UTC (rev 183996)
+++ PKGBUILD2013-04-30 14:41:15 UTC (rev 183997)
@@ -5,7 +5,7 @@
 pkgbase=xsane
 pkgname=('xsane' 'xsane-gimp')
 pkgver=0.998
-pkgrel=3
+pkgrel=4
 arch=(i686 x86_64)
 url="http://www.xsane.org";
 license=('GPL2')
@@ -23,8 +23,7 @@
 
   ./configure --prefix=/usr \
 --mandir=/usr/share/man \
---enable-gimp \
---help
+--enable-gimp
   make
   mv src/xsane src/xsane-gimp
 



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:38:18
  Author: foutrelis
Revision: 183996

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

Added:
  qemu/repos/staging-i686/
  qemu/repos/staging-i686/65-kvm.rules
(from rev 183995, qemu/trunk/65-kvm.rules)
  qemu/repos/staging-i686/PKGBUILD
(from rev 183995, qemu/trunk/PKGBUILD)
  qemu/repos/staging-i686/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch
(from rev 183995, 
qemu/trunk/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch)
  qemu/repos/staging-i686/qemu.install
(from rev 183995, qemu/trunk/qemu.install)
  qemu/repos/staging-x86_64/
  qemu/repos/staging-x86_64/65-kvm.rules
(from rev 183995, qemu/trunk/65-kvm.rules)
  qemu/repos/staging-x86_64/PKGBUILD
(from rev 183995, qemu/trunk/PKGBUILD)
  
qemu/repos/staging-x86_64/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch
(from rev 183995, 
qemu/trunk/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch)
  qemu/repos/staging-x86_64/qemu.install
(from rev 183995, qemu/trunk/qemu.install)

--+
 staging-i686/65-kvm.rules|1 
 staging-i686/PKGBUILD|   62 
++
 staging-i686/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch   |   30 

 staging-i686/qemu.install|   25 

 staging-x86_64/65-kvm.rules  |1 
 staging-x86_64/PKGBUILD  |   62 
++
 staging-x86_64/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch |   30 

 staging-x86_64/qemu.install  |   25 

 8 files changed, 236 insertions(+)

Copied: qemu/repos/staging-i686/65-kvm.rules (from rev 183995, 
qemu/trunk/65-kvm.rules)
===
--- staging-i686/65-kvm.rules   (rev 0)
+++ staging-i686/65-kvm.rules   2013-04-30 14:38:18 UTC (rev 183996)
@@ -0,0 +1 @@
+KERNEL=="kvm", GROUP="kvm", MODE="0660"

Copied: qemu/repos/staging-i686/PKGBUILD (from rev 183995, qemu/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-30 14:38:18 UTC (rev 183996)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+pkgname=qemu
+pkgver=1.4.1
+pkgrel=2
+pkgdesc="A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation."
+arch=('i686' 'x86_64')
+license=('GPL2' 'LGPL2.1')
+url="http://wiki.qemu.org/Index.html";
+makedepends=('texi2html' 'perl' 'python2')
+depends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 
'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux' 'curl' 'libsasl' 'libgl' 'libpulse' 
'seabios' 'libcap-ng')
+backup=('etc/qemu/target-x86_64.conf')
+install=qemu.install
+source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.bz2
+doc-fix-sheepdog-invalid-texi-table-list-syntax.patch
+65-kvm.rules)
+replaces=('qemu-kvm')
+options=(!strip)
+
+prepare()
+{
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -i -e 's/lib64/lib/g' ldscripts/x86_64.ld
+  # fix building with tex version 5.0
+  # https://bugs.launchpad.net/qemu/+bug/1130533
+  patch -Np1 -i ${srcdir}/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch
+}
+
+build ()
+{
+  cd "${srcdir}/${pkgname}-${pkgver}"  
+  ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl,pa 
\
+  --python=/usr/bin/python2 \
+  --audio-card-list=ac97,sb16,es1370,hda \
+  --enable-docs --enable-mixemu --libexecdir=/usr/lib/qemu
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" libexecdir="/usr/lib/qemu" install
+  rm "${pkgdir}/usr/share/qemu/bios.bin"
+
+  install -D -m644 "${srcdir}/65-kvm.rules" \
+   "${pkgdir}/usr/lib/udev/rules.d/65-kvm.rules"
+  # bridge_helper needs suid
+  # https://bugs.archlinux.org/task/32565
+  chmod u+s "${pkgdir}/usr/lib/qemu/qemu-bridge-helper"
+  # add sample config
+  echo "allow br0" > ${pkgdir}/etc/qemu/bridge.conf.sample
+  # strip scripts directory
+find "${pkgdir}/usr/src/linux-${_kernver}/scripts"  -type f -perm -u+w 
2>/dev/null | while read binary ; do
+  case "$(file -bi "$binary")" in
+*application/x-executable*) # Binaries
+/usr/bin/strip $STRIP_BINARIES "$binary";;
+  esac
+done
+
+}
+md5sums=('eb2d696956324722b5ecfa46e41f9a75'
+ 'b431782f310bfc6af4ef21a8068f866b'
+ 'b316a066d2f1bb57d8f5b7ea1d0d1caf')

Copied: 
qemu/repos/staging-i686/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch 
(from rev 183995, 
qemu/trunk/doc-fix-sheepdog-invalid-texi-table-list-syntax.patch)
=

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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:38:00
  Author: foutrelis
Revision: 183995

upgpkg: qemu 1.4.1-2

libpng 1.6 rebuild.

Modified:
  qemu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 14:22:33 UTC (rev 183994)
+++ PKGBUILD2013-04-30 14:38:00 UTC (rev 183995)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski 
 pkgname=qemu
 pkgver=1.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation."
 arch=('i686' 'x86_64')
 license=('GPL2' 'LGPL2.1')



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:22:33
  Author: foutrelis
Revision: 183994

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

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/09-texlive-fonts.conf
(from rev 183993, texlive-bin/trunk/09-texlive-fonts.conf)
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 183993, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 183993, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/luatex-r4449-radical-rule-thickness.patch
(from rev 183993, 
texlive-bin/trunk/luatex-r4449-radical-rule-thickness.patch)
  texlive-bin/repos/staging-i686/poppler-0.20.patch
(from rev 183993, texlive-bin/trunk/poppler-0.20.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 183993, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-i686/texmf.cnf
(from rev 183993, texlive-bin/trunk/texmf.cnf)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/09-texlive-fonts.conf
(from rev 183993, texlive-bin/trunk/09-texlive-fonts.conf)
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 183993, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 183993, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/luatex-r4449-radical-rule-thickness.patch
(from rev 183993, 
texlive-bin/trunk/luatex-r4449-radical-rule-thickness.patch)
  texlive-bin/repos/staging-x86_64/poppler-0.20.patch
(from rev 183993, texlive-bin/trunk/poppler-0.20.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 183993, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/texmf.cnf
(from rev 183993, texlive-bin/trunk/texmf.cnf)

--+
 staging-i686/09-texlive-fonts.conf   |9 
 staging-i686/PKGBUILD|  323 +
 staging-i686/fix-fontforge-encoding.patch|   12 
 staging-i686/luatex-r4449-radical-rule-thickness.patch   |   23 
 staging-i686/poppler-0.20.patch  |   22 
 staging-i686/texlive.install |   43 
 staging-i686/texmf.cnf   |  724 +
 staging-x86_64/09-texlive-fonts.conf |9 
 staging-x86_64/PKGBUILD  |  323 +
 staging-x86_64/fix-fontforge-encoding.patch  |   12 
 staging-x86_64/luatex-r4449-radical-rule-thickness.patch |   23 
 staging-x86_64/poppler-0.20.patch|   22 
 staging-x86_64/texlive.install   |   43 
 staging-x86_64/texmf.cnf |  724 +
 14 files changed, 2312 insertions(+)

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


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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:22:00
  Author: foutrelis
Revision: 183993

upgpkg: texlive-bin 2012.0-11

libpng 1.6 rebuild.

Modified:
  texlive-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 14:11:59 UTC (rev 183992)
+++ PKGBUILD2013-04-30 14:22:00 UTC (rev 183993)
@@ -4,7 +4,7 @@
 
 pkgname=texlive-bin
 pkgver=2012.0
-pkgrel=10
+pkgrel=11
 _biber_ver=1.5 # for biblatex 2.5 only.
 pkgdesc="TeX Live binaries"
 license=('GPL')



[arch-commits] Commit in linux-firmware/repos (testing-any testing-any/PKGBUILD)

2013-04-30 Thread Tobias Powalowski
Date: Tuesday, April 30, 2013 @ 16:11:59
  Author: tpowa
Revision: 183992

archrelease: copy trunk to testing-any

Added:
  linux-firmware/repos/testing-any/
  linux-firmware/repos/testing-any/PKGBUILD
(from rev 183991, linux-firmware/trunk/PKGBUILD)

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

Copied: linux-firmware/repos/testing-any/PKGBUILD (from rev 183991, 
linux-firmware/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-04-30 14:11:59 UTC (rev 183992)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+#
+# Create a new tarball from the linux-firmware git tree with the following 
command:
+# git clone 
git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
+# git archive --format=tar --prefix linux-firmware-$(date +%Y%m%d)/ master | 
xz -9 > linux-firmware-$(date +%Y%m%d).tar.xz
+#
+
+pkgname=linux-firmware
+pkgver=20130430
+pkgrel=1
+pkgdesc="Firmware files for Linux"
+arch=('any')
+url="http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary";
+license=('GPL2' 'GPL3' 'custom')
+provides=('kernel26-firmware=2.6.34.99')
+conflicts=('linux-firmware-git'
+   'kernel26-firmware'
+   'ar9170-fw'
+   'iwlwifi-1000-ucode'
+   'iwlwifi-3945-ucode'
+   'iwlwifi-4965-ucode'
+   'iwlwifi-5000-ucode'
+   'iwlwifi-5150-ucode'
+   'iwlwifi-6000-ucode'
+   'rt2870usb-fw'
+   'rt2x00-rt61-fw'
+   'rt2x00-rt71w-fw')
+replaces=('kernel26-firmware'
+   'ar9170-fw'
+   'iwlwifi-1000-ucode'
+   'iwlwifi-3945-ucode'
+   'iwlwifi-4965-ucode'
+   'iwlwifi-5000-ucode'
+   'iwlwifi-5150-ucode'
+   'iwlwifi-6000-ucode'
+   'rt2870usb-fw'
+   'rt2x00-rt61-fw'
+   'rt2x00-rt71w-fw')
+options=(!strip)
+source=(ftp://ftp.archlinux.org/other/linux-firmware/$pkgname-$pkgver.tar.xz)
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  install -d -m755 "${pkgdir}/usr/lib/firmware"
+  cp -a * "${pkgdir}/usr/lib/firmware/"
+  install -d -m755 "${pkgdir}/usr/share/licenses/linux-firmware/"
+  rm -f "${pkgdir}/usr/lib/firmware/"{configure,GPL*}
+  mv "${pkgdir}/usr/lib/firmware"/{LICEN*,WHENCE} 
"${pkgdir}/usr/share/licenses/linux-firmware/"
+}
+# vim:set ts=2 sw=2 et:
+md5sums=('187ee7fdeb87c92b78415b0be26d9d51')



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

2013-04-30 Thread Tobias Powalowski
Date: Tuesday, April 30, 2013 @ 16:11:48
  Author: tpowa
Revision: 183991

upgpkg: linux-firmware 20130430-1

bump to latest version

Modified:
  linux-firmware/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 14:05:09 UTC (rev 183990)
+++ PKGBUILD2013-04-30 14:11:48 UTC (rev 183991)
@@ -8,7 +8,7 @@
 #
 
 pkgname=linux-firmware
-pkgver=20121118
+pkgver=20130430
 pkgrel=1
 pkgdesc="Firmware files for Linux"
 arch=('any')
@@ -40,7 +40,6 @@
'rt2x00-rt71w-fw')
 options=(!strip)
 source=(ftp://ftp.archlinux.org/other/linux-firmware/$pkgname-$pkgver.tar.xz)
-sha256sums=('27f9a966c7e557dc072dc35ec01aff71d02e0389f25e19f04fdb8434accf4028')
 
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -52,3 +51,4 @@
   mv "${pkgdir}/usr/lib/firmware"/{LICEN*,WHENCE} 
"${pkgdir}/usr/share/licenses/linux-firmware/"
 }
 # vim:set ts=2 sw=2 et:
+md5sums=('187ee7fdeb87c92b78415b0be26d9d51')



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:05:09
  Author: foutrelis
Revision: 183990

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

Added:
  vice/repos/staging-i686/
  vice/repos/staging-i686/PKGBUILD
(from rev 183989, vice/trunk/PKGBUILD)
  vice/repos/staging-i686/vice-2.4-no-fc-cache-no-lib64.patch
(from rev 183989, vice/trunk/vice-2.4-no-fc-cache-no-lib64.patch)
  vice/repos/staging-i686/vice-2.4-notexi-notxt.patch
(from rev 183989, vice/trunk/vice-2.4-notexi-notxt.patch)
  vice/repos/staging-i686/vice-2.4-x11video.patch
(from rev 183989, vice/trunk/vice-2.4-x11video.patch)
  vice/repos/staging-i686/vice-2.4-zlib-1.2.7.patch
(from rev 183989, vice/trunk/vice-2.4-zlib-1.2.7.patch)
  vice/repos/staging-i686/vice.install
(from rev 183989, vice/trunk/vice.install)
  vice/repos/staging-x86_64/
  vice/repos/staging-x86_64/PKGBUILD
(from rev 183989, vice/trunk/PKGBUILD)
  vice/repos/staging-x86_64/vice-2.4-no-fc-cache-no-lib64.patch
(from rev 183989, vice/trunk/vice-2.4-no-fc-cache-no-lib64.patch)
  vice/repos/staging-x86_64/vice-2.4-notexi-notxt.patch
(from rev 183989, vice/trunk/vice-2.4-notexi-notxt.patch)
  vice/repos/staging-x86_64/vice-2.4-x11video.patch
(from rev 183989, vice/trunk/vice-2.4-x11video.patch)
  vice/repos/staging-x86_64/vice-2.4-zlib-1.2.7.patch
(from rev 183989, vice/trunk/vice-2.4-zlib-1.2.7.patch)
  vice/repos/staging-x86_64/vice.install
(from rev 183989, vice/trunk/vice.install)

+
 staging-i686/PKGBUILD  |   57 +++
 staging-i686/vice-2.4-no-fc-cache-no-lib64.patch   |   25 
 staging-i686/vice-2.4-notexi-notxt.patch   |   28 +
 staging-i686/vice-2.4-x11video.patch   |   11 +++
 staging-i686/vice-2.4-zlib-1.2.7.patch |   37 
 staging-i686/vice.install  |   18 ++
 staging-x86_64/PKGBUILD|   57 +++
 staging-x86_64/vice-2.4-no-fc-cache-no-lib64.patch |   25 
 staging-x86_64/vice-2.4-notexi-notxt.patch |   28 +
 staging-x86_64/vice-2.4-x11video.patch |   11 +++
 staging-x86_64/vice-2.4-zlib-1.2.7.patch   |   37 
 staging-x86_64/vice.install|   18 ++
 12 files changed, 352 insertions(+)

Copied: vice/repos/staging-i686/PKGBUILD (from rev 183989, vice/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-30 14:05:09 UTC (rev 183990)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=vice
+pkgver=2.4
+pkgrel=3
+pkgdesc="The Versatile Commodore 8-bit Emulator"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.viceteam.org/";
+depends=('alsa-lib' 'giflib' 'libxxf86vm' 'vte' 'libnet' 'libpcap')
+makedepends=('xorg-font-utils')
+options=('!makeflags')
+install=vice.install
+source=("http://downloads.sourceforge.net/project/vice-emu/releases/${pkgname}-${pkgver}.tar.gz";
+'vice-2.4-x11video.patch'
+'vice-2.4-no-fc-cache-no-lib64.patch'
+'vice-2.4-notexi-notxt.patch'
+'vice-2.4-zlib-1.2.7.patch')
+md5sums=('b017647a0c159bbe43cdb81762d1c577'
+ '99931efcb779734c9df069e94f0b38a5'
+ 'b0d1392664decd3169740baf90661710'
+ '877f93db1550ea81386aae7c3b578442'
+ '9d9f62f05a967a5926df496e86404148')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  patch -Np1 -i "${srcdir}/vice-2.4-x11video.patch"
+  patch -Np1 -i "${srcdir}/vice-2.4-no-fc-cache-no-lib64.patch"
+  patch -Np1 -i "${srcdir}/vice-2.4-notexi-notxt.patch"
+  patch -Np1 -i "${srcdir}/vice-2.4-zlib-1.2.7.patch"
+
+  sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.in
+
+  autoreconf -vi
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --enable-ethernet \
+  --with-alsa \
+  --enable-fullscreen \
+  --enable-gnomeui \
+  --disable-ffmpeg
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" realdocdir="/usr/share/doc/vice" install
+  ln -s /usr/share/doc/vice "${pkgdir}/usr/lib/vice/doc"
+}

Copied: vice/repos/staging-i686/vice-2.4-no-fc-cache-no-lib64.patch (from rev 
183989, vice/trunk/vice-2.4-no-fc-cache-no-lib64.patch)
===
--- staging-i686/vice-2.4-no-fc-cache-no-lib64.patch
(rev 0)
+++ staging-i686/vice-2.4-no-fc-cache-no-lib64.patch2013-04-30 14:05:09 UTC 
(rev 183990)
@@ -0,0 +1,25 @@
+--- a/configure.in 2012-11-01 16:37:51.0 +0100
 b/configure.in 2012-11-03 18:07:35.0 +0100
+@@ -2090,12 +2090,7 @@
+ 
+ fi
+ 
+-AC_PATH_PROGS(FCCACHE, fc-cache, false)
+-if tes

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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 16:04:15
  Author: foutrelis
Revision: 183989

upgpkg: vice 2.4-3

libpng 1.6 rebuild.

Modified:
  vice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 12:16:18 UTC (rev 183988)
+++ PKGBUILD2013-04-30 14:04:15 UTC (rev 183989)
@@ -4,7 +4,7 @@
 
 pkgname=vice
 pkgver=2.4
-pkgrel=2
+pkgrel=3
 pkgdesc="The Versatile Commodore 8-bit Emulator"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -24,7 +24,7 @@
  '877f93db1550ea81386aae7c3b578442'
  '9d9f62f05a967a5926df496e86404148')
 
-build() {
+prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 
   patch -Np1 -i "${srcdir}/vice-2.4-x11video.patch"
@@ -32,7 +32,14 @@
   patch -Np1 -i "${srcdir}/vice-2.4-notexi-notxt.patch"
   patch -Np1 -i "${srcdir}/vice-2.4-zlib-1.2.7.patch"
 
-  autoreconf
+  sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.in
+
+  autoreconf -vi
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
   ./configure --prefix=/usr \
   --enable-ethernet \
   --with-alsa \



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

2013-04-30 Thread Lukas Jirkovsky
Date: Tuesday, April 30, 2013 @ 15:50:02
  Author: stativ
Revision: 89623

luxrays: minor change (will be usefull with the new version where slg is in 
separate include dir

Modified:
  luxrays/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 13:40:05 UTC (rev 89622)
+++ PKGBUILD2013-04-30 13:50:02 UTC (rev 89623)
@@ -32,7 +32,7 @@
   install -d -m755 "$pkgdir"/usr/{bin,include,lib}
   install -m755 bin/* "$pkgdir"/usr/bin
   install -m644 lib/* "$pkgdir"/usr/lib
-  cp -a include/luxrays "$pkgdir"/usr/include
+  cp -a include "$pkgdir"/usr
 }
 
 # vim:set ts=2 sw=2 et:



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 15:40:05
  Author: foutrelis
Revision: 89622

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

Added:
  vtk/repos/community-staging-i686/
  vtk/repos/community-staging-i686/PKGBUILD
(from rev 89621, vtk/trunk/PKGBUILD)
  vtk/repos/community-staging-i686/ffmpeg-0.11.diff
(from rev 89621, vtk/trunk/ffmpeg-0.11.diff)
  vtk/repos/community-staging-i686/ffmpeg-0.8.diff
(from rev 89621, vtk/trunk/ffmpeg-0.8.diff)
  vtk/repos/community-staging-i686/python-destdir.diff
(from rev 89621, vtk/trunk/python-destdir.diff)
  vtk/repos/community-staging-i686/tcl-8.6.diff
(from rev 89621, vtk/trunk/tcl-8.6.diff)
  vtk/repos/community-staging-x86_64/
  vtk/repos/community-staging-x86_64/PKGBUILD
(from rev 89621, vtk/trunk/PKGBUILD)
  vtk/repos/community-staging-x86_64/ffmpeg-0.11.diff
(from rev 89621, vtk/trunk/ffmpeg-0.11.diff)
  vtk/repos/community-staging-x86_64/ffmpeg-0.8.diff
(from rev 89621, vtk/trunk/ffmpeg-0.8.diff)
  vtk/repos/community-staging-x86_64/python-destdir.diff
(from rev 89621, vtk/trunk/python-destdir.diff)
  vtk/repos/community-staging-x86_64/tcl-8.6.diff
(from rev 89621, vtk/trunk/tcl-8.6.diff)

--+
 community-staging-i686/PKGBUILD  |  116 +
 community-staging-i686/ffmpeg-0.11.diff  |   46 +
 community-staging-i686/ffmpeg-0.8.diff   |   66 ++
 community-staging-i686/python-destdir.diff   |   11 ++
 community-staging-i686/tcl-8.6.diff  |   13 ++
 community-staging-x86_64/PKGBUILD|  116 +
 community-staging-x86_64/ffmpeg-0.11.diff|   46 +
 community-staging-x86_64/ffmpeg-0.8.diff |   66 ++
 community-staging-x86_64/python-destdir.diff |   11 ++
 community-staging-x86_64/tcl-8.6.diff|   13 ++
 10 files changed, 504 insertions(+)

Copied: vtk/repos/community-staging-i686/PKGBUILD (from rev 89621, 
vtk/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 13:40:05 UTC (rev 89622)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Christofer Bertonha 
+# Contributor: leepesjee 
+# Contributor: Olivier Medoc
+# Contributor: ignotus
+# Contributor: Fabian Moser
+# Contributor: djscholl
+
+# Qt5 support status: http://vtk.org/Bug/view.php?id=12945
+
+pkgname=vtk
+pkgver=5.10.1
+pkgrel=8
+pkgdesc='A software system for 3D computer graphics, image processing, and 
visualization.'
+arch=('i686' 'x86_64')
+url='http://www.vtk.org/'
+license=('BSD')
+depends=('libjpeg-turbo' 'boost' 'ffmpeg' 'qt4' 'lesstif' 'mariadb' 'hdf5' 
'libgl')
+makedepends=('cmake' 'java-environment' 'doxygen' 'gnuplot' 'mesa-libgl' 
'python2' 'tk')
+optdepends=('python2: python bindings'
+'java-runtime: java bindings'
+'tk: tcl bindings'
+'gnuplot: plotting tools'
+'graphviz: drawing tools')
+source=("http://www.vtk.org/files/release/${pkgver:0:4}/vtk-${pkgver}.tar.gz";
+
"http://www.vtk.org/files/release/${pkgver:0:4}/vtkdata-${pkgver}.tar.gz";
+ffmpeg-0.8.diff ffmpeg-0.11.diff tcl-8.6.diff python-destdir.diff)
+md5sums=('264b0052e65bd6571a84727113508789'
+ 'b6355063264cd56bcd1396c92f6ca59a'
+ 'e992321c9d1def6034d0fa6607b40c5a'
+ '81922ea61989e5591135f233a0400694'
+ 'a804a9f034e24ef1a8b28542c15ce1a1'
+ 'f7aba715bcc10de93a6ecf1cd6b0c560')
+
+build() {
+  cd "${srcdir}"/VTK$pkgver
+
+  # fix compilation errors:
+  patch -Np1 -i "${srcdir}/ffmpeg-0.8.diff"
+  patch -Np1 -i "${srcdir}/ffmpeg-0.11.diff"
+  patch -Np1 -i "${srcdir}/tcl-8.6.diff"
+  patch -Np1 -i "${srcdir}/python-destdir.diff"
+
+  cd "${srcdir}"
+
+  rm -rf build
+  mkdir build
+  cd build
+
+  # flags to enable using system libs
+  local cmake_system_flags=""
+  for lib in HDF5 EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 OGGTHEORA; do
+cmake_system_flags+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
+  done
+
+  # flags to use python2 instead of python which is 3.x.x on archlinux
+  local cmake_system_python_flags="-DPYTHON_EXECUTABLE:PATH=/usr/bin/python2 
-DPYTHON_INCLUDE_DIR:PATH=/usr/include/python2.7 
-DPYTHON_LIBRARY:PATH=/usr/lib/libpython2.7.so"
+
+  cmake \
+-Wno-dev \
+-DBUILD_SHARED_LIBS:BOOL=ON \
+-DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
+-DVTK_DATA_ROOT:FILEPATH=${srcdir}/VTKData$pkgver \
+-DBUILD_DOCUMENTATION:BOOL=ON \
+-DDOCUMENTATION_HTML_HELP:BOOL=ON \
+-DDOCUMENTATION_HTML_TARZ:BOOL=ON \
+-DBUILD_EXAMPLES:BOOL=ON \
+-DVTK_USE_CHEMISTRY:BOOL=ON \
+-DVTK_USE_HYBRID:BOOL=ON \
+-DVTK_USE_PARALLEL:BOOL=ON \
+-DVTK_USE_PATENTED:BOOL=ON \
+-DVTK_USE_BOOST:BOOL=ON \
+-DVTK_USE_INFOVIS:BOOL=ON \
+-DVTK_US

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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 15:39:43
  Author: foutrelis
Revision: 89621

upgpkg: vtk 5.10.1-8

libpng 1.6 rebuild.

Modified:
  vtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 13:26:49 UTC (rev 89620)
+++ PKGBUILD2013-04-30 13:39:43 UTC (rev 89621)
@@ -12,7 +12,7 @@
 
 pkgname=vtk
 pkgver=5.10.1
-pkgrel=7
+pkgrel=8
 pkgdesc='A software system for 3D computer graphics, image processing, and 
visualization.'
 arch=('i686' 'x86_64')
 url='http://www.vtk.org/'



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

2013-04-30 Thread Lukas Jirkovsky
Date: Tuesday, April 30, 2013 @ 15:26:49
  Author: stativ
Revision: 89620

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

Added:
  luxrender/repos/community-staging-i686/
  luxrender/repos/community-staging-i686/PKGBUILD
(from rev 89619, luxrender/trunk/PKGBUILD)
  
luxrender/repos/community-staging-i686/boost-1.53-shared_array_constructor.diff
(from rev 89619, luxrender/trunk/boost-1.53-shared_array_constructor.diff)
  luxrender/repos/community-staging-x86_64/
  luxrender/repos/community-staging-x86_64/PKGBUILD
(from rev 89619, luxrender/trunk/PKGBUILD)
  
luxrender/repos/community-staging-x86_64/boost-1.53-shared_array_constructor.diff
(from rev 89619, luxrender/trunk/boost-1.53-shared_array_constructor.diff)

---+
 community-staging-i686/PKGBUILD   |   54 

 community-staging-i686/boost-1.53-shared_array_constructor.diff   |   62 
++
 community-staging-x86_64/PKGBUILD |   54 

 community-staging-x86_64/boost-1.53-shared_array_constructor.diff |   62 
++
 4 files changed, 232 insertions(+)

Copied: luxrender/repos/community-staging-i686/PKGBUILD (from rev 89619, 
luxrender/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 13:26:49 UTC (rev 89620)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor: flixie <69...@gmx.net>
+# Contributor: Imanol Celaya 
+pkgname=luxrender
+pkgver=1.2.1
+_pkgver=3066b2161439
+pkgrel=3
+pkgdesc="Rendering system for physically correct, unbiased image synthesis"
+arch=('i686' 'x86_64')
+url="http://www.luxrender.net/";
+license=('GPL')
+depends=('boost-libs' 'freeimage' 'openexr' 'libcl' 'libgl')
+optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
+'python: Python interface (pylux)'
+'nvidia-utils: OpenCL support for nVidia GPUs' \
+'amdstream: OpenCL support for AMD GPUs' \
+'intel-opencl-sdk: OpenCL support for Intel CPUs')
+makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=1.2" 'python' 
'opencl-headers')
+source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2 \
+boost-1.53-shared_array_constructor.diff)
+md5sums=('87958798c164ad14f92fb4af2595d332'
+ 'dd19c7ac2ba8c9b703018a176ef77f98')
+
+build() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+
+  # fix the installation
+  sed -i '/.*wxgui.*/ d' CMakeLists.txt
+  # fix for boost 1.53
+  patch -Np1 < "$srcdir/boost-1.53-shared_array_constructor.diff" || true
+
+  export CXXFLAGS="$CXXFLAGS -lpthread"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DLUXRAYS_DISABLE_OPENCL=OFF \
+-DPYTHON_CUSTOM=ON \
+-DPYTHON_LIBRARIES=/usr/lib/libpython3.3m.so \
+-DPYTHON_INCLUDE_PATH=/usr/include/python3.3m/ \
+.
+  make
+}
+
+package() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+  make DESTDIR="$pkgdir" install
+
+  # fix library path on x86_64
+  [ "$CARCH" = "x86_64" ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib
+
+  #install pylux
+  install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.3/pylux.so
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
luxrender/repos/community-staging-i686/boost-1.53-shared_array_constructor.diff 
(from rev 89619, luxrender/trunk/boost-1.53-shared_array_constructor.diff)
===
--- community-staging-i686/boost-1.53-shared_array_constructor.diff 
(rev 0)
+++ community-staging-i686/boost-1.53-shared_array_constructor.diff 
2013-04-30 13:26:49 UTC (rev 89620)
@@ -0,0 +1,62 @@
+diff -rup luxrender-lux-3066b2161439/cmake/luxrender.cmake 
luxrender-lux-3066b2161439.new/cmake/luxrender.cmake
+--- luxrender-lux-3066b2161439/cmake/luxrender.cmake   2013-03-16 
19:32:24.0 +
 luxrender-lux-3066b2161439.new/cmake/luxrender.cmake   2013-03-26 
18:26:46.194520697 +
+@@ -98,7 +98,7 @@ IF(QT4_FOUND)
+ 
+   QT4_ADD_RESOURCES( LUXQTGUI_RC_SRCS ${LUXQTGUI_RCS})
+   QT4_WRAP_UI( LUXQTGUI_UI_HDRS ${LUXQTGUI_UIS} )
+-  QT4_WRAP_CPP( LUXQTGUI_MOC_SRCS ${LUXQTGUI_MOC} )
++  QT4_WRAP_CPP( LUXQTGUI_MOC_SRCS ${LUXQTGUI_MOC} OPTIONS 
-DBOOST_TT_HAS_OPERATOR_HPP_INCLUDED -DBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION 
)
+ 
+   #file (GLOB TRANSLATIONS_FILES qtgui/translations/*.ts)
+   #qt4_create_translation(QM_FILES ${FILES_TO_TRANSLATE} 
${TRANSLATIONS_FILES})
+diff -rup luxrender-lux-3066b2161439/core/film.cpp 
luxrender-lux-3066b2161439.new/core/film.cpp
+--- luxrender-lux-3066b2161439/core/film.cpp   2013-03-16 19:32:24.0 
+
 luxrender-lux-3066b2161439.new/core/film.cpp   2013-03-26 
18:03:02.828222310 +
+@@ -890,8 +890,8 @@ Film::Film(u_int xres, u_int yres, Filte
+   filename(filename1),
+   colorSpace(0.63f

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

2013-04-30 Thread Lukas Jirkovsky
Date: Tuesday, April 30, 2013 @ 15:25:57
  Author: stativ
Revision: 89619

upgpkg: luxrender 1.2.1-3

rebuild against libpng 1.6

Modified:
  luxrender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 12:05:55 UTC (rev 89618)
+++ PKGBUILD2013-04-30 13:25:57 UTC (rev 89619)
@@ -5,7 +5,7 @@
 pkgname=luxrender
 pkgver=1.2.1
 _pkgver=3066b2161439
-pkgrel=2
+pkgrel=3
 pkgdesc="Rendering system for physically correct, unbiased image synthesis"
 arch=('i686' 'x86_64')
 url="http://www.luxrender.net/";



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 14:16:18
  Author: foutrelis
Revision: 183988

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

Added:
  firefox/repos/staging-i686/
  firefox/repos/staging-i686/PKGBUILD
(from rev 183987, firefox/trunk/PKGBUILD)
  firefox/repos/staging-i686/firefox-install-dir.patch
(from rev 183987, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/staging-i686/firefox.desktop
(from rev 183987, firefox/trunk/firefox.desktop)
  firefox/repos/staging-i686/firefox.install
(from rev 183987, firefox/trunk/firefox.install)
  firefox/repos/staging-i686/mozconfig
(from rev 183987, firefox/trunk/mozconfig)
  firefox/repos/staging-i686/shared-libs.patch
(from rev 183987, firefox/trunk/shared-libs.patch)
  firefox/repos/staging-i686/vendor.js
(from rev 183987, firefox/trunk/vendor.js)
  firefox/repos/staging-x86_64/
  firefox/repos/staging-x86_64/PKGBUILD
(from rev 183987, firefox/trunk/PKGBUILD)
  firefox/repos/staging-x86_64/firefox-install-dir.patch
(from rev 183987, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/staging-x86_64/firefox.desktop
(from rev 183987, firefox/trunk/firefox.desktop)
  firefox/repos/staging-x86_64/firefox.install
(from rev 183987, firefox/trunk/firefox.install)
  firefox/repos/staging-x86_64/mozconfig
(from rev 183987, firefox/trunk/mozconfig)
  firefox/repos/staging-x86_64/shared-libs.patch
(from rev 183987, firefox/trunk/shared-libs.patch)
  firefox/repos/staging-x86_64/vendor.js
(from rev 183987, firefox/trunk/vendor.js)

--+
 staging-i686/PKGBUILD|   95 ++
 staging-i686/firefox-install-dir.patch   |   30 +++
 staging-i686/firefox.desktop |  121 +
 staging-i686/firefox.install |   13 +++
 staging-i686/mozconfig   |   34 
 staging-i686/shared-libs.patch   |   12 ++
 staging-i686/vendor.js   |9 ++
 staging-x86_64/PKGBUILD  |   95 ++
 staging-x86_64/firefox-install-dir.patch |   30 +++
 staging-x86_64/firefox.desktop   |  121 +
 staging-x86_64/firefox.install   |   13 +++
 staging-x86_64/mozconfig |   34 
 staging-x86_64/shared-libs.patch |   12 ++
 staging-x86_64/vendor.js |9 ++
 14 files changed, 628 insertions(+)

Copied: firefox/repos/staging-i686/PKGBUILD (from rev 183987, 
firefox/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-30 12:16:18 UTC (rev 183988)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Jakub Schmidtke 
+
+pkgname=firefox
+pkgver=20.0.1
+pkgrel=3
+pkgdesc="Standalone web browser from mozilla.org"
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+depends=('gtk2' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
+ 'dbus-glib' 'alsa-lib' 'libvpx' 'libevent' 'nss' 'hunspell' 'sqlite'
+  'libnotify' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'libidl2'
+ 'xorg-server-xvfb' 'imake')
+optdepends=('networkmanager: Location detection via available WiFi networks')
+url="http://www.mozilla.org/projects/firefox";
+install=firefox.install
+options=('!emptydirs')
+source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
+mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch)
+md5sums=('b822ff4b2348410587dec563235d9320'
+ 'efdd58626b2f56dea31e26879eb2db3b'
+ '6174396b4788deffa399db3f6f010a94'
+ '150ac0fb3ac7b2114c8e8851a9e0516c'
+ '0d053487907de4376d67d8f499c5502b'
+ '52e52f840a49eb1d14be1c0065b03a93')
+
+prepare() {
+  cd mozilla-release
+
+  cp ../mozconfig .mozconfig
+  patch -Np1 -i ../firefox-install-dir.patch
+  patch -Np1 -i ../shared-libs.patch
+
+  # Fix PRE_RELEASE_SUFFIX
+  sed -i '/^PRE_RELEASE_SUFFIX := ""/s/ ""//' \
+browser/base/Makefile.in
+
+  mkdir "$srcdir/path"
+
+  # WebRTC build tries to execute "python" and expects Python 2
+  ln -s /usr/bin/python2 "$srcdir/path/python"
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd mozilla-release
+
+  export PATH="$srcdir/path:$PATH"
+  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/firefox"
+  export PYTHON="/usr/bin/python2"
+  export MOZ_MAKE_FLAGS="$MAKEFLAGS"
+  unset MAKEFLAGS
+
+  # Enable PGO
+  export DISPLAY=:99
+  Xvfb -nolisten tcp -extension GLX -screen 0 1280x1024x24 $DISPLAY &
+  _fail=0
+
+  make -f client.mk build MOZ_PGO=1 || _fail=1
+
+  kill $! ||

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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 14:15:47
  Author: foutrelis
Revision: 183987

upgpkg: firefox 20.0.1-3

libpng 1.6 rebuild.

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 10:25:23 UTC (rev 183986)
+++ PKGBUILD2013-04-30 12:15:47 UTC (rev 183987)
@@ -4,7 +4,7 @@
 
 pkgname=firefox
 pkgver=20.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Standalone web browser from mozilla.org"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -26,7 +26,7 @@
  '0d053487907de4376d67d8f499c5502b'
  '52e52f840a49eb1d14be1c0065b03a93')
 
-build() {
+prepare() {
   cd mozilla-release
 
   cp ../mozconfig .mozconfig
@@ -44,9 +44,12 @@
 
   # configure script misdetects the preprocessor without an optimization level
   # https://bugs.archlinux.org/task/34644
-  # TODO: re-enable when we're building with GCC >= 4.8 again
-  #sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
 
+build() {
+  cd mozilla-release
+
   export PATH="$srcdir/path:$PATH"
   export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/firefox"
   export PYTHON="/usr/bin/python2"



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 14:05:55
  Author: spupykin
Revision: 89618

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

Added:
  gnustep-gui/repos/community-staging-i686/
  gnustep-gui/repos/community-staging-i686/ChangeLog
(from rev 89617, gnustep-gui/trunk/ChangeLog)
  gnustep-gui/repos/community-staging-i686/PKGBUILD
(from rev 89617, gnustep-gui/trunk/PKGBUILD)
  gnustep-gui/repos/community-staging-x86_64/
  gnustep-gui/repos/community-staging-x86_64/ChangeLog
(from rev 89617, gnustep-gui/trunk/ChangeLog)
  gnustep-gui/repos/community-staging-x86_64/PKGBUILD
(from rev 89617, gnustep-gui/trunk/PKGBUILD)

+
 community-staging-i686/ChangeLog   |2 ++
 community-staging-i686/PKGBUILD|   33 +
 community-staging-x86_64/ChangeLog |2 ++
 community-staging-x86_64/PKGBUILD  |   33 +
 4 files changed, 70 insertions(+)

Copied: gnustep-gui/repos/community-staging-i686/ChangeLog (from rev 89617, 
gnustep-gui/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2013-04-30 12:05:55 UTC (rev 89618)
@@ -0,0 +1,2 @@
+2007-06-27 tardo 
+* version upgrade

Copied: gnustep-gui/repos/community-staging-i686/PKGBUILD (from rev 89617, 
gnustep-gui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 12:05:55 UTC (rev 89618)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Sebastian Sareyko 
+
+pkgname=gnustep-gui
+pkgver=0.22.0
+pkgrel=4
+pkgdesc="The GNUstep GUI class library"
+arch=('i686' 'x86_64')
+url="http://www.gnustep.org/";
+license=('LGPL')
+depends=('gnustep-back' 'libungif' 'aspell' 'gcc-libs' 'libcups' 'audiofile' 
'libsndfile' 'giflib' 'libao')
+makedepends=('gcc-objc' 'gnustep-base' 'gnustep-make')
+conflicts=('gnustep-gui-svn')
+groups=('gnustep-core')
+options=('!makeflags')
+source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
+md5sums=('3aa3346071736206ca144ce1ce8f063f')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  . /etc/profile.d/GNUstep.sh
+  ./configure --prefix=/usr --sysconfdir=/etc/GNUstep
+  sed -i 's|#include "GNUstepBase/preface.h"|//#include 
"GNUstepBase/preface.h" |' Source/GSGuiPrivate.h
+  sed -i 's|png_sizeof|sizeof|g' Source/NSBitmapImageRep+PNG.m
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gnustep-gui/repos/community-staging-x86_64/ChangeLog (from rev 89617, 
gnustep-gui/trunk/ChangeLog)
===
--- community-staging-x86_64/ChangeLog  (rev 0)
+++ community-staging-x86_64/ChangeLog  2013-04-30 12:05:55 UTC (rev 89618)
@@ -0,0 +1,2 @@
+2007-06-27 tardo 
+* version upgrade

Copied: gnustep-gui/repos/community-staging-x86_64/PKGBUILD (from rev 89617, 
gnustep-gui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-30 12:05:55 UTC (rev 89618)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Sebastian Sareyko 
+
+pkgname=gnustep-gui
+pkgver=0.22.0
+pkgrel=4
+pkgdesc="The GNUstep GUI class library"
+arch=('i686' 'x86_64')
+url="http://www.gnustep.org/";
+license=('LGPL')
+depends=('gnustep-back' 'libungif' 'aspell' 'gcc-libs' 'libcups' 'audiofile' 
'libsndfile' 'giflib' 'libao')
+makedepends=('gcc-objc' 'gnustep-base' 'gnustep-make')
+conflicts=('gnustep-gui-svn')
+groups=('gnustep-core')
+options=('!makeflags')
+source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
+md5sums=('3aa3346071736206ca144ce1ce8f063f')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  . /etc/profile.d/GNUstep.sh
+  ./configure --prefix=/usr --sysconfdir=/etc/GNUstep
+  sed -i 's|#include "GNUstepBase/preface.h"|//#include 
"GNUstepBase/preface.h" |' Source/GSGuiPrivate.h
+  sed -i 's|png_sizeof|sizeof|g' Source/NSBitmapImageRep+PNG.m
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 14:05:41
  Author: spupykin
Revision: 89617

upgpkg: gnustep-gui 0.22.0-4

upd

Modified:
  gnustep-gui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 11:56:21 UTC (rev 89616)
+++ PKGBUILD2013-04-30 12:05:41 UTC (rev 89617)
@@ -5,7 +5,7 @@
 
 pkgname=gnustep-gui
 pkgver=0.22.0
-pkgrel=3
+pkgrel=4
 pkgdesc="The GNUstep GUI class library"
 arch=('i686' 'x86_64')
 url="http://www.gnustep.org/";
@@ -23,6 +23,7 @@
   . /etc/profile.d/GNUstep.sh
   ./configure --prefix=/usr --sysconfdir=/etc/GNUstep
   sed -i 's|#include "GNUstepBase/preface.h"|//#include 
"GNUstepBase/preface.h" |' Source/GSGuiPrivate.h
+  sed -i 's|png_sizeof|sizeof|g' Source/NSBitmapImageRep+PNG.m
   make
 }
 



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 13:56:21
  Author: spupykin
Revision: 89616

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

Added:
  kovpn/repos/community-staging-i686/
  kovpn/repos/community-staging-i686/ChangeLog
(from rev 89615, kovpn/trunk/ChangeLog)
  kovpn/repos/community-staging-i686/PKGBUILD
(from rev 89615, kovpn/trunk/PKGBUILD)
  kovpn/repos/community-staging-i686/kovpn.install
(from rev 89615, kovpn/trunk/kovpn.install)
  kovpn/repos/community-staging-x86_64/
  kovpn/repos/community-staging-x86_64/ChangeLog
(from rev 89615, kovpn/trunk/ChangeLog)
  kovpn/repos/community-staging-x86_64/PKGBUILD
(from rev 89615, kovpn/trunk/PKGBUILD)
  kovpn/repos/community-staging-x86_64/kovpn.install
(from rev 89615, kovpn/trunk/kovpn.install)

+
 community-staging-i686/ChangeLog   |2 +
 community-staging-i686/PKGBUILD|   43 +++
 community-staging-i686/kovpn.install   |   12 
 community-staging-x86_64/ChangeLog |2 +
 community-staging-x86_64/PKGBUILD  |   43 +++
 community-staging-x86_64/kovpn.install |   12 
 6 files changed, 114 insertions(+)

Copied: kovpn/repos/community-staging-i686/ChangeLog (from rev 89615, 
kovpn/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,2 @@
+2007-06-25 Georg Grabler (STiAT) 
+* Added libtool option

Copied: kovpn/repos/community-staging-i686/PKGBUILD (from rev 89615, 
kovpn/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=kovpn
+pkgver=0.3pre7
+_pkgver=0.3.pre7
+pkgrel=7
+pkgdesc="An OpenVPN client management interface for KDE"
+arch=('i686' 'x86_64')
+url="http://www.kde-apps.org/content/show.php?content=37043";
+license=('GPL')
+depends=('openvpn' 'kdelibs3' 'xdg-utils')
+makedepends=('automake' 'autoconf')
+options=('libtool')
+install=kovpn.install
+DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
+  'http::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O 
%o %u'
+  'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate 
-O %o %u')
+source=("https://projects.fslab.de/projects/kovpn/chrome/site/kovpn-${_pkgver}.tar.bz2";
+   
"kovpn-disable-dcop.patch::https://bugs.archlinux.org/task/15464?getfile=4173";)
+md5sums=('19b61cf9f84088baffbd5bb0a287422c'
+ '21171b74f76289daea1cc61eedaa4dba')
+
+build() {
+  cd $srcdir/$pkgname-$_pkgver
+
+  unset LDFLAGS
+  export QTDIR=/usr
+  export QMAKESPEC=/usr/share/qt3/mkspecs/linux-g++
+
+  patch -Np1 -i ../kovpn-disable-dcop.patch
+  sed -i "s#automake\*1.10\*#automake*`pacman -Q automake | cut -f2 -d\ |cut 
-f1-2 -d.`*#" admin/cvs.sh
+  sed -i 's#AM_CONFIG_HEADER#AC_CONFIG_HEADER#g' 
admin/{cvs.sh,configure.in.min}
+  make -f admin/Makefile.common cvs
+  ./configure --prefix=/opt/kde --without-arts --with-qt-dir=/opt/qt
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_pkgver
+  make prefix=$pkgdir/usr install
+}

Copied: kovpn/repos/community-staging-i686/kovpn.install (from rev 89615, 
kovpn/trunk/kovpn.install)
===
--- community-staging-i686/kovpn.install(rev 0)
+++ community-staging-i686/kovpn.install2013-04-30 11:56:21 UTC (rev 
89616)
@@ -0,0 +1,12 @@
+post_install() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}
+

Copied: kovpn/repos/community-staging-x86_64/ChangeLog (from rev 89615, 
kovpn/trunk/ChangeLog)
===
--- community-staging-x86_64/ChangeLog  (rev 0)
+++ community-staging-x86_64/ChangeLog  2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,2 @@
+2007-06-25 Georg Grabler (STiAT) 
+* Added libtool option

Copied: kovpn/repos/community-staging-x86_64/PKGBUILD (from rev 89615, 
kovpn/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=kovpn
+pkgver=0.3pre7
+_pkgver=0.3.pre7
+pkgrel=7
+pkgdesc="An Op

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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 13:55:59
  Author: spupykin
Revision: 89615

upgpkg: kovpn 0.3pre7-7

upd

Modified:
  kovpn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 11:47:52 UTC (rev 89614)
+++ PKGBUILD2013-04-30 11:55:59 UTC (rev 89615)
@@ -5,7 +5,7 @@
 pkgname=kovpn
 pkgver=0.3pre7
 _pkgver=0.3.pre7
-pkgrel=6
+pkgrel=7
 pkgdesc="An OpenVPN client management interface for KDE"
 arch=('i686' 'x86_64')
 url="http://www.kde-apps.org/content/show.php?content=37043";
@@ -26,12 +26,12 @@
   cd $srcdir/$pkgname-$_pkgver
 
   unset LDFLAGS
-  . /etc/profile.d/qt3.sh
-  export PATH=$QTDIR/bin:$PATH
-  export QMAKESPEC=$QTDIR/mkspecs/linux-g++
+  export QTDIR=/usr
+  export QMAKESPEC=/usr/share/qt3/mkspecs/linux-g++
 
   patch -Np1 -i ../kovpn-disable-dcop.patch
-  sed -i 's#automake\*1.10\*#automake*1.10* | automake*1.11*#' admin/cvs.sh
+  sed -i "s#automake\*1.10\*#automake*`pacman -Q automake | cut -f2 -d\ |cut 
-f1-2 -d.`*#" admin/cvs.sh
+  sed -i 's#AM_CONFIG_HEADER#AC_CONFIG_HEADER#g' 
admin/{cvs.sh,configure.in.min}
   make -f admin/Makefile.common cvs
   ./configure --prefix=/opt/kde --without-arts --with-qt-dir=/opt/qt
   make



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 13:47:52
  Author: spupykin
Revision: 89614

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

Added:
  qpxtool/repos/community-staging-i686/
  qpxtool/repos/community-staging-i686/PKGBUILD
(from rev 89613, qpxtool/trunk/PKGBUILD)
  qpxtool/repos/community-staging-i686/libpng15.patch
(from rev 89613, qpxtool/trunk/libpng15.patch)
  qpxtool/repos/community-staging-x86_64/
  qpxtool/repos/community-staging-x86_64/PKGBUILD
(from rev 89613, qpxtool/trunk/PKGBUILD)
  qpxtool/repos/community-staging-x86_64/libpng15.patch
(from rev 89613, qpxtool/trunk/libpng15.patch)

-+
 community-staging-i686/PKGBUILD |   35 
 community-staging-i686/libpng15.patch   |  127 ++
 community-staging-x86_64/PKGBUILD   |   35 
 community-staging-x86_64/libpng15.patch |  127 ++
 4 files changed, 324 insertions(+)

Copied: qpxtool/repos/community-staging-i686/PKGBUILD (from rev 89613, 
qpxtool/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 11:47:52 UTC (rev 89614)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Stasiorowski 
+
+pkgname=qpxtool
+pkgver=0.7.2
+pkgrel=3
+pkgdesc="Allows better controll over optical drives to include QChecks and 
optimization settings."
+arch=('i686' 'x86_64')
+url="http://qpxtool.sourceforge.net/";
+license=('GPL')
+depends=('qt4')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2
+   libpng15.patch)
+md5sums=('b1235e74b8ef4fe087a6b64f5cfca14a'
+ 'ab9af7610277652c77c6d114422b2266')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # Fix strict aliasing warnings
+  export CFLAGS="$CFLAGS -fno-strict-aliasing"
+  sed -i \
+-e 's|lib64|lib|' \
+-e 's|lrelease|lrelease-qt4|' \
+configure
+  patch -p1 <$srcdir/libpng15.patch
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  mkdir -p $pkgdir/usr/bin
+  make DESTDIR=$pkgdir install
+}

Copied: qpxtool/repos/community-staging-i686/libpng15.patch (from rev 89613, 
qpxtool/trunk/libpng15.patch)
===
--- community-staging-i686/libpng15.patch   (rev 0)
+++ community-staging-i686/libpng15.patch   2013-04-30 11:47:52 UTC (rev 
89614)
@@ -0,0 +1,127 @@
+diff -wbBur qpxtool-0.7.1_002/console/f1tattoo/f1tattoo.cpp 
qpxtool-0.7.1_002.my/console/f1tattoo/f1tattoo.cpp
+--- qpxtool-0.7.1_002/console/f1tattoo/f1tattoo.cpp2009-11-25 
10:55:44.0 +0300
 qpxtool-0.7.1_002.my/console/f1tattoo/f1tattoo.cpp 2012-01-23 
13:53:37.0 +0400
+@@ -129,28 +129,28 @@
+ 
+   png_read_info(png_ptr, info_ptr);
+ 
+-  printf("Image size: %ld x %ld\n", info_ptr->width, info_ptr->height);
++  printf("Image size: %u x %u\n", png_get_image_width(png_ptr, info_ptr), 
png_get_image_height(png_ptr, info_ptr));
+ 
+-  if (info_ptr->width != 3744U || info_ptr->height != rows ) {
++  if (png_get_image_width(png_ptr, info_ptr) != 3744U || 
png_get_image_height(png_ptr, info_ptr) != rows ) {
+   printf("Image should be 3744 x %d", rows);
+   return 1;
+   }
+ 
+-//width = info_ptr->width;
+-//height = info_ptr->height;
+-//bit_depth = info_ptr->bit_depth;
++//width = png_get_image_width(png_ptr, info_ptr);
++//height = png_get_image_height(png_ptr, info_ptr);
++//bit_depth = png_get_bit_depth(png_ptr, info_ptr);
+ 
+   number_of_passes = png_set_interlace_handling(png_ptr);
+   png_read_update_info(png_ptr, info_ptr);
+ 
+-  printf("Color type: [%d] ", info_ptr->color_type);
+-  switch (info_ptr->color_type) {
++  printf("Color type: [%d] ", png_get_color_type(png_ptr, info_ptr));
++  switch (png_get_color_type(png_ptr, info_ptr)) {
+   case PNG_COLOR_TYPE_GRAY:
+   printf("PNG_COLOR_TYPE_GRAY\n");
+   break;
+   case PNG_COLOR_TYPE_PALETTE:
+   printf("PNG_COLOR_TYPE_PALETTE\n");
+-  if (!(info_ptr->valid & PNG_INFO_PLTE)) {
++  if (!(png_get_valid(png_ptr, info_ptr, PNG_INFO_PLTE))) 
{
+   printf("PNG color type is indexed, but no 
palette found!");
+   goto err_read_png;
+   }
+@@ -168,49 +168,53 @@
+   printf("unlnown PNG color type!\n");
+   goto err_read_png;
+   }
+-  printf("Bit depth : %d\n", info_ptr->bit_depth);
+-  if (info_ptr->bit_depth != 8) {
++  printf("Bit depth : %d\n", png_get_bit_depth(png_ptr, info_ptr));
++  if (png_get_bit_depth(png_ptr, inf

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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 13:47:35
  Author: spupykin
Revision: 89613

upgpkg: qpxtool 0.7.2-3

upd

Modified:
  qpxtool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 11:47:27 UTC (rev 89612)
+++ PKGBUILD2013-04-30 11:47:35 UTC (rev 89613)
@@ -4,7 +4,7 @@
 
 pkgname=qpxtool
 pkgver=0.7.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Allows better controll over optical drives to include QChecks and 
optimization settings."
 arch=('i686' 'x86_64')
 url="http://qpxtool.sourceforge.net/";
@@ -19,7 +19,10 @@
   cd $srcdir/$pkgname-$pkgver
   # Fix strict aliasing warnings
   export CFLAGS="$CFLAGS -fno-strict-aliasing"
-  sed -i 's|lib64|lib|' configure
+  sed -i \
+-e 's|lib64|lib|' \
+-e 's|lrelease|lrelease-qt4|' \
+configure
   patch -p1 <$srcdir/libpng15.patch
   ./configure --prefix=/usr
   make



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 13:47:27
  Author: spupykin
Revision: 89612

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

Added:
  flightgear/repos/community-staging-i686/
  flightgear/repos/community-staging-i686/PKGBUILD
(from rev 89611, flightgear/trunk/PKGBUILD)
  flightgear/repos/community-staging-x86_64/
  flightgear/repos/community-staging-x86_64/PKGBUILD
(from rev 89611, flightgear/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: flightgear/repos/community-staging-i686/PKGBUILD (from rev 89611, 
flightgear/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 11:47:27 UTC (rev 89612)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+# Contributor: Hans Janssen 
+
+pkgname=flightgear
+pkgver=2.10.0
+pkgrel=2
+pkgdesc="An open-source, multi-platform flight simulator"
+arch=(i686 x86_64)
+depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 
'libxrandr' 'glu')
+makedepends=('boost' 'cmake' 'mesa')
+license=("GPL")
+url="http://www.flightgear.org";
+options=('!makeflags')
+#source=("$pkgname-$pkgver.tar.gz::https://gitorious.org/fg/flightgear/archive-tarball/release/$pkgver";)
+#source=("ftp://ftp.de.flightgear.org/pub/fgfs/Source/flightgear-$pkgver.tar.bz2";)
+source=("http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/flightgear-$pkgver.tar.bz2";)
+md5sums=('ae7fc8d1e446c5d1fe2aa82ee41dcac5')
+
+build() {
+  cd $srcdir/flightgear-$pkgver
+  cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DFG_DATA_DIR:STRING="/usr/share/flightgear/data" .
+  make
+  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
+}
+
+package() {
+  depends=(${depends[@]} 'flightgear-data')
+
+  cd $srcdir/flightgear-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop
+  install -Dm0644 package/flightgear.ico $pkgdir/usr/share/icons/flightgear.ico
+  ln -sf flightgear $pkgdir/usr/share/FlightGear
+}

Copied: flightgear/repos/community-staging-x86_64/PKGBUILD (from rev 89611, 
flightgear/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-30 11:47:27 UTC (rev 89612)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+# Contributor: Hans Janssen 
+
+pkgname=flightgear
+pkgver=2.10.0
+pkgrel=2
+pkgdesc="An open-source, multi-platform flight simulator"
+arch=(i686 x86_64)
+depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 
'libxrandr' 'glu')
+makedepends=('boost' 'cmake' 'mesa')
+license=("GPL")
+url="http://www.flightgear.org";
+options=('!makeflags')
+#source=("$pkgname-$pkgver.tar.gz::https://gitorious.org/fg/flightgear/archive-tarball/release/$pkgver";)
+#source=("ftp://ftp.de.flightgear.org/pub/fgfs/Source/flightgear-$pkgver.tar.bz2";)
+source=("http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/flightgear-$pkgver.tar.bz2";)
+md5sums=('ae7fc8d1e446c5d1fe2aa82ee41dcac5')
+
+build() {
+  cd $srcdir/flightgear-$pkgver
+  cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DFG_DATA_DIR:STRING="/usr/share/flightgear/data" .
+  make
+  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
+}
+
+package() {
+  depends=(${depends[@]} 'flightgear-data')
+
+  cd $srcdir/flightgear-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop
+  install -Dm0644 package/flightgear.ico $pkgdir/usr/share/icons/flightgear.ico
+  ln -sf flightgear $pkgdir/usr/share/FlightGear
+}



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 13:47:06
  Author: spupykin
Revision: 89611

upgpkg: flightgear 2.10.0-2

upd

Modified:
  flightgear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 10:48:43 UTC (rev 89610)
+++ PKGBUILD2013-04-30 11:47:06 UTC (rev 89611)
@@ -5,7 +5,7 @@
 
 pkgname=flightgear
 pkgver=2.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An open-source, multi-platform flight simulator"
 arch=(i686 x86_64)
 depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 
'libxrandr' 'glu')



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 12:48:43
  Author: spupykin
Revision: 89610

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

Added:
  gmic/repos/community-staging-i686/
  gmic/repos/community-staging-i686/PKGBUILD
(from rev 89609, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-i686/opencv-buildfix.patch
(from rev 89609, gmic/trunk/opencv-buildfix.patch)
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 89609, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/opencv-buildfix.patch
(from rev 89609, gmic/trunk/opencv-buildfix.patch)

+
 community-staging-i686/PKGBUILD|   65 +++
 community-staging-i686/opencv-buildfix.patch   |   20 +++
 community-staging-x86_64/PKGBUILD  |   65 +++
 community-staging-x86_64/opencv-buildfix.patch |   20 +++
 4 files changed, 170 insertions(+)

Copied: gmic/repos/community-staging-i686/PKGBUILD (from rev 89609, 
gmic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 10:48:43 UTC (rev 89610)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.5.5.2
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.sourceforge.net";
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+#options=('!emptydirs')
+source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz";
+"opencv-buildfix.patch")
+md5sums=('ec68076448166ea18d15c0a69489dd25'
+ '120319b0d6c81c5af186abe2281b79ca')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  patch -p1 -i "${srcdir}/opencv-buildfix.patch"
+  find "${srcdir}/gmic-${pkgver}/zart" -type f -execdir chmod 644 '{}' \;
+  find "${srcdir}/gmic-${pkgver}/zart" -type d -execdir chmod 755 '{}' \;
+  sed -i 's|qmake zart.pro|qmake-qt4 zart.pro|' src/Makefile
+}
+md5sums=('7d3a8e5cf9e866dd8979dc7c759a21a6'
+ '120319b0d6c81c5af186abe2281b79ca')
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/gmic,include,lib,share/{man,bash-completion}}
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: gmic/repos/community-staging-i686/opencv-buildfix.patch (from rev 
89609, gmic/trunk/opencv-buildfix.patch)
===
--- community-staging-i686/opencv-buildfix.patch
(rev 0)
+++ community-staging-i686/opencv-buildfix.patch2013-04-30 10:48:43 UTC 
(rev 89610)
@@ -0,0 +1,20 @@
+diff -wbBur gmic-1.5.1.7/src/Makefile gmic-1.5.1.7.q/src/Makefile
+--- gmic-1.5.1.7/src/Makefile  2012-07-26 12:59:34.0 +0400
 gmic-1.5.1.7.q/src/Makefile2012-08-03 14:03:10.0 +0400
+@@ -296,7 +296,7 @@
+ 
+ zart: lib
+ ifneq ($(OS),Darwin)
+-  cd ../zart && qmake-qt4 zart.pro && $(MAKE) && strip zart
++  cd ../zart && qmake zart.pro && $(MAKE) && strip zart
+ else
+   cd ../zart && qmake zart.pro && $(MAKE) "CFLAGS=$(STD_MACOSX_CFLAGS) 
$(OPT_CFLAGS)" "LDFLAGS=$(STD_MACOSX_LDFLAGS) $(OPT_LDFLAGS)"
+ endif
+@@ -403,6 +403,7 @@
+   mkdir -p $(DESTDIR)$(USR)/share/man/fr/man1/
+   cp -f ../man/gmic.1.gz $(DESTDIR)$(USR)/share/man/man1/gmic.1.gz
+   cp -f ../man/gmic.1.gz $(DESTDIR)$(USR)/share/man/fr/man1/gmic.1.gz
++  if test -d /usr/share/bash-completion/completions; then mkdir -p 
$(DESTDIR)/usr/share/bash-completion/completions/; cp -f gmic_bashcompletion.sh 
$(DESTDIR)/usr/share/bash-completion/completions/gmic; fi
+   if test -d /etc/bash_completion

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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 12:48:24
  Author: spupykin
Revision: 89609

upgpkg: gmic 1.5.5.2-2

upd

Modified:
  gmic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 10:09:16 UTC (rev 89608)
+++ PKGBUILD2013-04-30 10:48:24 UTC (rev 89609)
@@ -7,7 +7,7 @@
 pkgbase=gmic
 pkgname=("gmic" "gimp-plugin-gmic" "zart")
 pkgver=1.5.5.2
-pkgrel=1
+pkgrel=2
 arch=("i686" "x86_64")
 url="http://gmic.sourceforge.net";
 license=("custom:CeCILL")



[arch-commits] Commit in linux/repos (28 files)

2013-04-30 Thread Tobias Powalowski
Date: Tuesday, April 30, 2013 @ 12:25:23
  Author: tpowa
Revision: 183986

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

Added:
  linux/repos/testing-i686/PKGBUILD
(from rev 183985, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/alsa-firmware-loading-3.8.8.patch
(from rev 183985, linux/trunk/alsa-firmware-loading-3.8.8.patch)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 183985, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 183985, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 183985, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 183985, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 183985, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 183985, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/alsa-firmware-loading-3.8.8.patch
(from rev 183985, linux/trunk/alsa-firmware-loading-3.8.8.patch)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 183985, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 183985, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 183985, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 183985, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 183985, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/alsa-firmware-loading-3.8.8.patch
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/alsa-firmware-loading-3.8.8.patch
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset

--+
 /PKGBUILD|  652 
 /alsa-firmware-loading-3.8.8.patch   |  178 
 /change-default-console-loglevel.patch   |   24 
 /config  |12534 +
 /config.x86_64   |12126 
 /linux.install   |  130 
 /linux.preset|   28 
 testing-i686/PKGBUILD|  326 
 testing-i686/alsa-firmware-loading-3.8.8.patch   |   89 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 6266 
 testing-i686/config.x86_64   | 6062 
 testing-i686/linux.install   |   65 
 testing-i686/linux.preset|   14 
 testing-x86_64/PKGBUILD  |  326 
 testing-x86_64/alsa-firmware-loading-3.8.8.patch |   89 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 6266 
 testing-x86_64/config.x86_64 | 6062 
 testing-x86_64/linux.install |   65 
 testing-x86_64/linux.preset  |   14 
 21 files changed, 25672 insertions(+), 25668 deletions(-)

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


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

2013-04-30 Thread Tobias Powalowski
Date: Tuesday, April 30, 2013 @ 12:25:03
  Author: tpowa
Revision: 183985

upgpkg: linux 3.9-2

fix ZCACHE and RAMSTER

Modified:
  linux/trunk/linux.install

---+
 linux.install |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: linux.install
===
--- linux.install   2013-04-30 09:46:21 UTC (rev 183984)
+++ linux.install   2013-04-30 10:25:03 UTC (rev 183985)
@@ -2,7 +2,7 @@
 # arg 2:  the old package version
 
 KERNEL_NAME=
-KERNEL_VERSION=3.9.0-1-ARCH
+KERNEL_VERSION=3.9.0-2-ARCH
 
 # set a sane PATH to ensure that critical utils like depmod will be found
 export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 12:09:16
  Author: spupykin
Revision: 89608

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

Added:
  gdk-pixbuf/repos/community-staging-i686/
  gdk-pixbuf/repos/community-staging-i686/PKGBUILD
(from rev 89607, gdk-pixbuf/trunk/PKGBUILD)
  
gdk-pixbuf/repos/community-staging-i686/gdk-pixbuf-0.22.0-bmp_reject_corrupt.patch
(from rev 89607, 
gdk-pixbuf/trunk/gdk-pixbuf-0.22.0-bmp_reject_corrupt.patch)
  gdk-pixbuf/repos/community-staging-i686/gdk-pixbuf-0.22.0-bmp_secure.patch
(from rev 89607, gdk-pixbuf/trunk/gdk-pixbuf-0.22.0-bmp_secure.patch)
  gdk-pixbuf/repos/community-staging-i686/gdk-pixbuf-0.22.0-loaders.patch
(from rev 89607, gdk-pixbuf/trunk/gdk-pixbuf-0.22.0-loaders.patch)
  gdk-pixbuf/repos/community-staging-i686/gdk-pixbuf-0.22.0.patch
(from rev 89607, gdk-pixbuf/trunk/gdk-pixbuf-0.22.0.patch)
  gdk-pixbuf/repos/community-staging-i686/libpng15.patch
(from rev 89607, gdk-pixbuf/trunk/libpng15.patch)
  gdk-pixbuf/repos/community-staging-x86_64/
  gdk-pixbuf/repos/community-staging-x86_64/PKGBUILD
(from rev 89607, gdk-pixbuf/trunk/PKGBUILD)
  
gdk-pixbuf/repos/community-staging-x86_64/gdk-pixbuf-0.22.0-bmp_reject_corrupt.patch
(from rev 89607, 
gdk-pixbuf/trunk/gdk-pixbuf-0.22.0-bmp_reject_corrupt.patch)
  gdk-pixbuf/repos/community-staging-x86_64/gdk-pixbuf-0.22.0-bmp_secure.patch
(from rev 89607, gdk-pixbuf/trunk/gdk-pixbuf-0.22.0-bmp_secure.patch)
  gdk-pixbuf/repos/community-staging-x86_64/gdk-pixbuf-0.22.0-loaders.patch
(from rev 89607, gdk-pixbuf/trunk/gdk-pixbuf-0.22.0-loaders.patch)
  gdk-pixbuf/repos/community-staging-x86_64/gdk-pixbuf-0.22.0.patch
(from rev 89607, gdk-pixbuf/trunk/gdk-pixbuf-0.22.0.patch)
  gdk-pixbuf/repos/community-staging-x86_64/libpng15.patch
(from rev 89607, gdk-pixbuf/trunk/libpng15.patch)

-+
 community-staging-i686/PKGBUILD |   51 +++
 community-staging-i686/gdk-pixbuf-0.22.0-bmp_reject_corrupt.patch   |   48 +++
 community-staging-i686/gdk-pixbuf-0.22.0-bmp_secure.patch   |   19 +
 community-staging-i686/gdk-pixbuf-0.22.0-loaders.patch  |  134 
++
 community-staging-i686/gdk-pixbuf-0.22.0.patch  |  129 
+
 community-staging-i686/libpng15.patch   |   30 ++
 community-staging-x86_64/PKGBUILD   |   51 +++
 community-staging-x86_64/gdk-pixbuf-0.22.0-bmp_reject_corrupt.patch |   48 +++
 community-staging-x86_64/gdk-pixbuf-0.22.0-bmp_secure.patch |   19 +
 community-staging-x86_64/gdk-pixbuf-0.22.0-loaders.patch|  134 
++
 community-staging-x86_64/gdk-pixbuf-0.22.0.patch|  129 
+
 community-staging-x86_64/libpng15.patch |   30 ++
 12 files changed, 822 insertions(+)

Copied: gdk-pixbuf/repos/community-staging-i686/PKGBUILD (from rev 89607, 
gdk-pixbuf/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 10:09:16 UTC (rev 89608)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: dorphell 
+# Contributor: Judd Vinet 
+
+pkgname=gdk-pixbuf
+pkgver=0.22.0
+pkgrel=11
+pkgdesc="Image loading and manipulation library"
+arch=('i686' 'x86_64')
+url="http://www.gtk.org/";
+license=('GPL' 'LGPL')
+depends=('gtk' 'libtiff' 'libpng')
+makedepends=('libxt')
+options=('!libtool')
+source=(ftp://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.22/${pkgname}-${pkgver}.tar.bz2
+   gdk-pixbuf-0.22.0-bmp_reject_corrupt.patch
+   gdk-pixbuf-0.22.0-bmp_secure.patch
+   gdk-pixbuf-0.22.0-loaders.patch
+   gdk-pixbuf-0.22.0.patch
+   libpng15.patch)
+md5sums=('05fcb68ceaa338614ab650c775efc2f2'
+ 'd1fb93f1ae994875158a7e0c108c36f8'
+ '5f59d5772b1482d885a180dbc581cf84'
+ '3cf31ae0509747f72ac27a9fd96109c2'
+ 'e0f5f301ce958b7cea0be631ed7b8e56'
+ '16db4dc83d507ebcf15d1beb753a77bc')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  export SED=/bin/sed
+  patch -Np1 -i ${srcdir}/gdk-pixbuf-0.22.0-bmp_reject_corrupt.patch
+  patch -Np0 -i ${srcdir}/gdk-pixbuf-0.22.0-bmp_secure.patch
+  patch -Np1 -i ${srcdir}/gdk-pixbuf-0.22.0-loaders.patch
+  patch -Np0 -i ${srcdir}/gdk-pixbuf-0.22.0.patch
+  patch -Np1 -i ${srcdir}/libpng15.patch
+  sed -i \
+-e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADER|' \
+-e 's|AM_PROG_CC_STDC|AC_PROG_CC|' \
+configure.in
+  libtoolize --force --copy --automake
+  autoreconf --force --install
+  ./configure --prefix=/usr --disable-gtk-doc
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -rf ${pkgdir}/usr/share/gnome
+}

Copied: 
gdk-pixbuf/repos/community-staging-i686/gdk-pixbuf-0.

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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 12:08:47
  Author: spupykin
Revision: 89607

upgpkg: gdk-pixbuf 0.22.0-11

upd

Modified:
  gdk-pixbuf/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 10:08:43 UTC (rev 89606)
+++ PKGBUILD2013-04-30 10:08:47 UTC (rev 89607)
@@ -5,7 +5,7 @@
 
 pkgname=gdk-pixbuf
 pkgver=0.22.0
-pkgrel=9
+pkgrel=11
 pkgdesc="Image loading and manipulation library"
 arch=('i686' 'x86_64')
 url="http://www.gtk.org/";
@@ -34,6 +34,10 @@
   patch -Np1 -i ${srcdir}/gdk-pixbuf-0.22.0-loaders.patch
   patch -Np0 -i ${srcdir}/gdk-pixbuf-0.22.0.patch
   patch -Np1 -i ${srcdir}/libpng15.patch
+  sed -i \
+-e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADER|' \
+-e 's|AM_PROG_CC_STDC|AC_PROG_CC|' \
+configure.in
   libtoolize --force --copy --automake
   autoreconf --force --install
   ./configure --prefix=/usr --disable-gtk-doc



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 12:08:43
  Author: spupykin
Revision: 89606

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

Added:
  fxprocessview/repos/community-staging-i686/
  fxprocessview/repos/community-staging-i686/PKGBUILD
(from rev 89605, fxprocessview/trunk/PKGBUILD)
  fxprocessview/repos/community-staging-i686/build-fix.patch
(from rev 89605, fxprocessview/trunk/build-fix.patch)
  fxprocessview/repos/community-staging-x86_64/
  fxprocessview/repos/community-staging-x86_64/PKGBUILD
(from rev 89605, fxprocessview/trunk/PKGBUILD)
  fxprocessview/repos/community-staging-x86_64/build-fix.patch
(from rev 89605, fxprocessview/trunk/build-fix.patch)

--+
 community-staging-i686/PKGBUILD  |   37 ++
 community-staging-i686/build-fix.patch   |   41 +
 community-staging-x86_64/PKGBUILD|   37 ++
 community-staging-x86_64/build-fix.patch |   41 +
 4 files changed, 156 insertions(+)

Copied: fxprocessview/repos/community-staging-i686/PKGBUILD (from rev 89605, 
fxprocessview/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 10:08:43 UTC (rev 89606)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sander Jansen 
+
+pkgname=fxprocessview
+pkgver=0.5.0
+pkgrel=6
+pkgdesc="Process Viewer"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('fox>=1.4.0')
+makedepends=('glu')
+url="http://code.google.com/p/fxdesktop/";
+source=(http://archlinux-stuff.googlecode.com/files/$pkgname-$pkgver.tar.gz \
+   build-fix.patch)
+md5sums=('5d3cc8d7aec770997c281a743ddfda5a'
+'2d2c3d54dcd2404149955f12cccb21a5')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # Override default flags
+  export CFLAGS="-Wall -O2 -pipe"
+  export CXXFLAGS="-Wall -O2 -pipe"
+  # Compile
+  patch -Np1 <../build-fix.patch
+  ./gb
+  # gb does not return valid error code
+  [ -f src/fxprocessview ]
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  # make sure destination exists
+  mkdir -p $pkgdir/usr/bin
+  # Install
+  ./gb install --package-root=$pkgdir/usr
+}

Copied: fxprocessview/repos/community-staging-i686/build-fix.patch (from rev 
89605, fxprocessview/trunk/build-fix.patch)
===
--- community-staging-i686/build-fix.patch  (rev 0)
+++ community-staging-i686/build-fix.patch  2013-04-30 10:08:43 UTC (rev 
89606)
@@ -0,0 +1,41 @@
+diff -wbBur fxprocessview-0.5.0/src/processlist.cpp 
fxprocessview-0.5.0.my/src/processlist.cpp
+--- fxprocessview-0.5.0/src/processlist.cpp2005-07-15 06:39:17.0 
+0400
 fxprocessview-0.5.0.my/src/processlist.cpp 2007-03-07 19:21:34.0 
+0300
+@@ -696,7 +696,7 @@
+ 
+ long FXProcessList::onCmdUserMode(FXObject* sender,FXSelector,void* ){
+   if (userfilter.empty()){
+-  userfilter=FXFile::getCurrentUserName();
++  userfilter=FXSystem::currentUserName();
+   }
+   else {
+   userfilter="";
+@@ -942,12 +942,17 @@
+ 
+ 
+ 
+-  FXint num_processes = 
FXFile::listFiles(dirlist,"/proc","[0123456789]*",LIST_MATCH_ALL|LIST_NO_FILES|LIST_NO_PARENT);
++  FXint num_processes = 
FXDir::listFiles(dirlist,"/proc","[0123456789]*",FXDir::MatchAll | 
FXDir::NoFiles | FXDir::NoParent);
+   task_total=num_processes;
+   for (FXint i=0;i
+# Contributor: Sander Jansen 
+
+pkgname=fxprocessview
+pkgver=0.5.0
+pkgrel=6
+pkgdesc="Process Viewer"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('fox>=1.4.0')
+makedepends=('glu')
+url="http://code.google.com/p/fxdesktop/";
+source=(http://archlinux-stuff.googlecode.com/files/$pkgname-$pkgver.tar.gz \
+   build-fix.patch)
+md5sums=('5d3cc8d7aec770997c281a743ddfda5a'
+'2d2c3d54dcd2404149955f12cccb21a5')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # Override default flags
+  export CFLAGS="-Wall -O2 -pipe"
+  export CXXFLAGS="-Wall -O2 -pipe"
+  # Compile
+  patch -Np1 <../build-fix.patch
+  ./gb
+  # gb does not return valid error code
+  [ -f src/fxprocessview ]
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  # make sure destination exists
+  mkdir -p $pkgdir/usr/bin
+  # Install
+  ./gb install --package-root=$pkgdir/usr
+}

Copied: fxprocessview/repos/community-staging-x86_64/build-fix.patch (from rev 
89605, fxprocessview/trunk/build-fix.patch)
===
--- community-staging-x86_64/build-fix.patch(rev 0)
+++ community-staging-x86_64/build-fix.patch2013-04-30 10:08:43 UTC (rev 
89606)
@@ -0,0 +1,41 @@
+diff -wbBur fxprocessview-0.5.0/src/processlist.cpp 
fxprocessview-0.5.0.my/src/processlist.cpp
+--- fxprocessview-0.5.0/src/processlist.cpp2005-07-15 06:39:

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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 12:08:29
  Author: spupykin
Revision: 89605

upgpkg: fxprocessview 0.5.0-6

upd

Modified:
  fxprocessview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 10:08:25 UTC (rev 89604)
+++ PKGBUILD2013-04-30 10:08:29 UTC (rev 89605)
@@ -4,7 +4,7 @@
 
 pkgname=fxprocessview
 pkgver=0.5.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Process Viewer"
 arch=('i686' 'x86_64')
 license=('GPL')



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 12:08:25
  Author: spupykin
Revision: 89604

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

Added:
  fxdesktop/repos/community-staging-i686/
  fxdesktop/repos/community-staging-i686/PKGBUILD
(from rev 89603, fxdesktop/trunk/PKGBUILD)
  fxdesktop/repos/community-staging-x86_64/
  fxdesktop/repos/community-staging-x86_64/PKGBUILD
(from rev 89603, fxdesktop/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   30 ++
 community-staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: fxdesktop/repos/community-staging-i686/PKGBUILD (from rev 89603, 
fxdesktop/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 10:08:25 UTC (rev 89604)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sander Jansen 
+
+pkgname=fxdesktop
+pkgver=0.1.12
+pkgrel=7
+pkgdesc="Lightweight Desktop Environment"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/fxdesktop/";
+license=('GPL')
+depends=('fox>=1.6.0')
+makedepends=('glu')
+source=(http://archlinux-stuff.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
+md5sums=('9489e7369b5e052e0b6836a3b0670832')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # Override default flags
+  export CFLAGS="-Wall -O2 -pipe"
+  export CXXFLAGS="-Wall -O2 -pipe"
+  [ "$CARCH" = "x86_64" ] && (sed -i -e 's|lib64|lib|g' 
build/config.linux_x86_64)
+  # Compile
+  ./gb --prefix=/usr
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  ./gb --package-root=$pkgdir/usr install
+}

Copied: fxdesktop/repos/community-staging-x86_64/PKGBUILD (from rev 89603, 
fxdesktop/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-30 10:08:25 UTC (rev 89604)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sander Jansen 
+
+pkgname=fxdesktop
+pkgver=0.1.12
+pkgrel=7
+pkgdesc="Lightweight Desktop Environment"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/fxdesktop/";
+license=('GPL')
+depends=('fox>=1.6.0')
+makedepends=('glu')
+source=(http://archlinux-stuff.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
+md5sums=('9489e7369b5e052e0b6836a3b0670832')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # Override default flags
+  export CFLAGS="-Wall -O2 -pipe"
+  export CXXFLAGS="-Wall -O2 -pipe"
+  [ "$CARCH" = "x86_64" ] && (sed -i -e 's|lib64|lib|g' 
build/config.linux_x86_64)
+  # Compile
+  ./gb --prefix=/usr
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  ./gb --package-root=$pkgdir/usr install
+}



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

2013-04-30 Thread Sergej Pupykin
Date: Tuesday, April 30, 2013 @ 12:08:07
  Author: spupykin
Revision: 89603

upgpkg: fxdesktop 0.1.12-7

upd

Modified:
  fxdesktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 10:04:38 UTC (rev 89602)
+++ PKGBUILD2013-04-30 10:08:07 UTC (rev 89603)
@@ -4,7 +4,7 @@
 
 pkgname=fxdesktop
 pkgver=0.1.12
-pkgrel=6
+pkgrel=7
 pkgdesc="Lightweight Desktop Environment"
 arch=('i686' 'x86_64')
 url="http://code.google.com/p/fxdesktop/";



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

2013-04-30 Thread Thorsten Töpper
Date: Tuesday, April 30, 2013 @ 12:04:38
  Author: ttoepper
Revision: 89602

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

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

---+
 /PKGBUILD |   68 
 /mksh.install |   26 +++
 community-i686/PKGBUILD   |   35 
 community-i686/mksh.install   |   13 ---
 community-x86_64/PKGBUILD |   35 
 community-x86_64/mksh.install |   13 ---
 6 files changed, 94 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-30 10:04:32 UTC (rev 89601)
+++ community-i686/PKGBUILD 2013-04-30 10:04:38 UTC (rev 89602)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: Daniel Hommel 
-
-pkgname=mksh
-pkgver=R44
-pkgrel=1
-pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
-url='https://www.mirbsd.org/mksh.htm'
-license=('custom')
-arch=('i686' 'x86_64')
-install=mksh.install
-source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$pkgver.tgz";
-'https://www.mirbsd.org/TaC-mksh.txt')
-depends=('gcc-libs')
-md5sums=('fe011686319a8c50d5e237fd5e195fd8'
- 'bd05936e20d699df5d47e4ad6223c9d4')
-
-build() {
-  cd "$srcdir/$pkgname"
-
-  sh Build.sh -r -c lto
-  ./test.sh
-  gzip -n9 mksh.1
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  install -D -m 755 mksh "$pkgdir/bin/mksh"
-  install -D -m 644 mksh.1.gz "$pkgdir/usr/share/man/man1/mksh.1.gz"
-  install -D -m 644 dot.mkshrc "$pkgdir/etc/skel/.mkshrc"
-  install -D -m 644 "$srcdir/TaC-mksh.txt" 
"$pkgdir/usr/share/licenses/mksh/TaC-mksh.txt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mksh/repos/community-i686/PKGBUILD (from rev 89601, mksh/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-30 10:04:38 UTC (rev 89602)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Thorsten Töpper 
+# Contributor: Daniel Hommel 
+
+pkgname=mksh
+pkgver=R45
+pkgrel=1
+pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
+url='https://www.mirbsd.org/mksh.htm'
+license=('custom')
+arch=('i686' 'x86_64')
+install=mksh.install
+source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$pkgver.tgz";
+'https://www.mirbsd.org/TaC-mksh.txt')
+depends=('gcc-libs')
+md5sums=('d3d90973119ae689d5300b690600e1dc'
+ '900968b95cd0231053c641428597bacd')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  sh Build.sh -r -c lto
+  ./test.sh
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  install -D -m 755 mksh "$pkgdir/bin/mksh"
+  install -D -m 644 mksh.1 "$pkgdir/usr/share/man/man1/mksh.1"
+  install -D -m 644 dot.mkshrc "$pkgdir/etc/skel/.mkshrc"
+  install -D -m 644 "$srcdir/TaC-mksh.txt" 
"$pkgdir/usr/share/licenses/mksh/TaC-mksh.txt"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/mksh.install
===
--- community-i686/mksh.install 2013-04-30 10:04:32 UTC (rev 89601)
+++ community-i686/mksh.install 2013-04-30 10:04:38 UTC (rev 89602)
@@ -1,13 +0,0 @@
-post_install() {
-  grep -x /bin/mksh /etc/shells >/dev/null || echo /bin/mksh >>/etc/shells
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
-  sed -i "/^\/bin\/mksh$/d" /etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mksh/repos/community-i686/mksh.install (from rev 89601, 
mksh/trunk/mksh.install)
===
--- community-i686/mksh.install (rev 0)
+++ community-i686/mksh.install 2013-04-30 10:04:38 UTC (rev 89602)
@@ -0,0 +1,13 @@
+post_install() {
+  grep -x /bin/mksh /etc/shells >/dev/null || echo /bin/mksh >>/etc/shells
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+post_remove() {
+  sed -i "/^\/bin\/mksh$/d" /etc/shells
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-04-30 10:04:32 UTC (rev 89601)
+++ community-x86_64/PKGBUILD   2013-04-30 10:04:38 UTC (rev 89602)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: Daniel Hommel 
-
-pkgname=mksh
-pkgver=R44
-pkgrel=1
-pkgdesc='The MirBSD Korn Shell 

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

2013-04-30 Thread Thorsten Töpper
Date: Tuesday, April 30, 2013 @ 12:04:32
  Author: ttoepper
Revision: 89601

upgpkg: mksh R45-1

Modified:
  mksh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 09:42:36 UTC (rev 89600)
+++ PKGBUILD2013-04-30 10:04:32 UTC (rev 89601)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Hommel 
 
 pkgname=mksh
-pkgver=R44
+pkgver=R45
 pkgrel=1
 pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
 url='https://www.mirbsd.org/mksh.htm'
@@ -13,21 +13,20 @@
 source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$pkgver.tgz";
 'https://www.mirbsd.org/TaC-mksh.txt')
 depends=('gcc-libs')
-md5sums=('fe011686319a8c50d5e237fd5e195fd8'
- 'bd05936e20d699df5d47e4ad6223c9d4')
+md5sums=('d3d90973119ae689d5300b690600e1dc'
+ '900968b95cd0231053c641428597bacd')
 
 build() {
   cd "$srcdir/$pkgname"
 
   sh Build.sh -r -c lto
   ./test.sh
-  gzip -n9 mksh.1
 }
 
 package() {
   cd "$srcdir/$pkgname"
   install -D -m 755 mksh "$pkgdir/bin/mksh"
-  install -D -m 644 mksh.1.gz "$pkgdir/usr/share/man/man1/mksh.1.gz"
+  install -D -m 644 mksh.1 "$pkgdir/usr/share/man/man1/mksh.1"
   install -D -m 644 dot.mkshrc "$pkgdir/etc/skel/.mkshrc"
   install -D -m 644 "$srcdir/TaC-mksh.txt" 
"$pkgdir/usr/share/licenses/mksh/TaC-mksh.txt"
 }



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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 11:46:21
  Author: bpiotrowski
Revision: 183984

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

Added:
  xorg-xcursorgen/repos/staging-i686/
  xorg-xcursorgen/repos/staging-i686/PKGBUILD
(from rev 183983, xorg-xcursorgen/trunk/PKGBUILD)
  xorg-xcursorgen/repos/staging-x86_64/
  xorg-xcursorgen/repos/staging-x86_64/PKGBUILD
(from rev 183983, xorg-xcursorgen/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   28 
 staging-x86_64/PKGBUILD |   28 
 2 files changed, 56 insertions(+)

Copied: xorg-xcursorgen/repos/staging-i686/PKGBUILD (from rev 183983, 
xorg-xcursorgen/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-30 09:46:21 UTC (rev 183984)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xcursorgen
+pkgver=1.0.5
+pkgrel=2
+pkgdesc="Create an X cursor file from PNG images"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('libx11' 'libxcursor' 'libpng')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(http://xorg.freedesktop.org/archive/individual/app/xcursorgen-${pkgver}.tar.bz2)
+sha1sums=('1d0ca82422d328522b06b218f86b5901a7d5521b')
+
+build() {
+  cd "${srcdir}/xcursorgen-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/xcursorgen-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xorg-xcursorgen/repos/staging-x86_64/PKGBUILD (from rev 183983, 
xorg-xcursorgen/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-04-30 09:46:21 UTC (rev 183984)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xcursorgen
+pkgver=1.0.5
+pkgrel=2
+pkgdesc="Create an X cursor file from PNG images"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('libx11' 'libxcursor' 'libpng')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(http://xorg.freedesktop.org/archive/individual/app/xcursorgen-${pkgver}.tar.bz2)
+sha1sums=('1d0ca82422d328522b06b218f86b5901a7d5521b')
+
+build() {
+  cd "${srcdir}/xcursorgen-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/xcursorgen-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 11:46:11
  Author: bpiotrowski
Revision: 183983

upgpkg: xorg-xcursorgen 1.0.5-2

- rebuild against libpng 1.6

Modified:
  xorg-xcursorgen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 09:11:34 UTC (rev 183982)
+++ PKGBUILD2013-04-30 09:46:11 UTC (rev 183983)
@@ -3,7 +3,7 @@
 
 pkgname=xorg-xcursorgen
 pkgver=1.0.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Create an X cursor file from PNG images"
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";



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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 11:42:36
  Author: bpiotrowski
Revision: 89600

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

Added:
  rawtherapee/repos/community-staging-i686/
  rawtherapee/repos/community-staging-i686/PKGBUILD
(from rev 89599, rawtherapee/trunk/PKGBUILD)
  rawtherapee/repos/community-staging-i686/rawtherapee.install
(from rev 89599, rawtherapee/trunk/rawtherapee.install)
  rawtherapee/repos/community-staging-x86_64/
  rawtherapee/repos/community-staging-x86_64/PKGBUILD
(from rev 89599, rawtherapee/trunk/PKGBUILD)
  rawtherapee/repos/community-staging-x86_64/rawtherapee.install
(from rev 89599, rawtherapee/trunk/rawtherapee.install)

--+
 community-staging-i686/PKGBUILD  |   34 +
 community-staging-i686/rawtherapee.install   |   17 
 community-staging-x86_64/PKGBUILD|   34 +
 community-staging-x86_64/rawtherapee.install |   17 
 4 files changed, 102 insertions(+)

Copied: rawtherapee/repos/community-staging-i686/PKGBUILD (from rev 89599, 
rawtherapee/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 09:42:36 UTC (rev 89600)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor: Bogdan Szczurek 
+# Contributor: Vaclav Kramar 
+# Contributor: Archie 
+
+pkgname=rawtherapee
+pkgver=4.0.10
+pkgrel=4
+epoch=1
+pkgdesc="RAW photo editor"
+arch=('i686' 'x86_64')
+url="http://www.rawtherapee.com/";
+license=('GPL3')
+depends=('fftw' 'gtkmm' 'libcanberra' 'libiptcdata' 'lcms2' 
'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('cmake')
+install=rawtherapee.install
+source=("http://rawtherapee.googlecode.com/files/rawtherapee-$pkgver.tar.xz";)
+md5sums=('cf18a503a978a29af6275e17f7aa67ba')
+
+build() {
+  mkdir "$srcdir/$pkgname-build"
+  cd "$srcdir/$pkgname-build"
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+"$srcdir/$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-build"
+  make DESTDIR="$pkgdir/" install
+}

Copied: rawtherapee/repos/community-staging-i686/rawtherapee.install (from rev 
89599, rawtherapee/trunk/rawtherapee.install)
===
--- community-staging-i686/rawtherapee.install  (rev 0)
+++ community-staging-i686/rawtherapee.install  2013-04-30 09:42:36 UTC (rev 
89600)
@@ -0,0 +1,17 @@
+post_install() {
+  echo "update desktop mime database..."
+  update-desktop-database -q
+  update-mime-database usr/share/mime 1>&2 > /dev/null
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+
+# vim:set ts=2 sw=2 et:

Copied: rawtherapee/repos/community-staging-x86_64/PKGBUILD (from rev 89599, 
rawtherapee/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-30 09:42:36 UTC (rev 89600)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor: Bogdan Szczurek 
+# Contributor: Vaclav Kramar 
+# Contributor: Archie 
+
+pkgname=rawtherapee
+pkgver=4.0.10
+pkgrel=4
+epoch=1
+pkgdesc="RAW photo editor"
+arch=('i686' 'x86_64')
+url="http://www.rawtherapee.com/";
+license=('GPL3')
+depends=('fftw' 'gtkmm' 'libcanberra' 'libiptcdata' 'lcms2' 
'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('cmake')
+install=rawtherapee.install
+source=("http://rawtherapee.googlecode.com/files/rawtherapee-$pkgver.tar.xz";)
+md5sums=('cf18a503a978a29af6275e17f7aa67ba')
+
+build() {
+  mkdir "$srcdir/$pkgname-build"
+  cd "$srcdir/$pkgname-build"
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+"$srcdir/$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-build"
+  make DESTDIR="$pkgdir/" install
+}

Copied: rawtherapee/repos/community-staging-x86_64/rawtherapee.install (from 
rev 89599, rawtherapee/trunk/rawtherapee.install)
===
--- community-staging-x86_64/rawtherapee.install
(rev 0)
+++ community-staging-x86_64/rawtherapee.install2013-04-30 09:42:36 UTC 
(rev 89600)
@@ -0,0 +1,17 @@
+post_install() {
+  echo "update desktop mime database..."
+  update-desktop-database -q
+  update-mime-database usr/share/mime 1>&2 > /dev/null
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+
+# vim:set ts=2 sw=2 et:



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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 11:42:24
  Author: bpiotrowski
Revision: 89599

upgpkg: rawtherapee 1:4.0.10-4

- rebuild against libpng 1.6

Modified:
  rawtherapee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 09:36:54 UTC (rev 89598)
+++ PKGBUILD2013-04-30 09:42:24 UTC (rev 89599)
@@ -6,7 +6,7 @@
 
 pkgname=rawtherapee
 pkgver=4.0.10
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="RAW photo editor"
 arch=('i686' 'x86_64')



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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 11:36:54
  Author: foutrelis
Revision: 89598

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

Added:
  seamonkey/repos/community-staging-i686/
  seamonkey/repos/community-staging-i686/PKGBUILD
(from rev 89597, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-staging-i686/mozconfig
(from rev 89597, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-staging-i686/seamonkey-2.0-lang.patch
(from rev 89597, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-staging-i686/seamonkey.desktop
(from rev 89597, seamonkey/trunk/seamonkey.desktop)
  seamonkey/repos/community-staging-i686/seamonkey.install
(from rev 89597, seamonkey/trunk/seamonkey.install)
  seamonkey/repos/community-staging-x86_64/
  seamonkey/repos/community-staging-x86_64/PKGBUILD
(from rev 89597, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-staging-x86_64/mozconfig
(from rev 89597, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-staging-x86_64/seamonkey-2.0-lang.patch
(from rev 89597, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-staging-x86_64/seamonkey.desktop
(from rev 89597, seamonkey/trunk/seamonkey.desktop)
  seamonkey/repos/community-staging-x86_64/seamonkey.install
(from rev 89597, seamonkey/trunk/seamonkey.install)

---+
 community-staging-i686/PKGBUILD   |   65 
 community-staging-i686/mozconfig  |   31 +
 community-staging-i686/seamonkey-2.0-lang.patch   |   11 +++
 community-staging-i686/seamonkey.desktop  |   11 +++
 community-staging-i686/seamonkey.install  |   12 +++
 community-staging-x86_64/PKGBUILD |   65 
 community-staging-x86_64/mozconfig|   31 +
 community-staging-x86_64/seamonkey-2.0-lang.patch |   11 +++
 community-staging-x86_64/seamonkey.desktop|   11 +++
 community-staging-x86_64/seamonkey.install|   12 +++
 10 files changed, 260 insertions(+)

Copied: seamonkey/repos/community-staging-i686/PKGBUILD (from rev 89597, 
seamonkey/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 09:36:54 UTC (rev 89598)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgname=seamonkey
+pkgver=2.17.1
+pkgrel=2
+pkgdesc="SeaMonkey internet suite"
+arch=('i686' 'x86_64')
+license=('MPL')
+depends=('alsa-lib'  'dbus-glib'  'desktop-file-utils'  'gtk2' 'hunspell'  
'libevent'  'libnotify'  'libvpx'  'libxt' 'mime-types'  'mozilla-common'  
'nss'  'sqlite'  'startup-notification')
+makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'yasm' 'wireless_tools' 
'mesa' 'autoconf2.13' 'imake' 'python3')
+install=$pkgname.install
+url="http://www.seamonkey-project.org/";
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/$pkgname/releases/$pkgver/source/$pkgname-$pkgver.source.tar.bz2
+mozconfig
+seamonkey.desktop
+seamonkey-2.0-lang.patch)
+md5sums=('a95013068da38fe3f8db30e0ebe6f2f5'
+ 'dabc8f517fbff67b8599064bedd32606'
+ '6119a2254716752c9d08e366f8d4c048'
+ '25b6fe16ac24cd5c852213e5c1adb272')
+
+prepare() {
+  cd comm-release
+  cp ../mozconfig .mozconfig
+  patch -Np1 -i ../seamonkey-2.0-lang.patch
+
+  # Don't exit with error when some libs are missing which we have in
+  # system.
+  sed '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' \
+  -i suite/installer/Makefile.in
+
+  # configure script misdetects the preprocessor without an optimization level
+  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
+}
+
+build() {
+  cd comm-release
+
+  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey-$pkgver"
+  export MOZ_MAKE_FLAGS="$MAKEFLAGS"
+  unset MAKEFLAGS
+
+  make -j1 -f client.mk build
+}
+
+package() {
+  cd comm-release
+
+  make -j1 -f client.mk DESTDIR="$pkgdir" install
+
+  rm -rf "$pkgdir"/usr/lib/seamonkey-$pkgver/{dictionaries,hyphenation}
+  ln -s /usr/share/hunspell "$pkgdir/usr/lib/seamonkey-$pkgver/dictionaries"
+  ln -s /usr/share/hyphen "$pkgdir/usr/lib/seamonkey-$pkgver/hyphenation"
+
+  install -m755 -d "$pkgdir/usr/share/applications"
+  install -m755 -d "$pkgdir/usr/share/pixmaps"
+  install -m644 suite/branding/nightly/icons/gtk/seamonkey.png \
+"$pkgdir/usr/share/pixmaps/"
+  install -m644 "$srcdir/seamonkey.desktop" "$pkgdir/usr/share/applications/"
+
+  rm -f "$pkgdir/usr/lib/pkgconfig/"seamonkey-ns{s,pr}.pc
+  rm -r "$pkgdir"/usr/{include,lib/seamonkey-devel-$pkgver,share/idl}
+}
+

Copied: seamonkey/repos/community-staging-i686/mozconfig (from rev 89597, 
seamonkey/trunk/mozconfig)
===
--- community-staging-i686/mozconfig(rev 0)
+++ community-staging-i686/

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

2013-04-30 Thread Evangelos Foutras
Date: Tuesday, April 30, 2013 @ 11:36:32
  Author: foutrelis
Revision: 89597

upgpkg: seamonkey 2.17.1-2

libpng 1.6 rebuild.

Modified:
  seamonkey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 09:32:32 UTC (rev 89596)
+++ PKGBUILD2013-04-30 09:36:32 UTC (rev 89597)
@@ -3,7 +3,7 @@
 
 pkgname=seamonkey
 pkgver=2.17.1
-pkgrel=1
+pkgrel=2
 pkgdesc="SeaMonkey internet suite"
 arch=('i686' 'x86_64')
 license=('MPL')



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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 11:32:32
  Author: bpiotrowski
Revision: 89596

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

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

--+
 /PKGBUILD|   68 +
 /rawtherapee.install |   34 
 community-i686/PKGBUILD  |   34 
 community-i686/rawtherapee.install   |   17 
 community-x86_64/PKGBUILD|   34 
 community-x86_64/rawtherapee.install |   17 
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-30 09:32:11 UTC (rev 89595)
+++ community-i686/PKGBUILD 2013-04-30 09:32:32 UTC (rev 89596)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-# Contributor: Bogdan Szczurek 
-# Contributor: Vaclav Kramar 
-# Contributor: Archie 
-
-pkgname=rawtherapee
-pkgver=4.0.10
-pkgrel=2
-epoch=1
-pkgdesc="RAW photo editor"
-arch=('i686' 'x86_64')
-url="http://www.rawtherapee.com/";
-license=('GPL3')
-depends=('fftw' 'gtkmm' 'libcanberra' 'libiptcdata' 'lcms2' 
'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('cmake')
-install=rawtherapee.install
-source=("http://rawtherapee.googlecode.com/files/rawtherapee-$pkgver.tar.xz";)
-md5sums=('cf18a503a978a29af6275e17f7aa67ba')
-
-build() {
-  mkdir "$srcdir/$pkgname-build"
-  cd "$srcdir/$pkgname-build"
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
-"$srcdir/$pkgname-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-build"
-  make DESTDIR="$pkgdir/" install
-}

Copied: rawtherapee/repos/community-i686/PKGBUILD (from rev 89595, 
rawtherapee/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-30 09:32:32 UTC (rev 89596)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor: Bogdan Szczurek 
+# Contributor: Vaclav Kramar 
+# Contributor: Archie 
+
+pkgname=rawtherapee
+pkgver=4.0.10
+pkgrel=3
+epoch=1
+pkgdesc="RAW photo editor"
+arch=('i686' 'x86_64')
+url="http://www.rawtherapee.com/";
+license=('GPL3')
+depends=('fftw' 'gtkmm' 'libcanberra' 'libiptcdata' 'lcms2' 
'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('cmake')
+install=rawtherapee.install
+source=("http://rawtherapee.googlecode.com/files/rawtherapee-$pkgver.tar.xz";)
+md5sums=('cf18a503a978a29af6275e17f7aa67ba')
+
+build() {
+  mkdir "$srcdir/$pkgname-build"
+  cd "$srcdir/$pkgname-build"
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+"$srcdir/$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-build"
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-i686/rawtherapee.install
===
--- community-i686/rawtherapee.install  2013-04-30 09:32:11 UTC (rev 89595)
+++ community-i686/rawtherapee.install  2013-04-30 09:32:32 UTC (rev 89596)
@@ -1,17 +0,0 @@
-post_install() {
-  echo "update desktop mime database..."
-  update-desktop-database -q
-  update-mime-database usr/share/mime 1>&2 > /dev/null
-  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-
-# vim:set ts=2 sw=2 et:

Copied: rawtherapee/repos/community-i686/rawtherapee.install (from rev 89595, 
rawtherapee/trunk/rawtherapee.install)
===
--- community-i686/rawtherapee.install  (rev 0)
+++ community-i686/rawtherapee.install  2013-04-30 09:32:32 UTC (rev 89596)
@@ -0,0 +1,17 @@
+post_install() {
+  echo "update desktop mime database..."
+  update-desktop-database -q
+  update-mime-database usr/share/mime 1>&2 > /dev/null
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-04-30 09:32:11 UTC (rev 89595)
+++ community-x86_6

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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 11:32:11
  Author: bpiotrowski
Revision: 89595

upgpkg: rawtherapee 1:4.0.10-3

- rebuild against libpng 1.5

Modified:
  rawtherapee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 09:10:56 UTC (rev 89594)
+++ PKGBUILD2013-04-30 09:32:11 UTC (rev 89595)
@@ -6,7 +6,7 @@
 
 pkgname=rawtherapee
 pkgver=4.0.10
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="RAW photo editor"
 arch=('i686' 'x86_64')



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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 11:11:34
  Author: bpiotrowski
Revision: 183982

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

Added:
  mplayer/repos/staging-i686/
  mplayer/repos/staging-i686/PKGBUILD
(from rev 183981, mplayer/trunk/PKGBUILD)
  mplayer/repos/staging-i686/cdio-includes.patch
(from rev 183981, mplayer/trunk/cdio-includes.patch)
  mplayer/repos/staging-i686/mplayer.desktop
(from rev 183981, mplayer/trunk/mplayer.desktop)
  mplayer/repos/staging-i686/mplayer.install
(from rev 183981, mplayer/trunk/mplayer.install)
  mplayer/repos/staging-i686/mplayer.png
(from rev 183981, mplayer/trunk/mplayer.png)
  mplayer/repos/staging-x86_64/
  mplayer/repos/staging-x86_64/PKGBUILD
(from rev 183981, mplayer/trunk/PKGBUILD)
  mplayer/repos/staging-x86_64/cdio-includes.patch
(from rev 183981, mplayer/trunk/cdio-includes.patch)
  mplayer/repos/staging-x86_64/mplayer.desktop
(from rev 183981, mplayer/trunk/mplayer.desktop)
  mplayer/repos/staging-x86_64/mplayer.install
(from rev 183981, mplayer/trunk/mplayer.install)
  mplayer/repos/staging-x86_64/mplayer.png
(from rev 183981, mplayer/trunk/mplayer.png)

+
 staging-i686/PKGBUILD  |   76 +++
 staging-i686/cdio-includes.patch   |   43 +++
 staging-i686/mplayer.desktop   |   21 +
 staging-i686/mplayer.install   |   11 +
 staging-x86_64/PKGBUILD|   76 +++
 staging-x86_64/cdio-includes.patch |   43 +++
 staging-x86_64/mplayer.desktop |   21 +
 staging-x86_64/mplayer.install |   11 +
 8 files changed, 302 insertions(+)

Copied: mplayer/repos/staging-i686/PKGBUILD (from rev 183981, 
mplayer/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-30 09:11:34 UTC (rev 183982)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgbase=mplayer
+pkgname=('mplayer' 'mencoder')
+pkgver=35920
+pkgrel=2
+arch=('i686' 'x86_64')
+makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'sdl' 'lame' 
'libtheora' 'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient'
+'aalib' 'jack' 'libcaca' 'x264' 'faac' 'faad2' 'lirc-utils'  'libxvmc' 'enca' 
'libvdpau' 'opencore-amr' 'libdca' 'a52dec' 'schroedinger' 'libvpx'
+'libpulse' 'fribidi' 'unzip' 'mesa' 'live-media' 'yasm' 'git' 'fontconfig' 
'mpg123' 'ladspa' 'libass' 'libbluray' 'libcdio-paranoia' 'subversion')
+license=('GPL')
+url="http://www.mplayerhq.hu/";
+options=(!buildflags !emptydirs)
+source=(ftp://ftp.archlinux.org/other/packages/$pkgbase/$pkgbase-$pkgver.tar.xz
 mplayer.desktop cdio-includes.patch)
+md5sums=('5f96e829d711e7d1ea65e324710dca50'
+ 'c0d6ef795cf6de48e3b87ff7c23f0319'
+ '7b5be7191aafbea64218dc4916343bbc')
+
+build() {
+cd "$srcdir/$pkgbase"
+patch -Np0 -i ../cdio-includes.patch
+
+./configure --prefix=/usr \
+--enable-runtime-cpudetection \
+--disable-gui \
+--disable-arts \
+--disable-liblzo \
+--disable-speex \
+--disable-openal \
+--disable-libdv \
+--disable-musepack \
+--disable-esd \
+--disable-mga \
+--disable-ass-internal \
+--disable-cdparanoia \
+--enable-xvmc \
+--enable-radio \
+--enable-radio-capture \
+--language=all \
+--confdir=/etc/mplayer 
+[ "$CARCH" = "i686" ] &&  sed 's|-march=i486|-march=i686|g' -i config.mak
+
+make
+}
+
+package_mplayer() {
+pkgdesc="A movie player for linux"
+install=mplayer.install
+backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
+depends=('desktop-file-utils' 'ttf-dejavu' 'enca' 'libxss' 'a52dec' 
'libvpx' 'lirc-utils' 'x264' 'libmng' 'libdca' 'aalib' 'lame' 'fontconfig'  
'libgl'
+'libxinerama' 'libvdpau' 'libpulse' 'smbclient' 'xvidcore' 'opencore-amr' 
'jack' 'libmad' 'sdl' 'libtheora' 'libcaca' 'libxxf86dga' 'fribidi'
+'libjpeg' 'faac' 'faad2' 'libxvmc' 'schroedinger' 'mpg123' 'libass' 
'libxxf86vm' 'libbluray' 'libcdio-paranoia')
+
+cd "$srcdir/$pkgbase"
+
+make DESTDIR="$pkgdir" install-mplayer install-mplayer-man
+install -Dm644 etc/{codecs.conf,input.conf,example.conf} 
"$pkgdir/etc/mplayer/"
+install -dm755 "$pkgdir/usr/share/mplayer/"
+ln -s /usr/share/fonts/TTF/DejaVuSans.ttf 
"$pkgdir/usr/share/mplayer/subfont.ttf"
+rm -rf "$pkgdir/usr/share/mplayer/font"
+#desktop file  FS#14770
+install -Dm644 "$srcdir/mplayer.desktop" 
"$pkgdir/usr/share/applications/mplayer.desktop"
+install -Dm644 etc/mplayer256x256.png 
"$pkgdir/usr/share/pixmaps/mplayer.png"
+}
+
+package_mencoder() {
+pkgdesc="Free command line video decoding, encoding and filtering tool"
+depends=('enca' 'a52dec' 'libvpx' 'x264' 'libmng' 'l

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

2013-04-30 Thread Bartłomiej Piotrowski
Date: Tuesday, April 30, 2013 @ 11:11:10
  Author: bpiotrowski
Revision: 183981

upgpkg: mplayer 35920-2

- rebuild against libpng 1.6

Modified:
  mplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-30 07:21:06 UTC (rev 183980)
+++ PKGBUILD2013-04-30 09:11:10 UTC (rev 183981)
@@ -5,7 +5,7 @@
 pkgbase=mplayer
 pkgname=('mplayer' 'mencoder')
 pkgver=35920
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'sdl' 'lame' 
'libtheora' 'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient'
 'aalib' 'jack' 'libcaca' 'x264' 'faac' 'faad2' 'lirc-utils'  'libxvmc' 'enca' 
'libvdpau' 'opencore-amr' 'libdca' 'a52dec' 'schroedinger' 'libvpx'



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

2013-04-30 Thread Jelle van der Waa
Date: Tuesday, April 30, 2013 @ 11:10:56
  Author: jelle
Revision: 89594

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

Added:
  luminancehdr/repos/community-staging-i686/
  luminancehdr/repos/community-staging-i686/PKGBUILD
(from rev 89593, luminancehdr/trunk/PKGBUILD)
  luminancehdr/repos/community-staging-i686/luminancehdr.changelog
(from rev 89593, luminancehdr/trunk/luminancehdr.changelog)
  luminancehdr/repos/community-staging-i686/luminancehdr.install
(from rev 89593, luminancehdr/trunk/luminancehdr.install)
  luminancehdr/repos/community-staging-x86_64/
  luminancehdr/repos/community-staging-x86_64/PKGBUILD
(from rev 89593, luminancehdr/trunk/PKGBUILD)
  luminancehdr/repos/community-staging-x86_64/luminancehdr.changelog
(from rev 89593, luminancehdr/trunk/luminancehdr.changelog)
  luminancehdr/repos/community-staging-x86_64/luminancehdr.install
(from rev 89593, luminancehdr/trunk/luminancehdr.install)

-+
 community-staging-i686/PKGBUILD |   33 +++
 community-staging-i686/luminancehdr.changelog   |   48 ++
 community-staging-i686/luminancehdr.install |   12 +
 community-staging-x86_64/PKGBUILD   |   33 +++
 community-staging-x86_64/luminancehdr.changelog |   48 ++
 community-staging-x86_64/luminancehdr.install   |   12 +
 6 files changed, 186 insertions(+)

Copied: luminancehdr/repos/community-staging-i686/PKGBUILD (from rev 89593, 
luminancehdr/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-30 09:10:56 UTC (rev 89594)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dmitry N. Shilov 
+
+pkgname=luminancehdr
+pkgver=2.3.1
+pkgrel=2
+pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
+arch=('i686' 'x86_64')
+url='http://qtpfsgui.sourceforge.net/'
+license=('GPL')
+depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qtwebkit')
+makedepends=('cmake' 'boost' 'gtest')
+optdepends=('hugin: align image stack functionality')
+install=$pkgname.install
+changelog=$pkgname.changelog
+options=('!emptydirs')
+source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/${pkgver}/luminance-hdr-${pkgver}.tar.bz2)
+sha256sums=('7a2a81cd0f2da6b6780bdd47e5f902c9dfaeb8107d763ea63007b6fcdcb4d23b')
+
+build() {
+  cd "${srcdir}"
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: luminancehdr/repos/community-staging-i686/luminancehdr.changelog (from 
rev 89593, luminancehdr/trunk/luminancehdr.changelog)
===
--- community-staging-i686/luminancehdr.changelog   
(rev 0)
+++ community-staging-i686/luminancehdr.changelog   2013-04-30 09:10:56 UTC 
(rev 89594)
@@ -0,0 +1,48 @@
+2013-04-20 Jaroslav Lichtblau 
+   * luminancehdr 2.3.1-1
+
+2012-07-30 Jaroslav Lichtblau 
+   * luminancehdr 2.3.0-2 exiv2-0.23 rebuild
+
+2012-07-07 Jaroslav Lichtblau 
+   * luminancehdr 2.3.0-1
+
+2012-03-18 Jaroslav Lichtblau 
+   * luminancehdr 2.2.1-1
+
+2012-01-27 Eric Belanger  
+   * Rebuild against libpng 1.5 and libtiff 4.0
+
+2011-08-21 Jaroslav Lichtblau 
+   * luminancehdr 2.1.0-1
+
+2011-05-01 Jaroslav Lichtblau 
+   * luminancehdr 2.0.2-1
+
+2010-10-19 Jaroslav Lichtblau 
+   * exiv2 0.20 rebuild
+
+2010-10-17 Jaroslav Lichtblau 
+   * Update to major release 2.0.1
+
+2010-06-27 Jaroslav Lichtblau 
+   * Package renamed to LuminanceHDR
+   * Update to major release 2.0.0
+
+2010-03-09 Andrea Scarpino 
+   * exiv2 0.19 rebuild
+
+2009-11-02 Biru Ionut 
+   * add translation and fix segfault on old i686 procesors
+
+2009-04-29 Jaroslav Lichtblau 
+   * Update to major release v1.9.3
+
+2009-04-04 Jaroslav Lichtblau 
+   * Minor version (v1.9.2-3) update caused by exiv2 upgrade.
+
+2008-11-04 Jaroslav Lichtblau 
+   * Minor version (v1.9.2-2) update caused by openexr upgrade.
+
+2008-09-17 Jaroslav Lichtblau 
+   * Package moved to [community]

Copied: luminancehdr/repos/community-staging-i686/luminancehdr.install (from 
rev 89593, luminancehdr/trunk/luminancehdr.install)
===
--- community-staging-i686/luminancehdr.install (rev 0)
+++ community-staging-i686/luminancehdr.install 2013-04-30 09:10:56 UTC (rev 
89594)
@@ -0,0 +1,12 @@
+post_install() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+  update-desktop-database -q
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_r

  1   2   >