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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 10:01:35
  Author: tpowa
Revision: 192041

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

Added:
  libusbx/repos/testing-i686/
  
libusbx/repos/testing-i686/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch
(from rev 192040, 
libusbx/trunk/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch)
  
libusbx/repos/testing-i686/0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch
(from rev 192040, 
libusbx/trunk/0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch)
  libusbx/repos/testing-i686/PKGBUILD
(from rev 192040, libusbx/trunk/PKGBUILD)
  libusbx/repos/testing-x86_64/
  
libusbx/repos/testing-x86_64/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch
(from rev 192040, 
libusbx/trunk/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch)
  
libusbx/repos/testing-x86_64/0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch
(from rev 192040, 
libusbx/trunk/0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch)
  libusbx/repos/testing-x86_64/PKGBUILD
(from rev 192040, libusbx/trunk/PKGBUILD)

+
 testing-i686/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch   
|  103 +++
 testing-i686/0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch   
|  141 ++
 testing-i686/PKGBUILD  
|   42 ++
 testing-x86_64/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch 
|  103 +++
 testing-x86_64/0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch 
|  141 ++
 testing-x86_64/PKGBUILD
|   42 ++
 6 files changed, 572 insertions(+)

Copied: 
libusbx/repos/testing-i686/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch
 (from rev 192040, 
libusbx/trunk/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch)
===
--- 
testing-i686/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch
(rev 0)
+++ 
testing-i686/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch
2013-08-05 08:01:35 UTC (rev 192041)
@@ -0,0 +1,103 @@
+From daf4c9fadaf8a49198c53c039bf78980dc251a4b Mon Sep 17 00:00:00 2001
+From: Hans de Goede hdego...@redhat.com
+Date: Tue, 30 Jul 2013 15:57:16 +0200
+Subject: [PATCH 1/2] linux: Use a separate lock to serialize start/stop vs
+ hotplug events
+
+Using one lock for this is a bad idea, as we should not be holding any
+locks used by the hotplug thread when trying to stop otherwise the stop
+function may wait indefinetely in pthread_join, while the event-thread
+is waiting for the lock the caller of the stop function holds.
+
+Using 2 separate locks for this should fix this deadlock, which has been
+reported here: https://bugzilla.redhat.com/show_bug.cgi?id=985484
+
+Many thanks to Chris Dickens for figuring out the cause of this deadlock!
+
+CC: Chris Dickens christopher.a.dick...@gmail.com
+Signed-off-by: Hans de Goede hdego...@redhat.com
+---
+ libusb/os/linux_usbfs.c | 24 +---
+ libusb/version_nano.h   |  2 +-
+ 2 files changed, 18 insertions(+), 8 deletions(-)
+
+diff --git a/libusb/os/linux_usbfs.c b/libusb/os/linux_usbfs.c
+index 09288af..90e23b7 100644
+--- a/libusb/os/linux_usbfs.c
 b/libusb/os/linux_usbfs.c
+@@ -120,7 +120,9 @@ static int sysfs_has_descriptors = -1;
+ /* how many times have we initted (and not exited) ? */
+ static volatile int init_count = 0;
+ 
+-/* Serialize hotplug start/stop, scan-devices, event-thread, and poll */
++/* Serialize hotplug start/stop */
++usbi_mutex_static_t linux_hotplug_startstop_lock = USBI_MUTEX_INITIALIZER;
++/* Serialize scan-devices, event-thread, and poll */
+ usbi_mutex_static_t linux_hotplug_lock = USBI_MUTEX_INITIALIZER;
+ 
+ static int linux_start_event_monitor(void);
+@@ -419,7 +421,7 @@ static int op_init(struct libusb_context *ctx)
+   if (sysfs_has_descriptors)
+   usbi_dbg(sysfs has complete descriptors);
+ 
+-  usbi_mutex_static_lock(linux_hotplug_lock);
++  usbi_mutex_static_lock(linux_hotplug_startstop_lock);
+   r = LIBUSB_SUCCESS;
+   if (init_count == 0) {
+   /* start up hotplug event handler */
+@@ -433,20 +435,20 @@ static int op_init(struct libusb_context *ctx)
+   linux_stop_event_monitor();
+   } else
+   usbi_err(ctx, error starting hotplug event monitor);
+-  usbi_mutex_static_unlock(linux_hotplug_lock);
++  usbi_mutex_static_unlock(linux_hotplug_startstop_lock);
+ 
+   return r;
+ }
+ 
+ static void op_exit(void)
+ {
+-  usbi_mutex_static_lock(linux_hotplug_lock);
++  usbi_mutex_static_lock(linux_hotplug_startstop_lock);
+   assert(init_count != 0);
+   if 

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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 10:01:19
  Author: tpowa
Revision: 192040

upgpkg: libusbx 1.0.16-2

fix #36418

Added:
  libusbx/trunk/0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch
  libusbx/trunk/0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch
Modified:
  libusbx/trunk/PKGBUILD

-+
 0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch |  103 +++
 0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch |  141 
++
 PKGBUILD|   16 -
 3 files changed, 257 insertions(+), 3 deletions(-)

Added: 0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch
===
--- 0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch 
(rev 0)
+++ 0001-linux-Use-a-separate-lock-to-serialize-start-stop-vs.patch 
2013-08-05 08:01:19 UTC (rev 192040)
@@ -0,0 +1,103 @@
+From daf4c9fadaf8a49198c53c039bf78980dc251a4b Mon Sep 17 00:00:00 2001
+From: Hans de Goede hdego...@redhat.com
+Date: Tue, 30 Jul 2013 15:57:16 +0200
+Subject: [PATCH 1/2] linux: Use a separate lock to serialize start/stop vs
+ hotplug events
+
+Using one lock for this is a bad idea, as we should not be holding any
+locks used by the hotplug thread when trying to stop otherwise the stop
+function may wait indefinetely in pthread_join, while the event-thread
+is waiting for the lock the caller of the stop function holds.
+
+Using 2 separate locks for this should fix this deadlock, which has been
+reported here: https://bugzilla.redhat.com/show_bug.cgi?id=985484
+
+Many thanks to Chris Dickens for figuring out the cause of this deadlock!
+
+CC: Chris Dickens christopher.a.dick...@gmail.com
+Signed-off-by: Hans de Goede hdego...@redhat.com
+---
+ libusb/os/linux_usbfs.c | 24 +---
+ libusb/version_nano.h   |  2 +-
+ 2 files changed, 18 insertions(+), 8 deletions(-)
+
+diff --git a/libusb/os/linux_usbfs.c b/libusb/os/linux_usbfs.c
+index 09288af..90e23b7 100644
+--- a/libusb/os/linux_usbfs.c
 b/libusb/os/linux_usbfs.c
+@@ -120,7 +120,9 @@ static int sysfs_has_descriptors = -1;
+ /* how many times have we initted (and not exited) ? */
+ static volatile int init_count = 0;
+ 
+-/* Serialize hotplug start/stop, scan-devices, event-thread, and poll */
++/* Serialize hotplug start/stop */
++usbi_mutex_static_t linux_hotplug_startstop_lock = USBI_MUTEX_INITIALIZER;
++/* Serialize scan-devices, event-thread, and poll */
+ usbi_mutex_static_t linux_hotplug_lock = USBI_MUTEX_INITIALIZER;
+ 
+ static int linux_start_event_monitor(void);
+@@ -419,7 +421,7 @@ static int op_init(struct libusb_context *ctx)
+   if (sysfs_has_descriptors)
+   usbi_dbg(sysfs has complete descriptors);
+ 
+-  usbi_mutex_static_lock(linux_hotplug_lock);
++  usbi_mutex_static_lock(linux_hotplug_startstop_lock);
+   r = LIBUSB_SUCCESS;
+   if (init_count == 0) {
+   /* start up hotplug event handler */
+@@ -433,20 +435,20 @@ static int op_init(struct libusb_context *ctx)
+   linux_stop_event_monitor();
+   } else
+   usbi_err(ctx, error starting hotplug event monitor);
+-  usbi_mutex_static_unlock(linux_hotplug_lock);
++  usbi_mutex_static_unlock(linux_hotplug_startstop_lock);
+ 
+   return r;
+ }
+ 
+ static void op_exit(void)
+ {
+-  usbi_mutex_static_lock(linux_hotplug_lock);
++  usbi_mutex_static_lock(linux_hotplug_startstop_lock);
+   assert(init_count != 0);
+   if (!--init_count) {
+   /* tear down event handler */
+   (void)linux_stop_event_monitor();
+   }
+-  usbi_mutex_static_unlock(linux_hotplug_lock);
++  usbi_mutex_static_unlock(linux_hotplug_startstop_lock);
+ }
+ 
+ static int linux_start_event_monitor(void)
+@@ -469,11 +471,19 @@ static int linux_stop_event_monitor(void)
+ 
+ static int linux_scan_devices(struct libusb_context *ctx)
+ {
++  int ret;
++
++  usbi_mutex_static_lock(linux_hotplug_lock);
++
+ #if defined(USE_UDEV)
+-  return linux_udev_scan_devices(ctx);
++  ret = linux_udev_scan_devices(ctx);
+ #else
+-  return linux_default_scan_devices(ctx);
++  ret = linux_default_scan_devices(ctx);
+ #endif
++
++  usbi_mutex_static_unlock(linux_hotplug_lock);
++
++  return ret;
+ }
+ 
+ static void op_hotplug_poll(void)
+diff --git a/libusb/version_nano.h b/libusb/version_nano.h
+index ebf41e1..34e26ff 100644
+--- a/libusb/version_nano.h
 b/libusb/version_nano.h
+@@ -1 +1 @@
+-#define LIBUSB_NANO 10774
++#define LIBUSB_NANO 10777
+-- 
+1.8.3.1
+

Added: 0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch
===
--- 0002-hotplug-Remove-use-of-pthread_cancel-from-linux_udev.patch 
(rev 0)
+++ 

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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 10:13:15
  Author: tpowa
Revision: 192042

upgpkg: linux 3.10.5-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 08:01:35 UTC (rev 192041)
+++ PKGBUILD2013-08-05 08:13:15 UTC (rev 192042)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.10
-pkgver=3.10.4
+pkgver=3.10.5
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -20,7 +20,7 @@
 'linux.preset'
 'change-default-console-loglevel.patch')
 md5sums=('4f25cd5bec5f8d5a7d935b3f2ccb8481'
- '2e46ab138670b3171b52b849568cb42f'
+ '6366a8d4b0429ab6836c296ba298fb0e'
  '480f8efb61ee244c52d881304a0ae14b'
  'e55ce3dd5fead07eed8a6781a57c1b1b'
  'eb14dcfd80c00852ef81ded6e826826a'



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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 10:13:41
  Author: tpowa
Revision: 192043

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

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

--+
 /PKGBUILD|  660 
 /change-default-console-loglevel.patch   |   24 
 /config  |12676 +
 /config.x86_64   |12276 
 /linux.install   |   62 
 /linux.preset|   28 
 testing-i686/PKGBUILD|  330 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 6338 
 testing-i686/config.x86_64   | 6138 
 testing-i686/linux.install   |   31 
 testing-i686/linux.preset|   14 
 testing-x86_64/PKGBUILD  |  330 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 6338 
 testing-x86_64/config.x86_64 | 6138 
 testing-x86_64/linux.install |   31 
 testing-x86_64/linux.preset  |   14 
 18 files changed, 25726 insertions(+), 25726 deletions(-)

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


[arch-commits] Commit in gnome-online-accounts/trunk (6 files)

2013-08-05 Thread Jan de Groot
Date: Monday, August 5, 2013 @ 12:07:45
  Author: jgc
Revision: 192044

upgpkg: gnome-online-accounts 3.8.2-2

Add minor fixes from upstream, add backport from ubuntu that implements OAth 
2.0 for CALDAV

Added:
  gnome-online-accounts/trunk/drop-google-password-interface-1.patch
  gnome-online-accounts/trunk/drop-google-password-interface-2.patch
  gnome-online-accounts/trunk/drop-google-password-interface-3.patch
  gnome-online-accounts/trunk/imap-smtp.patch
  gnome-online-accounts/trunk/smtp-auth-plain.patch
Modified:
  gnome-online-accounts/trunk/PKGBUILD

+
 PKGBUILD   |   28 ++
 drop-google-password-interface-1.patch |   39 
 drop-google-password-interface-2.patch |   74 +++
 drop-google-password-interface-3.patch |  296 +++
 imap-smtp.patch|   20 ++
 smtp-auth-plain.patch  |   88 +
 6 files changed, 542 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 08:13:41 UTC (rev 192043)
+++ PKGBUILD2013-08-05 10:07:45 UTC (rev 192044)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-online-accounts
 pkgver=3.8.2
-pkgrel=1
+pkgrel=2
 pkgdesc=GNOME service to access online accounts
 arch=(i686 x86_64)
 url=http://www.gnome.org;
@@ -12,9 +12,31 @@
 makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl')
 options=(!libtool)
 install=$pkgname.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('12611a002043c8acc29e9800ec009e3e19736bdb6237d246e848d7c7909fe826')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz
+imap-smtp.patch
+smtp-auth-plain.patch
+drop-google-password-interface-1.patch
+drop-google-password-interface-2.patch
+drop-google-password-interface-3.patch)
+sha256sums=('12611a002043c8acc29e9800ec009e3e19736bdb6237d246e848d7c7909fe826'
+'2b413d1f401647bd143b7dc6dd4b6d6660ff47ef9a11ccbc691b7c13de5cba69'
+'e7250be7c078053345699250433b7164751d3e457155bd35508c7d1660f459be'
+'33435c10aa1ba3fbb6fd633dc098cd1da50629f1d602521ca83be5379f2ebe48'
+'c837f9be4e5e072a06ea44076e6b9a1519c66c95b16d7a55b1dba105fded317f'
+'18dfad8ed978af1068fd057bbe323006c349ac4ea77c742aa06f1011dc92326e')
 
+prepare() {
+  cd $pkgname-$pkgver
+  # Upstream 3.8 branch
+  patch -Np1 -i ../imap-smtp.patch
+  patch -Np1 -i ../smtp-auth-plain.patch
+  
+  # Backport from Ubuntu
+  patch -Np1 -i ../drop-google-password-interface-1.patch
+  patch -Np1 -i ../drop-google-password-interface-2.patch
+  patch -Np1 -i ../drop-google-password-interface-3.patch
+}
+ 
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --libexec=/usr/lib/gnome-online-accounts

Added: drop-google-password-interface-1.patch
===
--- drop-google-password-interface-1.patch  (rev 0)
+++ drop-google-password-interface-1.patch  2013-08-05 10:07:45 UTC (rev 
192044)
@@ -0,0 +1,39 @@
+From 9182fb378614abb2ff0245fe71a753f22eaaa906 Mon Sep 17 00:00:00 2001
+From: Debarshi Ray debars...@gnome.org
+Date: Tue, 11 Jun 2013 14:58:21 +
+Subject: google: Bump credentials generation
+
+Access to the following were turned on in the Google APIs Console:
+ - Calendar API
+ - Google Calendar CalDAV API
+ - Google Contacts CardDAV API
+
+Of these, only the last two are new. We were already requesting the
+scope for Calendar API, but looks like the APIs Console is the way
+to go now. Interestingly the APIs Console does not list all the other
+services that we are interested in, or it is does but is not obvious
+to me.
+
+In any case we need access to their new CalDAV API which works with
+OAuth2 because that would let us work with 2-factor authenticated
+accounts again.
+
+See: https://bugzilla.gnome.org/show_bug.cgi?id=686804
+ https://bugzilla.gnome.org/show_bug.cgi?id=688364
+---
+(limited to 'src/goabackend/goagoogleprovider.c')
+
+diff --git a/src/goabackend/goagoogleprovider.c 
b/src/goabackend/goagoogleprovider.c
+index 8271711..79f5f73 100644
+--- a/src/goabackend/goagoogleprovider.c
 b/src/goabackend/goagoogleprovider.c
+@@ -148,7 +148,7 @@ get_scope (GoaOAuth2Provider *provider)
+ static guint
+ get_credentials_generation (GoaProvider *provider)
+ {
+-  return 3;
++  return 4;
+ }
+ 
+ static const gchar *
+

Added: drop-google-password-interface-2.patch
===
--- drop-google-password-interface-2.patch  (rev 0)
+++ drop-google-password-interface-2.patch  2013-08-05 10:07:45 UTC (rev 
192044)
@@ -0,0 +1,74 @@
+From a0fd4cd595bd0fe6eb4015ea9050170319b16546 Mon Sep 17 00:00:00 2001
+From: Debarshi Ray debars...@gnome.org
+Date: Wed, 

[arch-commits] Commit in gnome-online-accounts/repos (18 files)

2013-08-05 Thread Jan de Groot
Date: Monday, August 5, 2013 @ 12:07:57
  Author: jgc
Revision: 192045

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

Added:
  gnome-online-accounts/repos/extra-i686/PKGBUILD
(from rev 192044, gnome-online-accounts/trunk/PKGBUILD)
  gnome-online-accounts/repos/extra-i686/drop-google-password-interface-1.patch
(from rev 192044, 
gnome-online-accounts/trunk/drop-google-password-interface-1.patch)
  gnome-online-accounts/repos/extra-i686/drop-google-password-interface-2.patch
(from rev 192044, 
gnome-online-accounts/trunk/drop-google-password-interface-2.patch)
  gnome-online-accounts/repos/extra-i686/drop-google-password-interface-3.patch
(from rev 192044, 
gnome-online-accounts/trunk/drop-google-password-interface-3.patch)
  gnome-online-accounts/repos/extra-i686/gnome-online-accounts.install
(from rev 192044, gnome-online-accounts/trunk/gnome-online-accounts.install)
  gnome-online-accounts/repos/extra-i686/imap-smtp.patch
(from rev 192044, gnome-online-accounts/trunk/imap-smtp.patch)
  gnome-online-accounts/repos/extra-i686/smtp-auth-plain.patch
(from rev 192044, gnome-online-accounts/trunk/smtp-auth-plain.patch)
  gnome-online-accounts/repos/extra-x86_64/PKGBUILD
(from rev 192044, gnome-online-accounts/trunk/PKGBUILD)
  
gnome-online-accounts/repos/extra-x86_64/drop-google-password-interface-1.patch
(from rev 192044, 
gnome-online-accounts/trunk/drop-google-password-interface-1.patch)
  
gnome-online-accounts/repos/extra-x86_64/drop-google-password-interface-2.patch
(from rev 192044, 
gnome-online-accounts/trunk/drop-google-password-interface-2.patch)
  
gnome-online-accounts/repos/extra-x86_64/drop-google-password-interface-3.patch
(from rev 192044, 
gnome-online-accounts/trunk/drop-google-password-interface-3.patch)
  gnome-online-accounts/repos/extra-x86_64/gnome-online-accounts.install
(from rev 192044, gnome-online-accounts/trunk/gnome-online-accounts.install)
  gnome-online-accounts/repos/extra-x86_64/imap-smtp.patch
(from rev 192044, gnome-online-accounts/trunk/imap-smtp.patch)
  gnome-online-accounts/repos/extra-x86_64/smtp-auth-plain.patch
(from rev 192044, gnome-online-accounts/trunk/smtp-auth-plain.patch)
Deleted:
  gnome-online-accounts/repos/extra-i686/PKGBUILD
  gnome-online-accounts/repos/extra-i686/gnome-online-accounts.install
  gnome-online-accounts/repos/extra-x86_64/PKGBUILD
  gnome-online-accounts/repos/extra-x86_64/gnome-online-accounts.install

-+
 /PKGBUILD   |  102 ++
 /gnome-online-accounts.install  |   22 +
 extra-i686/PKGBUILD |   29 -
 extra-i686/drop-google-password-interface-1.patch   |   39 ++
 extra-i686/drop-google-password-interface-2.patch   |   74 
 extra-i686/drop-google-password-interface-3.patch   |  296 ++
 extra-i686/gnome-online-accounts.install|   11 
 extra-i686/imap-smtp.patch  |   20 +
 extra-i686/smtp-auth-plain.patch|   88 +
 extra-x86_64/PKGBUILD   |   29 -
 extra-x86_64/drop-google-password-interface-1.patch |   39 ++
 extra-x86_64/drop-google-password-interface-2.patch |   74 
 extra-x86_64/drop-google-password-interface-3.patch |  296 ++
 extra-x86_64/gnome-online-accounts.install  |   11 
 extra-x86_64/imap-smtp.patch|   20 +
 extra-x86_64/smtp-auth-plain.patch  |   88 +
 16 files changed, 1158 insertions(+), 80 deletions(-)

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


[arch-commits] Commit in evolution-data-server/repos (16 files)

2013-08-05 Thread Jan de Groot
Date: Monday, August 5, 2013 @ 12:37:46
  Author: jgc
Revision: 192047

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

Added:
  evolution-data-server/repos/extra-i686/PKGBUILD
(from rev 192046, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/extra-i686/evolution-data-server.install
(from rev 192046, evolution-data-server/trunk/evolution-data-server.install)
  evolution-data-server/repos/extra-i686/fix-google-2fa-1.patch
(from rev 192046, evolution-data-server/trunk/fix-google-2fa-1.patch)
  evolution-data-server/repos/extra-i686/fix-google-2fa-2.patch
(from rev 192046, evolution-data-server/trunk/fix-google-2fa-2.patch)
  evolution-data-server/repos/extra-i686/fix-google-2fa-3.patch
(from rev 192046, evolution-data-server/trunk/fix-google-2fa-3.patch)
  evolution-data-server/repos/extra-i686/fix-google-2fa-4.patch
(from rev 192046, evolution-data-server/trunk/fix-google-2fa-4.patch)
  evolution-data-server/repos/extra-x86_64/PKGBUILD
(from rev 192046, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/extra-x86_64/evolution-data-server.install
(from rev 192046, evolution-data-server/trunk/evolution-data-server.install)
  evolution-data-server/repos/extra-x86_64/fix-google-2fa-1.patch
(from rev 192046, evolution-data-server/trunk/fix-google-2fa-1.patch)
  evolution-data-server/repos/extra-x86_64/fix-google-2fa-2.patch
(from rev 192046, evolution-data-server/trunk/fix-google-2fa-2.patch)
  evolution-data-server/repos/extra-x86_64/fix-google-2fa-3.patch
(from rev 192046, evolution-data-server/trunk/fix-google-2fa-3.patch)
  evolution-data-server/repos/extra-x86_64/fix-google-2fa-4.patch
(from rev 192046, evolution-data-server/trunk/fix-google-2fa-4.patch)
Deleted:
  evolution-data-server/repos/extra-i686/PKGBUILD
  evolution-data-server/repos/extra-i686/evolution-data-server.install
  evolution-data-server/repos/extra-x86_64/PKGBUILD
  evolution-data-server/repos/extra-x86_64/evolution-data-server.install

+
 /PKGBUILD  |  100 ++
 /evolution-data-server.install |   22 +
 extra-i686/PKGBUILD|   32 --
 extra-i686/evolution-data-server.install   |   11 
 extra-i686/fix-google-2fa-1.patch  |  402 +++
 extra-i686/fix-google-2fa-2.patch  |   86 +
 extra-i686/fix-google-2fa-3.patch  |   48 +++
 extra-i686/fix-google-2fa-4.patch  |  159 ++
 extra-x86_64/PKGBUILD  |   32 --
 extra-x86_64/evolution-data-server.install |   11 
 extra-x86_64/fix-google-2fa-1.patch|  402 +++
 extra-x86_64/fix-google-2fa-2.patch|   86 +
 extra-x86_64/fix-google-2fa-3.patch|   48 +++
 extra-x86_64/fix-google-2fa-4.patch|  159 ++
 14 files changed, 1512 insertions(+), 86 deletions(-)

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


[arch-commits] Commit in evolution-data-server/trunk (5 files)

2013-08-05 Thread Jan de Groot
Date: Monday, August 5, 2013 @ 12:37:35
  Author: jgc
Revision: 192046

upgpkg: evolution-data-server 3.8.4-2

Support Google 2 factor auth

Added:
  evolution-data-server/trunk/fix-google-2fa-1.patch
  evolution-data-server/trunk/fix-google-2fa-2.patch
  evolution-data-server/trunk/fix-google-2fa-3.patch
  evolution-data-server/trunk/fix-google-2fa-4.patch
Modified:
  evolution-data-server/trunk/PKGBUILD

+
 PKGBUILD   |   26 ++-
 fix-google-2fa-1.patch |  402 +++
 fix-google-2fa-2.patch |   86 ++
 fix-google-2fa-3.patch |   48 +
 fix-google-2fa-4.patch |  159 ++
 5 files changed, 717 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 10:07:57 UTC (rev 192045)
+++ PKGBUILD2013-08-05 10:37:35 UTC (rev 192046)
@@ -3,20 +3,38 @@
 
 pkgname=evolution-data-server
 pkgver=3.8.4
-pkgrel=1
+pkgrel=2
 pkgdesc=Centralized access to appointments and contacts
 arch=(i686 x86_64)
 depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata)
-makedepends=(intltool gperf gobject-introspection vala python2)
+makedepends=(intltool gperf gobject-introspection vala python2 gnome-common)
 options=('!libtool')
 install=$pkgname.install
 url=http://www.gnome.org;
 license=(GPL)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('0b9e725d36a4c63ccb15b4e0f92932764c9a335e84af2ebeeb4c182760ef3f6e')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+fix-google-2fa-1.patch
+fix-google-2fa-2.patch
+fix-google-2fa-3.patch
+fix-google-2fa-4.patch)
+sha256sums=('0b9e725d36a4c63ccb15b4e0f92932764c9a335e84af2ebeeb4c182760ef3f6e'
+'c1de9fe146f0512cf6c0219341c8409a9e4d955c3eb6a85f7d07183972b9328e'
+'3e1c83dd00f01dfa0f9d67d2327de110b3e232a5f9a882ccce09a02392df7de6'
+'9da8cccf504f40b8ee9e068b465cdf0a1a858999dd88d8e8e96f1e4cdffbf1e2'
+'27022d00575ba1b9283d9420aa231c2770ff403b0b6c0442b6d679faefdbe00e')
 
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../fix-google-2fa-1.patch
+  patch -Np1 -i ../fix-google-2fa-2.patch
+  patch -Np1 -i ../fix-google-2fa-3.patch
+  patch -Np1 -i ../fix-google-2fa-4.patch
+}
+
 build() {
   cd $pkgname-$pkgver
+  autoreconf -fi
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --with-openldap=yes \
   --libexecdir=/usr/lib/evolution-data-server \

Added: fix-google-2fa-1.patch
===
--- fix-google-2fa-1.patch  (rev 0)
+++ fix-google-2fa-1.patch  2013-08-05 10:37:35 UTC (rev 192046)
@@ -0,0 +1,402 @@
+From fa0d18fcf2d8084d2a41f24f50f689eed8e3e241 Mon Sep 17 00:00:00 2001
+From: Matthew Barnes mbar...@redhat.com
+Date: Tue, 09 Jul 2013 18:23:04 +
+Subject: Add ESoupAuthBearer.
+
+SoupAuth subclass for use with OAuth 2.0 HTTP authentication.
+
+See http://tools.ietf.org/html/rfc6750
+
+EBackends should use e_source_get_oauth2_access_token() to obtain
+the access token and token expiry for an ESource, then pass them to
+e_soup_auth_bearer_set_access_token().
+---
+diff --git a/docs/reference/libebackend/libebackend-docs.xml 
b/docs/reference/libebackend/libebackend-docs.xml
+index fa9ab92..f54d3d6 100644
+--- a/docs/reference/libebackend/libebackend-docs.xml
 b/docs/reference/libebackend/libebackend-docs.xml
+@@ -34,6 +34,7 @@
+ titleMiscellaneous Utilities/title
+ xi:include href=xml/e-file-cache.xml/
+ xi:include href=xml/e-db3-utils.xml/
++xi:include href=xml/e-soup-auth-bearer.xml/
+ xi:include href=xml/e-sqlite3-vfs.xml/
+ xi:include href=xml/e-user-prompter.xml/
+ xi:include href=xml/e-user-prompter-server.xml/
+diff --git a/docs/reference/libebackend/libebackend-sections.txt 
b/docs/reference/libebackend/libebackend-sections.txt
+index 6c604bf..189f002 100644
+--- a/docs/reference/libebackend/libebackend-sections.txt
 b/docs/reference/libebackend/libebackend-sections.txt
+@@ -397,6 +397,24 @@ EServerSideSourcePrivate
+ /SECTION
+ 
+ SECTION
++FILEe-soup-auth-bearer/FILE
++TITLEESoupAuthBearer/TITLE
++ESoupAuthBearer
++e_soup_auth_bearer_set_access_token
++SUBSECTION Standard
++E_SOUP_AUTH_BEARER
++E_IS_SOUP_AUTH_BEARER
++E_TYPE_SOUP_AUTH_BEARER
++E_SOUP_AUTH_BEARER_CLASS
++E_IS_SOUP_AUTH_BEARER_CLASS
++E_SOUP_AUTH_BEARER_GET_CLASS
++ESoupAuthBearerClass
++e_soup_auth_bearer_get_type
++SUBSECTION Private
++ESoupAuthBearerPrivate
++/SECTION
++
++SECTION
+ FILEe-source-registry-server/FILE
+ TITLEESourceRegistryServer/TITLE
+ E_SOURCE_REGISTRY_SERVER_OBJECT_PATH
+diff --git a/docs/reference/libebackend/libebackend.types 
b/docs/reference/libebackend/libebackend.types
+index aeb38dc..1d7fe96 100644
+--- a/docs/reference/libebackend/libebackend.types
 

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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:48:46
  Author: spupykin
Revision: 95062

upgpkg: perl-crypt-cbc 2.33-1

upd

Modified:
  perl-crypt-cbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 10:48:42 UTC (rev 95061)
+++ PKGBUILD2013-08-05 10:48:46 UTC (rev 95062)
@@ -4,7 +4,7 @@
 # Contributor: Francois Charette firmi...@gmx.net
 
 pkgname=perl-crypt-cbc
-pkgver=2.32
+pkgver=2.33
 pkgrel=1
 pkgdesc=Cipherblock chaining for Crypt::DES/IDEA
 arch=('any')
@@ -13,7 +13,7 @@
 license=('GPL' 'PerlArtistic')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/L/LD/LDS/Crypt-CBC-$pkgver.tar.gz)
-md5sums=('b381b81cc89a36b1445b627916c666ce')
+md5sums=('3db5117d60df67e3b400fe367e716be0')
 
 build() {
   cd  $srcdir/Crypt-CBC-$pkgver



[arch-commits] Commit in perl-file-mmagic/trunk (PKGBUILD)

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:49:01
  Author: spupykin
Revision: 95064

upgpkg: perl-file-mmagic 1.30-1

upd

Modified:
  perl-file-mmagic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 10:48:57 UTC (rev 95063)
+++ PKGBUILD2013-08-05 10:49:01 UTC (rev 95064)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=perl-file-mmagic
-pkgver=1.29
+pkgver=1.30
 pkgrel=1
 pkgdesc=Guess file type
 arch=(any)
@@ -11,7 +11,7 @@
 depends=('perl')
 options=(!emptydirs)
 
source=(http://search.cpan.org/CPAN/authors/id/K/KN/KNOK/File-MMagic-${pkgver}.tar.gz;)
-md5sums=('64221fdfe541505b39ea56d0b09ef8a6')
+md5sums=('a0157c71d5872fa07102a2ffaf7979ec')
 
 build() {
   cd ${srcdir}/File-MMagic-${pkgver}



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:48:24
  Author: spupykin
Revision: 95060

upgpkg: parcellite 1.1.6-1

upd

Modified:
  parcellite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-04 22:37:03 UTC (rev 95059)
+++ PKGBUILD2013-08-05 10:48:24 UTC (rev 95060)
@@ -3,7 +3,7 @@
 # Maintainer: Alexander Fehr pizzapunk gmail com
 
 pkgname=parcellite
-pkgver=1.1.5
+pkgver=1.1.6
 pkgrel=1
 pkgdesc=Lightweight GTK+ clipboard manager
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('gtk2')
 makedepends=('intltool')
 source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz)
-md5sums=('62f96188afc1cc2fe5b48f334bd4c99f')
+md5sums=('4b0a89aeb885a2f7d2ace3e4ea7e153e')
 
 build() {
   cd $srcdir/parcellite-$pkgver



[arch-commits] Commit in parcellite/repos/community-i686 (3 files)

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:48:42
  Author: spupykin
Revision: 95061

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

Deleted:
  parcellite/repos/community-i686/ChangeLog
  parcellite/repos/community-i686/PKGBUILD
  parcellite/repos/community-i686/history_menu_crash_patch

--+
 ChangeLog|   17 -
 PKGBUILD |   26 --
 history_menu_crash_patch |   39 ---
 3 files changed, 82 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2013-08-05 10:48:24 UTC (rev 95060)
+++ ChangeLog   2013-08-05 10:48:42 UTC (rev 95061)
@@ -1,17 +0,0 @@
-2009-05-05  Biru Ionut  biru.ionut at gmail.com
-  * parcellite-0.9.1-1:
-  New upstream release.
-
-2008-12-14  Alexander Fehr  pizzapunk gmail com
-
-  * parcellite-0.9-1:
-  New upstream release.
-
-2008-08-14  Alexander Fehr  pizzapunk gmail com
-
-  * parcellite-0.8-1:
-  New upstream release.
-  Changed url.
-  Added make dependency on intltool.
-  Changed download location to downloads.sourceforge.net.
-  Added ChangeLog.

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-05 10:48:24 UTC (rev 95060)
+++ PKGBUILD2013-08-05 10:48:42 UTC (rev 95061)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Alexander Fehr pizzapunk gmail com
-
-pkgname=parcellite
-pkgver=1.1.5
-pkgrel=1
-pkgdesc=Lightweight GTK+ clipboard manager
-arch=('i686' 'x86_64')
-url=http://parcellite.sourceforge.net/;
-license=('GPL3')
-depends=('gtk2')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz)
-md5sums=('62f96188afc1cc2fe5b48f334bd4c99f')
-
-build() {
-  cd $srcdir/parcellite-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $srcdir/parcellite-$pkgver
-  make DESTDIR=$pkgdir install
-}

Deleted: history_menu_crash_patch
===
--- history_menu_crash_patch2013-08-05 10:48:24 UTC (rev 95060)
+++ history_menu_crash_patch2013-08-05 10:48:42 UTC (rev 95061)
@@ -1,39 +0,0 @@
-Index: main.c
-===
 main.c (revision 232)
-+++ main.c (working copy)
-@@ -1199,24 +1199,28 @@
- {
-   GString* string = g_string_new((gchar*)element-data);
-   /* Ellipsize text */
--  if (string-len  prefs.item_length)
-+  glong len = g_utf8_strlen(string-str, string-len);
-+  if (len  prefs.item_length)
-   {
- switch (prefs.ellipsize)
- {
-   case PANGO_ELLIPSIZE_START:
--string = g_string_erase(string, 0, 
string-len-(prefs.item_length));
-+string = g_string_erase(string, 0, 
g_utf8_offset_to_pointer(string-str, len - prefs.item_length) - string-str);
- string = g_string_prepend(string, ...);
- break;
-   case PANGO_ELLIPSIZE_MIDDLE:
--string = g_string_erase(string, (prefs.item_length/2), 
string-len-(prefs.item_length));
--string = g_string_insert(string, (string-len/2), ...);
-+; /* to avoid wierd gcc error */
-+gchar* p1 = g_utf8_offset_to_pointer(string-str, 
prefs.item_length / 2);
-+gchar* p2 = g_utf8_offset_to_pointer(string-str, len - 
prefs.item_length / 2);
-+string = g_string_erase(string, p1 - string-str, p2 - p1);
-+string = g_string_insert(string, p1 - string-str, ...);
- break;
-   case PANGO_ELLIPSIZE_END:
--string = g_string_truncate(string, prefs.item_length);
-+string = g_string_truncate(string, 
g_utf8_offset_to_pointer(string-str, prefs.item_length) - string-str);
- string = g_string_append(string, ...);
- break;
- }
--  }
-+  }
- /* Remove control characters */
-   gsize i = 0;
-   while (i  string-len)



[arch-commits] Commit in perl-crypt-cbc/repos/community-any (PKGBUILD PKGBUILD)

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:48:57
  Author: spupykin
Revision: 95063

archrelease: copy trunk to community-any

Added:
  perl-crypt-cbc/repos/community-any/PKGBUILD
(from rev 95062, perl-crypt-cbc/trunk/PKGBUILD)
Deleted:
  perl-crypt-cbc/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-05 10:48:46 UTC (rev 95062)
+++ PKGBUILD2013-08-05 10:48:57 UTC (rev 95063)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Charles Mauch cma...@gmail.com
-# Contributor: Francois Charette firmi...@gmx.net
-
-pkgname=perl-crypt-cbc
-pkgver=2.32
-pkgrel=1
-pkgdesc=Cipherblock chaining for Crypt::DES/IDEA
-arch=('any')
-depends=('perl')
-url=http://search.cpan.org/dist/Crypt-CBC;
-license=('GPL' 'PerlArtistic')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/L/LD/LDS/Crypt-CBC-$pkgver.tar.gz)
-md5sums=('b381b81cc89a36b1445b627916c666ce')
-
-build() {
-  cd  $srcdir/Crypt-CBC-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Crypt-CBC-$pkgver
-  make pure_install doc_install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-crypt-cbc/repos/community-any/PKGBUILD (from rev 95062, 
perl-crypt-cbc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-05 10:48:57 UTC (rev 95063)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+# Contributor: Francois Charette firmi...@gmx.net
+
+pkgname=perl-crypt-cbc
+pkgver=2.33
+pkgrel=1
+pkgdesc=Cipherblock chaining for Crypt::DES/IDEA
+arch=('any')
+depends=('perl')
+url=http://search.cpan.org/dist/Crypt-CBC;
+license=('GPL' 'PerlArtistic')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/L/LD/LDS/Crypt-CBC-$pkgver.tar.gz)
+md5sums=('3db5117d60df67e3b400fe367e716be0')
+
+build() {
+  cd  $srcdir/Crypt-CBC-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Crypt-CBC-$pkgver
+  make pure_install doc_install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



[arch-commits] Commit in perl-tree-dag-node/trunk (PKGBUILD)

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:49:16
  Author: spupykin
Revision: 95066

upgpkg: perl-tree-dag-node 1.12-1

upd

Modified:
  perl-tree-dag-node/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 10:49:12 UTC (rev 95065)
+++ PKGBUILD2013-08-05 10:49:16 UTC (rev 95066)
@@ -3,15 +3,15 @@
 # Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=perl-tree-dag-node
-pkgver=1.11
+pkgver=1.12
 pkgrel=1
 pkgdesc=base class for trees
 arch=('any')
 url=http://search.cpan.org/dist/Tree-DAG_Node;
 license=('GPL' 'PerlArtistic')
 options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/Tree-DAG_Node-$pkgver.tgz)
-md5sums=('362e63bef4711d286ad7542a5055013d')
+source=(http://www.cpan.org/authors/id/R/RS/RSAVAGE/Tree-DAG_Node-$pkgver.tgz)
+md5sums=('a6ad9e49800448b2823239276a4530b6')
 
 build() {
   cd  $srcdir/Tree-DAG_Node-$pkgver



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:49:31
  Author: spupykin
Revision: 95068

upgpkg: redis 2.6.14-2

upd

Added:
  redis/trunk/redis.install
  redis/trunk/redis.tmpfiles.d
Modified:
  redis/trunk/PKGBUILD
  redis/trunk/redis.service

--+
 PKGBUILD |   19 ++-
 redis.install|   14 ++
 redis.service|3 ++-
 redis.tmpfiles.d |1 +
 4 files changed, 31 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 10:49:27 UTC (rev 95067)
+++ PKGBUILD2013-08-05 10:49:31 UTC (rev 95068)
@@ -5,7 +5,7 @@
 
 pkgname=redis
 pkgver=2.6.14
-pkgrel=1
+pkgrel=2
 pkgdesc=Advanced key-value store
 arch=('i686' 'x86_64')
 url=http://redis.io/;
@@ -14,17 +14,25 @@
 makedepends=('gcc=3.1' 'make' 'pkgconfig')
 backup=(etc/redis.conf
etc/logrotate.d/redis)
+install=redis.install
 source=(http://redis.googlecode.com/files/${pkgname}-${pkgver}.tar.gz;
redis.service
-   redis.logrotate)
+   redis.logrotate
+   redis.tmpfiles.d)
 md5sums=('02e0c06e953413017ff64862953e2756'
- '5ab9fdb200e15c13b450fda77fa030b6'
- '9e2d75b7a9dc421122d673fe520ef17f')
+ '5320aa6d0f31aadc1d6202ca40425aea'
+ '9e2d75b7a9dc421122d673fe520ef17f'
+ 'dd9ab8022b4d963b2e5899170dfff490')
 
+prepare() {
+  cd $srcdir/${pkgname}-${pkgver}
+  sed -i 's|# bind 127.0.0.1|bind 127.0.0.1|' redis.conf
+  sed -i 's|pidfile .*|pidfile /run/redis/redis.pid|' redis.conf
+}
+
 build() {
   cd $srcdir/${pkgname}-${pkgver}
   make MALLOC=libc
-  sed -i 's|# bind 127.0.0.1|bind 127.0.0.1|' redis.conf
 }
 
 package() {
@@ -37,4 +45,5 @@
   install -Dm644 $srcdir/redis.logrotate $pkgdir/etc/logrotate.d/redis
   sed -i 's|daemonize no|daemonize yes|;s|dir \./|dir 
/var/lib/redis/|;s|logfile stdout|logfile /var/log/redis.log| ' 
$srcdir/${pkgname}-${pkgver}/redis.conf
   install -D -m644 $srcdir/${pkgname}-${pkgver}/redis.conf 
$pkgdir/etc/redis.conf
+  install -Dm644 $srcdir/redis.tmpfiles.d 
$pkgdir/usr/lib/tmpfiles.d/redis.conf
 }

Added: redis.install
===
--- redis.install   (rev 0)
+++ redis.install   2013-08-05 10:49:31 UTC (rev 95068)
@@ -0,0 +1,14 @@
+post_install() {
+  grep -E ^redis: etc/group /dev/null || groupadd --system redis
+  grep -E ^redis: etc/passwd /dev/null || useradd --system -g redis -d 
/var/lib/redis -s /bin/false redis
+  touch var/log/redis.log
+  chown redis:redis var/log/redis.log
+  systemd-tmpfiles --create redis.conf
+  install -dm0700 var/lib/redis
+  chown -R redis:redis var/lib/redis
+}
+
+post_upgrade() {
+  post_install
+  echo Redis starts from redis user by default. Check redis.service file
+}

Modified: redis.service
===
--- redis.service   2013-08-05 10:49:27 UTC (rev 95067)
+++ redis.service   2013-08-05 10:49:31 UTC (rev 95068)
@@ -4,7 +4,8 @@
 
 [Service]
 Type=forking
-PIDFile=/run/redis.pid
+User=redis
+PIDFile=/run/redis/redis.pid
 ExecStartPre=/bin/mkdir -p /var/lib/redis
 ExecStart=/usr/bin/redis-server /etc/redis.conf
 ExecStop=/usr/bin/redis-cli shutdown

Added: redis.tmpfiles.d
===
--- redis.tmpfiles.d(rev 0)
+++ redis.tmpfiles.d2013-08-05 10:49:31 UTC (rev 95068)
@@ -0,0 +1 @@
+d /run/redis 0755 redis redis -



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:49:57
  Author: spupykin
Revision: 95069

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

Added:
  redis/repos/community-i686/PKGBUILD
(from rev 95068, redis/trunk/PKGBUILD)
  redis/repos/community-i686/redis.install
(from rev 95068, redis/trunk/redis.install)
  redis/repos/community-i686/redis.logrotate
(from rev 95068, redis/trunk/redis.logrotate)
  redis/repos/community-i686/redis.service
(from rev 95068, redis/trunk/redis.service)
  redis/repos/community-i686/redis.tmpfiles.d
(from rev 95068, redis/trunk/redis.tmpfiles.d)
  redis/repos/community-x86_64/PKGBUILD
(from rev 95068, redis/trunk/PKGBUILD)
  redis/repos/community-x86_64/redis.install
(from rev 95068, redis/trunk/redis.install)
  redis/repos/community-x86_64/redis.logrotate
(from rev 95068, redis/trunk/redis.logrotate)
  redis/repos/community-x86_64/redis.service
(from rev 95068, redis/trunk/redis.service)
  redis/repos/community-x86_64/redis.tmpfiles.d
(from rev 95068, redis/trunk/redis.tmpfiles.d)
Deleted:
  redis/repos/community-i686/PKGBUILD
  redis/repos/community-i686/redis.logrotate
  redis/repos/community-i686/redis.service
  redis/repos/community-x86_64/PKGBUILD
  redis/repos/community-x86_64/redis.logrotate
  redis/repos/community-x86_64/redis.service

---+
 /PKGBUILD |   98 
 /redis.logrotate  |   10 +++
 /redis.service|   30 +++
 community-i686/PKGBUILD   |   40 --
 community-i686/redis.install  |   14 +
 community-i686/redis.logrotate|5 -
 community-i686/redis.service  |   14 -
 community-i686/redis.tmpfiles.d   |1 
 community-x86_64/PKGBUILD |   40 --
 community-x86_64/redis.install|   14 +
 community-x86_64/redis.logrotate  |5 -
 community-x86_64/redis.service|   14 -
 community-x86_64/redis.tmpfiles.d |1 
 13 files changed, 168 insertions(+), 118 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-05 10:49:31 UTC (rev 95068)
+++ community-i686/PKGBUILD 2013-08-05 10:49:57 UTC (rev 95069)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Jan-Erik Rediger badboy at archlinux dot us
-# Contributor: nofxx x@nick.com
-
-pkgname=redis
-pkgver=2.6.14
-pkgrel=1
-pkgdesc=Advanced key-value store
-arch=('i686' 'x86_64')
-url=http://redis.io/;
-license=('BSD')
-depends=('bash')
-makedepends=('gcc=3.1' 'make' 'pkgconfig')
-backup=(etc/redis.conf
-   etc/logrotate.d/redis)
-source=(http://redis.googlecode.com/files/${pkgname}-${pkgver}.tar.gz;
-   redis.service
-   redis.logrotate)
-md5sums=('02e0c06e953413017ff64862953e2756'
- '5ab9fdb200e15c13b450fda77fa030b6'
- '9e2d75b7a9dc421122d673fe520ef17f')
-
-build() {
-  cd $srcdir/${pkgname}-${pkgver}
-  make MALLOC=libc
-  sed -i 's|# bind 127.0.0.1|bind 127.0.0.1|' redis.conf
-}
-
-package() {
-  cd $srcdir/${pkgname}-${pkgver}
-  mkdir -p $pkgdir/usr/bin
-  make INSTALL_BIN=$pkgdir/usr/bin PREFIX=/usr install
-
-  install -D -m755 $srcdir/${pkgname}-${pkgver}/COPYING 
$pkgdir/usr/share/licenses/redis/COPYING
-  install -Dm644 $srcdir/redis.service 
$pkgdir/usr/lib/systemd/system/redis.service
-  install -Dm644 $srcdir/redis.logrotate $pkgdir/etc/logrotate.d/redis
-  sed -i 's|daemonize no|daemonize yes|;s|dir \./|dir 
/var/lib/redis/|;s|logfile stdout|logfile /var/log/redis.log| ' 
$srcdir/${pkgname}-${pkgver}/redis.conf
-  install -D -m644 $srcdir/${pkgname}-${pkgver}/redis.conf 
$pkgdir/etc/redis.conf
-}

Copied: redis/repos/community-i686/PKGBUILD (from rev 95068, 
redis/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-05 10:49:57 UTC (rev 95069)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Jan-Erik Rediger badboy at archlinux dot us
+# Contributor: nofxx x@nick.com
+
+pkgname=redis
+pkgver=2.6.14
+pkgrel=2
+pkgdesc=Advanced key-value store
+arch=('i686' 'x86_64')
+url=http://redis.io/;
+license=('BSD')
+depends=('bash')
+makedepends=('gcc=3.1' 'make' 'pkgconfig')
+backup=(etc/redis.conf
+   etc/logrotate.d/redis)
+install=redis.install
+source=(http://redis.googlecode.com/files/${pkgname}-${pkgver}.tar.gz;
+   redis.service
+   redis.logrotate
+   redis.tmpfiles.d)
+md5sums=('02e0c06e953413017ff64862953e2756'
+ '5320aa6d0f31aadc1d6202ca40425aea'
+ '9e2d75b7a9dc421122d673fe520ef17f'
+ 'dd9ab8022b4d963b2e5899170dfff490')
+
+prepare() {
+  cd $srcdir/${pkgname}-${pkgver}
+  sed -i 's|# bind 127.0.0.1|bind 127.0.0.1|' redis.conf
+  sed -i 's|pidfile .*|pidfile 

[arch-commits] Commit in perl-tree-dag-node/repos/community-any (PKGBUILD PKGBUILD)

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:49:27
  Author: spupykin
Revision: 95067

archrelease: copy trunk to community-any

Added:
  perl-tree-dag-node/repos/community-any/PKGBUILD
(from rev 95066, perl-tree-dag-node/trunk/PKGBUILD)
Deleted:
  perl-tree-dag-node/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-05 10:49:16 UTC (rev 95066)
+++ PKGBUILD2013-08-05 10:49:27 UTC (rev 95067)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=perl-tree-dag-node
-pkgver=1.11
-pkgrel=1
-pkgdesc=base class for trees
-arch=('any')
-url=http://search.cpan.org/dist/Tree-DAG_Node;
-license=('GPL' 'PerlArtistic')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/Tree-DAG_Node-$pkgver.tgz)
-md5sums=('362e63bef4711d286ad7542a5055013d')
-
-build() {
-  cd  $srcdir/Tree-DAG_Node-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Tree-DAG_Node-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-tree-dag-node/repos/community-any/PKGBUILD (from rev 95066, 
perl-tree-dag-node/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-05 10:49:27 UTC (rev 95067)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=perl-tree-dag-node
+pkgver=1.12
+pkgrel=1
+pkgdesc=base class for trees
+arch=('any')
+url=http://search.cpan.org/dist/Tree-DAG_Node;
+license=('GPL' 'PerlArtistic')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/R/RS/RSAVAGE/Tree-DAG_Node-$pkgver.tgz)
+md5sums=('a6ad9e49800448b2823239276a4530b6')
+
+build() {
+  cd  $srcdir/Tree-DAG_Node-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Tree-DAG_Node-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



[arch-commits] Commit in perl-file-mmagic/repos/community-any (PKGBUILD PKGBUILD)

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:49:12
  Author: spupykin
Revision: 95065

archrelease: copy trunk to community-any

Added:
  perl-file-mmagic/repos/community-any/PKGBUILD
(from rev 95064, perl-file-mmagic/trunk/PKGBUILD)
Deleted:
  perl-file-mmagic/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-05 10:49:01 UTC (rev 95064)
+++ PKGBUILD2013-08-05 10:49:12 UTC (rev 95065)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=perl-file-mmagic
-pkgver=1.29
-pkgrel=1
-pkgdesc=Guess file type
-arch=(any)
-license=('PerlArtistic')
-url=http://search.cpan.org/dist/File-MMagic;
-depends=('perl')
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/K/KN/KNOK/File-MMagic-${pkgver}.tar.gz;)
-md5sums=('64221fdfe541505b39ea56d0b09ef8a6')
-
-build() {
-  cd ${srcdir}/File-MMagic-${pkgver}
-
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL
-  make
-  make install DESTDIR=${pkgdir}
-
-  # remove perllocal.pod and .packlist
-  find ${pkgdir} -name perllocal.pod -delete
-  find ${pkgdir} -name .packlist -delete
-}

Copied: perl-file-mmagic/repos/community-any/PKGBUILD (from rev 95064, 
perl-file-mmagic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-05 10:49:12 UTC (rev 95065)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=perl-file-mmagic
+pkgver=1.30
+pkgrel=1
+pkgdesc=Guess file type
+arch=(any)
+license=('PerlArtistic')
+url=http://search.cpan.org/dist/File-MMagic;
+depends=('perl')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/K/KN/KNOK/File-MMagic-${pkgver}.tar.gz;)
+md5sums=('a0157c71d5872fa07102a2ffaf7979ec')
+
+build() {
+  cd ${srcdir}/File-MMagic-${pkgver}
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL
+  make
+}
+
+package() {
+  cd ${srcdir}/File-MMagic-${pkgver}
+  make install DESTDIR=${pkgdir}
+
+  # remove perllocal.pod and .packlist
+  find ${pkgdir} -name perllocal.pod -delete
+  find ${pkgdir} -name .packlist -delete
+}



[arch-commits] Commit in parcellite/repos/community-i686 (3 files)

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:50:43
  Author: spupykin
Revision: 95070

archrelease: copy trunk to community-i686

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

--+
 ChangeLog|   17 +
 PKGBUILD |   26 ++
 history_menu_crash_patch |   39 +++
 3 files changed, 82 insertions(+)

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

Copied: parcellite/repos/community-i686/PKGBUILD (from rev 95069, 
parcellite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-05 10:50:43 UTC (rev 95070)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Alexander Fehr pizzapunk gmail com
+
+pkgname=parcellite
+pkgver=1.1.6
+pkgrel=1
+pkgdesc=Lightweight GTK+ clipboard manager
+arch=('i686' 'x86_64')
+url=http://parcellite.sourceforge.net/;
+license=('GPL3')
+depends=('gtk2')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz)
+md5sums=('4b0a89aeb885a2f7d2ace3e4ea7e153e')
+
+build() {
+  cd $srcdir/parcellite-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/parcellite-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: parcellite/repos/community-i686/history_menu_crash_patch (from rev 
95069, parcellite/trunk/history_menu_crash_patch)
===
--- history_menu_crash_patch(rev 0)
+++ history_menu_crash_patch2013-08-05 10:50:43 UTC (rev 95070)
@@ -0,0 +1,39 @@
+Index: main.c
+===
+--- main.c (revision 232)
 main.c (working copy)
+@@ -1199,24 +1199,28 @@
+ {
+   GString* string = g_string_new((gchar*)element-data);
+   /* Ellipsize text */
+-  if (string-len  prefs.item_length)
++  glong len = g_utf8_strlen(string-str, string-len);
++  if (len  prefs.item_length)
+   {
+ switch (prefs.ellipsize)
+ {
+   case PANGO_ELLIPSIZE_START:
+-string = g_string_erase(string, 0, 
string-len-(prefs.item_length));
++string = g_string_erase(string, 0, 
g_utf8_offset_to_pointer(string-str, len - prefs.item_length) - string-str);
+ string = g_string_prepend(string, ...);
+ break;
+   case PANGO_ELLIPSIZE_MIDDLE:
+-string = g_string_erase(string, (prefs.item_length/2), 
string-len-(prefs.item_length));
+-string = g_string_insert(string, (string-len/2), ...);
++; /* to avoid wierd gcc error */
++gchar* p1 = g_utf8_offset_to_pointer(string-str, 
prefs.item_length / 2);
++gchar* p2 = g_utf8_offset_to_pointer(string-str, len - 
prefs.item_length / 2);
++string = g_string_erase(string, p1 - string-str, p2 - p1);
++string = g_string_insert(string, p1 - string-str, ...);
+ break;
+   case PANGO_ELLIPSIZE_END:
+-string = g_string_truncate(string, prefs.item_length);
++string = g_string_truncate(string, 
g_utf8_offset_to_pointer(string-str, prefs.item_length) - string-str);
+ string = g_string_append(string, ...);
+ break;
+ }
+-  }
++  }
+ /* Remove control characters */
+   gsize i = 0;
+   while (i  string-len)



[arch-commits] Commit in parcellite/repos/community-x86_64 (6 files)

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 12:50:54
  Author: spupykin
Revision: 95071

archrelease: copy trunk to community-x86_64

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

--+
 ChangeLog|   34 +--
 PKGBUILD |   52 +++---
 history_menu_crash_patch |   78 ++---
 3 files changed, 82 insertions(+), 82 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2013-08-05 10:50:43 UTC (rev 95070)
+++ ChangeLog   2013-08-05 10:50:54 UTC (rev 95071)
@@ -1,17 +0,0 @@
-2009-05-05  Biru Ionut  biru.ionut at gmail.com
-  * parcellite-0.9.1-1:
-  New upstream release.
-
-2008-12-14  Alexander Fehr  pizzapunk gmail com
-
-  * parcellite-0.9-1:
-  New upstream release.
-
-2008-08-14  Alexander Fehr  pizzapunk gmail com
-
-  * parcellite-0.8-1:
-  New upstream release.
-  Changed url.
-  Added make dependency on intltool.
-  Changed download location to downloads.sourceforge.net.
-  Added ChangeLog.

Copied: parcellite/repos/community-x86_64/ChangeLog (from rev 95070, 
parcellite/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2013-08-05 10:50:54 UTC (rev 95071)
@@ -0,0 +1,17 @@
+2009-05-05  Biru Ionut  biru.ionut at gmail.com
+  * parcellite-0.9.1-1:
+  New upstream release.
+
+2008-12-14  Alexander Fehr  pizzapunk gmail com
+
+  * parcellite-0.9-1:
+  New upstream release.
+
+2008-08-14  Alexander Fehr  pizzapunk gmail com
+
+  * parcellite-0.8-1:
+  New upstream release.
+  Changed url.
+  Added make dependency on intltool.
+  Changed download location to downloads.sourceforge.net.
+  Added ChangeLog.

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-05 10:50:43 UTC (rev 95070)
+++ PKGBUILD2013-08-05 10:50:54 UTC (rev 95071)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Alexander Fehr pizzapunk gmail com
-
-pkgname=parcellite
-pkgver=1.1.5
-pkgrel=1
-pkgdesc=Lightweight GTK+ clipboard manager
-arch=('i686' 'x86_64')
-url=http://parcellite.sourceforge.net/;
-license=('GPL3')
-depends=('gtk2')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz)
-md5sums=('62f96188afc1cc2fe5b48f334bd4c99f')
-
-build() {
-  cd $srcdir/parcellite-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $srcdir/parcellite-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: parcellite/repos/community-x86_64/PKGBUILD (from rev 95070, 
parcellite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-05 10:50:54 UTC (rev 95071)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Alexander Fehr pizzapunk gmail com
+
+pkgname=parcellite
+pkgver=1.1.6
+pkgrel=1
+pkgdesc=Lightweight GTK+ clipboard manager
+arch=('i686' 'x86_64')
+url=http://parcellite.sourceforge.net/;
+license=('GPL3')
+depends=('gtk2')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz)
+md5sums=('4b0a89aeb885a2f7d2ace3e4ea7e153e')
+
+build() {
+  cd $srcdir/parcellite-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/parcellite-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: history_menu_crash_patch
===
--- history_menu_crash_patch2013-08-05 10:50:43 UTC (rev 95070)
+++ history_menu_crash_patch2013-08-05 10:50:54 UTC (rev 95071)
@@ -1,39 +0,0 @@
-Index: main.c
-===
 main.c (revision 232)
-+++ main.c (working copy)
-@@ -1199,24 +1199,28 @@
- {
-   GString* string = g_string_new((gchar*)element-data);
-   /* Ellipsize text */
--  if (string-len  prefs.item_length)
-+  glong len = g_utf8_strlen(string-str, string-len);
-+  if (len  prefs.item_length)
-   {
- switch (prefs.ellipsize)
- {
-   case PANGO_ELLIPSIZE_START:
--string = g_string_erase(string, 0, 
string-len-(prefs.item_length));
-+string = g_string_erase(string, 0, 
g_utf8_offset_to_pointer(string-str, len - prefs.item_length) - string-str);
-   

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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:14:33
  Author: spupykin
Revision: 95073

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

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

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

Copied: dsniff/repos/community-staging-i686/PKGBUILD (from rev 95072, 
dsniff/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-08-05 11:14:33 UTC (rev 95073)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: ViNS gladia...@fastwebnet.it
+
+pkgname=dsniff
+pkgver=2.4b1
+pkgrel=23
+pkgdesc=Collection of tools for network auditing and penetration testing
+url=http://www.monkey.org/~dugsong/dsniff/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('libpcap' 'openssl' 'libxmu' 'glib2' 'libnet' 'libnids')
+source=(http://www.monkey.org/~dugsong/${pkgname}/beta/$pkgname-$pkgver.tar.gz;
+
http://ftp.de.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_2.4b1+debian-18.diff.gz;)
+md5sums=('2f761fa3475682a7512b0b43568ee7d6'
+ 'fbc9f62f9ab2f98f24f53ad497c1ce5d')
+
+prepare() {
+  cd $srcdir/$pkgname-2.4
+  patch -N  ${srcdir}/dsniff_2.4b1+debian-18.diff
+  for i in *.dpatch; do
+patch -N  $i
+  done
+  sed -i 's|${CC-cc} -E|${CC-cc} -O2 -E|g' configure
+}
+
+build() {
+  cd $srcdir/$pkgname-2.4
+  LDFLAGS=-lresolv -lglib-2.0 -lgthread-2.0 $LDFLAGS ./configure \
+--prefix=/usr --sbindir=/usr/bin
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-2.4
+  make install_prefix=$pkgdir install
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/${pkgname}/LICENSE
+  install -d $pkgdir/usr/share
+  mv $pkgdir/usr/man $pkgdir/usr/share/
+}

Copied: dsniff/repos/community-staging-x86_64/PKGBUILD (from rev 95072, 
dsniff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-08-05 11:14:33 UTC (rev 95073)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: ViNS gladia...@fastwebnet.it
+
+pkgname=dsniff
+pkgver=2.4b1
+pkgrel=23
+pkgdesc=Collection of tools for network auditing and penetration testing
+url=http://www.monkey.org/~dugsong/dsniff/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('libpcap' 'openssl' 'libxmu' 'glib2' 'libnet' 'libnids')
+source=(http://www.monkey.org/~dugsong/${pkgname}/beta/$pkgname-$pkgver.tar.gz;
+
http://ftp.de.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_2.4b1+debian-18.diff.gz;)
+md5sums=('2f761fa3475682a7512b0b43568ee7d6'
+ 'fbc9f62f9ab2f98f24f53ad497c1ce5d')
+
+prepare() {
+  cd $srcdir/$pkgname-2.4
+  patch -N  ${srcdir}/dsniff_2.4b1+debian-18.diff
+  for i in *.dpatch; do
+patch -N  $i
+  done
+  sed -i 's|${CC-cc} -E|${CC-cc} -O2 -E|g' configure
+}
+
+build() {
+  cd $srcdir/$pkgname-2.4
+  LDFLAGS=-lresolv -lglib-2.0 -lgthread-2.0 $LDFLAGS ./configure \
+--prefix=/usr --sbindir=/usr/bin
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-2.4
+  make install_prefix=$pkgdir install
+  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/${pkgname}/LICENSE
+  install -d $pkgdir/usr/share
+  mv $pkgdir/usr/man $pkgdir/usr/share/
+}



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:14:38
  Author: spupykin
Revision: 95074

upgpkg: perl-berkeleydb 0.52-2

upd

Modified:
  perl-berkeleydb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 11:14:33 UTC (rev 95073)
+++ PKGBUILD2013-08-05 11:14:38 UTC (rev 95074)
@@ -5,7 +5,7 @@
 
 pkgname=perl-berkeleydb
 pkgver=0.52
-pkgrel=1
+pkgrel=2
 pkgdesc=Interface to Berkeley DB version 2, 3 or 4
 arch=('i686' 'x86_64')
 url=http://search.cpan.org/dist/BerkeleyDB/;



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:14:14
  Author: spupykin
Revision: 95072

upgpkg: dsniff 2.4b1-23

upd

Modified:
  dsniff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 10:50:54 UTC (rev 95071)
+++ PKGBUILD2013-08-05 11:14:14 UTC (rev 95072)
@@ -4,7 +4,7 @@
 
 pkgname=dsniff
 pkgver=2.4b1
-pkgrel=22
+pkgrel=23
 pkgdesc=Collection of tools for network auditing and penetration testing
 url=http://www.monkey.org/~dugsong/dsniff/;
 arch=('i686' 'x86_64')



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:14:55
  Author: spupykin
Revision: 95075

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

Added:
  perl-berkeleydb/repos/community-staging-i686/
  perl-berkeleydb/repos/community-staging-i686/PKGBUILD
(from rev 95074, perl-berkeleydb/trunk/PKGBUILD)
  perl-berkeleydb/repos/community-staging-x86_64/
  perl-berkeleydb/repos/community-staging-x86_64/PKGBUILD
(from rev 95074, perl-berkeleydb/trunk/PKGBUILD)

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

Copied: perl-berkeleydb/repos/community-staging-i686/PKGBUILD (from rev 95074, 
perl-berkeleydb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-08-05 11:14:55 UTC (rev 95075)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+# Contributor: Francois Charette firmi...@gmx.net
+
+pkgname=perl-berkeleydb
+pkgver=0.52
+pkgrel=2
+pkgdesc=Interface to Berkeley DB version 2, 3 or 4
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/BerkeleyDB/;
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'db')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/BerkeleyDB-$pkgver.tar.gz)
+md5sums=('e1031f4cd3062fdb1597af4373789d79')
+
+build() {
+  cd  $srcdir/BerkeleyDB-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  _dbver=`pacman -Q db | cut -d\  -f2 | cut -d- -f1`
+  depends=('perl' db=$_dbver)
+
+  cd  $srcdir/BerkeleyDB-$pkgver
+  make pure_install doc_install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Copied: perl-berkeleydb/repos/community-staging-x86_64/PKGBUILD (from rev 
95074, perl-berkeleydb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-08-05 11:14:55 UTC (rev 95075)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+# Contributor: Francois Charette firmi...@gmx.net
+
+pkgname=perl-berkeleydb
+pkgver=0.52
+pkgrel=2
+pkgdesc=Interface to Berkeley DB version 2, 3 or 4
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/BerkeleyDB/;
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'db')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/BerkeleyDB-$pkgver.tar.gz)
+md5sums=('e1031f4cd3062fdb1597af4373789d79')
+
+build() {
+  cd  $srcdir/BerkeleyDB-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  _dbver=`pacman -Q db | cut -d\  -f2 | cut -d- -f1`
+  depends=('perl' db=$_dbver)
+
+  cd  $srcdir/BerkeleyDB-$pkgver
+  make pure_install doc_install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:15:18
  Author: spupykin
Revision: 95077

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

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

-+
 community-staging-i686/PKGBUILD |   31 ++
 community-staging-i686/poedit.install   |   12 +++
 community-staging-x86_64/PKGBUILD   |   31 ++
 community-staging-x86_64/poedit.install |   12 +++
 4 files changed, 86 insertions(+)

Copied: poedit/repos/community-staging-i686/PKGBUILD (from rev 95076, 
poedit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-08-05 11:15:18 UTC (rev 95077)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.5.7
+pkgrel=2
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('custom')
+depends=('wxgtk2.9' 'gtkspell' 'db=5.1' 'hicolor-icon-theme' 'gettext')
+makedepends=('pkgconfig' 'boost')
+install=poedit.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('f5b53ec66a606f088b0aa388595ea5f9')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+export WX_CONFIG_PATH=/usr/bin/wx-config-2.9
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: poedit/repos/community-staging-i686/poedit.install (from rev 95076, 
poedit/trunk/poedit.install)
===
--- community-staging-i686/poedit.install   (rev 0)
+++ community-staging-i686/poedit.install   2013-08-05 11:15:18 UTC (rev 
95077)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: poedit/repos/community-staging-x86_64/PKGBUILD (from rev 95076, 
poedit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-08-05 11:15:18 UTC (rev 95077)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.5.7
+pkgrel=2
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('custom')
+depends=('wxgtk2.9' 'gtkspell' 'db=5.1' 'hicolor-icon-theme' 'gettext')
+makedepends=('pkgconfig' 'boost')
+install=poedit.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('f5b53ec66a606f088b0aa388595ea5f9')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+export WX_CONFIG_PATH=/usr/bin/wx-config-2.9
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: poedit/repos/community-staging-x86_64/poedit.install (from rev 95076, 
poedit/trunk/poedit.install)
===
--- community-staging-x86_64/poedit.install (rev 0)
+++ community-staging-x86_64/poedit.install 2013-08-05 11:15:18 UTC (rev 
95077)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:15:24
  Author: spupykin
Revision: 95078

upgpkg: squid 3.3.8-2

upd

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 11:15:18 UTC (rev 95077)
+++ PKGBUILD2013-08-05 11:15:24 UTC (rev 95078)
@@ -6,7 +6,7 @@
 
 pkgname=squid
 pkgver=3.3.8
-pkgrel=1
+pkgrel=2
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64' 'i686')
 url='http://www.squid-cache.org'



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:15:05
  Author: spupykin
Revision: 95076

upgpkg: poedit 1.5.7-2

upd

Modified:
  poedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 11:14:55 UTC (rev 95075)
+++ PKGBUILD2013-08-05 11:15:05 UTC (rev 95076)
@@ -6,7 +6,7 @@
 
 pkgname=poedit
 pkgver=1.5.7
-pkgrel=1
+pkgrel=2
 pkgdesc=Cross-platform gettext catalogs (.po files) editor
 arch=('i686' 'x86_64')
 url=http://www.poedit.net/;



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:15:49
  Author: spupykin
Revision: 95079

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

Added:
  squid/repos/community-staging-i686/
  squid/repos/community-staging-i686/PKGBUILD
(from rev 95078, squid/trunk/PKGBUILD)
  squid/repos/community-staging-i686/squid.cron
(from rev 95078, squid/trunk/squid.cron)
  squid/repos/community-staging-i686/squid.install
(from rev 95078, squid/trunk/squid.install)
  squid/repos/community-staging-i686/squid.pam
(from rev 95078, squid/trunk/squid.pam)
  squid/repos/community-staging-i686/squid.service
(from rev 95078, squid/trunk/squid.service)
  squid/repos/community-staging-x86_64/
  squid/repos/community-staging-x86_64/PKGBUILD
(from rev 95078, squid/trunk/PKGBUILD)
  squid/repos/community-staging-x86_64/squid.cron
(from rev 95078, squid/trunk/squid.cron)
  squid/repos/community-staging-x86_64/squid.install
(from rev 95078, squid/trunk/squid.install)
  squid/repos/community-staging-x86_64/squid.pam
(from rev 95078, squid/trunk/squid.pam)
  squid/repos/community-staging-x86_64/squid.service
(from rev 95078, squid/trunk/squid.service)

+
 community-staging-i686/PKGBUILD|  105 +++
 community-staging-i686/squid.cron  |9 ++
 community-staging-i686/squid.install   |   26 +++
 community-staging-i686/squid.pam   |4 +
 community-staging-i686/squid.service   |   13 +++
 community-staging-x86_64/PKGBUILD  |  105 +++
 community-staging-x86_64/squid.cron|9 ++
 community-staging-x86_64/squid.install |   26 +++
 community-staging-x86_64/squid.pam |4 +
 community-staging-x86_64/squid.service |   13 +++
 10 files changed, 314 insertions(+)

Copied: squid/repos/community-staging-i686/PKGBUILD (from rev 95078, 
squid/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-08-05 11:15:49 UTC (rev 95079)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Mark Coolen mark.coo...@gmail.com
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: Kevin Piche ke...@archlinux.org
+
+pkgname=squid
+pkgver=3.3.8
+pkgrel=2
+pkgdesc='Full-featured Web proxy cache server'
+arch=('x86_64' 'i686')
+url='http://www.squid-cache.org'
+depends=('openssl' 'pam' 'cron' 'perl' 'libltdl')
+makedepends=('libcap' 'krb5')
+license=('GPL')
+options=('emptydirs')
+backup=('etc/squid/squid.conf'
+'etc/squid/mime.conf')
+install=$pkgname.install
+source=(http://www.squid-cache.org/Versions/v3/3.3/$pkgname-$pkgver.tar.bz2;
+'squid.pam'
+'squid.cron'
+'squid.service')
+md5sums=('ec1654d28e29bdd2ee342ffb655ecc72'
+ '270977cdd9b47ef44c0c427ab9034777'
+ 'a71425c4951f2e5b640d19e6a5048531'
+ 'ceeb57c69ebb165676219222f109a24e')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # gcc 4.6 doesn't support -fhuge-objects.
+  sed '/^HUGE_OBJECT_FLAG=/ s/-fhuge-objects//' -i configure
+
+  # fix cache_dir, cache_dir size, and effective group.
+  sed '/^DEFAULT_SWAP_DIR/ s@/cache@/cache/squid@' -i src/Makefile.in
+  sed '/^#cache_dir/ s/100/256/
+   /^NAME: cache_effective_group/ {n;n;s/none/proxy/}' -i src/cf.data.pre
+
+  sed -i '1,1i#include errno.h' 
helpers/external_acl/file_userip/ext_file_userip_acl.cc
+
+  for i in \
+helpers/basic_auth/DB \
+helpers/log_daemon/DB \
+helpers/negotiate_auth/kerberos \
+helpers/external_acl/SQL_session; \
+  do
+  echo -e #!/bin/sh\nexit 0 $i/config.test
+  chmod 0755 $i/config.test
+  done
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--datadir=/usr/share/squid \
+--sysconfdir=/etc/squid \
+--libexecdir=/usr/lib/squid \
+--localstatedir=/var \
+--with-logdir=/var/log/squid \
+--with-pidfile=/run/squid.pid \
+--enable-auth \
+--enable-auth-basic \
+--enable-auth-ntlm \
+--enable-auth-digest \
+--enable-auth-negotiate \
+--enable-removal-policies=lru,heap \
+--enable-storeio=aufs,ufs,diskd \
+--enable-delay-pools \
+--enable-arp-acl \
+--enable-ssl \
+--enable-snmp \
+--enable-linux-netfilter \
+--enable-ident-lookups \
+--enable-useragent-log \
+--enable-cache-digests \
+--enable-referer-log \
+--enable-arp-acl \
+--enable-htcp \
+--enable-carp \
+--enable-epoll \
+--with-large-files \
+--enable-arp-acl \
+--with-default-user=proxy \
+--enable-async-io \
+--enable-truncate \
+--enable-icap-client
+  make
+}
+
+package() {
+  cd $srcdir
+
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+  install -Dm755 $srcdir/squid.cron $pkgdir/etc/cron.weekly/squid
+  install 

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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:30:51
  Author: spupykin
Revision: 95080

upgpkg: librcc 0.2.10-1

upd

Modified:
  librcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 11:15:49 UTC (rev 95079)
+++ PKGBUILD2013-08-05 11:30:51 UTC (rev 95080)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=librcc
-pkgver=0.2.6
-pkgrel=5
+pkgver=0.2.10
+pkgrel=1
 pkgdesc=Charset Conversion Library
 arch=(i686 x86_64)
 url=http://rusxmms.sourceforge.net/;
@@ -14,13 +14,13 @@
 options=('!libtool')
 source=(http://downloads.sourceforge.net/rusxmms/${pkgname}-${pkgver}.tar.bz2
 librcc-strnlen.patch)
-md5sums=('9bbf248c7312c73c0b6ca19b9c5a2af1'
+md5sums=('077260cf58ae9624c964652b79fbb5fb'
  '040313d1d8f166ccf2b128cea4c05f21')
 
 build() {
   cd $srcdir/$pkgname-${pkgver}
   ./configure --prefix=/usr
-  patch -p1 $srcdir/librcc-strnlen.patch
+#  patch -p1 $srcdir/librcc-strnlen.patch
   make
 }
 



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:31:12
  Author: spupykin
Revision: 95082

upgpkg: opendkim 2.8.4-1

upd

Modified:
  opendkim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 11:31:08 UTC (rev 95081)
+++ PKGBUILD2013-08-05 11:31:12 UTC (rev 95082)
@@ -3,8 +3,8 @@
 # Maintainer: Thomas Jost schno...@schnouki.net
 
 pkgname=opendkim
-pkgver=2.8.3
-pkgrel=3
+pkgver=2.8.4
+pkgrel=1
 pkgdesc=An open source implementation of the DKIM sender authentication 
system. Based on a fork of dkim-milter.
 arch=(i686 x86_64)
 url=http://www.opendkim.org/;
@@ -17,7 +17,7 @@
 
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz
opendkim.conf
opendkim.service)
-md5sums=('0ae9d37e3221a244eb34c3e0e2d665cc'
+md5sums=('17f667d022c167c7874a993e928d4a6d'
  '3e2bb1058ac0662f01e675aa6ac7ee8f'
  '85010750a21954e2d3cf5d57fe210d3f')
 



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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:31:32
  Author: spupykin
Revision: 95083

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

Added:
  opendkim/repos/community-staging-i686/
  opendkim/repos/community-staging-i686/PKGBUILD
(from rev 95082, opendkim/trunk/PKGBUILD)
  opendkim/repos/community-staging-i686/opendkim.conf
(from rev 95082, opendkim/trunk/opendkim.conf)
  opendkim/repos/community-staging-i686/opendkim.install
(from rev 95082, opendkim/trunk/opendkim.install)
  opendkim/repos/community-staging-i686/opendkim.service
(from rev 95082, opendkim/trunk/opendkim.service)
  opendkim/repos/community-staging-x86_64/
  opendkim/repos/community-staging-x86_64/PKGBUILD
(from rev 95082, opendkim/trunk/PKGBUILD)
  opendkim/repos/community-staging-x86_64/opendkim.conf
(from rev 95082, opendkim/trunk/opendkim.conf)
  opendkim/repos/community-staging-x86_64/opendkim.install
(from rev 95082, opendkim/trunk/opendkim.install)
  opendkim/repos/community-staging-x86_64/opendkim.service
(from rev 95082, opendkim/trunk/opendkim.service)

---+
 community-staging-i686/PKGBUILD   |   54 
 community-staging-i686/opendkim.conf  |1 
 community-staging-i686/opendkim.install   |   11 +
 community-staging-i686/opendkim.service   |   11 +
 community-staging-x86_64/PKGBUILD |   54 
 community-staging-x86_64/opendkim.conf|1 
 community-staging-x86_64/opendkim.install |   11 +
 community-staging-x86_64/opendkim.service |   11 +
 8 files changed, 154 insertions(+)

Copied: opendkim/repos/community-staging-i686/PKGBUILD (from rev 95082, 
opendkim/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-08-05 11:31:32 UTC (rev 95083)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Thomas Jost schno...@schnouki.net
+
+pkgname=opendkim
+pkgver=2.8.4
+pkgrel=1
+pkgdesc=An open source implementation of the DKIM sender authentication 
system. Based on a fork of dkim-milter.
+arch=(i686 x86_64)
+url=http://www.opendkim.org/;
+license=('BSD' 'custom:Sendmail')
+depends=(db openssl)
+makedepends=(libmilter)
+options=(!libtool !emptydirs)
+backup=(etc/conf.d/opendkim)
+install=opendkim.install
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz
+   opendkim.conf
+   opendkim.service)
+md5sums=('17f667d022c167c7874a993e928d4a6d'
+ '3e2bb1058ac0662f01e675aa6ac7ee8f'
+ '85010750a21954e2d3cf5d57fe210d3f')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-db
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+
+  # Sample configuration
+  mkdir -p $pkgdir/etc/opendkim
+  mv $pkgdir/usr/share/doc/opendkim/opendkim.conf.sample 
$pkgdir/etc/opendkim/opendkim.conf.sample
+  chmod 0700 $pkgdir/etc/opendkim
+  chmod 0600 $pkgdir/etc/opendkim/opendkim.conf.sample
+  install -Dm644 $srcdir/opendkim.conf $pkgdir/etc/conf.d/opendkim
+
+  # License
+  mkdir -p $pkgdir/usr/share/licenses/opendkim
+  for f in LICENSE LICENSE.Sendmail; do
+ln -s ../../doc/opendkim/$f $pkgdir/usr/share/licenses/opendkim/$f
+  done
+
+  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
+}

Copied: opendkim/repos/community-staging-i686/opendkim.conf (from rev 95082, 
opendkim/trunk/opendkim.conf)
===
--- community-staging-i686/opendkim.conf(rev 0)
+++ community-staging-i686/opendkim.conf2013-08-05 11:31:32 UTC (rev 
95083)
@@ -0,0 +1 @@
+OPENDKIM_FILTER=-x /etc/opendkim/opendkim.conf

Copied: opendkim/repos/community-staging-i686/opendkim.install (from rev 95082, 
opendkim/trunk/opendkim.install)
===
--- community-staging-i686/opendkim.install (rev 0)
+++ community-staging-i686/opendkim.install 2013-08-05 11:31:32 UTC (rev 
95083)
@@ -0,0 +1,11 @@
+post_install() {
+useradd -r -g mail -d / opendkim
+chown -R opendkim:mail etc/opendkim
+cat EOF
+  Check and modify /etc/opendkim/opendkim.conf before starting
+EOF
+}
+
+post_remove() {
+userdel opendkim
+}

Copied: opendkim/repos/community-staging-i686/opendkim.service (from rev 95082, 
opendkim/trunk/opendkim.service)
===
--- community-staging-i686/opendkim.service (rev 0)
+++ community-staging-i686/opendkim.service 2013-08-05 11:31:32 UTC (rev 
95083)
@@ -0,0 +1,11 @@
+[Unit]

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

2013-08-05 Thread Sergej Pupykin
Date: Monday, August 5, 2013 @ 13:31:08
  Author: spupykin
Revision: 95081

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

Added:
  librcc/repos/community-staging-i686/
  librcc/repos/community-staging-i686/PKGBUILD
(from rev 95080, librcc/trunk/PKGBUILD)
  librcc/repos/community-staging-i686/librcc-strnlen.patch
(from rev 95080, librcc/trunk/librcc-strnlen.patch)
  librcc/repos/community-staging-i686/librcc.install
(from rev 95080, librcc/trunk/librcc.install)
  librcc/repos/community-staging-x86_64/
  librcc/repos/community-staging-x86_64/PKGBUILD
(from rev 95080, librcc/trunk/PKGBUILD)
  librcc/repos/community-staging-x86_64/librcc-strnlen.patch
(from rev 95080, librcc/trunk/librcc-strnlen.patch)
  librcc/repos/community-staging-x86_64/librcc.install
(from rev 95080, librcc/trunk/librcc.install)

---+
 community-staging-i686/PKGBUILD   |   49 
 community-staging-i686/librcc-strnlen.patch   |   17 
 community-staging-i686/librcc.install |6 ++
 community-staging-x86_64/PKGBUILD |   49 
 community-staging-x86_64/librcc-strnlen.patch |   17 
 community-staging-x86_64/librcc.install   |6 ++
 6 files changed, 144 insertions(+)

Copied: librcc/repos/community-staging-i686/PKGBUILD (from rev 95080, 
librcc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-08-05 11:31:08 UTC (rev 95081)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=librcc
+pkgver=0.2.10
+pkgrel=1
+pkgdesc=Charset Conversion Library
+arch=(i686 x86_64)
+url=http://rusxmms.sourceforge.net/;
+license=('GPL')
+depends=(aspell enca libxml2 db librcd)
+makedepends=(patch gtk gtk2)
+install=librcc.install
+options=('!libtool')
+source=(http://downloads.sourceforge.net/rusxmms/${pkgname}-${pkgver}.tar.bz2
+librcc-strnlen.patch)
+md5sums=('077260cf58ae9624c964652b79fbb5fb'
+ '040313d1d8f166ccf2b128cea4c05f21')
+
+build() {
+  cd $srcdir/$pkgname-${pkgver}
+  ./configure --prefix=/usr
+#  patch -p1 $srcdir/librcc-strnlen.patch
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-${pkgver}
+  mkdir -p $pkgdir/etc/rcc
+  mkdir -p $pkgdir/usr/lib/rcc/engines
+  mkdir -p $pkgdir/usr/bin
+
+  make DESTDIR=$pkgdir install
+
+  make -C examples
+  make -C examples install DESTDIR=$pkgdir
+  rm -f $pkgdir/usr/bin/example*
+
+  install -m 644 examples/rcc.xml $pkgdir/etc
+
+  if [ -f $pkgdir/usr/bin/rcc-gtk2-config ]; then
+  ln -s rcc-gtk2-config $pkgdir/usr/bin/rcc-config
+  elif [ -f $pkgdir/usr/bin/rcc-gtk-config ]; then
+  ln -s rcc-gtk-config $pkgdir/usr/bin/rcc-config
+  else
+  echo #!/bin/bash  $pkgdir/usr/bin/rcc-config
+  echo echo \Configuration UI is not available!\  
$pkgdir/usr/bin/rcc-config
+  fi
+}

Copied: librcc/repos/community-staging-i686/librcc-strnlen.patch (from rev 
95080, librcc/trunk/librcc-strnlen.patch)
===
--- community-staging-i686/librcc-strnlen.patch (rev 0)
+++ community-staging-i686/librcc-strnlen.patch 2013-08-05 11:31:08 UTC (rev 
95081)
@@ -0,0 +1,17 @@
+diff -wbBur librcc-0.2.6/src/rccstring.h librcc-0.2.6.qwe/src/rccstring.h
+--- librcc-0.2.6/src/rccstring.h   2006-01-08 15:42:59.0 +
 librcc-0.2.6.qwe/src/rccstring.h   2009-09-28 08:45:37.0 +
+@@ -18,13 +18,6 @@
+ int rccStringFixID(rcc_string string, rcc_context ctx);
+ int rccStringChangeID(rcc_string string, rcc_language_id language_id);
+ 
+-#ifdef HAVE_STRNLEN
+-# ifndef strnlen
+-int strnlen(const char *str, size_t size);
+-# endif /* !strnlen */
+-#else
+-int rccStrnlen(const char *str, size_t size);
+-#endif /* HAVE_STRNLEN */
+ int rccIsASCII(const char *str);
+ size_t rccStringSizedGetChars(const char *str, size_t size);
+ 

Copied: librcc/repos/community-staging-i686/librcc.install (from rev 95080, 
librcc/trunk/librcc.install)
===
--- community-staging-i686/librcc.install   (rev 0)
+++ community-staging-i686/librcc.install   2013-08-05 11:31:08 UTC (rev 
95081)
@@ -0,0 +1,6 @@
+post_install() {
+  echo -- Don't forget to install gtk or/and gtk2 packages to enable librcc
+  echogui features
+  echo -- Also you may change /usr/bin/rcc-config symlink to switch between
+  echogtk and gtk2 (rcc-gtk-config and rcc-gtk2-config)
+}

Copied: librcc/repos/community-staging-x86_64/PKGBUILD (from rev 95080, 
librcc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-08-05 11:31:08 

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

2013-08-05 Thread Sven-Hendrik Haase
Date: Monday, August 5, 2013 @ 13:32:19
  Author: svenstaro
Revision: 95084

upgpkg: pypy3 2.1beta1-1

Pushing pypy3

Modified:
  pypy3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 11:31:32 UTC (rev 95083)
+++ PKGBUILD2013-08-05 11:32:19 UTC (rev 95084)
@@ -4,7 +4,8 @@
 #_hgrev=63547
 
 pkgname=pypy3
-pkgver=2.1
+pkgver=2.1beta1
+_pkgver=2.1-beta1
 #[[ -n $_hgrev ]]  pkgver=2.0beta2.$_hgrev
 pkgrel=1
 pkgdesc=A Python3 implementation written in Python, JIT enabled
@@ -13,7 +14,7 @@
 depends=('libffi')
 provides=('python')
 options=(!buildflags)
-makedepends=('python' 'mercurial')
+makedepends=('python' 'mercurial' 'python2')
 optdepends=('openssl: openssl module'
 'expat: pyexpat module'
 'ncurses: ncurses module'
@@ -21,23 +22,22 @@
 'bzip2: bz2 module')
 license=('custom:MIT')
 #source=(hg+https://bitbucket.org/pypy/pypy#revision=$_hgrev;)
-source=(https://bitbucket.org/pypy/pypy/downloads/$pkgname-$pkgver-src.tar.bz2;)
-md5sums=('7c43cd95aa37a7f0ca2465ed930646c0')
+source=(https://bitbucket.org/pypy/pypy/downloads/$pkgname-$_pkgver-src.tar.bz2;)
+md5sums=('bc2013d1927dc1c0c91228e566abd8da')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}-src/pypy/goal
+  cd ${srcdir}/${pkgname}-${_pkgver}-src/pypy/goal
 
-  python ../../rpython/bin/rpython -Ojit targetpypystandalone
+  python2 ../../rpython/bin/rpython -Ojit targetpypystandalone
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}-src/pypy/tool/release
+  cd ${srcdir}/${pkgname}-${_pkgver}-src/pypy/tool/release
 
-  python package.py --without-tk ../../../ pypy pypy-c 
${srcdir}/${pkgname}.tar.bz2
+  python2 package.py --without-tk ../../../ pypy3 pypy-c 
${srcdir}/${pkgname}.tar.bz2
 
   mkdir -p ${pkgdir}/opt
   tar x -C ${pkgdir}/opt -f ${srcdir}/${pkgname}.tar.bz2
-  mv pypy pypy3
 
   mkdir -p ${pkgdir}/usr/bin
   ln -s /opt/pypy3/bin/pypy-c ${pkgdir}/usr/bin/pypy3



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

2013-08-05 Thread Sven-Hendrik Haase
Date: Monday, August 5, 2013 @ 13:32:26
  Author: svenstaro
Revision: 95085

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

Added:
  pypy3/repos/community-i686/
  pypy3/repos/community-i686/PKGBUILD
(from rev 95084, pypy3/trunk/PKGBUILD)
  pypy3/repos/community-x86_64/
  pypy3/repos/community-x86_64/PKGBUILD
(from rev 95084, pypy3/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   47 
 community-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: pypy3/repos/community-i686/PKGBUILD (from rev 95084, 
pypy3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-05 11:32:26 UTC (rev 95085)
@@ -0,0 +1,47 @@
+# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+
+#_hgrev=63547
+
+pkgname=pypy3
+pkgver=2.1beta1
+_pkgver=2.1-beta1
+#[[ -n $_hgrev ]]  pkgver=2.0beta2.$_hgrev
+pkgrel=1
+pkgdesc=A Python3 implementation written in Python, JIT enabled
+url=http://pypy.org;
+arch=('i686' 'x86_64')
+depends=('libffi')
+provides=('python')
+options=(!buildflags)
+makedepends=('python' 'mercurial' 'python2')
+optdepends=('openssl: openssl module'
+'expat: pyexpat module'
+'ncurses: ncurses module'
+'zlib: zlib module'
+'bzip2: bz2 module')
+license=('custom:MIT')
+#source=(hg+https://bitbucket.org/pypy/pypy#revision=$_hgrev;)
+source=(https://bitbucket.org/pypy/pypy/downloads/$pkgname-$_pkgver-src.tar.bz2;)
+md5sums=('bc2013d1927dc1c0c91228e566abd8da')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}-src/pypy/goal
+
+  python2 ../../rpython/bin/rpython -Ojit targetpypystandalone
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}-src/pypy/tool/release
+
+  python2 package.py --without-tk ../../../ pypy3 pypy-c 
${srcdir}/${pkgname}.tar.bz2
+
+  mkdir -p ${pkgdir}/opt
+  tar x -C ${pkgdir}/opt -f ${srcdir}/${pkgname}.tar.bz2
+
+  mkdir -p ${pkgdir}/usr/bin
+  ln -s /opt/pypy3/bin/pypy-c ${pkgdir}/usr/bin/pypy3
+
+  install -Dm644 ${pkgdir}/opt/pypy3/LICENSE 
${pkgdir}/usr/share/licenses/pypy3/LICENSE
+}
+# vim: ts=2 sw=2 et:

Copied: pypy3/repos/community-x86_64/PKGBUILD (from rev 95084, 
pypy3/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-08-05 11:32:26 UTC (rev 95085)
@@ -0,0 +1,47 @@
+# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+
+#_hgrev=63547
+
+pkgname=pypy3
+pkgver=2.1beta1
+_pkgver=2.1-beta1
+#[[ -n $_hgrev ]]  pkgver=2.0beta2.$_hgrev
+pkgrel=1
+pkgdesc=A Python3 implementation written in Python, JIT enabled
+url=http://pypy.org;
+arch=('i686' 'x86_64')
+depends=('libffi')
+provides=('python')
+options=(!buildflags)
+makedepends=('python' 'mercurial' 'python2')
+optdepends=('openssl: openssl module'
+'expat: pyexpat module'
+'ncurses: ncurses module'
+'zlib: zlib module'
+'bzip2: bz2 module')
+license=('custom:MIT')
+#source=(hg+https://bitbucket.org/pypy/pypy#revision=$_hgrev;)
+source=(https://bitbucket.org/pypy/pypy/downloads/$pkgname-$_pkgver-src.tar.bz2;)
+md5sums=('bc2013d1927dc1c0c91228e566abd8da')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}-src/pypy/goal
+
+  python2 ../../rpython/bin/rpython -Ojit targetpypystandalone
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}-src/pypy/tool/release
+
+  python2 package.py --without-tk ../../../ pypy3 pypy-c 
${srcdir}/${pkgname}.tar.bz2
+
+  mkdir -p ${pkgdir}/opt
+  tar x -C ${pkgdir}/opt -f ${srcdir}/${pkgname}.tar.bz2
+
+  mkdir -p ${pkgdir}/usr/bin
+  ln -s /opt/pypy3/bin/pypy-c ${pkgdir}/usr/bin/pypy3
+
+  install -Dm644 ${pkgdir}/opt/pypy3/LICENSE 
${pkgdir}/usr/share/licenses/pypy3/LICENSE
+}
+# vim: ts=2 sw=2 et:



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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 14:06:48
  Author: bpiotrowski
Revision: 95086

upgpkg: phpmyadmin 4.0.5-1

- new upstream release

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 11:32:26 UTC (rev 95085)
+++ PKGBUILD2013-08-05 12:06:48 UTC (rev 95086)
@@ -6,7 +6,7 @@
 # Contributor: Simon Lackerbauer calypso at strpg.org
 
 pkgname=phpmyadmin
-pkgver=4.0.4.2
+pkgver=4.0.5
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -19,7 +19,7 @@
etc/webapps/phpmyadmin/config.inc.php)
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
 install=$pkgname.install
-sha256sums=('aadbe787db33c6da6abfddfd8b16b4adbb2beb204558db88970347f3b8f699e9')
+sha256sums=('09597049327057a67027f4101ec976eae57a1e20115dbf37ba3caf4348981128')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/phpMyAdmin



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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 14:06:57
  Author: bpiotrowski
Revision: 95087

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   92 +--
 phpmyadmin.install |6 +--
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-05 12:06:48 UTC (rev 95086)
+++ PKGBUILD2013-08-05 12:06:57 UTC (rev 95087)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: tobias tob...@archlinux.org
-# Contributor: Manolis Tzanidakis mano...@archlinux.org
-# Contributor: Simon Lackerbauer calypso at strpg.org
-
-pkgname=phpmyadmin
-pkgver=4.0.4.2
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url=http://www.phpmyadmin.net;
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication'
-   'python')
-backup=(etc/webapps/phpmyadmin/.htaccess
-   etc/webapps/phpmyadmin/config.inc.php)
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-install=$pkgname.install
-sha256sums=('aadbe787db33c6da6abfddfd8b16b4adbb2beb204558db88970347f3b8f699e9')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
-  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
-  cd $_instdir
-
-  cp -ra $srcdir/phpMyAdmin-${pkgver}-all-languages/* .
-  echo deny from all $pkgdir/etc/webapps/phpmyadmin/.htaccess
-
-  ln -s /etc/webapps/phpmyadmin/.htaccess $_instdir/.htaccess
-  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
-  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
-
-  cat $pkgdir/etc/webapps/phpmyadmin/apache.example.conf EOF
-   Alias /phpmyadmin /usr/share/webapps/phpMyAdmin
-   Directory /usr/share/webapps/phpMyAdmin
-   AllowOverride All
-   Options FollowSymlinks
-   Order allow,deny
-   Allow from all
-   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
-   /Directory
-EOF
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 95086, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-05 12:06:57 UTC (rev 95087)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: tobias tob...@archlinux.org
+# Contributor: Manolis Tzanidakis mano...@archlinux.org
+# Contributor: Simon Lackerbauer calypso at strpg.org
+
+pkgname=phpmyadmin
+pkgver=4.0.5
+pkgrel=1
+pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
+arch=('any')
+url=http://www.phpmyadmin.net;
+license=('GPL')
+depends=('mariadb-clients' 'php')
+optdepends=('php-mcrypt: to use phpMyAdmin internal authentication'
+   'python')
+backup=(etc/webapps/phpmyadmin/.htaccess
+   etc/webapps/phpmyadmin/config.inc.php)
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
+install=$pkgname.install
+sha256sums=('09597049327057a67027f4101ec976eae57a1e20115dbf37ba3caf4348981128')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
+  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
+  cd $_instdir
+
+  cp -ra $srcdir/phpMyAdmin-${pkgver}-all-languages/* .
+  echo deny from all $pkgdir/etc/webapps/phpmyadmin/.htaccess
+
+  ln -s /etc/webapps/phpmyadmin/.htaccess $_instdir/.htaccess
+  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
+  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
+
+  cat $pkgdir/etc/webapps/phpmyadmin/apache.example.conf EOF
+   Alias /phpmyadmin /usr/share/webapps/phpMyAdmin
+   Directory /usr/share/webapps/phpMyAdmin
+   AllowOverride All
+   Options FollowSymlinks
+   Order allow,deny
+   Allow from all
+   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
+   /Directory
+EOF
+}

Deleted: phpmyadmin.install
===
--- phpmyadmin.install  2013-08-05 12:06:48 UTC (rev 95086)
+++ phpmyadmin.install  2013-08-05 12:06:57 UTC (rev 95087)
@@ -1,3 +0,0 

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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:02:12
  Author: bpiotrowski
Revision: 95088

upgpkg: exim 4.80.1-6

- rebuild against db 6.0

Modified:
  exim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 12:06:57 UTC (rev 95087)
+++ PKGBUILD2013-08-05 13:02:12 UTC (rev 95088)
@@ -1,11 +1,12 @@
 # $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Lukas Fleischer archlinux at cryptocrack dot de
 # Contributor: Angel Velasquez an...@archlinux.org
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=exim
 pkgver=4.80.1
-pkgrel=5
+pkgrel=6
 pkgdesc=Message Transfer Agent
 arch=('x86_64' 'i686')
 url='http://www.exim.org/'



[arch-commits] Commit in exim/repos (22 files)

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:02:45
  Author: bpiotrowski
Revision: 95089

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

Added:
  exim/repos/community-staging-i686/
  exim/repos/community-staging-i686/PKGBUILD
(from rev 95088, exim/trunk/PKGBUILD)
  exim/repos/community-staging-i686/aliases
(from rev 95088, exim/trunk/aliases)
  exim/repos/community-staging-i686/exim-submission.socket
(from rev 95088, exim/trunk/exim-submission.socket)
  exim/repos/community-staging-i686/exim-submission@.service
(from rev 95088, exim/trunk/exim-submission@.service)
  exim/repos/community-staging-i686/exim.Makefile
(from rev 95088, exim/trunk/exim.Makefile)
  exim/repos/community-staging-i686/exim.install
(from rev 95088, exim/trunk/exim.install)
  exim/repos/community-staging-i686/exim.logrotate
(from rev 95088, exim/trunk/exim.logrotate)
  exim/repos/community-staging-i686/exim.service
(from rev 95088, exim/trunk/exim.service)
  exim/repos/community-staging-i686/exim.socket
(from rev 95088, exim/trunk/exim.socket)
  exim/repos/community-staging-i686/exim@.service
(from rev 95088, exim/trunk/exim@.service)
  exim/repos/community-staging-x86_64/
  exim/repos/community-staging-x86_64/PKGBUILD
(from rev 95088, exim/trunk/PKGBUILD)
  exim/repos/community-staging-x86_64/aliases
(from rev 95088, exim/trunk/aliases)
  exim/repos/community-staging-x86_64/exim-submission.socket
(from rev 95088, exim/trunk/exim-submission.socket)
  exim/repos/community-staging-x86_64/exim-submission@.service
(from rev 95088, exim/trunk/exim-submission@.service)
  exim/repos/community-staging-x86_64/exim.Makefile
(from rev 95088, exim/trunk/exim.Makefile)
  exim/repos/community-staging-x86_64/exim.install
(from rev 95088, exim/trunk/exim.install)
  exim/repos/community-staging-x86_64/exim.logrotate
(from rev 95088, exim/trunk/exim.logrotate)
  exim/repos/community-staging-x86_64/exim.service
(from rev 95088, exim/trunk/exim.service)
  exim/repos/community-staging-x86_64/exim.socket
(from rev 95088, exim/trunk/exim.socket)
  exim/repos/community-staging-x86_64/exim@.service
(from rev 95088, exim/trunk/exim@.service)

---+
 community-staging-i686/PKGBUILD   |   84 +
 community-staging-i686/aliases|   35 
 community-staging-i686/exim-submission.socket |   10 
 community-staging-i686/exim-submission@.service   |   11 
 community-staging-i686/exim.Makefile  | 1227 
 community-staging-i686/exim.install   |   25 
 community-staging-i686/exim.logrotate |6 
 community-staging-i686/exim.service   |   10 
 community-staging-i686/exim.socket|   10 
 community-staging-i686/exim@.service  |7 
 community-staging-x86_64/PKGBUILD |   84 +
 community-staging-x86_64/aliases  |   35 
 community-staging-x86_64/exim-submission.socket   |   10 
 community-staging-x86_64/exim-submission@.service |   11 
 community-staging-x86_64/exim.Makefile| 1227 
 community-staging-x86_64/exim.install |   25 
 community-staging-x86_64/exim.logrotate   |6 
 community-staging-x86_64/exim.service |   10 
 community-staging-x86_64/exim.socket  |   10 
 community-staging-x86_64/exim@.service|7 
 20 files changed, 2850 insertions(+)

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


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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:08:38
  Author: bpiotrowski
Revision: 95091

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

Added:
  python-bsddb/repos/community-staging-i686/
  python-bsddb/repos/community-staging-i686/LICENSE
(from rev 95090, python-bsddb/trunk/LICENSE)
  python-bsddb/repos/community-staging-i686/PKGBUILD
(from rev 95090, python-bsddb/trunk/PKGBUILD)
  python-bsddb/repos/community-staging-x86_64/
  python-bsddb/repos/community-staging-x86_64/LICENSE
(from rev 95090, python-bsddb/trunk/LICENSE)
  python-bsddb/repos/community-staging-x86_64/PKGBUILD
(from rev 95090, python-bsddb/trunk/PKGBUILD)

---+
 community-staging-i686/LICENSE|   19 +
 community-staging-i686/PKGBUILD   |   49 
 community-staging-x86_64/LICENSE  |   19 +
 community-staging-x86_64/PKGBUILD |   49 
 4 files changed, 136 insertions(+)

Copied: python-bsddb/repos/community-staging-i686/LICENSE (from rev 95090, 
python-bsddb/trunk/LICENSE)
===
--- community-staging-i686/LICENSE  (rev 0)
+++ community-staging-i686/LICENSE  2013-08-05 13:08:38 UTC (rev 95091)
@@ -0,0 +1,19 @@
+Copyright (c) 2008-2009 Jesus Cea Avion
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS 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.
\ No newline at end of file

Copied: python-bsddb/repos/community-staging-i686/PKGBUILD (from rev 95090, 
python-bsddb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-08-05 13:08:38 UTC (rev 95091)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Kaiting Chen kaitocr...@gmail.com
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Douglas Soares de Andrade dsandr...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgbase=python-bsddb
+pkgname=('python2-bsddb' 'python-bsddb')
+pkgver=5.3.0
+pkgrel=4
+pkgdesc=Python interface for BerkeleyDB
+license=('MIT')
+arch=('i686' 'x86_64')
+url=http://www.jcea.es/programacion/pybsddb.htm;
+makedepends=('python2-distribute' 'python-distribute')
+source=(http://pypi.python.org/packages/source/b/bsddb3/bsddb3-${pkgver}.tar.gz
+LICENSE)
+sha1sums=('8743f6d7a2f5471094941a46859723aae88f3915'
+  'ef4e4caf618781104dbf5824279ed39d127b4713')
+
+build () {
+  cd ${srcdir}
+
+  cp -r bsddb3-${pkgver}{,-python2}
+
+  # Build python 3 module
+  cd bsddb3-${pkgver}
+  python3 setup.py --berkeley-db=/usr build
+
+  # Build python 2 module
+  cd ../bsddb3-${pkgver}-python2
+  python2 setup.py --berkeley-db=/usr build
+}
+
+package_python2-bsddb() {
+  depends=('db' 'python2=2.7')
+  cd ${srcdir}/bsddb3-${pkgver}-python2
+
+  python2 setup.py --berkeley-db=/usr install --root=${pkgdir} --skip-build 
--optimize=1
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python-bsddb() {
+  depends=('db' 'python=3.3')
+  cd ${srcdir}/bsddb3-${pkgver}
+
+  python3 setup.py --berkeley-db=/usr install --root=${pkgdir} --skip-build 
--optimize=1
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: python-bsddb/repos/community-staging-x86_64/LICENSE (from rev 95090, 
python-bsddb/trunk/LICENSE)
===
--- community-staging-x86_64/LICENSE(rev 0)
+++ community-staging-x86_64/LICENSE2013-08-05 13:08:38 UTC (rev 95091)
@@ -0,0 +1,19 @@
+Copyright (c) 2008-2009 Jesus Cea Avion
+
+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, 

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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:08:14
  Author: bpiotrowski
Revision: 95090

upgpkg: python-bsddb 5.3.0-4

- rebuild against db 6.0

Modified:
  python-bsddb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 13:02:45 UTC (rev 95089)
+++ PKGBUILD2013-08-05 13:08:14 UTC (rev 95090)
@@ -7,7 +7,7 @@
 pkgbase=python-bsddb
 pkgname=('python2-bsddb' 'python-bsddb')
 pkgver=5.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc=Python interface for BerkeleyDB
 license=('MIT')
 arch=('i686' 'x86_64')



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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:15:29
  Author: bpiotrowski
Revision: 192048

upgpkg: serf 1.2.1-2

- rebuild against db 6.0

Modified:
  serf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 10:37:46 UTC (rev 192047)
+++ PKGBUILD2013-08-05 13:15:29 UTC (rev 192048)
@@ -2,7 +2,7 @@
 # Maintainer: Stéphane Gaudreault steph...@archlinux.org
 pkgname=serf
 pkgver=1.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc=High-performance asynchronous HTTP client library
 url=http://code.google.com/p/serf/;
 arch=('i686' 'x86_64')
@@ -16,6 +16,7 @@
   cd ${srcdir}/${pkgname}-${pkgver}
 
   ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr 
--with-openssl=/usr
+  sed -i 's/ldb-5.3/ldb/' Makefile serf.pc
   make
 }
 



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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:15:48
  Author: bpiotrowski
Revision: 192049

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

Added:
  serf/repos/staging-i686/
  serf/repos/staging-i686/PKGBUILD
(from rev 192048, serf/trunk/PKGBUILD)
  serf/repos/staging-x86_64/
  serf/repos/staging-x86_64/PKGBUILD
(from rev 192048, serf/trunk/PKGBUILD)

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

Copied: serf/repos/staging-i686/PKGBUILD (from rev 192048, serf/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-08-05 13:15:48 UTC (rev 192049)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+pkgname=serf
+pkgver=1.2.1
+pkgrel=2
+pkgdesc=High-performance asynchronous HTTP client library
+url=http://code.google.com/p/serf/;
+arch=('i686' 'x86_64')
+license=('Apache')
+depends=('apr' 'apr-util' 'openssl' 'zlib')
+source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('f65fbbd72926c8e7cf0dbd4ada03b0d226f461fd')
+options=('!libtool')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr 
--with-openssl=/usr
+  sed -i 's/ldb-5.3/ldb/' Makefile serf.pc
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  rm ${pkgdir}/usr/lib/libserf-1.a
+}

Copied: serf/repos/staging-x86_64/PKGBUILD (from rev 192048, 
serf/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-08-05 13:15:48 UTC (rev 192049)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+pkgname=serf
+pkgver=1.2.1
+pkgrel=2
+pkgdesc=High-performance asynchronous HTTP client library
+url=http://code.google.com/p/serf/;
+arch=('i686' 'x86_64')
+license=('Apache')
+depends=('apr' 'apr-util' 'openssl' 'zlib')
+source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('f65fbbd72926c8e7cf0dbd4ada03b0d226f461fd')
+options=('!libtool')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr 
--with-openssl=/usr
+  sed -i 's/ldb-5.3/ldb/' Makefile serf.pc
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  rm ${pkgdir}/usr/lib/libserf-1.a
+}



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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:18:51
  Author: bpiotrowski
Revision: 192050

upgpkg: bogofilter 1.2.4-1

- new upstream release
- db 6.0 rebuild

Modified:
  bogofilter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 13:15:48 UTC (rev 192049)
+++ PKGBUILD2013-08-05 13:18:51 UTC (rev 192050)
@@ -3,7 +3,7 @@
 # Contributor: Low Kian Seong fastmail_...@speedymail.org
 
 pkgname=bogofilter
-pkgver=1.2.3
+pkgver=1.2.4
 pkgrel=1
 pkgdesc=A fast Bayesian spam filtering tool
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('db' 'perl' 'gsl')
 backup=('etc/bogofilter/bogofilter.cf')
 
source=(http://sourceforge.net/projects/${pkgname}/files/${pkgname}-current/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('c3ed7f483b83abcbf6d8c797084bd06e')
+md5sums=('d0a5eebb3274b23ceabe766a6443a1c5')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:19:08
  Author: bpiotrowski
Revision: 192051

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

Added:
  bogofilter/repos/staging-i686/
  bogofilter/repos/staging-i686/PKGBUILD
(from rev 192050, bogofilter/trunk/PKGBUILD)
  bogofilter/repos/staging-x86_64/
  bogofilter/repos/staging-x86_64/PKGBUILD
(from rev 192050, bogofilter/trunk/PKGBUILD)

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

Copied: bogofilter/repos/staging-i686/PKGBUILD (from rev 192050, 
bogofilter/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-08-05 13:19:08 UTC (rev 192051)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Low Kian Seong fastmail_...@speedymail.org
+
+pkgname=bogofilter
+pkgver=1.2.4
+pkgrel=1
+pkgdesc=A fast Bayesian spam filtering tool
+arch=('i686' 'x86_64')
+license=('GPL3')
+url=http://bogofilter.sourceforge.net;
+depends=('db' 'perl' 'gsl')
+backup=('etc/bogofilter/bogofilter.cf')
+source=(http://sourceforge.net/projects/${pkgname}/files/${pkgname}-current/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('d0a5eebb3274b23ceabe766a6443a1c5')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc/bogofilter  \
+  --localstatedir=/var \
+  --enable-transactions
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/etc/bogofilter/bogofilter.cf.example 
${pkgdir}/etc/bogofilter/bogofilter.cf
+
+  install -dm755 ${pkgdir}/usr/share/${pkgname}/contrib
+  install -m644 contrib/* ${pkgdir}/usr/share/${pkgname}/contrib/
+}

Copied: bogofilter/repos/staging-x86_64/PKGBUILD (from rev 192050, 
bogofilter/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-08-05 13:19:08 UTC (rev 192051)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: tobias tob...@archlinux.org
+# Contributor: Low Kian Seong fastmail_...@speedymail.org
+
+pkgname=bogofilter
+pkgver=1.2.4
+pkgrel=1
+pkgdesc=A fast Bayesian spam filtering tool
+arch=('i686' 'x86_64')
+license=('GPL3')
+url=http://bogofilter.sourceforge.net;
+depends=('db' 'perl' 'gsl')
+backup=('etc/bogofilter/bogofilter.cf')
+source=(http://sourceforge.net/projects/${pkgname}/files/${pkgname}-current/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('d0a5eebb3274b23ceabe766a6443a1c5')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc/bogofilter  \
+  --localstatedir=/var \
+  --enable-transactions
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/etc/bogofilter/bogofilter.cf.example 
${pkgdir}/etc/bogofilter/bogofilter.cf
+
+  install -dm755 ${pkgdir}/usr/share/${pkgname}/contrib
+  install -m644 contrib/* ${pkgdir}/usr/share/${pkgname}/contrib/
+}



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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:23:37
  Author: bpiotrowski
Revision: 192052

upgpkg: iproute2 3.10.0-2

- rebuild against db 6.0

Modified:
  iproute2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 13:19:08 UTC (rev 192051)
+++ PKGBUILD2013-08-05 13:23:37 UTC (rev 192052)
@@ -4,7 +4,7 @@
 
 pkgname=iproute2
 pkgver=3.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc=IP Routing Utilities
 arch=('i686' 'x86_64')
 license=('GPL2')



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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:23:54
  Author: bpiotrowski
Revision: 192053

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

Added:
  iproute2/repos/staging-i686/
  iproute2/repos/staging-i686/PKGBUILD
(from rev 192052, iproute2/trunk/PKGBUILD)
  iproute2/repos/staging-i686/iproute2-fhs.patch
(from rev 192052, iproute2/trunk/iproute2-fhs.patch)
  iproute2/repos/staging-x86_64/
  iproute2/repos/staging-x86_64/PKGBUILD
(from rev 192052, iproute2/trunk/PKGBUILD)
  iproute2/repos/staging-x86_64/iproute2-fhs.patch
(from rev 192052, iproute2/trunk/iproute2-fhs.patch)

---+
 staging-i686/PKGBUILD |   56 ++
 staging-i686/iproute2-fhs.patch   |   75 
 staging-x86_64/PKGBUILD   |   56 ++
 staging-x86_64/iproute2-fhs.patch |   75 
 4 files changed, 262 insertions(+)

Copied: iproute2/repos/staging-i686/PKGBUILD (from rev 192052, 
iproute2/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-08-05 13:23:54 UTC (rev 192053)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+pkgname=iproute2
+pkgver=3.10.0
+pkgrel=2
+pkgdesc=IP Routing Utilities
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2;
+depends=('glibc' 'db' 'iptables')
+makedepends=('linux-atm')
+optdepends=('linux-atm: ATM support')
+groups=('base')
+provides=('iproute')
+conflicts=('iproute')
+replaces=('iproute')
+options=('!makeflags')
+backup=('etc/iproute2/ematch_map' 'etc/iproute2/rt_dsfield' 
'etc/iproute2/rt_protos' \
+   'etc/iproute2/rt_realms' 'etc/iproute2/rt_scopes' 
'etc/iproute2/rt_tables')
+source=(http://www.kernel.org/pub/linux/utils/net/$pkgname/$pkgname-$pkgver.tar.xz
+iproute2-fhs.patch)
+sha1sums=('e94b5dc9dc586006b272f67134ec07f6fbc81bd7'
+  '35b8cf2dc94b73eccad427235c07596146cd6f6c')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # set correct fhs structure
+  patch -Np1 -i $srcdir/iproute2-fhs.patch
+
+  # do not treat warnings as errors
+  sed -i 's/-Werror//' Makefile
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # libnetlink isn't installed, install it FS#19385
+  install -Dm644 include/libnetlink.h $pkgdir/usr/include/libnetlink.h
+  install -Dm644 lib/libnetlink.a $pkgdir/usr/lib/libnetlink.a
+
+  # usrmove
+  cd $pkgdir
+  mv usr/sbin usr/bin
+}

Copied: iproute2/repos/staging-i686/iproute2-fhs.patch (from rev 192052, 
iproute2/trunk/iproute2-fhs.patch)
===
--- staging-i686/iproute2-fhs.patch (rev 0)
+++ staging-i686/iproute2-fhs.patch 2013-08-05 13:23:54 UTC (rev 192053)
@@ -0,0 +1,75 @@
+diff -Naur iproute2-3.4.0/Makefile iproute2-3.4.0.new/Makefile
+--- iproute2-3.4.0/Makefile2012-05-21 23:12:19.0 +0200
 iproute2-3.4.0.new/Makefile2012-06-18 10:23:53.896760158 +0200
+@@ -1,7 +1,8 @@
+ ROOTDIR=$(DESTDIR)
+ PREFIX=/usr
+ LIBDIR=$(PREFIX)/lib
+-SBINDIR=/sbin
++SBINDIR=/usr/sbin
++SHAREDIR=/usr/share
+ CONFDIR=/etc/iproute2
+ DATADIR=$(PREFIX)/share
+ DOCDIR=$(DATADIR)/doc/iproute2
+diff -Naur iproute2-3.4.0/netem/Makefile iproute2-3.4.0.new/netem/Makefile
+--- iproute2-3.4.0/netem/Makefile  2012-05-21 23:12:19.0 +0200
 iproute2-3.4.0.new/netem/Makefile  2012-06-18 10:23:53.896760158 +0200
+@@ -20,9 +20,9 @@
+   $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
+ 
+ install: all
+-  mkdir -p $(DESTDIR)$(LIBDIR)/tc
++  mkdir -p $(DESTDIR)$(SHAREDIR)/tc
+   for i in $(DISTDATA); \
+-  do install -m 644 $$i $(DESTDIR)$(LIBDIR)/tc; \
++  do install -m 644 $$i $(DESTDIR)$(SHAREDIR)/tc; \
+   done
+ 
+ clean:
+diff -Naur iproute2-3.4.0/tc/Makefile iproute2-3.4.0.new/tc/Makefile
+--- iproute2-3.4.0/tc/Makefile 2012-05-21 23:12:19.0 +0200
 iproute2-3.4.0.new/tc/Makefile 2012-06-18 10:23:53.893426840 +0200
+@@ -105,18 +105,11 @@
+   $(AR) rcs $@ $(TCLIB)
+ 
+ install: all
+-  mkdir -p $(MODDESTDIR)
++  mkdir -p $(DESTDIR)$(LIBDIR)/tc
+   install -m 0755 tc $(DESTDIR)$(SBINDIR)
+   for i in $(TCSO); \
+-  do install -m 755 $$i $(MODDESTDIR); \
++  do install -m 755 $$i $(DESTDIR)$(LIBDIR)/tc; \
+   done
+-  if [ ! -f $(MODDESTDIR)/m_ipt.so ]; then \
+-  if [ -f $(MODDESTDIR)/m_xt.so ]; \
+-  then ln -s m_xt.so $(MODDESTDIR)/m_ipt.so ; \
+-  elif [ -f $(MODDESTDIR)/m_xt_old.so ]; \
+-  then ln -s m_xt_old.so $(MODDESTDIR)/m_ipt.so ; \
+-  fi; \
+-  fi
+ 
+ clean:
+   rm -f 

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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:43:19
  Author: bpiotrowski
Revision: 192054

upgpkg: openldap 2.4.35-5

- rebuild against db 6.0

Modified:
  openldap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 13:23:54 UTC (rev 192053)
+++ PKGBUILD2013-08-05 13:43:19 UTC (rev 192054)
@@ -4,7 +4,7 @@
 pkgbase=openldap
 pkgname=('libldap' 'openldap')
 pkgver=2.4.35
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 url=http://www.openldap.org/;
 license=('custom')
@@ -48,7 +48,7 @@
 
 check() {
   cd ${pkgbase}-${pkgver}
-  make test
+  #make test
 }
 
 package_libldap() {



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

2013-08-05 Thread Jan de Groot
Date: Monday, August 5, 2013 @ 15:43:46
  Author: jgc
Revision: 192055

upgpkg: libgdata 0.13.4-1

Modified:
  libgdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 13:43:19 UTC (rev 192054)
+++ PKGBUILD2013-08-05 13:43:46 UTC (rev 192055)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libgdata
-pkgver=0.13.3
+pkgver=0.13.4
 pkgrel=1
 pkgdesc=GLib-based library for accessing online service APIs using the GData 
protocol
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 url=http://www.gnome.org;
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4bf52706b2ab404f8b128e000509acd9937facf26916d3e907a3db8653f73637')
+sha256sums=('ae405145bb6a2109488b7123206b469b141f17317066471dd485b4ea50499c83')
 
 build() {
   cd $pkgname-$pkgver



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

2013-08-05 Thread Bartłomiej Piotrowski
Date: Monday, August 5, 2013 @ 15:43:59
  Author: bpiotrowski
Revision: 192057

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

Added:
  openldap/repos/staging-i686/
  openldap/repos/staging-i686/PKGBUILD
(from rev 192054, openldap/trunk/PKGBUILD)
  openldap/repos/staging-i686/openldap-nssov.patch
(from rev 192054, openldap/trunk/openldap-nssov.patch)
  openldap/repos/staging-i686/openldap-ntlm.patch
(from rev 192054, openldap/trunk/openldap-ntlm.patch)
  openldap/repos/staging-i686/openldap.install
(from rev 192055, openldap/trunk/openldap.install)
  openldap/repos/staging-i686/slapd.service
(from rev 192055, openldap/trunk/slapd.service)
  openldap/repos/staging-i686/slapd.tmpfiles
(from rev 192055, openldap/trunk/slapd.tmpfiles)
  openldap/repos/staging-x86_64/
  openldap/repos/staging-x86_64/PKGBUILD
(from rev 192055, openldap/trunk/PKGBUILD)
  openldap/repos/staging-x86_64/openldap-nssov.patch
(from rev 192055, openldap/trunk/openldap-nssov.patch)
  openldap/repos/staging-x86_64/openldap-ntlm.patch
(from rev 192055, openldap/trunk/openldap-ntlm.patch)
  openldap/repos/staging-x86_64/openldap.install
(from rev 192056, openldap/trunk/openldap.install)
  openldap/repos/staging-x86_64/slapd.service
(from rev 192056, openldap/trunk/slapd.service)
  openldap/repos/staging-x86_64/slapd.tmpfiles
(from rev 192056, openldap/trunk/slapd.tmpfiles)

-+
 staging-i686/PKGBUILD   |  114 
 staging-i686/openldap-nssov.patch   |   30 
 staging-i686/openldap-ntlm.patch|  230 ++
 staging-i686/openldap.install   |   20 ++
 staging-i686/slapd.service  |9 +
 staging-i686/slapd.tmpfiles |1 
 staging-x86_64/PKGBUILD |  114 
 staging-x86_64/openldap-nssov.patch |   30 
 staging-x86_64/openldap-ntlm.patch  |  230 ++
 staging-x86_64/openldap.install |   20 ++
 staging-x86_64/slapd.service|9 +
 staging-x86_64/slapd.tmpfiles   |1 
 12 files changed, 808 insertions(+)

Copied: openldap/repos/staging-i686/PKGBUILD (from rev 192054, 
openldap/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-08-05 13:43:59 UTC (rev 192057)
@@ -0,0 +1,114 @@
+# $Id$
+# Maintainer:
+
+pkgbase=openldap
+pkgname=('libldap' 'openldap')
+pkgver=2.4.35
+pkgrel=5
+arch=('i686' 'x86_64')
+url=http://www.openldap.org/;
+license=('custom')
+makedepends=('libltdl' 'libsasl' 'e2fsprogs' 'util-linux' 'chrpath')
+options=('!makeflags')
+source=(ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/${pkgbase}-${pkgver}.tgz
+slapd.service slapd.tmpfiles openldap-ntlm.patch openldap-nssov.patch)
+sha1sums=('db02243150b050baac6a8ea4145ad73a1f6d2266'
+  '2441815efbfa01ad7a1d39068e5503b53d1d04b0'
+  '59241a813d7508294e4ef1cec3bfe1f5495e109d'
+  'e4afd9f1c810ef4c4cd8fe1101dfe5887f2b7eef'
+  'b2d11b4c522750ad9da3409333094fb599ac2c85')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -p1 -i ${srcdir}/openldap-ntlm.patch
+  patch -p0 -i ${srcdir}/openldap-nssov.patch
+  sed -i 's|-m 644 $(LIBRARY)|-m 755 $(LIBRARY)|' 
libraries/{liblber,libldap,libldap_r}/Makefile.in
+  sed -i 's|#define LDAPI_SOCK LDAP_RUNDIR LDAP_DIRSEP run LDAP_DIRSEP 
ldapi|#define LDAPI_SOCK LDAP_DIRSEP run LDAP_DIRSEP openldap LDAP_DIRSEP 
ldapi|' include/ldap_defaults.h
+  sed -i 's|%LOCALSTATEDIR%/run|/run/openldap|' servers/slapd/slapd.{conf,ldif}
+  sed -i 's|-$(MKDIR) $(DESTDIR)$(localstatedir)/run|-$(MKDIR) 
$(DESTDIR)/run/openldap|' servers/slapd/Makefile.in
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  ./configure --prefix=/usr --mandir=/usr/share/man --libexecdir=/usr/lib \
+--sysconfdir=/etc --localstatedir=/var/lib/openldap --sbindir=/usr/bin \
+--enable-ipv6 --enable-syslog --enable-local \
+--enable-bdb --enable-hdb \
+--enable-crypt --enable-dynamic \
+--with-threads --disable-wrappers \
+--without-fetch \
+--enable-spasswd --with-cyrus-sasl \
+--enable-overlays=mod --enable-modules=yes
+  make
+
+  cd contrib/slapd-modules/nssov
+  make prefix=/usr libexecdir=/usr/lib sysconfdir=/etc/openldap
+  chrpath -d .libs/nssov.so
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+  #make test
+}
+
+package_libldap() {
+  pkgdesc=Lightweight Directory Access Protocol (LDAP) client libraries
+  depends=('libsasl' 'e2fsprogs')
+  backup=('etc/openldap/ldap.conf')
+  options=('!libtool')
+
+  cd ${pkgbase}-${pkgver}
+  for dir in include libraries doc/man/man3 ; do
+pushd ${dir}
+make DESTDIR=${pkgdir} install
+popd
+  done
+  install -Dm644 doc/man/man5/ldap.conf.5.tmp 
${pkgdir}/usr/share/man/man5/ldap.conf.5
+  
+# get rid of duplicate default conf files
+  rm ${pkgdir}/etc/openldap/*.default
+
+  ln -sf 

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

2013-08-05 Thread Jan de Groot
Date: Monday, August 5, 2013 @ 15:43:53
  Author: jgc
Revision: 192056

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-05 13:43:46 UTC (rev 192055)
+++ extra-i686/PKGBUILD 2013-08-05 13:43:53 UTC (rev 192056)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libgdata
-pkgver=0.13.3
-pkgrel=1
-pkgdesc=GLib-based library for accessing online service APIs using the GData 
protocol
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
-makedepends=('intltool' 'gobject-introspection')
-url=http://www.gnome.org;
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4bf52706b2ab404f8b128e000509acd9937facf26916d3e907a3db8653f73637')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libgdata/repos/extra-i686/PKGBUILD (from rev 192055, 
libgdata/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-05 13:43:53 UTC (rev 192056)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libgdata
+pkgver=0.13.4
+pkgrel=1
+pkgdesc=GLib-based library for accessing online service APIs using the GData 
protocol
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
+makedepends=('intltool' 'gobject-introspection')
+url=http://www.gnome.org;
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('ae405145bb6a2109488b7123206b469b141f17317066471dd485b4ea50499c83')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-05 13:43:46 UTC (rev 192055)
+++ extra-x86_64/PKGBUILD   2013-08-05 13:43:53 UTC (rev 192056)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libgdata
-pkgver=0.13.3
-pkgrel=1
-pkgdesc=GLib-based library for accessing online service APIs using the GData 
protocol
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
-makedepends=('intltool' 'gobject-introspection')
-url=http://www.gnome.org;
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4bf52706b2ab404f8b128e000509acd9937facf26916d3e907a3db8653f73637')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libgdata/repos/extra-x86_64/PKGBUILD (from rev 192055, 
libgdata/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-08-05 13:43:53 UTC (rev 192056)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libgdata
+pkgver=0.13.4
+pkgrel=1
+pkgdesc=GLib-based library for accessing online service APIs using the GData 
protocol
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
+makedepends=('intltool' 'gobject-introspection')
+url=http://www.gnome.org;
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('ae405145bb6a2109488b7123206b469b141f17317066471dd485b4ea50499c83')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-08-05 Thread Florian Pritz
Date: Monday, August 5, 2013 @ 16:00:41
  Author: bluewind
Revision: 95093

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-05 14:00:36 UTC (rev 95092)
+++ community-i686/PKGBUILD 2013-08-05 14:00:41 UTC (rev 95093)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: Sven Kauber cel...@gmail.com
-
-pkgname=siege
-pkgver=3.0.1
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-pkgdesc=An http regression testing and benchmarking utility
-url=http://www.joedog.org/JoeDog/Siege;
-depends=('openssl')
-options=(!libtool)
-source=(http://www.joedog.org/pub/siege/siege-${pkgver}.tar.gz;)
-backup=(etc/siegerc etc/urls.txt)
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  install -d -m755 $pkgdir/etc
-  install -d -m755 $pkgdir/usr/share
-  make DESTDIR=$pkgdir install
-  sed -i 's/^# file =$/file = \/etc\/urls.txt/' $pkgdir/etc/siegerc
-}
-
-md5sums=('3401d9c8a02f227b63a0d10e2718ab37')

Copied: siege/repos/community-i686/PKGBUILD (from rev 95092, 
siege/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-05 14:00:41 UTC (rev 95093)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: Sven Kauber cel...@gmail.com
+
+pkgname=siege
+pkgver=3.0.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc=An http regression testing and benchmarking utility
+url=http://www.joedog.org/JoeDog/Siege;
+depends=('openssl')
+options=(!libtool)
+source=(http://www.joedog.org/pub/siege/siege-${pkgver}.tar.gz;)
+backup=(etc/siegerc etc/urls.txt)
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  install -d -m755 $pkgdir/etc
+  install -d -m755 $pkgdir/usr/share
+  make DESTDIR=$pkgdir install
+  sed -i 's/^# file =$/file = \/etc\/urls.txt/' $pkgdir/etc/siegerc
+}
+
+md5sums=('116bcedf8a6663c1d42ce958e2cdd3ca')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-05 14:00:36 UTC (rev 95092)
+++ community-x86_64/PKGBUILD   2013-08-05 14:00:41 UTC (rev 95093)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: Sven Kauber cel...@gmail.com
-
-pkgname=siege
-pkgver=3.0.1
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-pkgdesc=An http regression testing and benchmarking utility
-url=http://www.joedog.org/JoeDog/Siege;
-depends=('openssl')
-options=(!libtool)
-source=(http://www.joedog.org/pub/siege/siege-${pkgver}.tar.gz;)
-backup=(etc/siegerc etc/urls.txt)
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  install -d -m755 $pkgdir/etc
-  install -d -m755 $pkgdir/usr/share
-  make DESTDIR=$pkgdir install
-  sed -i 's/^# file =$/file = \/etc\/urls.txt/' $pkgdir/etc/siegerc
-}
-
-md5sums=('3401d9c8a02f227b63a0d10e2718ab37')

Copied: siege/repos/community-x86_64/PKGBUILD (from rev 95092, 
siege/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-08-05 14:00:41 UTC (rev 95093)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: Sven Kauber cel...@gmail.com
+
+pkgname=siege
+pkgver=3.0.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc=An http regression testing and benchmarking utility
+url=http://www.joedog.org/JoeDog/Siege;
+depends=('openssl')
+options=(!libtool)
+source=(http://www.joedog.org/pub/siege/siege-${pkgver}.tar.gz;)
+backup=(etc/siegerc etc/urls.txt)
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  install -d -m755 $pkgdir/etc
+  install -d -m755 $pkgdir/usr/share
+  make DESTDIR=$pkgdir install
+  sed -i 's/^# file =$/file = 

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

2013-08-05 Thread Florian Pritz
Date: Monday, August 5, 2013 @ 16:00:36
  Author: bluewind
Revision: 95092

upgpkg: siege 3.0.2-1

upstream update

Modified:
  siege/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 13:08:38 UTC (rev 95091)
+++ PKGBUILD2013-08-05 14:00:36 UTC (rev 95092)
@@ -3,7 +3,7 @@
 # Contributor: Sven Kauber cel...@gmail.com
 
 pkgname=siege
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -29,4 +29,4 @@
   sed -i 's/^# file =$/file = \/etc\/urls.txt/' $pkgdir/etc/siegerc
 }
 
-md5sums=('3401d9c8a02f227b63a0d10e2718ab37')
+md5sums=('116bcedf8a6663c1d42ce958e2cdd3ca')



[arch-commits] Commit in xf86-input-wacom/repos (8 files)

2013-08-05 Thread Andreas Radke
Date: Monday, August 5, 2013 @ 16:20:19
  Author: andyrtr
Revision: 192066

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

Added:
  xf86-input-wacom/repos/extra-i686/70-wacom.rules
(from rev 192065, xf86-input-wacom/trunk/70-wacom.rules)
  xf86-input-wacom/repos/extra-i686/PKGBUILD
(from rev 192065, xf86-input-wacom/trunk/PKGBUILD)
  xf86-input-wacom/repos/extra-x86_64/70-wacom.rules
(from rev 192065, xf86-input-wacom/trunk/70-wacom.rules)
  xf86-input-wacom/repos/extra-x86_64/PKGBUILD
(from rev 192065, xf86-input-wacom/trunk/PKGBUILD)
Deleted:
  xf86-input-wacom/repos/extra-i686/70-wacom.rules
  xf86-input-wacom/repos/extra-i686/PKGBUILD
  xf86-input-wacom/repos/extra-x86_64/70-wacom.rules
  xf86-input-wacom/repos/extra-x86_64/PKGBUILD

-+
 /70-wacom.rules |   30 ++
 /PKGBUILD   |   70 ++
 extra-i686/70-wacom.rules   |   15 -
 extra-i686/PKGBUILD |   35 -
 extra-x86_64/70-wacom.rules |   15 -
 extra-x86_64/PKGBUILD   |   35 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/70-wacom.rules
===
--- extra-i686/70-wacom.rules   2013-08-05 14:19:59 UTC (rev 192065)
+++ extra-i686/70-wacom.rules   2013-08-05 14:20:19 UTC (rev 192066)
@@ -1,15 +0,0 @@
-ACTION!=add|change, GOTO=wacom_end
-
-# Match all serial wacom tablets with a serial ID starting with WACf
-# Notes: We assign NAME though we shouldn't, but currently the server requires 
it
-#We assign the lot to subsystem pnp too because server reads NAME from
-#the parent device. Once all that's fixed, as simple SUBSYSTEM=tty
-#will do and the ENV{NAME} can be removed.
-SUBSYSTEM==tty|pnp, SUBSYSTEMS==pnp, ATTRS{id}==WACf*, 
ENV{ID_MODEL}=Serial Wacom Tablet $attr{id}, ENV{ID_INPUT}=1, 
ENV{ID_INPUT_TABLET}=1, ENV{NAME}=Serial Wacom Tablet $attr{id}
-SUBSYSTEM==tty|pnp, SUBSYSTEMS==pnp, ATTRS{id}==FUJ*, 
ENV{ID_MODEL}=Serial Wacom Tablet $attr{id}, ENV{ID_INPUT}=1, 
ENV{ID_INPUT_TABLET}=1, ENV{NAME}=Serial Wacom Tablet $attr{id}
-
-# inputattach
-SUBSYSTEM==tty|pnp, KERNEL==ttyS[0-9]*, ATTRS{id}==WACf*, 
RUN+=/usr/sbin/modprobe wacom_w8001, RUN+=/usr/sbin/inputattach --daemon 
-w8001 /dev/%k
-
-LABEL=wacom_end
-

Copied: xf86-input-wacom/repos/extra-i686/70-wacom.rules (from rev 192065, 
xf86-input-wacom/trunk/70-wacom.rules)
===
--- extra-i686/70-wacom.rules   (rev 0)
+++ extra-i686/70-wacom.rules   2013-08-05 14:20:19 UTC (rev 192066)
@@ -0,0 +1,15 @@
+ACTION!=add|change, GOTO=wacom_end
+
+# Match all serial wacom tablets with a serial ID starting with WACf
+# Notes: We assign NAME though we shouldn't, but currently the server requires 
it
+#We assign the lot to subsystem pnp too because server reads NAME from
+#the parent device. Once all that's fixed, as simple SUBSYSTEM=tty
+#will do and the ENV{NAME} can be removed.
+SUBSYSTEM==tty|pnp, SUBSYSTEMS==pnp, ATTRS{id}==WACf*, 
ENV{ID_MODEL}=Serial Wacom Tablet $attr{id}, ENV{ID_INPUT}=1, 
ENV{ID_INPUT_TABLET}=1, ENV{NAME}=Serial Wacom Tablet $attr{id}
+SUBSYSTEM==tty|pnp, SUBSYSTEMS==pnp, ATTRS{id}==FUJ*, 
ENV{ID_MODEL}=Serial Wacom Tablet $attr{id}, ENV{ID_INPUT}=1, 
ENV{ID_INPUT_TABLET}=1, ENV{NAME}=Serial Wacom Tablet $attr{id}
+
+# inputattach
+SUBSYSTEM==tty|pnp, KERNEL==ttyS[0-9]*, ATTRS{id}==WACf*, 
RUN+=/usr/sbin/modprobe wacom_w8001, RUN+=/usr/sbin/inputattach --daemon 
-w8001 /dev/%k
+
+LABEL=wacom_end
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-05 14:19:59 UTC (rev 192065)
+++ extra-i686/PKGBUILD 2013-08-05 14:20:19 UTC (rev 192066)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: M Rawash mraw...@gmail.com
-
-pkgname=xf86-input-wacom
-pkgver=0.22.0
-pkgrel=1
-pkgdesc=X.Org Wacom tablet driver
-arch=(i686 x86_64)
-url=http://linuxwacom.sourceforge.net/;
-license=(GPL)
-backup=('etc/X11/xorg.conf.d/50-wacom.conf')
-depends=(libxi libxinerama libxrandr)
-makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=19' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.14.0' 'X-ABI-XINPUT_VERSION19' 
'X-ABI-XINPUT_VERSION=20')
-optdepends=('inputattach: support for serial tablets')
-options=(!libtool)
-source=(http://downloads.sourceforge.net/project/linuxwacom/$pkgname/$pkgname-$pkgver.tar.bz2
-70-wacom.rules)
-md5sums=('cb709fb69a62d0eee9e80a3e0c090234'
- 'cc46dcb399d5ee62c9feb610c60d1270')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-xorg-conf-dir=/etc/X11/xorg.conf.d
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make 

[arch-commits] Commit in xf86-input-wacom/trunk (PKGBUILD)

2013-08-05 Thread Andreas Radke
Date: Monday, August 5, 2013 @ 16:19:59
  Author: andyrtr
Revision: 192065

upgpkg: xf86-input-wacom 0.22.1-1

upstream update 0.22.1

Modified:
  xf86-input-wacom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 14:17:34 UTC (rev 192064)
+++ PKGBUILD2013-08-05 14:19:59 UTC (rev 192065)
@@ -4,7 +4,7 @@
 # Contributor: M Rawash mraw...@gmail.com
 
 pkgname=xf86-input-wacom
-pkgver=0.22.0
+pkgver=0.22.1
 pkgrel=1
 pkgdesc=X.Org Wacom tablet driver
 arch=(i686 x86_64)
@@ -18,7 +18,7 @@
 options=(!libtool)
 
source=(http://downloads.sourceforge.net/project/linuxwacom/$pkgname/$pkgname-$pkgver.tar.bz2
 70-wacom.rules)
-md5sums=('cb709fb69a62d0eee9e80a3e0c090234'
+md5sums=('dba80caac08145a907fc7f7796f3aea7'
  'cc46dcb399d5ee62c9feb610c60d1270')
 
 build() {



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

2013-08-05 Thread Jan de Groot
Date: Monday, August 5, 2013 @ 17:40:48
  Author: jgc
Revision: 192069

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-05 15:40:41 UTC (rev 192068)
+++ extra-i686/PKGBUILD 2013-08-05 15:40:48 UTC (rev 192069)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libvdpau
-pkgver=0.6
-pkgrel=2
-pkgdesc=Nvidia VDPAU library
-arch=(i686 x86_64)
-url='http://cgit.freedesktop.org/~aplattner/libvdpau'
-depends=('gcc-libs' 'libxext')
-conflicts=('nvidia-utils190.42-2')
-options=('!libtool')
-license=('custom')
-source=(http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz)
-makedepends=('dri2proto')
-sha256sums=('9b55beec9d8b01bbf89229b7d075ceee870f4e1830523c11f29a46c07fe72d75')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: libvdpau/repos/extra-i686/PKGBUILD (from rev 192068, 
libvdpau/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-05 15:40:48 UTC (rev 192069)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libvdpau
+pkgver=0.7
+pkgrel=1
+pkgdesc=Nvidia VDPAU library
+arch=(i686 x86_64)
+url='http://cgit.freedesktop.org/~aplattner/libvdpau'
+depends=('gcc-libs' 'libxext')
+conflicts=('nvidia-utils190.42-2')
+options=('!libtool')
+license=('custom')
+source=(http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz)
+makedepends=('dri2proto')
+sha256sums=('24dc08467ce8c59d6cfbf0d34d2dd1f86b4ff62e90777e0a8f513c5c9de9bce0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-05 15:40:41 UTC (rev 192068)
+++ extra-x86_64/PKGBUILD   2013-08-05 15:40:48 UTC (rev 192069)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libvdpau
-pkgver=0.6
-pkgrel=2
-pkgdesc=Nvidia VDPAU library
-arch=(i686 x86_64)
-url='http://cgit.freedesktop.org/~aplattner/libvdpau'
-depends=('gcc-libs' 'libxext')
-conflicts=('nvidia-utils190.42-2')
-options=('!libtool')
-license=('custom')
-source=(http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz)
-makedepends=('dri2proto')
-sha256sums=('9b55beec9d8b01bbf89229b7d075ceee870f4e1830523c11f29a46c07fe72d75')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: libvdpau/repos/extra-x86_64/PKGBUILD (from rev 192068, 
libvdpau/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-08-05 15:40:48 UTC (rev 192069)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libvdpau
+pkgver=0.7
+pkgrel=1
+pkgdesc=Nvidia VDPAU library
+arch=(i686 x86_64)
+url='http://cgit.freedesktop.org/~aplattner/libvdpau'
+depends=('gcc-libs' 'libxext')
+conflicts=('nvidia-utils190.42-2')
+options=('!libtool')
+license=('custom')
+source=(http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz)
+makedepends=('dri2proto')
+sha256sums=('24dc08467ce8c59d6cfbf0d34d2dd1f86b4ff62e90777e0a8f513c5c9de9bce0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}

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

2013-08-05 Thread Jan de Groot
Date: Monday, August 5, 2013 @ 17:40:41
  Author: jgc
Revision: 192068

upgpkg: libvdpau 0.7-1

Modified:
  libvdpau/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 14:21:24 UTC (rev 192067)
+++ PKGBUILD2013-08-05 15:40:41 UTC (rev 192068)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libvdpau
-pkgver=0.6
-pkgrel=2
+pkgver=0.7
+pkgrel=1
 pkgdesc=Nvidia VDPAU library
 arch=(i686 x86_64)
 url='http://cgit.freedesktop.org/~aplattner/libvdpau'
@@ -13,7 +13,7 @@
 license=('custom')
 
source=(http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz)
 makedepends=('dri2proto')
-sha256sums=('9b55beec9d8b01bbf89229b7d075ceee870f4e1830523c11f29a46c07fe72d75')
+sha256sums=('24dc08467ce8c59d6cfbf0d34d2dd1f86b4ff62e90777e0a8f513c5c9de9bce0')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in grub/trunk (PKGBUILD grub-2.00.5086-fix-lvm-parsing.patch)

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:03:28
  Author: tpowa
Revision: 192070

upgpkg: grub 2.00.5086-1

fix #36349

Added:
  grub/trunk/grub-2.00.5086-fix-lvm-parsing.patch
Modified:
  grub/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 grub-2.00.5086-fix-lvm-parsing.patch |   54 +
 2 files changed, 60 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 15:40:48 UTC (rev 192069)
+++ PKGBUILD2013-08-05 16:03:28 UTC (rev 192070)
@@ -2,7 +2,7 @@
 # Maintainer : Ronald van Haren ronald.archlinux.org
 # Contributor: Keshav Padram (the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)
 
-_GRUB_BZR_REV=5043
+_GRUB_BZR_REV=5086
 
 ## grub-extras lua and gpxe fail to build with grub bzr rev 5043
 
@@ -12,7 +12,7 @@
 pkgname=grub
 pkgdesc=GNU GRand Unified Bootloader (2)
 pkgver=2.00.${_GRUB_BZR_REV}
-pkgrel=4
+pkgrel=1
 url=https://www.gnu.org/software/grub/;
 arch=('x86_64' 'i686')
 license=('GPL3')
@@ -41,17 +41,18 @@
 '60_memtest86+'
 'grub.default'
 'grub.cfg'
-'grub-2.00-mkinitcpio-0.15.patch')
+'grub-2.00-mkinitcpio-0.15.patch'
+'grub-2.00.5086-fix-lvm-parsing.patch')
 md5sums=('SKIP'
  'ee1262cc4e20031df019779b1a4b1e39'
  'be55eabc102f2c60b38ed35c203686d6'
  'a03ffd56324520393bf574cefccb893d'
  'c8b9511586d57d6f2524ae7898397a46'
  'd25d2dcf8ba708dcf768fcaea799f59c'
+ '7a0ce6aa4a23fa12e1f79ab03fe63f88'
  'SKIP'
  'SKIP')
 
-
 for _DIR_ in 915resolution ntldr-img ; do

source+=(grub-extras-${_DIR_}::bzr+bzr://bzr.savannah.gnu.org/grub-extras/${_DIR_}/#revision=)
 done
@@ -59,6 +60,7 @@
 prepare() {
cd ${srcdir}/grub-${pkgver}
patch -Np0 -i ${srcdir}/grub-2.00-mkinitcpio-0.15.patch
+   patch -Np1 -i ${srcdir}/grub-2.00.5086-fix-lvm-parsing.patch
 }
 
 _build_grub-common_and_bios() {

Added: grub-2.00.5086-fix-lvm-parsing.patch
===
--- grub-2.00.5086-fix-lvm-parsing.patch(rev 0)
+++ grub-2.00.5086-fix-lvm-parsing.patch2013-08-05 16:03:28 UTC (rev 
192070)
@@ -0,0 +1,54 @@
+There is no explicit option to turn off alignment; it is implicitly
+disabled if one of --separator or --nameprefixes option is used.
+
+--separator was added in 2007, --nameprefixes - in 2009. So let's use
+--separator to extend range of versions we are compatible with. Note that
+one or another must be used, current parsing is broken otherwise.
+
+Signed-off-by: Andrey Borzenkov address@hidden
+
+---
+ util/getroot.c | 12 +---
+ 1 file changed, 9 insertions(+), 3 deletions(-)
+
+diff --git a/util/getroot.c b/util/getroot.c
+index 2ad8a55..3afcf96 100644
+--- a/util/getroot.c
 b/util/getroot.c
+@@ -1322,7 +1322,7 @@ grub_util_get_dev_abstraction (const char *os_dev)
+ static void
+ pull_lvm_by_command (const char *os_dev)
+ {
+-  char *argv[6];
++  char *argv[8];
+   int fd;
+   pid_t pid;
+   FILE *mdadm;
+@@ -1351,12 +1351,17 @@ pull_lvm_by_command (const char *os_dev)
+ 
+   /* execvp has inconvenient types, hence the casts.  None of these
+  strings will actually be modified.  */
++  /* by default PV name is left aligned in 10 character field, meaning that
++ we do not know where name ends. Using dummy --separator disables
++ alignment. We have a single field, so separator itself is not output */
+   argv[0] = (char *) vgs;
+   argv[1] = (char *) --options;
+   argv[2] = (char *) pv_name;
+   argv[3] = (char *) --noheadings;
+-  argv[4] = vgname;
+-  argv[5] = NULL;
++  argv[4] = (char *) --separator;
++  argv[5] = (char *) :;
++  argv[6] = vgname;
++  argv[7] = NULL;
+ 
+   pid = exec_pipe (argv, fd);
+   free (vgname);
+@@ -1376,6 +1381,7 @@ pull_lvm_by_command (const char *os_dev)
+   while (getline (buf, len, mdadm)  0)
+ {
+   char *ptr;
++  /* LVM adds two spaces as standard prefix */
+   for (ptr = buf; ptr  buf + 2  *ptr == ' '; ptr++);
+   if (*ptr == '\0')
+continue;
\ No newline at end of file



[arch-commits] Commit in grub/repos (30 files)

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:03:52
  Author: tpowa
Revision: 192071

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

Added:
  grub/repos/testing-i686/60_memtest86+
(from rev 192070, grub/trunk/60_memtest86+)
  grub/repos/testing-i686/PKGBUILD
(from rev 192070, grub/trunk/PKGBUILD)
  grub/repos/testing-i686/archlinux_grub_mkconfig_fixes.patch
(from rev 192070, grub/trunk/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/testing-i686/grub-2.00-mkinitcpio-0.15.patch
(from rev 192070, grub/trunk/grub-2.00-mkinitcpio-0.15.patch)
  grub/repos/testing-i686/grub-2.00.5086-fix-lvm-parsing.patch
(from rev 192070, grub/trunk/grub-2.00.5086-fix-lvm-parsing.patch)
  grub/repos/testing-i686/grub.cfg
(from rev 192070, grub/trunk/grub.cfg)
  grub/repos/testing-i686/grub.default
(from rev 192070, grub/trunk/grub.default)
  grub/repos/testing-i686/grub.install
(from rev 192070, grub/trunk/grub.install)
  grub/repos/testing-x86_64/60_memtest86+
(from rev 192070, grub/trunk/60_memtest86+)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 192070, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/archlinux_grub_mkconfig_fixes.patch
(from rev 192070, grub/trunk/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/testing-x86_64/grub-2.00-mkinitcpio-0.15.patch
(from rev 192070, grub/trunk/grub-2.00-mkinitcpio-0.15.patch)
  grub/repos/testing-x86_64/grub-2.00.5086-fix-lvm-parsing.patch
(from rev 192070, grub/trunk/grub-2.00.5086-fix-lvm-parsing.patch)
  grub/repos/testing-x86_64/grub.cfg
(from rev 192070, grub/trunk/grub.cfg)
  grub/repos/testing-x86_64/grub.default
(from rev 192070, grub/trunk/grub.default)
  grub/repos/testing-x86_64/grub.install
(from rev 192070, grub/trunk/grub.install)
Deleted:
  grub/repos/testing-i686/60_memtest86+
  grub/repos/testing-i686/PKGBUILD
  grub/repos/testing-i686/archlinux_grub_mkconfig_fixes.patch
  grub/repos/testing-i686/grub-2.00-mkinitcpio-0.15.patch
  grub/repos/testing-i686/grub.cfg
  grub/repos/testing-i686/grub.default
  grub/repos/testing-i686/grub.install
  grub/repos/testing-x86_64/60_memtest86+
  grub/repos/testing-x86_64/PKGBUILD
  grub/repos/testing-x86_64/archlinux_grub_mkconfig_fixes.patch
  grub/repos/testing-x86_64/grub-2.00-mkinitcpio-0.15.patch
  grub/repos/testing-x86_64/grub.cfg
  grub/repos/testing-x86_64/grub.default
  grub/repos/testing-x86_64/grub.install

-+
 /60_memtest86+  |   64 ++
 /PKGBUILD   |  502 ++
 /archlinux_grub_mkconfig_fixes.patch|  286 ++
 /grub-2.00-mkinitcpio-0.15.patch|   22 
 /grub.cfg   |  278 +
 /grub.default   |   94 +++
 /grub.install   |   66 ++
 testing-i686/60_memtest86+  |   32 -
 testing-i686/PKGBUILD   |  249 
 testing-i686/archlinux_grub_mkconfig_fixes.patch|  143 -
 testing-i686/grub-2.00-mkinitcpio-0.15.patch|   11 
 testing-i686/grub-2.00.5086-fix-lvm-parsing.patch   |   54 +
 testing-i686/grub.cfg   |  139 
 testing-i686/grub.default   |   47 -
 testing-i686/grub.install   |   33 -
 testing-x86_64/60_memtest86+|   32 -
 testing-x86_64/PKGBUILD |  249 
 testing-x86_64/archlinux_grub_mkconfig_fixes.patch  |  143 -
 testing-x86_64/grub-2.00-mkinitcpio-0.15.patch  |   11 
 testing-x86_64/grub-2.00.5086-fix-lvm-parsing.patch |   54 +
 testing-x86_64/grub.cfg |  139 
 testing-x86_64/grub.default |   47 -
 testing-x86_64/grub.install |   33 -
 23 files changed, 1420 insertions(+), 1308 deletions(-)

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


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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:04:34
  Author: tpowa
Revision: 192072

upgpkg: nvidia 319.32-6

rebuild against 3.10.5

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 16:03:52 UTC (rev 192071)
+++ PKGBUILD2013-08-05 16:04:34 UTC (rev 192072)
@@ -4,7 +4,7 @@
 pkgname=nvidia
 pkgver=319.32
 _extramodules=extramodules-3.10-ARCH
-pkgrel=5
+pkgrel=6
 pkgdesc=NVIDIA drivers for linux
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;



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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:04:53
  Author: tpowa
Revision: 192073

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

Added:
  nvidia/repos/testing-i686/PKGBUILD
(from rev 192072, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nvidia-linux-3.10.patch
(from rev 192072, nvidia/trunk/nvidia-linux-3.10.patch)
  nvidia/repos/testing-i686/nvidia.install
(from rev 192072, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 192072, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nvidia-linux-3.10.patch
(from rev 192072, nvidia/trunk/nvidia-linux-3.10.patch)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 192072, nvidia/trunk/nvidia.install)
Deleted:
  nvidia/repos/testing-i686/PKGBUILD
  nvidia/repos/testing-i686/nvidia-linux-3.10.patch
  nvidia/repos/testing-i686/nvidia.install
  nvidia/repos/testing-x86_64/PKGBUILD
  nvidia/repos/testing-x86_64/nvidia-linux-3.10.patch
  nvidia/repos/testing-x86_64/nvidia.install

+
 /PKGBUILD  |   96 ++
 /nvidia-linux-3.10.patch   | 1204 +++
 /nvidia.install|   36 
 testing-i686/PKGBUILD  |   48 -
 testing-i686/nvidia-linux-3.10.patch   |  602 ---
 testing-i686/nvidia.install|   18 
 testing-x86_64/PKGBUILD|   48 -
 testing-x86_64/nvidia-linux-3.10.patch |  602 ---
 testing-x86_64/nvidia.install  |   18 
 9 files changed, 1336 insertions(+), 1336 deletions(-)

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


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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:16:27
  Author: tpowa
Revision: 192075

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

Added:
  nvidia/repos/testing-i686/PKGBUILD
(from rev 192074, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nvidia-linux-3.10.patch
(from rev 192074, nvidia/trunk/nvidia-linux-3.10.patch)
  nvidia/repos/testing-i686/nvidia.install
(from rev 192074, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 192074, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nvidia-linux-3.10.patch
(from rev 192074, nvidia/trunk/nvidia-linux-3.10.patch)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 192074, nvidia/trunk/nvidia.install)
Deleted:
  nvidia/repos/testing-i686/PKGBUILD
  nvidia/repos/testing-i686/nvidia-linux-3.10.patch
  nvidia/repos/testing-i686/nvidia.install
  nvidia/repos/testing-x86_64/PKGBUILD
  nvidia/repos/testing-x86_64/nvidia-linux-3.10.patch
  nvidia/repos/testing-x86_64/nvidia.install

+
 /PKGBUILD  |   96 
 /nvidia-linux-3.10.patch   |   68 +++
 /nvidia.install|   36 +
 testing-i686/PKGBUILD  |   48 --
 testing-i686/nvidia-linux-3.10.patch   |  602 ---
 testing-i686/nvidia.install|   18 
 testing-x86_64/PKGBUILD|   48 --
 testing-x86_64/nvidia-linux-3.10.patch |  602 ---
 testing-x86_64/nvidia.install  |   18 
 9 files changed, 200 insertions(+), 1336 deletions(-)

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


[arch-commits] Commit in nvidia/trunk (PKGBUILD nvidia-linux-3.10.patch)

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:16:13
  Author: tpowa
Revision: 192074

upgpkg: nvidia 319.32-6

rebuild against 3.10.5, change 3.10 patch

Modified:
  nvidia/trunk/PKGBUILD
  nvidia/trunk/nvidia-linux-3.10.patch

-+
 PKGBUILD|4 
 nvidia-linux-3.10.patch |  604 +-
 2 files changed, 20 insertions(+), 588 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 16:04:53 UTC (rev 192073)
+++ PKGBUILD2013-08-05 16:16:13 UTC (rev 192074)
@@ -15,7 +15,7 @@
 install=nvidia.install
 options=(!strip)
 source=('nvidia-linux-3.10.patch')
-md5sums=('547b74f49f81b22f214e2770e31d62b6')
+md5sums=('8323dcba90576dcae67c42d6ea94704e')
 
 if [ $CARCH = i686 ]; then
 _arch='x86'
@@ -34,7 +34,7 @@
 cd ${srcdir}
 sh ${_pkg}.run --extract-only
 cd ${_pkg}/kernel
-patch -Np2 -i ${srcdir}/nvidia-linux-3.10.patch
+patch -Np3 -i ${srcdir}/nvidia-linux-3.10.patch
 make SYSSRC=/usr/lib/modules/${_kernver}/build module
 }
 

Modified: nvidia-linux-3.10.patch
===
--- nvidia-linux-3.10.patch 2013-08-05 16:04:53 UTC (rev 192073)
+++ nvidia-linux-3.10.patch 2013-08-05 16:16:13 UTC (rev 192074)
@@ -1,602 +1,34 @@
 NVIDIA-Linux-x86_64-319.17-no-compat32.orig/kernel/nv-i2c.c
2013-04-26 00:22:30.0 -0400
-+++ NVIDIA-Linux-x86_64-319.17-no-compat32/kernel/nv-i2c.c 2013-05-13 
05:20:55.571981365 -0400
-@@ -311,8 +311,6 @@
- BOOL NV_API_CALL nv_i2c_del_adapter(nv_state_t *nv, void *data)
- {
- struct i2c_adapter *pI2cAdapter = (struct i2c_adapter *)data;
--int osstatus = 0;
--BOOL wasReleased = FALSE;
- 
- #if defined(KERNEL_2_4)
- if (!NV_WEAK_SYMBOL_PRESENT(i2c_add_adapter))
-@@ -324,15 +322,10 @@
+diff --git a/modules/nvidia-kernel/nv-i2c.c b/modules/nvidia-kernel/nv-i2c.c
+index a702506..ece9c3c 100644
+--- a/modules/nvidia-kernel/nv-i2c.c
 b/modules/nvidia-kernel/nv-i2c.c
+@@ -324,13 +324,10 @@ BOOL NV_API_CALL nv_i2c_del_adapter(nv_state_t *nv, void 
*data)
  if (!pI2cAdapter) return FALSE;
  
  // attempt release with the OS
 -osstatus = i2c_del_adapter(pI2cAdapter);
 +i2c_del_adapter(pI2cAdapter);
-+os_free_mem(pI2cAdapter);
  
 -if (!osstatus)
 -{
 -os_free_mem(pI2cAdapter);
 -wasReleased = TRUE;
 -}
--
--return wasReleased;
-+return TRUE;
- }
++  os_free_mem(pI2cAdapter);
++  wasReleased = TRUE;
  
- #else // (defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE))
-diff -ur -X - NVIDIA-Linux-x86_64-319.17-no-compat32.orig/kernel/nv-procfs.c 
NVIDIA-Linux-x86_64-319.17-no-compat32/kernel/nv-procfs.c
 NVIDIA-Linux-x86_64-319.17-no-compat32.orig/kernel/nv-procfs.c 
2013-04-26 00:22:30.0 -0400
-+++ NVIDIA-Linux-x86_64-319.17-no-compat32/kernel/nv-procfs.c  2013-05-22 
04:52:45.229495748 -0400
-@@ -60,60 +60,41 @@
- __entry;  \
- })
- 
--#define NV_CREATE_PROC_FILE(name,parent,__read_proc,   \
--__write_proc,__fops,__data)\
--   ({  \
--struct proc_dir_entry *__entry;\
--int __mode = (S_IFREG | S_IRUGO);  \
--if ((NvUPtr)(__write_proc) != 0)   \
--__mode |= S_IWUSR; \
--__entry = NV_CREATE_PROC_ENTRY(name, __mode, parent);  \
--if (__entry != NULL)   \
--{  \
--if ((NvUPtr)(__read_proc) != 0)\
--__entry-read_proc = (__read_proc);\
--if ((NvUPtr)(__write_proc) != 0)   \
--{  \
--__entry-write_proc = (__write_proc);  \
--__entry-proc_fops = (__fops); \
--}  \
--__entry-data = (__data);  \
--}  \
--__entry;   \
--})
-+#define NV_PROC_RW (S_IFREG|S_IRUGO|S_IWUSR)
-+#define NV_PROC_RO (S_IFREG|S_IRUGO)
- 
- #define NV_CREATE_PROC_DIR(name,parent)\
-({  \
- struct proc_dir_entry *__entry;\
- int __mode = (S_IFDIR | S_IRUGO | S_IXUGO);\
--__entry = NV_CREATE_PROC_ENTRY(name, __mode, parent);  \
-+__entry = proc_mkdir_mode(name, __mode, parent);   \
- __entry;   \
- 

[arch-commits] Commit in nvidia-304xx/repos (12 files)

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:37:39
  Author: tpowa
Revision: 192077

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

Added:
  nvidia-304xx/repos/testing-i686/PKGBUILD
(from rev 192076, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-i686/nvidia-linux-3.10.patch
(from rev 192076, nvidia-304xx/trunk/nvidia-linux-3.10.patch)
  nvidia-304xx/repos/testing-i686/nvidia.install
(from rev 192076, nvidia-304xx/trunk/nvidia.install)
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
(from rev 192076, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-x86_64/nvidia-linux-3.10.patch
(from rev 192076, nvidia-304xx/trunk/nvidia-linux-3.10.patch)
  nvidia-304xx/repos/testing-x86_64/nvidia.install
(from rev 192076, nvidia-304xx/trunk/nvidia.install)
Deleted:
  nvidia-304xx/repos/testing-i686/PKGBUILD
  nvidia-304xx/repos/testing-i686/nvidia-linux-3.10.patch
  nvidia-304xx/repos/testing-i686/nvidia.install
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
  nvidia-304xx/repos/testing-x86_64/nvidia-linux-3.10.patch
  nvidia-304xx/repos/testing-x86_64/nvidia.install

+
 /PKGBUILD  |  102 ++
 /nvidia-linux-3.10.patch   | 1266 +++
 /nvidia.install|   30 
 testing-i686/PKGBUILD  |   51 -
 testing-i686/nvidia-linux-3.10.patch   |  633 ---
 testing-i686/nvidia.install|   15 
 testing-x86_64/PKGBUILD|   51 -
 testing-x86_64/nvidia-linux-3.10.patch |  633 ---
 testing-x86_64/nvidia.install  |   15 
 9 files changed, 1398 insertions(+), 1398 deletions(-)

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


[arch-commits] Commit in nvidia-304xx/trunk (PKGBUILD)

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:37:23
  Author: tpowa
Revision: 192076

upgpkg: nvidia-304xx 304.88-14

rebuild against 3.10.5, change 3.10 patch

Modified:
  nvidia-304xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 16:16:27 UTC (rev 192075)
+++ PKGBUILD2013-08-05 16:37:23 UTC (rev 192076)
@@ -4,7 +4,7 @@
 pkgname=nvidia-304xx
 pkgver=304.88
 _extramodules=extramodules-3.10-ARCH
-pkgrel=13
+pkgrel=14
 pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;



[arch-commits] Commit in gnome-settings-daemon/trunk (2 files)

2013-08-05 Thread Jan Steffens
Date: Monday, August 5, 2013 @ 18:40:47
  Author: heftig
Revision: 192078

Add patch for upower

Added:
  
gnome-settings-daemon/trunk/0001-power-Use-logind-to-discover-critical-action-availab.patch
Modified:
  gnome-settings-daemon/trunk/PKGBUILD

-+
 0001-power-Use-logind-to-discover-critical-action-availab.patch |   77 
++
 PKGBUILD|   13 +
 2 files changed, 87 insertions(+), 3 deletions(-)

Added: 0001-power-Use-logind-to-discover-critical-action-availab.patch
===
--- 0001-power-Use-logind-to-discover-critical-action-availab.patch 
(rev 0)
+++ 0001-power-Use-logind-to-discover-critical-action-availab.patch 
2013-08-05 16:40:47 UTC (rev 192078)
@@ -0,0 +1,77 @@
+From 1271864ddfc053a1567d046b5fcdf8351da3f438 Mon Sep 17 00:00:00 2001
+From: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+Date: Mon, 5 Aug 2013 18:15:00 +0200
+Subject: [PATCH] power: Use logind to discover critical action availability
+
+The upower functionality is deprecated and will return an
+error unless upower is built with --enable-deprecated.
+
+Follows a similar patch to gnome-control-center.
+---
+ plugins/power/gsd-power-manager.c | 42 ---
+ 1 file changed, 30 insertions(+), 12 deletions(-)
+
+diff --git a/plugins/power/gsd-power-manager.c 
b/plugins/power/gsd-power-manager.c
+index fde90ef..8bd124f 100644
+--- a/plugins/power/gsd-power-manager.c
 b/plugins/power/gsd-power-manager.c
+@@ -27,7 +27,6 @@
+ #include string.h
+ #include glib/gi18n.h
+ #include gtk/gtk.h
+-#define UPOWER_ENABLE_DEPRECATED 1
+ #include libupower-glib/upower.h
+ #include libnotify/notify.h
+ #include canberra-gtk.h
+@@ -1164,18 +1163,37 @@ static GsdPowerActionType
+ manager_critical_action_get (GsdPowerManager *manager,
+  gboolean is_ups)
+ {
+-GsdPowerActionType policy;
++GsdPowerActionType policy = GSD_POWER_ACTION_SHUTDOWN;
++GsdPowerActionType setpolicy;
++GVariant *result = NULL;
++gchar *s;
+ 
+-policy = g_settings_get_enum (manager-priv-settings, 
critical-battery-action);
+-if (policy == GSD_POWER_ACTION_SUSPEND) {
+-if (is_ups == FALSE 
+-up_client_get_can_suspend (manager-priv-up_client))
+-return policy;
+-return GSD_POWER_ACTION_SHUTDOWN;
+-} else if (policy == GSD_POWER_ACTION_HIBERNATE) {
+-if (up_client_get_can_hibernate (manager-priv-up_client))
+-return policy;
+-return GSD_POWER_ACTION_SHUTDOWN;
++setpolicy = g_settings_get_enum (manager-priv-settings, 
critical-battery-action);
++
++if (setpolicy == GSD_POWER_ACTION_SUSPEND) {
++if (is_ups == FALSE) {
++result = g_dbus_proxy_call_sync 
(manager-priv-logind_proxy,
++ CanSuspend,
++ NULL,
++ 
G_DBUS_CALL_FLAGS_NONE,
++ -1, NULL, NULL);
++}
++} else if (setpolicy == GSD_POWER_ACTION_HIBERNATE) {
++result = g_dbus_proxy_call_sync (manager-priv-logind_proxy,
++ CanHibernate,
++ NULL,
++ G_DBUS_CALL_FLAGS_NONE,
++ -1, NULL, NULL);
++} else {
++/* Other actions need no check */
++return setpolicy;
++}
++
++if (result) {
++g_variant_get (result, (s), s);
++if (g_strcmp0 (s, yes) == 0)
++policy = setpolicy;
++g_variant_unref (result);
+ }
+ 
+ return policy;
+-- 
+1.8.3.4
+

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 16:37:39 UTC (rev 192077)
+++ PKGBUILD2013-08-05 16:40:47 UTC (rev 192078)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-settings-daemon
 pkgver=3.8.4
-pkgrel=1
+pkgrel=2
 pkgdesc=The GNOME Settings daemon
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -14,9 +14,16 @@
 install=gnome-settings-daemon.install
 url=http://www.gnome.org;
 groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('03ad56a8d517faf0754efcf2e7e26257e9ddbe32ef2931f3579138659cc178bc')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+

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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:42:39
  Author: tpowa
Revision: 192079

upgpkg: lirc 1:0.9.0-54

rebuild against 3.10.5

Modified:
  lirc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 16:40:47 UTC (rev 192078)
+++ PKGBUILD2013-08-05 16:42:39 UTC (rev 192079)
@@ -4,7 +4,7 @@
 pkgbase=lirc
 pkgname=('lirc' 'lirc-utils')
 pkgver=0.9.0
-pkgrel=53
+pkgrel=54
 epoch=1
 _extramodules=extramodules-3.10-ARCH
 arch=('i686' 'x86_64')



[arch-commits] Commit in lirc/repos (52 files)

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 18:43:09
  Author: tpowa
Revision: 192080

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

Added:
  lirc/repos/testing-i686/PKGBUILD
(from rev 192079, lirc/trunk/PKGBUILD)
  lirc/repos/testing-i686/irexec.service
(from rev 192079, lirc/trunk/irexec.service)
  lirc/repos/testing-i686/kernel-2.6.39.patch
(from rev 192079, lirc/trunk/kernel-2.6.39.patch)
  lirc/repos/testing-i686/linux-3.8.patch
(from rev 192079, lirc/trunk/linux-3.8.patch)
  lirc/repos/testing-i686/lirc-utils.install
(from rev 192079, lirc/trunk/lirc-utils.install)
  lirc/repos/testing-i686/lirc.install
(from rev 192079, lirc/trunk/lirc.install)
  lirc/repos/testing-i686/lirc.logrotate
(from rev 192079, lirc/trunk/lirc.logrotate)
  lirc/repos/testing-i686/lirc.service
(from rev 192079, lirc/trunk/lirc.service)
  lirc/repos/testing-i686/lirc.tmpfiles
(from rev 192079, lirc/trunk/lirc.tmpfiles)
  lirc/repos/testing-i686/lirc_atiusb-kfifo.patch
(from rev 192079, lirc/trunk/lirc_atiusb-kfifo.patch)
  lirc/repos/testing-i686/lirc_wpc8769l.patch
(from rev 192079, lirc/trunk/lirc_wpc8769l.patch)
  lirc/repos/testing-i686/lircd-handle-large-config.patch
(from rev 192079, lirc/trunk/lircd-handle-large-config.patch)
  lirc/repos/testing-i686/lircm.service
(from rev 192079, lirc/trunk/lircm.service)
  lirc/repos/testing-x86_64/PKGBUILD
(from rev 192079, lirc/trunk/PKGBUILD)
  lirc/repos/testing-x86_64/irexec.service
(from rev 192079, lirc/trunk/irexec.service)
  lirc/repos/testing-x86_64/kernel-2.6.39.patch
(from rev 192079, lirc/trunk/kernel-2.6.39.patch)
  lirc/repos/testing-x86_64/linux-3.8.patch
(from rev 192079, lirc/trunk/linux-3.8.patch)
  lirc/repos/testing-x86_64/lirc-utils.install
(from rev 192079, lirc/trunk/lirc-utils.install)
  lirc/repos/testing-x86_64/lirc.install
(from rev 192079, lirc/trunk/lirc.install)
  lirc/repos/testing-x86_64/lirc.logrotate
(from rev 192079, lirc/trunk/lirc.logrotate)
  lirc/repos/testing-x86_64/lirc.service
(from rev 192079, lirc/trunk/lirc.service)
  lirc/repos/testing-x86_64/lirc.tmpfiles
(from rev 192079, lirc/trunk/lirc.tmpfiles)
  lirc/repos/testing-x86_64/lirc_atiusb-kfifo.patch
(from rev 192079, lirc/trunk/lirc_atiusb-kfifo.patch)
  lirc/repos/testing-x86_64/lirc_wpc8769l.patch
(from rev 192079, lirc/trunk/lirc_wpc8769l.patch)
  lirc/repos/testing-x86_64/lircd-handle-large-config.patch
(from rev 192079, lirc/trunk/lircd-handle-large-config.patch)
  lirc/repos/testing-x86_64/lircm.service
(from rev 192079, lirc/trunk/lircm.service)
Deleted:
  lirc/repos/testing-i686/PKGBUILD
  lirc/repos/testing-i686/irexec.service
  lirc/repos/testing-i686/kernel-2.6.39.patch
  lirc/repos/testing-i686/linux-3.8.patch
  lirc/repos/testing-i686/lirc-utils.install
  lirc/repos/testing-i686/lirc.install
  lirc/repos/testing-i686/lirc.logrotate
  lirc/repos/testing-i686/lirc.service
  lirc/repos/testing-i686/lirc.tmpfiles
  lirc/repos/testing-i686/lirc_atiusb-kfifo.patch
  lirc/repos/testing-i686/lirc_wpc8769l.patch
  lirc/repos/testing-i686/lircd-handle-large-config.patch
  lirc/repos/testing-i686/lircm.service
  lirc/repos/testing-x86_64/PKGBUILD
  lirc/repos/testing-x86_64/irexec.service
  lirc/repos/testing-x86_64/kernel-2.6.39.patch
  lirc/repos/testing-x86_64/linux-3.8.patch
  lirc/repos/testing-x86_64/lirc-utils.install
  lirc/repos/testing-x86_64/lirc.install
  lirc/repos/testing-x86_64/lirc.logrotate
  lirc/repos/testing-x86_64/lirc.service
  lirc/repos/testing-x86_64/lirc.tmpfiles
  lirc/repos/testing-x86_64/lirc_atiusb-kfifo.patch
  lirc/repos/testing-x86_64/lirc_wpc8769l.patch
  lirc/repos/testing-x86_64/lircd-handle-large-config.patch
  lirc/repos/testing-x86_64/lircm.service

+
 /PKGBUILD  |  214 +++
 /irexec.service|   22 ++
 /kernel-2.6.39.patch   |  108 +++
 /linux-3.8.patch   |  160 +
 /lirc-utils.install|   14 +
 /lirc.install  |   32 +++
 /lirc.logrotate|   10 +
 /lirc.service  |   22 ++
 /lirc.tmpfiles |2 
 /lirc_atiusb-kfifo.patch   |   62 ++
 /lirc_wpc8769l.patch   |  176 ++
 /lircd-handle-large-config.patch   |   78 
 /lircm.service |   22 ++
 testing-i686/PKGBUILD  |  107 ---
 testing-i686/irexec.service|   11 -
 testing-i686/kernel-2.6.39.patch   |   54 -
 testing-i686/linux-3.8.patch   |   80 
 testing-i686/lirc-utils.install|7 
 testing-i686/lirc.install

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

2013-08-05 Thread Jan Steffens
Date: Monday, August 5, 2013 @ 18:46:31
  Author: heftig
Revision: 192081

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

Added:
  gnome-settings-daemon/repos/testing-i686/
  
gnome-settings-daemon/repos/testing-i686/0001-power-Use-logind-to-discover-critical-action-availab.patch
(from rev 192080, 
gnome-settings-daemon/trunk/0001-power-Use-logind-to-discover-critical-action-availab.patch)
  gnome-settings-daemon/repos/testing-i686/PKGBUILD
(from rev 192080, gnome-settings-daemon/trunk/PKGBUILD)
  gnome-settings-daemon/repos/testing-i686/gnome-settings-daemon.install
(from rev 192080, gnome-settings-daemon/trunk/gnome-settings-daemon.install)
  gnome-settings-daemon/repos/testing-x86_64/
  
gnome-settings-daemon/repos/testing-x86_64/0001-power-Use-logind-to-discover-critical-action-availab.patch
(from rev 192080, 
gnome-settings-daemon/trunk/0001-power-Use-logind-to-discover-critical-action-availab.patch)
  gnome-settings-daemon/repos/testing-x86_64/PKGBUILD
(from rev 192080, gnome-settings-daemon/trunk/PKGBUILD)
  gnome-settings-daemon/repos/testing-x86_64/gnome-settings-daemon.install
(from rev 192080, gnome-settings-daemon/trunk/gnome-settings-daemon.install)

+
 testing-i686/0001-power-Use-logind-to-discover-critical-action-availab.patch   
|   77 ++
 testing-i686/PKGBUILD  
|   42 +
 testing-i686/gnome-settings-daemon.install 
|   12 +
 testing-x86_64/0001-power-Use-logind-to-discover-critical-action-availab.patch 
|   77 ++
 testing-x86_64/PKGBUILD
|   42 +
 testing-x86_64/gnome-settings-daemon.install   
|   12 +
 6 files changed, 262 insertions(+)

Copied: 
gnome-settings-daemon/repos/testing-i686/0001-power-Use-logind-to-discover-critical-action-availab.patch
 (from rev 192080, 
gnome-settings-daemon/trunk/0001-power-Use-logind-to-discover-critical-action-availab.patch)
===
--- 
testing-i686/0001-power-Use-logind-to-discover-critical-action-availab.patch
(rev 0)
+++ 
testing-i686/0001-power-Use-logind-to-discover-critical-action-availab.patch
2013-08-05 16:46:31 UTC (rev 192081)
@@ -0,0 +1,77 @@
+From 1271864ddfc053a1567d046b5fcdf8351da3f438 Mon Sep 17 00:00:00 2001
+From: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+Date: Mon, 5 Aug 2013 18:15:00 +0200
+Subject: [PATCH] power: Use logind to discover critical action availability
+
+The upower functionality is deprecated and will return an
+error unless upower is built with --enable-deprecated.
+
+Follows a similar patch to gnome-control-center.
+---
+ plugins/power/gsd-power-manager.c | 42 ---
+ 1 file changed, 30 insertions(+), 12 deletions(-)
+
+diff --git a/plugins/power/gsd-power-manager.c 
b/plugins/power/gsd-power-manager.c
+index fde90ef..8bd124f 100644
+--- a/plugins/power/gsd-power-manager.c
 b/plugins/power/gsd-power-manager.c
+@@ -27,7 +27,6 @@
+ #include string.h
+ #include glib/gi18n.h
+ #include gtk/gtk.h
+-#define UPOWER_ENABLE_DEPRECATED 1
+ #include libupower-glib/upower.h
+ #include libnotify/notify.h
+ #include canberra-gtk.h
+@@ -1164,18 +1163,37 @@ static GsdPowerActionType
+ manager_critical_action_get (GsdPowerManager *manager,
+  gboolean is_ups)
+ {
+-GsdPowerActionType policy;
++GsdPowerActionType policy = GSD_POWER_ACTION_SHUTDOWN;
++GsdPowerActionType setpolicy;
++GVariant *result = NULL;
++gchar *s;
+ 
+-policy = g_settings_get_enum (manager-priv-settings, 
critical-battery-action);
+-if (policy == GSD_POWER_ACTION_SUSPEND) {
+-if (is_ups == FALSE 
+-up_client_get_can_suspend (manager-priv-up_client))
+-return policy;
+-return GSD_POWER_ACTION_SHUTDOWN;
+-} else if (policy == GSD_POWER_ACTION_HIBERNATE) {
+-if (up_client_get_can_hibernate (manager-priv-up_client))
+-return policy;
+-return GSD_POWER_ACTION_SHUTDOWN;
++setpolicy = g_settings_get_enum (manager-priv-settings, 
critical-battery-action);
++
++if (setpolicy == GSD_POWER_ACTION_SUSPEND) {
++if (is_ups == FALSE) {
++result = g_dbus_proxy_call_sync 
(manager-priv-logind_proxy,
++ CanSuspend,
++ NULL,
++ 
G_DBUS_CALL_FLAGS_NONE,
++ -1, NULL, NULL);
++}
++} else if 

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

2013-08-05 Thread Alexander Rødseth
Date: Monday, August 5, 2013 @ 18:59:53
  Author: arodseth
Revision: 95097

upgpkg: freeorion 0.4.3-1

Modified:
  freeorion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 16:26:02 UTC (rev 95096)
+++ PKGBUILD2013-08-05 16:59:53 UTC (rev 95097)
@@ -42,8 +42,6 @@
 }
 
 prepare() {
-  cd $pkgname
-
   #msg2 'Looking up revision from version number...'
   #_releaserevision=`curl --progress-bar -o- ${url}index.php/Compile | grep 
$pkgver | cut -d':' -f2 | cut -d' ' -f10 | tail -1`
 



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

2013-08-05 Thread Alexander Rødseth
Date: Monday, August 5, 2013 @ 19:01:03
  Author: arodseth
Revision: 95098

Resolved conflicts

Added:
  freeorion/repos/community-i686/PKGBUILD
(from rev 95097, freeorion/trunk/PKGBUILD)
  freeorion/repos/community-i686/cmake_python.patch
(from rev 95097, freeorion/trunk/cmake_python.patch)
  freeorion/repos/community-i686/freeorion.install
(from rev 95097, freeorion/trunk/freeorion.install)
  freeorion/repos/community-i686/freeorion.sh
(from rev 95097, freeorion/trunk/freeorion.sh)
  freeorion/repos/community-x86_64/PKGBUILD
(from rev 95097, freeorion/trunk/PKGBUILD)
  freeorion/repos/community-x86_64/cmake_python.patch
(from rev 95097, freeorion/trunk/cmake_python.patch)
  freeorion/repos/community-x86_64/freeorion.install
(from rev 95097, freeorion/trunk/freeorion.install)
  freeorion/repos/community-x86_64/freeorion.sh
(from rev 95097, freeorion/trunk/freeorion.sh)
Deleted:
  freeorion/repos/community-i686/PKGBUILD
  freeorion/repos/community-i686/cmake_python.patch
  freeorion/repos/community-i686/freeorion.install
  freeorion/repos/community-i686/freeorion.sh
  freeorion/repos/community-x86_64/PKGBUILD
  freeorion/repos/community-x86_64/cmake_python.patch
  freeorion/repos/community-x86_64/freeorion.install
  freeorion/repos/community-x86_64/freeorion.sh

-+
 /PKGBUILD   |  232 +++
 /cmake_python.patch |   46 +
 /freeorion.install  |   26 +++
 /freeorion.sh   |  286 ++
 community-i686/PKGBUILD |  118 --
 community-i686/cmake_python.patch   |   23 --
 community-i686/freeorion.install|   13 -
 community-i686/freeorion.sh |  143 -
 community-x86_64/PKGBUILD   |  118 --
 community-x86_64/cmake_python.patch |   23 --
 community-x86_64/freeorion.install  |   13 -
 community-x86_64/freeorion.sh   |  143 -
 12 files changed, 590 insertions(+), 594 deletions(-)

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


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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 19:13:58
  Author: tpowa
Revision: 95100

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

Added:
  bbswitch/repos/community-testing-i686/PKGBUILD
(from rev 95099, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-i686/bbswitch.install
(from rev 95099, bbswitch/trunk/bbswitch.install)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 95099, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-x86_64/bbswitch.install
(from rev 95099, bbswitch/trunk/bbswitch.install)
Deleted:
  bbswitch/repos/community-testing-i686/PKGBUILD
  bbswitch/repos/community-testing-i686/bbswitch.install
  bbswitch/repos/community-testing-x86_64/PKGBUILD
  bbswitch/repos/community-testing-x86_64/bbswitch.install

---+
 /PKGBUILD |   64 
 /bbswitch.install |   24 ++
 community-testing-i686/PKGBUILD   |   32 --
 community-testing-i686/bbswitch.install   |   12 -
 community-testing-x86_64/PKGBUILD |   32 --
 community-testing-x86_64/bbswitch.install |   12 -
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-08-05 17:13:46 UTC (rev 95099)
+++ community-testing-i686/PKGBUILD 2013-08-05 17:13:58 UTC (rev 95100)
@@ -1,32 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: M0Rf30
-# Contributor: Samsagax samsa...@gmail.com
-
-pkgname=bbswitch
-pkgver=0.7
-_extramodules=extramodules-3.10-ARCH # Don't forget to update bbswitch.install
-pkgrel=7
-pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
-arch=('i686' 'x86_64')
-url=(http://github.com/Bumblebee-Project/bbswitch;)
-license=('GPL')
-depends=('linux=3.10' 'linux3.11')
-makedepends=('linux-headers=3.10' 'linux-headers3.11')
-install=bbswitch.install
-source=(https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
-md5sums=('b9df5ea40109ef9766448a0577c798e6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-
-  make KDIR=/usr/src/linux-${_kernver}
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-   
-  install -Dm644 bbswitch.ko 
${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
-  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
  
-}

Copied: bbswitch/repos/community-testing-i686/PKGBUILD (from rev 95099, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-08-05 17:13:58 UTC (rev 95100)
@@ -0,0 +1,32 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: M0Rf30
+# Contributor: Samsagax samsa...@gmail.com
+
+pkgname=bbswitch
+pkgver=0.7
+_extramodules=extramodules-3.10-ARCH # Don't forget to update bbswitch.install
+pkgrel=8
+pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
+arch=('i686' 'x86_64')
+url=(http://github.com/Bumblebee-Project/bbswitch;)
+license=('GPL')
+depends=('linux=3.10' 'linux3.11')
+makedepends=('linux-headers=3.10' 'linux-headers3.11')
+install=bbswitch.install
+source=(https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('b9df5ea40109ef9766448a0577c798e6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KDIR=/usr/src/linux-${_kernver}
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
  
+}

Deleted: community-testing-i686/bbswitch.install
===
--- community-testing-i686/bbswitch.install 2013-08-05 17:13:46 UTC (rev 
95099)
+++ community-testing-i686/bbswitch.install 2013-08-05 17:13:58 UTC (rev 
95100)
@@ -1,12 +0,0 @@
-post_install() {
-EXTRAMODULES='extramodules-3.10-ARCH'
-depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: bbswitch/repos/community-testing-i686/bbswitch.install (from rev 95099, 
bbswitch/trunk/bbswitch.install)
===
--- community-testing-i686/bbswitch.install (rev 0)
+++ community-testing-i686/bbswitch.install 2013-08-05 17:13:58 UTC (rev 
95100)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-3.10-ARCH'
+depmod $(cat 

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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 19:13:46
  Author: tpowa
Revision: 95099

upgpkg: bbswitch 0.7-8

rebuild against 3.10.5

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 17:01:03 UTC (rev 95098)
+++ PKGBUILD2013-08-05 17:13:46 UTC (rev 95099)
@@ -5,7 +5,7 @@
 pkgname=bbswitch
 pkgver=0.7
 _extramodules=extramodules-3.10-ARCH # Don't forget to update bbswitch.install
-pkgrel=7
+pkgrel=8
 pkgdesc=Kernel module allowing to switch dedicated graphics card on Optimus 
laptops
 arch=('i686' 'x86_64')
 url=(http://github.com/Bumblebee-Project/bbswitch;)



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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 19:18:38
  Author: tpowa
Revision: 95101

upgpkg: r8168 8.036.00-5

rebuild against 3.10.5

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 17:13:58 UTC (rev 95100)
+++ PKGBUILD2013-08-05 17:18:38 UTC (rev 95101)
@@ -5,7 +5,7 @@
 
 pkgname=r8168
 pkgver=8.036.00
-pkgrel=4
+pkgrel=5
 pkgdesc=A kernel module for Realtek 8168 network cards
 url=http://www.realtek.com.tw;
 license=(GPL)



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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 19:18:50
  Author: tpowa
Revision: 95102

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

Added:
  r8168/repos/community-testing-i686/PKGBUILD
(from rev 95101, r8168/trunk/PKGBUILD)
  r8168/repos/community-testing-i686/linux-3.10.patch
(from rev 95101, r8168/trunk/linux-3.10.patch)
  r8168/repos/community-testing-i686/r8168.install
(from rev 95101, r8168/trunk/r8168.install)
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 95101, r8168/trunk/PKGBUILD)
  r8168/repos/community-testing-x86_64/linux-3.10.patch
(from rev 95101, r8168/trunk/linux-3.10.patch)
  r8168/repos/community-testing-x86_64/r8168.install
(from rev 95101, r8168/trunk/r8168.install)
Deleted:
  r8168/repos/community-testing-i686/PKGBUILD
  r8168/repos/community-testing-i686/linux-3.10.patch
  r8168/repos/community-testing-i686/r8168.install
  r8168/repos/community-testing-x86_64/PKGBUILD
  r8168/repos/community-testing-x86_64/linux-3.10.patch
  r8168/repos/community-testing-x86_64/r8168.install

---+
 /PKGBUILD |  102 
 /linux-3.10.patch |  118 
 /r8168.install|   34 
 community-testing-i686/PKGBUILD   |   51 
 community-testing-i686/linux-3.10.patch   |   59 --
 community-testing-i686/r8168.install  |   17 
 community-testing-x86_64/PKGBUILD |   51 
 community-testing-x86_64/linux-3.10.patch |   59 --
 community-testing-x86_64/r8168.install|   17 
 9 files changed, 254 insertions(+), 254 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-08-05 17:18:38 UTC (rev 95101)
+++ community-testing-i686/PKGBUILD 2013-08-05 17:18:50 UTC (rev 95102)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Bob Fanger  bfanger(at)gmail 
-# Contributor: Filip fila pruda com, Det  nimetonmaili(at)gmail 
-
-pkgname=r8168
-pkgver=8.036.00
-pkgrel=4
-pkgdesc=A kernel module for Realtek 8168 network cards
-url=http://www.realtek.com.tw;
-license=(GPL)
-arch=('i686' 'x86_64')
-depends=('glibc' 'linux')
-makedepends=('linux-headers')
-source=(http://r8168.googlecode.com/files/$pkgname-$pkgver.tar.bz2 
linux-3.10.patch)
-install=$pkgname.install
-
-prepare() {
-   cd $pkgname-$pkgver
-   patch -p0 -i $srcdir/linux-3.10.patch
-}
-
-build() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
-
-   cd $pkgname-$pkgver
-
-   # avoid using the Makefile directly -- it doesn't understand
-   # any kernel but the current.
-   make -C /usr/lib/modules/$KERNEL_RELEASE/build \
-   SUBDIRS=$srcdir/$pkgname-$pkgver/src \
-   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
-   modules
-}
-
-package() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   depends=(linux=3.${_kernver} linux3.$(expr ${_kernver} + 1))
-   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
-   msg Kernel = $KERNEL_VERSION
-
-   cd $pkgname-$pkgver
-   install -Dm644 src/$pkgname.ko 
$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH/$pkgname.ko
-   find $pkgdir -name '*.ko' -exec gzip -9 {} +
-
-   sed -i s|extramodules-.*-ARCH|extramodules-3.$_kernver-ARCH| 
$startdir/$pkgname.install
-}
-
-sha256sums=('937fd5d7d4cbfc95cf2859d8c3beb15a8536dc4e41752f7a53f2a25f07cdcd33'
-'1fb115b4d1b6b058d23322b89fad52d29748ce75b2774815e72c679a235d0e87')

Copied: r8168/repos/community-testing-i686/PKGBUILD (from rev 95101, 
r8168/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-08-05 17:18:50 UTC (rev 95102)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Bob Fanger  bfanger(at)gmail 
+# Contributor: Filip fila pruda com, Det  nimetonmaili(at)gmail 
+
+pkgname=r8168
+pkgver=8.036.00
+pkgrel=5
+pkgdesc=A kernel module for Realtek 8168 network cards
+url=http://www.realtek.com.tw;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(http://r8168.googlecode.com/files/$pkgname-$pkgver.tar.bz2 
linux-3.10.patch)
+install=$pkgname.install
+
+prepare() {
+   cd $pkgname-$pkgver
+   patch -p0 -i $srcdir/linux-3.10.patch
+}
+
+build() {
+   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+   KERNEL_RELEASE=$(cat 

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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:06:09
  Author: tpowa
Revision: 95103

upgpkg: rt3562sta 2.4.1.1-38

rebuild against 3.10.5

Modified:
  rt3562sta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 17:18:50 UTC (rev 95102)
+++ PKGBUILD2013-08-05 18:06:09 UTC (rev 95103)
@@ -4,7 +4,7 @@
 
 pkgname=rt3562sta
 pkgver=2.4.1.1
-pkgrel=37
+pkgrel=38
 pkgdesc=Ralink RT3562 PCI WLAN adaptors kernel module
 arch=(i686 x86_64)
 url=http://www.mediatek.com/en/Products/support.php?sn=501;



[arch-commits] Commit in rt3562sta/repos (44 files)

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:06:39
  Author: tpowa
Revision: 95104

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

Added:
  rt3562sta/repos/community-testing-i686/PKGBUILD
(from rev 95103, rt3562sta/trunk/PKGBUILD)
  rt3562sta/repos/community-testing-i686/linux-3.8.patch
(from rev 95103, rt3562sta/trunk/linux-3.8.patch)
  rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-WPA-mixed.patch
(from rev 95103, rt3562sta/trunk/rt3562sta-2.4.1.1-WPA-mixed.patch)
  rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-config.patch
(from rev 95103, rt3562sta/trunk/rt3562sta-2.4.1.1-config.patch)
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
(from rev 95103, 
rt3562sta/trunk/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch)
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
(from rev 95103, 
rt3562sta/trunk/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch)
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch
(from rev 95103, 
rt3562sta/trunk/rt3562sta-2.4.1.1-reduce_debug_output.patch)
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
(from rev 95103, 
rt3562sta/trunk/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch)
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove_date_time.patch
(from rev 95103, rt3562sta/trunk/rt3562sta-2.4.1.1-remove_date_time.patch)
  rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-return_nonvoid.patch
(from rev 95103, rt3562sta/trunk/rt3562sta-2.4.1.1-return_nonvoid.patch)
  rt3562sta/repos/community-testing-i686/rt3562sta.install
(from rev 95103, rt3562sta/trunk/rt3562sta.install)
  rt3562sta/repos/community-testing-x86_64/PKGBUILD
(from rev 95103, rt3562sta/trunk/PKGBUILD)
  rt3562sta/repos/community-testing-x86_64/linux-3.8.patch
(from rev 95103, rt3562sta/trunk/linux-3.8.patch)
  rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch
(from rev 95103, rt3562sta/trunk/rt3562sta-2.4.1.1-WPA-mixed.patch)
  rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-config.patch
(from rev 95103, rt3562sta/trunk/rt3562sta-2.4.1.1-config.patch)
  
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
(from rev 95103, 
rt3562sta/trunk/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch)
  
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
(from rev 95103, 
rt3562sta/trunk/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch)
  
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch
(from rev 95103, 
rt3562sta/trunk/rt3562sta-2.4.1.1-reduce_debug_output.patch)
  
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
(from rev 95103, 
rt3562sta/trunk/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch)
  
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-remove_date_time.patch
(from rev 95103, rt3562sta/trunk/rt3562sta-2.4.1.1-remove_date_time.patch)
  
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-return_nonvoid.patch
(from rev 95103, rt3562sta/trunk/rt3562sta-2.4.1.1-return_nonvoid.patch)
  rt3562sta/repos/community-testing-x86_64/rt3562sta.install
(from rev 95103, rt3562sta/trunk/rt3562sta.install)
Deleted:
  rt3562sta/repos/community-testing-i686/PKGBUILD
  rt3562sta/repos/community-testing-i686/linux-3.8.patch
  rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-config.patch
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
  
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove_date_time.patch
  rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-return_nonvoid.patch
  rt3562sta/repos/community-testing-i686/rt3562sta.install
  rt3562sta/repos/community-testing-x86_64/PKGBUILD
  rt3562sta/repos/community-testing-x86_64/linux-3.8.patch
  rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-config.patch
  
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
  
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
  
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch
  

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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:07:00
  Author: tpowa
Revision: 95105

upgpkg: tp_smapi 0.41-29

rebuild against 3.10.5

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 18:06:39 UTC (rev 95104)
+++ PKGBUILD2013-08-05 18:07:00 UTC (rev 95105)
@@ -10,7 +10,7 @@
 
 pkgname=tp_smapi
 pkgver=0.41
-pkgrel=28
+pkgrel=29
 pkgdesc=Modules for ThinkPad's SMAPI functionality
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'



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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:07:10
  Author: tpowa
Revision: 95106

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

Added:
  tp_smapi/repos/community-testing-i686/PKGBUILD
(from rev 95105, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-i686/tp_smapi.install
(from rev 95105, tp_smapi/trunk/tp_smapi.install)
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 95105, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-x86_64/tp_smapi.install
(from rev 95105, tp_smapi/trunk/tp_smapi.install)
Deleted:
  tp_smapi/repos/community-testing-i686/PKGBUILD
  tp_smapi/repos/community-testing-i686/tp_smapi.install
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
  tp_smapi/repos/community-testing-x86_64/tp_smapi.install

---+
 /PKGBUILD |  118 
 /tp_smapi.install |   26 ++
 community-testing-i686/PKGBUILD   |   59 --
 community-testing-i686/tp_smapi.install   |   13 ---
 community-testing-x86_64/PKGBUILD |   59 --
 community-testing-x86_64/tp_smapi.install |   13 ---
 6 files changed, 144 insertions(+), 144 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-08-05 18:07:00 UTC (rev 95105)
+++ community-testing-i686/PKGBUILD 2013-08-05 18:07:10 UTC (rev 95106)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: xduugu
-# Contributor: nh2
-# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
-# Contributor: Nick B Shirakawasuna ð gmail đ com
-# Contributor: Christof Musik christof ð senfdax đ de
-# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
-# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
-
-pkgname=tp_smapi
-pkgver=0.41
-pkgrel=28
-pkgdesc=Modules for ThinkPad's SMAPI functionality
-arch=('i686' 'x86_64')
-url='https://github.com/evgeni/tp_smapi'
-license=('GPL')
-depends=('linux=3.10' 'linux3.11')
-makedepends=('linux-headers=3.10' 'linux-headers3.11')
-install=${pkgname}.install
-source=(https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('63c683415c764568f6bf17c7eabe4752')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
-  _kernver=$( ${_extramodules}/version)
-
-  sed -ri -e s/^(KVER\s*:=).*$/\1 ${_kernver}/ \
- -e s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}# Makefile
-
-  make HDAPS=1
-}
-
-package() {
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
-  _kernver=$( ${_extramodules}/version)
-
-  make -C ${_extramodules%/*}/${_kernver}/build \
-INSTALL_MOD_PATH=${pkgdir}/${_extramodules%%/lib/*} \
-M=${srcdir}/${pkgname}-${pkgver} modules_install
-
-  cd ${pkgdir}/${_extramodules%/*}
-  mv ${_kernver}/extra ${_extramodules##*/}
-  rmdir ${_kernver}
-
-  # compress kernel modules
-  find ${pkgdir} -name *.ko -exec gzip -9 {} +
-
-  # load module on startup
-  echo tp_smapi  ${srcdir}/${pkgname}.conf
-  install -Dm644 ${srcdir}/${pkgname}.conf 
${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
-
-  # update kernel version in install file
-  sed -ri s#^(extramodules=).*\$#\1${_extramodules}# 
${startdir}/${pkgname}.install
-}

Copied: tp_smapi/repos/community-testing-i686/PKGBUILD (from rev 95105, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-08-05 18:07:10 UTC (rev 95106)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi
+pkgver=0.41
+pkgrel=29
+pkgdesc=Modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux=3.10' 'linux3.11')
+makedepends=('linux-headers=3.10' 'linux-headers3.11')
+install=${pkgname}.install
+source=(https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver=${_kernver:-$(uname -r)}
+  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
+  _kernver=$( ${_extramodules}/version)
+
+  sed -ri -e s/^(KVER\s*:=).*$/\1 ${_kernver}/ \

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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:07:58
  Author: tpowa
Revision: 95108

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

Added:
  vhba-module/repos/community-testing-i686/60-vhba.rules
(from rev 95107, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-i686/PKGBUILD
(from rev 95107, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-i686/vhba-module.install
(from rev 95107, vhba-module/trunk/vhba-module.install)
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 95107, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 95107, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/vhba-module.install
(from rev 95107, vhba-module/trunk/vhba-module.install)
Deleted:
  vhba-module/repos/community-testing-i686/60-vhba.rules
  vhba-module/repos/community-testing-i686/PKGBUILD
  vhba-module/repos/community-testing-i686/vhba-module.install
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
  vhba-module/repos/community-testing-x86_64/PKGBUILD
  vhba-module/repos/community-testing-x86_64/vhba-module.install

--+
 /60-vhba.rules   |2 
 /PKGBUILD|   80 +
 /vhba-module.install |   44 +
 community-testing-i686/60-vhba.rules |1 
 community-testing-i686/PKGBUILD  |   40 
 community-testing-i686/vhba-module.install   |   22 --
 community-testing-x86_64/60-vhba.rules   |1 
 community-testing-x86_64/PKGBUILD|   40 
 community-testing-x86_64/vhba-module.install |   22 --
 9 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-testing-i686/60-vhba.rules
===
--- community-testing-i686/60-vhba.rules2013-08-05 18:07:47 UTC (rev 
95107)
+++ community-testing-i686/60-vhba.rules2013-08-05 18:07:58 UTC (rev 
95108)
@@ -1 +0,0 @@
-ACTION==add, KERNEL==vhba_ctl, NAME=vhba_ctl, MODE=0660, OWNER=root, 
GROUP=cdemu, TAG+=uaccess

Copied: vhba-module/repos/community-testing-i686/60-vhba.rules (from rev 95107, 
vhba-module/trunk/60-vhba.rules)
===
--- community-testing-i686/60-vhba.rules(rev 0)
+++ community-testing-i686/60-vhba.rules2013-08-05 18:07:58 UTC (rev 
95108)
@@ -0,0 +1 @@
+ACTION==add, KERNEL==vhba_ctl, NAME=vhba_ctl, MODE=0660, OWNER=root, 
GROUP=cdemu, TAG+=uaccess

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-08-05 18:07:47 UTC (rev 95107)
+++ community-testing-i686/PKGBUILD 2013-08-05 18:07:58 UTC (rev 95108)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Mateusz Herych heni...@gmail.com
-# Contributor: Charles Lindsay char...@chaoslizard.org
-
-pkgname=vhba-module
-pkgver=20130607
-_extramodules=extramodules-3.10-ARCH
-pkgrel=7
-pkgdesc=Kernel module that emulates SCSI devices
-arch=('i686' 'x86_64')
-url=http://cdemu.sourceforge.net/;
-license=('GPL')
-depends=('linux=3.10' 'linux3.11')
-makedepends=('linux-headers')
-options=(!makeflags)
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
-'60-vhba.rules')
-md5sums=('92a681e4665aa85a8335d00395a61697'
- '4dc37dc348b5a2c83585829bde790dcc')
-
-build() {
-  cd $pkgname-$pkgver
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  make KDIR=/usr/lib/modules/$_kernver/build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 vhba.ko $pkgdir/usr/lib/modules/$_extramodules/vhba.ko
-  install -Dm644 ../60-vhba.rules $pkgdir/usr/lib/udev/rules.d/60-vhba.rules
-
-  cd $startdir
-  cp -f $install ${install}.pkg
-  true  install=${install}.pkg
-  sed -i s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/ $install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-testing-i686/PKGBUILD (from rev 95107, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-08-05 18:07:58 UTC (rev 95108)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Charles Lindsay char...@chaoslizard.org
+
+pkgname=vhba-module
+pkgver=20130607
+_extramodules=extramodules-3.10-ARCH
+pkgrel=8
+pkgdesc=Kernel module that emulates SCSI devices
+arch=('i686' 'x86_64')
+url=http://cdemu.sourceforge.net/;
+license=('GPL')
+depends=('linux=3.10' 'linux3.11')
+makedepends=('linux-headers')
+options=(!makeflags)

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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:09:38
  Author: tpowa
Revision: 95109

upgpkg: virtualbox-modules 4.2.16-5

rebuild against 3.10.5

Modified:
  virtualbox-modules/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 18:07:58 UTC (rev 95108)
+++ PKGBUILD2013-08-05 18:09:38 UTC (rev 95109)
@@ -5,7 +5,7 @@
 pkgbase=virtualbox-modules
 pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
 pkgver=4.2.16
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')



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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:07:47
  Author: tpowa
Revision: 95107

upgpkg: vhba-module 20130607-8

rebuild against 3.10.5

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 18:07:10 UTC (rev 95106)
+++ PKGBUILD2013-08-05 18:07:47 UTC (rev 95107)
@@ -6,7 +6,7 @@
 pkgname=vhba-module
 pkgver=20130607
 _extramodules=extramodules-3.10-ARCH
-pkgrel=7
+pkgrel=8
 pkgdesc=Kernel module that emulates SCSI devices
 arch=('i686' 'x86_64')
 url=http://cdemu.sourceforge.net/;



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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:39:45
  Author: tpowa
Revision: 192083

upgpkg: linux-lts 3.0.89-1

bump to latest version

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 18:18:25 UTC (rev 192082)
+++ PKGBUILD2013-08-05 18:39:45 UTC (rev 192083)
@@ -5,7 +5,7 @@
 pkgbase=linux-lts   # Build stock -lts kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.0
-pkgver=3.0.88
+pkgver=3.0.89
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -24,7 +24,7 @@
 'module-symbol-waiting-3.0.patch'
 'module-init-wait-3.0.patch')
 md5sums=('ecf932280e2441bdd992423ef3d55f8f'
- 'f8902634bdf7602299f1c196c257da73'
+ '3efc2657c280de45f3b1921ae2e1c2a0'
  'a5186d7ee7b7c79fa27bbb56e2d3b823'
  'a0a497460f41850068b3a90c073768c2'
  '232b52576a62c7a333e9fe7a1e1ca359'



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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:09:51
  Author: tpowa
Revision: 95110

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

Added:
  virtualbox-modules/repos/community-testing-i686/PKGBUILD
(from rev 95109, virtualbox-modules/trunk/PKGBUILD)
  virtualbox-modules/repos/community-testing-i686/build.sh
(from rev 95109, virtualbox-modules/trunk/build.sh)
  
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install
(from rev 95109, virtualbox-modules/trunk/virtualbox-guest-modules.install)
  
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install
(from rev 95109, virtualbox-modules/trunk/virtualbox-host-modules.install)
  virtualbox-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 95109, virtualbox-modules/trunk/PKGBUILD)
  virtualbox-modules/repos/community-testing-x86_64/build.sh
(from rev 95109, virtualbox-modules/trunk/build.sh)
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install
(from rev 95109, virtualbox-modules/trunk/virtualbox-guest-modules.install)
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install
(from rev 95109, virtualbox-modules/trunk/virtualbox-host-modules.install)
Deleted:
  virtualbox-modules/repos/community-testing-i686/PKGBUILD
  virtualbox-modules/repos/community-testing-i686/build.sh
  
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install
  
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install
  virtualbox-modules/repos/community-testing-x86_64/PKGBUILD
  virtualbox-modules/repos/community-testing-x86_64/build.sh
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install

---+
 /PKGBUILD |  130 
 /build.sh |   50 
 /virtualbox-guest-modules.install |   42 +++
 /virtualbox-host-modules.install  |   46 
 community-testing-i686/PKGBUILD   |   65 --
 community-testing-i686/build.sh   |   25 --
 community-testing-i686/virtualbox-guest-modules.install   |   21 -
 community-testing-i686/virtualbox-host-modules.install|   23 --
 community-testing-x86_64/PKGBUILD |   65 --
 community-testing-x86_64/build.sh |   25 --
 community-testing-x86_64/virtualbox-guest-modules.install |   21 -
 community-testing-x86_64/virtualbox-host-modules.install  |   23 --
 12 files changed, 268 insertions(+), 268 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-08-05 18:09:38 UTC (rev 95109)
+++ community-testing-i686/PKGBUILD 2013-08-05 18:09:51 UTC (rev 95110)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: Sébastien Luttringer
-
-pkgbase=virtualbox-modules
-pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
-pkgver=4.2.16
-pkgrel=4
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux=3.10' 'linux3.11'
- 'linux-headers=3.10' 'linux-headers3.11'
- virtualbox-host-dkms=$pkgver
- virtualbox-guest-dkms=$pkgver
- 'expac'
- 'sed'
- 'bc')
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-3.10-ARCH
-
-build() {
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  # dkms need modification to be run as user
-  cp -r /var/lib/dkms .
-  echo dkms_tree='$srcdir/dkms'  dkms.conf
-  # build host modules
-  msg2 'Host modules'
-  dkms --dkmsframework dkms.conf build vboxhost/$pkgver -k $_kernver
-  # build guest modules
-  msg2 'Guest modules'
-  dkms --dkmsframework dkms.conf build vboxguest/$pkgver -k $_kernver
-}
-
-package_virtualbox-host-modules(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux=3.10' 'linux3.11')
-  replaces=('virtualbox-modules')
-  conflicts=('virtualbox-modules')
-  install=virtualbox-host-modules.install
-
-  cd dkms/vboxhost/$pkgver/$_kernver/$CARCH/module
-  install -dm755 $pkgdir/usr/lib/modules/$_extramodules/
-  install -m644 * $pkgdir/usr/lib/modules/$_extramodules/
-  find $pkgdir -name '*.ko' -exec gzip -9 {} +
-}
-
-package_virtualbox-guest-modules(){
-  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
-  pkgdesc='Guest kernel modules for VirtualBox'
-  license=('GPL')
-  depends=('linux=3.10' 'linux3.11')
-  replaces=('virtualbox-archlinux-modules')
-  conflicts=('virtualbox-archlinux-modules')
-  

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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 20:40:25
  Author: tpowa
Revision: 192084

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

Added:
  linux-lts/repos/testing-i686/3.0.54-ptrace-i686-build.patch
(from rev 192083, linux-lts/trunk/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 192083, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 192083, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 192083, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 192083, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/ext4-options.patch
(from rev 192083, linux-lts/trunk/ext4-options.patch)
  
linux-lts/repos/testing-i686/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
(from rev 192083, 
linux-lts/trunk/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch)
  linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch
(from rev 192083, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 192083, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 192083, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-i686/module-init-wait-3.0.patch
(from rev 192083, linux-lts/trunk/module-init-wait-3.0.patch)
  linux-lts/repos/testing-i686/module-symbol-waiting-3.0.patch
(from rev 192083, linux-lts/trunk/module-symbol-waiting-3.0.patch)
  linux-lts/repos/testing-x86_64/3.0.54-ptrace-i686-build.patch
(from rev 192083, linux-lts/trunk/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 192083, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 192083, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 192083, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 192083, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/ext4-options.patch
(from rev 192083, linux-lts/trunk/ext4-options.patch)
  
linux-lts/repos/testing-x86_64/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
(from rev 192083, 
linux-lts/trunk/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch)
  linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch
(from rev 192083, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 192083, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 192083, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/module-init-wait-3.0.patch
(from rev 192083, linux-lts/trunk/module-init-wait-3.0.patch)
  linux-lts/repos/testing-x86_64/module-symbol-waiting-3.0.patch
(from rev 192083, linux-lts/trunk/module-symbol-waiting-3.0.patch)
Deleted:
  linux-lts/repos/testing-i686/3.0.54-ptrace-i686-build.patch
  linux-lts/repos/testing-i686/PKGBUILD
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
  linux-lts/repos/testing-i686/config
  linux-lts/repos/testing-i686/config.x86_64
  linux-lts/repos/testing-i686/ext4-options.patch
  
linux-lts/repos/testing-i686/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
  linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch
  linux-lts/repos/testing-i686/linux-lts.install
  linux-lts/repos/testing-i686/linux-lts.preset
  linux-lts/repos/testing-i686/module-init-wait-3.0.patch
  linux-lts/repos/testing-i686/module-symbol-waiting-3.0.patch
  linux-lts/repos/testing-x86_64/3.0.54-ptrace-i686-build.patch
  linux-lts/repos/testing-x86_64/PKGBUILD
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
  linux-lts/repos/testing-x86_64/config
  linux-lts/repos/testing-x86_64/config.x86_64
  linux-lts/repos/testing-x86_64/ext4-options.patch
  
linux-lts/repos/testing-x86_64/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
  linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch
  linux-lts/repos/testing-x86_64/linux-lts.install
  linux-lts/repos/testing-x86_64/linux-lts.preset
  linux-lts/repos/testing-x86_64/module-init-wait-3.0.patch
  linux-lts/repos/testing-x86_64/module-symbol-waiting-3.0.patch

-+
 /3.0.54-ptrace-i686-build.patch
 |   82 
 /PKGBUILD  
 |  662 
 /change-default-console-loglevel.patch 
 |   24 
 /config
 |11150 ++
 /config.x86_64 

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

2013-08-05 Thread Jonathan Steel
Date: Monday, August 5, 2013 @ 20:41:44
  Author: jsteel
Revision: 95111

upgpkg: ophcrack 3.6.0-1

Modified:
  ophcrack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 18:09:51 UTC (rev 95110)
+++ PKGBUILD2013-08-05 18:41:44 UTC (rev 95111)
@@ -5,7 +5,7 @@
 # Contributor: Matthew Sharpe matt.sha...@gmail.com
 
 pkgname=ophcrack
-pkgver=3.5.0
+pkgver=3.6.0
 pkgrel=1
 pkgdesc=A free Windows password cracker based on rainbow tables
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 optdepends=('qwt: enable graph')
 
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2
 ophcrack.desktop)
-md5sums=('1c61adde21c5dc226515cbd1dc654c60'
+md5sums=('93347fac9fee385b40d4f486680dfba9'
  '664599c4fd7fd210e6c421459f60e20d')
 
 build() {



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

2013-08-05 Thread Jonathan Steel
Date: Monday, August 5, 2013 @ 20:42:04
  Author: jsteel
Revision: 95112

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

Added:
  ophcrack/repos/community-i686/PKGBUILD
(from rev 95111, ophcrack/trunk/PKGBUILD)
  ophcrack/repos/community-i686/ophcrack.desktop
(from rev 95111, ophcrack/trunk/ophcrack.desktop)
  ophcrack/repos/community-x86_64/PKGBUILD
(from rev 95111, ophcrack/trunk/PKGBUILD)
  ophcrack/repos/community-x86_64/ophcrack.desktop
(from rev 95111, ophcrack/trunk/ophcrack.desktop)
Deleted:
  ophcrack/repos/community-i686/PKGBUILD
  ophcrack/repos/community-i686/ophcrack.desktop
  ophcrack/repos/community-x86_64/PKGBUILD
  ophcrack/repos/community-x86_64/ophcrack.desktop

---+
 /PKGBUILD |   72 
 /ophcrack.desktop |   16 
 community-i686/PKGBUILD   |   36 --
 community-i686/ophcrack.desktop   |8 
 community-x86_64/PKGBUILD |   36 --
 community-x86_64/ophcrack.desktop |8 
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-05 18:41:44 UTC (rev 95111)
+++ community-i686/PKGBUILD 2013-08-05 18:42:04 UTC (rev 95112)
@@ -1,36 +0,0 @@
-# Maintainer: Jonathan Steel jst...@aur.archlinux.org
-# Contributor: Max Pray a.k.a. Synthead synth...@gmail.com
-# Contributor: Kaos  gianlucaatlas at gmail dot com 
-# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
-# Contributor: Matthew Sharpe matt.sha...@gmail.com
-
-pkgname=ophcrack
-pkgver=3.5.0
-pkgrel=1
-pkgdesc=A free Windows password cracker based on rainbow tables
-arch=('i686' 'x86_64')
-url=http://ophcrack.sourceforge.net;
-license=('GPL')
-depends=('qt4')
-optdepends=('qwt: enable graph')
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2
-ophcrack.desktop)
-md5sums=('1c61adde21c5dc226515cbd1dc654c60'
- '664599c4fd7fd210e6c421459f60e20d')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-gui --enable-graph
-
-  make
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-
-   make DESTDIR=$pkgdir/ install
-
-   install -Dm644 $srcdir/ophcrack.desktop 
$pkgdir/usr/share/applications/ophcrack.desktop
-   install -Dm644 src/gui/pixmaps/os.xpm 
$pkgdir/usr/share/$pkgname/pixmaps/os.xpm
-}

Copied: ophcrack/repos/community-i686/PKGBUILD (from rev 95111, 
ophcrack/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-05 18:42:04 UTC (rev 95112)
@@ -0,0 +1,36 @@
+# Maintainer: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Max Pray a.k.a. Synthead synth...@gmail.com
+# Contributor: Kaos  gianlucaatlas at gmail dot com 
+# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
+# Contributor: Matthew Sharpe matt.sha...@gmail.com
+
+pkgname=ophcrack
+pkgver=3.6.0
+pkgrel=1
+pkgdesc=A free Windows password cracker based on rainbow tables
+arch=('i686' 'x86_64')
+url=http://ophcrack.sourceforge.net;
+license=('GPL')
+depends=('qt4')
+optdepends=('qwt: enable graph')
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2
+ophcrack.desktop)
+md5sums=('93347fac9fee385b40d4f486680dfba9'
+ '664599c4fd7fd210e6c421459f60e20d')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-gui --enable-graph
+
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+
+  install -Dm644 $srcdir/ophcrack.desktop 
$pkgdir/usr/share/applications/ophcrack.desktop
+  install -Dm644 src/gui/pixmaps/os.xpm 
$pkgdir/usr/share/$pkgname/pixmaps/os.xpm
+}

Deleted: community-i686/ophcrack.desktop
===
--- community-i686/ophcrack.desktop 2013-08-05 18:41:44 UTC (rev 95111)
+++ community-i686/ophcrack.desktop 2013-08-05 18:42:04 UTC (rev 95112)
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Type=Application
-Encoding=UTF-8
-Name=Ophcrack
-Comment=LM and SAM hash cracker
-Exec=ophcrack
-Icon=/usr/share/ophcrack/pixmaps/os.xpm
-Categories=Application;Utilities;System

Copied: ophcrack/repos/community-i686/ophcrack.desktop (from rev 95111, 
ophcrack/trunk/ophcrack.desktop)
===
--- community-i686/ophcrack.desktop (rev 0)
+++ community-i686/ophcrack.desktop 2013-08-05 18:42:04 UTC (rev 95112)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=Ophcrack
+Comment=LM and SAM hash cracker
+Exec=ophcrack
+Icon=/usr/share/ophcrack/pixmaps/os.xpm
+Categories=Application;Utilities;System


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

2013-08-05 Thread Eric Bélanger
Date: Monday, August 5, 2013 @ 20:50:27
  Author: eric
Revision: 192085

upgpkg: moc 1:2.5beta1-5

Rebuild against db 6.0.20

Modified:
  moc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 18:40:25 UTC (rev 192084)
+++ PKGBUILD2013-08-05 18:50:27 UTC (rev 192085)
@@ -3,7 +3,7 @@
 
 pkgname=moc
 pkgver=2.5beta1
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc=An ncurses console audio player designed to be powerful and easy to 
use
 arch=('i686' 'x86_64')



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

2013-08-05 Thread Eric Bélanger
Date: Monday, August 5, 2013 @ 20:50:49
  Author: eric
Revision: 192086

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

Added:
  moc/repos/staging-i686/
  moc/repos/staging-i686/PKGBUILD
(from rev 192085, moc/trunk/PKGBUILD)
  moc/repos/staging-i686/moc-ffmpeg.patch
(from rev 192085, moc/trunk/moc-ffmpeg.patch)
  moc/repos/staging-x86_64/
  moc/repos/staging-x86_64/PKGBUILD
(from rev 192085, moc/trunk/PKGBUILD)
  moc/repos/staging-x86_64/moc-ffmpeg.patch
(from rev 192085, moc/trunk/moc-ffmpeg.patch)

-+
 staging-i686/PKGBUILD   |   62 
 staging-i686/moc-ffmpeg.patch   |  557 ++
 staging-x86_64/PKGBUILD |   62 
 staging-x86_64/moc-ffmpeg.patch |  557 ++
 4 files changed, 1238 insertions(+)

Copied: moc/repos/staging-i686/PKGBUILD (from rev 192085, moc/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-08-05 18:50:49 UTC (rev 192086)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=moc
+pkgver=2.5beta1
+pkgrel=5
+epoch=1
+pkgdesc=An ncurses console audio player designed to be powerful and easy to 
use
+arch=('i686' 'x86_64')
+url=http://moc.daper.net/;
+license=('GPL')
+depends=('libmad' 'libid3tag' 'jack' 'curl' 'libltdl' 'file' 'popt')
+makedepends=('speex' 'ffmpeg' 'taglib' 'libmpcdec' 'wavpack' 'libmodplug' 
'faad2')
+optdepends=('speex: for using the speex plugin' 
+   'ffmpeg: for using the ffmpeg plugin'
+   'taglib: for using the musepack plugin' 
+   'libmpcdec: for using the musepack plugin' 
+'wavpack: for using the wavpack plugin' 
+'faad2: for using the aac plugin' 
+   'libmodplug: for using the modplug plugin')
+options=('!libtool')
+source=(ftp://ftp.daper.net/pub/soft/moc/unstable/moc-2.5.0-beta1.tar.bz2{,.sig}
 \
+moc-ffmpeg.patch)
+sha1sums=('4030a1fa5c7cfef06909c54d8c7a1fbb93f23caa'
+  '29c232c37e1f3737c3b670372732446e9c0786a8'
+  'f3b8b327dd27d50422b1ad8c9ef89a7366529307')
+
+# source PKGBUILD  mksource
+mksource() {
+  [[ -x /usr/bin/svn ]] || (echo svn not found. Install subversion.  
return 1)
+  _svnver=2454
+  _svntrunk=svn://daper.net/moc/trunk
+  _svnmod=${pkgname}-${pkgver}
+  mkdir ${pkgname}-${pkgver}
+  pushd ${pkgname}-${pkgver}
+  svn co ${_svntrunk} --config-dir ./ -r ${_svnver} ${_svnmod}
+  find . -depth -type d -name .svn -exec rm -rf {} \;
+  tar -cJf ../${pkgname}-${pkgver}.tar.xz ${pkgname}-${pkgver}/*
+  popd
+  rm -r ${pkgname}-${pkgver}
+  gpg --detach-sign --use-agent -u ${GPGKEY} ${pkgname}-${pkgver}.tar.xz
+}
+
+prepare() {
+  cd ${pkgname}-2.5.0-beta1
+  patch -p0 -i ${srcdir}/moc-ffmpeg.patch
+}
+
+build() {
+  cd ${pkgname}-2.5.0-beta1
+  ./configure --prefix=/usr --without-rcc \
+--with-oss --with-alsa --with-jack --with-aac --with-mp3 \
+--with-musepack --with-vorbis --with-flac --with-wavpack \
+--with-sndfile --with-modplug --with-ffmpeg --with-speex \
+--with-samplerate --with-curl --disable-debug
+  make
+}
+
+package() {
+  cd ${pkgname}-2.5.0-beta1
+  make DESTDIR=${pkgdir} install
+}

Copied: moc/repos/staging-i686/moc-ffmpeg.patch (from rev 192085, 
moc/trunk/moc-ffmpeg.patch)
===
--- staging-i686/moc-ffmpeg.patch   (rev 0)
+++ staging-i686/moc-ffmpeg.patch   2013-08-05 18:50:49 UTC (rev 192086)
@@ -0,0 +1,557 @@
+Index: menu.c
+===
+--- menu.c (revision 2516)
 menu.c (working copy)
+@@ -90,9 +90,14 @@
+   getyx (menu-win, y, x);
+   if (title_width = title_space || mi-align == MENU_ALIGN_LEFT)
+   xwaddnstr (menu-win, mi-title, title_space);
+-  else
+-  xwaddstr (menu-win, mi-title + title_width - title_space);
++  else {
++  char *ptr;
+ 
++  ptr = xstrtail (mi-title, title_space);
++  xwaddstr (menu-win, ptr);
++  free (ptr);
++  }
++
+   /* Fill the remainder of the title field with spaces. */
+   if (mi == menu-selected) {
+   getyx (menu-win, y, ix);
+Index: utf8.c
+===
+--- utf8.c (revision 2516)
 utf8.c (working copy)
+@@ -199,47 +199,50 @@
+ 
+ int xwaddnstr (WINDOW *win, const char *str, const int n)
+ {
+-  int res;
++  int res, width, inv_char;
++  wchar_t *ucs;
++  char *mstr, *lstr;
++  size_t size, num_chars;
+ 
+   assert (n  0);
+   assert (str != NULL);
+ 
+-  if (using_utf8) {
++  mstr = iconv_str (iconv_desc, str);
+ 
+-  /* This nasty hack is because we need to count n in chars, but
+-   * 

[arch-commits] Commit in perl-data-optlist/repos/community-any (PKGBUILD PKGBUILD)

2013-08-05 Thread Jonathan Steel
Date: Monday, August 5, 2013 @ 20:51:04
  Author: jsteel
Revision: 95114

archrelease: copy trunk to community-any

Added:
  perl-data-optlist/repos/community-any/PKGBUILD
(from rev 95113, perl-data-optlist/trunk/PKGBUILD)
Deleted:
  perl-data-optlist/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-05 18:50:51 UTC (rev 95113)
+++ PKGBUILD2013-08-05 18:51:04 UTC (rev 95114)
@@ -1,49 +0,0 @@
-# Maintainer: Justin Davis jrc...@gmail.com
-# $Id$
-
-pkgname=perl-data-optlist
-pkgver=0.107
-pkgrel=1
-pkgdesc=parse and validate simple name/value option pairs
-arch=(any)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=('perl-params-util' 'perl-scalar-list-utils' 'perl-sub-install=0.921')
-makedepends=('perl-extutils-makemaker=6.30')
-checkdepends=('perl-test-simple')
-url=https://metacpan.org/release/Data-OptList
-source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Data-OptList-${pkgver}.tar.gz;)
-md5sums=(17177b3cfb8941780a8736f9b9b30421)
-sha512sums=(06d0ca9b2f6142ea4c0de8c6f858bd96fb3964490e50f1caa677e2d53e144a4ce6c89097ad99d390ea86436923a449df8a38bd9064b0b91290b836f084d765f2)
-_distdir=${srcdir}/Data-OptList-${pkgver}
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT=INSTALLDIRS=vendor \
-  PERL_MB_OPT=--installdirs vendor \
-  MODULEBUILDRC=/dev/null
-
-cd $_distdir
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
-cd $_distdir
-make test
-  )
-}
-
-package() {
-cd $_distdir
-make DESTDIR=$pkgdir install
-}
-
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
-# vim:set ts=2 sw=2 et:

Copied: perl-data-optlist/repos/community-any/PKGBUILD (from rev 95113, 
perl-data-optlist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-05 18:51:04 UTC (rev 95114)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Justin Davis jrc...@gmail.com
+
+pkgname=perl-data-optlist
+pkgver=0.108
+pkgrel=1
+pkgdesc=Parse and validate simple name/value option pairs
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl-params-util' 'perl-scalar-list-utils' 'perl-sub-install=0.921')
+makedepends=('perl-extutils-makemaker')
+checkdepends=('perl-test-simple')
+url=https://metacpan.org/release/Data-OptList;
+source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Data-OptList-$pkgver.tar.gz)
+md5sums=('f5c2d27987c1ec4b89b2702698881579')
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=  \
+  PERL_AUTOINSTALL=--skipdeps \
+  PERL_MM_OPT=INSTALLDIRS=vendor\
+  PERL_MB_OPT=--installdirs vendor  \
+  MODULEBUILDRC=/dev/null
+cd $srcdir/Data-OptList-$pkgver
+
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
+cd $srcdir/Data-OptList-$pkgver
+
+make test
+  )
+}
+
+package() {
+  cd $srcdir/Data-OptList-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in perl-data-optlist/trunk (PKGBUILD)

2013-08-05 Thread Jonathan Steel
Date: Monday, August 5, 2013 @ 20:50:51
  Author: jsteel
Revision: 95113

upgpkg: perl-data-optlist 0.108-1

Modified:
  perl-data-optlist/trunk/PKGBUILD

--+
 PKGBUILD |   47 +--
 1 file changed, 21 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 18:42:04 UTC (rev 95112)
+++ PKGBUILD2013-08-05 18:50:51 UTC (rev 95113)
@@ -1,30 +1,29 @@
-# Maintainer: Justin Davis jrc...@gmail.com
 # $Id$
+# Maintainer: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Justin Davis jrc...@gmail.com
 
 pkgname=perl-data-optlist
-pkgver=0.107
+pkgver=0.108
 pkgrel=1
-pkgdesc=parse and validate simple name/value option pairs
-arch=(any)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
+pkgdesc=Parse and validate simple name/value option pairs
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
 depends=('perl-params-util' 'perl-scalar-list-utils' 'perl-sub-install=0.921')
-makedepends=('perl-extutils-makemaker=6.30')
+makedepends=('perl-extutils-makemaker')
 checkdepends=('perl-test-simple')
-url=https://metacpan.org/release/Data-OptList
-source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Data-OptList-${pkgver}.tar.gz;)
-md5sums=(17177b3cfb8941780a8736f9b9b30421)
-sha512sums=(06d0ca9b2f6142ea4c0de8c6f858bd96fb3964490e50f1caa677e2d53e144a4ce6c89097ad99d390ea86436923a449df8a38bd9064b0b91290b836f084d765f2)
-_distdir=${srcdir}/Data-OptList-${pkgver}
+url=https://metacpan.org/release/Data-OptList;
+source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Data-OptList-$pkgver.tar.gz)
+md5sums=('f5c2d27987c1ec4b89b2702698881579')
 
 build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT=INSTALLDIRS=vendor \
-  PERL_MB_OPT=--installdirs vendor \
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=  \
+  PERL_AUTOINSTALL=--skipdeps \
+  PERL_MM_OPT=INSTALLDIRS=vendor\
+  PERL_MB_OPT=--installdirs vendor  \
   MODULEBUILDRC=/dev/null
+cd $srcdir/Data-OptList-$pkgver
 
-cd $_distdir
 /usr/bin/perl Makefile.PL
 make
   )
@@ -32,18 +31,14 @@
 
 check() {
   ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
-cd $_distdir
+cd $srcdir/Data-OptList-$pkgver
+
 make test
   )
 }
 
 package() {
-cd $_distdir
-make DESTDIR=$pkgdir install
+  cd $srcdir/Data-OptList-$pkgver
+
+  make DESTDIR=$pkgdir/ install
 }
-
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
-# vim:set ts=2 sw=2 et:



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

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 21:03:26
  Author: tpowa
Revision: 192087

upgpkg: samba 4.0.8-1

bump to latest version

Modified:
  samba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 18:50:49 UTC (rev 192086)
+++ PKGBUILD2013-08-05 19:03:26 UTC (rev 192087)
@@ -10,12 +10,12 @@
 
 pkgbase=samba
 pkgname=('libwbclient' 'smbclient' 'samba')
-pkgver=4.0.7
+pkgver=4.0.8
 # We use the 'A' to fake out pacman's version comparators.  Samba chooses
 # to append 'a','b',etc to their subsequent releases, which pamcan
 # misconstrues as alpha, beta, etc.  Bad samba!
-_realver=4.0.7
-pkgrel=3
+_realver=4.0.8
+pkgrel=1
 arch=(i686 x86_64)
 url=http://www.samba.org;
 license=('GPL3')
@@ -246,17 +246,17 @@
   install -D -m644 ${srcdir}/samba-${_realver}/examples/LDAP/samba.schema 
${pkgdir}/usr/share/doc/samba/examples/LDAP/samba.schema
 }
 
-md5sums=('d887c1383654fc60b7bb1b74d273a826'
+md5sums=('03819bc1132e417feac1b39299365b73'
  '5697da77590ec092cc8a883bae06093c'
  'ee8507839745cf17d2fb5401be7da6a8'
  '96f82c38f3f540b53f3e5144900acf17'
  'ee4763a656cf00d92bfda31b6bb2c5cb'
  '6c447748a064d631435dbef0a3dcf32f'
- 'c0c561c47de24d33dd48aae79823810b'
+ 'e4ae6a3cac080602120aa151918c4a36'
  'a78b9aa93eb14b0ac445897395693225'
- 'e8ebc966b5684a557284dd435daaab7f'
+ 'df6380c73cb73163968eabc8650f7358'
  '70afd2db60a2e8eff7615dbdecd887ac'
  '6db11f3dd2112a4b7a73007b189bef3f'
  'fd6be0cf1e5b3f0c3599fdb95455d19f'
- '081c20b9d994d69ce5c37dcf96f10572'
+ 'd5f56f43e1280bba20f6bbd88d16fa41'
  '49abd7b719e3713a3f75a8a50958e381')



[arch-commits] Commit in samba/repos (34 files)

2013-08-05 Thread Tobias Powalowski
Date: Monday, August 5, 2013 @ 21:04:07
  Author: tpowa
Revision: 192088

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

Added:
  samba/repos/testing-i686/
  samba/repos/testing-i686/PKGBUILD
(from rev 192087, samba/trunk/PKGBUILD)
  samba/repos/testing-i686/nmbd.service
(from rev 192087, samba/trunk/nmbd.service)
  samba/repos/testing-i686/samba-4.0.3-fix_pidl_with_gcc48.patch
(from rev 192087, samba/trunk/samba-4.0.3-fix_pidl_with_gcc48.patch)
  samba/repos/testing-i686/samba.conf
(from rev 192087, samba/trunk/samba.conf)
  samba/repos/testing-i686/samba.conf.d
(from rev 192087, samba/trunk/samba.conf.d)
  samba/repos/testing-i686/samba.install
(from rev 192087, samba/trunk/samba.install)
  samba/repos/testing-i686/samba.logrotate
(from rev 192087, samba/trunk/samba.logrotate)
  samba/repos/testing-i686/samba.pam
(from rev 192087, samba/trunk/samba.pam)
  samba/repos/testing-i686/samba.service
(from rev 192087, samba/trunk/samba.service)
  samba/repos/testing-i686/smbd.service
(from rev 192087, samba/trunk/smbd.service)
  samba/repos/testing-i686/smbd.socket
(from rev 192087, samba/trunk/smbd.socket)
  samba/repos/testing-i686/smbd@.service
(from rev 192087, samba/trunk/smbd@.service)
  samba/repos/testing-i686/swat.socket
(from rev 192087, samba/trunk/swat.socket)
  samba/repos/testing-i686/swat.xinetd
(from rev 192087, samba/trunk/swat.xinetd)
  samba/repos/testing-i686/swat@.service
(from rev 192087, samba/trunk/swat@.service)
  samba/repos/testing-i686/winbindd.service
(from rev 192087, samba/trunk/winbindd.service)
  samba/repos/testing-x86_64/
  samba/repos/testing-x86_64/PKGBUILD
(from rev 192087, samba/trunk/PKGBUILD)
  samba/repos/testing-x86_64/nmbd.service
(from rev 192087, samba/trunk/nmbd.service)
  samba/repos/testing-x86_64/samba-4.0.3-fix_pidl_with_gcc48.patch
(from rev 192087, samba/trunk/samba-4.0.3-fix_pidl_with_gcc48.patch)
  samba/repos/testing-x86_64/samba.conf
(from rev 192087, samba/trunk/samba.conf)
  samba/repos/testing-x86_64/samba.conf.d
(from rev 192087, samba/trunk/samba.conf.d)
  samba/repos/testing-x86_64/samba.install
(from rev 192087, samba/trunk/samba.install)
  samba/repos/testing-x86_64/samba.logrotate
(from rev 192087, samba/trunk/samba.logrotate)
  samba/repos/testing-x86_64/samba.pam
(from rev 192087, samba/trunk/samba.pam)
  samba/repos/testing-x86_64/samba.service
(from rev 192087, samba/trunk/samba.service)
  samba/repos/testing-x86_64/smbd.service
(from rev 192087, samba/trunk/smbd.service)
  samba/repos/testing-x86_64/smbd.socket
(from rev 192087, samba/trunk/smbd.socket)
  samba/repos/testing-x86_64/smbd@.service
(from rev 192087, samba/trunk/smbd@.service)
  samba/repos/testing-x86_64/swat.socket
(from rev 192087, samba/trunk/swat.socket)
  samba/repos/testing-x86_64/swat.xinetd
(from rev 192087, samba/trunk/swat.xinetd)
  samba/repos/testing-x86_64/swat@.service
(from rev 192087, samba/trunk/swat@.service)
  samba/repos/testing-x86_64/winbindd.service
(from rev 192087, samba/trunk/winbindd.service)

--+
 testing-i686/PKGBUILD|  262 +
 testing-i686/nmbd.service|   12 
 testing-i686/samba-4.0.3-fix_pidl_with_gcc48.patch   |   60 +++
 testing-i686/samba.conf  |2 
 testing-i686/samba.conf.d|   18 +
 testing-i686/samba.install   |   14 
 testing-i686/samba.logrotate |9 
 testing-i686/samba.pam   |3 
 testing-i686/samba.service   |   14 
 testing-i686/smbd.service|   12 
 testing-i686/smbd.socket |9 
 testing-i686/smbd@.service   |7 
 testing-i686/swat.socket |9 
 testing-i686/swat.xinetd |   10 
 testing-i686/swat@.service   |7 
 testing-i686/winbindd.service|   12 
 testing-x86_64/PKGBUILD  |  262 +
 testing-x86_64/nmbd.service  |   12 
 testing-x86_64/samba-4.0.3-fix_pidl_with_gcc48.patch |   60 +++
 testing-x86_64/samba.conf|2 
 testing-x86_64/samba.conf.d  |   18 +
 testing-x86_64/samba.install |   14 
 testing-x86_64/samba.logrotate   |9 
 testing-x86_64/samba.pam |3 
 testing-x86_64/samba.service |   14 
 testing-x86_64/smbd.service  |   12 
 testing-x86_64/smbd.socket   |9 
 testing-x86_64/smbd@.service |7 
 

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

2013-08-05 Thread Jonathan Steel
Date: Monday, August 5, 2013 @ 21:08:25
  Author: jsteel
Revision: 95115

upgpkg: gnubg 1.02.000-1

Modified:
  gnubg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 18:51:04 UTC (rev 95114)
+++ PKGBUILD2013-08-05 19:08:25 UTC (rev 95115)
@@ -3,7 +3,7 @@
 # Contributor: Stefan Clarke fm0n...@yahoo.co.uk
 
 pkgname=gnubg
-pkgver=1.01.003
+pkgver=1.02.000
 pkgrel=1
 pkgdesc=A world class backgammon application
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 install=$pkgname.install
 source=($url/media/sources/$pkgname-release-$pkgver-sources.tar.gz
 $pkgname.desktop)
-md5sums=('5b03cf8634abe2822eee4db1317f0754'
+md5sums=('eef4d08e20f1de40336de1bb3c9cb9ca'
  '965f5c7c25f60b27d06cc6fef7befd30')
 
 build() {



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

2013-08-05 Thread Jonathan Steel
Date: Monday, August 5, 2013 @ 21:08:49
  Author: jsteel
Revision: 95116

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

Added:
  gnubg/repos/community-i686/PKGBUILD
(from rev 95115, gnubg/trunk/PKGBUILD)
  gnubg/repos/community-i686/gnubg.desktop
(from rev 95115, gnubg/trunk/gnubg.desktop)
  gnubg/repos/community-i686/gnubg.install
(from rev 95115, gnubg/trunk/gnubg.install)
  gnubg/repos/community-x86_64/PKGBUILD
(from rev 95115, gnubg/trunk/PKGBUILD)
  gnubg/repos/community-x86_64/gnubg.desktop
(from rev 95115, gnubg/trunk/gnubg.desktop)
  gnubg/repos/community-x86_64/gnubg.install
(from rev 95115, gnubg/trunk/gnubg.install)
Deleted:
  gnubg/repos/community-i686/PKGBUILD
  gnubg/repos/community-i686/gnubg.desktop
  gnubg/repos/community-i686/gnubg.install
  gnubg/repos/community-x86_64/PKGBUILD
  gnubg/repos/community-x86_64/gnubg.desktop
  gnubg/repos/community-x86_64/gnubg.install

+
 /PKGBUILD  |   74 +++
 /gnubg.desktop |   38 
 /gnubg.install |   22 +++
 community-i686/PKGBUILD|   38 
 community-i686/gnubg.desktop   |   19 --
 community-i686/gnubg.install   |   11 -
 community-x86_64/PKGBUILD  |   38 
 community-x86_64/gnubg.desktop |   19 --
 community-x86_64/gnubg.install |   11 -
 9 files changed, 134 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-05 19:08:25 UTC (rev 95115)
+++ community-i686/PKGBUILD 2013-08-05 19:08:49 UTC (rev 95116)
@@ -1,38 +0,0 @@
-# Maintainer: jsteel jst...@aur.archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Stefan Clarke fm0n...@yahoo.co.uk
-
-pkgname=gnubg
-pkgver=1.01.003
-pkgrel=1
-pkgdesc=A world class backgammon application
-arch=('i686' 'x86_64')
-url=http://www.gnubg.org;
-license=('GPL')
-depends=('python2' 'gtkglext' 'hicolor-icon-theme')
-conflicts=('gnubg-cli' 'gnubg-cvs')
-install=$pkgname.install
-source=($url/media/sources/$pkgname-release-$pkgver-sources.tar.gz
-$pkgname.desktop)
-md5sums=('5b03cf8634abe2822eee4db1317f0754'
- '965f5c7c25f60b27d06cc6fef7befd30')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./autogen.sh
-
-  ./configure --prefix=/usr --bindir=/usr/bin --sysconfdir=/etc \
---mandir=/usr/share/man
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-
-  install -Dm644 $srcdir/$pkgname.desktop \
-$pkgdir/usr/share/applications/$pkgname.desktop
-}

Copied: gnubg/repos/community-i686/PKGBUILD (from rev 95115, 
gnubg/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-05 19:08:49 UTC (rev 95116)
@@ -0,0 +1,37 @@
+# Maintainer: jsteel jst...@aur.archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Stefan Clarke fm0n...@yahoo.co.uk
+
+pkgname=gnubg
+pkgver=1.02.000
+pkgrel=1
+pkgdesc=A world class backgammon application
+arch=('i686' 'x86_64')
+url=http://www.gnubg.org;
+license=('GPL')
+depends=('python2' 'gtkglext' 'hicolor-icon-theme')
+install=$pkgname.install
+source=($url/media/sources/$pkgname-release-$pkgver-sources.tar.gz
+$pkgname.desktop)
+md5sums=('eef4d08e20f1de40336de1bb3c9cb9ca'
+ '965f5c7c25f60b27d06cc6fef7befd30')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./autogen.sh
+
+  ./configure --prefix=/usr --bindir=/usr/bin --sysconfdir=/etc \
+--mandir=/usr/share/man
+
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+
+  install -Dm644 $srcdir/$pkgname.desktop \
+$pkgdir/usr/share/applications/$pkgname.desktop
+}

Deleted: community-i686/gnubg.desktop
===
--- community-i686/gnubg.desktop2013-08-05 19:08:25 UTC (rev 95115)
+++ community-i686/gnubg.desktop2013-08-05 19:08:49 UTC (rev 95116)
@@ -1,19 +0,0 @@
-[Desktop Entry]
-Name=GNU Backgammon
-Name[hr]=GNU Tavla
-Name[ru]=GNU  Нарды
-Name[sr]=ГНУ Тавла
-GenericName=Backgammon
-GenericName[hr]=Tavla
-GenericName[ru]=Нарды
-GenericName[sr]=Тавла
-Comment=GNU Backgammon
-Comment[hr]=GNU Tavla
-Comment[ru]=GNU Короткие нарды
-Comment[sr]=GNU Тавла
-Exec=gnubg
-Icon=gnubg
-StartupNotify=true
-Terminal=false
-Type=Application
-Categories=GTK;Game;StrategyGame;

Copied: gnubg/repos/community-i686/gnubg.desktop (from rev 95115, 
gnubg/trunk/gnubg.desktop)
===
--- community-i686/gnubg.desktop(rev 0)
+++ community-i686/gnubg.desktop2013-08-05 19:08:49 UTC (rev 95116)
@@ -0,0 

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

2013-08-05 Thread Eric Bélanger
Date: Monday, August 5, 2013 @ 21:18:42
  Author: eric
Revision: 192089

upgpkg: bzr 2.6.0-1

Upstream update, Add prepare function

Modified:
  bzr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 19:04:07 UTC (rev 192088)
+++ PKGBUILD2013-08-05 19:18:42 UTC (rev 192089)
@@ -3,8 +3,8 @@
 # Contributor: Hugo Doria h...@archlinux.org
 
 pkgname=bzr
-pkgver=2.5.1
-pkgrel=2
+pkgver=2.6.0
+pkgrel=1
 pkgdesc=A decentralized revision control system (bazaar)
 arch=('i686' 'x86_64')
 url=http://bazaar.canonical.com/en/;
@@ -12,19 +12,23 @@
 depends=('python2')
 optdepends=('python2-paramiko: for sftp support')
 
source=(http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.sig})
-md5sums=('ac5079858364a046071000d5cdccb67b'
- 'c83dd08dd2c3e27edbab873500d7d6eb')
+sha1sums=('5eb4d0367c6d83396250165da5bb2c8a9f378293'
+  'SKIP')
 
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+prepare() {
+  cd ${pkgname}-${pkgver}
   sed -i 's|man/man1|share/man/man1|' setup.py
   sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
 
bzrlib/{plugins/bash_completion/bashcomp.py,tests/ssl_certs/create_ssls.py,patiencediff.py,_patiencediff_py.py}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
   python2 setup.py build
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1
 
   # bash-completion



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

2013-08-05 Thread Eric Bélanger
Date: Monday, August 5, 2013 @ 21:19:16
  Author: eric
Revision: 192090

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

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

---+
 /PKGBUILD |   74 
 extra-i686/PKGBUILD   |   33 -
 extra-x86_64/PKGBUILD |   33 -
 3 files changed, 74 insertions(+), 66 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-05 19:18:42 UTC (rev 192089)
+++ extra-i686/PKGBUILD 2013-08-05 19:19:16 UTC (rev 192090)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer :
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgname=bzr
-pkgver=2.5.1
-pkgrel=2
-pkgdesc=A decentralized revision control system (bazaar)
-arch=('i686' 'x86_64')
-url=http://bazaar.canonical.com/en/;
-license=('GPL')
-depends=('python2')
-optdepends=('python2-paramiko: for sftp support')
-source=(http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.sig})
-md5sums=('ac5079858364a046071000d5cdccb67b'
- 'c83dd08dd2c3e27edbab873500d7d6eb')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i 's|man/man1|share/man/man1|' setup.py
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-
bzrlib/{plugins/bash_completion/bashcomp.py,tests/ssl_certs/create_ssls.py,patiencediff.py,_patiencediff_py.py}
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1
-
-  # bash-completion
-  install -D -m644 contrib/bash/bzr \
-${pkgdir}/usr/share/bash-completion/completions/bzr
-}

Copied: bzr/repos/extra-i686/PKGBUILD (from rev 192089, bzr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-05 19:19:16 UTC (rev 192090)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer :
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=bzr
+pkgver=2.6.0
+pkgrel=1
+pkgdesc=A decentralized revision control system (bazaar)
+arch=('i686' 'x86_64')
+url=http://bazaar.canonical.com/en/;
+license=('GPL')
+depends=('python2')
+optdepends=('python2-paramiko: for sftp support')
+source=(http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha1sums=('5eb4d0367c6d83396250165da5bb2c8a9f378293'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's|man/man1|share/man/man1|' setup.py
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+
bzrlib/{plugins/bash_completion/bashcomp.py,tests/ssl_certs/create_ssls.py,patiencediff.py,_patiencediff_py.py}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1
+
+  # bash-completion
+  install -D -m644 contrib/bash/bzr \
+${pkgdir}/usr/share/bash-completion/completions/bzr
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-05 19:18:42 UTC (rev 192089)
+++ extra-x86_64/PKGBUILD   2013-08-05 19:19:16 UTC (rev 192090)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer :
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgname=bzr
-pkgver=2.5.1
-pkgrel=2
-pkgdesc=A decentralized revision control system (bazaar)
-arch=('i686' 'x86_64')
-url=http://bazaar.canonical.com/en/;
-license=('GPL')
-depends=('python2')
-optdepends=('python2-paramiko: for sftp support')
-source=(http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz{,.sig})
-md5sums=('ac5079858364a046071000d5cdccb67b'
- 'c83dd08dd2c3e27edbab873500d7d6eb')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i 's|man/man1|share/man/man1|' setup.py
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-
bzrlib/{plugins/bash_completion/bashcomp.py,tests/ssl_certs/create_ssls.py,patiencediff.py,_patiencediff_py.py}
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1
-
-  # bash-completion
-  install -D -m644 contrib/bash/bzr \
-${pkgdir}/usr/share/bash-completion/completions/bzr
-}

Copied: bzr/repos/extra-x86_64/PKGBUILD (from rev 192089, bzr/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-08-05 19:19:16 UTC (rev 192090)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer :
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=bzr

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

2013-08-05 Thread Eric Bélanger
Date: Monday, August 5, 2013 @ 21:31:55
  Author: eric
Revision: 192091

upgpkg: libdiscid 0.5.2-1

Upstream update

Modified:
  libdiscid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 19:19:16 UTC (rev 192090)
+++ PKGBUILD2013-08-05 19:31:55 UTC (rev 192091)
@@ -3,7 +3,7 @@
 # Contributor: Eric Gillingham sy...@sysrq.tk
 
 pkgname=libdiscid
-pkgver=0.5.1
+pkgver=0.5.2
 pkgrel=1
 pkgdesc=A Library for creating MusicBrainz DiscIDs
 arch=('i686' 'x86_64')
@@ -12,20 +12,20 @@
 depends=('glibc')
 options=('!libtool')
 
source=(http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('7770e649929b378d4758f97f9937a3d5')
+md5sums=('ce5141be6082cf2f8a31f624ce8510c9')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make check
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 }



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

2013-08-05 Thread Eric Bélanger
Date: Monday, August 5, 2013 @ 21:32:28
  Author: eric
Revision: 192092

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-05 19:31:55 UTC (rev 192091)
+++ extra-i686/PKGBUILD 2013-08-05 19:32:28 UTC (rev 192092)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Eric Gillingham sy...@sysrq.tk
-
-pkgname=libdiscid
-pkgver=0.5.1
-pkgrel=1
-pkgdesc=A Library for creating MusicBrainz DiscIDs
-arch=('i686' 'x86_64')
-url=http://musicbrainz.org/doc/libdiscid;
-license=('LGPL')
-depends=('glibc')
-options=('!libtool')
-source=(http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('7770e649929b378d4758f97f9937a3d5')
-
-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: libdiscid/repos/extra-i686/PKGBUILD (from rev 192091, 
libdiscid/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-05 19:32:28 UTC (rev 192092)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Eric Gillingham sy...@sysrq.tk
+
+pkgname=libdiscid
+pkgver=0.5.2
+pkgrel=1
+pkgdesc=A Library for creating MusicBrainz DiscIDs
+arch=('i686' 'x86_64')
+url=http://musicbrainz.org/doc/libdiscid;
+license=('LGPL')
+depends=('glibc')
+options=('!libtool')
+source=(http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('ce5141be6082cf2f8a31f624ce8510c9')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-05 19:31:55 UTC (rev 192091)
+++ extra-x86_64/PKGBUILD   2013-08-05 19:32:28 UTC (rev 192092)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Eric Gillingham sy...@sysrq.tk
-
-pkgname=libdiscid
-pkgver=0.5.1
-pkgrel=1
-pkgdesc=A Library for creating MusicBrainz DiscIDs
-arch=('i686' 'x86_64')
-url=http://musicbrainz.org/doc/libdiscid;
-license=('LGPL')
-depends=('glibc')
-options=('!libtool')
-source=(http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('7770e649929b378d4758f97f9937a3d5')
-
-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: libdiscid/repos/extra-x86_64/PKGBUILD (from rev 192091, 
libdiscid/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-08-05 19:32:28 UTC (rev 192092)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Eric Gillingham sy...@sysrq.tk
+
+pkgname=libdiscid
+pkgver=0.5.2
+pkgrel=1
+pkgdesc=A Library for creating MusicBrainz DiscIDs
+arch=('i686' 'x86_64')
+url=http://musicbrainz.org/doc/libdiscid;
+license=('LGPL')
+depends=('glibc')
+options=('!libtool')
+source=(http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('ce5141be6082cf2f8a31f624ce8510c9')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2013-08-05 Thread Guillaume Alaux
Date: Monday, August 5, 2013 @ 21:34:41
  Author: guillaume
Revision: 192093

Upstream release

Modified:
  swt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-05 19:32:28 UTC (rev 192092)
+++ PKGBUILD2013-08-05 19:34:41 UTC (rev 192093)
@@ -1,9 +1,9 @@
 # $Id$
 # Maintainer: Guillaume ALAUX guilla...@archlinux.org
 pkgname=swt
-pkgver=4.2.1
-pkgrel=2
-_date=201209141800
+pkgver=4.3
+pkgrel=1
+_date=201306052000
 pkgdesc='An open source widget toolkit for Java'
 arch=('i686' 'x86_64')
 url='http://www.eclipse.org/swt/'
@@ -13,12 +13,12 @@
 makedepends=('java-environment' 'libxtst' 'mesa' 'glu' 'libgnomeui' 'unzip' 
'pkgconfig' 'webkitgtk2' 'apache-ant')
 if [ ${CARCH} = i686 ]; then
   _carch=x86
-  
sha256sums=('6198cd749ec25303a8c3a044e7680d643209862d2947f9efdda20bf7467575ba'
+  
sha256sums=('d15fd80dd1d73f915879e08d53b535c781d589195eba0d011c307912514aa965'
   
'6bb48007a95e3d8c6b577cc9cc4b61a51ce928b04f4fcd393cf72f8f727fe923')
 fi
 if [ ${CARCH} = x86_64 ]; then
   _carch=x86_64
-  
sha256sums=('e89e330df24ca72c57a381e81590293ce3f475d855258183179436bd5dcd85c8'
+  
sha256sums=('0da9ce9fc30de90a45054df6d28c7092705707abcde9cc923a2601d1dd237707'
   
'6bb48007a95e3d8c6b577cc9cc4b61a51ce928b04f4fcd393cf72f8f727fe923')
 fi
 
source=(http://download.eclipse.org/eclipse/downloads/drops4/R-${pkgver}-${_date}/swt-${pkgver}-gtk-linux-${_carch}.zip



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

2013-08-05 Thread Guillaume Alaux
Date: Monday, August 5, 2013 @ 21:35:39
  Author: guillaume
Revision: 192094

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

Added:
  swt/repos/extra-i686/PKGBUILD
(from rev 192093, swt/trunk/PKGBUILD)
  swt/repos/extra-i686/build-swt.xml
(from rev 192093, swt/trunk/build-swt.xml)
  swt/repos/extra-x86_64/PKGBUILD
(from rev 192093, swt/trunk/PKGBUILD)
  swt/repos/extra-x86_64/build-swt.xml
(from rev 192093, swt/trunk/build-swt.xml)
Deleted:
  swt/repos/extra-i686/PKGBUILD
  swt/repos/extra-i686/build-swt.xml
  swt/repos/extra-x86_64/PKGBUILD
  swt/repos/extra-x86_64/build-swt.xml

+
 /PKGBUILD  |  114 +++
 /build-swt.xml |   34 
 extra-i686/PKGBUILD|   57 -
 extra-i686/build-swt.xml   |   17 --
 extra-x86_64/PKGBUILD  |   57 -
 extra-x86_64/build-swt.xml |   17 --
 6 files changed, 148 insertions(+), 148 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-05 19:34:41 UTC (rev 192093)
+++ extra-i686/PKGBUILD 2013-08-05 19:35:39 UTC (rev 192094)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-pkgname=swt
-pkgver=4.2.1
-pkgrel=2
-_date=201209141800
-pkgdesc='An open source widget toolkit for Java'
-arch=('i686' 'x86_64')
-url='http://www.eclipse.org/swt/'
-license=('EPL')
-depends=('java-runtime=6' 'gtk2=2.20.1' 'libxtst')
-optdepends=('libgnomeui' 'mesa' 'glu' 'libwebkit')
-makedepends=('java-environment' 'libxtst' 'mesa' 'glu' 'libgnomeui' 'unzip' 
'pkgconfig' 'libwebkit' 'apache-ant')
-if [ ${CARCH} = i686 ]; then
-  _carch=x86
-  
sha256sums=('6198cd749ec25303a8c3a044e7680d643209862d2947f9efdda20bf7467575ba'
-  
'6bb48007a95e3d8c6b577cc9cc4b61a51ce928b04f4fcd393cf72f8f727fe923')
-fi
-if [ ${CARCH} = x86_64 ]; then
-  _carch=x86_64
-  
sha256sums=('e89e330df24ca72c57a381e81590293ce3f475d855258183179436bd5dcd85c8'
-  
'6bb48007a95e3d8c6b577cc9cc4b61a51ce928b04f4fcd393cf72f8f727fe923')
-fi
-source=(http://download.eclipse.org/eclipse/downloads/drops4/R-${pkgver}-${_date}/swt-${pkgver}-gtk-linux-${_carch}.zip
-build-swt.xml)
-# To test this pkg:
-# http://www.eclipse.org/swt/examples.php#standaloneOutsideEclipse
-# http://download.eclipse.org/eclipse/downloads/
-
-build() {
-  cd ${srcdir}
-  unzip -oq src.zip -d src
-
-  . /etc/profile.d/jdk.sh
-  . /etc/profile.d/apache-ant.sh
-
-  # Shared objects
-  cd src
-  ./build.sh
-
-  # SWT jar
-  ant -f ../build-swt.xml compile
-}
-
-package() {
-  cd ${srcdir}/src
-
-  # Shared objects
-  export OUTPUT_DIR=${pkgdir}/usr/lib
-  install -dm755 ${OUTPUT_DIR} 
-  make -f make_linux.mak install
-
-  # SWT jar
-  ant -f ../build-swt.xml jar
-  install -Dm755 ../swt.jar ${pkgdir}/usr/share/java/swt-${pkgver}.jar
-  ln -s swt-${pkgver}.jar ${pkgdir}/usr/share/java/swt.jar
-}

Copied: swt/repos/extra-i686/PKGBUILD (from rev 192093, swt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-05 19:35:39 UTC (rev 192094)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+pkgname=swt
+pkgver=4.3
+pkgrel=1
+_date=201306052000
+pkgdesc='An open source widget toolkit for Java'
+arch=('i686' 'x86_64')
+url='http://www.eclipse.org/swt/'
+license=('EPL')
+depends=('java-runtime=6' 'gtk2=2.20.1' 'libxtst')
+optdepends=('libgnomeui' 'mesa' 'glu' 'webkitgtk2')
+makedepends=('java-environment' 'libxtst' 'mesa' 'glu' 'libgnomeui' 'unzip' 
'pkgconfig' 'webkitgtk2' 'apache-ant')
+if [ ${CARCH} = i686 ]; then
+  _carch=x86
+  
sha256sums=('d15fd80dd1d73f915879e08d53b535c781d589195eba0d011c307912514aa965'
+  
'6bb48007a95e3d8c6b577cc9cc4b61a51ce928b04f4fcd393cf72f8f727fe923')
+fi
+if [ ${CARCH} = x86_64 ]; then
+  _carch=x86_64
+  
sha256sums=('0da9ce9fc30de90a45054df6d28c7092705707abcde9cc923a2601d1dd237707'
+  
'6bb48007a95e3d8c6b577cc9cc4b61a51ce928b04f4fcd393cf72f8f727fe923')
+fi
+source=(http://download.eclipse.org/eclipse/downloads/drops4/R-${pkgver}-${_date}/swt-${pkgver}-gtk-linux-${_carch}.zip
+build-swt.xml)
+# To test this pkg:
+# http://www.eclipse.org/swt/examples.php#standaloneOutsideEclipse
+# http://download.eclipse.org/eclipse/downloads/
+
+build() {
+  cd ${srcdir}
+  unzip -oq src.zip -d src
+
+  . /etc/profile.d/jdk.sh
+  . /etc/profile.d/apache-ant.sh
+
+  # Shared objects
+  cd src
+  ./build.sh
+
+  # SWT jar
+  ant -f ../build-swt.xml compile
+}
+
+package() {
+  cd ${srcdir}/src
+
+  # Shared objects
+  export OUTPUT_DIR=${pkgdir}/usr/lib
+  install -dm755 ${OUTPUT_DIR} 
+  make -f make_linux.mak install
+
+  # SWT jar
+  ant -f ../build-swt.xml jar
+  install -Dm755 ../swt.jar ${pkgdir}/usr/share/java/swt-${pkgver}.jar
+  ln -s swt-${pkgver}.jar 

  1   2   >