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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 02:18:53
  Author: allan
Revision: 75263

upgpkg: gtk2 2.20.0-2
openssl rebuild

Modified:
  gtk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 05:56:48 UTC (rev 75262)
+++ PKGBUILD2010-04-01 06:18:53 UTC (rev 75263)
@@ -3,7 +3,7 @@
 
 pkgname=gtk2
 pkgver=2.20.0
-pkgrel=1
+pkgrel=2
 pkgdesc=The GTK+ Toolkit (v2)
 arch=(i686 x86_64)
 url=http://www.gtk.org/;



[arch-commits] Commit in virtuoso/trunk (PKGBUILD openssl-1.0.patch)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:24:36
  Author: pierre
Revision: 75264

upgpkg: virtuoso 6.1.0-2
openssl/heimdal rebuild

Added:
  virtuoso/trunk/openssl-1.0.patch
Modified:
  virtuoso/trunk/PKGBUILD

---+
 PKGBUILD  |   10 +++-
 openssl-1.0.patch |  114 
 2 files changed, 121 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 06:18:53 UTC (rev 75263)
+++ PKGBUILD2010-04-01 06:24:36 UTC (rev 75264)
@@ -4,7 +4,7 @@
 
 pkgname=virtuoso
 pkgver=6.1.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 pkgdesc='A scalable cross-platform server that combines SQL/RDF/XML Data 
Management with Web Application Server and Web Services Platform functionality'
 url='http://virtuoso.openlinksw.com/wiki/main/Main/'
@@ -12,11 +12,15 @@
 depends=('openssl')
 makedepends=('bison' 'flex')
 options=('!libtool' '!makeflags')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-opensource-${pkgver}.tar.gz;)
-md5sums=('49135390d27ab3e445f5e9481ab677bb')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-opensource-${pkgver}.tar.gz;
+'openssl-1.0.patch')
+md5sums=('49135390d27ab3e445f5e9481ab677bb'
+ 'b4caff9deb6d3f3e4cbbf90967e07360')
 
 build() {
   cd $srcdir/${pkgname}-opensource-${pkgver}
+  # see http://cvs.fedoraproject.org/viewvc/rpms/virtuoso-opensource/devel/
+  patch -p1 -i ${srcdir}/openssl-1.0.patch || return 1
 
   ./configure --prefix=/usr \
 --localstatedir=/var \

Added: openssl-1.0.patch
===
--- openssl-1.0.patch   (rev 0)
+++ openssl-1.0.patch   2010-04-01 06:24:36 UTC (rev 75264)
@@ -0,0 +1,114 @@
+diff -up virtuoso-opensource-5.0.11/libsrc/Dk/Dkernel.c.openssl 
virtuoso-opensource-5.0.11/libsrc/Dk/Dkernel.c
+--- virtuoso-opensource-5.0.11/libsrc/Dk/Dkernel.c.openssl 2009-04-17 
22:07:28.0 +0200
 virtuoso-opensource-5.0.11/libsrc/Dk/Dkernel.c 2009-08-26 
16:03:23.0 +0200
+@@ -4798,7 +4798,11 @@ dk_ssl_free (void *old)
+ static void
+ ssl_server_init ()
+ {
++#if (OPENSSL_VERSION_NUMBER = 0x1000L)
++  const SSL_METHOD *ssl_server_method = NULL;
++#else
+   SSL_METHOD *ssl_server_method = NULL;
++#endif
+   unsigned char tmp[1024];
+ #ifndef NO_THREAD
+   char err_buf[1024];
+@@ -4888,12 +4892,12 @@ ssl_server_init ()
+   SSL_CTX_set_session_id_context (ssl_server_ctx, (unsigned char *) 
session_id_context, sizeof session_id_context);
+ 
+   skCAList = SSL_CTX_get_client_CA_list (ssl_server_ctx);
+-  if (sk_num ((STACK *) skCAList) == 0)
++  if (sk_X509_NAME_num (skCAList) == 0)
+   log_warning (ODBC X509 Client authentication requested but no CA known 
for verification);
+-  for (i = 0; i  sk_num ((STACK *) skCAList); i++)
++  for (i = 0; i  sk_X509_NAME_num (skCAList); i++)
+   {
+ char ca_buf[1024];
+-X509_NAME *ca_name = (X509_NAME *) sk_value ((STACK *) skCAList, i);
++X509_NAME *ca_name = (X509_NAME *) sk_X509_NAME_value (skCAList, i);
+ if (X509_NAME_oneline (ca_name, ca_buf, sizeof (ca_buf)))
+   log_debug (ODBC Server Using X509 Client CA %s, ca_buf);
+   }
+@@ -5058,7 +5062,7 @@ ssl_setup:
+ 
+   if (ca  ca[0] != 0)
+ {
+-  sk_pop_free ((STACK *) ca_list, (void (*)(void *)) X509_free);
++  sk_X509_pop_free (ca_list, X509_free);
+   ca_list = NULL;
+   ca_list = PEM_load_certs (ca, passwd);
+ }
+@@ -5067,30 +5071,30 @@ ssl_setup:
+ {
+   X509_free (cert);
+   EVP_PKEY_free (pkey);
+-  sk_pop_free ((STACK *) ca_list, (void (*)(void *)) X509_free);
++  sk_X509_pop_free (ca_list, X509_free);
+   return 0;
+ }
+   EVP_PKEY_free (pkey);
+   if (!SSL_use_certificate (ssl, cert))
+ {
+   X509_free (cert);
+-  sk_pop_free ((STACK *) ca_list, (void (*)(void *)) X509_free);
++  sk_X509_pop_free (ca_list, X509_free);
+   return 0;
+ }
+   X509_free (cert);
+ 
+   if (!SSL_check_private_key (ssl))
+ {
+-  sk_pop_free ((STACK *) ca_list, (void (*)(void *)) X509_free);
++  sk_X509_pop_free (ca_list, X509_free);
+   return 0;
+ }
+-  for (i = 0; i  sk_num ((STACK *) ca_list); i++)
++  for (i = 0; i  sk_X509_num (ca_list); i++)
+ {
+-  X509 *ca = (X509 *) sk_value ((STACK *) ca_list, i);
++  X509 *ca = sk_X509_value (ca_list, i);
+   SSL_add_client_CA (ssl, ca);
+   X509_STORE_add_cert (SSL_CTX_get_cert_store (ssl_ctx), ca);
+ }
+-  sk_pop_free ((STACK *) ca_list, (void (*)(void *)) X509_free);
++  sk_X509_pop_free (ca_list, X509_free);
+   return 1;
+ }
+ 
+diff -up virtuoso-opensource-5.0.11/libsrc/Wi/http.c.openssl 
virtuoso-opensource-5.0.11/libsrc/Wi/http.c
+--- virtuoso-opensource-5.0.11/libsrc/Wi/http.c.openssl2009-04-19 
23:48:56.0 +0200
 

[arch-commits] Commit in gtk2/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 02:25:13
  Author: allan
Revision: 75265

archrelease: copy trunk to testing-i686

Added:
  gtk2/repos/testing-i686/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:25:32
  Author: pierre
Revision: 75266

upgpkg: lighttpd 1.4.26-3
openssl/heimdal rebuild

Modified:
  lighttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 06:25:13 UTC (rev 75265)
+++ PKGBUILD2010-04-01 06:25:32 UTC (rev 75266)
@@ -3,7 +3,7 @@
 
 pkgname=lighttpd
 pkgver=1.4.26
-pkgrel=2
+pkgrel=3
 pkgdesc='a secure, fast, compliant and very flexible web-server'
 license=('custom')
 arch=('i686' 'x86_64')
@@ -48,6 +48,10 @@
--with-memcache \
--with-lua
make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
 
install -D -m755 $srcdir/lighttpd.rc.d $pkgdir/etc/rc.d/lighttpd



[arch-commits] Commit in virtuoso/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:25:51
  Author: pierre
Revision: 75267

archrelease: copy trunk to testing-i686

Added:
  virtuoso/repos/testing-i686/



[arch-commits] Commit in lighttpd/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:25:53
  Author: pierre
Revision: 75268

archrelease: copy trunk to testing-i686

Added:
  lighttpd/repos/testing-i686/



[arch-commits] Commit in lighttpd/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:26:32
  Author: pierre
Revision: 75269

archrelease: copy trunk to testing-x86_64

Added:
  lighttpd/repos/testing-x86_64/



[arch-commits] Commit in virtuoso/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:27:11
  Author: pierre
Revision: 75270

archrelease: copy trunk to testing-x86_64

Added:
  virtuoso/repos/testing-x86_64/



[arch-commits] Commit in gtk2/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 02:31:36
  Author: allan
Revision: 75271

archrelease: copy trunk to testing-x86_64

Added:
  gtk2/repos/testing-x86_64/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:38:15
  Author: pierre
Revision: 75272

upgpkg: apache 2.2.15-2
openssl/heimdal rebuild

Modified:
  apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 06:31:36 UTC (rev 75271)
+++ PKGBUILD2010-04-01 06:38:15 UTC (rev 75272)
@@ -4,7 +4,7 @@
 
 pkgname=apache
 pkgver=2.2.15
-pkgrel=1
+pkgrel=2
 pkgdesc='A high performance Unix-based HTTP server'
 arch=('i686' 'x86_64')
 options=('!libtool')
@@ -52,7 +52,7 @@
 build() {
cd ${srcdir}/httpd-${pkgver}
 
-  patch -Np0 -i ${srcdir}/apachectl-confd.patch || return 1
+   patch -Np0 -i ${srcdir}/apachectl-confd.patch || return 1
 
# set default user
sed -e 's#User daemon#User http#' \
@@ -113,7 +113,7 @@
 
install -D -m755 ${srcdir}/httpd ${pkgdir}/etc/rc.d/httpd || return 
1
install -D -m644 ${srcdir}/httpd.logrotate 
${pkgdir}/etc/logrotate.d/httpd || return 1
-  install -D -m644 ${srcdir}/apache.conf.d ${pkgdir}/etc/conf.d/apache || 
return 1
+   install -D -m644 ${srcdir}/apache.conf.d 
${pkgdir}/etc/conf.d/apache || return 1
 
# symlinks for /etc/httpd
ln -fs /var/log/httpd ${pkgdir}/etc/httpd/logs



[arch-commits] Commit in apache/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:38:41
  Author: pierre
Revision: 75273

archrelease: copy trunk to testing-i686

Added:
  apache/repos/testing-i686/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:38:56
  Author: pierre
Revision: 75274

upgpkg: libssh 0.4.1-2
openssl/heimdal rebuild

Modified:
  libssh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 06:38:41 UTC (rev 75273)
+++ PKGBUILD2010-04-01 06:38:56 UTC (rev 75274)
@@ -5,7 +5,7 @@
 
 pkgname=libssh
 pkgver=0.4.1
-pkgrel=1 
+pkgrel=2
 pkgdesc=Library for accessing ssh client services through C libraries
 url=http://www.libssh.org/;
 license=('LGPL')



[arch-commits] Commit in apache/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:39:09
  Author: pierre
Revision: 75275

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/



[arch-commits] Commit in libssh/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:39:16
  Author: pierre
Revision: 75276

archrelease: copy trunk to testing-i686

Added:
  libssh/repos/testing-i686/



[arch-commits] Commit in libssh/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:39:34
  Author: pierre
Revision: 75277

archrelease: copy trunk to testing-x86_64

Added:
  libssh/repos/testing-x86_64/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:52:47
  Author: pierre
Revision: 75278

upgpkg: net-snmp 5.5-3
openssl/heimdal rebuild

Modified:
  net-snmp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 06:39:34 UTC (rev 75277)
+++ PKGBUILD2010-04-01 06:52:47 UTC (rev 75278)
@@ -4,7 +4,7 @@
 
 pkgname=net-snmp
 pkgver=5.5
-pkgrel=2
+pkgrel=3
 pkgdesc=A suite of applications used to implement SNMP v1, SNMP v2c and SNMP 
v3 using both IPv4 and IPv6
 arch=('i686' 'x86_64')
 url=http://www.net-snmp.org/;
@@ -35,6 +35,10 @@
 --with-mib-modules=host misc/ipfwacc ucd-snmp/diskio tunnel 
ucd-snmp/dlmod \
 --with-persistent-directory=/var/net-snmp || return 1
   make NETSNMP_DONT_CHECK_VERSION=1 LDFLAGS+=-Wl,-rpath 
-Wl,/usr/lib/perl5/core_perl/CORE || return 1
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} INSTALL_PREFIX=${pkgdir} INSTALLDIRS=vendor 
install || return 1
   install -D -m755 ${srcdir}/snmpd.rc ${pkgdir}/etc/rc.d/snmpd || return 1
   install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING 
|| return 1



[arch-commits] Commit in net-snmp/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:53:27
  Author: pierre
Revision: 75279

archrelease: copy trunk to testing-i686

Added:
  net-snmp/repos/testing-i686/



[arch-commits] Commit in net-snmp/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 02:54:06
  Author: pierre
Revision: 75280

archrelease: copy trunk to testing-x86_64

Added:
  net-snmp/repos/testing-x86_64/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 03:02:49
  Author: pierre
Revision: 75281

upgpkg: postgresql 8.4.3-2
openssl/heimdal rebuild

Modified:
  postgresql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 06:54:06 UTC (rev 75280)
+++ PKGBUILD2010-04-01 07:02:49 UTC (rev 75281)
@@ -4,7 +4,7 @@
 pkgbase=('postgresql')
 pkgname=('postgresql-libs' 'postgresql')
 pkgver=8.4.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://www.postgresql.org;
 license=('BSD')



[arch-commits] Commit in postgresql/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 03:03:57
  Author: pierre
Revision: 75282

archrelease: copy trunk to testing-i686

Added:
  postgresql/repos/testing-i686/



[arch-commits] Commit in postgresql/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 03:05:07
  Author: pierre
Revision: 75283

archrelease: copy trunk to testing-x86_64

Added:
  postgresql/repos/testing-x86_64/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 03:07:12
  Author: pierre
Revision: 75284

upgpkg: imap 2007e-2
openssl/heimdal rebuild

Modified:
  imap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 07:05:07 UTC (rev 75283)
+++ PKGBUILD2010-04-01 07:07:12 UTC (rev 75284)
@@ -2,7 +2,7 @@
 # Maintainer: judd jvi...@zeroflux.org
 pkgname=imap
 pkgver=2007e
-pkgrel=1
+pkgrel=2
 pkgdesc=An IMAP/POP server
 arch=('i686' 'x86_64')
 license=('APACHE')
@@ -32,11 +32,14 @@
   cd $srcdir/$pkgname-$pkgver
   # NOTE: if you wish to enforce SSL, use SSLTYPE=unix.nopwd
 
-if [ $CARCH == x86_64 ]; then
-   yes y | make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix 
EXTRACFLAGS=${CFLAGS} -fPIC || return 1
-  else yes y | make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix || return 1
-fi
+  if [ $CARCH == x86_64 ]; then
+ yes y | make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix 
EXTRACFLAGS=${CFLAGS} -fPIC || return 1
+else yes y | make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix || return 1
+  fi
+}
 
+package() {
+  cd $srcdir/$pkgname-$pkgver
   mkdir -p $pkgdir/usr/sbin
   install -D -m755 imapd/imapd $pkgdir/usr/sbin/imapd
   install -D -m755 ipopd/ipop2d $pkgdir/usr/sbin/ipop2d



[arch-commits] Commit in imap/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 03:07:35
  Author: pierre
Revision: 75285

archrelease: copy trunk to testing-i686

Added:
  imap/repos/testing-i686/



[arch-commits] Commit in imap/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 03:07:58
  Author: pierre
Revision: 75286

archrelease: copy trunk to testing-x86_64

Added:
  imap/repos/testing-x86_64/



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

2010-04-01 Thread Juergen Hoetzel
Date: Thursday, April 1, 2010 @ 04:04:38
  Author: juergen
Revision: 75287

rebuild against sbcl 1.0.37

Modified:
  maxima/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 07:07:58 UTC (rev 75286)
+++ PKGBUILD2010-04-01 08:04:38 UTC (rev 75287)
@@ -4,12 +4,12 @@
 
 pkgname=maxima
 pkgver=5.20.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Maxima - a sophisticated computer algebra system
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://maxima.sourceforge.net;
-depends=('sbcl=1.0.35' 'texinfo' 'sh')
+depends=('sbcl=1.0.37' 'texinfo' 'sh')
 optdepends=('gnuplot: plotting capabilities' \
'rlwrap: readline support via /usr/bin/rmaxima' \
'tk: graphical xmaxima interface')



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

2010-04-01 Thread Juergen Hoetzel
Date: Thursday, April 1, 2010 @ 04:05:13
  Author: juergen
Revision: 75288

archrelease: remove extra-x86_64

Deleted:
  maxima/repos/extra-x86_64/



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

2010-04-01 Thread Juergen Hoetzel
Date: Thursday, April 1, 2010 @ 04:05:25
  Author: juergen
Revision: 75289

archrelease: copy trunk to extra-x86_64

Added:
  maxima/repos/extra-x86_64/



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

2010-04-01 Thread Juergen Hoetzel
Date: Thursday, April 1, 2010 @ 04:21:31
  Author: juergen
Revision: 75290

archrelease: remove extra-i686

Deleted:
  maxima/repos/extra-i686/



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

2010-04-01 Thread Juergen Hoetzel
Date: Thursday, April 1, 2010 @ 04:21:42
  Author: juergen
Revision: 75291

archrelease: copy trunk to extra-i686

Added:
  maxima/repos/extra-i686/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 04:54:50
  Author: pierre
Revision: 75292

upgpkg: qt 4.6.2-3
openssl/heimdal rebuild

Modified:
  qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 08:21:42 UTC (rev 75291)
+++ PKGBUILD2010-04-01 08:54:50 UTC (rev 75292)
@@ -3,7 +3,7 @@
 
 pkgname=qt
 pkgver=4.6.2
-pkgrel=2
+pkgrel=3
 pkgdesc='A cross-platform application and UI framework'
 arch=('i686' 'x86_64')
 url='http://qt.nokia.com/'



[arch-commits] Commit in qt/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 04:59:13
  Author: pierre
Revision: 75293

archrelease: copy trunk to testing-i686

Added:
  qt/repos/testing-i686/



[arch-commits] Commit in qt/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 04:59:30
  Author: pierre
Revision: 75294

archrelease: copy trunk to testing-x86_64

Added:
  qt/repos/testing-x86_64/



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

2010-04-01 Thread Andrea Scarpino
Date: Thursday, April 1, 2010 @ 05:07:13
  Author: andrea
Revision: 75295

fix source

Modified:
  gtkpod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 08:59:30 UTC (rev 75294)
+++ PKGBUILD2010-04-01 09:07:13 UTC (rev 75295)
@@ -12,7 +12,7 @@
 install=${pkgname}.install
 depends=('libgpod=0.7.0' 'libmp4v2' 'flac' 'libid3tag' 'gnome-vfs' 
'libgnomecanvas' 'flac' 'libvorbis' 'curl' 'libglade')
 makedepends=('intltool')
-source=(http://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
 md5sums=('ebe076cc8b623c3ae6b0f0f733019eec')
 
 build() {



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

2010-04-01 Thread Andrea Scarpino
Date: Thursday, April 1, 2010 @ 05:09:08
  Author: andrea
Revision: 75297

fix source

Modified:
  i8kutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 09:07:21 UTC (rev 75296)
+++ PKGBUILD2010-04-01 09:09:08 UTC (rev 75297)
@@ -1,6 +1,6 @@
 # $Id$
+# Maintainer: Thayer Williams tha...@archlinux.org
 # Contributor: Eric Johnson e...@coding-zone.com
-# Maintainer: Thayer Williams tha...@archlinux.org
 
 pkgname=i8kutils
 pkgver=1.33
@@ -10,7 +10,7 @@
 license=('GPL2')
 arch=('i686' 'x86_64')
 depends=('glibc')
-source=(http://ftp.archlinux.org/other/i8kutils/$pkgname\_$pkgver.tar.gz)
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}_${pkgver}.tar.gz)
 md5sums=('1ab077b301dbb0f4be8ef52eb3b97628')
 
 build() {



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 05:24:41
  Author: allan
Revision: 75298

upgpkg: pyopenssl 0.10-2
openssl rebuild

Modified:
  pyopenssl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 09:09:08 UTC (rev 75297)
+++ PKGBUILD2010-04-01 09:24:41 UTC (rev 75298)
@@ -4,7 +4,7 @@
 
 pkgname=pyopenssl
 pkgver=0.10
-pkgrel=1
+pkgrel=2
 pkgdesc=pyOpenSSL is a Python interface to the OpenSSL library
 arch=('i686' 'x86_64')
 url=http://pyopenssl.sourceforge.net;



[arch-commits] Commit in pyopenssl/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 05:25:21
  Author: allan
Revision: 75299

archrelease: copy trunk to testing-i686

Added:
  pyopenssl/repos/testing-i686/



[arch-commits] Commit in pyopenssl/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 05:25:58
  Author: allan
Revision: 75300

archrelease: copy trunk to testing-x86_64

Added:
  pyopenssl/repos/testing-x86_64/



[arch-commits] Commit in perl-net-ssleay/trunk (PKGBUILD)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 05:46:45
  Author: giovanni
Revision: 75301

upgpkg: perl-net-ssleay 1.36-2
openssl-1 rebuild

Modified:
  perl-net-ssleay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 09:25:58 UTC (rev 75300)
+++ PKGBUILD2010-04-01 09:46:45 UTC (rev 75301)
@@ -5,7 +5,7 @@
 pkgname=perl-net-ssleay
 _cpanname=Net-SSLeay
 pkgver=1.36
-pkgrel=1
+pkgrel=2
 pkgdesc=Perl extension for using OpenSSL
 arch=('i686' 'x86_64')
 license=('custom:BSD')



[arch-commits] Commit in perl-net-ssleay/repos (testing-x86_64)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 05:47:28
  Author: giovanni
Revision: 75303

archrelease: copy trunk to testing-x86_64

Added:
  perl-net-ssleay/repos/testing-x86_64/



[arch-commits] Commit in perl-crypt-ssleay/trunk (PKGBUILD)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 05:52:10
  Author: giovanni
Revision: 75304

upgpkg: perl-crypt-ssleay 0.57-4
openssl-1 rebuild

Modified:
  perl-crypt-ssleay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 09:47:28 UTC (rev 75303)
+++ PKGBUILD2010-04-01 09:52:10 UTC (rev 75304)
@@ -4,7 +4,7 @@
 
 pkgname=perl-crypt-ssleay
 pkgver=0.57
-pkgrel=3
+pkgrel=4
 pkgdesc=OpenSSL glue that provides LWP https support
 arch=('i686' 'x86_64')
 url=http://search.cpan.org/dist/Crypt-SSLeay;



[arch-commits] Commit in perl-crypt-ssleay/repos (testing-i686)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 05:52:30
  Author: giovanni
Revision: 75305

archrelease: copy trunk to testing-i686

Added:
  perl-crypt-ssleay/repos/testing-i686/



[arch-commits] Commit in perl-crypt-ssleay/repos (testing-x86_64)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 05:52:51
  Author: giovanni
Revision: 75306

archrelease: copy trunk to testing-x86_64

Added:
  perl-crypt-ssleay/repos/testing-x86_64/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 05:52:56
  Author: allan
Revision: 75307

upgpkg: python24 2.4.6-3
openssl rebuild

Modified:
  python24/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 09:52:51 UTC (rev 75306)
+++ PKGBUILD2010-04-01 09:52:56 UTC (rev 75307)
@@ -4,7 +4,7 @@
 
 pkgname=python24
 pkgver=2.4.6
-pkgrel=2
+pkgrel=3
 pkgdesc=A high-level scripting language
 arch=('i686' 'x86_64')
 license=('custom')



[arch-commits] Commit in python24/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 05:59:32
  Author: allan
Revision: 75308

archrelease: copy trunk to testing-i686

Added:
  python24/repos/testing-i686/



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

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 06:05:16
  Author: giovanni
Revision: 75309

upgpkg: tcpdump 4.1.0-2
openssl-1 rebuild

Modified:
  tcpdump/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 09:59:32 UTC (rev 75308)
+++ PKGBUILD2010-04-01 10:05:16 UTC (rev 75309)
@@ -3,8 +3,8 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=tcpdump
-pkgver=4.1
-pkgrel=1
+pkgver=4.1.0
+pkgrel=2
 pkgdesc=A tool for network monitoring and data acquisition
 arch=('i686' 'x86_64')
 url=http://www.tcpdump.org;
@@ -14,7 +14,7 @@
 md5sums=('949d4661a7501cfedf7b1eb858302c9c')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-4.1
 
   ./configure --prefix=/usr \
   --enable-ipv6



[arch-commits] Commit in tcpdump/repos (testing-i686)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 06:05:42
  Author: giovanni
Revision: 75310

archrelease: copy trunk to testing-i686

Added:
  tcpdump/repos/testing-i686/



[arch-commits] Commit in tcpdump/repos (testing-x86_64)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 06:06:16
  Author: giovanni
Revision: 75311

archrelease: copy trunk to testing-x86_64

Added:
  tcpdump/repos/testing-x86_64/



[arch-commits] Commit in python24/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:06:21
  Author: allan
Revision: 75312

archrelease: copy trunk to testing-x86_64

Added:
  python24/repos/testing-x86_64/



[arch-commits] Commit in e2fsprogs/repos (core-i686)

2010-04-01 Thread Ronald van Haren
Date: Thursday, April 1, 2010 @ 06:08:21
  Author: ronald
Revision: 75313

db-move: e2fsprogs removed by ronald for move to core

Deleted:
  e2fsprogs/repos/core-i686/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:08:21
  Author: allan
Revision: 75314

upgpkg: alpine 2.00-8
openssl rebuild

Modified:
  alpine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 10:08:21 UTC (rev 75313)
+++ PKGBUILD2010-04-01 10:08:21 UTC (rev 75314)
@@ -4,7 +4,7 @@
 
 pkgname=alpine
 pkgver=2.00
-pkgrel=7
+pkgrel=8
 _patchlevel=53
 pkgdesc=The Apache-licensed PINE (a tool for reading, sending, and managing 
electronic messages)
 arch=('i686' 'x86_64')



[arch-commits] Commit in e2fsprogs/repos (core-i686 testing-i686)

2010-04-01 Thread Ronald van Haren
Date: Thursday, April 1, 2010 @ 06:08:21
  Author: ronald
Revision: 75315

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

Added:
  e2fsprogs/repos/core-i686/
Deleted:
  e2fsprogs/repos/testing-i686/



[arch-commits] Commit in e2fsprogs/repos (core-x86_64)

2010-04-01 Thread Ronald van Haren
Date: Thursday, April 1, 2010 @ 06:08:27
  Author: ronald
Revision: 75316

db-move: e2fsprogs removed by ronald for move to core

Deleted:
  e2fsprogs/repos/core-x86_64/



[arch-commits] Commit in e2fsprogs/repos (core-x86_64 testing-x86_64)

2010-04-01 Thread Ronald van Haren
Date: Thursday, April 1, 2010 @ 06:08:28
  Author: ronald
Revision: 75317

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

Added:
  e2fsprogs/repos/core-x86_64/
Deleted:
  e2fsprogs/repos/testing-x86_64/



[arch-commits] Commit in alpine/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:10:40
  Author: allan
Revision: 75318

archrelease: copy trunk to testing-i686

Added:
  alpine/repos/testing-i686/



[arch-commits] Commit in alpine/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:13:05
  Author: allan
Revision: 75319

archrelease: copy trunk to testing-x86_64

Added:
  alpine/repos/testing-x86_64/



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

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 06:13:29
  Author: giovanni
Revision: 75320

upgpkg: irssi 0.8.14-4
openssl-1 rebuild

Modified:
  irssi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 10:13:05 UTC (rev 75319)
+++ PKGBUILD2010-04-01 10:13:29 UTC (rev 75320)
@@ -4,13 +4,13 @@
 
 pkgname=irssi
 pkgver=0.8.14
-pkgrel=3
+pkgrel=4
 pkgdesc=Modular text mode IRC client with Perl scripting
 arch=('i686' 'x86_64')
 url=http://irssi.org/;
 license=('GPL')
 depends=('glib2' 'openssl')
-makedepends=('perl=5.10.1')
+makedepends=('perl')
 optdepends=('perl-libwww: for the scriptassist script')
 backup=(etc/irssi.conf)
 source=(http://irssi.org/files/${pkgname}-${pkgver}.tar.bz2)
@@ -27,4 +27,3 @@
   make || return 1
   make DESTDIR=${pkgdir} install
 }
-



[arch-commits] Commit in irssi/repos (testing-i686)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 06:13:54
  Author: giovanni
Revision: 75321

archrelease: copy trunk to testing-i686

Added:
  irssi/repos/testing-i686/



[arch-commits] Commit in irssi/repos (testing-x86_64)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 06:14:20
  Author: giovanni
Revision: 75322

archrelease: copy trunk to testing-x86_64

Added:
  irssi/repos/testing-x86_64/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:16:24
  Author: allan
Revision: 75323

upgpkg: autofs 5.0.5-3
openssl rebuild

Modified:
  autofs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 10:14:20 UTC (rev 75322)
+++ PKGBUILD2010-04-01 10:16:24 UTC (rev 75323)
@@ -5,7 +5,7 @@
 
 pkgname=autofs
 pkgver=5.0.5
-pkgrel=2
+pkgrel=3
 pkgdesc=A kernel-based automounter for Linux
 arch=('i686' 'x86_64')
 url=http://wiki.autofs.net/FrontPage;



[arch-commits] Commit in autofs/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:17:11
  Author: allan
Revision: 75324

archrelease: copy trunk to testing-i686

Added:
  autofs/repos/testing-i686/



[arch-commits] Commit in autofs/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:17:59
  Author: allan
Revision: 75325

archrelease: copy trunk to testing-x86_64

Added:
  autofs/repos/testing-x86_64/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:25:20
  Author: allan
Revision: 75326

upgpkg: cvs 1.11.23-5
heimdal rebuild

Modified:
  cvs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 10:17:59 UTC (rev 75325)
+++ PKGBUILD2010-04-01 10:25:20 UTC (rev 75326)
@@ -3,7 +3,7 @@
 
 pkgname=cvs
 pkgver=1.11.23
-pkgrel=4
+pkgrel=5
 pkgdesc=Concurrent Versions System - a source control system
 arch=(i686 x86_64)
 url=http://cvs.nongnu.org;



[arch-commits] Commit in cvs/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:26:21
  Author: allan
Revision: 75327

archrelease: copy trunk to testing-i686

Added:
  cvs/repos/testing-i686/



[arch-commits] Commit in cvs/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:27:23
  Author: allan
Revision: 75328

archrelease: copy trunk to testing-x86_64

Added:
  cvs/repos/testing-x86_64/



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

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 06:29:24
  Author: giovanni
Revision: 75329

upgpkg: gftp 2.0.19-3
openssl-1 + heimdal rebuild

Modified:
  gftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 10:27:23 UTC (rev 75328)
+++ PKGBUILD2010-04-01 10:29:24 UTC (rev 75329)
@@ -4,7 +4,7 @@
 
 pkgname=gftp
 pkgver=2.0.19
-pkgrel=2
+pkgrel=3
 pkgdesc=A multithreaded ftp client for X Windows
 arch=('i686' 'x86_64')
 depends=('gtk2' 'openssl' 'readline')



[arch-commits] Commit in gftp/repos (testing-i686)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 06:29:58
  Author: giovanni
Revision: 75330

archrelease: copy trunk to testing-i686

Added:
  gftp/repos/testing-i686/



[arch-commits] Commit in gftp/repos (testing-x86_64)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 06:30:28
  Author: giovanni
Revision: 75331

archrelease: copy trunk to testing-x86_64

Added:
  gftp/repos/testing-x86_64/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:36:02
  Author: allan
Revision: 75332

upgpkg: cyrus-sasl-plugins 2.1.23-2
heimdal and openssl rebuild

Modified:
  cyrus-sasl-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 10:30:28 UTC (rev 75331)
+++ PKGBUILD2010-04-01 10:36:02 UTC (rev 75332)
@@ -3,7 +3,7 @@
 
 pkgname=cyrus-sasl-plugins
 pkgver=2.1.23
-pkgrel=1
+pkgrel=2
 pkgdesc=Cyrus Simple Authentication Service Layer (SASL) library
 arch=('i686' 'x86_64')
 url=http://cyrusimap.web.cmu.edu/;



[arch-commits] Commit in cyrus-sasl-plugins/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:36:37
  Author: allan
Revision: 75333

archrelease: copy trunk to testing-i686

Added:
  cyrus-sasl-plugins/repos/testing-i686/



[arch-commits] Commit in cyrus-sasl-plugins/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:37:10
  Author: allan
Revision: 75334

archrelease: copy trunk to testing-x86_64

Added:
  cyrus-sasl-plugins/repos/testing-x86_64/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:43:20
  Author: allan
Revision: 75335

upgpkg: cyrus-sasl 2.1.23-4
heimdal and openssl rebuild

Modified:
  cyrus-sasl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 10:37:10 UTC (rev 75334)
+++ PKGBUILD2010-04-01 10:43:20 UTC (rev 75335)
@@ -3,7 +3,7 @@
 
 pkgname=cyrus-sasl
 pkgver=2.1.23
-pkgrel=3
+pkgrel=4
 pkgdesc=SASL authentication daemon
 arch=('i686' 'x86_64')
 license=('custom')



[arch-commits] Commit in cyrus-sasl/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:43:54
  Author: allan
Revision: 75336

archrelease: copy trunk to testing-i686

Added:
  cyrus-sasl/repos/testing-i686/



[arch-commits] Commit in cyrus-sasl/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:44:27
  Author: allan
Revision: 75337

archrelease: copy trunk to testing-x86_64

Added:
  cyrus-sasl/repos/testing-x86_64/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:50:35
  Author: allan
Revision: 75338

upgpkg: dovecot 1.2.11-2
heimdal and openssl rebuild

Modified:
  dovecot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 10:44:27 UTC (rev 75337)
+++ PKGBUILD2010-04-01 10:50:35 UTC (rev 75338)
@@ -7,7 +7,7 @@
 
 pkgname=dovecot
 pkgver=1.2.11
-pkgrel=1
+pkgrel=2
 pkgdesc=An IMAP and POP3 server written with security primarily in mind
 arch=('i686' 'x86_64')
 url=http://dovecot.org/;



[arch-commits] Commit in dovecot/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:54:46
  Author: allan
Revision: 75340

archrelease: copy trunk to testing-x86_64

Added:
  dovecot/repos/testing-x86_64/



[arch-commits] Commit in libgnomecups/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:57:17
  Author: allan
Revision: 75342

archrelease: copy trunk to testing-i686

Added:
  libgnomecups/repos/testing-i686/



[arch-commits] Commit in libgnomecups/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 06:57:50
  Author: allan
Revision: 75343

archrelease: copy trunk to testing-x86_64

Added:
  libgnomecups/repos/testing-x86_64/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:05:03
  Author: allan
Revision: 75344

upgpkg: libgnomeprint 2.18.7-2
heimdal and openssl rebuild

Modified:
  libgnomeprint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 10:57:50 UTC (rev 75343)
+++ PKGBUILD2010-04-01 11:05:03 UTC (rev 75344)
@@ -3,7 +3,7 @@
 
 pkgname=libgnomeprint
 pkgver=2.18.7
-pkgrel=1
+pkgrel=2
 pkgdesc=Printing routines for GNOME
 arch=(i686 x86_64)
 license=('LGPL' 'GPL')



[arch-commits] Commit in libgnomeprint/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:06:01
  Author: allan
Revision: 75345

archrelease: copy trunk to testing-i686

Added:
  libgnomeprint/repos/testing-i686/



[arch-commits] Commit in libgnomeprint/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:06:50
  Author: allan
Revision: 75346

archrelease: copy trunk to testing-x86_64

Added:
  libgnomeprint/repos/testing-x86_64/



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

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 07:14:22
  Author: giovanni
Revision: 75347

upgpkg: samba 3.5.1-2
openssl-1 + heimdal rebuild

Modified:
  samba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 11:06:50 UTC (rev 75346)
+++ PKGBUILD2010-04-01 11:14:22 UTC (rev 75347)
@@ -8,7 +8,7 @@
 # to append 'a','b',etc to their subsequent releases, which pamcan
 # misconstrues as alpha, beta, etc.  Bad samba!
 _realver=3.5.1
-pkgrel=1
+pkgrel=2
 arch=(i686 x86_64)
 url=http://www.samba.org;
 license=('GPL3')



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:15:08
  Author: allan
Revision: 75348

upgpkg: xfprint 4.6.1-3
heimdal and openssl rebuild

Modified:
  xfprint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 11:14:22 UTC (rev 75347)
+++ PKGBUILD2010-04-01 11:15:08 UTC (rev 75348)
@@ -3,7 +3,7 @@
 
 pkgname=xfprint
 pkgver=4.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc=A print dialog and a printer manager for Xfce
 arch=(i686 x86_64)
 license=('GPL2')



[arch-commits] Commit in xfprint/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:16:06
  Author: allan
Revision: 75349

archrelease: copy trunk to testing-i686

Added:
  xfprint/repos/testing-i686/



[arch-commits] Commit in xfprint/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:17:06
  Author: allan
Revision: 75350

archrelease: copy trunk to testing-x86_64

Added:
  xfprint/repos/testing-x86_64/



[arch-commits] Commit in samba/repos (testing-i686)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 07:17:57
  Author: giovanni
Revision: 75351

archrelease: copy trunk to testing-i686

Added:
  samba/repos/testing-i686/



[arch-commits] Commit in samba/repos (testing-x86_64)

2010-04-01 Thread Giovanni Scafora
Date: Thursday, April 1, 2010 @ 07:22:06
  Author: giovanni
Revision: 75352

archrelease: copy trunk to testing-x86_64

Added:
  samba/repos/testing-x86_64/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:30:52
  Author: allan
Revision: 75353

upgpkg: bind 9.7.0.P1-2
openssl rebuild

Modified:
  bind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 11:22:06 UTC (rev 75352)
+++ PKGBUILD2010-04-01 11:30:52 UTC (rev 75353)
@@ -5,7 +5,7 @@
 # Use a period and not a hyphen before the patch level for proper versioning.
 pkgver=9.7.0.P1
 _pkgver=9.7.0-P1
-pkgrel=1
+pkgrel=2
 pkgdesc=Berkeley Internet Name Domain - named server
 arch=(i686 x86_64)
 url=https://www.isc.org/software/bind/;



[arch-commits] Commit in bind/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:33:15
  Author: allan
Revision: 75354

archrelease: copy trunk to testing-i686

Added:
  bind/repos/testing-i686/



[arch-commits] Commit in bind/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:35:31
  Author: allan
Revision: 75355

archrelease: copy trunk to testing-x86_64

Added:
  bind/repos/testing-x86_64/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 07:43:47
  Author: pierre
Revision: 75356

upgpkg: qca-ossl 2.0.0-3
openssl/heimdal rebuild

Modified:
  qca-ossl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 11:35:31 UTC (rev 75355)
+++ PKGBUILD2010-04-01 11:43:47 UTC (rev 75356)
@@ -4,13 +4,14 @@
 pkgname=qca-ossl
 pkgver=2.0.0
 _pkgver=2.0.0-beta3
-pkgrel=2
+pkgrel=3
 pkgdesc=Qt Cryptographic Architecture
 arch=('i686' 'x86_64')
 url=http://delta.affinix.com/qca/;
 license=('LGPL')
 depends=('qca')
-source=(http://delta.affinix.com/download/qca/2.0/plugins/${pkgname}-${_pkgver}.tar.bz2;
 'no-whirlpool.patch')
+source=(http://delta.affinix.com/download/qca/2.0/plugins/${pkgname}-${_pkgver}.tar.bz2;
+'no-whirlpool.patch')
 md5sums=('bdc62c01321385c7da8d27b3902910ce'
  '1be7ee2e5f32733b90452fb46b9c69f9')
 



[arch-commits] Commit in qca-ossl/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 07:44:25
  Author: pierre
Revision: 75358

archrelease: copy trunk to testing-x86_64

Added:
  qca-ossl/repos/testing-x86_64/



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

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:48:46
  Author: allan
Revision: 75359

upgpkg: gnome-vfs 2.24.3-2
heimdal and openssl rebuild

Modified:
  gnome-vfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 11:44:25 UTC (rev 75358)
+++ PKGBUILD2010-04-01 11:48:46 UTC (rev 75359)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-vfs
 pkgver=2.24.3
-pkgrel=1
+pkgrel=2
 pkgdesc=The GNOME Virtual File System
 arch=(i686 x86_64)
 license=('LGPL')



[arch-commits] Commit in gnome-vfs/repos (testing-i686)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:50:02
  Author: allan
Revision: 75360

archrelease: copy trunk to testing-i686

Added:
  gnome-vfs/repos/testing-i686/



[arch-commits] Commit in gnome-vfs/repos (testing-x86_64)

2010-04-01 Thread Allan McRae
Date: Thursday, April 1, 2010 @ 07:51:23
  Author: allan
Revision: 75361

archrelease: copy trunk to testing-x86_64

Added:
  gnome-vfs/repos/testing-x86_64/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 07:59:26
  Author: pierre
Revision: 75362

upgpkg: psi 0.14-3
openssl/heimdal rebuild

Modified:
  psi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 11:51:23 UTC (rev 75361)
+++ PKGBUILD2010-04-01 11:59:26 UTC (rev 75362)
@@ -3,8 +3,8 @@
 
 pkgname=psi
 pkgver=0.14
-pkgrel=2
-pkgdesc='instant messaging application designed for the Jabber IM'
+pkgrel=3
+pkgdesc='Instant messaging application designed for the Jabber IM'
 url='http://psi-im.org/'
 license=('GPL')
 arch=('i686' 'x86_64')
@@ -20,5 +20,9 @@
patch -p1 -i $srcdir/archlinux.patch
./configure --prefix=/usr --disable-bundled-qca || return 1
make || return 1
+}
+
+package() {
+   cd $srcdir/psi-${pkgver}
make INSTALL_ROOT=$pkgdir install
 }



[arch-commits] Commit in psi/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 08:00:10
  Author: pierre
Revision: 75363

archrelease: copy trunk to testing-i686

Added:
  psi/repos/testing-i686/



[arch-commits] Commit in psi/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 08:00:56
  Author: pierre
Revision: 75364

archrelease: copy trunk to testing-x86_64

Added:
  psi/repos/testing-x86_64/



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

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 08:04:29
  Author: pierre
Revision: 75365

upgpkg: fetchmail 6.3.15-1
openssl/heimdal rebuild

Modified:
  fetchmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 12:00:56 UTC (rev 75364)
+++ PKGBUILD2010-04-01 12:04:29 UTC (rev 75365)
@@ -3,26 +3,31 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=fetchmail
-pkgver=6.3.14
+pkgver=6.3.15
 pkgrel=1
 pkgdesc=A remote-mail retrieval utility
 url=http://fetchmail.berlios.de/;
 arch=('i686' 'x86_64')
 depends=('glibc' 'openssl' 'python')
 optdepends=('tk: fetchmailconf')
+options=('!makeflags')
 license=('GPL')
 install=fetchmail.install
 source=(http://download2.berlios.de/fetchmail/$pkgname-$pkgver.tar.bz2
 fetchmail.rc fetchmail.conf)
-md5sums=('86d3cfbce151881d8bf76a1efd5bda6a'
+md5sums=('53de0a1ff9dda5a6b99adf04ed0132cb'
  'b5f4d1da0c61d3d8a93fdf4e238f4949'
  '8fcd6a22dfbc247755fdd050c5c5c4d3')
+
 build() {
-  export MAKEFLAGS=-j1
   cd $srcdir/$pkgname-$pkgver
 
   ./configure --prefix=/usr --with-ssl=/usr
   make || return 1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
 
   install -Dm755 $srcdir/fetchmail.rc $pkgdir/etc/rc.d/fetchmail



[arch-commits] Commit in fetchmail/repos (testing-i686)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 08:04:54
  Author: pierre
Revision: 75366

archrelease: copy trunk to testing-i686

Added:
  fetchmail/repos/testing-i686/



[arch-commits] Commit in fetchmail/repos (testing-x86_64)

2010-04-01 Thread Pierre Schmitz
Date: Thursday, April 1, 2010 @ 08:05:27
  Author: pierre
Revision: 75367

archrelease: copy trunk to testing-x86_64

Added:
  fetchmail/repos/testing-x86_64/



  1   2   3   4   >