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

2012-06-29 Thread Florian Pritz
Date: Friday, June 29, 2012 @ 02:27:09
  Author: bluewind
Revision: 162726

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

Added:
  sysvinit/repos/core-i686/0001-simplify-writelog.patch
(from rev 162725, sysvinit/repos/testing-i686/0001-simplify-writelog.patch)
  sysvinit/repos/core-i686/0002-remove-ansi-escape-codes-from-log-file.patch
(from rev 162725, 
sysvinit/repos/testing-i686/0002-remove-ansi-escape-codes-from-log-file.patch)
  sysvinit/repos/core-i686/PKGBUILD
(from rev 162725, sysvinit/repos/testing-i686/PKGBUILD)
  sysvinit/repos/core-i686/sysvinit.install
(from rev 162725, sysvinit/repos/testing-i686/sysvinit.install)
  sysvinit/repos/core-x86_64/0001-simplify-writelog.patch
(from rev 162725, 
sysvinit/repos/testing-x86_64/0001-simplify-writelog.patch)
  sysvinit/repos/core-x86_64/0002-remove-ansi-escape-codes-from-log-file.patch
(from rev 162725, 
sysvinit/repos/testing-x86_64/0002-remove-ansi-escape-codes-from-log-file.patch)
  sysvinit/repos/core-x86_64/PKGBUILD
(from rev 162725, sysvinit/repos/testing-x86_64/PKGBUILD)
  sysvinit/repos/core-x86_64/sysvinit.install
(from rev 162725, sysvinit/repos/testing-x86_64/sysvinit.install)
Deleted:
  sysvinit/repos/core-i686/PKGBUILD
  sysvinit/repos/core-i686/sysvinit.install
  sysvinit/repos/core-x86_64/PKGBUILD
  sysvinit/repos/core-x86_64/sysvinit.install
  sysvinit/repos/testing-i686/
  sysvinit/repos/testing-x86_64/

---+
 core-i686/0001-simplify-writelog.patch|  126 ++
 core-i686/0002-remove-ansi-escape-codes-from-log-file.patch   |   80 ++
 core-i686/PKGBUILD|   71 +++--
 core-i686/sysvinit.install|6 
 core-x86_64/0001-simplify-writelog.patch  |  126 ++
 core-x86_64/0002-remove-ansi-escape-codes-from-log-file.patch |   80 ++
 core-x86_64/PKGBUILD  |   71 +++--
 core-x86_64/sysvinit.install  |6 
 8 files changed, 496 insertions(+), 70 deletions(-)

Copied: sysvinit/repos/core-i686/0001-simplify-writelog.patch (from rev 162725, 
sysvinit/repos/testing-i686/0001-simplify-writelog.patch)
===
--- core-i686/0001-simplify-writelog.patch  (rev 0)
+++ core-i686/0001-simplify-writelog.patch  2012-06-29 06:27:09 UTC (rev 
162726)
@@ -0,0 +1,126 @@
+From 5577552eb1344ddd661893564b1e628f8edcf13d Mon Sep 17 00:00:00 2001
+From: Florian Pritz bluew...@xinu.at
+Date: Fri, 15 Jun 2012 16:41:52 +0200
+Subject: [PATCH 1/2] simplify writelog()
+
+All we do is prepend the date and remove \r. We don't handle color
+codes, but the user can just cat the log file in a terminal and it will
+interpret the codes correctly.
+
+Signed-off-by: Florian Pritz bluew...@xinu.at
+---
+ bootlogd.c |   76 +---
+ 1 file changed, 21 insertions(+), 55 deletions(-)
+
+diff --git a/bootlogd.c b/bootlogd.c
+index 570d382..e36e261 100644
+--- a/bootlogd.c
 b/bootlogd.c
+@@ -68,11 +68,6 @@ int didnl = 1;
+ int createlogfile = 0;
+ int syncalot = 0;
+ 
+-struct line {
+-  char buf[256];
+-  int pos;
+-} line;
+-
+ /*
+  *Console devices as listed on the kernel command line and
+  *the mapping to actual devices in /dev
+@@ -351,63 +346,34 @@ int consolename(char *res, int rlen)
+  */
+ void writelog(FILE *fp, unsigned char *ptr, int len)
+ {
+-  time_t  t;
+-  char*s;
+-  chartmp[8];
+-  int olen = len;
+-  int dosync = 0;
+-  int tlen;
+-
+-  while (len  0) {
+-  tmp[0] = 0;
+-  if (didnl) {
++  int dosync = 0;
++  int i;
++  static int first_run = 1;
++
++  for (i = 0; i  len; i++) {
++  int ignore = 0;
++
++  /* prepend date to every line */
++  if (*(ptr-1) == '\n' || first_run) {
++  time_t t;
++  char *s;
+   time(t);
+   s = ctime(t);
+   fprintf(fp, %.24s: , s);
+-  didnl = 0;
++  dosync = 1;
++  first_run = 0;
+   }
+-  switch (*ptr) {
+-  case 27: /* ESC */
+-  strcpy(tmp, ^[);
+-  break;
+-  case '\r':
+-  line.pos = 0;
+-  break;
+-  case 8: /* ^H */
+-  if (line.pos  0) line.pos--;
+-  break;
+-  case '\n':
+-  didnl = 1;
+-  

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

2012-06-29 Thread Pierre Schmitz
Date: Friday, June 29, 2012 @ 03:38:56
  Author: pierre
Revision: 162727

upgpkg: run-parts 4.3.2-1

upstream update

Modified:
  run-parts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 06:27:09 UTC (rev 162726)
+++ PKGBUILD2012-06-29 07:38:56 UTC (rev 162727)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=run-parts
-pkgver=4.3.1
+pkgver=4.3.2
 pkgrel=1
 pkgdesc='run scripts or programs in a directory'
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=('glibc')
 source=(ftp://ftp.archlinux.org/other/run-parts/debianutils_${pkgver}.tar.gz;)
-sha256sums=('03cbb242b8b86f77e0bbe8e391c18aec8f8d08a2a02e8893efd1d5d6e4bc')
+sha256sums=('0062d774306a6acc34d3b855a5c4eeb845653b0cd34dbb5c13aa00b4ecb8af22')
 
 build() {
cd $srcdir/debianutils-$pkgver



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

2012-06-29 Thread Pierre Schmitz
Date: Friday, June 29, 2012 @ 03:39:29
  Author: pierre
Revision: 162728

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

Added:
  run-parts/repos/testing-i686/
  run-parts/repos/testing-i686/PKGBUILD
(from rev 162727, run-parts/trunk/PKGBUILD)
  run-parts/repos/testing-x86_64/
  run-parts/repos/testing-x86_64/PKGBUILD
(from rev 162727, run-parts/trunk/PKGBUILD)

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

Copied: run-parts/repos/testing-i686/PKGBUILD (from rev 162727, 
run-parts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-29 07:39:29 UTC (rev 162728)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=run-parts
+pkgver=4.3.2
+pkgrel=1
+pkgdesc='run scripts or programs in a directory'
+arch=('i686' 'x86_64')
+url='http://packages.qa.debian.org/d/debianutils.html'
+license=('GPL')
+depends=('glibc')
+source=(ftp://ftp.archlinux.org/other/run-parts/debianutils_${pkgver}.tar.gz;)
+sha256sums=('0062d774306a6acc34d3b855a5c4eeb845653b0cd34dbb5c13aa00b4ecb8af22')
+
+build() {
+   cd $srcdir/debianutils-$pkgver
+   ./configure --prefix=/usr
+   make run-parts
+}
+
+package() {
+   cd $srcdir/debianutils-$pkgver
+   install -D -m755 run-parts $pkgdir/usr/bin/run-parts
+   install -D -m644 run-parts.8 $pkgdir/usr/share/man/man8/run-parts.8
+   for l in po4a/*/run-parts.8; do
+   install -D -m644  ${l} 
$pkgdir/usr/share/man/${l:5:2}/man8/run-parts.8
+   done
+}

Copied: run-parts/repos/testing-x86_64/PKGBUILD (from rev 162727, 
run-parts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-06-29 07:39:29 UTC (rev 162728)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=run-parts
+pkgver=4.3.2
+pkgrel=1
+pkgdesc='run scripts or programs in a directory'
+arch=('i686' 'x86_64')
+url='http://packages.qa.debian.org/d/debianutils.html'
+license=('GPL')
+depends=('glibc')
+source=(ftp://ftp.archlinux.org/other/run-parts/debianutils_${pkgver}.tar.gz;)
+sha256sums=('0062d774306a6acc34d3b855a5c4eeb845653b0cd34dbb5c13aa00b4ecb8af22')
+
+build() {
+   cd $srcdir/debianutils-$pkgver
+   ./configure --prefix=/usr
+   make run-parts
+}
+
+package() {
+   cd $srcdir/debianutils-$pkgver
+   install -D -m755 run-parts $pkgdir/usr/bin/run-parts
+   install -D -m644 run-parts.8 $pkgdir/usr/share/man/man8/run-parts.8
+   for l in po4a/*/run-parts.8; do
+   install -D -m644  ${l} 
$pkgdir/usr/share/man/${l:5:2}/man8/run-parts.8
+   done
+}



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

2012-06-29 Thread Pierre Schmitz
Date: Friday, June 29, 2012 @ 03:49:31
  Author: pierre
Revision: 162729

upgpkg: ca-certificates 20120623-1

upstream update

Modified:
  ca-certificates/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 07:39:29 UTC (rev 162728)
+++ PKGBUILD2012-06-29 07:49:31 UTC (rev 162729)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=ca-certificates
-pkgver=20120212
+pkgver=20120623
 pkgrel=1
 pkgdesc='Common CA certificates'
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python2')
 install='ca-certificates.install'
 backup=('etc/ca-certificates.conf')
-sha256sums=('95f3eac93dad4433b5731bc9e106a26e2ccf210acace1927e597477b24187dce')
+sha256sums=('878cd1130ba056fe5f96decde7e5fc1b71d35eb8565a1515744912e100731ee9')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}



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

2012-06-29 Thread Pierre Schmitz
Date: Friday, June 29, 2012 @ 03:49:46
  Author: pierre
Revision: 162730

archrelease: copy trunk to testing-any

Added:
  ca-certificates/repos/testing-any/
  ca-certificates/repos/testing-any/PKGBUILD
(from rev 162729, ca-certificates/trunk/PKGBUILD)
  ca-certificates/repos/testing-any/ca-certificates.install
(from rev 162729, ca-certificates/trunk/ca-certificates.install)

-+
 PKGBUILD|   38 ++
 ca-certificates.install |   26 ++
 2 files changed, 64 insertions(+)

Copied: ca-certificates/repos/testing-any/PKGBUILD (from rev 162729, 
ca-certificates/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-06-29 07:49:46 UTC (rev 162730)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=ca-certificates
+pkgver=20120623
+pkgrel=1
+pkgdesc='Common CA certificates'
+arch=('any')
+url='http://packages.qa.debian.org/c/ca-certificates.html'
+license=('MPL' 'GPL')
+source=(http://ftp.debian.org/debian/pool/main/c/${pkgname}/${pkgname}_${pkgver}.tar.gz;)
+depends=('bash' 'run-parts' 'openssl' 'findutils' 'coreutils' 'sed')
+makedepends=('python2')
+install='ca-certificates.install'
+backup=('etc/ca-certificates.conf')
+sha256sums=('878cd1130ba056fe5f96decde7e5fc1b71d35eb8565a1515744912e100731ee9')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed 's|/usr/bin/python|/usr/bin/python2|g' -i mozilla/certdata2pem.py
+   sed 's|python|python2|g' -i mozilla/Makefile
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   install -d -m755 
${pkgdir}/{etc/ca-certificates/update.d,usr/{sbin,share/ca-certificates},etc/ssl/certs}
+   make install DESTDIR=${pkgdir}
+   install -D -m644 sbin/update-ca-certificates.8 
${pkgdir}/usr/share/man/man8/update-ca-certificates.8
+
+   (
+   echo # Automatically generated by ${pkgname}-${pkgver}-${pkgrel}
+   echo # see update-ca-certificates man page
+   echo # 
+   cd ${pkgdir}/usr/share/ca-certificates
+   find . -name '*.crt' | sort | cut -b3-
+   )  ${pkgdir}/etc/ca-certificates.conf
+}

Copied: ca-certificates/repos/testing-any/ca-certificates.install (from rev 
162729, ca-certificates/trunk/ca-certificates.install)
===
--- testing-any/ca-certificates.install (rev 0)
+++ testing-any/ca-certificates.install 2012-06-29 07:49:46 UTC (rev 162730)
@@ -0,0 +1,26 @@
+export LC_ALL=C
+
+post_install() {
+   usr/sbin/update-ca-certificates --fresh /dev/null 21
+}
+
+post_upgrade() {
+   if [ $(vercmp $2 20110421-1) -lt 0 ]; then
+   echo 'Updating certificates. This might take a while...'
+   fi
+   usr/sbin/update-ca-certificates --fresh /dev/null 21
+}
+
+pre_remove() {
+   # clean up certificates
+   local _backup=$(mktemp)
+   mv etc/ca-certificates.conf ${_backup}
+   echo  etc/ca-certificates.conf
+   usr/sbin/update-ca-certificates --fresh /dev/null 21
+   mv ${_backup} etc/ca-certificates.conf
+}
+
+post_remove() {
+   # remove the cert file if it is empty
+   [[ -s etc/ssl/certs/ca-certificates.crt ]] || rm -f 
etc/ssl/certs/ca-certificates.crt
+}



[arch-commits] Commit in ca-certificates-java/trunk (3 files)

2012-06-29 Thread Pierre Schmitz
Date: Friday, June 29, 2012 @ 04:16:01
  Author: pierre
Revision: 162731

upgpkg: ca-certificates-java 20120608-1

upstream update

Modified:
  ca-certificates-java/trunk/PKGBUILD
  ca-certificates-java/trunk/init-jks-keystore
  ca-certificates-java/trunk/jks-keystore.hook

---+
 PKGBUILD  |   11 ++-
 init-jks-keystore |5 ++---
 jks-keystore.hook |5 ++---
 3 files changed, 10 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 07:49:46 UTC (rev 162730)
+++ PKGBUILD2012-06-29 08:16:01 UTC (rev 162731)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=ca-certificates-java
-pkgver=20120524
+pkgver=20120608
 pkgrel=1
 pkgdesc='Common CA certificates (JKS keystore)'
 arch=('any')
@@ -14,13 +14,14 @@
 backup=('etc/default/cacerts')
 
source=(http://ftp.debian.org/debian/pool/main/c/${pkgname}/${pkgname}_${pkgver}.tar.gz;
 'init-jks-keystore' 'jks-keystore.hook')
-md5sums=('ae043a6c77629546007575d7e152a679'
- '0fd9b0831a8499a4a246e2ecb998c438'
- '84fe0a111e9fe5afadaad8573430a9d1')
+md5sums=('171de7983f5a958faf89ec0dbb43f838'
+ '75eeca3f443f4b5a17ed5ac81875f1e9'
+ '6dd4f915aee0df51260083e00b7fa012')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
javac -target 1.6 -source 1.6 UpdateCertificates.java
+   jar cfe ca-certificates-java.jar UpdateCertificates *.class
 }
 
 package() {
@@ -28,7 +29,7 @@
 
install -d -m755 ${pkgdir}/etc/ssl/certs/java
install -D -m600 debian/default ${pkgdir}/etc/default/cacerts
-   install -D -m755 UpdateCertificates.class 
${pkgdir}/usr/share/ca-certificates-java/UpdateCertificates.class
+   install -D -m644 ca-certificates-java.jar 
${pkgdir}/usr/share/ca-certificates-java/ca-certificates-java.jar
install -D -m755 ${srcdir}/init-jks-keystore 
${pkgdir}/usr/sbin/init-jks-keystore
install -D -m755 ${srcdir}/jks-keystore.hook 
${pkgdir}/etc/ca-certificates/update.d/jks-keystore
 }

Modified: init-jks-keystore
===
--- init-jks-keystore   2012-06-29 07:49:46 UTC (rev 162730)
+++ init-jks-keystore   2012-06-29 08:16:01 UTC (rev 162731)
@@ -3,9 +3,8 @@
 storepass='changeit'
 . /etc/default/cacerts
 
-CLASSPATH=/usr/share/ca-certificates-java
-export CLASSPATH
+JAR=/usr/share/ca-certificates-java/ca-certificates-java.jar
 
 find /etc/ssl/certs -name '*.pem' -printf +%p\n | \
-   java UpdateCertificates -storepass ${storepass} /dev/null
+   java -jar $JAR -storepass $storepass /dev/null
 echo done.

Modified: jks-keystore.hook
===
--- jks-keystore.hook   2012-06-29 07:49:46 UTC (rev 162730)
+++ jks-keystore.hook   2012-06-29 08:16:01 UTC (rev 162731)
@@ -9,8 +9,7 @@
exit 0
 fi
 
-CLASSPATH=/usr/share/ca-certificates-java
-export CLASSPATH
+JAR=/usr/share/ca-certificates-java/ca-certificates-java.jar
 
-java UpdateCertificates -storepass $storepass
+java -jar $JAR -storepass $storepass
 echo done.



[arch-commits] Commit in ca-certificates-java/repos/extra-any (8 files)

2012-06-29 Thread Pierre Schmitz
Date: Friday, June 29, 2012 @ 04:16:24
  Author: pierre
Revision: 162732

archrelease: copy trunk to extra-any

Added:
  ca-certificates-java/repos/extra-any/PKGBUILD
(from rev 162731, ca-certificates-java/trunk/PKGBUILD)
  ca-certificates-java/repos/extra-any/ca-certificates-java.install
(from rev 162731, ca-certificates-java/trunk/ca-certificates-java.install)
  ca-certificates-java/repos/extra-any/init-jks-keystore
(from rev 162731, ca-certificates-java/trunk/init-jks-keystore)
  ca-certificates-java/repos/extra-any/jks-keystore.hook
(from rev 162731, ca-certificates-java/trunk/jks-keystore.hook)
Deleted:
  ca-certificates-java/repos/extra-any/PKGBUILD
  ca-certificates-java/repos/extra-any/ca-certificates-java.install
  ca-certificates-java/repos/extra-any/init-jks-keystore
  ca-certificates-java/repos/extra-any/jks-keystore.hook

--+
 PKGBUILD |   69 -
 ca-certificates-java.install |   36 ++---
 init-jks-keystore|   21 +---
 jks-keystore.hook|   31 --
 4 files changed, 78 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-06-29 08:16:01 UTC (rev 162731)
+++ PKGBUILD2012-06-29 08:16:24 UTC (rev 162732)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=ca-certificates-java
-pkgver=20120524
-pkgrel=1
-pkgdesc='Common CA certificates (JKS keystore)'
-arch=('any')
-url='http://packages.qa.debian.org/c/ca-certificates-java.html'
-license=('GPL')
-depends=('ca-certificates')
-makedepends=('jdk7-openjdk')
-install='ca-certificates-java.install'
-backup=('etc/default/cacerts')
-source=(http://ftp.debian.org/debian/pool/main/c/${pkgname}/${pkgname}_${pkgver}.tar.gz;
-'init-jks-keystore' 'jks-keystore.hook')
-md5sums=('ae043a6c77629546007575d7e152a679'
- '0fd9b0831a8499a4a246e2ecb998c438'
- '84fe0a111e9fe5afadaad8573430a9d1')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   javac -target 1.6 -source 1.6 UpdateCertificates.java
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   install -d -m755 ${pkgdir}/etc/ssl/certs/java
-   install -D -m600 debian/default ${pkgdir}/etc/default/cacerts
-   install -D -m755 UpdateCertificates.class 
${pkgdir}/usr/share/ca-certificates-java/UpdateCertificates.class
-   install -D -m755 ${srcdir}/init-jks-keystore 
${pkgdir}/usr/sbin/init-jks-keystore
-   install -D -m755 ${srcdir}/jks-keystore.hook 
${pkgdir}/etc/ca-certificates/update.d/jks-keystore
-}

Copied: ca-certificates-java/repos/extra-any/PKGBUILD (from rev 162731, 
ca-certificates-java/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-06-29 08:16:24 UTC (rev 162732)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=ca-certificates-java
+pkgver=20120608
+pkgrel=1
+pkgdesc='Common CA certificates (JKS keystore)'
+arch=('any')
+url='http://packages.qa.debian.org/c/ca-certificates-java.html'
+license=('GPL')
+depends=('ca-certificates')
+makedepends=('jdk7-openjdk')
+install='ca-certificates-java.install'
+backup=('etc/default/cacerts')
+source=(http://ftp.debian.org/debian/pool/main/c/${pkgname}/${pkgname}_${pkgver}.tar.gz;
+'init-jks-keystore' 'jks-keystore.hook')
+md5sums=('171de7983f5a958faf89ec0dbb43f838'
+ '75eeca3f443f4b5a17ed5ac81875f1e9'
+ '6dd4f915aee0df51260083e00b7fa012')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   javac -target 1.6 -source 1.6 UpdateCertificates.java
+   jar cfe ca-certificates-java.jar UpdateCertificates *.class
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   install -d -m755 ${pkgdir}/etc/ssl/certs/java
+   install -D -m600 debian/default ${pkgdir}/etc/default/cacerts
+   install -D -m644 ca-certificates-java.jar 
${pkgdir}/usr/share/ca-certificates-java/ca-certificates-java.jar
+   install -D -m755 ${srcdir}/init-jks-keystore 
${pkgdir}/usr/sbin/init-jks-keystore
+   install -D -m755 ${srcdir}/jks-keystore.hook 
${pkgdir}/etc/ca-certificates/update.d/jks-keystore
+}

Deleted: ca-certificates-java.install
===
--- ca-certificates-java.install2012-06-29 08:16:01 UTC (rev 162731)
+++ ca-certificates-java.install2012-06-29 08:16:24 UTC (rev 162732)
@@ -1,18 +0,0 @@
-post_install() {
-   if [ ! -f etc/ssl/certs/java/cacerts ]; then
-   if which java /dev/null 21; then
-   usr/sbin/init-jks-keystore
-   fi
-   fi
-}
-
-post_upgrade() {
-   if [ $(vercmp $2 20110426-2) -lt 0 ]; then
-   mv etc/ssl/certs/java/cacerts etc/ssl/certs/java/cacerts.pacsave
-   fi
-   

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

2012-06-29 Thread Giovanni Scafora
Date: Friday, June 29, 2012 @ 05:39:32
  Author: giovanni
Revision: 162733

upgpkg: whois 5.0.17-1

upstream release

Modified:
  whois/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 08:16:24 UTC (rev 162732)
+++ PKGBUILD2012-06-29 09:39:32 UTC (rev 162733)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=whois
-pkgver=5.0.16
+pkgver=5.0.17
 pkgrel=1
 pkgdesc=The whois client by Marco d'Itri
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libidn')
 makedepends=('perl')
 
source=(http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
-md5sums=('6d689965473c23db6be890c7e5260c67')
+md5sums=('754ff9a089913bf198400eb937e24055')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2012-06-29 Thread Giovanni Scafora
Date: Friday, June 29, 2012 @ 05:39:59
  Author: giovanni
Revision: 162734

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 09:39:32 UTC (rev 162733)
+++ extra-i686/PKGBUILD 2012-06-29 09:39:59 UTC (rev 162734)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=whois
-pkgver=5.0.16
-pkgrel=1
-pkgdesc=The whois client by Marco d'Itri
-arch=('i686' 'x86_64')
-url=http://www.linux.it/~md/software/;
-license=('GPL')
-depends=('libidn')
-makedepends=('perl')
-source=(http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
-md5sums=('6d689965473c23db6be890c7e5260c67')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make prefix=/usr CFLAGS=$CFLAGS HAVE_LIBIDN=1
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make prefix=/usr BASEDIR=${pkgdir} install-whois
-}

Copied: whois/repos/extra-i686/PKGBUILD (from rev 162733, whois/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 09:39:59 UTC (rev 162734)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=whois
+pkgver=5.0.17
+pkgrel=1
+pkgdesc=The whois client by Marco d'Itri
+arch=('i686' 'x86_64')
+url=http://www.linux.it/~md/software/;
+license=('GPL')
+depends=('libidn')
+makedepends=('perl')
+source=(http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
+md5sums=('754ff9a089913bf198400eb937e24055')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make prefix=/usr CFLAGS=$CFLAGS HAVE_LIBIDN=1
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make prefix=/usr BASEDIR=${pkgdir} install-whois
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-29 09:39:32 UTC (rev 162733)
+++ extra-x86_64/PKGBUILD   2012-06-29 09:39:59 UTC (rev 162734)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=whois
-pkgver=5.0.16
-pkgrel=1
-pkgdesc=The whois client by Marco d'Itri
-arch=('i686' 'x86_64')
-url=http://www.linux.it/~md/software/;
-license=('GPL')
-depends=('libidn')
-makedepends=('perl')
-source=(http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
-md5sums=('6d689965473c23db6be890c7e5260c67')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make prefix=/usr CFLAGS=$CFLAGS HAVE_LIBIDN=1
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make prefix=/usr BASEDIR=${pkgdir} install-whois
-}

Copied: whois/repos/extra-x86_64/PKGBUILD (from rev 162733, 
whois/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-29 09:39:59 UTC (rev 162734)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=whois
+pkgver=5.0.17
+pkgrel=1
+pkgdesc=The whois client by Marco d'Itri
+arch=('i686' 'x86_64')
+url=http://www.linux.it/~md/software/;
+license=('GPL')
+depends=('libidn')
+makedepends=('perl')
+source=(http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz;)
+md5sums=('754ff9a089913bf198400eb937e24055')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make prefix=/usr CFLAGS=$CFLAGS HAVE_LIBIDN=1
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make prefix=/usr BASEDIR=${pkgdir} install-whois
+}



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

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 06:54:43
  Author: andyrtr
Revision: 162735

upgpkg: libmythes 1:1.2.3-1

upstream update 1.2.3

Modified:
  libmythes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 09:39:59 UTC (rev 162734)
+++ PKGBUILD2012-06-29 10:54:43 UTC (rev 162735)
@@ -2,7 +2,7 @@
 # Maintainer: AndyRTR andy...@archlinux.org
 
 pkgname=libmythes
-pkgver=1.2.2
+pkgver=1.2.3
 pkgrel=1
 epoch=1
 pkgdesc=a simple thesaurus
@@ -14,7 +14,7 @@
 options=('!libtool')
 provides=('mythes')
 
source=(http://downloads.sourceforge.net/hunspell/${pkgname/lib/}-${pkgver}.tar.gz)
-md5sums=('e1e255dc43dbcbb34cb19e8a0eba90ae')
+md5sums=('46e92b68e31e858512b680b3b61dc4c1')
 
 build() {
   cd ${srcdir}/${pkgname/lib/}-$pkgver



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

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 06:55:24
  Author: andyrtr
Revision: 162736

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 10:54:43 UTC (rev 162735)
+++ extra-i686/PKGBUILD 2012-06-29 10:55:24 UTC (rev 162736)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-pkgname=libmythes
-pkgver=1.2.2
-pkgrel=1
-epoch=1
-pkgdesc=a simple thesaurus
-arch=('i686' 'x86_64')
-url=http://hunspell.sourceforge.net/ 
-license=('custom')
-depends=('glibc' 'perl')
-makedepends=('hunspell')
-options=('!libtool')
-provides=('mythes')
-source=(http://downloads.sourceforge.net/hunspell/${pkgname/lib/}-${pkgver}.tar.gz)
-md5sums=('e1e255dc43dbcbb34cb19e8a0eba90ae')
-
-build() {
-  cd ${srcdir}/${pkgname/lib/}-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-  # run the example program:
-  ./example th_en_US_new.idx th_en_US_new.dat checkme.lst
-  # run the example program with stemming and morphological generation:
-  # e.g. to check mouse, mice, rodents, eats, eaten, ate, eating etc. words
-  ./example morph.idx morph.dat morph.lst morph.aff morph.dic
-}
-
-package() {
-  cd ${srcdir}/${pkgname/lib/}-$pkgver
-  make DESTDIR=$pkgdir install
-  # license
-  install -Dm644 ${srcdir}/${pkgname/lib/}-$pkgver/COPYING 
$pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: libmythes/repos/extra-i686/PKGBUILD (from rev 162735, 
libmythes/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 10:55:24 UTC (rev 162736)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+
+pkgname=libmythes
+pkgver=1.2.3
+pkgrel=1
+epoch=1
+pkgdesc=a simple thesaurus
+arch=('i686' 'x86_64')
+url=http://hunspell.sourceforge.net/ 
+license=('custom')
+depends=('glibc' 'perl')
+makedepends=('hunspell')
+options=('!libtool')
+provides=('mythes')
+source=(http://downloads.sourceforge.net/hunspell/${pkgname/lib/}-${pkgver}.tar.gz)
+md5sums=('46e92b68e31e858512b680b3b61dc4c1')
+
+build() {
+  cd ${srcdir}/${pkgname/lib/}-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+  # run the example program:
+  ./example th_en_US_new.idx th_en_US_new.dat checkme.lst
+  # run the example program with stemming and morphological generation:
+  # e.g. to check mouse, mice, rodents, eats, eaten, ate, eating etc. words
+  ./example morph.idx morph.dat morph.lst morph.aff morph.dic
+}
+
+package() {
+  cd ${srcdir}/${pkgname/lib/}-$pkgver
+  make DESTDIR=$pkgdir install
+  # license
+  install -Dm644 ${srcdir}/${pkgname/lib/}-$pkgver/COPYING 
$pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-29 10:54:43 UTC (rev 162735)
+++ extra-x86_64/PKGBUILD   2012-06-29 10:55:24 UTC (rev 162736)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-pkgname=libmythes
-pkgver=1.2.2
-pkgrel=1
-epoch=1
-pkgdesc=a simple thesaurus
-arch=('i686' 'x86_64')
-url=http://hunspell.sourceforge.net/ 
-license=('custom')
-depends=('glibc' 'perl')
-makedepends=('hunspell')
-options=('!libtool')
-provides=('mythes')
-source=(http://downloads.sourceforge.net/hunspell/${pkgname/lib/}-${pkgver}.tar.gz)
-md5sums=('e1e255dc43dbcbb34cb19e8a0eba90ae')
-
-build() {
-  cd ${srcdir}/${pkgname/lib/}-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-  # run the example program:
-  ./example th_en_US_new.idx th_en_US_new.dat checkme.lst
-  # run the example program with stemming and morphological generation:
-  # e.g. to check mouse, mice, rodents, eats, eaten, ate, eating etc. words
-  ./example morph.idx morph.dat morph.lst morph.aff morph.dic
-}
-
-package() {
-  cd ${srcdir}/${pkgname/lib/}-$pkgver
-  make DESTDIR=$pkgdir install
-  # license
-  install -Dm644 ${srcdir}/${pkgname/lib/}-$pkgver/COPYING 
$pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: libmythes/repos/extra-x86_64/PKGBUILD (from rev 162735, 
libmythes/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-29 10:55:24 UTC (rev 162736)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+
+pkgname=libmythes

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

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 06:59:02
  Author: andyrtr
Revision: 162737

upgpkg: hyphen 2.8.4-1

upstream update 2.8.4

Modified:
  hyphen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 10:55:24 UTC (rev 162736)
+++ PKGBUILD2012-06-29 10:59:02 UTC (rev 162737)
@@ -3,7 +3,7 @@
 
 pkgbase=hyphen
 pkgname=('hyphen' 'hyphen-en')
-pkgver=2.8.3
+pkgver=2.8.4
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://hunspell.sf.net;
@@ -12,7 +12,7 @@
 makedepends=('glibc' 'perl')
 options=('!libtool')
 source=(http://downloads.sourceforge.net/hunspell/${pkgname}-${pkgver}.tar.gz)
-md5sums=('86261f06c097d3e425a2f6d0b0635380')
+md5sums=('a2f6010987e1c601274ab5d63b72c944')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -58,4 +58,4 @@
   ln -sv /usr/share/hyphen/$(basename $file) .
 done
   popd
-}
\ No newline at end of file
+}



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

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 06:59:41
  Author: andyrtr
Revision: 162738

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 10:59:02 UTC (rev 162737)
+++ extra-i686/PKGBUILD 2012-06-29 10:59:41 UTC (rev 162738)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-pkgbase=hyphen
-pkgname=('hyphen' 'hyphen-en')
-pkgver=2.8.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://hunspell.sf.net;
-license=('GPL' 'LGPL' 'MPL')
-groups=()
-makedepends=('glibc' 'perl')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/hunspell/${pkgname}-${pkgver}.tar.gz)
-md5sums=('86261f06c097d3e425a2f6d0b0635380')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  # libtool fix
-#  autoreconf -vfi
-  
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package_hyphen() {
- pkgdesc=library for high quality hyphenation and justification
- depends=('glibc' 'perl')
-
-  cd $srcdir/$pkgbase-$pkgver
-  make DESTDIR=$pkgdir/ install-libLTLIBRARIES
-  make DESTDIR=$pkgdir/ install-binSCRIPTS
-  make DESTDIR=$pkgdir/ install-includeHEADERS
-  
-  # license
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_hyphen-en() {
- pkgdesc=English hyphenation rules
- # arch=('any')
- optdepends=('hyphen: offers hyphenation library functions')
-
-  cd $srcdir/$pkgbase-$pkgver
-  make DESTDIR=$pkgdir/ install-hyphDATA
-
-  pushd ${pkgdir}/usr/share/hyphen/
-   en_US_aliases=en_AG en_AU en_BS en_BW en_BZ en_CA en_DK en_GB en_GH en_HK 
en_IE en_IN en_JM en_NA en_NZ en_PH en_SG en_TT en_ZA en_ZW
-   for lang in $en_US_aliases; do
-ln -s hyph_en_US.dic hyph_$lang.dic
-   done
-  popd
-  
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-for file in $pkgdir/usr/share/hyphen/*; do
-  ln -sv /usr/share/hyphen/$(basename $file) .
-done
-  popd
-}
\ No newline at end of file

Copied: hyphen/repos/extra-i686/PKGBUILD (from rev 162737, 
hyphen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 10:59:41 UTC (rev 162738)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+
+pkgbase=hyphen
+pkgname=('hyphen' 'hyphen-en')
+pkgver=2.8.4
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://hunspell.sf.net;
+license=('GPL' 'LGPL' 'MPL')
+groups=()
+makedepends=('glibc' 'perl')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/hunspell/${pkgname}-${pkgver}.tar.gz)
+md5sums=('a2f6010987e1c601274ab5d63b72c944')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # libtool fix
+#  autoreconf -vfi
+  
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package_hyphen() {
+ pkgdesc=library for high quality hyphenation and justification
+ depends=('glibc' 'perl')
+
+  cd $srcdir/$pkgbase-$pkgver
+  make DESTDIR=$pkgdir/ install-libLTLIBRARIES
+  make DESTDIR=$pkgdir/ install-binSCRIPTS
+  make DESTDIR=$pkgdir/ install-includeHEADERS
+  
+  # license
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_hyphen-en() {
+ pkgdesc=English hyphenation rules
+ # arch=('any')
+ optdepends=('hyphen: offers hyphenation library functions')
+
+  cd $srcdir/$pkgbase-$pkgver
+  make DESTDIR=$pkgdir/ install-hyphDATA
+
+  pushd ${pkgdir}/usr/share/hyphen/
+   en_US_aliases=en_AG en_AU en_BS en_BW en_BZ en_CA en_DK en_GB en_GH en_HK 
en_IE en_IN en_JM en_NA en_NZ en_PH en_SG en_TT en_ZA en_ZW
+   for lang in $en_US_aliases; do
+ln -s hyph_en_US.dic hyph_$lang.dic
+   done
+  popd
+  
+  # the symlinks
+  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+for file in $pkgdir/usr/share/hyphen/*; do
+  ln -sv /usr/share/hyphen/$(basename $file) .
+done
+  popd
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-29 10:59:02 UTC (rev 162737)
+++ extra-x86_64/PKGBUILD   2012-06-29 10:59:41 UTC (rev 162738)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-pkgbase=hyphen
-pkgname=('hyphen' 'hyphen-en')
-pkgver=2.8.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://hunspell.sf.net;
-license=('GPL' 'LGPL' 'MPL')
-groups=()
-makedepends=('glibc' 'perl')
-options=('!libtool')

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

2012-06-29 Thread Andrea Scarpino
Date: Friday, June 29, 2012 @ 07:34:13
  Author: andrea
Revision: 162739

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

Added:
  sip/repos/extra-i686/PKGBUILD
(from rev 162738, sip/repos/testing-i686/PKGBUILD)
  sip/repos/extra-x86_64/PKGBUILD
(from rev 162738, sip/repos/testing-x86_64/PKGBUILD)
Deleted:
  sip/repos/extra-i686/PKGBUILD
  sip/repos/extra-x86_64/PKGBUILD
  sip/repos/testing-i686/
  sip/repos/testing-x86_64/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 10:59:41 UTC (rev 162738)
+++ extra-i686/PKGBUILD 2012-06-29 11:34:13 UTC (rev 162739)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: riai r...@bigfoot.com, Ben b...@benmazer.net
-
-pkgbase=sip
-pkgname=('sip' 'python2-sip')
-pkgver=4.13.2
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.riverbankcomputing.com/software/sip/;
-license=('custom:sip')
-makedepends=('python' 'python2')
-source=(http://www.riverbankcomputing.com/static/Downloads/sip4/${pkgbase}-${pkgver}.tar.gz;)
-md5sums=('5a12ea8e8a09b879ed2b3817e30fbc84')
-
-build() {
-  cd ${srcdir}
-  cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  python configure.py CFLAGS=${CFLAGS} LFLAGS=${LDFLAGS}
-  make
-  
-  ### Python2 version ###
-  cd ${srcdir}/python2-${pkgbase}-${pkgver}
-  python2 configure.py CFLAGS=${CFLAGS} LFLAGS=${LDFLAGS}
-  make
-}
-
-package_sip() {
-  pkgdesc=A tool that makes it easy to create Python bindings for C and C++ 
libraries
-  depends=('python')
-  replaces=('python-sip')
-  provides=('python-sip')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-sip() {
-  pkgdesc=A tool that makes it easy to create Python2 bindings for C and C++ 
libraries
-  depends=('sip' 'python2')
-
-  cd ${srcdir}/python2-${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # Provided by sip
-  rm ${pkgdir}/usr/bin/sip
-}

Copied: sip/repos/extra-i686/PKGBUILD (from rev 162738, 
sip/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 11:34:13 UTC (rev 162739)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: riai r...@bigfoot.com, Ben b...@benmazer.net
+
+pkgbase=sip
+pkgname=('sip' 'python-sip' 'python2-sip')
+pkgver=4.13.3
+pkgrel=2
+arch=('i686' 'x86_64')
+url=http://www.riverbankcomputing.com/software/sip/;
+license=('custom:sip')
+makedepends=('python' 'python2')
+source=(http://www.riverbankcomputing.com/static/Downloads/sip4/${pkgbase}-${pkgver}.tar.gz;)
+md5sums=('76192829cc42ec558db46e4f9e1d8ba9')
+
+build() {
+  cd ${srcdir}
+  cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  python configure.py CFLAGS=${CFLAGS} LFLAGS=${LDFLAGS}
+  make
+  
+  ### Python2 version ###
+  cd ${srcdir}/python2-${pkgbase}-${pkgver}
+  python2 configure.py CFLAGS=${CFLAGS} LFLAGS=${LDFLAGS}
+  make
+}
+
+package_sip() {
+  pkgdesc=A tool that makes it easy to create Python bindings for C and C++ 
libraries
+  depends=('glibc')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install -C sipgen
+
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python-sip() {
+  pkgdesc=Python 3.x SIP bindings for C and C++ libraries
+  depends=('sip' 'python')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install -C siplib
+  
+  install -Dm644 sipconfig.py 
${pkgdir}/usr/lib/python3.2/site-packages/sipconfig.py
+  install -Dm644 sipdistutils.py 
${pkgdir}/usr/lib/python3.2/site-packages/sipdistutils.py
+  
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-sip() {
+  pkgdesc=Python 2.x SIP bindings for C and C++ libraries
+  depends=('sip' 'python2')
+
+  cd ${srcdir}/python2-${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install -C siplib
+  
+  install -Dm644 sipconfig.py 
${pkgdir}/usr/lib/python2.7/site-packages/sipconfig.py
+  install -Dm644 sipdistutils.py 
${pkgdir}/usr/lib/python2.7/site-packages/sipdistutils.py
+  
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- 

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

2012-06-29 Thread Andrea Scarpino
Date: Friday, June 29, 2012 @ 07:34:16
  Author: andrea
Revision: 162740

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

Added:
  pyqt/repos/extra-i686/PKGBUILD
(from rev 162738, pyqt/repos/testing-i686/PKGBUILD)
  pyqt/repos/extra-x86_64/PKGBUILD
(from rev 162738, pyqt/repos/testing-x86_64/PKGBUILD)
Deleted:
  pyqt/repos/extra-i686/PKGBUILD
  pyqt/repos/extra-i686/fix-qthelp-build.patch
  pyqt/repos/extra-x86_64/PKGBUILD
  pyqt/repos/extra-x86_64/fix-qthelp-build.patch
  pyqt/repos/testing-i686/
  pyqt/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |  177 +-
 extra-i686/fix-qthelp-build.patch   |   11 --
 extra-x86_64/PKGBUILD   |  177 +-
 extra-x86_64/fix-qthelp-build.patch |   11 --
 4 files changed, 186 insertions(+), 190 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 11:34:13 UTC (rev 162739)
+++ extra-i686/PKGBUILD 2012-06-29 11:34:16 UTC (rev 162740)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: riai r...@bigfoot.com Ben b...@benmazer.net
-
-pkgbase=pyqt
-pkgname=('pyqt' 'python2-pyqt')
-pkgver=4.9.1
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://riverbankcomputing.co.uk/software/pyqt/intro;
-license=('GPL')
-makedepends=('qt' 'python-sip' 'python-dbus' 'python2-sip' 'phonon'
- 'python-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=(http://riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-${pkgver}.tar.gz;
-'fix-qthelp-build.patch')
-md5sums=('7f495dc49f71e3bfb64bf942e0d8bb3c'
- '6acfe0a5a00779f946c29d5fac647ce1')
-
-build() {
-  # Build QtHelp (FS#27665)
-  cd ${srcdir}/PyQt-x11-gpl-${pkgver}
-  patch -p1 -i ${srcdir}/fix-qthelp-build.patch
-
-  cd ${srcdir}
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd ${srcdir}/PyQt-x11-gpl-${pkgver}
-  python configure.py \
---confirm-license \
---qsci-api
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ${srcdir}/Py2Qt-x11-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt(){
-  pkgdesc=A set of Python 3.x bindings for the Qt toolkit
-  depends=('qtwebkit' 'python-sip' 'python-dbus')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python-qt')
-  provides=('python-qt')
-
-  cd ${srcdir}/PyQt-x11-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR=${pkgdir} INSTALL_ROOT=${pkgdir} install
-}
-
-package_python2-pyqt(){
-  pkgdesc=A set of Python 2.x bindings for the Qt toolkit
-  depends=('pyqt' 'python2-sip' 'python2-dbus')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-qt')
-  provides=('python2-qt')
-  options=('!emptydirs')
-
-  cd ${srcdir}/Py2Qt-x11-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR=${pkgdir} INSTALL_ROOT=${pkgdir} install
-
-  # Provided by pyqt
-  rm ${pkgdir}/usr/bin/{pylupdate4,pyrcc4,pyuic4}
-  rm ${pkgdir}/usr/lib/qt/plugins/designer/libpythonplugin.so
-  rm ${pkgdir}/usr/share/qt/qsci/api/python/PyQt4.api
-}

Copied: pyqt/repos/extra-i686/PKGBUILD (from rev 162738, 
pyqt/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 11:34:16 UTC (rev 162740)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: riai r...@bigfoot.com Ben b...@benmazer.net
+
+pkgbase=pyqt
+pkgname=('pyqt-common' 'pyqt' 'python2-pyqt')
+pkgver=4.9.4
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://riverbankcomputing.co.uk/software/pyqt/intro;
+license=('GPL')
+makedepends=('qt' 'python-sip' 'python-dbus' 'python2-sip' 'phonon'
+ 'python-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
+ 
source=(http://riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-${pkgver}.tar.gz;)

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

2012-06-29 Thread Andrea Scarpino
Date: Friday, June 29, 2012 @ 07:34:22
  Author: andrea
Revision: 162741

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

Added:
  qscintilla/repos/extra-i686/PKGBUILD
(from rev 162738, qscintilla/repos/testing-i686/PKGBUILD)
  qscintilla/repos/extra-i686/configure.py-objdir-support.diff
(from rev 162738, 
qscintilla/repos/testing-i686/configure.py-objdir-support.diff)
  qscintilla/repos/extra-x86_64/PKGBUILD
(from rev 162738, qscintilla/repos/testing-x86_64/PKGBUILD)
  qscintilla/repos/extra-x86_64/configure.py-objdir-support.diff
(from rev 162738, 
qscintilla/repos/testing-x86_64/configure.py-objdir-support.diff)
Deleted:
  qscintilla/repos/extra-i686/PKGBUILD
  qscintilla/repos/extra-i686/configure.py-objdir-support.diff
  qscintilla/repos/extra-x86_64/PKGBUILD
  qscintilla/repos/extra-x86_64/configure.py-objdir-support.diff
  qscintilla/repos/testing-i686/
  qscintilla/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |  149 +---
 extra-i686/configure.py-objdir-support.diff   |   78 ++--
 extra-x86_64/PKGBUILD |  149 +---
 extra-x86_64/configure.py-objdir-support.diff |   78 ++--
 4 files changed, 240 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 11:34:16 UTC (rev 162740)
+++ extra-i686/PKGBUILD 2012-06-29 11:34:22 UTC (rev 162741)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
-
-pkgbase=qscintilla
-pkgname=('qscintilla' 'python-qscintilla' 'python2-qscintilla')
-pkgver=2.6.1
-pkgrel=1
-license=('GPL')
-arch=('i686' 'x86_64')
-url=http://www.riverbankcomputing.co.uk/software/qscintilla/intro;
-makedepends=('python2-pyqt' 'chrpath')
-source=(http://riverbankcomputing.com/static/Downloads/QScintilla2/QScintilla-gpl-${pkgver}.tar.gz;
-'configure.py-objdir-support.diff')
-md5sums=('39a1d0567a20b416177eb1a8afe225a7'
- '8cf9c06252e2f11ab00e62848e322fd3')
-
-build() {
-cd ${srcdir}/QScintilla-gpl-${pkgver} 
-patch -Np1 -i ${srcdir}/configure.py-objdir-support.diff
-
-cd Qt4
-qmake qscintilla.pro
-make
-
-cd ../designer-Qt4
-qmake designer.pro INCLUDEPATH+=../Qt4 QMAKE_LIBDIR+=../Qt4
-make
-
-cd ../
-cp -rf Python Python2
-cd Python
-python configure.py -n ../Qt4/ -o ../Qt4 -c -p 4
-make
-
-cd ../Python2
-python2 configure.py -n ../Qt4/ -o ../Qt4 -c -p 4
-make
-}
-
-package_qscintilla() {
-pkgdesc=A port to Qt4 of Neil Hodgson's Scintilla C++ editor class
-depends=('qt')
-
-cd ${srcdir}/QScintilla-gpl-${pkgver}/Qt4
-make DESTDIR=${pkgdir} INSTALL_ROOT=${pkgdir} install
-
-cd ${srcdir}/QScintilla-gpl-${pkgver}/designer-Qt4
-make DESTDIR=${pkgdir} INSTALL_ROOT=${pkgdir} install
-}
-
-package_python-qscintilla() {
-pkgdesc=Python 3 bindings for QScintilla2
-depends=('pyqt' 'qscintilla')
-
-cd ${srcdir}/QScintilla-gpl-${pkgver}/Python
-install -Dm755 Qsci.so \
-  ${pkgdir}/usr/lib/python3.2/site-packages/PyQt4/Qsci.so
-}
-
-package_python2-qscintilla() {
-pkgdesc=Python 2 bindings for QScintilla2
-depends=('python-qscintilla' 'python2-pyqt')
-
-cd ${srcdir}/QScintilla-gpl-${pkgver}/Python2
-make DESTDIR=${pkgdir} INSTALL_ROOT=${pkgdir} install
-}

Copied: qscintilla/repos/extra-i686/PKGBUILD (from rev 162738, 
qscintilla/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 11:34:22 UTC (rev 162741)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
+
+pkgbase=qscintilla
+pkgname=('qscintilla' 'python-qscintilla' 'python2-qscintilla'
+ 'python-qscintilla-common')
+pkgver=2.6.2
+pkgrel=1
+license=('GPL')
+arch=('i686' 'x86_64')
+url=http://www.riverbankcomputing.co.uk/software/qscintilla/intro;
+makedepends=('python2-pyqt' 'pyqt' 'chrpath')
+source=(http://riverbankcomputing.com/static/Downloads/QScintilla2/QScintilla-gpl-${pkgver}.tar.gz;
+'configure.py-objdir-support.diff')
+md5sums=('6e6641b6f3863c01cc28c2d7bd2495f9'
+ '8cf9c06252e2f11ab00e62848e322fd3')
+
+build() {
+cd ${srcdir}/QScintilla-gpl-${pkgver} 
+patch -Np1 -i ${srcdir}/configure.py-objdir-support.diff
+
+cd Qt4Qt5
+qmake qscintilla.pro
+make
+
+cd ../designer-Qt4
+qmake designer.pro INCLUDEPATH+=../Qt4Qt5 QMAKE_LIBDIR+=../Qt4Qt5
+make
+
+cd ../
+cp -rf Python Python2
+cd Python
+python configure.py -n ../Qt4Qt5/ -o ../Qt4Qt5/ -c -p 4
+make
+
+cd ../Python2
+python2 

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

2012-06-29 Thread Andrea Scarpino
Date: Friday, June 29, 2012 @ 07:34:28
  Author: andrea
Revision: 162742

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

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

+
 extra-i686/PKGBUILD|  172 +--
 extra-i686/hplip.install   |   36 -
 extra-x86_64/PKGBUILD  |  172 +--
 extra-x86_64/hplip.install |   36 -
 4 files changed, 208 insertions(+), 208 deletions(-)

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

Copied: hplip/repos/extra-i686/PKGBUILD (from rev 162738, 
hplip/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 11:34:28 UTC (rev 162742)
@@ -0,0 

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

2012-06-29 Thread Andrea Scarpino
Date: Friday, June 29, 2012 @ 07:34:32
  Author: andrea
Revision: 162743

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

Added:
  kdebindings-python/repos/extra-i686/PKGBUILD
(from rev 162738, kdebindings-python/repos/testing-i686/PKGBUILD)
  kdebindings-python/repos/extra-x86_64/PKGBUILD
(from rev 162738, kdebindings-python/repos/testing-x86_64/PKGBUILD)
Deleted:
  kdebindings-python/repos/extra-i686/PKGBUILD
  kdebindings-python/repos/extra-x86_64/PKGBUILD
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-x86_64/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 11:34:28 UTC (rev 162742)
+++ extra-i686/PKGBUILD 2012-06-29 11:34:32 UTC (rev 162743)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.8.4
-pkgrel=1
-url='http://kde.org/'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
-source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('e629d7a1d7d1aa1d1dd24769dc5412a60b6ac256')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/extra-i686/PKGBUILD (from rev 162738, 
kdebindings-python/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 11:34:32 UTC (rev 162743)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.4
+pkgrel=2
+url='http://kde.org/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python-sip' 'python2-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('e629d7a1d7d1aa1d1dd24769dc5412a60b6ac256')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv 

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

2012-06-29 Thread Thomas Bächler
Date: Friday, June 29, 2012 @ 07:46:09
  Author: thomas
Revision: 162744

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

Added:
  cryptsetup/repos/core-i686/PKGBUILD
(from rev 162743, cryptsetup/repos/testing-i686/PKGBUILD)
  cryptsetup/repos/core-i686/encrypt_hook
(from rev 162743, cryptsetup/repos/testing-i686/encrypt_hook)
  cryptsetup/repos/core-i686/encrypt_install
(from rev 162743, cryptsetup/repos/testing-i686/encrypt_install)
  cryptsetup/repos/core-x86_64/PKGBUILD
(from rev 162743, cryptsetup/repos/testing-x86_64/PKGBUILD)
  cryptsetup/repos/core-x86_64/encrypt_hook
(from rev 162743, cryptsetup/repos/testing-x86_64/encrypt_hook)
  cryptsetup/repos/core-x86_64/encrypt_install
(from rev 162743, cryptsetup/repos/testing-x86_64/encrypt_install)
Deleted:
  cryptsetup/repos/core-i686/PKGBUILD
  cryptsetup/repos/core-i686/encrypt_hook
  cryptsetup/repos/core-i686/encrypt_install
  cryptsetup/repos/core-x86_64/PKGBUILD
  cryptsetup/repos/core-x86_64/encrypt_hook
  cryptsetup/repos/core-x86_64/encrypt_install
  cryptsetup/repos/testing-i686/
  cryptsetup/repos/testing-x86_64/

-+
 core-i686/PKGBUILD  |   70 +-
 core-i686/encrypt_hook  |  276 +-
 core-i686/encrypt_install   |   88 ++---
 core-x86_64/PKGBUILD|   70 +-
 core-x86_64/encrypt_hook|  276 +-
 core-x86_64/encrypt_install |   88 ++---
 6 files changed, 434 insertions(+), 434 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-06-29 11:34:32 UTC (rev 162743)
+++ core-i686/PKGBUILD  2012-06-29 11:46:09 UTC (rev 162744)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-pkgname=cryptsetup
-pkgver=1.4.2
-pkgrel=2
-pkgdesc=Userspace setup tool for transparent encryption of block devices 
using dm-crypt
-arch=(i686 x86_64)
-license=('GPL')
-url=http://code.google.com/p/cryptsetup/;
-groups=('base')
-depends=('device-mapper=2.02.85-2' 'libgcrypt' 'popt')
-conflicts=('mkinitcpio0.7')
-options=('!libtool' '!emptydirs')
-source=(http://cryptsetup.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
-http://cryptsetup.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2.asc
-encrypt_hook
-encrypt_install)
-sha256sums=('1fe80d7b19d24b3f65d2e446decfed859e2c4d17fdf7c19289d82dc7cd60dfe7'
-'4e6dbece8d1baad861479aca70d0cf30887420da9b5eab45d65d064c656893ed'
-'e0cbcabb81233b4d465833dca0faf1e762dc3cb6611597a25fe24e5d7209f316'
-'cfe465bdad3d958bb2332a05e04f2e1e884422a5714dfd1a0a3b9b74bf7dc6ae')
-
-build() {
-  cd ${srcdir}/$pkgname-${pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-${pkgver}
-  make DESTDIR=${pkgdir} install
-  # install hook
-  install -D -m644 ${srcdir}/encrypt_hook 
${pkgdir}/usr/lib/initcpio/hooks/encrypt
-  install -D -m644 ${srcdir}/encrypt_install 
${pkgdir}/usr/lib/initcpio/install/encrypt
-}

Copied: cryptsetup/repos/core-i686/PKGBUILD (from rev 162743, 
cryptsetup/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-06-29 11:46:09 UTC (rev 162744)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+pkgname=cryptsetup
+pkgver=1.4.3
+pkgrel=1
+pkgdesc=Userspace setup tool for transparent encryption of block devices 
using dm-crypt
+arch=(i686 x86_64)
+license=('GPL')
+url=http://code.google.com/p/cryptsetup/;
+groups=('base')
+depends=('device-mapper=2.02.85-2' 'libgcrypt' 'popt' 'util-linux')
+conflicts=('mkinitcpio0.7')
+options=('!libtool' '!emptydirs')
+source=(http://cryptsetup.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
+http://cryptsetup.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2.asc
+encrypt_hook
+encrypt_install)
+sha256sums=('d5ff2c00f6f791d77fa5636a02ae43ddbb46c6c793bdeafdec5e38fd15f99d0a'
+'ad610fe77d78bf7e91b7473f9d9c84de46ed1cc21f006fe3ae4791b0b6f42f3a'
+'e0cbcabb81233b4d465833dca0faf1e762dc3cb6611597a25fe24e5d7209f316'
+'cfe465bdad3d958bb2332a05e04f2e1e884422a5714dfd1a0a3b9b74bf7dc6ae')
+
+build() {
+  cd ${srcdir}/$pkgname-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # install hook
+  install -D -m644 ${srcdir}/encrypt_hook 
${pkgdir}/usr/lib/initcpio/hooks/encrypt
+  install -D -m644 ${srcdir}/encrypt_install 
${pkgdir}/usr/lib/initcpio/install/encrypt
+}

Deleted: core-i686/encrypt_hook
===
--- core-i686/encrypt_hook  2012-06-29 11:34:32 UTC (rev 162743)
+++ core-i686/encrypt_hook  2012-06-29 

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

2012-06-29 Thread Thomas Bächler
Date: Friday, June 29, 2012 @ 07:46:12
  Author: thomas
Revision: 162745

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

Added:
  libnl/repos/core-i686/PKGBUILD
(from rev 162743, libnl/repos/testing-i686/PKGBUILD)
  libnl/repos/core-x86_64/PKGBUILD
(from rev 162743, libnl/repos/testing-x86_64/PKGBUILD)
Deleted:
  libnl/repos/core-i686/PKGBUILD
  libnl/repos/core-x86_64/PKGBUILD
  libnl/repos/testing-i686/
  libnl/repos/testing-x86_64/

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

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-06-29 11:46:09 UTC (rev 162744)
+++ core-i686/PKGBUILD  2012-06-29 11:46:12 UTC (rev 162745)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=libnl
-pkgver=3.2.9
-pkgrel=1
-pkgdesc=Library for applications dealing with netlink sockets
-arch=(i686 x86_64)
-url=http://www.infradead.org/~tgr/libnl/;
-license=(GPL)
-depends=(glibc)
-backup=(etc/libnl/classid etc/libnl/pktloc)
-options=(!libtool)
-source=($url/files/$pkgname-$pkgver.tar.gz)
-sha256sums=('9f23e9460bd9bb7fbe09af5eb281e4a43a26fa245ea864ed5e28fe4e8118af63')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libnl/repos/core-i686/PKGBUILD (from rev 162743, 
libnl/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-06-29 11:46:12 UTC (rev 162745)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=libnl
+pkgver=3.2.11
+pkgrel=1
+pkgdesc=Library for applications dealing with netlink sockets
+arch=(i686 x86_64)
+url=http://www.infradead.org/~tgr/libnl/;
+license=(GPL)
+depends=(glibc)
+backup=(etc/libnl/classid etc/libnl/pktloc)
+options=(!libtool)
+source=($url/files/$pkgname-$pkgver.tar.gz)
+sha256sums=('9750409c0fec8b27966a65d94c040647ee01753e0947b0d59577b815ee0e710d')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-06-29 11:46:09 UTC (rev 162744)
+++ core-x86_64/PKGBUILD2012-06-29 11:46:12 UTC (rev 162745)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=libnl
-pkgver=3.2.9
-pkgrel=1
-pkgdesc=Library for applications dealing with netlink sockets
-arch=(i686 x86_64)
-url=http://www.infradead.org/~tgr/libnl/;
-license=(GPL)
-depends=(glibc)
-backup=(etc/libnl/classid etc/libnl/pktloc)
-options=(!libtool)
-source=($url/files/$pkgname-$pkgver.tar.gz)
-sha256sums=('9f23e9460bd9bb7fbe09af5eb281e4a43a26fa245ea864ed5e28fe4e8118af63')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libnl/repos/core-x86_64/PKGBUILD (from rev 162743, 
libnl/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-06-29 11:46:12 UTC (rev 162745)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=libnl
+pkgver=3.2.11
+pkgrel=1
+pkgdesc=Library for applications dealing with netlink sockets
+arch=(i686 x86_64)
+url=http://www.infradead.org/~tgr/libnl/;
+license=(GPL)
+depends=(glibc)
+backup=(etc/libnl/classid etc/libnl/pktloc)
+options=(!libtool)
+source=($url/files/$pkgname-$pkgver.tar.gz)
+sha256sums=('9750409c0fec8b27966a65d94c040647ee01753e0947b0d59577b815ee0e710d')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2012-06-29 Thread Thomas Bächler
Date: Friday, June 29, 2012 @ 07:46:18
  Author: thomas
Revision: 162746

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

Added:
  libpcap/repos/core-i686/PKGBUILD
(from rev 162743, libpcap/repos/testing-i686/PKGBUILD)
  libpcap/repos/core-i686/libnl32.patch
(from rev 162743, libpcap/repos/testing-i686/libnl32.patch)
  libpcap/repos/core-x86_64/PKGBUILD
(from rev 162743, libpcap/repos/testing-x86_64/PKGBUILD)
  libpcap/repos/core-x86_64/libnl32.patch
(from rev 162743, libpcap/repos/testing-x86_64/libnl32.patch)
Deleted:
  libpcap/repos/core-i686/PKGBUILD
  libpcap/repos/core-i686/libnl32.patch
  libpcap/repos/core-x86_64/PKGBUILD
  libpcap/repos/core-x86_64/libnl32.patch
  libpcap/repos/testing-i686/
  libpcap/repos/testing-x86_64/

---+
 core-i686/PKGBUILD|   82 ++--
 core-i686/libnl32.patch   |   38 ++--
 core-x86_64/PKGBUILD  |   82 ++--
 core-x86_64/libnl32.patch |   38 ++--
 4 files changed, 120 insertions(+), 120 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-06-29 11:46:12 UTC (rev 162745)
+++ core-i686/PKGBUILD  2012-06-29 11:46:18 UTC (rev 162746)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=libpcap
-pkgver=1.2.1
-pkgrel=2
-pkgdesc=A system-independent interface for user-level packet capture
-arch=('i686' 'x86_64')
-url=http://www.tcpdump.org/;
-license=('BSD')
-depends=('glibc' 'libnl' 'sh')
-makedepends=('flex')
-source=(http://www.tcpdump.org/release/libpcap-${pkgver}.tar.gz{,.sig}
-libnl32.patch)
-sha256sums=('a135a6ef7e539729a57c7ed345bdb9b64159e13404174006a7972eb33f00debd'
-'dc82ca7e7f737885969af0f78ad0f0eef8206062087e0261ca2799ef26d569b4'
-'7d0cbd49e55405cb2b55852223cd4965526e518cfb4f547ab9cc9b95b8f9c9e6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/libnl32.patch
-  autoreconf -f -i
-  ./configure --prefix=/usr --enable-ipv6 --with-libnl
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  install -d -m755 ${pkgdir}/usr/bin
-  make DESTDIR=${pkgdir} install
-  # remove static library
-  rm -rf ${pkgdir}/usr/lib/libpcap.a
-  
-  # backwards compatibility, programs often look for net/bpf.h
-  mkdir -p ${pkgdir}/usr/include/net
-  cd ${pkgdir}/usr/include/net
-  ln -s ../pcap-bpf.h bpf.h
-
-  #install the license
-  install -D -m644 ${srcdir}/$pkgname-$pkgver/LICENSE 
${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libpcap/repos/core-i686/PKGBUILD (from rev 162743, 
libpcap/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-06-29 11:46:18 UTC (rev 162746)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=libpcap
+pkgver=1.3.0
+pkgrel=1
+pkgdesc=A system-independent interface for user-level packet capture
+arch=('i686' 'x86_64')
+url=http://www.tcpdump.org/;
+license=('BSD')
+depends=('glibc' 'libnl' 'sh' 'libusbx')
+makedepends=('flex')
+source=(http://www.tcpdump.org/release/libpcap-${pkgver}.tar.gz{,.sig}
+libnl32.patch)
+sha256sums=('41cbd9ed68383afd9f1fda279cb78427d36879d9e34ee707e31a16a1afd872b9'
+'8004a6655fb98acd89f3dea7ce95f182f4874298ce692f5b8f4a7dae65d7993f'
+'7d0cbd49e55405cb2b55852223cd4965526e518cfb4f547ab9cc9b95b8f9c9e6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/libnl32.patch
+  autoreconf -f -i
+  ./configure --prefix=/usr --enable-ipv6 --with-libnl
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  install -d -m755 ${pkgdir}/usr/bin
+  make DESTDIR=${pkgdir} install
+  # remove static library
+  rm -rf ${pkgdir}/usr/lib/libpcap.a
+  
+  # backwards compatibility, programs often look for net/bpf.h
+  mkdir -p ${pkgdir}/usr/include/net
+  cd ${pkgdir}/usr/include/net
+  ln -s ../pcap-bpf.h bpf.h
+
+  #install the license
+  install -D -m644 ${srcdir}/$pkgname-$pkgver/LICENSE 
${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: core-i686/libnl32.patch
===
--- core-i686/libnl32.patch 2012-06-29 11:46:12 UTC (rev 162745)
+++ core-i686/libnl32.patch 2012-06-29 11:46:18 UTC (rev 162746)
@@ -1,19 +0,0 @@
-diff -u -r libpcap-1.2.1/configure.in libpcap-1.2.1-libnl32/configure.in
 libpcap-1.2.1/configure.in 2012-01-02 01:47:37.0 +0100
-+++ libpcap-1.2.1-libnl32/configure.in 2012-02-09 19:29:29.405603749 +0100
-@@ -433,12 +433,13 @@
-   #
-   # Try libnl 2.x first.
-   #
--  AC_CHECK_LIB(nl, nl_socket_alloc,
-+  AC_CHECK_LIB(nl-3, nl_socket_alloc,
-   [
-   #
-   

[arch-commits] Commit in libreoffice/trunk (PKGBUILD PKGBUILD.36)

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 07:58:45
  Author: andyrtr
Revision: 162747

fix pkgdesc of base pkg; FS#30160

Modified:
  libreoffice/trunk/PKGBUILD
  libreoffice/trunk/PKGBUILD.36

-+
 PKGBUILD|2 +-
 PKGBUILD.36 |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 11:46:18 UTC (rev 162746)
+++ PKGBUILD2012-06-29 11:58:45 UTC (rev 162747)
@@ -350,7 +350,7 @@
 }
 
 package_libreoffice-base() {
- pkgdesc=GUI Spreadsheet Applicationdatabase front-end for LibreOffice. 
Allows creation and management of databases through a GUI.
+ pkgdesc=GUI database front-end for LibreOffice. Allows creation and 
management of databases through a GUI.
  install=libreoffice-base.install
  depends=('libreoffice-common' 'hsqldb-java')
  optdepends=('libreoffice-postgresql-connector')

Modified: PKGBUILD.36
===
--- PKGBUILD.36 2012-06-29 11:46:18 UTC (rev 162746)
+++ PKGBUILD.36 2012-06-29 11:58:45 UTC (rev 162747)
@@ -345,7 +345,7 @@
 }
 
 package_libreoffice-base() {
- pkgdesc=GUI Spreadsheet Applicationdatabase front-end for LibreOffice. 
Allows creation and management of databases through a GUI.
+ pkgdesc=GUI database front-end for LibreOffice. Allows creation and 
management of databases through a GUI.
  install=libreoffice-base.install
  depends=('libreoffice-common' 'hsqldb-java')
  optdepends=('libreoffice-postgresql-connector')



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

2012-06-29 Thread Pierre Schmitz
Date: Friday, June 29, 2012 @ 08:14:37
  Author: pierre
Revision: 162748

Rebuild to pick up gzip in /usr/bin

fixes FS#30479

Modified:
  lynx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 11:58:45 UTC (rev 162747)
+++ PKGBUILD2012-06-29 12:14:37 UTC (rev 162748)
@@ -6,10 +6,10 @@
 pkgname=lynx
 pkgver=2.8.7
 _pkgver=2-8-7
-pkgrel=5
+pkgrel=6
 pkgdesc=A text browser for the World Wide Web
 url=http://lynx.isc.org/;
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=('GPL')
 depends=('ncurses' 'openssl')
 backup=('etc/lynx.cfg')



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

2012-06-29 Thread Pierre Schmitz
Date: Friday, June 29, 2012 @ 08:15:20
  Author: pierre
Revision: 162749

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 12:14:37 UTC (rev 162748)
+++ extra-i686/PKGBUILD 2012-06-29 12:15:20 UTC (rev 162749)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=lynx
-pkgver=2.8.7
-_pkgver=2-8-7
-pkgrel=5
-pkgdesc=A text browser for the World Wide Web
-url=http://lynx.isc.org/;
-arch=(i686 x86_64)
-license=('GPL')
-depends=('ncurses' 'openssl')
-backup=('etc/lynx.cfg')
-source=(http://lynx.isc.org/release/${pkgname}${pkgver}.tar.gz;)
-md5sums=('e36d70f3f09b2d502055ca67f09e363c')
-
-build() {
-  cd ${srcdir}/${pkgname}${_pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---with-ssl \
---enable-nls \
---enable-ipv6 \
---mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}${_pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # FS#20404 - points to local help
-  sed -i -e 
s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|
 ${pkgdir}/etc/lynx.cfg
-
-  install -d ${pkgdir}/usr/share/doc/lynx
-  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
-}

Copied: lynx/repos/extra-i686/PKGBUILD (from rev 162748, lynx/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 12:15:20 UTC (rev 162749)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=lynx
+pkgver=2.8.7
+_pkgver=2-8-7
+pkgrel=6
+pkgdesc=A text browser for the World Wide Web
+url=http://lynx.isc.org/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('ncurses' 'openssl')
+backup=('etc/lynx.cfg')
+source=(http://lynx.isc.org/release/${pkgname}${pkgver}.tar.gz;)
+md5sums=('e36d70f3f09b2d502055ca67f09e363c')
+
+build() {
+  cd ${srcdir}/${pkgname}${_pkgver}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--with-ssl \
+--enable-nls \
+--enable-ipv6 \
+--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}${_pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # FS#20404 - points to local help
+  sed -i -e 
s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|
 ${pkgdir}/etc/lynx.cfg
+
+  install -d ${pkgdir}/usr/share/doc/lynx
+  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-29 12:14:37 UTC (rev 162748)
+++ extra-x86_64/PKGBUILD   2012-06-29 12:15:20 UTC (rev 162749)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=lynx
-pkgver=2.8.7
-_pkgver=2-8-7
-pkgrel=5
-pkgdesc=A text browser for the World Wide Web
-url=http://lynx.isc.org/;
-arch=(i686 x86_64)
-license=('GPL')
-depends=('ncurses' 'openssl')
-backup=('etc/lynx.cfg')
-source=(http://lynx.isc.org/release/${pkgname}${pkgver}.tar.gz;)
-md5sums=('e36d70f3f09b2d502055ca67f09e363c')
-
-build() {
-  cd ${srcdir}/${pkgname}${_pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---with-ssl \
---enable-nls \
---enable-ipv6 \
---mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}${_pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # FS#20404 - points to local help
-  sed -i -e 
s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|
 ${pkgdir}/etc/lynx.cfg
-
-  install -d ${pkgdir}/usr/share/doc/lynx
-  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
-}

Copied: lynx/repos/extra-x86_64/PKGBUILD (from rev 162748, lynx/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-29 12:15:20 UTC (rev 162749)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=lynx
+pkgver=2.8.7
+_pkgver=2-8-7
+pkgrel=6
+pkgdesc=A text browser for the World Wide Web
+url=http://lynx.isc.org/;
+arch=('i686' 

[arch-commits] Commit in systemd/repos (42 files)

2012-06-29 Thread Tom Gundersen
Date: Friday, June 29, 2012 @ 08:48:48
  Author: tomegun
Revision: 162750

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

Added:
  systemd/repos/core-i686/0001-Reinstate-TIMEOUT-handling.patch
(from rev 162749, 
systemd/repos/testing-i686/0001-Reinstate-TIMEOUT-handling.patch)
  systemd/repos/core-i686/0001-udev-systemd-udev-settle.service-fix-After.patch
(from rev 162749, 
systemd/repos/testing-i686/0001-udev-systemd-udev-settle.service-fix-After.patch)
  systemd/repos/core-i686/0001-vconsole-setup-enable-utf-8-mode-explicitly.patch
(from rev 162749, 
systemd/repos/testing-i686/0001-vconsole-setup-enable-utf-8-mode-explicitly.patch)
  systemd/repos/core-i686/PKGBUILD
(from rev 162749, systemd/repos/testing-i686/PKGBUILD)
  systemd/repos/core-i686/initcpio-hook-udev
(from rev 162749, systemd/repos/testing-i686/initcpio-hook-udev)
  systemd/repos/core-i686/initcpio-install-timestamp
(from rev 162749, systemd/repos/testing-i686/initcpio-install-timestamp)
  systemd/repos/core-i686/initcpio-install-udev
(from rev 162749, systemd/repos/testing-i686/initcpio-install-udev)
  systemd/repos/core-i686/locale.sh
(from rev 162749, systemd/repos/testing-i686/locale.sh)
  systemd/repos/core-i686/systemd-tools.install
(from rev 162749, systemd/repos/testing-i686/systemd-tools.install)
  systemd/repos/core-i686/systemd.install
(from rev 162749, systemd/repos/testing-i686/systemd.install)
  systemd/repos/core-x86_64/0001-Reinstate-TIMEOUT-handling.patch
(from rev 162749, 
systemd/repos/testing-x86_64/0001-Reinstate-TIMEOUT-handling.patch)
  
systemd/repos/core-x86_64/0001-udev-systemd-udev-settle.service-fix-After.patch
(from rev 162749, 
systemd/repos/testing-x86_64/0001-udev-systemd-udev-settle.service-fix-After.patch)
  
systemd/repos/core-x86_64/0001-vconsole-setup-enable-utf-8-mode-explicitly.patch
(from rev 162749, 
systemd/repos/testing-x86_64/0001-vconsole-setup-enable-utf-8-mode-explicitly.patch)
  systemd/repos/core-x86_64/PKGBUILD
(from rev 162749, systemd/repos/testing-x86_64/PKGBUILD)
  systemd/repos/core-x86_64/initcpio-hook-udev
(from rev 162749, systemd/repos/testing-x86_64/initcpio-hook-udev)
  systemd/repos/core-x86_64/initcpio-install-timestamp
(from rev 162749, systemd/repos/testing-x86_64/initcpio-install-timestamp)
  systemd/repos/core-x86_64/initcpio-install-udev
(from rev 162749, systemd/repos/testing-x86_64/initcpio-install-udev)
  systemd/repos/core-x86_64/locale.sh
(from rev 162749, systemd/repos/testing-x86_64/locale.sh)
  systemd/repos/core-x86_64/systemd-tools.install
(from rev 162749, systemd/repos/testing-x86_64/systemd-tools.install)
  systemd/repos/core-x86_64/systemd.install
(from rev 162749, systemd/repos/testing-x86_64/systemd.install)
Deleted:
  systemd/repos/core-i686/0001-Reinstate-TIMEOUT-handling.patch
  systemd/repos/core-i686/0001-udev-systemd-udev-settle.service-fix-After.patch
  systemd/repos/core-i686/0001-vconsole-setup-enable-utf-8-mode-explicitly.patch
  systemd/repos/core-i686/PKGBUILD
  systemd/repos/core-i686/initcpio-hook-udev
  systemd/repos/core-i686/initcpio-install-timestamp
  systemd/repos/core-i686/initcpio-install-udev
  systemd/repos/core-i686/locale.sh
  systemd/repos/core-i686/systemd-tools.install
  systemd/repos/core-i686/systemd.install
  systemd/repos/core-x86_64/0001-Reinstate-TIMEOUT-handling.patch
  
systemd/repos/core-x86_64/0001-udev-systemd-udev-settle.service-fix-After.patch
  
systemd/repos/core-x86_64/0001-vconsole-setup-enable-utf-8-mode-explicitly.patch
  systemd/repos/core-x86_64/PKGBUILD
  systemd/repos/core-x86_64/initcpio-hook-udev
  systemd/repos/core-x86_64/initcpio-install-timestamp
  systemd/repos/core-x86_64/initcpio-install-udev
  systemd/repos/core-x86_64/locale.sh
  systemd/repos/core-x86_64/systemd-tools.install
  systemd/repos/core-x86_64/systemd.install
  systemd/repos/testing-i686/
  systemd/repos/testing-x86_64/

+
 core-i686/0001-Reinstate-TIMEOUT-handling.patch|  248 ++---
 core-i686/0001-udev-systemd-udev-settle.service-fix-After.patch|   52 -
 core-i686/0001-vconsole-setup-enable-utf-8-mode-explicitly.patch   |  158 +--
 core-i686/PKGBUILD |  430 
+-
 core-i686/initcpio-hook-udev   |   40 
 core-i686/initcpio-install-timestamp   |   28 
 core-i686/initcpio-install-udev|   56 -
 core-i686/locale.sh|  120 +-
 core-i686/systemd-tools.install|   70 -
 core-i686/systemd.install  |   74 -
 core-x86_64/0001-Reinstate-TIMEOUT-handling.patch  |  248 ++---
 core-x86_64/0001-udev-systemd-udev-settle.service-fix-After.patch  |   52 -
 

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

2012-06-29 Thread Tom Gundersen
Date: Friday, June 29, 2012 @ 09:32:14
  Author: tomegun
Revision: 162751

upgpkg: initscripts 2012.06.3-1

fix bugs

vconsole setup happened too early
old files in /tmp were not cleaned up at boot

Modified:
  initscripts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 12:48:48 UTC (rev 162750)
+++ PKGBUILD2012-06-29 13:32:14 UTC (rev 162751)
@@ -4,7 +4,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=initscripts
-pkgver=2012.06.2
+pkgver=2012.06.3
 pkgrel=1
 pkgdesc=System initialization/bootup scripts
 arch=('any')
@@ -27,5 +27,5 @@
   make DESTDIR=${pkgdir} install
   install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
 }
-md5sums=('db1891a58ec03bb912e7935aa8723b4f'
+md5sums=('34493c768b587ac59c6ee7e14f275c1d'
  '027576534885b8d5dded9be546057b12')



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

2012-06-29 Thread Tom Gundersen
Date: Friday, June 29, 2012 @ 09:32:29
  Author: tomegun
Revision: 162752

archrelease: copy trunk to testing-any

Added:
  initscripts/repos/testing-any/
  initscripts/repos/testing-any/PKGBUILD
(from rev 162751, initscripts/trunk/PKGBUILD)
  initscripts/repos/testing-any/initscripts.install
(from rev 162751, initscripts/trunk/initscripts.install)
  initscripts/repos/testing-any/wireless.conf.d
(from rev 162751, initscripts/trunk/wireless.conf.d)

-+
 PKGBUILD|   31 +++
 initscripts.install |   19 +++
 wireless.conf.d |   12 
 3 files changed, 62 insertions(+)

Copied: initscripts/repos/testing-any/PKGBUILD (from rev 162751, 
initscripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-06-29 13:32:29 UTC (rev 162752)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Thomas Bächler tho...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=initscripts
+pkgver=2012.06.3
+pkgrel=1
+pkgdesc=System initialization/bootup scripts
+arch=('any')
+url=http://www.archlinux.org;
+license=('GPL2')
+groups=('base')
+backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown 
etc/conf.d/wireless)
+depends=('glibc' 'bash' 'coreutils' 'systemd-tools' 'iproute2' 'ncurses' 
'findutils' 'sysvinit')
+optdepends=('bridge-utils: Network bridging support'
+'dhcpcd: DHCP network configuration'
+'net-tools: legacy network support'
+'wireless_tools: Wireless networking')
+makedepends=(asciidoc)
+install=initscripts.install
+source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz;
+'wireless.conf.d')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/wireless.conf.d ${pkgdir}/etc/conf.d/wireless
+}
+md5sums=('34493c768b587ac59c6ee7e14f275c1d'
+ '027576534885b8d5dded9be546057b12')

Copied: initscripts/repos/testing-any/initscripts.install (from rev 162751, 
initscripts/trunk/initscripts.install)
===
--- testing-any/initscripts.install (rev 0)
+++ testing-any/initscripts.install 2012-06-29 13:32:29 UTC (rev 162752)
@@ -0,0 +1,19 @@
+post_upgrade() {
+  if [ $(vercmp $2 2009.07) -lt 0 ]; then
+echo == Adjusting /etc/inittab for transition to /dev/tty standard.
+echo == Original file saved as /etc/inittab.pacsave
+sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
+  fi
+  if [ $(vercmp $2 2011.06.1) -lt 0 ]; then
+echo Blacklisting of modules is no longer supported in rc.conf,
+echo please add blacklist entries to /etc/modprobe.d/ instead.
+  fi
+  if [ $(vercmp $2 2011.07.2) -lt 0 ]; then
+echo VERBOSE= in rc.conf no longer has any effect.
+echo Please append 'quiet' to your kernel command line.
+  fi
+  if [ $(vercmp $2 2011.10.1) -lt 0 ]; then
+echo If using non-bash-compatible shell, please set LANG in 
/etc/locale.conf,
+echo as LOCALE in /etc/rc.conf no longer works.
+  fi
+}

Copied: initscripts/repos/testing-any/wireless.conf.d (from rev 162751, 
initscripts/trunk/wireless.conf.d)
===
--- testing-any/wireless.conf.d (rev 0)
+++ testing-any/wireless.conf.d 2012-06-29 13:32:29 UTC (rev 162752)
@@ -0,0 +1,12 @@
+#
+# Settings for wireless cards
+#
+# For each wireless interface declared in INTERFACES (in rc.conf), declare
+# a wlan_${IF} variable that contains the arguments to be passed to
+# iwconfig(8).  Then list the original interface name in the
+# WLAN_INTERFACES array.
+#
+
+#wlan_eth0=eth0 mode managed essid default
+#WLAN_INTERFACES=(eth0)
+



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

2012-06-29 Thread Ionut Biru
Date: Friday, June 29, 2012 @ 11:22:45
  Author: ibiru
Revision: 162753

update to 0.6.22

Modified:
  accountsservice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 13:32:29 UTC (rev 162752)
+++ PKGBUILD2012-06-29 15:22:45 UTC (rev 162753)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=accountsservice
-pkgver=0.6.21
+pkgver=0.6.22
 pkgrel=1
 pkgdesc=D-Bus interface for user account query and manipulation
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'gobject-introspection' 'vala')
 options=('!libtool')
 
source=(http://cgit.freedesktop.org/accountsservice/snapshot/${pkgname}-${pkgver}.tar.xz)
-md5sums=('b501d48963b70983170983258c19cc2c')
+md5sums=('6159898955b4c7079a8ae64cd7aa5bf1')
 
 build() {
   cd $pkgname-$pkgver



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

2012-06-29 Thread Ionut Biru
Date: Friday, June 29, 2012 @ 11:28:24
  Author: ibiru
Revision: 162754

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 15:22:45 UTC (rev 162753)
+++ extra-i686/PKGBUILD 2012-06-29 15:28:24 UTC (rev 162754)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=accountsservice
-pkgver=0.6.21
-pkgrel=1
-pkgdesc=D-Bus interface for user account query and manipulation
-arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/accountsservice/;
-license=('GPL3')
-depends=('glib2' 'polkit' 'libsystemd')
-makedepends=('intltool' 'gobject-introspection' 'vala')
-options=('!libtool')
-source=(http://cgit.freedesktop.org/accountsservice/snapshot/${pkgname}-${pkgver}.tar.xz)
-md5sums=('b501d48963b70983170983258c19cc2c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/accountsservice \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---localstatedir=/var --disable-static --enable-systemd
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: accountsservice/repos/extra-i686/PKGBUILD (from rev 162753, 
accountsservice/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 15:28:24 UTC (rev 162754)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=accountsservice
+pkgver=0.6.22
+pkgrel=1
+pkgdesc=D-Bus interface for user account query and manipulation
+arch=(i686 x86_64)
+url=http://cgit.freedesktop.org/accountsservice/;
+license=('GPL3')
+depends=('glib2' 'polkit' 'libsystemd')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+options=('!libtool')
+source=(http://cgit.freedesktop.org/accountsservice/snapshot/${pkgname}-${pkgver}.tar.xz)
+md5sums=('6159898955b4c7079a8ae64cd7aa5bf1')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/accountsservice \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+--localstatedir=/var --disable-static --enable-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-29 15:22:45 UTC (rev 162753)
+++ extra-x86_64/PKGBUILD   2012-06-29 15:28:24 UTC (rev 162754)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=accountsservice
-pkgver=0.6.21
-pkgrel=1
-pkgdesc=D-Bus interface for user account query and manipulation
-arch=(i686 x86_64)
-url=http://cgit.freedesktop.org/accountsservice/;
-license=('GPL3')
-depends=('glib2' 'polkit' 'libsystemd')
-makedepends=('intltool' 'gobject-introspection' 'vala')
-options=('!libtool')
-source=(http://cgit.freedesktop.org/accountsservice/snapshot/${pkgname}-${pkgver}.tar.xz)
-md5sums=('b501d48963b70983170983258c19cc2c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/accountsservice \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---localstatedir=/var --disable-static --enable-systemd
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: accountsservice/repos/extra-x86_64/PKGBUILD (from rev 162753, 
accountsservice/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-29 15:28:24 UTC (rev 162754)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=accountsservice
+pkgver=0.6.22
+pkgrel=1
+pkgdesc=D-Bus interface for user account query and manipulation
+arch=(i686 x86_64)
+url=http://cgit.freedesktop.org/accountsservice/;
+license=('GPL3')
+depends=('glib2' 'polkit' 'libsystemd')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+options=('!libtool')
+source=(http://cgit.freedesktop.org/accountsservice/snapshot/${pkgname}-${pkgver}.tar.xz)
+md5sums=('6159898955b4c7079a8ae64cd7aa5bf1')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh 

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

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 11:32:32
  Author: andyrtr
Revision: 162756

archrelease: copy trunk to extra-i686

Added:
  nx/repos/extra-i686/PKGBUILD
(from rev 162755, nx/trunk/PKGBUILD)
  nx/repos/extra-i686/nx-x11.ld.so.conf.d
(from rev 162755, nx/trunk/nx-x11.ld.so.conf.d)
Deleted:
  nx/repos/extra-i686/PKGBUILD
  nx/repos/extra-i686/nx-x11.ld.so.conf.d

-+
 PKGBUILD|  232 +-
 nx-x11.ld.so.conf.d |2 
 2 files changed, 117 insertions(+), 117 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-06-29 15:30:56 UTC (rev 162755)
+++ PKGBUILD2012-06-29 15:32:32 UTC (rev 162756)
@@ -1,116 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgbase=nx
-pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'nx-headers')
-pkgver=3.5.0.14
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://wiki.x2go.org/;
-license=('GPL')
-options=('!makeflags')
-makedepends=('libjpeg-turbo' 'libpng' 'bash' 'perl' # runtime dependencies 
from subpackages
- 'xproto' 'freetype2' 'libxaw' 'libxrender' 'libxp' 'libxpm' 
'libxdamage' 'libxrandr' 'libxcomposite' 'libxtst' 'xorg-sessreg' # makedepends
- )
-source=(http://code.x2go.org/releases/source/nx-libs/nx-libs_$pkgver-full.tar.gz
-nx-x11.ld.so.conf.d)
-md5sums=('f20f5a12e15849bae8a1f2d7b44830ab'
- 'f2ec60c7e2d81bef2f7292d2b33681a6')
-
-build() {
-  cd ${srcdir}/nx-libs_$pkgver
-  make CONFIGURE=./configure --prefix=/usr --libdir=/usr/lib 
--libexecdir=/usr/lib --includedir=/usr/include
-  # fake install
-  mkdir $srcdir/fakeinstall
-  make DESTDIR=$srcdir/fakeinstall install
-}
-
-package_libxcomp() {
-  
-  pkgdesc=NX X compression library
-  depends=('libjpeg-turbo' 'libpng' 'gcc-libs')
-   
-  install -dm755 ${pkgdir}/usr/lib/nx/lib
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcomp.so* ${pkgdir}/usr/lib/nx/lib
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/lib/libXcomp.so{,.3,.3.5.0} .
-}
-
-package_nxproxy() {
-
-  pkgdesc=NX proxy
-  depends=('libxcomp')
-  
-  install -dm755 ${pkgdir}/usr/{bin,share/man/man1,lib/nx/bin}
-  cp -a ${srcdir}/fakeinstall/usr/bin/nxproxy ${pkgdir}/usr/lib/nx/bin
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv /usr/lib/nx/bin/nxproxy .
-  
-  # the wrapper
-  cp -a ${srcdir}/nx-libs_$pkgver/bin/nxproxy ${pkgdir}/usr/bin
-  chmod +x ${pkgdir}/usr/bin/nxproxy
-  cp -a ${srcdir}/fakeinstall/usr/share/man/man1/nxproxy.1 
${pkgdir}/usr/share/man/man1
-}
-
-package_nx-xcompext() {
-  
-  pkgdesc=Xcompext/Xcompshad library for NX
-  depends=('libxcomp' 'nx-x11')
-   
-  install -dm755 ${pkgdir}/usr/lib/nx
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcompext.so.3.5.0 
${pkgdir}/usr/lib/nx
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv libXcompext.so.3.5.0 libXcompext.so.3
-  ln -sv libXcompext.so.3.5.0 libXcompext.so
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/libXcompext.so{,.3,.3.5.0} .
-}
-
-package_nx-x11() {
- 
-  pkgdesc=NX-X11 lib for the NX framework
-  depends=('libxcomp')
-   
-  install -dm755 ${pkgdir}/{etc/ld.so.conf.d,usr/bin,usr/lib/nx/bin}
-  cp -aR ${srcdir}/fakeinstall/usr/lib/NX3/lib*/nx/lib*.so* 
${pkgdir}/usr/lib/nx
-
-  cp -a ${srcdir}/fakeinstall/usr/lib/NX3/bin/nxauth ${pkgdir}/usr/lib/nx/bin
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv /usr/lib/nx/bin/nxauth .
-  
-  # the wrapper
-  cp -a ${srcdir}/nx-libs_$pkgver/bin/nxauth ${pkgdir}/usr/bin
-  chmod +x ${pkgdir}/usr/bin/nxauth
-  
-  install -m 644 $srcdir/nx-x11.ld.so.conf.d 
$pkgdir/etc/ld.so.conf.d/nx.conf
-}
-
-package_nxagent() {
-  
-  pkgdesc=NX X server based on Xnest
-  depends=('nx-xcompext')
-   
-  install -dm755 ${pkgdir}/usr/{bin,lib/nx/bin}
-  cp -aR ${srcdir}/fakeinstall/usr/lib/NX3/bin/nxagent ${pkgdir}/usr/lib/nx/bin
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv /usr/lib/nx/bin/nxagent .
-  
-  # the wrapper
-  cp -a ${srcdir}/nx-libs_$pkgver/bin/nxagent ${pkgdir}/usr/bin
-  chmod +x ${pkgdir}/usr/bin/nxagent
-  # required nxcompshad libs
-  cp -a ${srcdir}/nx-libs_$pkgver/nxcompshad/libXcompshad.so.3.5.0 
${pkgdir}/usr/lib/nx
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv libXcompshad.so.3.5.0 libXcompshad.so.3
-  ln -sv libXcompshad.so.3.5.0 libXcompshad.so
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/libXcompshad.so{,.3,.3.5.0} .
-}
-
-package_nx-headers() {
-
-  pkgdesc=NX headers
-  
-  install -dm755 ${pkgdir}/usr/include/nx
-  cp -aR ${srcdir}/fakeinstall/usr/include/nx/* ${pkgdir}/usr/include/nx
-}  

Copied: nx/repos/extra-i686/PKGBUILD (from rev 162755, nx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-06-29 15:32:32 UTC (rev 162756)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgbase=nx
+pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'nx-headers')
+pkgver=3.5.0.14
+pkgrel=1
+arch=('i686' 

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

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 11:32:58
  Author: andyrtr
Revision: 162757

archrelease: copy trunk to extra-x86_64

Added:
  nx/repos/extra-x86_64/PKGBUILD
(from rev 162756, nx/trunk/PKGBUILD)
  nx/repos/extra-x86_64/nx-x11.ld.so.conf.d
(from rev 162756, nx/trunk/nx-x11.ld.so.conf.d)
Deleted:
  nx/repos/extra-x86_64/PKGBUILD
  nx/repos/extra-x86_64/nx-x11.ld.so.conf.d

-+
 PKGBUILD|  232 +-
 nx-x11.ld.so.conf.d |2 
 2 files changed, 117 insertions(+), 117 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-06-29 15:32:32 UTC (rev 162756)
+++ PKGBUILD2012-06-29 15:32:58 UTC (rev 162757)
@@ -1,116 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgbase=nx
-pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'nx-headers')
-pkgver=3.5.0.14
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://wiki.x2go.org/;
-license=('GPL')
-options=('!makeflags')
-makedepends=('libjpeg-turbo' 'libpng' 'bash' 'perl' # runtime dependencies 
from subpackages
- 'xproto' 'freetype2' 'libxaw' 'libxrender' 'libxp' 'libxpm' 
'libxdamage' 'libxrandr' 'libxcomposite' 'libxtst' 'xorg-sessreg' # makedepends
- )
-source=(http://code.x2go.org/releases/source/nx-libs/nx-libs_$pkgver-full.tar.gz
-nx-x11.ld.so.conf.d)
-md5sums=('f20f5a12e15849bae8a1f2d7b44830ab'
- 'f2ec60c7e2d81bef2f7292d2b33681a6')
-
-build() {
-  cd ${srcdir}/nx-libs_$pkgver
-  make CONFIGURE=./configure --prefix=/usr --libdir=/usr/lib 
--libexecdir=/usr/lib --includedir=/usr/include
-  # fake install
-  mkdir $srcdir/fakeinstall
-  make DESTDIR=$srcdir/fakeinstall install
-}
-
-package_libxcomp() {
-  
-  pkgdesc=NX X compression library
-  depends=('libjpeg-turbo' 'libpng' 'gcc-libs')
-   
-  install -dm755 ${pkgdir}/usr/lib/nx/lib
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcomp.so* ${pkgdir}/usr/lib/nx/lib
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/lib/libXcomp.so{,.3,.3.5.0} .
-}
-
-package_nxproxy() {
-
-  pkgdesc=NX proxy
-  depends=('libxcomp')
-  
-  install -dm755 ${pkgdir}/usr/{bin,share/man/man1,lib/nx/bin}
-  cp -a ${srcdir}/fakeinstall/usr/bin/nxproxy ${pkgdir}/usr/lib/nx/bin
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv /usr/lib/nx/bin/nxproxy .
-  
-  # the wrapper
-  cp -a ${srcdir}/nx-libs_$pkgver/bin/nxproxy ${pkgdir}/usr/bin
-  chmod +x ${pkgdir}/usr/bin/nxproxy
-  cp -a ${srcdir}/fakeinstall/usr/share/man/man1/nxproxy.1 
${pkgdir}/usr/share/man/man1
-}
-
-package_nx-xcompext() {
-  
-  pkgdesc=Xcompext/Xcompshad library for NX
-  depends=('libxcomp' 'nx-x11')
-   
-  install -dm755 ${pkgdir}/usr/lib/nx
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcompext.so.3.5.0 
${pkgdir}/usr/lib/nx
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv libXcompext.so.3.5.0 libXcompext.so.3
-  ln -sv libXcompext.so.3.5.0 libXcompext.so
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/libXcompext.so{,.3,.3.5.0} .
-}
-
-package_nx-x11() {
- 
-  pkgdesc=NX-X11 lib for the NX framework
-  depends=('libxcomp')
-   
-  install -dm755 ${pkgdir}/{etc/ld.so.conf.d,usr/bin,usr/lib/nx/bin}
-  cp -aR ${srcdir}/fakeinstall/usr/lib/NX3/lib*/nx/lib*.so* 
${pkgdir}/usr/lib/nx
-
-  cp -a ${srcdir}/fakeinstall/usr/lib/NX3/bin/nxauth ${pkgdir}/usr/lib/nx/bin
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv /usr/lib/nx/bin/nxauth .
-  
-  # the wrapper
-  cp -a ${srcdir}/nx-libs_$pkgver/bin/nxauth ${pkgdir}/usr/bin
-  chmod +x ${pkgdir}/usr/bin/nxauth
-  
-  install -m 644 $srcdir/nx-x11.ld.so.conf.d 
$pkgdir/etc/ld.so.conf.d/nx.conf
-}
-
-package_nxagent() {
-  
-  pkgdesc=NX X server based on Xnest
-  depends=('nx-xcompext')
-   
-  install -dm755 ${pkgdir}/usr/{bin,lib/nx/bin}
-  cp -aR ${srcdir}/fakeinstall/usr/lib/NX3/bin/nxagent ${pkgdir}/usr/lib/nx/bin
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv /usr/lib/nx/bin/nxagent .
-  
-  # the wrapper
-  cp -a ${srcdir}/nx-libs_$pkgver/bin/nxagent ${pkgdir}/usr/bin
-  chmod +x ${pkgdir}/usr/bin/nxagent
-  # required nxcompshad libs
-  cp -a ${srcdir}/nx-libs_$pkgver/nxcompshad/libXcompshad.so.3.5.0 
${pkgdir}/usr/lib/nx
-  cd ${pkgdir}/usr/lib/nx
-  ln -sv libXcompshad.so.3.5.0 libXcompshad.so.3
-  ln -sv libXcompshad.so.3.5.0 libXcompshad.so
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/libXcompshad.so{,.3,.3.5.0} .
-}
-
-package_nx-headers() {
-
-  pkgdesc=NX headers
-  
-  install -dm755 ${pkgdir}/usr/include/nx
-  cp -aR ${srcdir}/fakeinstall/usr/include/nx/* ${pkgdir}/usr/include/nx
-}  

Copied: nx/repos/extra-x86_64/PKGBUILD (from rev 162756, nx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-06-29 15:32:58 UTC (rev 162757)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgbase=nx
+pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'nx-headers')
+pkgver=3.5.0.14
+pkgrel=1

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

2012-06-29 Thread Tobias Powalowski
Date: Friday, June 29, 2012 @ 12:50:44
  Author: tpowa
Revision: 162758

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

Added:
  libusbx/repos/core-i686/PKGBUILD
(from rev 162757, libusbx/repos/testing-i686/PKGBUILD)
  libusbx/repos/core-x86_64/PKGBUILD
(from rev 162757, libusbx/repos/testing-x86_64/PKGBUILD)
Deleted:
  libusbx/repos/core-i686/PKGBUILD
  libusbx/repos/core-x86_64/PKGBUILD
  libusbx/repos/testing-i686/
  libusbx/repos/testing-x86_64/

--+
 core-i686/PKGBUILD   |   64 -
 core-x86_64/PKGBUILD |   64 -
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-06-29 15:32:58 UTC (rev 162757)
+++ core-i686/PKGBUILD  2012-06-29 16:50:44 UTC (rev 162758)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-pkgname=libusbx
-pkgver=1.0.12
-pkgrel=1
-depends=('glibc')
-pkgdesc=Library that provides generic access to USB device
-arch=(i686 x86_64)
-url=http://libusbx.org;
-license=('LGPL')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-options=(!libtool)
-replaces=('libusb1' 'libusb')
-provides=(libusb=$pkgver)
-conflicts=(libusb)
-md5sums=('c41352ac755c7992edfcbb2ea4ad1349')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr 
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package () {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: libusbx/repos/core-i686/PKGBUILD (from rev 162757, 
libusbx/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-06-29 16:50:44 UTC (rev 162758)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+pkgname=libusbx
+pkgver=1.0.12
+pkgrel=2
+depends=('glibc')
+pkgdesc=Library that provides generic access to USB device
+arch=(i686 x86_64)
+url=http://libusbx.org;
+license=('LGPL')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+options=(!libtool)
+replaces=('libusb1' 'libusb')
+provides=(libusb=$pkgver)
+conflicts=(libusb)
+md5sums=('c41352ac755c7992edfcbb2ea4ad1349')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package () {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-06-29 15:32:58 UTC (rev 162757)
+++ core-x86_64/PKGBUILD2012-06-29 16:50:44 UTC (rev 162758)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-pkgname=libusbx
-pkgver=1.0.12
-pkgrel=1
-depends=('glibc')
-pkgdesc=Library that provides generic access to USB device
-arch=(i686 x86_64)
-url=http://libusbx.org;
-license=('LGPL')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-options=(!libtool)
-replaces=('libusb1' 'libusb')
-provides=(libusb=$pkgver)
-conflicts=(libusb)
-md5sums=('c41352ac755c7992edfcbb2ea4ad1349')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr 
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package () {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: libusbx/repos/core-x86_64/PKGBUILD (from rev 162757, 
libusbx/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-06-29 16:50:44 UTC (rev 162758)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+pkgname=libusbx
+pkgver=1.0.12
+pkgrel=2
+depends=('glibc')
+pkgdesc=Library that provides generic access to USB device
+arch=(i686 x86_64)
+url=http://libusbx.org;
+license=('LGPL')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+options=(!libtool)
+replaces=('libusb1' 'libusb')
+provides=(libusb=$pkgver)
+conflicts=(libusb)
+md5sums=('c41352ac755c7992edfcbb2ea4ad1349')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package () {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2012-06-29 Thread Eric Bélanger
Date: Friday, June 29, 2012 @ 14:27:42
  Author: eric
Revision: 162759

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

Added:
  psmisc/repos/core-i686/PKGBUILD
(from rev 162758, psmisc/repos/testing-i686/PKGBUILD)
  psmisc/repos/core-x86_64/PKGBUILD
(from rev 162758, psmisc/repos/testing-x86_64/PKGBUILD)
Deleted:
  psmisc/repos/core-i686/PKGBUILD
  psmisc/repos/core-i686/psmisc22.18-usage.patch
  psmisc/repos/core-x86_64/PKGBUILD
  psmisc/repos/core-x86_64/psmisc22.18-usage.patch
  psmisc/repos/testing-i686/
  psmisc/repos/testing-x86_64/

-+
 core-i686/PKGBUILD  |   52 --
 core-i686/psmisc22.18-usage.patch   |   11 ---
 core-x86_64/PKGBUILD|   52 --
 core-x86_64/psmisc22.18-usage.patch |   11 ---
 4 files changed, 50 insertions(+), 76 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-06-29 16:50:44 UTC (rev 162758)
+++ core-i686/PKGBUILD  2012-06-29 18:27:42 UTC (rev 162759)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=psmisc
-pkgver=22.18
-pkgrel=2
-pkgdesc=Miscellaneous procfs tools
-arch=('i686' 'x86_64')
-url=http://psmisc.sourceforge.net/index.html;
-license=('GPL')
-groups=('base')
-depends=('ncurses')
-source=(http://downloads.sourceforge.net/psmisc/${pkgname}-${pkgver}.tar.gz 
psmisc22.18-usage.patch)
-sha1sums=('964f6daa0950b128a0840d9df4dc0b671730a83c'
-  '5cd326dd969b07c46d10c7d1172b91d65cbc6e10')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/psmisc22.18-usage.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: psmisc/repos/core-i686/PKGBUILD (from rev 162758, 
psmisc/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-06-29 18:27:42 UTC (rev 162759)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=psmisc
+pkgver=22.19
+pkgrel=1
+pkgdesc=Miscellaneous procfs tools
+arch=('i686' 'x86_64')
+url=http://psmisc.sourceforge.net/index.html;
+license=('GPL')
+groups=('base')
+depends=('ncurses')
+source=(http://downloads.sourceforge.net/psmisc/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('4c8fb774449f966f78c4c6e1d77d1a24b4187410')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: core-i686/psmisc22.18-usage.patch
===
--- core-i686/psmisc22.18-usage.patch   2012-06-29 16:50:44 UTC (rev 162758)
+++ core-i686/psmisc22.18-usage.patch   2012-06-29 18:27:42 UTC (rev 162759)
@@ -1,11 +0,0 @@
-diff -Naur psmisc-22.18-orig/src/killall.c psmisc-22.18/src/killall.c
 psmisc-22.18-orig/src/killall.c2012-06-20 05:07:16.563742846 -0400
-+++ psmisc-22.18/src/killall.c 2012-06-20 05:08:38.250412923 -0400
-@@ -637,6 +637,7 @@
-   (must precede other arguments)\n));
- #endif /*WITH_SELINUX*/
-   fputc('\n', stderr);
-+  exit (1);
- }
- 
- 

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-06-29 16:50:44 UTC (rev 162758)
+++ core-x86_64/PKGBUILD2012-06-29 18:27:42 UTC (rev 162759)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=psmisc
-pkgver=22.18
-pkgrel=2
-pkgdesc=Miscellaneous procfs tools
-arch=('i686' 'x86_64')
-url=http://psmisc.sourceforge.net/index.html;
-license=('GPL')
-groups=('base')
-depends=('ncurses')
-source=(http://downloads.sourceforge.net/psmisc/${pkgname}-${pkgver}.tar.gz 
psmisc22.18-usage.patch)
-sha1sums=('964f6daa0950b128a0840d9df4dc0b671730a83c'
-  '5cd326dd969b07c46d10c7d1172b91d65cbc6e10')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/psmisc22.18-usage.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: psmisc/repos/core-x86_64/PKGBUILD (from rev 162758, 
psmisc/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-06-29 18:27:42 UTC (rev 162759)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=psmisc
+pkgver=22.19
+pkgrel=1
+pkgdesc=Miscellaneous procfs tools
+arch=('i686' 'x86_64')
+url=http://psmisc.sourceforge.net/index.html;
+license=('GPL')
+groups=('base')
+depends=('ncurses')

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

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 15:45:52
  Author: andyrtr
Revision: 162760

upgpkg: libdrm 2.4.37-1

upstream update 2.4.37

Modified:
  libdrm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 18:27:42 UTC (rev 162759)
+++ PKGBUILD2012-06-29 19:45:52 UTC (rev 162760)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libdrm
-pkgver=2.4.35
+pkgver=2.4.37
 pkgrel=1
 pkgdesc=Userspace interface to kernel DRM services
 arch=(i686 x86_64)
@@ -14,11 +14,10 @@
 url=http://dri.freedesktop.org/;
 source=(http://dri.freedesktop.org/$pkgname/$pkgname-$pkgver.tar.bz2
 no-pthread-stubs.patch
-COPYING
-)
-sha1sums=('a1d8d4945f782371d7855dbd693db885bd7e3d83'
-  '2a5410baa3e6e078f9378ce486a88f41d22fd838'
-  'ba3dcd636997ee0d30df14b03dae05c24ae5d094')
+COPYING)
+sha256sums=('e4ea39a901d4a8e59064f10f413bb037dad7790f7c16a5986e7cc1453b36488f'
+'f7a587357ea29cab9c06a4889f09e30d63eae76e9b9654666c53020d15ea52d7'
+'9631d4f694952e3e6ae5a05534c2e93e994e47d3413677a3a00e45c8cef6db93')
 
 build() {
   cd $pkgname-$pkgver



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

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 15:46:48
  Author: andyrtr
Revision: 162761

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

Added:
  libdrm/repos/testing-i686/
  libdrm/repos/testing-i686/COPYING
(from rev 162760, libdrm/trunk/COPYING)
  libdrm/repos/testing-i686/PKGBUILD
(from rev 162760, libdrm/trunk/PKGBUILD)
  libdrm/repos/testing-i686/git_fixes.diff
(from rev 162760, libdrm/trunk/git_fixes.diff)
  libdrm/repos/testing-i686/no-pthread-stubs.patch
(from rev 162760, libdrm/trunk/no-pthread-stubs.patch)
  libdrm/repos/testing-x86_64/
  libdrm/repos/testing-x86_64/COPYING
(from rev 162760, libdrm/trunk/COPYING)
  libdrm/repos/testing-x86_64/PKGBUILD
(from rev 162760, libdrm/trunk/PKGBUILD)
  libdrm/repos/testing-x86_64/git_fixes.diff
(from rev 162760, libdrm/trunk/git_fixes.diff)
  libdrm/repos/testing-x86_64/no-pthread-stubs.patch
(from rev 162760, libdrm/trunk/no-pthread-stubs.patch)

---+
 testing-i686/COPYING  |   48 +
 testing-i686/PKGBUILD |   44 
 testing-i686/git_fixes.diff   |   13 +
 testing-i686/no-pthread-stubs.patch   |   70 
 testing-x86_64/COPYING|   48 +
 testing-x86_64/PKGBUILD   |   44 
 testing-x86_64/git_fixes.diff |   13 +
 testing-x86_64/no-pthread-stubs.patch |   70 
 8 files changed, 350 insertions(+)

Copied: libdrm/repos/testing-i686/COPYING (from rev 162760, 
libdrm/trunk/COPYING)
===
--- testing-i686/COPYING(rev 0)
+++ testing-i686/COPYING2012-06-29 19:46:48 UTC (rev 162761)
@@ -0,0 +1,48 @@
+ Copyright 2005 Adam Jackson.
+
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ Software), to deal in the Software without restriction, including
+ without limitation on the rights to use, copy, modify, merge,
+ publish, distribute, sub license, and/or sell copies of the Software,
+ and to permit persons to whom the Software is furnished to do so,
+ subject to the following conditions:
+
+ The above copyright notice and this permission notice (including the
+ next paragraph) shall be included in all copies or substantial
+ portions of the Software.
+
+ THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NON-INFRINGEMENT.  IN NO EVENT SHALL ADAM JACKSON BE LIABLE FOR ANY
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+ Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
+ Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
+ All Rights Reserved.
+
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ Software), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+
+ The above copyright notice and this permission notice (including the
+ next paragraph) shall be included in all copies or substantial
+ portions of the Software.
+
+ THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT.  IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS
+ SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ DEALINGS IN THE SOFTWARE.

Copied: libdrm/repos/testing-i686/PKGBUILD (from rev 162760, 
libdrm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-29 19:46:48 UTC (rev 162761)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libdrm
+pkgver=2.4.37
+pkgrel=1
+pkgdesc=Userspace interface to kernel DRM services
+arch=(i686 x86_64)
+license=('custom')
+depends=('glibc' 'libpciaccess')
+makedepends=('cairo' 'valgrind')
+replaces=('libdrm-new' 'libdrm-nouveau')
+options=('!libtool')
+url=http://dri.freedesktop.org/;

[arch-commits] Commit in xf86-video-ati/trunk (PKGBUILD)

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 15:57:48
  Author: andyrtr
Revision: 162762

upgpkg: xf86-video-ati 1:6.14.6-1

upstream update 6.14.6

Modified:
  xf86-video-ati/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 19:46:48 UTC (rev 162761)
+++ PKGBUILD2012-06-29 19:57:48 UTC (rev 162762)
@@ -3,20 +3,20 @@
 # Contributor: Alexander Baldeck alexan...@archlinux.org
 
 pkgname=xf86-video-ati
-pkgver=6.14.5
+pkgver=6.14.6
 epoch=1
 pkgrel=1
 pkgdesc=X.org ati video driver
 arch=('i686' 'x86_64')
 url=http://xorg.freedesktop.org/;
 license=('custom')
-depends=('libdrm=2.4.35' 'systemd-tools' 'ati-dri')
+depends=('libdrm=2.4.37' 'systemd-tools' 'ati-dri')
 makedepends=('xorg-server-devel=1.11.99.902' 'xf86driproto' 'mesa')
 conflicts=('xorg-server1.11.99.902')
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('ef879d2845de50cec1aa98e37185271e1d535c0009efd6713ec88206b7197d53')
+sha256sums=('aa5286b3e4f0187d7df14785c06dd800255d9405205dbf061da5d77df86bec36')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in xf86-video-ati/repos (5 files)

2012-06-29 Thread andyrtr
Date: Friday, June 29, 2012 @ 15:59:42
  Author: andyrtr
Revision: 162763

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

Added:
  xf86-video-ati/repos/testing-i686/
  xf86-video-ati/repos/testing-i686/PKGBUILD
(from rev 162762, xf86-video-ati/trunk/PKGBUILD)
  xf86-video-ati/repos/testing-x86_64/
  xf86-video-ati/repos/testing-x86_64/PKGBUILD
(from rev 162762, xf86-video-ati/trunk/PKGBUILD)
Deleted:
  xf86-video-ati/repos/extra-i686/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 19:57:48 UTC (rev 162762)
+++ extra-i686/PKGBUILD 2012-06-29 19:59:42 UTC (rev 162763)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Alexander Baldeck alexan...@archlinux.org
-
-pkgname=xf86-video-ati
-pkgver=6.14.5
-epoch=1
-pkgrel=1
-pkgdesc=X.org ati video driver
-arch=('i686' 'x86_64')
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('libdrm=2.4.35' 'systemd-tools' 'ati-dri')
-makedepends=('xorg-server-devel=1.11.99.902' 'xf86driproto' 'mesa')
-conflicts=('xorg-server1.11.99.902')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('ef879d2845de50cec1aa98e37185271e1d535c0009efd6713ec88206b7197d53')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr #--enable-dri --help
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-ati/repos/testing-i686/PKGBUILD (from rev 162762, 
xf86-video-ati/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-29 19:59:42 UTC (rev 162763)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Alexander Baldeck alexan...@archlinux.org
+
+pkgname=xf86-video-ati
+pkgver=6.14.6
+epoch=1
+pkgrel=1
+pkgdesc=X.org ati video driver
+arch=('i686' 'x86_64')
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('libdrm=2.4.37' 'systemd-tools' 'ati-dri')
+makedepends=('xorg-server-devel=1.11.99.902' 'xf86driproto' 'mesa')
+conflicts=('xorg-server1.11.99.902')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('aa5286b3e4f0187d7df14785c06dd800255d9405205dbf061da5d77df86bec36')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr #--enable-dri --help
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-ati/repos/testing-x86_64/PKGBUILD (from rev 162762, 
xf86-video-ati/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-06-29 19:59:42 UTC (rev 162763)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Alexander Baldeck alexan...@archlinux.org
+
+pkgname=xf86-video-ati
+pkgver=6.14.6
+epoch=1
+pkgrel=1
+pkgdesc=X.org ati video driver
+arch=('i686' 'x86_64')
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('libdrm=2.4.37' 'systemd-tools' 'ati-dri')
+makedepends=('xorg-server-devel=1.11.99.902' 'xf86driproto' 'mesa')
+conflicts=('xorg-server1.11.99.902')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('aa5286b3e4f0187d7df14785c06dd800255d9405205dbf061da5d77df86bec36')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr #--enable-dri --help
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}



[arch-commits] Commit in r/trunk (PKGBUILD R.conf r.install)

2012-06-29 Thread Ronald van Haren
Date: Friday, June 29, 2012 @ 16:57:40
  Author: ronald
Revision: 162764

upgpkg: r 2.15.1-1

update to 2.15.1; add etc/ld.so.conf.d/ config file; add latex sty files 
FS#29604; move tk from depends to optdepends FS#30209

Added:
  r/trunk/R.conf
Modified:
  r/trunk/PKGBUILD
  r/trunk/r.install

---+
 PKGBUILD  |   24 +---
 R.conf|2 ++
 r.install |2 ++
 3 files changed, 21 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 19:59:42 UTC (rev 162763)
+++ PKGBUILD2012-06-29 20:57:40 UTC (rev 162764)
@@ -4,7 +4,7 @@
 # Contributor: K. Piche kpi...@rogers.com
 
 pkgname=r
-pkgver=2.15.0
+pkgver=2.15.1
 pkgrel=1
 pkgdesc=Language and environment for statistical computing and graphics
 arch=('i686' 'x86_64')
@@ -12,21 +12,28 @@
 url=('http://www.r-project.org/')
 depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
  'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'tk' 'libxt' 'libxmu' 'pango' 'xz')
-makedepends=('openjdk6' 'gcc-fortran')
+ 'libxt' 'libxmu' 'pango' 'xz' 'texlive-bin' 'desktop-file-utils')
+makedepends=('openjdk6' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface')
 backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories')
-options=('!makeflags')
+options=('!makeflags' '!emptydirs')
 source=(http://cran.r-project.org/src/base/R-2/R-${pkgver}.tar.gz;
'r.desktop'
-   'r.png')
+   'r.png'
+   'R.conf')
 install=r.install
-sha1sums=('a633f87fdbd22e8c371971c535ca815e63c297f6'
+sha1sums=('f0e6912be6dfc0d1fdc4be66048304d8befe8424'
   '13aa29219bcaa102e575de8c1c8e0833d233e836'
-  'a69a07ec363440efc18ce0a7f2af103375dea978')
+  'a69a07ec363440efc18ce0a7f2af103375dea978'
+  '43668da6cfd1b4455a99f23e79e2059294dddac9')
 
 build() {
cd ${srcdir}/R-${pkgver}
sed -i 's|#define NeedFunctionPrototypes 0|#define NeedFunctionPrototypes 
1|g' src/modules/X11/dataentry.c
+
+  # set texmf dir correctly in makefile
+  sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
+
./configure  --prefix=/usr \
--libdir=/usr/lib \
--sysconfdir=/etc/R \
@@ -66,4 +73,7 @@
 mv -f ${i} ${pkgdir}/etc/R
 ln -s /etc/R/${i} ${i}
   done
+
+  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
+  install -Dm644 ${srcdir}/R.conf ${pkgdir}/etc/ld.so.conf.d/R.conf
 }

Added: R.conf
===
--- R.conf  (rev 0)
+++ R.conf  2012-06-29 20:57:40 UTC (rev 162764)
@@ -0,0 +1,2 @@
+/usr/lib/R/lib
+

Modified: r.install
===
--- r.install   2012-06-29 19:59:42 UTC (rev 162763)
+++ r.install   2012-06-29 20:57:40 UTC (rev 162764)
@@ -1,5 +1,7 @@
 post_install() {
   update-desktop-database -q
+  echo  updating the filename database for texlive...
+  mktexlsr --quiet usr/share/texmf
 }
 
 post_upgrade() {



[arch-commits] Commit in r/repos (18 files)

2012-06-29 Thread Ronald van Haren
Date: Friday, June 29, 2012 @ 16:58:34
  Author: ronald
Revision: 162765

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

Added:
  r/repos/extra-i686/PKGBUILD
(from rev 162764, r/trunk/PKGBUILD)
  r/repos/extra-i686/R.conf
(from rev 162764, r/trunk/R.conf)
  r/repos/extra-i686/r.desktop
(from rev 162764, r/trunk/r.desktop)
  r/repos/extra-i686/r.install
(from rev 162764, r/trunk/r.install)
  r/repos/extra-i686/r.png
(from rev 162764, r/trunk/r.png)
  r/repos/extra-x86_64/PKGBUILD
(from rev 162764, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 162764, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 162764, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.install
(from rev 162764, r/trunk/r.install)
  r/repos/extra-x86_64/r.png
(from rev 162764, r/trunk/r.png)
Deleted:
  r/repos/extra-i686/PKGBUILD
  r/repos/extra-i686/r.desktop
  r/repos/extra-i686/r.install
  r/repos/extra-i686/r.png
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.install
  r/repos/extra-x86_64/r.png

+
 extra-i686/PKGBUILD|  148 +--
 extra-i686/R.conf  |2 
 extra-i686/r.desktop   |   22 +++---
 extra-i686/r.install   |   26 
 extra-x86_64/PKGBUILD  |  148 +--
 extra-x86_64/R.conf|2 
 extra-x86_64/r.desktop |   22 +++---
 extra-x86_64/r.install |   26 
 8 files changed, 212 insertions(+), 184 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 20:57:40 UTC (rev 162764)
+++ extra-i686/PKGBUILD 2012-06-29 20:58:34 UTC (rev 162765)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-# Contributor: K. Piche kpi...@rogers.com
-
-pkgname=r
-pkgver=2.15.0
-pkgrel=1
-pkgdesc=Language and environment for statistical computing and graphics
-arch=('i686' 'x86_64')
-license=('GPL')
-url=('http://www.r-project.org/')
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'tk' 'libxt' 'libxmu' 'pango' 'xz')
-makedepends=('openjdk6' 'gcc-fortran')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories')
-options=('!makeflags')
-source=(http://cran.r-project.org/src/base/R-2/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png')
-install=r.install
-sha1sums=('a633f87fdbd22e8c371971c535ca815e63c297f6'
-  '13aa29219bcaa102e575de8c1c8e0833d233e836'
-  'a69a07ec363440efc18ce0a7f2af103375dea978')
-
-build() {
-   cd ${srcdir}/R-${pkgver}
-   sed -i 's|#define NeedFunctionPrototypes 0|#define NeedFunctionPrototypes 
1|g' src/modules/X11/dataentry.c
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-}
-
-package() {
-   cd ${srcdir}/R-${pkgver}
-   make -j1 DESTDIR=${pkgdir} install
-
-   #  Fixup R wrapper scripts.
-   sed -i s|${pkgdir} || ${pkgdir}/usr/bin/R
-   rm ${pkgdir}/usr/lib/R/bin/R
-   cd ${pkgdir}/usr/lib/R/bin
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 ${srcdir}/r.desktop \
-   ${pkgdir}/usr/share/applications/r.desktop
-  install -Dm644 ${srcdir}/r.png \
-   ${pkgdir}/usr/share/pixmaps/r.png
-
-  # move the config directory to /etc and create symlinks
-  install -d ${pkgdir}/etc/R
-  cd ${pkgdir}/usr/lib/R/etc
-  for i in *; do
-mv -f ${i} ${pkgdir}/etc/R
-ln -s /etc/R/${i} ${i}
-  done
-}

Copied: r/repos/extra-i686/PKGBUILD (from rev 162764, r/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 20:58:34 UTC (rev 162765)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: K. Piche kpi...@rogers.com
+
+pkgname=r
+pkgver=2.15.1
+pkgrel=1
+pkgdesc=Language and environment for statistical computing and graphics
+arch=('i686' 'x86_64')
+license=('GPL')
+url=('http://www.r-project.org/')
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
+ 'libxt' 'libxmu' 'pango' 'xz' 'texlive-bin' 'desktop-file-utils')
+makedepends=('openjdk6' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface')
+backup=('etc/R/Makeconf' 

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

2012-06-29 Thread Eric Bélanger
Date: Friday, June 29, 2012 @ 18:10:33
  Author: eric
Revision: 162766

upgpkg: dcraw 9.15-1

Upstream update, Remove old unused install scriptlet

Modified:
  dcraw/trunk/PKGBUILD
Deleted:
  dcraw/trunk/dcraw.install

---+
 PKGBUILD  |4 ++--
 dcraw.install |   13 -
 2 files changed, 2 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 20:58:34 UTC (rev 162765)
+++ PKGBUILD2012-06-29 22:10:33 UTC (rev 162766)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Kieslich tob...@justdreams.de
 
 pkgname=dcraw
-pkgver=9.12
+pkgver=9.15
 pkgrel=1
 pkgdesc=A command line based converter for digicams raw output
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('lcms' 'jasper')
 
source=(http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz
 license.txt)
-sha1sums=('b0110f83692b14940a8e43759d7ccefa77103cc6'
+sha1sums=('0b06047603640fe19b5d3b2461319d6ba22eee6a'
   '502c8f0ac7434d48f5dcb2eefe7599627cb69454')
 
 build() {

Deleted: dcraw.install
===
--- dcraw.install   2012-06-29 20:58:34 UTC (rev 162765)
+++ dcraw.install   2012-06-29 22:10:33 UTC (rev 162766)
@@ -1,13 +0,0 @@
-post_install() {
-  cat  EOF
-
-NOTE for dcraw:
-
-  == dcraw provides the simple commandline tools for raw conversion. If you
-  == are looking for a more sophisticated way consider gimp-ufraw, which
-  == provides a gimp-plugin and a standalone application that can even convert
-  == to 16-bit tiff files (which you can use in cinepaint eg.) So please do a
-  == 'pacman -S gimp-ufraw' to get it.
-
-EOF
-}



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

2012-06-29 Thread Eric Bélanger
Date: Friday, June 29, 2012 @ 18:10:56
  Author: eric
Revision: 162767

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

Added:
  dcraw/repos/extra-i686/PKGBUILD
(from rev 162766, dcraw/trunk/PKGBUILD)
  dcraw/repos/extra-i686/license.txt
(from rev 162766, dcraw/trunk/license.txt)
  dcraw/repos/extra-x86_64/PKGBUILD
(from rev 162766, dcraw/trunk/PKGBUILD)
  dcraw/repos/extra-x86_64/license.txt
(from rev 162766, dcraw/trunk/license.txt)
Deleted:
  dcraw/repos/extra-i686/PKGBUILD
  dcraw/repos/extra-i686/dcraw.install
  dcraw/repos/extra-i686/license.txt
  dcraw/repos/extra-x86_64/PKGBUILD
  dcraw/repos/extra-x86_64/dcraw.install
  dcraw/repos/extra-x86_64/license.txt

+
 extra-i686/PKGBUILD|   96 +--
 extra-i686/dcraw.install   |   13 -
 extra-i686/license.txt |   32 +++---
 extra-x86_64/PKGBUILD  |   96 +--
 extra-x86_64/dcraw.install |   13 -
 extra-x86_64/license.txt   |   32 +++---
 6 files changed, 128 insertions(+), 154 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-29 22:10:33 UTC (rev 162766)
+++ extra-i686/PKGBUILD 2012-06-29 22:10:56 UTC (rev 162767)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: tobias tob...@archlinux.org
-# Contributor: Tobias Kieslich tob...@justdreams.de
-
-pkgname=dcraw
-pkgver=9.12
-pkgrel=1
-pkgdesc=A command line based converter for digicams raw output
-arch=('i686' 'x86_64')
-url=http://www.cybercom.net/~dcoffin/dcraw/;
-license=('custom')
-depends=('lcms' 'jasper')
-source=(http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz
-license.txt)
-sha1sums=('b0110f83692b14940a8e43759d7ccefa77103cc6'
-  '502c8f0ac7434d48f5dcb2eefe7599627cb69454')
-
-build() {
-  cd ${srcdir}/${pkgname}
-  gcc ${CFLAGS} -O3 -o dcraw dcraw.c \
--Wall -Wno-unused-result -Wno-array-bounds \
--lm -ljasper -ljpeg -llcms -DLOCALEDIR=\/usr/share/locale/\
-}
-
-package() {
-  cd ${srcdir}/${pkgname}
-  install -Dm755 dcraw ${pkgdir}/usr/bin/dcraw
-  install -Dm644 dcraw.1 ${pkgdir}/usr/share/man/man1/dcraw.1
-  
-  for langchar in \
-fr.latin1 it.latin1 de.latin1 pt.latin1 es.latin1 nl.latin1 sv.latin1 \
-ca.latin1 da.latin1 cs.latin2 hu.latin2 pl.latin2 eo.latin3 ru.koi8-r \
-zh_TW.big5 zh_CN.gb2312
-  do
-lang=$(echo $langchar | cut -d. -f1)
-char=$(echo $langchar | cut -d. -f2-)
-if [ -f dcraw_${lang}.1 ]; then
-  mkdir -p -m 755 ${pkgdir}/usr/share/man/$lang/man1
-  iconv -f utf-8 -t $char dcraw_$lang.1  
${pkgdir}/usr/share/man/$lang/man1/dcraw.1
-  mkdir -p -m 755 ${pkgdir}/usr/share/man/$lang.UTF-8/man1
-  cp dcraw_$lang.1 ${pkgdir}/usr/share/man/$lang.UTF-8/man1/dcraw.1
-fi
-mkdir -p -m 755 ${pkgdir}/usr/share/locale/$lang/LC_MESSAGES
-msgfmt -o ${pkgdir}/usr/share/locale/$lang/LC_MESSAGES/dcraw.mo 
dcraw_$lang.po
-  done
-
-  install -Dm644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
-}

Copied: dcraw/repos/extra-i686/PKGBUILD (from rev 162766, dcraw/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-29 22:10:56 UTC (rev 162767)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Tobias Kieslich tob...@justdreams.de
+
+pkgname=dcraw
+pkgver=9.15
+pkgrel=1
+pkgdesc=A command line based converter for digicams raw output
+arch=('i686' 'x86_64')
+url=http://www.cybercom.net/~dcoffin/dcraw/;
+license=('custom')
+depends=('lcms' 'jasper')
+source=(http://www.cybercom.net/~dcoffin/dcraw/archive/${pkgname}-${pkgver}.tar.gz
+license.txt)
+sha1sums=('0b06047603640fe19b5d3b2461319d6ba22eee6a'
+  '502c8f0ac7434d48f5dcb2eefe7599627cb69454')
+
+build() {
+  cd ${srcdir}/${pkgname}
+  gcc ${CFLAGS} -O3 -o dcraw dcraw.c \
+-Wall -Wno-unused-result -Wno-array-bounds \
+-lm -ljasper -ljpeg -llcms -DLOCALEDIR=\/usr/share/locale/\
+}
+
+package() {
+  cd ${srcdir}/${pkgname}
+  install -Dm755 dcraw ${pkgdir}/usr/bin/dcraw
+  install -Dm644 dcraw.1 ${pkgdir}/usr/share/man/man1/dcraw.1
+  
+  for langchar in \
+fr.latin1 it.latin1 de.latin1 pt.latin1 es.latin1 nl.latin1 sv.latin1 \
+ca.latin1 da.latin1 cs.latin2 hu.latin2 pl.latin2 eo.latin3 ru.koi8-r \
+zh_TW.big5 zh_CN.gb2312
+  do
+lang=$(echo $langchar | cut -d. -f1)
+char=$(echo $langchar | cut -d. -f2-)
+if [ -f dcraw_${lang}.1 ]; then
+  mkdir -p -m 755 ${pkgdir}/usr/share/man/$lang/man1
+  iconv -f utf-8 -t $char dcraw_$lang.1  
${pkgdir}/usr/share/man/$lang/man1/dcraw.1
+  mkdir -p -m 755 ${pkgdir}/usr/share/man/$lang.UTF-8/man1
+  cp dcraw_$lang.1 ${pkgdir}/usr/share/man/$lang.UTF-8/man1/dcraw.1
+fi
+mkdir -p -m 755 

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

2012-06-29 Thread Gaetan Bisson
Date: Friday, June 29, 2012 @ 19:57:31
  Author: bisson
Revision: 162768

implement FS#30484

Modified:
  cronie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-29 22:10:56 UTC (rev 162767)
+++ PKGBUILD2012-06-29 23:57:31 UTC (rev 162768)
@@ -9,7 +9,8 @@
 license=('custom:BSD')
 arch=('i686' 'x86_64')
 depends=('pam' 'bash' 'run-parts')
-optdepends=('smtp-server: sending cron job output via email')
+optdepends=('pm-utils: defer anacron when on battery power'
+'smtp-server: sending cron job output via email')
 
 
source=(https://fedorahosted.org/releases/c/r/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 'cron.deny'