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

2015-05-17 Thread Tobias Powalowski
Date: Sunday, May 17, 2015 @ 10:03:11
  Author: tpowa
Revision: 239481

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

Added:
  qemu/repos/extra-i686/65-kvm.rules
(from rev 239480, qemu/repos/testing-i686/65-kvm.rules)
  qemu/repos/extra-i686/CVE-2015-3456.patch
(from rev 239480, qemu/repos/testing-i686/CVE-2015-3456.patch)
  qemu/repos/extra-i686/PKGBUILD
(from rev 239480, qemu/repos/testing-i686/PKGBUILD)
  qemu/repos/extra-i686/qemu.install
(from rev 239480, qemu/repos/testing-i686/qemu.install)
  qemu/repos/extra-x86_64/65-kvm.rules
(from rev 239480, qemu/repos/testing-x86_64/65-kvm.rules)
  qemu/repos/extra-x86_64/CVE-2015-3456.patch
(from rev 239480, qemu/repos/testing-x86_64/CVE-2015-3456.patch)
  qemu/repos/extra-x86_64/PKGBUILD
(from rev 239480, qemu/repos/testing-x86_64/PKGBUILD)
  qemu/repos/extra-x86_64/qemu.install
(from rev 239480, qemu/repos/testing-x86_64/qemu.install)
Deleted:
  qemu/repos/extra-i686/65-kvm.rules
  qemu/repos/extra-i686/CVE-2015-3456.patch
  qemu/repos/extra-i686/PKGBUILD
  qemu/repos/extra-i686/qemu.install
  qemu/repos/extra-x86_64/65-kvm.rules
  qemu/repos/extra-x86_64/CVE-2015-3456.patch
  qemu/repos/extra-x86_64/PKGBUILD
  qemu/repos/extra-x86_64/qemu.install
  qemu/repos/testing-i686/
  qemu/repos/testing-x86_64/

--+
 /65-kvm.rules|4 
 /CVE-2015-3456.patch |  168 +++
 /PKGBUILD|  200 +
 /qemu.install|   38 +++
 extra-i686/65-kvm.rules  |2 
 extra-i686/CVE-2015-3456.patch   |   84 ---
 extra-i686/PKGBUILD  |   99 --
 extra-i686/qemu.install  |   19 ---
 extra-x86_64/65-kvm.rules|2 
 extra-x86_64/CVE-2015-3456.patch |   84 ---
 extra-x86_64/PKGBUILD|   99 --
 extra-x86_64/qemu.install|   19 ---
 12 files changed, 410 insertions(+), 408 deletions(-)

Deleted: extra-i686/65-kvm.rules
===
--- extra-i686/65-kvm.rules 2015-05-16 21:48:46 UTC (rev 239480)
+++ extra-i686/65-kvm.rules 2015-05-17 08:03:11 UTC (rev 239481)
@@ -1,2 +0,0 @@
-KERNEL==kvm, GROUP=kvm, MODE=0660
-KERNEL==vhost-net, GROUP=kvm, MODE=0660, TAG+=uaccess, 
OPTIONS+=static_node=vhost-net

Copied: qemu/repos/extra-i686/65-kvm.rules (from rev 239480, 
qemu/repos/testing-i686/65-kvm.rules)
===
--- extra-i686/65-kvm.rules (rev 0)
+++ extra-i686/65-kvm.rules 2015-05-17 08:03:11 UTC (rev 239481)
@@ -0,0 +1,2 @@
+KERNEL==kvm, GROUP=kvm, MODE=0660
+KERNEL==vhost-net, GROUP=kvm, MODE=0660, TAG+=uaccess, 
OPTIONS+=static_node=vhost-net

Deleted: extra-i686/CVE-2015-3456.patch
===
--- extra-i686/CVE-2015-3456.patch  2015-05-16 21:48:46 UTC (rev 239480)
+++ extra-i686/CVE-2015-3456.patch  2015-05-17 08:03:11 UTC (rev 239481)
@@ -1,84 +0,0 @@
-From e907746266721f305d67bc0718795fedee2e824c Mon Sep 17 00:00:00 2001
-From: Petr Matousek pmato...@redhat.com
-Date: Wed, 6 May 2015 09:48:59 +0200
-Subject: [PATCH] fdc: force the fifo access to be in bounds of the allocated 
buffer
-
-During processing of certain commands such as FD_CMD_READ_ID and
-FD_CMD_DRIVE_SPECIFICATION_COMMAND the fifo memory access could
-get out of bounds leading to memory corruption with values coming
-from the guest.
-
-Fix this by making sure that the index is always bounded by the
-allocated memory.
-
-This is CVE-2015-3456.
-
-Signed-off-by: Petr Matousek pmato...@redhat.com
-Reviewed-by: John Snow js...@redhat.com
-Signed-off-by: John Snow js...@redhat.com

- hw/block/fdc.c |   17 +++--
- 1 files changed, 11 insertions(+), 6 deletions(-)
-
-diff --git a/hw/block/fdc.c b/hw/block/fdc.c
-index f72a392..d8a8edd 100644
 a/hw/block/fdc.c
-+++ b/hw/block/fdc.c
-@@ -1497,7 +1497,7 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
- {
- FDrive *cur_drv;
- uint32_t retval = 0;
--int pos;
-+uint32_t pos;
- 
- cur_drv = get_cur_drv(fdctrl);
- fdctrl-dsr = ~FD_DSR_PWRDOWN;
-@@ -1506,8 +1506,8 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
- return 0;
- }
- pos = fdctrl-data_pos;
-+pos %= FD_SECTOR_LEN;
- if (fdctrl-msr  FD_MSR_NONDMA) {
--pos %= FD_SECTOR_LEN;
- if (pos == 0) {
- if (fdctrl-data_pos != 0)
- if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
-@@ -1852,10 +1852,13 @@ static void fdctrl_handle_option(FDCtrl *fdctrl, int 
direction)
- static void fdctrl_handle_drive_specification_command(FDCtrl *fdctrl, int 
direction)
- {
- FDrive *cur_drv = get_cur_drv(fdctrl);
-+uint32_t pos;
- 
--if (fdctrl-fifo[fdctrl-data_pos - 1]  0x80) {
-+

[arch-commits] Commit in perl-module-build/repos/extra-any (PKGBUILD PKGBUILD)

2015-05-17 Thread Felix Yan
Date: Sunday, May 17, 2015 @ 10:46:26
  Author: fyan
Revision: 239483

archrelease: copy trunk to extra-any

Added:
  perl-module-build/repos/extra-any/PKGBUILD
(from rev 239482, perl-module-build/trunk/PKGBUILD)
Deleted:
  perl-module-build/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-17 08:46:11 UTC (rev 239482)
+++ PKGBUILD2015-05-17 08:46:26 UTC (rev 239483)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Alan Young harley...@gmail.com
-
-pkgname=perl-module-build
-pkgver=0.4211
-pkgrel=1
-pkgdesc=Build, test, and install Perl modules
-arch=('any')
-url=http://search.cpan.org/dist/Module-Build;
-license=('PerlArtistic' 'GPL')
-depends=('perl=5.8.0' 'perl-cpan-meta=2.142060')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Module-Build-$pkgver.tar.gz)
-sha512sums=('ac148c6063c5cd8d6ec33d43d4afec6a4947cd51c545deaa9382d6ae07cbc12ae1f12cb17353ee554aee618efe2404b237a111398aadc591b38c056dc81b83e8')
-
-build() {
-  cd Module-Build-$pkgver
-  perl Build.PL installdirs=vendor
-  perl Build
-}
-
-check() {
-  cd Module-Build-$pkgver
-  perl Build test
-}
-
-package() {
-  cd Module-Build-$pkgver
-  perl Build install destdir=$pkgdir
-}

Copied: perl-module-build/repos/extra-any/PKGBUILD (from rev 239482, 
perl-module-build/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-17 08:46:26 UTC (rev 239483)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Alan Young harley...@gmail.com
+
+pkgname=perl-module-build
+pkgver=0.4212
+pkgrel=1
+pkgdesc=Build, test, and install Perl modules
+arch=('any')
+url=http://search.cpan.org/dist/Module-Build;
+license=('PerlArtistic' 'GPL')
+depends=('perl=5.8.0' 'perl-cpan-meta=2.142060')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Module-Build-$pkgver.tar.gz)
+sha512sums=('5677decbb11194f5657e7436abb24afd9697021e924cd33db92da04be4a467d99fd9d587e62ccd865ef4f2120f7dad5e5ee38a7ae14f65d73e080f1bf6bc6147')
+
+build() {
+  cd Module-Build-$pkgver
+  perl Build.PL installdirs=vendor
+  perl Build
+}
+
+check() {
+  cd Module-Build-$pkgver
+  perl Build test
+}
+
+package() {
+  cd Module-Build-$pkgver
+  perl Build install destdir=$pkgdir
+}


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

2015-05-17 Thread Felix Yan
Date: Sunday, May 17, 2015 @ 10:46:11
  Author: fyan
Revision: 239482

upgpkg: perl-module-build 0.4212-1

Modified:
  perl-module-build/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 08:03:11 UTC (rev 239481)
+++ PKGBUILD2015-05-17 08:46:11 UTC (rev 239482)
@@ -4,7 +4,7 @@
 # Contributor: Alan Young harley...@gmail.com
 
 pkgname=perl-module-build
-pkgver=0.4211
+pkgver=0.4212
 pkgrel=1
 pkgdesc=Build, test, and install Perl modules
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('perl=5.8.0' 'perl-cpan-meta=2.142060')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Module-Build-$pkgver.tar.gz)
-sha512sums=('ac148c6063c5cd8d6ec33d43d4afec6a4947cd51c545deaa9382d6ae07cbc12ae1f12cb17353ee554aee618efe2404b237a111398aadc591b38c056dc81b83e8')
+sha512sums=('5677decbb11194f5657e7436abb24afd9697021e924cd33db92da04be4a467d99fd9d587e62ccd865ef4f2120f7dad5e5ee38a7ae14f65d73e080f1bf6bc6147')
 
 build() {
   cd Module-Build-$pkgver


[arch-commits] Commit in (4 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:10:28
  Author: jlichtblau
Revision: 133657

new dependency of clusterssh added - perl-test-distmanifest

Added:
  perl-test-distmanifest/
  perl-test-distmanifest/repos/
  perl-test-distmanifest/trunk/
  perl-test-distmanifest/trunk/PKGBUILD

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

Added: perl-test-distmanifest/trunk/PKGBUILD
===
--- perl-test-distmanifest/trunk/PKGBUILD   (rev 0)
+++ perl-test-distmanifest/trunk/PKGBUILD   2015-05-17 17:10:28 UTC (rev 
133657)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+
+pkgname=perl-test-distmanifest
+pkgver=1.014
+pkgrel=1
+pkgdesc=Author test that validates a package MANIFEST
+arch=('any')
+url='http://search.cpan.org/dist/Test-DistManifest/'
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Test-DistManifest-$pkgver.tar.gz)
+sha256sums=('3d26c20df42628981cbfcfa5b1ca028c6ceadb344c1dcf97a25ad6a88b73d7c5')
+
+build() {
+  cd ${srcdir}/Test-DistManifest-$pkgver
+
+  perl Build.PL installdirs=vendor
+  ./Build
+}
+
+package() {
+  cd ${srcdir}/Test-DistManifest-$pkgver
+
+  ./Build install destdir=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


Property changes on: perl-test-distmanifest/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in perl-readonly/repos (2 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:13:11
  Author: jlichtblau
Revision: 133660

archrelease: copy trunk to community-testing-any

Added:
  perl-readonly/repos/community-testing-any/
  perl-readonly/repos/community-testing-any/PKGBUILD
(from rev 133659, perl-readonly/trunk/PKGBUILD)

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

Copied: perl-readonly/repos/community-testing-any/PKGBUILD (from rev 133659, 
perl-readonly/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-05-17 17:13:11 UTC (rev 133660)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: John D Jones III jnbek1972 -_AT_- g m a i l -_Dot_- com
+
+pkgname=perl-readonly
+pkgver=2.00
+pkgrel=2
+pkgdesc=Facility for creating read-only scalars, arrays, hashes
+arch=('any')
+url='http://search.mcpan.org/dist/Readonly'
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.mcpan.org/CPAN/authors/id/S/SA/SANKO/Readonly-$pkgver.tar.gz)
+sha256sums=('9bd0156e958842fdfd6c3bb27a23b47232d4737a407d81fabc4dc64b9363bf98')
+
+build() {
+  cd ${srcdir}/Readonly-$pkgver
+
+  perl Build.PL installdirs=vendor
+  ./Build
+}
+
+check() {
+  cd ${srcdir}/Readonly-$pkgver
+
+  ./Build test
+}
+
+package() {
+  cd ${srcdir}/Readonly-$pkgver
+
+  ./Build install destdir=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


[arch-commits] Commit in perl-cpan-changes/repos (2 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:12:17
  Author: jlichtblau
Revision: 133659

archrelease: copy trunk to community-testing-any

Added:
  perl-cpan-changes/repos/community-testing-any/
  perl-cpan-changes/repos/community-testing-any/PKGBUILD
(from rev 133658, perl-cpan-changes/trunk/PKGBUILD)

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

Copied: perl-cpan-changes/repos/community-testing-any/PKGBUILD (from rev 
133658, perl-cpan-changes/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-05-17 17:12:17 UTC (rev 133659)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: John D Jones III jnbek1972 -_AT_- g m a i l -_Dot_- com
+
+pkgname=perl-cpan-changes
+pkgver=0.30
+pkgrel=1
+pkgdesc=Read and write Changes files
+arch=('any')
+url='http://search.mcpan.org/dist/CPAN-Changes'
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.mcpan.org/CPAN/authors/id/B/BR/BRICAS/CPAN-Changes-0.30.tar.gz)
+sha256sums=('e4ac13555163f22a7f99a9494f9db28c68b02447e08bce230515fc36a5cfa1ab')
+
+build() {
+  cd ${srcdir}/CPAN-Changes-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL installdirs=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/CPAN-Changes-$pkgver
+
+  make test
+}
+
+package() {
+  cd ${srcdir}/CPAN-Changes-$pkgver
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


[arch-commits] Commit in (4 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:26:33
  Author: jlichtblau
Revision: 133662

new dependency of clusterssh added - perl-module-manifest

Added:
  perl-module-manifest/
  perl-module-manifest/repos/
  perl-module-manifest/trunk/
  perl-module-manifest/trunk/PKGBUILD

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

Added: perl-module-manifest/trunk/PKGBUILD
===
--- perl-module-manifest/trunk/PKGBUILD (rev 0)
+++ perl-module-manifest/trunk/PKGBUILD 2015-05-17 17:26:33 UTC (rev 133662)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 133657 2015-05-17 17:10:28Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: John D Jones III
+
+pkgname=perl-module-manifest
+pkgver=1.08
+pkgrel=2
+pkgdesc=Parse and examine a Perl distribution MANIFEST file
+arch=('any')
+url='http://search.cpan.org/dist/Module-Manifest/'
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'perl-params-util' 'perl' 'perl-file-slurp')
+checkdepends=('perl-test-exception' 'perl-test-warn')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Module-Manifest-$pkgver.tar.gz)
+sha256sums=('722ed428afcbe5b5b441b0165cbafbd8534fa63d7856d4089e6e25ac21e6445d')
+
+build() {
+  cd ${srcdir}/Module-Manifest-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL installdirs=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/Module-Manifest-$pkgver
+
+  make test
+}
+
+package() {
+  cd ${srcdir}/Module-Manifest-$pkgver
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


[arch-commits] Commit in perl-module-manifest/repos (2 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:27:11
  Author: jlichtblau
Revision: 133663

archrelease: copy trunk to community-testing-any

Added:
  perl-module-manifest/repos/community-testing-any/
  perl-module-manifest/repos/community-testing-any/PKGBUILD
(from rev 133662, perl-module-manifest/trunk/PKGBUILD)

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

Copied: perl-module-manifest/repos/community-testing-any/PKGBUILD (from rev 
133662, perl-module-manifest/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-05-17 17:27:11 UTC (rev 133663)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 133657 2015-05-17 17:10:28Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: John D Jones III
+
+pkgname=perl-module-manifest
+pkgver=1.08
+pkgrel=2
+pkgdesc=Parse and examine a Perl distribution MANIFEST file
+arch=('any')
+url='http://search.cpan.org/dist/Module-Manifest/'
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'perl-params-util' 'perl' 'perl-file-slurp')
+checkdepends=('perl-test-exception' 'perl-test-warn')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Module-Manifest-$pkgver.tar.gz)
+sha256sums=('722ed428afcbe5b5b441b0165cbafbd8534fa63d7856d4089e6e25ac21e6445d')
+
+build() {
+  cd ${srcdir}/Module-Manifest-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL installdirs=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/Module-Manifest-$pkgver
+
+  make test
+}
+
+package() {
+  cd ${srcdir}/Module-Manifest-$pkgver
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


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

2015-05-17 Thread Christian Hesse
Date: Sunday, May 17, 2015 @ 19:56:09
  Author: eworm
Revision: 133669

fix download url

Modified:
  mpv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 17:52:27 UTC (rev 133668)
+++ PKGBUILD2015-05-17 17:56:09 UTC (rev 133669)
@@ -21,7 +21,7 @@
 options=('!emptydirs' '!buildflags')
 install=mpv.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz;
-  
'0001-mpv-lua52.patch::https://github.com/mpv-player/mpv/patch/5b085fd8b172648a03244d6546d130144b7870bf')
+  
'0001-mpv-lua52.patch::https://github.com/mpv-player/mpv/commit/5b085fd8b172648a03244d6546d130144b7870bf.patch')
 md5sums=('c766cf3d6a7eb82a74564c47fa14d4a5'
   '56f2444e5ea3ec8f975bc3d623e03ae1')
 


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

2015-05-17 Thread Sébastien Luttringer
Date: Sunday, May 17, 2015 @ 17:29:18
  Author: seblu
Revision: 239497

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

Added:
  btrfs-progs/repos/core-i686/PKGBUILD
(from rev 239496, btrfs-progs/repos/testing-i686/PKGBUILD)
  btrfs-progs/repos/core-i686/btrfs-progs.install
(from rev 239496, btrfs-progs/repos/testing-i686/btrfs-progs.install)
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
(from rev 239496, btrfs-progs/repos/testing-i686/initcpio-hook-btrfs)
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
(from rev 239496, btrfs-progs/repos/testing-i686/initcpio-install-btrfs)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 239496, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 239496, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 239496, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 239496, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-i686/PKGBUILD
  btrfs-progs/repos/core-i686/btrfs-progs.install
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-x86_64/

+
 /PKGBUILD  |  104 +++
 /btrfs-progs.install   |   18 ++
 /initcpio-hook-btrfs   |   14 
 /initcpio-install-btrfs|   34 +++
 core-i686/PKGBUILD |   49 
 core-i686/btrfs-progs.install  |9 ---
 core-i686/initcpio-hook-btrfs  |7 --
 core-i686/initcpio-install-btrfs   |   17 -
 core-x86_64/PKGBUILD   |   49 
 core-x86_64/btrfs-progs.install|9 ---
 core-x86_64/initcpio-hook-btrfs|7 --
 core-x86_64/initcpio-install-btrfs |   17 -
 12 files changed, 170 insertions(+), 164 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-17 13:41:00 UTC (rev 239496)
+++ core-i686/PKGBUILD  2015-05-17 15:29:18 UTC (rev 239497)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
-# Contributor: Tom Gundersen t...@jklm.no
-# Contributor: Tobias Powalowski tp...@archlinux.org
-
-pkgname=btrfs-progs
-pkgver=4.0
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('i686' 'x86_64')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
-makedepends=('git' 'asciidoc' 'xmlto')
-url='http://btrfs.wiki.kernel.org/'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-source=(git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs')
-install=btrfs-progs.install
-options=(!staticlibs)
-md5sums=('SKIP'
- '7241ba3a4286d08da0d50b7176941112'
- 'b09688a915a0ec8f40e2f5aacbabc9ad')
-
-build() {
-  cd $pkgname
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname
- ./btrfs filesystem show
-}
-
-package() {
-  cd $pkgname
-  make prefix=$pkgdir/usr install
-
-  # install mkinitcpio hooks
-  cd $srcdir
-  install -Dm644 initcpio-install-btrfs 
$pkgdir/usr/lib/initcpio/install/btrfs
-  install -Dm644 initcpio-hook-btrfs $pkgdir/usr/lib/initcpio/hooks/btrfs
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/core-i686/PKGBUILD (from rev 239496, 
btrfs-progs/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-05-17 15:29:18 UTC (rev 239497)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=btrfs-progs
+pkgver=4.0
+pkgrel=2
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=(git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '7241ba3a4286d08da0d50b7176941112'
+ 

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

2015-05-17 Thread Sébastien Luttringer
Date: Sunday, May 17, 2015 @ 17:29:19
  Author: seblu
Revision: 239498

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

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

--+
 /PKGBUILD|   74 +
 core-i686/PKGBUILD   |   37 
 core-x86_64/PKGBUILD |   37 
 3 files changed, 74 insertions(+), 74 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-17 15:29:18 UTC (rev 239497)
+++ core-i686/PKGBUILD  2015-05-17 15:29:19 UTC (rev 239498)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-# Contacted by mail, author use svn commit as release version.
-# He only push tested release code into svn and support using revision as 
version
-
-pkgname=lz4
-pkgver=128
-pkgrel=1
-pkgdesc='Very fast lossless compression algorithm'
-arch=('i686' 'x86_64')
-url='https://code.google.com/p/lz4/'
-license=('GPL2')
-makedepends=('subversion')
-checkdepends=('diffutils')
-depends=('glibc')
-source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  make PREFIX=/usr
-}
-
-check() {
-  $pkgname/programs/lz4 /etc/passwd passwd.lz4
-  $pkgname/programs/lz4 -d passwd.lz4 passwd
-  diff -q /etc/passwd passwd
-  rm passwd
-}
-
-package() {
-  cd $pkgname
-  make install PREFIX=/usr DESTDIR=$pkgdir
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lz4/repos/core-i686/PKGBUILD (from rev 239496, 
lz4/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-05-17 15:29:19 UTC (rev 239498)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+# Contacted by mail, author use svn commit as release version.
+# He only push tested release code into svn and support using revision as 
version
+
+pkgname=lz4
+pkgver=129
+pkgrel=1
+pkgdesc='Very fast lossless compression algorithm'
+arch=('i686' 'x86_64')
+url='https://github.com/Cyan4973/lz4'
+license=('GPL2')
+makedepends=('git')
+checkdepends=('diffutils')
+depends=('glibc')
+source=(git+https://github.com/Cyan4973/lz4.git#tag=r$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+  make PREFIX=/usr
+}
+
+check() {
+  $pkgname/programs/lz4 /etc/passwd passwd.lz4
+  $pkgname/programs/lz4 -d passwd.lz4 passwd
+  diff -q /etc/passwd passwd
+  rm passwd
+}
+
+package() {
+  cd $pkgname
+  make install PREFIX=/usr DESTDIR=$pkgdir
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2015-05-17 15:29:18 UTC (rev 239497)
+++ core-x86_64/PKGBUILD2015-05-17 15:29:19 UTC (rev 239498)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-# Contacted by mail, author use svn commit as release version.
-# He only push tested release code into svn and support using revision as 
version
-
-pkgname=lz4
-pkgver=128
-pkgrel=1
-pkgdesc='Very fast lossless compression algorithm'
-arch=('i686' 'x86_64')
-url='https://code.google.com/p/lz4/'
-license=('GPL2')
-makedepends=('subversion')
-checkdepends=('diffutils')
-depends=('glibc')
-source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  make PREFIX=/usr
-}
-
-check() {
-  $pkgname/programs/lz4 /etc/passwd passwd.lz4
-  $pkgname/programs/lz4 -d passwd.lz4 passwd
-  diff -q /etc/passwd passwd
-  rm passwd
-}
-
-package() {
-  cd $pkgname
-  make install PREFIX=/usr DESTDIR=$pkgdir
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lz4/repos/core-x86_64/PKGBUILD (from rev 239496, 
lz4/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2015-05-17 15:29:19 UTC (rev 239498)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+# Contacted by mail, author use svn commit as release version.
+# He only push tested release code into svn and support using revision as 
version
+
+pkgname=lz4
+pkgver=129
+pkgrel=1
+pkgdesc='Very fast lossless compression algorithm'
+arch=('i686' 'x86_64')
+url='https://github.com/Cyan4973/lz4'
+license=('GPL2')
+makedepends=('git')
+checkdepends=('diffutils')
+depends=('glibc')
+source=(git+https://github.com/Cyan4973/lz4.git#tag=r$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+  make PREFIX=/usr
+}
+
+check() {
+  $pkgname/programs/lz4 /etc/passwd passwd.lz4
+  $pkgname/programs/lz4 -d passwd.lz4 passwd
+  diff -q 

[arch-commits] Commit in (4 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:10:49
  Author: jlichtblau
Revision: 133658

new dependency of clusterssh added - perl-readonly

Added:
  perl-readonly/
  perl-readonly/repos/
  perl-readonly/trunk/
  perl-readonly/trunk/PKGBUILD

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

Added: perl-readonly/trunk/PKGBUILD
===
--- perl-readonly/trunk/PKGBUILD(rev 0)
+++ perl-readonly/trunk/PKGBUILD2015-05-17 17:10:49 UTC (rev 133658)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: John D Jones III jnbek1972 -_AT_- g m a i l -_Dot_- com
+
+pkgname=perl-readonly
+pkgver=2.00
+pkgrel=2
+pkgdesc=Facility for creating read-only scalars, arrays, hashes
+arch=('any')
+url='http://search.mcpan.org/dist/Readonly'
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.mcpan.org/CPAN/authors/id/S/SA/SANKO/Readonly-$pkgver.tar.gz)
+sha256sums=('9bd0156e958842fdfd6c3bb27a23b47232d4737a407d81fabc4dc64b9363bf98')
+
+build() {
+  cd ${srcdir}/Readonly-$pkgver
+
+  perl Build.PL installdirs=vendor
+  ./Build
+}
+
+check() {
+  cd ${srcdir}/Readonly-$pkgver
+
+  ./Build test
+}
+
+package() {
+  cd ${srcdir}/Readonly-$pkgver
+
+  ./Build install destdir=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


Property changes on: perl-readonly/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (4 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:10:01
  Author: jlichtblau
Revision: 133656

new dependency of clusterssh added - perl-test-perltidy

Added:
  perl-test-perltidy/
  perl-test-perltidy/repos/
  perl-test-perltidy/trunk/
  perl-test-perltidy/trunk/PKGBUILD

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

Added: perl-test-perltidy/trunk/PKGBUILD
===
--- perl-test-perltidy/trunk/PKGBUILD   (rev 0)
+++ perl-test-perltidy/trunk/PKGBUILD   2015-05-17 17:10:01 UTC (rev 133656)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+
+pkgname=perl-test-perltidy
+pkgver=20130104
+pkgrel=1
+pkgdesc=CPAN Test::PerlTidy module
+arch=('any')
+url='http://search.cpan.org/dist/Test-PerlTidy-20130104/'
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/L/LA/LARRYL/Test-PerlTidy-$pkgver.tar.gz)
+sha256sums=('3f15d9f3f4811e348594620312258d75095237925b491ada623fa73ac9d2b9c8')
+
+build() {
+  cd ${srcdir}/Test-PerlTidy-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL installdirs=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/Test-PerlTidy-$pkgver
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


Property changes on: perl-test-perltidy/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (4 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:09:38
  Author: jlichtblau
Revision: 133655

new dependency of clusterssh added - perl-cpan-changes

Added:
  perl-cpan-changes/
  perl-cpan-changes/repos/
  perl-cpan-changes/trunk/
  perl-cpan-changes/trunk/PKGBUILD

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

Added: perl-cpan-changes/trunk/PKGBUILD
===
--- perl-cpan-changes/trunk/PKGBUILD(rev 0)
+++ perl-cpan-changes/trunk/PKGBUILD2015-05-17 17:09:38 UTC (rev 133655)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: John D Jones III jnbek1972 -_AT_- g m a i l -_Dot_- com
+
+pkgname=perl-cpan-changes
+pkgver=0.30
+pkgrel=1
+pkgdesc=Read and write Changes files
+arch=('any')
+url='http://search.mcpan.org/dist/CPAN-Changes'
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.mcpan.org/CPAN/authors/id/B/BR/BRICAS/CPAN-Changes-0.30.tar.gz)
+sha256sums=('e4ac13555163f22a7f99a9494f9db28c68b02447e08bce230515fc36a5cfa1ab')
+
+build() {
+  cd ${srcdir}/CPAN-Changes-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL installdirs=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/CPAN-Changes-$pkgver
+
+  make test
+}
+
+package() {
+  cd ${srcdir}/CPAN-Changes-$pkgver
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


Property changes on: perl-cpan-changes/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in perl-test-distmanifest/repos (2 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:14:11
  Author: jlichtblau
Revision: 133661

archrelease: copy trunk to community-testing-any

Added:
  perl-test-distmanifest/repos/community-testing-any/
  perl-test-distmanifest/repos/community-testing-any/PKGBUILD
(from rev 133660, perl-test-distmanifest/trunk/PKGBUILD)

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

Copied: perl-test-distmanifest/repos/community-testing-any/PKGBUILD (from rev 
133660, perl-test-distmanifest/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-05-17 17:14:11 UTC (rev 133661)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+
+pkgname=perl-test-distmanifest
+pkgver=1.014
+pkgrel=1
+pkgdesc=Author test that validates a package MANIFEST
+arch=('any')
+url='http://search.cpan.org/dist/Test-DistManifest/'
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Test-DistManifest-$pkgver.tar.gz)
+sha256sums=('3d26c20df42628981cbfcfa5b1ca028c6ceadb344c1dcf97a25ad6a88b73d7c5')
+
+build() {
+  cd ${srcdir}/Test-DistManifest-$pkgver
+
+  perl Build.PL installdirs=vendor
+  ./Build
+}
+
+package() {
+  cd ${srcdir}/Test-DistManifest-$pkgver
+
+  ./Build install destdir=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


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

2015-05-17 Thread Jonathan Steel
Date: Sunday, May 17, 2015 @ 19:49:20
  Author: jsteel
Revision: 133667

archrelease: copy trunk to community-any

Added:
  innotop/repos/community-any/PKGBUILD
(from rev 133666, innotop/trunk/PKGBUILD)
Deleted:
  innotop/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-17 17:49:04 UTC (rev 133666)
+++ PKGBUILD2015-05-17 17:49:20 UTC (rev 133667)
@@ -1,27 +0,0 @@
-# Maintainer: Jonathan Steel jsteel at archlinux.org
-# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Nassim Kacha nassim.ka...@gmail.com
-
-pkgname=innotop
-pkgver=1.9.1
-pkgrel=2
-pkgdesc='A powerful top clone for MySQL (MariaDB)'
-arch=('any')
-url=http://innotop.googlecode.com;
-license=('GPL2')
-depends=('perl-dbd-mysql' 'perl-term-readkey')
-options=('!emptydirs')
-source=(http://innotop.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-md5sums=('7979b7a074e43fe1f0d032034e234bac')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  perl Makefile.PL
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make INSTALLSITESCRIPT=/usr/bin DESTDIR=$pkgdir/ install 
-}

Copied: innotop/repos/community-any/PKGBUILD (from rev 133666, 
innotop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-17 17:49:20 UTC (rev 133667)
@@ -0,0 +1,28 @@
+# Maintainer: Jonathan Steel jsteel at archlinux.org
+# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Nassim Kacha nassim.ka...@gmail.com
+
+pkgname=innotop
+pkgver=1.10.0
+pkgrel=1
+pkgdesc='A powerful top clone for MySQL (MariaDB)'
+arch=('any')
+url=http://innotop.googlecode.com;
+license=('GPL2')
+depends=('perl-dbd-mysql' 'perl-term-readkey')
+makedepends=('git')
+options=('!emptydirs')
+source=(git+https://github.com/innotop/innotop.git#commit=fd0a1f)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+
+  perl Makefile.PL
+}
+
+package() {
+  cd $pkgname
+
+  make INSTALLSITESCRIPT=/usr/bin DESTDIR=$pkgdir/ install 
+}


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

2015-05-17 Thread Jonathan Steel
Date: Sunday, May 17, 2015 @ 19:49:04
  Author: jsteel
Revision: 133666

upgpkg: innotop 1.10.0-1

Modified:
  innotop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 17:43:22 UTC (rev 133665)
+++ PKGBUILD2015-05-17 17:49:04 UTC (rev 133666)
@@ -3,25 +3,26 @@
 # Contributor: Nassim Kacha nassim.ka...@gmail.com
 
 pkgname=innotop
-pkgver=1.9.1
-pkgrel=2
+pkgver=1.10.0
+pkgrel=1
 pkgdesc='A powerful top clone for MySQL (MariaDB)'
 arch=('any')
 url=http://innotop.googlecode.com;
 license=('GPL2')
 depends=('perl-dbd-mysql' 'perl-term-readkey')
+makedepends=('git')
 options=('!emptydirs')
-source=(http://innotop.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-md5sums=('7979b7a074e43fe1f0d032034e234bac')
+source=(git+https://github.com/innotop/innotop.git#commit=fd0a1f)
+md5sums=('SKIP')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname
 
   perl Makefile.PL
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname
 
   make INSTALLSITESCRIPT=/usr/bin DESTDIR=$pkgdir/ install 
 }


[arch-commits] Commit in perl-file-finder/repos (2 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:43:22
  Author: jlichtblau
Revision: 133665

archrelease: copy trunk to community-testing-any

Added:
  perl-file-finder/repos/community-testing-any/
  perl-file-finder/repos/community-testing-any/PKGBUILD
(from rev 133664, perl-file-finder/trunk/PKGBUILD)

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

Copied: perl-file-finder/repos/community-testing-any/PKGBUILD (from rev 133664, 
perl-file-finder/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-05-17 17:43:22 UTC (rev 133665)
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 133655 2015-05-17 17:09:38Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Kaushal M kshlms...@gmail.com
+
+pkgname=perl-file-finder
+pkgver=0.53
+pkgrel=4
+pkgdesc=Perl/CPAN Module File::Finder
+arch=('any')
+url='http://search.cpan.org/dist/File-Finder/'
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/ME/MERLYN/File-Finder-$pkgver.tar.gz)
+sha256sums=('2ecbc19ac67a9e635c872a807a8d3eaaff5babc054f15a191d47cdfc5f176a74')
+
+build() {
+  cd ${srcdir}/File-Finder-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL installdirs=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/File-Finder-$pkgver
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


[arch-commits] Commit in (4 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 19:42:49
  Author: jlichtblau
Revision: 133664

new dependency of clusterssh added - perl-file-finder

Added:
  perl-file-finder/
  perl-file-finder/repos/
  perl-file-finder/trunk/
  perl-file-finder/trunk/PKGBUILD

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

Added: perl-file-finder/trunk/PKGBUILD
===
--- perl-file-finder/trunk/PKGBUILD (rev 0)
+++ perl-file-finder/trunk/PKGBUILD 2015-05-17 17:42:49 UTC (rev 133664)
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 133655 2015-05-17 17:09:38Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Kaushal M kshlms...@gmail.com
+
+pkgname=perl-file-finder
+pkgver=0.53
+pkgrel=4
+pkgdesc=Perl/CPAN Module File::Finder
+arch=('any')
+url='http://search.cpan.org/dist/File-Finder/'
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/M/ME/MERLYN/File-Finder-$pkgver.tar.gz)
+sha256sums=('2ecbc19ac67a9e635c872a807a8d3eaaff5babc054f15a191d47cdfc5f176a74')
+
+build() {
+  cd ${srcdir}/File-Finder-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL installdirs=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/File-Finder-$pkgver
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


[arch-commits] Commit in mpv/trunk (0001-mpv-lua52.patch PKGBUILD)

2015-05-17 Thread Christian Hesse
Date: Sunday, May 17, 2015 @ 19:52:27
  Author: eworm
Revision: 133668

upgpkg: mpv 0.9.1-3

* add dependency to libxss
* use upstream patch for lua detection

Modified:
  mpv/trunk/PKGBUILD
Deleted:
  mpv/trunk/0001-mpv-lua52.patch

--+
 0001-mpv-lua52.patch |   13 -
 PKGBUILD |8 
 2 files changed, 4 insertions(+), 17 deletions(-)

Deleted: 0001-mpv-lua52.patch
===
--- 0001-mpv-lua52.patch2015-05-17 17:49:20 UTC (rev 133667)
+++ 0001-mpv-lua52.patch2015-05-17 17:52:27 UTC (rev 133668)
@@ -1,13 +0,0 @@
-diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py
-index 97c65e3..de38fc5 100644
 a/waftools/checks/custom.py
-+++ b/waftools/checks/custom.py
-@@ -54,7 +54,7 @@ def check_lua(ctx, dependency_identifier):
- ( '51', 'lua = 5.1.0 lua  5.2.0'),
- ( '51deb',  'lua5.1 = 5.1.0'), # debian
- ( '51fbsd', 'lua-5.1 = 5.1.0'), # FreeBSD
--( '52', 'lua = 5.2.0 lua  5.3.0' ),
-+( '52', 'lua52 = 5.2.0 lua52  5.3.0' ),
- ( '52deb',  'lua5.2 = 5.2.0'), # debian
- ( '52fbsd', 'lua-5.2 = 5.2.0'), # FreeBSD
- ( 'luajit', 'luajit = 2.0.0' ),

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 17:49:20 UTC (rev 133667)
+++ PKGBUILD2015-05-17 17:52:27 UTC (rev 133668)
@@ -5,13 +5,13 @@
 
 pkgname=mpv
 pkgver=0.9.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Video player based on MPlayer/mplayer2'
 arch=('i686' 'x86_64')
 license=('GPL')
 url='http://mpv.io'
 depends=(
-  'ffmpeg' 'lcms2' 'libcdio-paranoia' 'libgl' 'enca'
+  'ffmpeg' 'lcms2' 'libcdio-paranoia' 'libgl' 'enca' 'libxss'
   'libxinerama' 'libxv' 'libxkbcommon' 'libva' 'wayland'
   'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua52' 'libdvdnav'
   'libguess' 'libxrandr' 'jack' 'smbclient' 'rubberband'
@@ -21,9 +21,9 @@
 options=('!emptydirs' '!buildflags')
 install=mpv.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz;
-  '0001-mpv-lua52.patch')
+  
'0001-mpv-lua52.patch::https://github.com/mpv-player/mpv/patch/5b085fd8b172648a03244d6546d130144b7870bf')
 md5sums=('c766cf3d6a7eb82a74564c47fa14d4a5'
-  'cb4fdc39561bf11fefd2b93769c91fec')
+  '56f2444e5ea3ec8f975bc3d623e03ae1')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-05-17 Thread Christian Hesse
Date: Sunday, May 17, 2015 @ 19:59:43
  Author: eworm
Revision: 133670

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

Added:
  mpv/repos/community-i686/PKGBUILD
(from rev 133669, mpv/trunk/PKGBUILD)
  mpv/repos/community-i686/mpv.install
(from rev 133669, mpv/trunk/mpv.install)
  mpv/repos/community-x86_64/PKGBUILD
(from rev 133669, mpv/trunk/PKGBUILD)
  mpv/repos/community-x86_64/mpv.install
(from rev 133669, mpv/trunk/mpv.install)
Deleted:
  mpv/repos/community-i686/0001-mpv-lua52.patch
  mpv/repos/community-i686/PKGBUILD
  mpv/repos/community-i686/mpv.install
  mpv/repos/community-x86_64/0001-mpv-lua52.patch
  mpv/repos/community-x86_64/PKGBUILD
  mpv/repos/community-x86_64/mpv.install

---+
 /PKGBUILD |  110 
 /mpv.install  |   24 ++
 community-i686/0001-mpv-lua52.patch   |   13 ---
 community-i686/PKGBUILD   |   55 
 community-i686/mpv.install|   12 ---
 community-x86_64/0001-mpv-lua52.patch |   13 ---
 community-x86_64/PKGBUILD |   55 
 community-x86_64/mpv.install  |   12 ---
 8 files changed, 134 insertions(+), 160 deletions(-)

Deleted: community-i686/0001-mpv-lua52.patch
===
--- community-i686/0001-mpv-lua52.patch 2015-05-17 17:56:09 UTC (rev 133669)
+++ community-i686/0001-mpv-lua52.patch 2015-05-17 17:59:43 UTC (rev 133670)
@@ -1,13 +0,0 @@
-diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py
-index 97c65e3..de38fc5 100644
 a/waftools/checks/custom.py
-+++ b/waftools/checks/custom.py
-@@ -54,7 +54,7 @@ def check_lua(ctx, dependency_identifier):
- ( '51', 'lua = 5.1.0 lua  5.2.0'),
- ( '51deb',  'lua5.1 = 5.1.0'), # debian
- ( '51fbsd', 'lua-5.1 = 5.1.0'), # FreeBSD
--( '52', 'lua = 5.2.0 lua  5.3.0' ),
-+( '52', 'lua52 = 5.2.0 lua52  5.3.0' ),
- ( '52deb',  'lua5.2 = 5.2.0'), # debian
- ( '52fbsd', 'lua-5.2 = 5.2.0'), # FreeBSD
- ( 'luajit', 'luajit = 2.0.0' ),

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-17 17:56:09 UTC (rev 133669)
+++ community-i686/PKGBUILD 2015-05-17 17:59:43 UTC (rev 133670)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse m...@eworm.de
-# Contributor:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Eivind Uggedal eiv...@uggedal.com
-
-pkgname=mpv
-pkgver=0.9.1
-pkgrel=2
-pkgdesc='Video player based on MPlayer/mplayer2'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://mpv.io'
-depends=(
-  'ffmpeg' 'lcms2' 'libcdio-paranoia' 'libgl' 'enca'
-  'libxinerama' 'libxv' 'libxkbcommon' 'libva' 'wayland'
-  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua52' 'libdvdnav'
-  'libguess' 'libxrandr' 'jack' 'smbclient' 'rubberband'
-)
-makedepends=('mesa' 'python-docutils' 'ladspa' 'hardening-wrapper')
-optdepends=('youtube-dl: for video-sharing websites playback')
-options=('!emptydirs' '!buildflags')
-install=mpv.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz;
-  '0001-mpv-lua52.patch')
-md5sums=('c766cf3d6a7eb82a74564c47fa14d4a5'
-  'cb4fdc39561bf11fefd2b93769c91fec')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1  $srcdir/0001-mpv-lua52.patch
-  ./bootstrap.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./waf configure --prefix=/usr \
---confdir=/etc/mpv \
---enable-zsh-comp \
---enable-libmpv-shared \
---enable-cdda
-
-  ./waf build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  ./waf install --destdir=$pkgdir
-
-  install -d $pkgdir/usr/share/doc/mpv/examples
-  install -m644 etc/{input,example}.conf \
-$pkgdir/usr/share/doc/mpv/examples
-  install -m644 DOCS/{encoding.rst,tech-overview.txt} \
-$pkgdir/usr/share/doc/mpv
-}

Copied: mpv/repos/community-i686/PKGBUILD (from rev 133669, mpv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-17 17:59:43 UTC (rev 133670)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Eivind Uggedal eiv...@uggedal.com
+
+pkgname=mpv
+pkgver=0.9.1
+pkgrel=3
+pkgdesc='Video player based on MPlayer/mplayer2'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://mpv.io'
+depends=(
+  'ffmpeg' 'lcms2' 'libcdio-paranoia' 'libgl' 'enca' 'libxss'
+  'libxinerama' 'libxv' 'libxkbcommon' 'libva' 'wayland'
+  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua52' 'libdvdnav'
+  'libguess' 'libxrandr' 'jack' 'smbclient' 'rubberband'
+)
+makedepends=('mesa' 'python-docutils' 'ladspa' 'hardening-wrapper')

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

2015-05-17 Thread Eric Bélanger
Date: Monday, May 18, 2015 @ 02:49:29
  Author: eric
Revision: 133680

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

Added:
  atomicparsley/repos/community-i686/
  atomicparsley/repos/community-i686/PKGBUILD
(from rev 133679, atomicparsley/trunk/PKGBUILD)
  atomicparsley/repos/community-i686/atomicparsley.diff
(from rev 133679, atomicparsley/trunk/atomicparsley.diff)
  atomicparsley/repos/community-x86_64/
  atomicparsley/repos/community-x86_64/PKGBUILD
(from rev 133679, atomicparsley/trunk/PKGBUILD)
  atomicparsley/repos/community-x86_64/atomicparsley.diff
(from rev 133679, atomicparsley/trunk/atomicparsley.diff)

-+
 community-i686/PKGBUILD |   30 ++
 community-i686/atomicparsley.diff   |   39 ++
 community-x86_64/PKGBUILD   |   30 ++
 community-x86_64/atomicparsley.diff |   39 ++
 4 files changed, 138 insertions(+)

Copied: atomicparsley/repos/community-i686/PKGBUILD (from rev 133679, 
atomicparsley/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-18 00:49:29 UTC (rev 133680)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=atomicparsley
+pkgver=0.9.0
+pkgrel=5
+pkgdesc=A command line program for reading, parsing and setting iTunes-style 
metadata in MPEG4 files
+arch=('i686' 'x86_64')
+url=http://atomicparsley.sourceforge.net/;
+license=('GPL')
+depends=('gcc-libs')
+source=(http://downloads.sourceforge.net/$pkgname/AtomicParsley-source-$pkgver.zip
+atomicparsley.diff)
+sha1sums=('6a73aed6ba569e693fe94a313e7e9e9ce204d038'
+  'c17939f2348da4de2787f2f87dfa6679a02b8f5f')
+
+prepare() {
+  cd ${srcdir}/AtomicParsley-source-${pkgver}
+  patch -p0 -i ${srcdir}/atomicparsley.diff
+}
+
+build() {
+  cd ${srcdir}/AtomicParsley-source-${pkgver}
+  ./build
+}
+
+package() {  
+  cd ${srcdir}/AtomicParsley-source-${pkgver}
+  install -D -m755 AtomicParsley ${pkgdir}/usr/bin/AtomicParsley
+}

Copied: atomicparsley/repos/community-i686/atomicparsley.diff (from rev 133679, 
atomicparsley/trunk/atomicparsley.diff)
===
--- community-i686/atomicparsley.diff   (rev 0)
+++ community-i686/atomicparsley.diff   2015-05-18 00:49:29 UTC (rev 133680)
@@ -0,0 +1,39 @@
+diff -ruN AtomicParsley-source-0.9.0-orig/AtomicParsley.cpp 
AtomicParsley-source-0.9.0/AtomicParsley.cpp
+--- AtomicParsley.cpp  2006-09-16 01:22:33.0 +0200
 AtomicParsley.cpp  2009-10-20 21:11:08.0 +0200
+@@ -1447,7 +1447,7 @@
+   uint32_t atom_offsets = 0;
+   char* uuid_outfile = (char*)calloc(1, sizeof(char)*MAXPATHLEN+1); 
//malloc a new string because it may be a cli arg for a specific output path  
+   if (output_path == NULL) {
+-  char* orig_suffix = strrchr(originating_file, '.');
++  char* orig_suffix = 
strrchr(const_castchar*(originating_file), '.');
+   if (orig_suffix == NULL) {
+   fprintf(stdout, AP warning: a file extension for the 
input file was not found.\n\tGlobbing onto original filename...\n);
+   path_len = strlen(originating_file);
+@@ -4464,7 +4464,7 @@
+ void APar_DeriveNewPath(const char *filePath, char* temp_path, int 
output_type, const char* file_kind, char* forced_suffix, bool random_filename = 
true) {
+   char* suffix = NULL;
+   if (forced_suffix == NULL) {
+-  suffix = strrchr(filePath, '.');
++  suffix = strrchr(const_castchar*(filePath), '.');
+   } else {
+   suffix = forced_suffix;
+   }
+@@ -4480,7 +4480,7 @@
+   memcpy(temp_path, filePath, base_len);
+   memcpy(temp_path + base_len, file_kind, strlen(file_kind));
+ #else
+-  char* file_name = strrchr(filePath, '/');
++  char* file_name = strrchr(const_castchar*(filePath), '/');
+   size_t file_name_len = strlen(file_name);
+   memcpy(temp_path, filePath, filepath_len-file_name_len+1);
+   memcpy(temp_path + strlen(temp_path), ., 1);
+@@ -5006,7 +5006,7 @@
+   free_modified_name = true;
+   if (forced_suffix_type == FORCE_M4B_TYPE) { //using 
--stik Audiobook with --overWrite will change the original file's extension
+   uint16_t filename_len = strlen(m4aFile);
+-  char* suffix = strrchr(m4aFile, '.');
++  char* suffix = 
strrchr(const_castchar*(m4aFile), '.');
+   memcpy(originating_file, m4aFile, 
filename_len+1 );
+   memcpy(originating_file + (filename_len - 
strlen(suffix) ), 

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

2015-05-17 Thread Eric Bélanger
Date: Monday, May 18, 2015 @ 03:25:13
  Author: eric
Revision: 133682

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   67 ++---
 1 file changed, 34 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-18 01:23:37 UTC (rev 133681)
+++ PKGBUILD2015-05-18 01:25:13 UTC (rev 133682)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=youtube-dl
-pkgver=2015.05.10
-pkgrel=1
-pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
-arch=('any')
-url=http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('7e42822482c4dc01a7d1ac9e171491214744c449'
-  'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root=${pkgdir}/ --optimize=1
-  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
- ${pkgdir}/usr/share/bash-completion/completions/youtube-dl
-  install -Dm644 youtube-dl.zsh 
${pkgdir}/usr/share/zsh/site-functions/_youtube-dl
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 133681, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-18 01:25:13 UTC (rev 133682)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=youtube-dl
+pkgver=2015.05.15
+pkgrel=1
+pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
+arch=('any')
+url=http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+   'atomicparsley: for embedding thumbnails into m4a files')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('65834be91d5936daf23452a4ec43c26ab993c26f'
+  'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root=${pkgdir}/ --optimize=1
+  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
+ ${pkgdir}/usr/share/bash-completion/completions/youtube-dl
+  install -Dm644 youtube-dl.zsh 
${pkgdir}/usr/share/zsh/site-functions/_youtube-dl
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in (5 files)

2015-05-17 Thread Eric Bélanger
Date: Monday, May 18, 2015 @ 02:34:55
  Author: eric
Revision: 133679

New optdepends for youtube-dl (close FS#44953)

Added:
  atomicparsley/
  atomicparsley/repos/
  atomicparsley/trunk/
  atomicparsley/trunk/PKGBUILD
  atomicparsley/trunk/atomicparsley.diff

+
 PKGBUILD   |   30 ++
 atomicparsley.diff |   39 +++
 2 files changed, 69 insertions(+)

Added: atomicparsley/trunk/PKGBUILD
===
--- atomicparsley/trunk/PKGBUILD(rev 0)
+++ atomicparsley/trunk/PKGBUILD2015-05-18 00:34:55 UTC (rev 133679)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=atomicparsley
+pkgver=0.9.0
+pkgrel=5
+pkgdesc=A command line program for reading, parsing and setting iTunes-style 
metadata in MPEG4 files
+arch=('i686' 'x86_64')
+url=http://atomicparsley.sourceforge.net/;
+license=('GPL')
+depends=('gcc-libs')
+source=(http://downloads.sourceforge.net/$pkgname/AtomicParsley-source-$pkgver.zip
+atomicparsley.diff)
+sha1sums=('6a73aed6ba569e693fe94a313e7e9e9ce204d038'
+  'c17939f2348da4de2787f2f87dfa6679a02b8f5f')
+
+prepare() {
+  cd ${srcdir}/AtomicParsley-source-${pkgver}
+  patch -p0 -i ${srcdir}/atomicparsley.diff
+}
+
+build() {
+  cd ${srcdir}/AtomicParsley-source-${pkgver}
+  ./build
+}
+
+package() {  
+  cd ${srcdir}/AtomicParsley-source-${pkgver}
+  install -D -m755 AtomicParsley ${pkgdir}/usr/bin/AtomicParsley
+}


Property changes on: atomicparsley/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: atomicparsley/trunk/atomicparsley.diff
===
--- atomicparsley/trunk/atomicparsley.diff  (rev 0)
+++ atomicparsley/trunk/atomicparsley.diff  2015-05-18 00:34:55 UTC (rev 
133679)
@@ -0,0 +1,39 @@
+diff -ruN AtomicParsley-source-0.9.0-orig/AtomicParsley.cpp 
AtomicParsley-source-0.9.0/AtomicParsley.cpp
+--- AtomicParsley.cpp  2006-09-16 01:22:33.0 +0200
 AtomicParsley.cpp  2009-10-20 21:11:08.0 +0200
+@@ -1447,7 +1447,7 @@
+   uint32_t atom_offsets = 0;
+   char* uuid_outfile = (char*)calloc(1, sizeof(char)*MAXPATHLEN+1); 
//malloc a new string because it may be a cli arg for a specific output path  
+   if (output_path == NULL) {
+-  char* orig_suffix = strrchr(originating_file, '.');
++  char* orig_suffix = 
strrchr(const_castchar*(originating_file), '.');
+   if (orig_suffix == NULL) {
+   fprintf(stdout, AP warning: a file extension for the 
input file was not found.\n\tGlobbing onto original filename...\n);
+   path_len = strlen(originating_file);
+@@ -4464,7 +4464,7 @@
+ void APar_DeriveNewPath(const char *filePath, char* temp_path, int 
output_type, const char* file_kind, char* forced_suffix, bool random_filename = 
true) {
+   char* suffix = NULL;
+   if (forced_suffix == NULL) {
+-  suffix = strrchr(filePath, '.');
++  suffix = strrchr(const_castchar*(filePath), '.');
+   } else {
+   suffix = forced_suffix;
+   }
+@@ -4480,7 +4480,7 @@
+   memcpy(temp_path, filePath, base_len);
+   memcpy(temp_path + base_len, file_kind, strlen(file_kind));
+ #else
+-  char* file_name = strrchr(filePath, '/');
++  char* file_name = strrchr(const_castchar*(filePath), '/');
+   size_t file_name_len = strlen(file_name);
+   memcpy(temp_path, filePath, filepath_len-file_name_len+1);
+   memcpy(temp_path + strlen(temp_path), ., 1);
+@@ -5006,7 +5006,7 @@
+   free_modified_name = true;
+   if (forced_suffix_type == FORCE_M4B_TYPE) { //using 
--stik Audiobook with --overWrite will change the original file's extension
+   uint16_t filename_len = strlen(m4aFile);
+-  char* suffix = strrchr(m4aFile, '.');
++  char* suffix = 
strrchr(const_castchar*(m4aFile), '.');
+   memcpy(originating_file, m4aFile, 
filename_len+1 );
+   memcpy(originating_file + (filename_len - 
strlen(suffix) ), .m4b, 5 );
+   }


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

2015-05-17 Thread Eric Bélanger
Date: Monday, May 18, 2015 @ 03:23:37
  Author: eric
Revision: 133681

upgpkg: youtube-dl 2015.05.15-1

Upstream update, Add atomicparsley optdepends (close FS#44953)

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-18 00:49:29 UTC (rev 133680)
+++ PKGBUILD2015-05-18 01:23:37 UTC (rev 133681)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=youtube-dl
-pkgver=2015.05.10
+pkgver=2015.05.15
 pkgrel=1
 pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
 arch=('any')
@@ -10,10 +10,11 @@
 license=('custom')
 depends=('python' 'python-setuptools')
 optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support')
+'rtmpdump: for rtmp streams support'
+   'atomicparsley: for embedding thumbnails into m4a files')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('7e42822482c4dc01a7d1ac9e171491214744c449'
+sha1sums=('65834be91d5936daf23452a4ec43c26ab993c26f'
   'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
 


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

2015-05-17 Thread Anatol Pomozov
Date: Monday, May 18, 2015 @ 05:05:44
  Author: anatolik
Revision: 133684

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

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

---+
 /PKGBUILD |  160 
 community-i686/PKGBUILD   |   76 
 community-x86_64/PKGBUILD |   76 
 3 files changed, 160 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-18 03:04:56 UTC (rev 133683)
+++ community-i686/PKGBUILD 2015-05-18 03:05:44 UTC (rev 133684)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Anders Bergh ande...@gmail.com
-
-pkgbase=luasocket
-pkgname=(lua-socket lua51-socket lua52-socket)
-pkgver=3.0rc1
-pkgrel=6
-pkgdesc='Networking support library for the Lua language'
-arch=('i686' 'x86_64')
-url='https://github.com/diegonehab/luasocket'
-license=('MIT')
-makedepends=('lua' 'lua51' 'lua52')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/diegonehab/luasocket/archive/v${pkgver/rc/-rc}.tar.gz;
-   https://github.com/diegonehab/luasocket/commit/396e9e5.patch;)
-md5sums=('08bd2f265b244eb4bf5c2c36bf89b759'
- '7936d598ea91632e7dcc7aebc93c7300')
-
-prepare() {
-  cd ${srcdir}/luasocket-${pkgver/rc/-rc}
-  patch -p1  ${srcdir}/396e9e5.patch
-}
-
-build() {
-  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-52
-  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-51
-
-  msg2 'Building with lua 5.3'
-  cd $srcdir/luasocket-${pkgver/rc/-rc}
-  make LUAV=5.3
-
-  msg2 'Building with lua 5.1'
-  cd $srcdir/luasocket-${pkgver/rc/-rc}-51
-  find . -type f -name \*.[ch] -exec sed -i \
--e 's|include lua.h|include lua5.1/lua.h|g' \
--e 's|include lualib.h|include lua5.1/lualib.h|g' \
--e 's|include luaconf.h|include lua5.1/luaconf.h|g' \
--e 's|include lauxlib.h|include lua5.1/lauxlib.h|g' \
-{} \;
-  make LUAV=5.1
-
-  msg2 'Building with lua 5.2'
-  cd $srcdir/luasocket-${pkgver/rc/-rc}-52
-  find . -type f -name \*.[ch] -exec sed -i \
--e 's|include lua.h|include lua5.2/lua.h|g' \
--e 's|include lualib.h|include lua5.2/lualib.h|g' \
--e 's|include luaconf.h|include lua5.2/luaconf.h|g' \
--e 's|include lauxlib.h|include lua5.2/lauxlib.h|g' \
-{} \;
-  make LUAV=5.2
-}
-
-package_lua-socket() {
-  depends=('lua')
-  cd luasocket-${pkgver/rc/-rc}
-  make DESTDIR=$pkgdir/ LUAV=5.3 prefix=/usr install-unix
-  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_lua51-socket() {
-  depends=('lua51')
-  replaces=('luasocket')
-  conflicts=('luasocket')
-
-  cd luasocket-${pkgver/rc/-rc}-51
-  make DESTDIR=$pkgdir/ LUAV=5.1 prefix=/usr install-unix
-  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_lua52-socket() {
-  depends=('lua52')
-
-  cd luasocket-${pkgver/rc/-rc}-52
-  make DESTDIR=$pkgdir/ LUAV=5.2 prefix=/usr install-unix
-  install -D -m0644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: luasocket/repos/community-i686/PKGBUILD (from rev 133683, 
luasocket/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-18 03:05:44 UTC (rev 133684)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Anders Bergh ande...@gmail.com
+
+pkgbase=luasocket
+pkgname=(lua-socket lua51-socket lua52-socket)
+pkgver=3.0rc1
+pkgrel=7
+pkgdesc='Networking support library for the Lua language'
+arch=('i686' 'x86_64')
+url='https://github.com/diegonehab/luasocket'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/diegonehab/luasocket/archive/v${pkgver/rc/-rc}.tar.gz;
+   https://github.com/diegonehab/luasocket/commit/396e9e5.patch;)
+md5sums=('08bd2f265b244eb4bf5c2c36bf89b759'
+ '7936d598ea91632e7dcc7aebc93c7300')
+
+prepare() {
+  cd ${srcdir}/luasocket-${pkgver/rc/-rc}
+  patch -p1  ${srcdir}/396e9e5.patch
+
+  # Partially apply 
https://github.com/diegonehab/luasocket/commit/ddf429282460323e24652e6beec8e750f8e4a958
+  # it replaces deprecated Lua functions.
+  sed 's/\bluaL_checkint\b/(int)luaL_checkinteger/g' -i src/{mime,luasocket}.c
+}
+
+build() {
+  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-52
+  cp -a luasocket-${pkgver/rc/-rc} luasocket-${pkgver/rc/-rc}-51
+
+  msg2 'Building with lua 5.3'
+  cd $srcdir/luasocket-${pkgver/rc/-rc}
+  make LUAV=5.3
+
+  msg2 'Building with lua 5.1'
+  

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

2015-05-17 Thread Anatol Pomozov
Date: Monday, May 18, 2015 @ 05:04:56
  Author: anatolik
Revision: 133683

FS#44999 Fix incompatibility with lua 5.3

Replace deprecated functions with its 5.3 versions.
An upstream commit [1] fixes it but contains a lot of crap (wtf to mix cleanup 
and bugfixes in the same commit?).
Use simple sed to fix issue the same way.

[1] 
https://github.com/diegonehab/luasocket/commit/ddf429282460323e24652e6beec8e750f8e4a958

Modified:
  luasocket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-18 01:25:13 UTC (rev 133682)
+++ PKGBUILD2015-05-18 03:04:56 UTC (rev 133683)
@@ -5,7 +5,7 @@
 pkgbase=luasocket
 pkgname=(lua-socket lua51-socket lua52-socket)
 pkgver=3.0rc1
-pkgrel=6
+pkgrel=7
 pkgdesc='Networking support library for the Lua language'
 arch=('i686' 'x86_64')
 url='https://github.com/diegonehab/luasocket'
@@ -19,6 +19,10 @@
 prepare() {
   cd ${srcdir}/luasocket-${pkgver/rc/-rc}
   patch -p1  ${srcdir}/396e9e5.patch
+
+  # Partially apply 
https://github.com/diegonehab/luasocket/commit/ddf429282460323e24652e6beec8e750f8e4a958
+  # it replaces deprecated Lua functions.
+  sed 's/\bluaL_checkint\b/(int)luaL_checkinteger/g' -i src/{mime,luasocket}.c
 }
 
 build() {


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

2015-05-17 Thread Anatol Pomozov
Date: Monday, May 18, 2015 @ 07:01:57
  Author: anatolik
Revision: 133685

Add mkbootimg tool

Integrate custom makefiles into single one

Added:
  android-tools/trunk/Makefile
Modified:
  android-tools/trunk/PKGBUILD
Deleted:
  android-tools/trunk/adbMakefile
  android-tools/trunk/fastbootMakefile

--+
 Makefile |  101 +
 PKGBUILD |   13 ++
 adbMakefile  |   44 ---
 fastbootMakefile |   67 ---
 4 files changed, 105 insertions(+), 120 deletions(-)

Added: Makefile
===
--- Makefile(rev 0)
+++ Makefile2015-05-18 05:01:57 UTC (rev 133685)
@@ -0,0 +1,101 @@
+all: mkbootimg fastboot adb
+
+install:
+   install -m755 -d $(DESTDIR)/usr/bin
+   install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb
+
+clean:
+   rm -f **/*.o
+
+.PHONY: clean
+
+
+
+
+MKBOOTIMG_SRCS += $(wildcard core/libmincrypt/*.c)
+MKBOOTIMG_SRCS += core/mkbootimg/mkbootimg.c
+
+MKBOOTIMG_CFLAGS += -Icore/include
+
+mkbootimg: $(MKBOOTIMG_OBJ)
+   $(CC) -o $@ $(CFLAGS) $(MKBOOTIMG_CFLAGS) $(LDFLAGS) $(MKBOOTIMG_LIBS) 
$(MKBOOTIMG_SRCS)
+
+
+
+
+ADB_SRCS += core/adb/adb.c
+ADB_SRCS += core/adb/adb_auth_host.c
+ADB_SRCS += core/adb/adb_client.c
+ADB_SRCS += core/adb/commandline.c
+ADB_SRCS += core/adb/console.c
+ADB_SRCS += core/adb/fdevent.c
+ADB_SRCS += core/adb/file_sync_client.c
+ADB_SRCS += core/adb/get_my_path_linux.c
+ADB_SRCS += core/adb/services.c
+ADB_SRCS += core/adb/sockets.c
+ADB_SRCS += core/adb/transport.c
+ADB_SRCS += core/adb/transport_local.c
+ADB_SRCS += core/adb/transport_usb.c
+ADB_SRCS += core/adb/usb_linux.c
+ADB_SRCS += core/adb/usb_vendors.c
+ADB_SRCS += core/libcutils/load_file.c
+ADB_SRCS += core/libcutils/socket_inaddr_any_server.c
+ADB_SRCS += core/libcutils/socket_local_client.c
+ADB_SRCS += core/libcutils/socket_local_server.c
+ADB_SRCS += core/libcutils/socket_loopback_client.c
+ADB_SRCS += core/libcutils/socket_loopback_server.c
+ADB_SRCS += core/libcutils/socket_network_client.c
+ADB_SRCS += core/libzipfile/centraldir.c
+ADB_SRCS += core/libzipfile/zipfile.c
+
+ADB_CFLAGS  += -DADB_HOST=1 -DHAVE_FORKEXEC=1 -DHAVE_OFF64_T=1 -DHAVE_TERMIO_H 
-I core/include -I core/adb
+ADB_LIBS += -lcrypto -lpthread -lz
+
+adb: $(ADB_SRCS)
+   $(CC) -o $@ $(CFLAGS) $(ADB_CFLAGS) $(LDFLAGS) $(ADB_SRCS) $(ADB_LIBS)
+
+
+
+FASTBOOT_SRCS += core/fastboot/bootimg.c
+FASTBOOT_SRCS += core/fastboot/engine.c
+FASTBOOT_SRCS += core/fastboot/fastboot.c
+FASTBOOT_SRCS += core/fastboot/protocol.c
+FASTBOOT_SRCS += core/fastboot/usb_linux.c
+FASTBOOT_SRCS += core/fastboot/util_linux.c
+FASTBOOT_SRCS += core/fastboot/util.c
+FASTBOOT_SRCS += core/fastboot/fs.c
+FASTBOOT_SRCS += core/libsparse/backed_block.c
+FASTBOOT_SRCS += core/libsparse/output_file.c
+FASTBOOT_SRCS += core/libsparse/sparse.c
+FASTBOOT_SRCS += core/libsparse/sparse_crc32.c
+FASTBOOT_SRCS += core/libsparse/sparse_err.c
+FASTBOOT_SRCS += core/libsparse/sparse_read.c
+FASTBOOT_SRCS += core/libzipfile/centraldir.c
+FASTBOOT_SRCS += core/libzipfile/zipfile.c
+FASTBOOT_SRCS += extras/ext4_utils/allocate.c
+FASTBOOT_SRCS += extras/ext4_utils/contents.c
+FASTBOOT_SRCS += extras/ext4_utils/crc16.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_utils.c
+FASTBOOT_SRCS += extras/ext4_utils/ext4_sb.c
+FASTBOOT_SRCS += extras/ext4_utils/extent.c
+FASTBOOT_SRCS += extras/ext4_utils/indirect.c
+FASTBOOT_SRCS += extras/ext4_utils/make_ext4fs.c
+FASTBOOT_SRCS += extras/ext4_utils/sha1.c
+FASTBOOT_SRCS += extras/ext4_utils/uuid.c
+FASTBOOT_SRCS += extras/ext4_utils/wipe.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_utils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_dlutils.c
+FASTBOOT_SRCS += extras/f2fs_utils/f2fs_ioutils.c
+FASTBOOT_SRCS += libselinux/src/callbacks.c
+FASTBOOT_SRCS += libselinux/src/check_context.c
+FASTBOOT_SRCS += libselinux/src/freecon.c
+FASTBOOT_SRCS += libselinux/src/init.c
+FASTBOOT_SRCS += libselinux/src/label.c
+FASTBOOT_SRCS += libselinux/src/label_android_property.c
+FASTBOOT_SRCS += libselinux/src/label_file.c
+
+FASTBOOT_CFLAGS  += -DHAVE_OFF64_T=1 -std=gnu99 -I core/mkbootimg -I 
core/libsparse/include -I core/include -I extras/ext4_utils -I 
extras/f2fs_utils -I libselinux/include -I f2fs-tools/include -I f2fs-tools/mkfs
+FASTBOOT_LIBS += -lz -ldl -lpcre
+
+fastboot: $(FASTBOOT_OBJS)
+   $(CC) -o $@ $(CFLAGS) $(FASTBOOT_CFLAGS) $(LDFLAGS) $(FASTBOOT_SRCS) 
$(FASTBOOT_LIBS)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-18 03:05:44 UTC (rev 133684)
+++ PKGBUILD2015-05-18 05:01:57 UTC (rev 133685)
@@ -16,18 +16,15 @@
 
git+https://android.googlesource.com/platform/system/extras#tag=android-$pkgver
 
git+https://android.googlesource.com/platform/external/libselinux#tag=android-$pkgver
 

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

2015-05-17 Thread Tobias Powalowski
Date: Monday, May 18, 2015 @ 07:01:35
  Author: tpowa
Revision: 239503

upgpkg: linux 4.0.4-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 18:24:07 UTC (rev 239502)
+++ PKGBUILD2015-05-18 05:01:35 UTC (rev 239503)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.0
-pkgver=4.0.3
+pkgver=4.0.4
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -23,7 +23,7 @@
 'change-default-console-loglevel.patch')
 sha256sums=('0f2f7d44979bc8f71c4fc5d3308c03499c26a824dd311fdf6eef4dee0d7d5991'
 'SKIP'
-'e8e42b67cd5ca28d3cd85b868a8caf6c0b971c948d6695ea6e399e132664de83'
+'c268985a82483fe75f0f397217208e262f85a356d1d9f34b9e22255e549d7ce9'
 'SKIP'
 'f70f2935b1881697ff986b80b444de422cf1869740ca33c25d3d1f20f5e56ba5'
 '03b740ce5c70593d26634974499eefc9fc24841d972c38c05f9febd2d0b77249'


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

2015-05-17 Thread Tobias Powalowski
Date: Monday, May 18, 2015 @ 07:03:19
  Author: tpowa
Revision: 239504

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

Added:
  linux/repos/testing-i686/
  linux/repos/testing-i686/PKGBUILD
(from rev 239503, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 239503, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 239503, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 239503, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 239503, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 239503, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 239503, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 239503, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 239503, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 239503, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 239503, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 239503, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/0001-fix-btrfs-mount-deadlock.patch
  linux/repos/testing-i686/0001-fixup-drm.patch
  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/0001-fix-btrfs-mount-deadlock.patch
  linux/repos/testing-x86_64/0001-fixup-drm.patch
  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|  596 
 /change-default-console-loglevel.patch   |   22 
 /config  |14712 +
 /config.x86_64   |14210 
 /linux.install   |   74 
 /linux.preset|   28 
 testing-i686/0001-fix-btrfs-mount-deadlock.patch |   43 
 testing-i686/0001-fixup-drm.patch|   70 
 testing-i686/PKGBUILD|  298 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 7356 
 testing-i686/config.x86_64   | 7105 
 testing-i686/linux.install   |   37 
 testing-i686/linux.preset|   14 
 testing-x86_64/0001-fix-btrfs-mount-deadlock.patch   |   43 
 testing-x86_64/0001-fixup-drm.patch  |   70 
 testing-x86_64/PKGBUILD  |  298 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 7356 
 testing-x86_64/config.x86_64 | 7105 
 testing-x86_64/linux.install |   37 
 testing-x86_64/linux.preset  |   14 
 22 files changed, 29642 insertions(+), 29868 deletions(-)

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


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

2015-05-17 Thread Anatol Pomozov
Date: Monday, May 18, 2015 @ 07:06:59
  Author: anatolik
Revision: 239505

upgpkg: dhcpcd 6.9.0-1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-18 05:03:19 UTC (rev 239504)
+++ PKGBUILD2015-05-18 05:06:59 UTC (rev 239505)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet jvinet.zeroflux.org
 
 pkgname=dhcpcd
-pkgver=6.8.2
+pkgver=6.9.0
 pkgrel=1
 pkgdesc=RFC2131 compliant DHCP client daemon
 url=http://roy.marples.name/projects/dhcpcd/;
@@ -18,7 +18,7 @@
 source=(http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2;
 'dhcpcd_.service'
'dhcpcd.service')
-sha1sums=('4fa1299d0ca947dd39013851e7c047b4dabb36c3'
+sha1sums=('0e4900e05c01b795508b51f882e1316aad5ad932'
   '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
   '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
 


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

2015-05-17 Thread Anatol Pomozov
Date: Monday, May 18, 2015 @ 07:07:38
  Author: anatolik
Revision: 239506

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

Added:
  dhcpcd/repos/testing-i686/
  dhcpcd/repos/testing-i686/PKGBUILD
(from rev 239505, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.service
(from rev 239505, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-i686/dhcpcd_.service
(from rev 239505, dhcpcd/trunk/dhcpcd_.service)
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 239505, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 239505, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 239505, dhcpcd/trunk/dhcpcd_.service)

+
 testing-i686/PKGBUILD  |   60 +++
 testing-i686/dhcpcd.service|   13 
 testing-i686/dhcpcd_.service   |   15 +
 testing-x86_64/PKGBUILD|   60 +++
 testing-x86_64/dhcpcd.service  |   13 
 testing-x86_64/dhcpcd_.service |   15 +
 6 files changed, 176 insertions(+)

Copied: dhcpcd/repos/testing-i686/PKGBUILD (from rev 239505, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-18 05:07:38 UTC (rev 239506)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Tom Killian tom.archlinux.org
+# Contributor: Judd Vinet jvinet.zeroflux.org
+
+pkgname=dhcpcd
+pkgver=6.9.0
+pkgrel=1
+pkgdesc=RFC2131 compliant DHCP client daemon
+url=http://roy.marples.name/projects/dhcpcd/;
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=(http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2;
+'dhcpcd_.service'
+   'dhcpcd.service')
+sha1sums=('0e4900e05c01b795508b51f882e1316aad5ad932'
+  '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
+  '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --rundir=/run
+
+  # Build
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make test
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Install License
+  install -d $pkgdir/usr/share/licenses/$pkgname
+  sed 26q $srcdir/$pkgname-$pkgver/control.h \
+  $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll  ${pkgdir}/etc/dhcpcd.conf # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 ${srcdir}/dhcpcd_.service 
${pkgdir}/usr/lib/systemd/system/dhcpcd@.service
+  install -Dm644 ${srcdir}/dhcpcd.service 
${pkgdir}/usr/lib/systemd/system/dhcpcd.service # FS#31543
+}

Copied: dhcpcd/repos/testing-i686/dhcpcd.service (from rev 239505, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-i686/dhcpcd.service (rev 0)
+++ testing-i686/dhcpcd.service 2015-05-18 05:07:38 UTC (rev 239506)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd.pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-i686/dhcpcd_.service (from rev 239505, 
dhcpcd/trunk/dhcpcd_.service)
===
--- testing-i686/dhcpcd_.service(rev 0)
+++ testing-i686/dhcpcd_.service2015-05-18 05:07:38 UTC (rev 239506)
@@ -0,0 +1,15 @@
+[Unit]
+Description=dhcpcd on %I
+Wants=network.target
+Before=network.target
+BindsTo=sys-subsystem-net-devices-%i.device
+After=sys-subsystem-net-devices-%i.device
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd-%I.pid
+ExecStart=/usr/bin/dhcpcd -q -w %I
+ExecStop=/usr/bin/dhcpcd -x %I
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 239505, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-18 05:07:38 UTC (rev 239506)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Tom Killian tom.archlinux.org
+# Contributor: Judd Vinet jvinet.zeroflux.org
+
+pkgname=dhcpcd
+pkgver=6.9.0
+pkgrel=1
+pkgdesc=RFC2131 compliant DHCP client daemon
+url=http://roy.marples.name/projects/dhcpcd/;

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

2015-05-17 Thread Alexander Rødseth
Date: Sunday, May 17, 2015 @ 23:09:13
  Author: arodseth
Revision: 133676

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

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

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-17 21:09:01 UTC (rev 133675)
+++ community-i686/PKGBUILD 2015-05-17 21:09:13 UTC (rev 133676)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.0.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
-sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
-'SKIP')
-install=$pkgname.install
-options=('staticlibs')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd rustc-$pkgver
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd rustc-$pkgver
-
-  ./configure --prefix=/usr --disable-docs --release-channel=beta
-  make
-}
-
-package() {
-  cd rustc-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 133675, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-17 21:09:13 UTC (rev 133676)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.0.0
+epoch=1
+pkgrel=2
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
+sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
+'SKIP')
+install=$pkgname.install
+options=(staticlibs !strip)
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-$pkgver
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-$pkgver
+
+  ./configure --prefix=/usr --disable-docs
+  make
+}
+
+package() {
+  cd rustc-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-05-17 21:09:01 UTC (rev 133675)
+++ community-i686/rust.install 2015-05-17 21:09:13 UTC (rev 133676)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database usr/share/mime /dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  

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

2015-05-17 Thread Alexander Rødseth
Date: Sunday, May 17, 2015 @ 23:09:01
  Author: arodseth
Revision: 133675

upgpkg: rust 1:1.0.0-2

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 18:54:06 UTC (rev 133674)
+++ PKGBUILD2015-05-17 21:09:01 UTC (rev 133675)
@@ -5,7 +5,7 @@
 pkgname=rust
 pkgver=1.0.0
 epoch=1
-pkgrel=1
+pkgrel=2
 arch=('x86_64' 'i686')
 pkgdesc='Systems programming language focused on safety, speed and concurrency'
 url='http://www.rust-lang.org/'
@@ -15,7 +15,7 @@
 sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
 'SKIP')
 install=$pkgname.install
-options=('staticlibs')
+options=(staticlibs !strip)
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
 #gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
 
@@ -28,7 +28,7 @@
 build() {
   cd rustc-$pkgver
 
-  ./configure --prefix=/usr --disable-docs --release-channel=beta
+  ./configure --prefix=/usr --disable-docs
   make
 }
 


[arch-commits] Commit in clusterssh/trunk (PKGBUILD clusterssh.changelog)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 23:24:57
  Author: jlichtblau
Revision: 133677

upgpkg: clusterssh 4.03.06-1 - new upstream release

Modified:
  clusterssh/trunk/PKGBUILD
  clusterssh/trunk/clusterssh.changelog

--+
 PKGBUILD |   38 +-
 clusterssh.changelog |   11 +++
 2 files changed, 32 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 21:09:13 UTC (rev 133676)
+++ PKGBUILD2015-05-17 21:24:57 UTC (rev 133677)
@@ -1,32 +1,44 @@
 # $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
 # Contributor: Macfly mmac...@gmail.com
 # Contributor: Duncan Ferguson duncan_fergu...@users.sourceforge.net
 
 pkgname=clusterssh
-_pkgver=4.02_04
+_pkgver=4.03_06
 pkgver=${_pkgver/_/.}
-pkgrel=4
-pkgdesc=Cluster SSH opens terminal windows with connections to specified 
hosts and an administration console
+pkgrel=1
+pkgdesc=Control multiple open terminal windows with connections to specified 
hosts and an administration console
 arch=('any')
 url=http://sourceforge.net/projects/clusterssh/;
 license=('GPL')
-depends=('xterm' 'perl-file-which' 'perl-extutils-makemaker' 
'perl-test-differences'
- 'perl-test-pod' 'perl-test-pod-coverage' 'perl-test-trap' 
'perl-try-tiny'
- 'perl-tk' 'perl-x11-protocol' 'perl-exception-class')
+depends=('xterm' 'perl-exception-class' 'perl-try-tiny' 'perl-tk' 
'perl-x11-protocol')
+checkdepends=('perl-cpan-changes' 'perl-file-slurp' 'perl-file-which' 
'perl-readonly'
+ 'perl-test-differences' 'perl-test-distmanifest' 
'perl-test-perltidy'
+ 'perl-test-pod' 'perl-test-pod-coverage' 'perl-test-pod-coverage' 
'perl-test-trap')
+options=('!emptydirs')
 changelog=$pkgname.changelog
 
source=(http://downloads.sourceforge.net/$pkgname/App-ClusterSSH-$_pkgver.tar.gz)
-sha256sums=('a16142261ca83bee871005f9293f4f54da8c24918a6b439cee1f774ed4f0eb5a')
+sha256sums=('f3c5c89669deb7a579be65a0dba1e197b6d8b9f1d5b3e48b8a0646193d0bf6f0')
 
 build() {
-  cd App-ClusterSSH-$_pkgver
+  cd ${srcdir}/App-ClusterSSH-$_pkgver
 
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
+  perl Build.PL installdirs=vendor
+  ./Build
 }
 
+check() {
+  cd ${srcdir}/App-ClusterSSH-$_pkgver
+
+#https://github.com/duncs/clusterssh/issues/10
+  LANG=en_US.UTF-8 ./Build test
+}
+
 package() {
-  cd App-ClusterSSH-$_pkgver
+  cd ${srcdir}/App-ClusterSSH-$_pkgver
 
-  make DESTDIR=${pkgdir} install
+  ./Build install destdir=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
 }

Modified: clusterssh.changelog
===
--- clusterssh.changelog2015-05-17 21:09:13 UTC (rev 133676)
+++ clusterssh.changelog2015-05-17 21:24:57 UTC (rev 133677)
@@ -1,12 +1,15 @@
-2014-10-16 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2015-05-17 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * clusterssh 4.03_06-1
+
+2014-10-16 Jaroslav Lichtblau svetlemo...@archlinux.org
* clusterssh 4.02_04-3 FS#40797 fixed
 
-2014-05-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-05-25 Jaroslav Lichtblau svetlemo...@archlinux.org
* clusterssh 4.02_04-3 FS#40551 fixed
 
-2013-10-06 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-10-06 Jaroslav Lichtblau svetlemo...@archlinux.org
* clusterssh 3.28-4 - changelog properly added, changed to 'any' 
architecture
 
-2009-12-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2009-12-26 Jaroslav Lichtblau svetlemo...@archlinux.org
* Package moved to [community]
* version 3.28 - 39 votes in AUR


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

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 23:25:07
  Author: jlichtblau
Revision: 133678

archrelease: copy trunk to community-testing-any

Added:
  clusterssh/repos/community-testing-any/
  clusterssh/repos/community-testing-any/PKGBUILD
(from rev 133677, clusterssh/trunk/PKGBUILD)
  clusterssh/repos/community-testing-any/clusterssh.changelog
(from rev 133677, clusterssh/trunk/clusterssh.changelog)

--+
 PKGBUILD |   44 
 clusterssh.changelog |   15 +++
 2 files changed, 59 insertions(+)

Copied: clusterssh/repos/community-testing-any/PKGBUILD (from rev 133677, 
clusterssh/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-05-17 21:25:07 UTC (rev 133678)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Macfly mmac...@gmail.com
+# Contributor: Duncan Ferguson duncan_fergu...@users.sourceforge.net
+
+pkgname=clusterssh
+_pkgver=4.03_06
+pkgver=${_pkgver/_/.}
+pkgrel=1
+pkgdesc=Control multiple open terminal windows with connections to specified 
hosts and an administration console
+arch=('any')
+url=http://sourceforge.net/projects/clusterssh/;
+license=('GPL')
+depends=('xterm' 'perl-exception-class' 'perl-try-tiny' 'perl-tk' 
'perl-x11-protocol')
+checkdepends=('perl-cpan-changes' 'perl-file-slurp' 'perl-file-which' 
'perl-readonly'
+ 'perl-test-differences' 'perl-test-distmanifest' 
'perl-test-perltidy'
+ 'perl-test-pod' 'perl-test-pod-coverage' 'perl-test-pod-coverage' 
'perl-test-trap')
+options=('!emptydirs')
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/App-ClusterSSH-$_pkgver.tar.gz)
+sha256sums=('f3c5c89669deb7a579be65a0dba1e197b6d8b9f1d5b3e48b8a0646193d0bf6f0')
+
+build() {
+  cd ${srcdir}/App-ClusterSSH-$_pkgver
+
+  perl Build.PL installdirs=vendor
+  ./Build
+}
+
+check() {
+  cd ${srcdir}/App-ClusterSSH-$_pkgver
+
+#https://github.com/duncs/clusterssh/issues/10
+  LANG=en_US.UTF-8 ./Build test
+}
+
+package() {
+  cd ${srcdir}/App-ClusterSSH-$_pkgver
+
+  ./Build install destdir=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}

Copied: clusterssh/repos/community-testing-any/clusterssh.changelog (from rev 
133677, clusterssh/trunk/clusterssh.changelog)
===
--- community-testing-any/clusterssh.changelog  (rev 0)
+++ community-testing-any/clusterssh.changelog  2015-05-17 21:25:07 UTC (rev 
133678)
@@ -0,0 +1,15 @@
+2015-05-17 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * clusterssh 4.03_06-1
+
+2014-10-16 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * clusterssh 4.02_04-3 FS#40797 fixed
+
+2014-05-25 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * clusterssh 4.02_04-3 FS#40551 fixed
+
+2013-10-06 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * clusterssh 3.28-4 - changelog properly added, changed to 'any' 
architecture
+
+2009-12-26 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Package moved to [community]
+   * version 3.28 - 39 votes in AUR


[arch-commits] Commit in gtk-doc/repos/extra-any (PKGBUILD PKGBUILD)

2015-05-17 Thread Jan Steffens
Date: Sunday, May 17, 2015 @ 12:08:24
  Author: heftig
Revision: 239487

archrelease: copy trunk to extra-any

Added:
  gtk-doc/repos/extra-any/PKGBUILD
(from rev 239486, gtk-doc/trunk/PKGBUILD)
Deleted:
  gtk-doc/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-17 10:07:52 UTC (rev 239486)
+++ PKGBUILD2015-05-17 10:08:24 UTC (rev 239487)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gtk-doc
-pkgver=1.22
-pkgrel=1
-pkgdesc=Documentation tool for public library API
-arch=('any')
-license=('GPL' 'FDL')
-depends=('docbook-xsl' 'yelp-tools' 'perl' 'source-highlight')
-makedepends=('pkgconfig' 'jade' 'itstool' 'dblatex')
-optdepends=('jade: SGML support'
-'dblatex: PDF support')
-url=http://www.gtk.org/gtk-doc/;
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('932865c912ce0d81c9480bf957d3908bae6e18c0cf2ee33014d63b920047fca8')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  export PYTHON=/usr/bin/python2
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: gtk-doc/repos/extra-any/PKGBUILD (from rev 239486, 
gtk-doc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-17 10:08:24 UTC (rev 239487)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gtk-doc
+pkgver=1.23
+pkgrel=1
+pkgdesc=Documentation tool for public library API
+arch=('any')
+license=('GPL' 'FDL')
+depends=('docbook-xsl' 'yelp-tools' 'perl' 'source-highlight')
+makedepends=('pkgconfig' 'jade' 'itstool' 'dblatex')
+optdepends=('jade: SGML support'
+'dblatex: PDF support')
+url=http://www.gtk.org/gtk-doc/;
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('0b5c23711166c10ff5c74603db80ac26c2b9a382ce778b0e795db821d50718c4')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  export PYTHON=/usr/bin/python2
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}


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

2015-05-17 Thread Jan Steffens
Date: Sunday, May 17, 2015 @ 12:07:52
  Author: heftig
Revision: 239486

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

Added:
  file-roller/repos/extra-i686/PKGBUILD
(from rev 239485, file-roller/trunk/PKGBUILD)
  file-roller/repos/extra-i686/file-roller.install
(from rev 239485, file-roller/trunk/file-roller.install)
  file-roller/repos/extra-i686/rar1.patch
(from rev 239485, file-roller/trunk/rar1.patch)
  file-roller/repos/extra-i686/rar2.patch
(from rev 239485, file-roller/trunk/rar2.patch)
  file-roller/repos/extra-x86_64/PKGBUILD
(from rev 239485, file-roller/trunk/PKGBUILD)
  file-roller/repos/extra-x86_64/file-roller.install
(from rev 239485, file-roller/trunk/file-roller.install)
  file-roller/repos/extra-x86_64/rar1.patch
(from rev 239485, file-roller/trunk/rar1.patch)
  file-roller/repos/extra-x86_64/rar2.patch
(from rev 239485, file-roller/trunk/rar2.patch)
Deleted:
  file-roller/repos/extra-i686/PKGBUILD
  file-roller/repos/extra-i686/file-roller.install
  file-roller/repos/extra-x86_64/PKGBUILD
  file-roller/repos/extra-x86_64/file-roller.install

--+
 /PKGBUILD|   94 +
 /file-roller.install |   26 ++
 extra-i686/PKGBUILD  |   35 -
 extra-i686/file-roller.install   |   13 -
 extra-i686/rar1.patch|   47 ++
 extra-i686/rar2.patch|   22 
 extra-x86_64/PKGBUILD|   35 -
 extra-x86_64/file-roller.install |   13 -
 extra-x86_64/rar1.patch  |   47 ++
 extra-x86_64/rar2.patch  |   22 
 10 files changed, 258 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-17 10:06:39 UTC (rev 239485)
+++ extra-i686/PKGBUILD 2015-05-17 10:07:52 UTC (rev 239486)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=file-roller
-pkgver=3.16.2
-pkgrel=1
-pkgdesc=Create and modify archives
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'dconf' 'libarchive' 
'file' 'json-glib' 'libnotify' 'p7zip')
-makedepends=('intltool' 'pkg-config' 'libnautilus-extension' 'itstool' 
'docbook-xsl')
-optdepends=('lrzip: lrzip archive support'
-'unace: extraction tool for the proprietary ace archive format')
-groups=('gnome-extra')
-options=('!emptydirs')
-install=file-roller.install
-url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('60897ff24d4822395a227b62811c3b8768b701844961e93303d6d6d9463d7e3f')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/file-roller \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: file-roller/repos/extra-i686/PKGBUILD (from rev 239485, 
file-roller/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-17 10:07:52 UTC (rev 239486)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=file-roller
+pkgver=3.16.2
+pkgrel=2
+pkgdesc=Create and modify archives
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'dconf' 'libarchive' 
'file' 'json-glib' 'libnotify' 'p7zip'
+ 'zip' 'unzip')
+makedepends=('intltool' 'pkg-config' 'libnautilus-extension' 'itstool' 
'docbook-xsl')
+optdepends=('unrar: better RAR archive support'
+'unace: ACE archive support'
+'lrzip: lrzip archive support'
+'cdrkit: ISO image support')
+groups=('gnome-extra')
+options=('!emptydirs')
+install=file-roller.install
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+rar1.patch rar2.patch)
+sha256sums=('60897ff24d4822395a227b62811c3b8768b701844961e93303d6d6d9463d7e3f'
+'020a2debda885afc5748ebc3620ec9c9320f21d9caad631c8d79216b38f96d56'
+'d92da92d64c8c35c19c17b19a7bdfe6d0a00fae28207d1681dec707e8e8dc9f9')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../rar1.patch
+  patch -Np1 -i ../rar2.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/file-roller \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: 

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

2015-05-17 Thread Sergej Pupykin
Date: Sunday, May 17, 2015 @ 12:13:39
  Author: spupykin
Revision: 133642

upgpkg: owncloud 8.0.3-4

upd

Modified:
  owncloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 09:58:28 UTC (rev 133641)
+++ PKGBUILD2015-05-17 10:13:39 UTC (rev 133642)
@@ -5,7 +5,7 @@
 
 pkgname=owncloud
 pkgver=8.0.3
-pkgrel=3
+pkgrel=4
 pkgdesc=A cloud server to store your files centrally on a hardware controlled 
by you
 arch=('any')
 url=http://owncloud.org/;
@@ -38,6 +38,8 @@

$pkgname-files_texteditor-$pkgver.tar.gz::https://github.com/owncloud/files_texteditor/archive/v$pkgver.tar.gz;

$pkgname-files_locking-$pkgver.tar.gz::https://github.com/owncloud/files_locking/archive/v$pkgver.tar.gz;

$pkgname-files_pdfviewer-$pkgver.tar.gz::https://github.com/owncloud/files_pdfviewer/archive/v$pkgver.tar.gz;
+   
$pkgname-activity-$pkgver.tar.gz::https://github.com/owncloud/activity/archive/v$pkgver.tar.gz;
+   
$pkgname-documents-$pkgver.tar.gz::https://github.com/owncloud/documents/archive/v$pkgver.tar.gz;
'apache.example.conf')
 md5sums=('db1827324136469067191ea31c167da5'
  '3cf86b2a131e42ebd7e324228be1920a'
@@ -48,6 +50,8 @@
  'de0787438cfd32de7a141eb27caa9f58'
  'd47ef71e3896ece0852bb13472f3b729'
  '0d51764343cb12c71cfa3b921ff17e38'
+ '6e874be429d9509ab523065d53cce69e'
+ 'aa06679ec073d12492753f1e6fa47bca'
  '64c6edf88bcbb37d063e4bf77b39237f')
 
 prepare() {
@@ -57,7 +61,7 @@
   mv $srcdir/3rdparty-$pkgver $srcdir/core-$pkgver/3rdparty
   mv $srcdir/apps-$pkgver/* $srcdir/core-$pkgver/apps
   for i in files_locking files_pdfviewer files_texteditor firstrunwizard \
-   templateeditor updater; do
+   templateeditor updater activity documents; do
 mv $srcdir/$i-$pkgver $srcdir/core-$pkgver/apps/$i
   done
   find . -type f -name .gitattributes -delete


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

2015-05-17 Thread Evangelos Foutras
Date: Sunday, May 17, 2015 @ 12:59:05
  Author: foutrelis
Revision: 239489

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

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

-+
 /PKGBUILD   |   72 ++
 /xfburn.install |   28 
 extra-i686/PKGBUILD |   34 ---
 extra-i686/xfburn.install   |   14 
 extra-x86_64/PKGBUILD   |   34 ---
 extra-x86_64/xfburn.install |   14 
 6 files changed, 100 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-17 10:58:54 UTC (rev 239488)
+++ extra-i686/PKGBUILD 2015-05-17 10:59:05 UTC (rev 239489)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Tobias Kieslich tobias funnychar archlinux.org
-# Contributor: Alois Nespor alois.nes...@gmail.com
-
-pkgname=xfburn
-pkgver=0.5.2
-pkgrel=2
-pkgdesc=A simple CD/DVD burning tool based on libburnia libraries
-arch=('i686' 'x86_64')
-url=http://goodies.xfce.org/projects/applications/xfburn;
-license=('GPL')
-depends=('libburn' 'libisofs' 'exo' 'gstreamer0.10-base' 'desktop-file-utils')
-makedepends=('intltool')
-groups=('xfce4-goodies')
-install=xfburn.install
-source=(http://archive.xfce.org/src/apps/xfburn/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('63682aab3c30c77e464b2b3b84606d1e1dcefc98e7042072fa09b729d6f84412')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---enable-gstreamer
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfburn/repos/extra-i686/PKGBUILD (from rev 239488, 
xfburn/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-17 10:59:05 UTC (rev 239489)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Tobias Kieslich tobias funnychar archlinux.org
+# Contributor: Alois Nespor alois.nes...@gmail.com
+
+pkgname=xfburn
+pkgver=0.5.4
+pkgrel=1
+pkgdesc=A simple CD/DVD burning tool based on libburnia libraries
+arch=('i686' 'x86_64')
+url=http://goodies.xfce.org/projects/applications/xfburn;
+license=('GPL')
+depends=('libburn' 'libisofs' 'gtk2' 'libxfce4ui' 'exo' 'gst-plugins-base-libs'
+ 'desktop-file-utils')
+makedepends=('intltool')
+groups=('xfce4-goodies')
+install=xfburn.install
+source=(http://archive.xfce.org/src/apps/xfburn/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('9a0053ff106ae475871a2bed328d5d7c5a2fc4280a24e956ca85b6a13a9fc1f6')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-gstreamer \
+--disable-debug
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/xfburn.install
===
--- extra-i686/xfburn.install   2015-05-17 10:58:54 UTC (rev 239488)
+++ extra-i686/xfburn.install   2015-05-17 10:59:05 UTC (rev 239489)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfburn/repos/extra-i686/xfburn.install (from rev 239488, 
xfburn/trunk/xfburn.install)
===
--- extra-i686/xfburn.install   (rev 0)
+++ extra-i686/xfburn.install   2015-05-17 10:59:05 UTC (rev 239489)
@@ -0,0 +1,14 @@
+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
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-05-17 10:58:54 UTC (rev 239488)
+++ extra-x86_64/PKGBUILD   2015-05-17 10:59:05 UTC (rev 239489)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Tobias Kieslich tobias funnychar archlinux.org
-# Contributor: Alois Nespor alois.nes...@gmail.com
-
-pkgname=xfburn
-pkgver=0.5.2
-pkgrel=2

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

2015-05-17 Thread Evangelos Foutras
Date: Sunday, May 17, 2015 @ 12:58:54
  Author: foutrelis
Revision: 239488

upgpkg: xfburn 0.5.4-1

New upstream release.

Modified:
  xfburn/trunk/PKGBUILD
  xfburn/trunk/xfburn.install

+
 PKGBUILD   |   12 +++-
 xfburn.install |2 +-
 2 files changed, 8 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 10:08:24 UTC (rev 239487)
+++ PKGBUILD2015-05-17 10:58:54 UTC (rev 239488)
@@ -4,18 +4,19 @@
 # Contributor: Alois Nespor alois.nes...@gmail.com
 
 pkgname=xfburn
-pkgver=0.5.2
-pkgrel=2
+pkgver=0.5.4
+pkgrel=1
 pkgdesc=A simple CD/DVD burning tool based on libburnia libraries
 arch=('i686' 'x86_64')
 url=http://goodies.xfce.org/projects/applications/xfburn;
 license=('GPL')
-depends=('libburn' 'libisofs' 'exo' 'gstreamer0.10-base' 'desktop-file-utils')
+depends=('libburn' 'libisofs' 'gtk2' 'libxfce4ui' 'exo' 'gst-plugins-base-libs'
+ 'desktop-file-utils')
 makedepends=('intltool')
 groups=('xfce4-goodies')
 install=xfburn.install
 
source=(http://archive.xfce.org/src/apps/xfburn/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('63682aab3c30c77e464b2b3b84606d1e1dcefc98e7042072fa09b729d6f84412')
+sha256sums=('9a0053ff106ae475871a2bed328d5d7c5a2fc4280a24e956ca85b6a13a9fc1f6')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -22,7 +23,8 @@
 
   ./configure \
 --prefix=/usr \
---enable-gstreamer
+--enable-gstreamer \
+--disable-debug
   make
 }
 

Modified: xfburn.install
===
--- xfburn.install  2015-05-17 10:08:24 UTC (rev 239487)
+++ xfburn.install  2015-05-17 10:58:54 UTC (rev 239488)
@@ -1,6 +1,6 @@
 post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
   update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
 }
 
 post_upgrade() {


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

2015-05-17 Thread Evangelos Foutras
Date: Sunday, May 17, 2015 @ 13:30:30
  Author: foutrelis
Revision: 239490

upgpkg: xfdesktop 4.12.2-1

New upstream release.

Modified:
  xfdesktop/trunk/PKGBUILD
Deleted:
  xfdesktop/trunk/git-fixes.patch

-+
 PKGBUILD|   15 ++---
 git-fixes.patch |   86 --
 2 files changed, 4 insertions(+), 97 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 10:59:05 UTC (rev 239489)
+++ PKGBUILD2015-05-17 11:30:30 UTC (rev 239490)
@@ -3,8 +3,8 @@
 # Contributor: tobias tobias funnychar archlinux.org
 
 pkgname=xfdesktop
-pkgver=4.12.1
-pkgrel=2
+pkgver=4.12.2
+pkgrel=1
 pkgdesc=A desktop manager for Xfce
 arch=('i686' 'x86_64')
 url=http://www.xfce.org/;
@@ -15,15 +15,11 @@
 conflicts=('xfce4-menueditor')
 replaces=('xfce4-menueditor')
 install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
-git-fixes.patch)
-sha256sums=('95beff25b20957ec7b7c617b2f3f77a90b8d334393cd7dc3c1c1efa30151a725'
-'546f39e89736c098629f50330310f1194b02fd07e6c068a6cf4f84c07e1e81a5')
+source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('c973163b57bac39d12e5f8310c869d176454879defb78b67f8e9f1ad5225')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver
-
-  patch -Np1 -i ../git-fixes.patch
 }
 
 build() {
@@ -32,9 +28,6 @@
   ./configure \
 --prefix=/usr \
 --sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
 --enable-gio-unix \
 --enable-thunarx \
 --enable-notifications \

Deleted: git-fixes.patch
===
--- git-fixes.patch 2015-05-17 10:59:05 UTC (rev 239489)
+++ git-fixes.patch 2015-05-17 11:30:30 UTC (rev 239490)
@@ -1,86 +0,0 @@
-From be464d06dc38cc068926e30d891318742410fc56 Mon Sep 17 00:00:00 2001
-From: Thaddaeus Tintenfisch thad.fi...@gmail.com
-Date: Tue, 17 Mar 2015 22:19:02 +0100
-Subject: [PATCH 1/2] Fix a previous commit
-
-This fixes commit 26bc8820e502f74b99648b213c28b681971e6ca6.

- src/xfdesktop-icon-view.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
-index de764df..1b8c64e 100644
 a/src/xfdesktop-icon-view.c
-+++ b/src/xfdesktop-icon-view.c
-@@ -43,6 +43,7 @@
- 
- #include xfdesktop-icon-view.h
- #include xfdesktop-file-icon-manager.h
-+#include xfdesktop-window-icon-manager.h
- #include xfdesktop-marshal.h
- #include xfce-desktop.h
- #include xfdesktop-volume-icon.h
-@@ -1716,7 +1717,7 @@ xfdesktop_icon_view_drag_data_get(GtkWidget *widget,
- 
- TRACE(entering);
- 
--if(XFDESKTOP_IS_ICON_VIEW_MANAGER(icon_view) == FALSE)
-+if(XFDESKTOP_IS_WINDOW_ICON_MANAGER(icon_view-priv-manager))
- return;
- 
- /* Sometimes during a ctrl+drag this is NULL
-@@ -1762,7 +1763,7 @@ xfdesktop_icon_view_drag_data_received(GtkWidget *widget,
- 
- GdkDragAction action = icon_view-priv-proposed_drop_action;
- 
--if(XFDESKTOP_IS_ICON_VIEW_MANAGER(icon_view)) {
-+if(!XFDESKTOP_IS_WINDOW_ICON_MANAGER(icon_view-priv-manager)) {
- action = 
xfdesktop_icon_view_manager_propose_drop_action(icon_view-priv-manager,
-  
icon_on_dest,
-  action,
--- 
-2.3.4
-
-
-From a6761e4a3429fd82bb0f0b98277660d689b3d2a4 Mon Sep 17 00:00:00 2001
-From: Thaddaeus Tintenfisch thad.fi...@gmail.com
-Date: Mon, 23 Mar 2015 22:11:58 +0100
-Subject: [PATCH 2/2] Fix a regression
-
-This fixes a visual glitch caused by commit d8b37e5.

- src/xfdesktop-icon-view.c | 7 ---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
-index 1b8c64e..ae3a1a0 100644
 a/src/xfdesktop-icon-view.c
-+++ b/src/xfdesktop-icon-view.c
-@@ -3057,13 +3057,13 @@ xfdesktop_icon_view_draw_image(cairo_t *cr, GdkPixbuf 
*pix, GdkRectangle *rect)
- 
- static void
- xfdesktop_icon_view_draw_text(cairo_t *cr, PangoLayout *playout, GdkRectangle 
*text_area,
--  gint x_offset, gint y_offset, gint blur_radius,
--  GdkColor *color)
-+  GdkRectangle *box_area, gint x_offset, gint 
y_offset,
-+  gint blur_radius, GdkColor *color)
- {
- cairo_save(cr);
- 
- /*  Clip the cairo area to blur the minimum surface */
--gdk_cairo_rectangle(cr, text_area);
-+gdk_cairo_rectangle(cr, box_area);
- cairo_clip(cr);
- 
- cairo_move_to(cr,
-@@ -3188,6 +3188,7 @@ xfdesktop_icon_view_paint_icon(XfdesktopIconView 
*icon_view,
- /* Draw the shadow */
- xfdesktop_icon_view_draw_text(cr, playout,

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

2015-05-17 Thread Evangelos Foutras
Date: Sunday, May 17, 2015 @ 13:30:44
  Author: foutrelis
Revision: 239493

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

Added:
  xfdesktop/repos/extra-i686/PKGBUILD
(from rev 239491, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-i686/xfdesktop.install
(from rev 239491, xfdesktop/trunk/xfdesktop.install)
  xfdesktop/repos/extra-x86_64/PKGBUILD
(from rev 239491, xfdesktop/trunk/PKGBUILD)
  xfdesktop/repos/extra-x86_64/xfdesktop.install
(from rev 239491, xfdesktop/trunk/xfdesktop.install)
Deleted:
  xfdesktop/repos/extra-i686/PKGBUILD
  xfdesktop/repos/extra-i686/git-fixes.patch
  xfdesktop/repos/extra-i686/xfdesktop.install
  xfdesktop/repos/extra-x86_64/PKGBUILD
  xfdesktop/repos/extra-x86_64/git-fixes.patch
  xfdesktop/repos/extra-x86_64/xfdesktop.install

+
 /PKGBUILD  |   86 +++
 /xfdesktop.install |   26 +++
 extra-i686/PKGBUILD|   50 --
 extra-i686/git-fixes.patch |   86 ---
 extra-i686/xfdesktop.install   |   13 -
 extra-x86_64/PKGBUILD  |   50 --
 extra-x86_64/git-fixes.patch   |   86 ---
 extra-x86_64/xfdesktop.install |   13 -
 8 files changed, 112 insertions(+), 298 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-17 11:30:42 UTC (rev 239492)
+++ extra-i686/PKGBUILD 2015-05-17 11:30:44 UTC (rev 239493)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: tobias tobias funnychar archlinux.org
-
-pkgname=xfdesktop
-pkgver=4.12.1
-pkgrel=2
-pkgdesc=A desktop manager for Xfce
-arch=('i686' 'x86_64')
-url=http://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar' 'garcon' 'hicolor-icon-theme' 'libwnck')
-makedepends=('intltool')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-install=xfdesktop.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
-git-fixes.patch)
-sha256sums=('95beff25b20957ec7b7c617b2f3f77a90b8d334393cd7dc3c1c1efa30151a725'
-'546f39e89736c098629f50330310f1194b02fd07e6c068a6cf4f84c07e1e81a5')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  patch -Np1 -i ../git-fixes.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---enable-gio-unix \
---enable-thunarx \
---enable-notifications \
---disable-debug
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfdesktop/repos/extra-i686/PKGBUILD (from rev 239491, 
xfdesktop/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-17 11:30:44 UTC (rev 239493)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: tobias tobias funnychar archlinux.org
+
+pkgname=xfdesktop
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=A desktop manager for Xfce
+arch=('i686' 'x86_64')
+url=http://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar' 'garcon' 'hicolor-icon-theme' 'libwnck')
+makedepends=('intltool')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+install=xfdesktop.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('c973163b57bac39d12e5f8310c869d176454879defb78b67f8e9f1ad5225')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-gio-unix \
+--enable-thunarx \
+--enable-notifications \
+--disable-debug
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/git-fixes.patch
===
--- extra-i686/git-fixes.patch  2015-05-17 11:30:42 UTC (rev 239492)
+++ extra-i686/git-fixes.patch  2015-05-17 11:30:44 UTC (rev 239493)
@@ -1,86 +0,0 @@
-From be464d06dc38cc068926e30d891318742410fc56 Mon Sep 17 00:00:00 2001
-From: Thaddaeus Tintenfisch thad.fi...@gmail.com
-Date: Tue, 17 Mar 2015 22:19:02 +0100
-Subject: [PATCH 1/2] Fix a previous commit
-
-This fixes commit 26bc8820e502f74b99648b213c28b681971e6ca6.

- src/xfdesktop-icon-view.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
-index de764df..1b8c64e 100644
 a/src/xfdesktop-icon-view.c
-+++ b/src/xfdesktop-icon-view.c
-@@ -43,6 +43,7 

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

2015-05-17 Thread Evangelos Foutras
Date: Sunday, May 17, 2015 @ 13:30:31
  Author: foutrelis
Revision: 239491

upgpkg: thunar 1.6.9-1

New upstream release.

Modified:
  thunar/trunk/PKGBUILD
  thunar/trunk/thunar.install

+
 PKGBUILD   |   16 
 thunar.install |2 +-
 2 files changed, 5 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 11:30:30 UTC (rev 239490)
+++ PKGBUILD2015-05-17 11:30:31 UTC (rev 239491)
@@ -3,7 +3,7 @@
 # Contributor: Andrew Simmons andrew.simm...@gmail.com
 
 pkgname=thunar
-pkgver=1.6.8
+pkgver=1.6.9
 pkgrel=1
 pkgdesc=Modern file manager for Xfce
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 groups=('xfce4')
 depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
  'udev' 'gtk2' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
-makedepends=('intltool' 'gtk-doc' 'xfce4-panel')
+makedepends=('intltool' 'xfce4-panel')
 optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
 'xfce4-panel: for trash applet'
 'tumbler: for thumbnail previews'
@@ -21,7 +21,7 @@
 'thunar-media-tags-plugin: view/edit id3/ogg tags')
 install=$pkgname.install
 
source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2)
-sha256sums=('4079ccffe990cdccee48a0ae200d8a5bc9335c34721d7923b375795940cf79bb')
+sha256sums=('75f3622cbe6ab6837f38d856faeac75a1191be8a08dc4c98ba35b61e312b94e5')
 
 prepare() {
   cd $srcdir/Thunar-$pkgver
@@ -33,17 +33,12 @@
   ./configure \
 --prefix=/usr \
 --sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
 --enable-gio-unix \
 --enable-dbus \
---enable-startup-notification \
 --enable-gudev \
 --enable-notifications \
 --enable-exif \
 --enable-pcre \
---enable-gtk-doc \
 --disable-debug
   make
 }
@@ -50,10 +45,7 @@
 
 package() {
   cd $srcdir/Thunar-$pkgver
-
-  make DESTDIR=${pkgdir} install
-  sed -i 's:x-directory/gnome-default-handler;::' \
-$pkgdir/usr/share/applications/Thunar-folder-handler.desktop
+  make DESTDIR=$pkgdir install
 }
 
 # vim:set ts=2 sw=2 et:

Modified: thunar.install
===
--- thunar.install  2015-05-17 11:30:30 UTC (rev 239490)
+++ thunar.install  2015-05-17 11:30:31 UTC (rev 239491)
@@ -1,6 +1,6 @@
 post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
   update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
 }
 
 post_upgrade() {


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

2015-05-17 Thread Evangelos Foutras
Date: Sunday, May 17, 2015 @ 13:30:42
  Author: foutrelis
Revision: 239492

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

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

-+
 /PKGBUILD   |  102 ++
 /thunar.install |   28 +++
 extra-i686/PKGBUILD |   59 
 extra-i686/thunar.install   |   14 -
 extra-x86_64/PKGBUILD   |   59 
 extra-x86_64/thunar.install |   14 -
 6 files changed, 130 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-17 11:30:31 UTC (rev 239491)
+++ extra-i686/PKGBUILD 2015-05-17 11:30:42 UTC (rev 239492)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Andrew Simmons andrew.simm...@gmail.com
-
-pkgname=thunar
-pkgver=1.6.8
-pkgrel=1
-pkgdesc=Modern file manager for Xfce
-arch=('i686' 'x86_64')
-url=http://thunar.xfce.org;
-license=('GPL2' 'LGPL2.1')
-groups=('xfce4')
-depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
- 'udev' 'gtk2' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
-makedepends=('intltool' 'gtk-doc' 'xfce4-panel')
-optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
-'xfce4-panel: for trash applet'
-'tumbler: for thumbnail previews'
-'thunar-volman: manages removable devices'
-'thunar-archive-plugin: create and deflate archives'
-'thunar-media-tags-plugin: view/edit id3/ogg tags')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2)
-sha256sums=('4079ccffe990cdccee48a0ae200d8a5bc9335c34721d7923b375795940cf79bb')
-
-prepare() {
-  cd $srcdir/Thunar-$pkgver
-}
-
-build() {
-  cd $srcdir/Thunar-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---enable-gio-unix \
---enable-dbus \
---enable-startup-notification \
---enable-gudev \
---enable-notifications \
---enable-exif \
---enable-pcre \
---enable-gtk-doc \
---disable-debug
-  make
-}
-
-package() {
-  cd $srcdir/Thunar-$pkgver
-
-  make DESTDIR=${pkgdir} install
-  sed -i 's:x-directory/gnome-default-handler;::' \
-$pkgdir/usr/share/applications/Thunar-folder-handler.desktop
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thunar/repos/extra-i686/PKGBUILD (from rev 239491, 
thunar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-17 11:30:42 UTC (rev 239492)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Andrew Simmons andrew.simm...@gmail.com
+
+pkgname=thunar
+pkgver=1.6.9
+pkgrel=1
+pkgdesc=Modern file manager for Xfce
+arch=('i686' 'x86_64')
+url=http://thunar.xfce.org;
+license=('GPL2' 'LGPL2.1')
+groups=('xfce4')
+depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
+ 'udev' 'gtk2' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
+makedepends=('intltool' 'xfce4-panel')
+optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
+'xfce4-panel: for trash applet'
+'tumbler: for thumbnail previews'
+'thunar-volman: manages removable devices'
+'thunar-archive-plugin: create and deflate archives'
+'thunar-media-tags-plugin: view/edit id3/ogg tags')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/Thunar-$pkgver.tar.bz2)
+sha256sums=('75f3622cbe6ab6837f38d856faeac75a1191be8a08dc4c98ba35b61e312b94e5')
+
+prepare() {
+  cd $srcdir/Thunar-$pkgver
+}
+
+build() {
+  cd $srcdir/Thunar-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-gio-unix \
+--enable-dbus \
+--enable-gudev \
+--enable-notifications \
+--enable-exif \
+--enable-pcre \
+--disable-debug
+  make
+}
+
+package() {
+  cd $srcdir/Thunar-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/thunar.install
===
--- extra-i686/thunar.install   2015-05-17 11:30:31 UTC (rev 239491)
+++ 

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

2015-05-17 Thread Kyle Keen
Date: Sunday, May 17, 2015 @ 13:45:27
  Author: kkeen
Revision: 133648

upgpkg: bladerf 1.2.1-1

Modified:
  bladerf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 10:53:09 UTC (rev 133647)
+++ PKGBUILD2015-05-17 11:45:27 UTC (rev 133648)
@@ -1,11 +1,16 @@
 # $Id$
 # Maintainer: Kyle Keen keen...@gmail.com
 # Contributor: Dominik Heidler dheid...@gmail.com
+
+# it looks like the release model has gotten better
+# keeping it more modular for now though
+
 pkgname=bladerf
-pkgver=0.16.2
-_CLIver=0.11.1
-_FPGAver=0.0.6
-_firmver=1.7.0
+_libver=1.2.1
+_CLIver=1.1.2
+_FPGAver=0.1.2
+_firmver=1.8.0
+pkgver=$_libver
 pkgrel=1
 pkgdesc=Driver, userspace, fpga  firmware for the bladeRF SDR.
 url=https://github.com/Nuand/bladeRF;
@@ -12,24 +17,24 @@
 arch=('i686' 'x86_64')
 license=('GPL2')
 depends=('libusb')
-makedepends=('cmake' 'help2man')
+makedepends=('cmake' 'help2man' 'doxygen')
 #backup=(etc/bladerf.cfg)
 
 source=(
-https://github.com/Nuand/bladeRF/archive/libbladeRF_v$pkgver.tar.gz;
+https://github.com/Nuand/bladeRF/archive/libbladeRF_v$_libver.tar.gz;
 http://nuand.com/fpga/v$_FPGAver/hostedx40.rbf;
 http://nuand.com/fpga/v$_FPGAver/hostedx115.rbf;
 http://www.nuand.com/fx3/bladeRF_fw_v$_firmver.img;)
 
-md5sums=('d77c86cf6ba5b253591a59eacf24072c'
- '85b91b0caeb64750e8d0ca8dd3358992'
- 'eb91ecda1d1203750f0f2b9859c9c20f'
- '73ace21e693049e475cceb88bed900d7')
+md5sums=('1f646520c6a8dde87c19fe6d5b25abf8'
+ 'ff681baa275d3f01af3d864e737a23ae'
+ '899da656cfb73789febe515b9d82f67e'
+ '374011a23258b9245ec9ed78bdfba4c1')
 
 # bladeRF-cli can use libtecla (aur)?
 
 build() {
-  cd $srcdir/bladeRF-libbladeRF_v$pkgver
+  cd $srcdir/bladeRF-libbladeRF_v$_libver
   mkdir -p build
   cd build
   cmake \
@@ -45,7 +50,7 @@
 }
 
 package() {
-  cd $srcdir/bladeRF-libbladeRF_v$pkgver/build
+  cd $srcdir/bladeRF-libbladeRF_v$_libver/build
   make DESTDIR=${pkgdir} install
   cd $srcdir
   install -Dm644 bladeRF_fw_v$_firmver.img 
$pkgdir/usr/share/bladerf/firmware/bladeRF_fw_v$_firmver.img


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

2015-05-17 Thread Kyle Keen
Date: Sunday, May 17, 2015 @ 13:50:36
  Author: kkeen
Revision: 133650

upgpkg: gnuradio-osmosdr 0.1.4-5

Modified:
  gnuradio-osmosdr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 11:45:52 UTC (rev 133649)
+++ PKGBUILD2015-05-17 11:50:36 UTC (rev 133650)
@@ -4,7 +4,7 @@
 pkgname=gnuradio-osmosdr
 _pkgname=gr-osmosdr
 pkgver=0.1.4
-pkgrel=4
+pkgrel=5
 pkgdesc=Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices
 url=http://sdr.osmocom.org/trac/;
 arch=('i686' 'x86_64')


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

2015-05-17 Thread Sergej Pupykin
Date: Sunday, May 17, 2015 @ 11:58:28
  Author: spupykin
Revision: 133641

archrelease: copy trunk to community-any

Added:
  bugzilla/repos/community-any/PKGBUILD
(from rev 133640, bugzilla/trunk/PKGBUILD)
Deleted:
  bugzilla/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 -
 1 file changed, 47 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-17 09:58:14 UTC (rev 133640)
+++ PKGBUILD2015-05-17 09:58:28 UTC (rev 133641)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=bugzilla
-pkgver=4.4.8
-pkgrel=1
-pkgdesc=bug tracker
-arch=('any')
-url=http://www.bugzilla.org;
-license=(GPL)
-depends=(perl perl-timedate perl-datetime
-perl-chart perl-email-abstract perl-email-address 
perl-email-date-format
-perl-email-messageid perl-email-mime 
perl-email-mime-attachment-stripper
-perl-email-mime-contenttype perl-email-mime-encodings
-perl-email-mime-modifier perl-email-mime-creator perl-email-reply 
perl-email-send perl-email-simple
-perl-email-simple-creator perl-gd perl-gdgraph perl-gdtextutil 
perl-patchreader
-perl-return-value perl-template-gd perl-ldap perl-soap-lite 
perl-authen-sasl
-perl-xml-twig perl-html-scrubber perl-authen-radius 
perl-template-toolkit
-perl-data-dumper perl-math-random-isaac)
-optdepends=('mod_perl'
-   'perl-dbd-pg'
-   'perl-dbd-mysql'
-   'perl-dbd-oracle'
-   'python2'
-   'ruby')
-options=(!strip)
-backup=('srv/http/bugzilla/.htaccess')
-source=(http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-$pkgver.tar.gz)
-md5sums=('86aed922fc99aee0498f864f18d9be96')
-
-package() {
-  cd $srcdir
-  install -d -m0755 $pkgdir/srv/http
-  find $pkgname-$pkgver -type d -name CVS -exec rm -rf {} \; || true
-  find $pkgname-$pkgver -type f -name .cvsignore -exec rm -f {} \; || true
-  cp -a $pkgname-$pkgver $pkgdir/srv/http/bugzilla
-  rm -rf $pkgdir/srv/http/bugzilla/.bzr
-  rm -rf $pkgdir/srv/http/bugzilla/.bzrrev
-  rm -rf $pkgdir/srv/http/bugzilla/.bzrignore
-}

Copied: bugzilla/repos/community-any/PKGBUILD (from rev 133640, 
bugzilla/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-17 09:58:28 UTC (rev 133641)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=bugzilla
+pkgver=4.4.9
+pkgrel=1
+pkgdesc=bug tracker
+arch=('any')
+url=http://www.bugzilla.org;
+license=(GPL)
+depends=(perl perl-timedate perl-datetime
+perl-chart perl-email-abstract perl-email-address 
perl-email-date-format
+perl-email-messageid perl-email-mime 
perl-email-mime-attachment-stripper
+perl-email-mime-contenttype perl-email-mime-encodings
+perl-email-mime-modifier perl-email-mime-creator perl-email-reply 
perl-email-send perl-email-simple
+perl-email-simple-creator perl-gd perl-gdgraph perl-gdtextutil 
perl-patchreader
+perl-return-value perl-template-gd perl-ldap perl-soap-lite 
perl-authen-sasl
+perl-xml-twig perl-html-scrubber perl-authen-radius 
perl-template-toolkit
+perl-data-dumper perl-math-random-isaac)
+optdepends=('mod_perl'
+   'perl-dbd-pg'
+   'perl-dbd-mysql'
+   'perl-dbd-oracle'
+   'python2'
+   'ruby'
+   'perl-class-trigger'
+   'perl-data-objectdriver'
+   'perl-html-formattext-withlinks'
+   'perl-test-taint'
+   'perl-theschwartz'
+   'perl-xmlrpc-lite')
+options=(!strip)
+backup=('srv/http/bugzilla/.htaccess')
+source=(http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-$pkgver.tar.gz)
+md5sums=('fecfe536bbb60194e30232c0616ffa17')
+
+package() {
+  cd $srcdir
+  install -d -m0755 $pkgdir/srv/http
+  find $pkgname-$pkgver -type d -name CVS -exec rm -rf {} \; || true
+  find $pkgname-$pkgver -type f -name .cvsignore -exec rm -f {} \; || true
+  cp -a $pkgname-$pkgver $pkgdir/srv/http/bugzilla
+  rm -rf $pkgdir/srv/http/bugzilla/.bzr
+  rm -rf $pkgdir/srv/http/bugzilla/.bzrrev
+  rm -rf $pkgdir/srv/http/bugzilla/.bzrignore
+}


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

2015-05-17 Thread Sergej Pupykin
Date: Sunday, May 17, 2015 @ 11:58:14
  Author: spupykin
Revision: 133640

upgpkg: bugzilla 4.4.9-1

upd

Modified:
  bugzilla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 07:42:52 UTC (rev 133639)
+++ PKGBUILD2015-05-17 09:58:14 UTC (rev 133640)
@@ -3,7 +3,7 @@
 # Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=bugzilla
-pkgver=4.4.8
+pkgver=4.4.9
 pkgrel=1
 pkgdesc=bug tracker
 arch=('any')
@@ -33,7 +33,7 @@
 options=(!strip)
 backup=('srv/http/bugzilla/.htaccess')
 
source=(http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-$pkgver.tar.gz)
-md5sums=('86aed922fc99aee0498f864f18d9be96')
+md5sums=('fecfe536bbb60194e30232c0616ffa17')
 
 package() {
   cd $srcdir


[arch-commits] Commit in file-roller/trunk (PKGBUILD rar1.patch rar2.patch)

2015-05-17 Thread Jan Steffens
Date: Sunday, May 17, 2015 @ 12:06:23
  Author: heftig
Revision: 239484

Improve optdeps, zip support and FS#42665 FS#44639 rar support

Added:
  file-roller/trunk/rar1.patch
  file-roller/trunk/rar2.patch
Modified:
  file-roller/trunk/PKGBUILD

+
 PKGBUILD   |   24 ++--
 rar1.patch |   47 +++
 rar2.patch |   22 ++
 3 files changed, 87 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 08:46:26 UTC (rev 239483)
+++ PKGBUILD2015-05-17 10:06:23 UTC (rev 239484)
@@ -4,21 +4,33 @@
 
 pkgname=file-roller
 pkgver=3.16.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Create and modify archives
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'dconf' 'libarchive' 
'file' 'json-glib' 'libnotify' 'p7zip')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'dconf' 'libarchive' 
'file' 'json-glib' 'libnotify' 'p7zip'
+ 'zip' 'unzip')
 makedepends=('intltool' 'pkg-config' 'libnautilus-extension' 'itstool' 
'docbook-xsl')
-optdepends=('lrzip: lrzip archive support'
-'unace: extraction tool for the proprietary ace archive format')
+optdepends=('unrar: better RAR archive support'
+'unace: ACE archive support'
+'lrzip: lrzip archive support'
+'cdrkit: ISO image support')
 groups=('gnome-extra')
 options=('!emptydirs')
 install=file-roller.install
 url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('60897ff24d4822395a227b62811c3b8768b701844961e93303d6d6d9463d7e3f')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+rar1.patch rar2.patch)
+sha256sums=('60897ff24d4822395a227b62811c3b8768b701844961e93303d6d6d9463d7e3f'
+'020a2debda885afc5748ebc3620ec9c9320f21d9caad631c8d79216b38f96d56'
+'d92da92d64c8c35c19c17b19a7bdfe6d0a00fae28207d1681dec707e8e8dc9f9')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../rar1.patch
+  patch -Np1 -i ../rar2.patch
+}
+
 build() {
   cd $pkgname-$pkgver
 

Added: rar1.patch
===
--- rar1.patch  (rev 0)
+++ rar1.patch  2015-05-17 10:06:23 UTC (rev 239484)
@@ -0,0 +1,47 @@
+From 160fd2dab3977fa9fdf727cb74e6a23b8fc9d20b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= ballog...@gmail.com
+Date: Thu, 16 Apr 2015 10:34:57 +0200
+Subject: Give priority to rar and unrar that supports RAR files better
+
+rar and unrar supports the RAR5 archive format, while libarchive and p7zip not.
+
+diff --git a/src/fr-archive-libarchive.c b/src/fr-archive-libarchive.c
+index 9674098..2b70528 100644
+--- a/src/fr-archive-libarchive.c
 b/src/fr-archive-libarchive.c
+@@ -137,6 +137,16 @@ fr_archive_libarchive_get_capabilities (FrArchive  
*archive,
+   return capabilities;
+   }
+ 
++  /* give priority to rar and unrar that supports RAR files better. */
++  if ((strcmp (mime_type, application/x-rar) == 0)
++  || (strcmp (mime_type, application/x-cbr) == 0))
++  {
++  if (_g_program_is_available (rar, check_command)
++  || _g_program_is_available (unrar, check_command)) {
++  return capabilities;
++  }
++  }
++
+   /* tar.lrz format requires external lrzip */
+   if (strcmp (mime_type, application/x-lrzip-compressed-tar) == 0) {
+   if (!_g_program_is_available (lrzip, check_command))
+diff --git a/src/fr-command-7z.c b/src/fr-command-7z.c
+index e6e8258..62a8fbe 100644
+--- a/src/fr-command-7z.c
 b/src/fr-command-7z.c
+@@ -616,7 +616,10 @@ fr_command_7z_get_capabilities (FrArchive  *archive,
+   if (_g_mime_type_matches (mime_type, application/x-rar)
+   || _g_mime_type_matches (mime_type, application/x-cbr))
+   {
+-  if (! check_command || g_file_test 
(/usr/lib/p7zip/Codecs/Rar29.so, G_FILE_TEST_EXISTS))
++  /* give priority to rar and unrar that supports RAR 
files better. */
++  if (!_g_program_is_available (rar, check_command)
++   !_g_program_is_available (unrar, check_command)
++   g_file_test (/usr/lib/p7zip/Codecs/Rar29.so, 
G_FILE_TEST_EXISTS))
+   capabilities |= FR_ARCHIVE_CAN_READ;
+   }
+   else
+-- 
+cgit v0.10.2
+

Added: rar2.patch
===
--- rar2.patch  (rev 0)
+++ rar2.patch  2015-05-17 10:06:23 UTC (rev 239484)
@@ -0,0 +1,22 @@
+From f243fe19623b69ae628ae55cd2eabb8182fcfcef Mon Sep 17 00:00:00 2001
+From: Paolo Bacchilega 

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

2015-05-17 Thread Jan Steffens
Date: Sunday, May 17, 2015 @ 12:06:39
  Author: heftig
Revision: 239485

1.23

Modified:
  gtk-doc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 10:06:23 UTC (rev 239484)
+++ PKGBUILD2015-05-17 10:06:39 UTC (rev 239485)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gtk-doc
-pkgver=1.22
+pkgver=1.23
 pkgrel=1
 pkgdesc=Documentation tool for public library API
 arch=('any')
@@ -13,7 +13,7 @@
 'dblatex: PDF support')
 url=http://www.gtk.org/gtk-doc/;
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('932865c912ce0d81c9480bf957d3908bae6e18c0cf2ee33014d63b920047fca8')
+sha256sums=('0b5c23711166c10ff5c74603db80ac26c2b9a382ce778b0e795db821d50718c4')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}


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

2015-05-17 Thread Sergej Pupykin
Date: Sunday, May 17, 2015 @ 12:13:46
  Author: spupykin
Revision: 133643

archrelease: copy trunk to community-any

Added:
  owncloud/repos/community-any/PKGBUILD
(from rev 133642, owncloud/trunk/PKGBUILD)
  owncloud/repos/community-any/apache.example.conf
(from rev 133642, owncloud/trunk/apache.example.conf)
Deleted:
  owncloud/repos/community-any/PKGBUILD
  owncloud/repos/community-any/apache.example.conf

-+
 PKGBUILD|  194 +-
 apache.example.conf |   36 -
 2 files changed, 117 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-17 10:13:39 UTC (rev 133642)
+++ PKGBUILD2015-05-17 10:13:46 UTC (rev 133643)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Antonio Rojas nqn1976 @ gmail.com
-# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
-
-pkgname=owncloud
-pkgver=8.0.3
-pkgrel=3
-pkgdesc=A cloud server to store your files centrally on a hardware controlled 
by you
-arch=('any')
-url=http://owncloud.org/;
-license=('GPL')
-depends=('php-gd')
-optdepends=('php-apache: to use the Apache web server'
-   'php-sqlite: to use the SQLite database backend'
-   'php-pgsql: to use the PostgreSQL database backend'
-   'php-ldap: LDAP authentication'
-   'php-intl'
-   'php-apcu'
-   'php-xcache'
-   'mariadb: to use the MySQL database backend'
-   'smbclient: to mount SAMBA shares'
-   'php-mcrypt'
-#  'php-imagick: file preview'
-   'ffmpeg: file preview'
-   'libreoffice: file preview')
-makedepends=()
-options=('!strip')
-backup=('etc/webapps/owncloud/apache.example.conf')
-validpgpkeys=('E3036906AD9F30807351FAC32D5D5E97F6978A26')
-#source=(http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2{,.asc}
-source=($pkgname-$pkgver.tar.gz::https://github.com/owncloud/core/archive/v$pkgver.tar.gz;
-   
$pkgname-3rdparty-$pkgver.tar.gz::https://github.com/owncloud/3rdparty/archive/v$pkgver.tar.gz;
-   
$pkgname-apps-$pkgver.tar.gz::https://github.com/owncloud/apps/archive/v$pkgver.tar.gz;
-   
$pkgname-updater-$pkgver.tar.gz::https://github.com/owncloud/updater/archive/v$pkgver.tar.gz;
-   
$pkgname-templateeditor-$pkgver.tar.gz::https://github.com/owncloud/templateeditor/archive/v$pkgver.tar.gz;
-   
$pkgname-firstrunwizard-$pkgver.tar.gz::https://github.com/owncloud/firstrunwizard/archive/v$pkgver.tar.gz;
-   
$pkgname-files_texteditor-$pkgver.tar.gz::https://github.com/owncloud/files_texteditor/archive/v$pkgver.tar.gz;
-   
$pkgname-files_locking-$pkgver.tar.gz::https://github.com/owncloud/files_locking/archive/v$pkgver.tar.gz;
-   
$pkgname-files_pdfviewer-$pkgver.tar.gz::https://github.com/owncloud/files_pdfviewer/archive/v$pkgver.tar.gz;
-   'apache.example.conf')
-md5sums=('db1827324136469067191ea31c167da5'
- '3cf86b2a131e42ebd7e324228be1920a'
- 'a7880aab5930314f378357c5d6abfe81'
- '130cef30d2c79020180cc11ac82960d7'
- '5a4360af1cf3ec8ed4ea00709f0ccdc2'
- 'aa760ca8cb34f0bd7aaf2d70ff93ba1d'
- 'de0787438cfd32de7a141eb27caa9f58'
- 'd47ef71e3896ece0852bb13472f3b729'
- '0d51764343cb12c71cfa3b921ff17e38'
- '64c6edf88bcbb37d063e4bf77b39237f')
-
-prepare() {
-  cd $srcdir/core-$pkgver
-  sed -i s|'appstoreenabled'.*|'appstoreenabled' = false,| 
config/config.sample.php
-  rm -rf $srcdir/core-$pkgver/3rdparty
-  mv $srcdir/3rdparty-$pkgver $srcdir/core-$pkgver/3rdparty
-  mv $srcdir/apps-$pkgver/* $srcdir/core-$pkgver/apps
-  for i in files_locking files_pdfviewer files_texteditor firstrunwizard \
-   templateeditor updater; do
-mv $srcdir/$i-$pkgver $srcdir/core-$pkgver/apps/$i
-  done
-  find . -type f -name .gitattributes -delete
-  find . -type f -name .gitkeep -delete
-  find . -type f -name .gitignore -delete
-  find . -type f -name .gitmodules -delete
-  find . -type f -name .travis.yml -delete
-  find . -type d -name .git -exec rm -rf {} \;
-}
-
-package() {
-  # install license
-  install -d ${pkgdir}/usr/share/licenses/${pkgname}
-  cp ${srcdir}/core-$pkgver/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
-
-  # install project
-  install -d ${pkgdir}/usr/share/webapps/
-  cp -a ${srcdir}/core-$pkgver ${pkgdir}/usr/share/webapps/${pkgname}
-  rm -rf ${pkgdir}/usr/share/webapps/${pkgname}/tests
-
-  # install apache config file
-  install -d  ${pkgdir}/etc/webapps/${pkgname}
-  install -m 644 ${srcdir}/apache.example.conf  
${pkgdir}/etc/webapps/${pkgname}
-
-  # move config to /etc
-  mv ${pkgdir}/usr/share/webapps/owncloud/config 
${pkgdir}/etc/webapps/${pkgname}/config
-  chown -R http:http ${pkgdir}/etc/webapps/${pkgname}
-  ln -s /etc/webapps/${pkgname}/config 
${pkgdir}/usr/share/webapps/owncloud/config
-  chown -R root:http 

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

2015-05-17 Thread Sergej Pupykin
Date: Sunday, May 17, 2015 @ 12:20:26
  Author: spupykin
Revision: 133645

archrelease: copy trunk to community-any

Added:
  owncloud/repos/community-any/PKGBUILD
(from rev 133644, owncloud/trunk/PKGBUILD)
  owncloud/repos/community-any/apache.example.conf
(from rev 133644, owncloud/trunk/apache.example.conf)
Deleted:
  owncloud/repos/community-any/PKGBUILD
  owncloud/repos/community-any/apache.example.conf

-+
 PKGBUILD|  196 --
 apache.example.conf |   36 -
 2 files changed, 115 insertions(+), 117 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-17 10:20:18 UTC (rev 133644)
+++ PKGBUILD2015-05-17 10:20:26 UTC (rev 133645)
@@ -1,99 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Antonio Rojas nqn1976 @ gmail.com
-# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
-
-pkgname=owncloud
-pkgver=8.0.3
-pkgrel=4
-pkgdesc=A cloud server to store your files centrally on a hardware controlled 
by you
-arch=('any')
-url=http://owncloud.org/;
-license=('GPL')
-depends=('php-gd')
-optdepends=('php-apache: to use the Apache web server'
-   'php-sqlite: to use the SQLite database backend'
-   'php-pgsql: to use the PostgreSQL database backend'
-   'php-ldap: LDAP authentication'
-   'php-intl'
-   'php-apcu'
-   'php-xcache'
-   'mariadb: to use the MySQL database backend'
-   'smbclient: to mount SAMBA shares'
-   'php-mcrypt'
-#  'php-imagick: file preview'
-   'ffmpeg: file preview'
-   'libreoffice: file preview')
-makedepends=()
-options=('!strip')
-backup=('etc/webapps/owncloud/apache.example.conf')
-validpgpkeys=('E3036906AD9F30807351FAC32D5D5E97F6978A26')
-#source=(http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2{,.asc}
-source=($pkgname-$pkgver.tar.gz::https://github.com/owncloud/core/archive/v$pkgver.tar.gz;
-   
$pkgname-3rdparty-$pkgver.tar.gz::https://github.com/owncloud/3rdparty/archive/v$pkgver.tar.gz;
-   
$pkgname-apps-$pkgver.tar.gz::https://github.com/owncloud/apps/archive/v$pkgver.tar.gz;
-   
$pkgname-updater-$pkgver.tar.gz::https://github.com/owncloud/updater/archive/v$pkgver.tar.gz;
-   
$pkgname-templateeditor-$pkgver.tar.gz::https://github.com/owncloud/templateeditor/archive/v$pkgver.tar.gz;
-   
$pkgname-firstrunwizard-$pkgver.tar.gz::https://github.com/owncloud/firstrunwizard/archive/v$pkgver.tar.gz;
-   
$pkgname-files_texteditor-$pkgver.tar.gz::https://github.com/owncloud/files_texteditor/archive/v$pkgver.tar.gz;
-   
$pkgname-files_locking-$pkgver.tar.gz::https://github.com/owncloud/files_locking/archive/v$pkgver.tar.gz;
-   
$pkgname-files_pdfviewer-$pkgver.tar.gz::https://github.com/owncloud/files_pdfviewer/archive/v$pkgver.tar.gz;
-   
$pkgname-activity-$pkgver.tar.gz::https://github.com/owncloud/activity/archive/v$pkgver.tar.gz;
-   
$pkgname-documents-$pkgver.tar.gz::https://github.com/owncloud/documents/archive/v$pkgver.tar.gz;
-   'apache.example.conf')
-md5sums=('db1827324136469067191ea31c167da5'
- '3cf86b2a131e42ebd7e324228be1920a'
- 'a7880aab5930314f378357c5d6abfe81'
- '130cef30d2c79020180cc11ac82960d7'
- '5a4360af1cf3ec8ed4ea00709f0ccdc2'
- 'aa760ca8cb34f0bd7aaf2d70ff93ba1d'
- 'de0787438cfd32de7a141eb27caa9f58'
- 'd47ef71e3896ece0852bb13472f3b729'
- '0d51764343cb12c71cfa3b921ff17e38'
- '6e874be429d9509ab523065d53cce69e'
- 'aa06679ec073d12492753f1e6fa47bca'
- '64c6edf88bcbb37d063e4bf77b39237f')
-
-prepare() {
-  cd $srcdir/core-$pkgver
-  sed -i s|'appstoreenabled'.*|'appstoreenabled' = false,| 
config/config.sample.php
-  rm -rf $srcdir/core-$pkgver/3rdparty
-  mv $srcdir/3rdparty-$pkgver $srcdir/core-$pkgver/3rdparty
-  mv $srcdir/apps-$pkgver/* $srcdir/core-$pkgver/apps
-  for i in files_locking files_pdfviewer files_texteditor firstrunwizard \
-   templateeditor updater activity documents; do
-mv $srcdir/$i-$pkgver $srcdir/core-$pkgver/apps/$i
-  done
-  find . -type f -name .gitattributes -delete
-  find . -type f -name .gitkeep -delete
-  find . -type f -name .gitignore -delete
-  find . -type f -name .gitmodules -delete
-  find . -type f -name .travis.yml -delete
-  find . -type d -name .git -exec rm -rf {} \;
-}
-
-package() {
-  # install license
-  install -d ${pkgdir}/usr/share/licenses/${pkgname}
-  cp ${srcdir}/core-$pkgver/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
-
-  # install project
-  install -d ${pkgdir}/usr/share/webapps/
-  cp -a ${srcdir}/core-$pkgver ${pkgdir}/usr/share/webapps/${pkgname}
-  rm -rf ${pkgdir}/usr/share/webapps/${pkgname}/tests
-
-  # install apache config file
-  install -d  ${pkgdir}/etc/webapps/${pkgname}
-  install -m 644 ${srcdir}/apache.example.conf  

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

2015-05-17 Thread Sergej Pupykin
Date: Sunday, May 17, 2015 @ 12:20:18
  Author: spupykin
Revision: 133644

upgpkg: owncloud 8.0.3-4

upd

Modified:
  owncloud/trunk/PKGBUILD

--+
 PKGBUILD |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 10:13:46 UTC (rev 133643)
+++ PKGBUILD2015-05-17 10:20:18 UTC (rev 133644)
@@ -39,7 +39,6 @@

$pkgname-files_locking-$pkgver.tar.gz::https://github.com/owncloud/files_locking/archive/v$pkgver.tar.gz;

$pkgname-files_pdfviewer-$pkgver.tar.gz::https://github.com/owncloud/files_pdfviewer/archive/v$pkgver.tar.gz;

$pkgname-activity-$pkgver.tar.gz::https://github.com/owncloud/activity/archive/v$pkgver.tar.gz;
-   
$pkgname-documents-$pkgver.tar.gz::https://github.com/owncloud/documents/archive/v$pkgver.tar.gz;
'apache.example.conf')
 md5sums=('db1827324136469067191ea31c167da5'
  '3cf86b2a131e42ebd7e324228be1920a'
@@ -51,7 +50,6 @@
  'd47ef71e3896ece0852bb13472f3b729'
  '0d51764343cb12c71cfa3b921ff17e38'
  '6e874be429d9509ab523065d53cce69e'
- 'aa06679ec073d12492753f1e6fa47bca'
  '64c6edf88bcbb37d063e4bf77b39237f')
 
 prepare() {
@@ -61,7 +59,7 @@
   mv $srcdir/3rdparty-$pkgver $srcdir/core-$pkgver/3rdparty
   mv $srcdir/apps-$pkgver/* $srcdir/core-$pkgver/apps
   for i in files_locking files_pdfviewer files_texteditor firstrunwizard \
-   templateeditor updater activity documents; do
+   templateeditor updater activity; do
 mv $srcdir/$i-$pkgver $srcdir/core-$pkgver/apps/$i
   done
   find . -type f -name .gitattributes -delete


[arch-commits] Commit in man-pages-de/repos/community-any (4 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 12:53:09
  Author: jlichtblau
Revision: 133647

archrelease: copy trunk to community-any

Added:
  man-pages-de/repos/community-any/PKGBUILD
(from rev 133646, man-pages-de/trunk/PKGBUILD)
  man-pages-de/repos/community-any/man-pages-de.changelog
(from rev 133646, man-pages-de/trunk/man-pages-de.changelog)
Deleted:
  man-pages-de/repos/community-any/PKGBUILD
  man-pages-de/repos/community-any/man-pages-de.changelog

+
 PKGBUILD   |   58 +++
 man-pages-de.changelog |   43 ++
 2 files changed, 52 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-17 10:52:56 UTC (rev 133646)
+++ PKGBUILD2015-05-17 10:53:09 UTC (rev 133647)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-
-pkgname=man-pages-de
-pkgver=1.4
-pkgrel=1
-pkgdesc=German Linux man pages
-arch=('any')
-url=https://alioth.debian.org/projects/manpages-de/;
-license=('GPL3')
-depends=('man-db')
-makedepends=('po4a')
-changelog=$pkgname.changelog
-options=('!emptydirs')
-source=(http://manpages-de.alioth.debian.org/downloads/manpages-de-$pkgver.tar.bz2)
-sha256sums=('1c76f1e7e299c0ef813d30c36540affd6b886f1d810c69d0679b0005756d9ff7')
-
-build() {
-  cd ${srcdir}/manpages-de-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/manpages-de-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: man-pages-de/repos/community-any/PKGBUILD (from rev 133646, 
man-pages-de/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-17 10:53:09 UTC (rev 133647)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=man-pages-de
+pkgver=1.8
+pkgrel=1
+pkgdesc=German Linux man pages
+arch=('any')
+url=https://alioth.debian.org/projects/manpages-de/;
+license=('GPL3')
+depends=('man-db')
+makedepends=('po4a')
+changelog=$pkgname.changelog
+options=('!emptydirs')
+source=(http://manpages-de.alioth.debian.org/downloads/manpages-de-$pkgver.tar.xz)
+sha256sums=('e9d82b7bf41accd492b66b7ef2cbaefb5ce30c5ab2a2ad9ae1833424a8b93d6f')
+
+build() {
+  cd ${srcdir}/manpages-de-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/manpages-de-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: man-pages-de.changelog
===
--- man-pages-de.changelog  2015-05-17 10:52:56 UTC (rev 133646)
+++ man-pages-de.changelog  2015-05-17 10:53:09 UTC (rev 133647)
@@ -1,20 +0,0 @@
-2013-12-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * man-pages-de 1.4-1
-
-2013-05-18 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * man-pages-de 1.1-1
-
-2011-11-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * man-pages-de 0.9-1
-
-2011-02-19 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * man-pages-de 0.7
-
-2010-07-21 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * rebuild for correct package naming
-
-2009-04-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * removing some more man pages provided by the new shadow 4.1.3.1 
package
-
-2009-02-19 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * removing some man pages provided by the new man-db 2.5.3 package

Copied: man-pages-de/repos/community-any/man-pages-de.changelog (from rev 
133646, man-pages-de/trunk/man-pages-de.changelog)
===
--- man-pages-de.changelog  (rev 0)
+++ man-pages-de.changelog  2015-05-17 10:53:09 UTC (rev 133647)
@@ -0,0 +1,23 @@
+2015-05-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * man-pages-de 1.8-1
+
+2013-12-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * man-pages-de 1.4-1
+
+2013-05-18 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * man-pages-de 1.1-1
+
+2011-11-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * man-pages-de 0.9-1
+
+2011-02-19 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * man-pages-de 0.7
+
+2010-07-21 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * rebuild for correct package naming
+
+2009-04-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * removing some more man pages provided by the new shadow 4.1.3.1 
package
+
+2009-02-19 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * removing some man pages provided by the new man-db 2.5.3 package


[arch-commits] Commit in man-pages-de/trunk (PKGBUILD man-pages-de.changelog)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 12:52:56
  Author: jlichtblau
Revision: 133646

upgpkg: man-pages-de 1.8-1 - new upstream version

Modified:
  man-pages-de/trunk/PKGBUILD
  man-pages-de/trunk/man-pages-de.changelog

+
 PKGBUILD   |   12 ++--
 man-pages-de.changelog |3 +++
 2 files changed, 9 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 10:20:26 UTC (rev 133645)
+++ PKGBUILD2015-05-17 10:52:56 UTC (rev 133646)
@@ -2,7 +2,7 @@
 # Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
 
 pkgname=man-pages-de
-pkgver=1.4
+pkgver=1.8
 pkgrel=1
 pkgdesc=German Linux man pages
 arch=('any')
@@ -12,11 +12,11 @@
 makedepends=('po4a')
 changelog=$pkgname.changelog
 options=('!emptydirs')
-source=(http://manpages-de.alioth.debian.org/downloads/manpages-de-$pkgver.tar.bz2)
-sha256sums=('1c76f1e7e299c0ef813d30c36540affd6b886f1d810c69d0679b0005756d9ff7')
+source=(http://manpages-de.alioth.debian.org/downloads/manpages-de-$pkgver.tar.xz)
+sha256sums=('e9d82b7bf41accd492b66b7ef2cbaefb5ce30c5ab2a2ad9ae1833424a8b93d6f')
 
 build() {
-  cd ${srcdir}/manpages-de-$pkgver
+  cd ${srcdir}/manpages-de-$pkgver
 
   ./configure --prefix=/usr
   make
@@ -23,7 +23,7 @@
 }
 
 package() {
-  cd ${srcdir}/manpages-de-$pkgver
+  cd ${srcdir}/manpages-de-$pkgver
 
-  make DESTDIR=${pkgdir} install
+  make DESTDIR=${pkgdir} install
 }

Modified: man-pages-de.changelog
===
--- man-pages-de.changelog  2015-05-17 10:20:26 UTC (rev 133645)
+++ man-pages-de.changelog  2015-05-17 10:52:56 UTC (rev 133646)
@@ -1,3 +1,6 @@
+2015-05-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+   * man-pages-de 1.8-1
+
 2013-12-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
* man-pages-de 1.4-1
 


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

2015-05-17 Thread Kyle Keen
Date: Sunday, May 17, 2015 @ 13:45:52
  Author: kkeen
Revision: 133649

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

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

---+
 /PKGBUILD |  118 
 community-i686/PKGBUILD   |   54 
 community-x86_64/PKGBUILD |   54 
 3 files changed, 118 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-17 11:45:27 UTC (rev 133648)
+++ community-i686/PKGBUILD 2015-05-17 11:45:52 UTC (rev 133649)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: Dominik Heidler dheid...@gmail.com
-pkgname=bladerf
-pkgver=0.16.2
-_CLIver=0.11.1
-_FPGAver=0.0.6
-_firmver=1.7.0
-pkgrel=1
-pkgdesc=Driver, userspace, fpga  firmware for the bladeRF SDR.
-url=https://github.com/Nuand/bladeRF;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('libusb')
-makedepends=('cmake' 'help2man')
-#backup=(etc/bladerf.cfg)
-
-source=(
-https://github.com/Nuand/bladeRF/archive/libbladeRF_v$pkgver.tar.gz;
-http://nuand.com/fpga/v$_FPGAver/hostedx40.rbf;
-http://nuand.com/fpga/v$_FPGAver/hostedx115.rbf;
-http://www.nuand.com/fx3/bladeRF_fw_v$_firmver.img;)
-
-md5sums=('d77c86cf6ba5b253591a59eacf24072c'
- '85b91b0caeb64750e8d0ca8dd3358992'
- 'eb91ecda1d1203750f0f2b9859c9c20f'
- '73ace21e693049e475cceb88bed900d7')
-
-# bladeRF-cli can use libtecla (aur)?
-
-build() {
-  cd $srcdir/bladeRF-libbladeRF_v$pkgver
-  mkdir -p build
-  cd build
-  cmake \
--DCMAKE_BUILD_TYPE=Release \
--DINSTALL_UDEV_RULES=ON \
--DBUILD_DOCUMENTATION=ON \
--DCMAKE_INSTALL_LIBDIR:PATH=lib \
--Dusb_LIBRARY:FILEPATH=/usr/lib/libusb-1.0.so \
--DCMAKE_INSTALL_PREFIX=/usr ../
-  make
-  # ENABLE_FX3_BUILD needs cypress toolchain
-  # really really wants to put files in /usr/lib64
-}
-
-package() {
-  cd $srcdir/bladeRF-libbladeRF_v$pkgver/build
-  make DESTDIR=${pkgdir} install
-  cd $srcdir
-  install -Dm644 bladeRF_fw_v$_firmver.img 
$pkgdir/usr/share/bladerf/firmware/bladeRF_fw_v$_firmver.img
-  install -Dm644 hostedx40.rbf $pkgdir/usr/share/bladerf/fpga/hostedx40.rbf
-  install -Dm644 hostedx115.rbf $pkgdir/usr/share/bladerf/fpga/hostedx115.rbf
-}

Copied: bladerf/repos/community-i686/PKGBUILD (from rev 133648, 
bladerf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-17 11:45:52 UTC (rev 133649)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Dominik Heidler dheid...@gmail.com
+
+# it looks like the release model has gotten better
+# keeping it more modular for now though
+
+pkgname=bladerf
+_libver=1.2.1
+_CLIver=1.1.2
+_FPGAver=0.1.2
+_firmver=1.8.0
+pkgver=$_libver
+pkgrel=1
+pkgdesc=Driver, userspace, fpga  firmware for the bladeRF SDR.
+url=https://github.com/Nuand/bladeRF;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('libusb')
+makedepends=('cmake' 'help2man' 'doxygen')
+#backup=(etc/bladerf.cfg)
+
+source=(
+https://github.com/Nuand/bladeRF/archive/libbladeRF_v$_libver.tar.gz;
+http://nuand.com/fpga/v$_FPGAver/hostedx40.rbf;
+http://nuand.com/fpga/v$_FPGAver/hostedx115.rbf;
+http://www.nuand.com/fx3/bladeRF_fw_v$_firmver.img;)
+
+md5sums=('1f646520c6a8dde87c19fe6d5b25abf8'
+ 'ff681baa275d3f01af3d864e737a23ae'
+ '899da656cfb73789febe515b9d82f67e'
+ '374011a23258b9245ec9ed78bdfba4c1')
+
+# bladeRF-cli can use libtecla (aur)?
+
+build() {
+  cd $srcdir/bladeRF-libbladeRF_v$_libver
+  mkdir -p build
+  cd build
+  cmake \
+-DCMAKE_BUILD_TYPE=Release \
+-DINSTALL_UDEV_RULES=ON \
+-DBUILD_DOCUMENTATION=ON \
+-DCMAKE_INSTALL_LIBDIR:PATH=lib \
+-Dusb_LIBRARY:FILEPATH=/usr/lib/libusb-1.0.so \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+  # ENABLE_FX3_BUILD needs cypress toolchain
+  # really really wants to put files in /usr/lib64
+}
+
+package() {
+  cd $srcdir/bladeRF-libbladeRF_v$_libver/build
+  make DESTDIR=${pkgdir} install
+  cd $srcdir
+  install -Dm644 bladeRF_fw_v$_firmver.img 
$pkgdir/usr/share/bladerf/firmware/bladeRF_fw_v$_firmver.img
+  install -Dm644 hostedx40.rbf $pkgdir/usr/share/bladerf/fpga/hostedx40.rbf
+  install -Dm644 hostedx115.rbf $pkgdir/usr/share/bladerf/fpga/hostedx115.rbf
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-17 11:45:27 UTC (rev 133648)
+++ community-x86_64/PKGBUILD   2015-05-17 

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

2015-05-17 Thread Kyle Keen
Date: Sunday, May 17, 2015 @ 13:50:58
  Author: kkeen
Revision: 133651

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

Added:
  gnuradio-osmosdr/repos/community-i686/PKGBUILD
(from rev 133650, gnuradio-osmosdr/trunk/PKGBUILD)
  gnuradio-osmosdr/repos/community-x86_64/PKGBUILD
(from rev 133650, gnuradio-osmosdr/trunk/PKGBUILD)
Deleted:
  gnuradio-osmosdr/repos/community-i686/PKGBUILD
  gnuradio-osmosdr/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-17 11:50:36 UTC (rev 133650)
+++ community-i686/PKGBUILD 2015-05-17 11:50:58 UTC (rev 133651)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com?
-# Contributor: Dominik Heidler dheid...@gmail.com
-pkgname=gnuradio-osmosdr
-_pkgname=gr-osmosdr
-pkgver=0.1.4
-pkgrel=4
-pkgdesc=Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices
-url=http://sdr.osmocom.org/trac/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf' 'airspy')
-makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
-conflicts=('gr-osmosdr-git')
-replaces=('gr-osmosdr')
-source=(git://git.osmocom.org/gr-osmosdr#tag=v$pkgver)
-md5sums=('SKIP')
-
-# add support for miri, osmo?
-
-build() {
-  cd $srcdir/$_pkgname
-  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
-  mkdir build
-  cd build
-  cmake \
--Wno-dev \
--DCMAKE_BUILD_TYPE=Release \
--DPYTHON_EXECUTABLE=$(which python2) \
--DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
--DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
--DCMAKE_INSTALL_PREFIX=/usr ../
-  make
-}
-
-package() {
-  cd $srcdir/$_pkgname/build/
-  make DESTDIR=${pkgdir} install
-}

Copied: gnuradio-osmosdr/repos/community-i686/PKGBUILD (from rev 133650, 
gnuradio-osmosdr/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-17 11:50:58 UTC (rev 133651)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com?
+# Contributor: Dominik Heidler dheid...@gmail.com
+pkgname=gnuradio-osmosdr
+_pkgname=gr-osmosdr
+pkgver=0.1.4
+pkgrel=5
+pkgdesc=Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices
+url=http://sdr.osmocom.org/trac/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf' 'airspy')
+makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
+conflicts=('gr-osmosdr-git')
+replaces=('gr-osmosdr')
+source=(git://git.osmocom.org/gr-osmosdr#tag=v$pkgver)
+md5sums=('SKIP')
+
+# add support for miri, osmo?
+
+build() {
+  cd $srcdir/$_pkgname
+  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname/build/
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-17 11:50:36 UTC (rev 133650)
+++ community-x86_64/PKGBUILD   2015-05-17 11:50:58 UTC (rev 133651)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com?
-# Contributor: Dominik Heidler dheid...@gmail.com
-pkgname=gnuradio-osmosdr
-_pkgname=gr-osmosdr
-pkgver=0.1.4
-pkgrel=4
-pkgdesc=Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices
-url=http://sdr.osmocom.org/trac/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf' 'airspy')
-makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
-conflicts=('gr-osmosdr-git')
-replaces=('gr-osmosdr')
-source=(git://git.osmocom.org/gr-osmosdr#tag=v$pkgver)
-md5sums=('SKIP')
-
-# add support for miri, osmo?
-
-build() {
-  cd $srcdir/$_pkgname
-  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
-  mkdir build
-  cd build
-  cmake \
--Wno-dev \
--DCMAKE_BUILD_TYPE=Release \
--DPYTHON_EXECUTABLE=$(which python2) \
--DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
--DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
--DCMAKE_INSTALL_PREFIX=/usr ../
-  make
-}
-
-package() {
-  cd $srcdir/$_pkgname/build/
-  

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

2015-05-17 Thread Evangelos Foutras
Date: Sunday, May 17, 2015 @ 13:55:54
  Author: foutrelis
Revision: 133652

upgpkg: gaupol 0.28.2-1

New upstream release.

Modified:
  gaupol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 11:50:58 UTC (rev 133651)
+++ PKGBUILD2015-05-17 11:55:54 UTC (rev 133652)
@@ -6,9 +6,9 @@
 # Contributor: Sebastien Piccand sebcactus gmail com
 
 pkgname=gaupol
-pkgver=0.28.1
+pkgver=0.28.2
 pkgrel=1
-pkgdesc=An editor for text-based subtitles
+pkgdesc=Editor for text-based subtitle files
 arch=('any')
 url=http://home.gna.org/gaupol;
 license=('GPL')
@@ -25,7 +25,7 @@
 'gst-libav: extra media codecs')
 install=gaupol.install
 source=(http://download.gna.org/$pkgname/0.28/$pkgname-$pkgver.tar.xz)
-sha256sums=('e316304c3661443bc98d73c3906d30e9327ca3ee24304235fd6e9afa7e01a233')
+sha256sums=('d02d81ace0d41dbf7707251cd86e28876acf86dd82c36e34371d38cd21212d4c')
 
 package() {
   cd $srcdir/$pkgname-$pkgver


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

2015-05-17 Thread Evangelos Foutras
Date: Sunday, May 17, 2015 @ 13:56:03
  Author: foutrelis
Revision: 133653

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   72 +++
 gaupol.install |   28 ++---
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-17 11:55:54 UTC (rev 133652)
+++ PKGBUILD2015-05-17 11:56:03 UTC (rev 133653)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: FJ joos...@gmail.com
-# Contributor: Sebastien Piccand sebcactus gmail com
-
-pkgname=gaupol
-pkgver=0.28.1
-pkgrel=1
-pkgdesc=An editor for text-based subtitles
-arch=('any')
-url=http://home.gna.org/gaupol;
-license=('GPL')
-depends=('python-gobject' 'gtk3' 'gst-plugins-base' 'gst-plugins-good'
- 'iso-codes' 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('python-pyenchant: spell-checking'
-'gtkspell3: inline spell-checking'
-'python-chardet: character encoding auto-detection'
-'mplayer: subtitle preview'
-'vlc: subtitle preview'
-'gst-plugins-bad: extra media codecs'
-'gst-plugins-ugly: extra media codecs'
-'gst-libav: extra media codecs')
-install=gaupol.install
-source=(http://download.gna.org/$pkgname/0.28/$pkgname-$pkgver.tar.xz)
-sha256sums=('e316304c3661443bc98d73c3906d30e9327ca3ee24304235fd6e9afa7e01a233')
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  python3 setup.py --without-iso-codes install --root=$pkgdir -O1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gaupol/repos/community-any/PKGBUILD (from rev 133652, 
gaupol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-17 11:56:03 UTC (rev 133653)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: FJ joos...@gmail.com
+# Contributor: Sebastien Piccand sebcactus gmail com
+
+pkgname=gaupol
+pkgver=0.28.2
+pkgrel=1
+pkgdesc=Editor for text-based subtitle files
+arch=('any')
+url=http://home.gna.org/gaupol;
+license=('GPL')
+depends=('python-gobject' 'gtk3' 'gst-plugins-base' 'gst-plugins-good'
+ 'iso-codes' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('python-pyenchant: spell-checking'
+'gtkspell3: inline spell-checking'
+'python-chardet: character encoding auto-detection'
+'mplayer: subtitle preview'
+'vlc: subtitle preview'
+'gst-plugins-bad: extra media codecs'
+'gst-plugins-ugly: extra media codecs'
+'gst-libav: extra media codecs')
+install=gaupol.install
+source=(http://download.gna.org/$pkgname/0.28/$pkgname-$pkgver.tar.xz)
+sha256sums=('d02d81ace0d41dbf7707251cd86e28876acf86dd82c36e34371d38cd21212d4c')
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  python3 setup.py --without-iso-codes install --root=$pkgdir -O1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gaupol.install
===
--- gaupol.install  2015-05-17 11:55:54 UTC (rev 133652)
+++ gaupol.install  2015-05-17 11:56:03 UTC (rev 133653)
@@ -1,14 +0,0 @@
-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
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gaupol/repos/community-any/gaupol.install (from rev 133652, 
gaupol/trunk/gaupol.install)
===
--- gaupol.install  (rev 0)
+++ gaupol.install  2015-05-17 11:56:03 UTC (rev 133653)
@@ -0,0 +1,14 @@
+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
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-05-17 Thread Tobias Powalowski
Date: Sunday, May 17, 2015 @ 20:23:51
  Author: tpowa
Revision: 239501

db-move: moved linux-firmware from [testing] to [core] (any)

Added:
  linux-firmware/repos/core-any/PKGBUILD
(from rev 239500, linux-firmware/repos/testing-any/PKGBUILD)
Deleted:
  linux-firmware/repos/core-any/PKGBUILD
  linux-firmware/repos/testing-any/

---+
 /PKGBUILD |   57 
 core-any/PKGBUILD |   57 
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2015-05-17 18:23:43 UTC (rev 239500)
+++ core-any/PKGBUILD   2015-05-17 18:23:51 UTC (rev 239501)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=linux-firmware
-# Commit date + git rev-parse --short origin/master
-_rev=ec89525
-pkgver=20150410.${_rev}
-pkgrel=1
-pkgdesc=Firmware files for Linux
-makedepends=('git')
-arch=('any')
-url=http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary;
-license=('GPL2' 'GPL3' 'custom')
-conflicts=('linux-firmware-git'
-   'kernel26-firmware'
-   'ar9170-fw'
-   'iwlwifi-1000-ucode'
-   'iwlwifi-3945-ucode'
-   'iwlwifi-4965-ucode'
-   'iwlwifi-5000-ucode'
-   'iwlwifi-5150-ucode'
-   'iwlwifi-6000-ucode'
-   'rt2870usb-fw'
-   'rt2x00-rt61-fw'
-   'rt2x00-rt71w-fw'
-   'amd-ucode')
-replaces=('kernel26-firmware'
-  'ar9170-fw'
-  'iwlwifi-1000-ucode'
-  'iwlwifi-3945-ucode'
-  'iwlwifi-4965-ucode'
-  'iwlwifi-5000-ucode'
-  'iwlwifi-5150-ucode'
-  'iwlwifi-6000-ucode'
-  'rt2870usb-fw'
-  'rt2x00-rt61-fw'
-  'rt2x00-rt71w-fw'
-  'amd-ucode')
-options=(!strip)
-source=(git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=${_rev};)
-md5sums=('SKIP')
-
-package() {
-  cd ${srcdir}/${pkgname}
-
-  make DESTDIR=${pkgdir} FIRMWAREDIR=/usr/lib/firmware install
-  rm ${pkgdir}/usr/lib/firmware/{Makefile,README,configure,GPL-3}
-
-  install -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -Dm644 LICEN* WHENCE ${pkgdir}/usr/share/licenses/linux-firmware/
-
-  # Trigger a microcode reload for configurations not using early updates
-  install -d ${pkgdir}/usr/lib/tmpfiles.d
-  echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' \
-${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf
-}
-# vim:set ts=2 sw=2 et:

Copied: linux-firmware/repos/core-any/PKGBUILD (from rev 239500, 
linux-firmware/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2015-05-17 18:23:51 UTC (rev 239501)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=linux-firmware
+# Commit date + git rev-parse --short origin/master
+_rev=8e18132
+pkgver=20150511.${_rev}
+pkgrel=1
+pkgdesc=Firmware files for Linux
+makedepends=('git')
+arch=('any')
+url=http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary;
+license=('GPL2' 'GPL3' 'custom')
+conflicts=('linux-firmware-git'
+   'kernel26-firmware'
+   'ar9170-fw'
+   'iwlwifi-1000-ucode'
+   'iwlwifi-3945-ucode'
+   'iwlwifi-4965-ucode'
+   'iwlwifi-5000-ucode'
+   'iwlwifi-5150-ucode'
+   'iwlwifi-6000-ucode'
+   'rt2870usb-fw'
+   'rt2x00-rt61-fw'
+   'rt2x00-rt71w-fw'
+   'amd-ucode')
+replaces=('kernel26-firmware'
+  'ar9170-fw'
+  'iwlwifi-1000-ucode'
+  'iwlwifi-3945-ucode'
+  'iwlwifi-4965-ucode'
+  'iwlwifi-5000-ucode'
+  'iwlwifi-5150-ucode'
+  'iwlwifi-6000-ucode'
+  'rt2870usb-fw'
+  'rt2x00-rt61-fw'
+  'rt2x00-rt71w-fw'
+  'amd-ucode')
+options=(!strip)
+source=(git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=${_rev};)
+md5sums=('SKIP')
+
+package() {
+  cd ${srcdir}/${pkgname}
+
+  make DESTDIR=${pkgdir} FIRMWAREDIR=/usr/lib/firmware install
+  rm ${pkgdir}/usr/lib/firmware/{Makefile,README,configure,GPL-3}
+
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -Dm644 LICEN* WHENCE ${pkgdir}/usr/share/licenses/linux-firmware/
+
+  # Trigger a microcode reload for configurations not using early updates
+  install -d ${pkgdir}/usr/lib/tmpfiles.d
+  echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' \
+${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf
+}
+# vim:set ts=2 sw=2 et:


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

2015-05-17 Thread Tobias Powalowski
Date: Sunday, May 17, 2015 @ 20:23:43
  Author: tpowa
Revision: 239500

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

Added:
  pam/repos/core-i686/PKGBUILD
(from rev 239499, pam/repos/testing-i686/PKGBUILD)
  pam/repos/core-i686/other
(from rev 239499, pam/repos/testing-i686/other)
  pam/repos/core-i686/pam-1.1.8-cve-2013-7041.patch
(from rev 239499, pam/repos/testing-i686/pam-1.1.8-cve-2013-7041.patch)
  pam/repos/core-i686/pam-1.1.8-cve-2014-2583.patch
(from rev 239499, pam/repos/testing-i686/pam-1.1.8-cve-2014-2583.patch)
  pam/repos/core-i686/pam_unix2-glibc216.patch
(from rev 239499, pam/repos/testing-i686/pam_unix2-glibc216.patch)
  pam/repos/core-x86_64/PKGBUILD
(from rev 239499, pam/repos/testing-x86_64/PKGBUILD)
  pam/repos/core-x86_64/other
(from rev 239499, pam/repos/testing-x86_64/other)
  pam/repos/core-x86_64/pam-1.1.8-cve-2013-7041.patch
(from rev 239499, pam/repos/testing-x86_64/pam-1.1.8-cve-2013-7041.patch)
  pam/repos/core-x86_64/pam-1.1.8-cve-2014-2583.patch
(from rev 239499, pam/repos/testing-x86_64/pam-1.1.8-cve-2014-2583.patch)
  pam/repos/core-x86_64/pam_unix2-glibc216.patch
(from rev 239499, pam/repos/testing-x86_64/pam_unix2-glibc216.patch)
Deleted:
  pam/repos/core-i686/PKGBUILD
  pam/repos/core-i686/other
  pam/repos/core-i686/pam-1.1.8-cve-2013-7041.patch
  pam/repos/core-i686/pam-1.1.8-cve-2014-2583.patch
  pam/repos/core-i686/pam_unix2-glibc216.patch
  pam/repos/core-x86_64/PKGBUILD
  pam/repos/core-x86_64/other
  pam/repos/core-x86_64/pam-1.1.8-cve-2013-7041.patch
  pam/repos/core-x86_64/pam-1.1.8-cve-2014-2583.patch
  pam/repos/core-x86_64/pam_unix2-glibc216.patch
  pam/repos/testing-i686/
  pam/repos/testing-x86_64/

---+
 /PKGBUILD |  156 
 /other|   10 +
 /pam-1.1.8-cve-2013-7041.patch|  104 ++
 /pam-1.1.8-cve-2014-2583.patch|  112 
 /pam_unix2-glibc216.patch |   40 +++
 core-i686/PKGBUILD|   85 ---
 core-i686/other   |5 
 core-i686/pam-1.1.8-cve-2013-7041.patch   |   52 -
 core-i686/pam-1.1.8-cve-2014-2583.patch   |   56 --
 core-i686/pam_unix2-glibc216.patch|   20 ---
 core-x86_64/PKGBUILD  |   85 ---
 core-x86_64/other |5 
 core-x86_64/pam-1.1.8-cve-2013-7041.patch |   52 -
 core-x86_64/pam-1.1.8-cve-2014-2583.patch |   56 --
 core-x86_64/pam_unix2-glibc216.patch  |   20 ---
 15 files changed, 422 insertions(+), 436 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-17 18:22:40 UTC (rev 239499)
+++ core-i686/PKGBUILD  2015-05-17 18:23:43 UTC (rev 239500)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=pam
-pkgver=1.1.8
-pkgrel=5
-pkgdesc=PAM (Pluggable Authentication Modules) library
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://linux-pam.org;
-depends=('glibc' 'cracklib' 'libtirpc' 'pambase')
-makedepends=('flex' 'w3m' 'docbook-xml=4.4' 'docbook-xsl')
-backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf}
 etc/default/passwd etc/environment)
-source=(https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-$pkgver.tar.bz2
-https://sources.archlinux.org/other/pam_unix2/pam_unix2-2.9.1.tar.bz2
-pam_unix2-glibc216.patch
-pam-1.1.8-cve-2013-7041.patch
-pam-1.1.8-cve-2014-2583.patch)
-md5sums=('35b6091af95981b1b2cd60d813b5e4ee'
- 'da6a46e5f8cd3eaa7cbc4fc3a7e2b555'
- 'dac109f68e04a4df37575fda6001ea17'
- '653661bea920de3bb2713bb85b408bc2'
- '144ea8e2f9d49a0f4021027ca2c1558f')
-
-options=('!emptydirs')
-
-prepare () {
-  cd $srcdir/Linux-PAM-$pkgver
-  # fix CVEs in pam
-  patch -Np1 -i  ${srcdir}/pam-1.1.8-cve-2013-7041.patch
-  patch -Np1 -i  ${srcdir}/pam-1.1.8-cve-2014-2583.patch
-
-  # fix pam_unix2 building
-  cd $srcdir/pam_unix2-2.9.1
-  patch -Np1 -i ${srcdir}/pam_unix2-glibc216.patch
-}
-
-build() {
-  cd $srcdir/Linux-PAM-$pkgver
-  ./configure --libdir=/usr/lib --sbindir=/usr/bin --disable-db
-  make
-
-  cd $srcdir/pam_unix2-2.9.1
-  # modify flags to build against the pam compiled here, not a system lib.
-  ./configure \
-  CFLAGS=$CFLAGS -I$srcdir/Linux-PAM-$pkgver/libpam/include/ \
-  LDFLAGS=$LDFLAGS -L$srcdir/Linux-PAM-$pkgver/libpam/.libs/ \
-  --libdir=/usr/lib \
-  --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $srcdir/Linux-PAM-$pkgver
-  make DESTDIR=$pkgdir SCONFIGDIR=/etc/security install
-
-  # build pam_unix2 module
-  # source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
-  cd 

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

2015-05-17 Thread Tobias Powalowski
Date: Sunday, May 17, 2015 @ 20:24:07
  Author: tpowa
Revision: 239502

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

Added:
  iputils/repos/core-i686/PKGBUILD
(from rev 239501, iputils/repos/testing-i686/PKGBUILD)
  iputils/repos/core-i686/iputils.install
(from rev 239501, iputils/repos/testing-i686/iputils.install)
  iputils/repos/core-i686/tftp.xinetd
(from rev 239501, iputils/repos/testing-i686/tftp.xinetd)
  iputils/repos/core-x86_64/PKGBUILD
(from rev 239501, iputils/repos/testing-x86_64/PKGBUILD)
  iputils/repos/core-x86_64/iputils.install
(from rev 239501, iputils/repos/testing-x86_64/iputils.install)
  iputils/repos/core-x86_64/tftp.xinetd
(from rev 239501, iputils/repos/testing-x86_64/tftp.xinetd)
Deleted:
  iputils/repos/core-i686/PKGBUILD
  iputils/repos/core-i686/iputils.install
  iputils/repos/core-i686/tftp.xinetd
  iputils/repos/core-x86_64/PKGBUILD
  iputils/repos/core-x86_64/iputils.install
  iputils/repos/core-x86_64/tftp.xinetd
  iputils/repos/testing-i686/
  iputils/repos/testing-x86_64/

-+
 /PKGBUILD   |  124 ++
 /iputils.install|   20 ++
 /tftp.xinetd|   20 ++
 core-i686/PKGBUILD  |   60 
 core-i686/iputils.install   |   10 ---
 core-i686/tftp.xinetd   |   10 ---
 core-x86_64/PKGBUILD|   60 
 core-x86_64/iputils.install |   10 ---
 core-x86_64/tftp.xinetd |   10 ---
 9 files changed, 164 insertions(+), 160 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-05-17 18:23:51 UTC (rev 239501)
+++ core-i686/PKGBUILD  2015-05-17 18:24:07 UTC (rev 239502)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-# Contributor: Aaron Griffin aa...@archlinux.org
-
-pkgname=iputils
-pkgver=20121221
-pkgrel=3
-pkgdesc=Network monitoring tools, including ping
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.skbuff.net/iputils/;
-groups=('base')
-depends=('openssl' 'sysfsutils' 'libcap')
-optdepends=('xinetd: for tftpd')
-makedepends=('docbook2x' 'opensp')
-conflicts=('netkit-base' 'arping' 'netkit-tftpd')
-replaces=('netkit-base')
-backup=(etc/xinetd.d/tftp)
-install=${pkgname}.install
-source=(http://www.skbuff.net/${pkgname}/${pkgname}-s${pkgver}.tar.bz2
-tftp.xinetd)
-sha1sums=('4d56d8c75d6a5d58f052e4056e975f01ebab9ba9'
-  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
-
-build() {
-  cd ${srcdir}/${pkgname}-s${pkgver}
-
-  make USE_GNUTLS=no CCOPTOPT=$CFLAGS
-
-  cd doc
-  for file in *.sgml; do
-xf=${file/.sgml/.xml}
-osx -xlower -xno-nl-in-tag $file  $xf || true
-sed -i s|refname\(.*\), \(.*\)/refname|refname\1/refname, 
refname\2/refname|g $xf
-docbook2man $xf
-  done
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-s${pkgver}
-
-  install -dm755 ${pkgdir}/usr/bin
-
-  install -m755 arping clockdiff rarpd rdisc tftpd tracepath tracepath6 
${pkgdir}/usr/bin/
-
-  install -m755 ping{,6} ${pkgdir}/usr/bin/
-
-  install -dm755 ${pkgdir}/usr/share/man/man8
-  install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
- ${pkgdir}/usr/share/man/man8/
-
-  cd ${pkgdir}/usr/share/man/man8
-  ln -sf ping.8.gz  ping6.8.gz
-  ln -sf tracepath.8.gz tracepath6.8.gz
-
-  # FS#24768
-  install -dm755 ${pkgdir}/etc/xinetd.d/
-  install -m644 ${srcdir}/tftp.xinetd ${pkgdir}/etc/xinetd.d/tftp
-}

Copied: iputils/repos/core-i686/PKGBUILD (from rev 239501, 
iputils/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-05-17 18:24:07 UTC (rev 239502)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=fad11dc
+pkgver=20140519.${_rev}
+pkgrel=1
+pkgdesc=Network monitoring tools, including ping
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp' 'git')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=(git+https://github.com/iputils/iputils.git#commit=${_rev};
+tftp.xinetd)
+sha1sums=('SKIP'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd ${srcdir}/${pkgname}
+
+  make USE_GNUTLS=no CCOPTOPT=$CFLAGS
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file  $xf || true
+sed -i s|refname\(.*\), 

[arch-commits] Commit in perl-test-distmanifest/repos/community-testing-any (2 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 20:52:52
  Author: jlichtblau
Revision: 133672

archrelease: copy trunk to community-testing-any

Added:
  perl-test-distmanifest/repos/community-testing-any/PKGBUILD
(from rev 133671, perl-test-distmanifest/trunk/PKGBUILD)
Deleted:
  perl-test-distmanifest/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-17 18:52:36 UTC (rev 133671)
+++ PKGBUILD2015-05-17 18:52:52 UTC (rev 133672)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-
-pkgname=perl-test-distmanifest
-pkgver=1.014
-pkgrel=1
-pkgdesc=Author test that validates a package MANIFEST
-arch=('any')
-url='http://search.cpan.org/dist/Test-DistManifest/'
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Test-DistManifest-$pkgver.tar.gz)
-sha256sums=('3d26c20df42628981cbfcfa5b1ca028c6ceadb344c1dcf97a25ad6a88b73d7c5')
-
-build() {
-  cd ${srcdir}/Test-DistManifest-$pkgver
-
-  perl Build.PL installdirs=vendor
-  ./Build
-}
-
-package() {
-  cd ${srcdir}/Test-DistManifest-$pkgver
-
-  ./Build install destdir=${pkgdir}
-
-  find ${pkgdir} -name '.packlist' -delete
-  find ${pkgdir} -name '*.pod' -delete
-}

Copied: perl-test-distmanifest/repos/community-testing-any/PKGBUILD (from rev 
133671, perl-test-distmanifest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-17 18:52:52 UTC (rev 133672)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+
+pkgname=perl-test-distmanifest
+pkgver=1.014
+pkgrel=2
+pkgdesc=Author test that validates a package MANIFEST
+arch=('any')
+url='http://search.cpan.org/dist/Test-DistManifest/'
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'perl-module-manifest')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Test-DistManifest-$pkgver.tar.gz)
+sha256sums=('3d26c20df42628981cbfcfa5b1ca028c6ceadb344c1dcf97a25ad6a88b73d7c5')
+
+build() {
+  cd ${srcdir}/Test-DistManifest-$pkgver
+
+  perl Build.PL installdirs=vendor
+  ./Build
+}
+
+package() {
+  cd ${srcdir}/Test-DistManifest-$pkgver
+
+  ./Build install destdir=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


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

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 20:52:36
  Author: jlichtblau
Revision: 133671

upgpkg: perl-test-distmanifest 1.014-2
missing dependency added

Modified:
  perl-test-distmanifest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 17:59:43 UTC (rev 133670)
+++ PKGBUILD2015-05-17 18:52:36 UTC (rev 133671)
@@ -3,12 +3,12 @@
 
 pkgname=perl-test-distmanifest
 pkgver=1.014
-pkgrel=1
+pkgrel=2
 pkgdesc=Author test that validates a package MANIFEST
 arch=('any')
 url='http://search.cpan.org/dist/Test-DistManifest/'
 license=('GPL' 'PerlArtistic')
-depends=('perl')
+depends=('perl' 'perl-module-manifest')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Test-DistManifest-$pkgver.tar.gz)
 sha256sums=('3d26c20df42628981cbfcfa5b1ca028c6ceadb344c1dcf97a25ad6a88b73d7c5')


[arch-commits] Commit in perl-test-perltidy/repos (2 files)

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 20:54:06
  Author: jlichtblau
Revision: 133674

archrelease: copy trunk to community-testing-any

Added:
  perl-test-perltidy/repos/community-testing-any/
  perl-test-perltidy/repos/community-testing-any/PKGBUILD
(from rev 133673, perl-test-perltidy/trunk/PKGBUILD)

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

Copied: perl-test-perltidy/repos/community-testing-any/PKGBUILD (from rev 
133673, perl-test-perltidy/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-05-17 18:54:06 UTC (rev 133674)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+
+pkgname=perl-test-perltidy
+pkgver=20130104
+pkgrel=2
+pkgdesc=CPAN Test::PerlTidy module
+arch=('any')
+url='http://search.cpan.org/dist/Test-PerlTidy-20130104/'
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'perl-text-diff' 'perl-file-slurp' 'perl-tidy' 
'perl-file-finder')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/L/LA/LARRYL/Test-PerlTidy-$pkgver.tar.gz)
+sha256sums=('3f15d9f3f4811e348594620312258d75095237925b491ada623fa73ac9d2b9c8')
+
+build() {
+  cd ${srcdir}/Test-PerlTidy-$pkgver
+
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL installdirs=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/Test-PerlTidy-$pkgver
+
+  make install DESTDIR=${pkgdir}
+
+  find ${pkgdir} -name '.packlist' -delete
+  find ${pkgdir} -name '*.pod' -delete
+}


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

2015-05-17 Thread Jaroslav Lichtblau
Date: Sunday, May 17, 2015 @ 20:53:56
  Author: jlichtblau
Revision: 133673

upgpkg: perl-test-perltidy 20130104-2
missing dependency added

Modified:
  perl-test-perltidy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 18:52:52 UTC (rev 133672)
+++ PKGBUILD2015-05-17 18:53:56 UTC (rev 133673)
@@ -3,12 +3,12 @@
 
 pkgname=perl-test-perltidy
 pkgver=20130104
-pkgrel=1
+pkgrel=2
 pkgdesc=CPAN Test::PerlTidy module
 arch=('any')
 url='http://search.cpan.org/dist/Test-PerlTidy-20130104/'
 license=('GPL' 'PerlArtistic')
-depends=('perl')
+depends=('perl' 'perl-text-diff' 'perl-file-slurp' 'perl-tidy' 
'perl-file-finder')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/L/LA/LARRYL/Test-PerlTidy-$pkgver.tar.gz)
 sha256sums=('3f15d9f3f4811e348594620312258d75095237925b491ada623fa73ac9d2b9c8')


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

2015-05-17 Thread Tobias Powalowski
Date: Sunday, May 17, 2015 @ 20:22:40
  Author: tpowa
Revision: 239499

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

Added:
  linux/repos/core-i686/0001-fix-btrfs-mount-deadlock.patch
(from rev 239498, 
linux/repos/testing-i686/0001-fix-btrfs-mount-deadlock.patch)
  linux/repos/core-i686/0001-fixup-drm.patch
(from rev 239498, linux/repos/testing-i686/0001-fixup-drm.patch)
  linux/repos/core-i686/PKGBUILD
(from rev 239498, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 239498, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 239498, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 239498, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/linux.install
(from rev 239498, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 239498, linux/repos/testing-i686/linux.preset)
  linux/repos/core-x86_64/0001-fix-btrfs-mount-deadlock.patch
(from rev 239498, 
linux/repos/testing-x86_64/0001-fix-btrfs-mount-deadlock.patch)
  linux/repos/core-x86_64/0001-fixup-drm.patch
(from rev 239498, linux/repos/testing-x86_64/0001-fixup-drm.patch)
  linux/repos/core-x86_64/PKGBUILD
(from rev 239498, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 239498, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 239498, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 239498, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/linux.install
(from rev 239498, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 239498, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-i686/0001-fix-btrfs-mount-deadlock.patch
  linux/repos/core-i686/0001-fixup-drm.patch
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/core-x86_64/0001-fix-btrfs-mount-deadlock.patch
  linux/repos/core-x86_64/0001-fixup-drm.patch
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/testing-i686/
  linux/repos/testing-x86_64/

---+
 /0001-fix-btrfs-mount-deadlock.patch  |   86 
 /0001-fixup-drm.patch |  140 
 /PKGBUILD |  596 
 /change-default-console-loglevel.patch|   22 
 /config   |14712 
 /config.x86_64|14210 +++
 /linux.install|   74 
 /linux.preset |   28 
 core-i686/0001-fix-btrfs-mount-deadlock.patch |   43 
 core-i686/0001-fixup-drm.patch|   70 
 core-i686/PKGBUILD|  298 
 core-i686/change-default-console-loglevel.patch   |   11 
 core-i686/config  | 7356 --
 core-i686/config.x86_64   | 7105 -
 core-i686/linux.install   |   37 
 core-i686/linux.preset|   14 
 core-x86_64/0001-fix-btrfs-mount-deadlock.patch   |   43 
 core-x86_64/0001-fixup-drm.patch  |   70 
 core-x86_64/PKGBUILD  |  298 
 core-x86_64/change-default-console-loglevel.patch |   11 
 core-x86_64/config| 7356 --
 core-x86_64/config.x86_64 | 7105 -
 core-x86_64/linux.install |   37 
 core-x86_64/linux.preset  |   14 
 24 files changed, 29868 insertions(+), 29868 deletions(-)

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


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

2015-05-17 Thread Jonathan Steel
Date: Sunday, May 17, 2015 @ 09:42:32
  Author: jsteel
Revision: 133638

upgpkg: mgba 0.2.1-1

Modified:
  mgba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 05:41:25 UTC (rev 133637)
+++ PKGBUILD2015-05-17 07:42:32 UTC (rev 133638)
@@ -5,8 +5,8 @@
 
 pkgbase=mgba
 pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
-pkgver=0.2.0
-pkgrel=2
+pkgver=0.2.1
+pkgrel=1
 arch=('i686' 'x86_64')
 url='https://endrift.com/mgba/'
 license=('custom:MPL2')
@@ -14,7 +14,7 @@
  'ffmpeg' 'imagemagick' 'desktop-file-utils')
 
source=($pkgbase-$pkgver.tar.gz::https://github.com/mgba-emu/mgba/archive/$pkgver.tar.gz
 mgba.desktop)
-sha1sums=('96b92c016d4ceffc651ca7a99067782a81656ca7'
+sha1sums=('0fa2485ca961c21316a5989b628de38222a4099b'
   '0f6f43ed45b702f6571c254d4717fbc1fe15e845')
 
 prepare() {


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

2015-05-17 Thread Jonathan Steel
Date: Sunday, May 17, 2015 @ 09:42:52
  Author: jsteel
Revision: 133639

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

Added:
  mgba/repos/community-testing-i686/PKGBUILD
(from rev 133638, mgba/trunk/PKGBUILD)
  mgba/repos/community-testing-i686/mgba.desktop
(from rev 133638, mgba/trunk/mgba.desktop)
  mgba/repos/community-testing-x86_64/PKGBUILD
(from rev 133638, mgba/trunk/PKGBUILD)
  mgba/repos/community-testing-x86_64/mgba.desktop
(from rev 133638, mgba/trunk/mgba.desktop)
Deleted:
  mgba/repos/community-testing-i686/PKGBUILD
  mgba/repos/community-testing-i686/mgba.desktop
  mgba/repos/community-testing-x86_64/PKGBUILD
  mgba/repos/community-testing-x86_64/mgba.desktop

---+
 /PKGBUILD |  130 
 /mgba.desktop |   20 
 community-testing-i686/PKGBUILD   |   65 
 community-testing-i686/mgba.desktop   |   10 --
 community-testing-x86_64/PKGBUILD |   65 
 community-testing-x86_64/mgba.desktop |   10 --
 6 files changed, 150 insertions(+), 150 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-05-17 07:42:32 UTC (rev 133638)
+++ community-testing-i686/PKGBUILD 2015-05-17 07:42:52 UTC (rev 133639)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer:  Jonathan Steel jsteel at archlinux.org
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Duck Hunt vapor...@tfwno.gf
-
-pkgbase=mgba
-pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
-pkgver=0.2.0
-pkgrel=2
-arch=('i686' 'x86_64')
-url='https://endrift.com/mgba/'
-license=('custom:MPL2')
-makedepends=('cmake' 'qt5-multimedia' 'sdl2' 'zlib' 'libpng' 'libzip' 'libedit'
- 'ffmpeg' 'imagemagick' 'desktop-file-utils')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/mgba-emu/mgba/archive/$pkgver.tar.gz
-mgba.desktop)
-sha1sums=('96b92c016d4ceffc651ca7a99067782a81656ca7'
-  '0f6f43ed45b702f6571c254d4717fbc1fe15e845')
-
-prepare() {
-  [[ ! -d build ]]  mkdir build || rm -rf build
-
-  cd mgba-$pkgver/res
-  convert mgba-1024.png -resize 256x256 mgba-256.png
-}
-
-build() {
-  cd build
-  cmake $srcdir/mgba-$pkgver -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package_libmgba() {
-  pkgdesc='Shared library of mGBA'
-  depends=('zlib' 'libpng' 'libzip' 'libedit' 'ffmpeg' 'imagemagick')
-
-  cmake -DCOMPONENT=libmgba mgba-$pkgver -DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
--P build/cmake_install.cmake
-  install -Dm644 mgba-$pkgver/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_mgba-sdl() {
-  pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy'
-  depends=('libmgba' 'sdl2')
-
-  cmake -DCOMPONENT=mgba-sdl mgba-$pkgver -DCMAKE_INSTALL_PREFIX=$pkgdir/usr 
\
--P build/cmake_install.cmake
-
-  install -d $pkgdir/usr/share/licenses/$pkgname
-  ln -s /usr/share/licenses/libmgba/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_mgba-qt() {
-  pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy. Qt5 UI.'
-  depends=('libmgba' 'qt5-multimedia' 'sdl2')
-
-  cmake -DCOMPONENT=mgba-qt mgba-$pkgver -DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
--P build/cmake_install.cmake
-
-  desktop-file-install mgba.desktop --dir $pkgdir/usr/share/applications/
-  install -Dm644 mgba-$pkgver/res/mgba-256.png 
$pkgdir/usr/share/pixmaps/mgba.png
-
-  install -d $pkgdir/usr/share/licenses/$pkgname
-  ln -s /usr/share/licenses/libmgba/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: mgba/repos/community-testing-i686/PKGBUILD (from rev 133638, 
mgba/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-17 07:42:52 UTC (rev 133639)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer:  Jonathan Steel jsteel at archlinux.org
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Duck Hunt vapor...@tfwno.gf
+
+pkgbase=mgba
+pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
+pkgver=0.2.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://endrift.com/mgba/'
+license=('custom:MPL2')
+makedepends=('cmake' 'qt5-multimedia' 'sdl2' 'zlib' 'libpng' 'libzip' 'libedit'
+ 'ffmpeg' 'imagemagick' 'desktop-file-utils')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/mgba-emu/mgba/archive/$pkgver.tar.gz
+mgba.desktop)
+sha1sums=('0fa2485ca961c21316a5989b628de38222a4099b'
+  '0f6f43ed45b702f6571c254d4717fbc1fe15e845')
+
+prepare() {
+  [[ ! -d build ]]  mkdir build || rm -rf build
+
+  cd mgba-$pkgver/res
+  convert mgba-1024.png -resize 256x256 mgba-256.png
+}
+
+build() {
+  cd build
+  cmake $srcdir/mgba-$pkgver -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+

[arch-commits] Commit in grilo-plugins/trunk (PKGBUILD local-metadata-crash.patch)

2015-05-17 Thread Jan Steffens
Date: Sunday, May 17, 2015 @ 15:39:45
  Author: heftig
Revision: 239495

FS#44724 local metadata plugin crashes

Added:
  grilo-plugins/trunk/local-metadata-crash.patch
Modified:
  grilo-plugins/trunk/PKGBUILD

+
 PKGBUILD   |   13 ++---
 local-metadata-crash.patch |   31 +++
 2 files changed, 41 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-17 11:32:11 UTC (rev 239494)
+++ PKGBUILD2015-05-17 13:39:45 UTC (rev 239495)
@@ -3,7 +3,7 @@
 
 pkgname=grilo-plugins
 pkgver=0.2.14
-pkgrel=2
+pkgrel=3
 pkgdesc=Plugins for Grilo
 url=http://www.gnome.org;
 arch=(i686 x86_64)
@@ -14,9 +14,16 @@
 'tracker: Tracker plugin')
 options=('!emptydirs')
 groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('d0f18116675058c7e8c178b1fe26d6d73998a0452f85a73b1696df740c83d3ab')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz
+local-metadata-crash.patch)
+sha256sums=('d0f18116675058c7e8c178b1fe26d6d73998a0452f85a73b1696df740c83d3ab'
+'221f770b064309635b52095d21d325707d45de03772da5cc579252b7795ced1b')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../local-metadata-crash.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --disable-static

Added: local-metadata-crash.patch
===
--- local-metadata-crash.patch  (rev 0)
+++ local-metadata-crash.patch  2015-05-17 13:39:45 UTC (rev 239495)
@@ -0,0 +1,31 @@
+From 85fc7cbf831e914456623a2f7a9efbe81919bf4d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= olivier.cr...@collabora.com
+Date: Tue, 28 Apr 2015 19:46:54 -0400
+Subject: local-metadata: Ignore sanitization if the whole filename is
+ blacklisted
+
+If the whole filename ends up blacklisted, then just take it as-is.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=748604
+
+diff --git a/src/local-metadata/grl-local-metadata.c 
b/src/local-metadata/grl-local-metadata.c
+index adc81f0..45856be 100644
+--- a/src/local-metadata/grl-local-metadata.c
 b/src/local-metadata/grl-local-metadata.c
+@@ -272,6 +272,13 @@ video_sanitise_string (const gchar *str)
+   if (*line_end != '\0') {
+ line_end = g_utf8_find_prev_char (line, line_end);
+ 
++
++/* If everything in the string is blacklisted, just ignore
++ * the blackisting logic.
++ */
++if (line_end == NULL)
++  return g_strdup (str);
++
+ /* After removing substring with blacklisted word, ignore non 
alpha-numeric
+  * char in the end of the sanitised string */
+ while (g_unichar_isalnum (*line_end) == FALSE 
+-- 
+cgit v0.10.2
+


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

2015-05-17 Thread Jan Steffens
Date: Sunday, May 17, 2015 @ 15:41:00
  Author: heftig
Revision: 239496

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

Added:
  grilo-plugins/repos/extra-i686/PKGBUILD
(from rev 239495, grilo-plugins/trunk/PKGBUILD)
  grilo-plugins/repos/extra-i686/local-metadata-crash.patch
(from rev 239495, grilo-plugins/trunk/local-metadata-crash.patch)
  grilo-plugins/repos/extra-x86_64/PKGBUILD
(from rev 239495, grilo-plugins/trunk/PKGBUILD)
  grilo-plugins/repos/extra-x86_64/local-metadata-crash.patch
(from rev 239495, grilo-plugins/trunk/local-metadata-crash.patch)
Deleted:
  grilo-plugins/repos/extra-i686/PKGBUILD
  grilo-plugins/repos/extra-x86_64/PKGBUILD

-+
 /PKGBUILD   |   72 ++
 extra-i686/PKGBUILD |   29 
 extra-i686/local-metadata-crash.patch   |   31 
 extra-x86_64/PKGBUILD   |   29 
 extra-x86_64/local-metadata-crash.patch |   31 
 5 files changed, 134 insertions(+), 58 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-17 13:39:45 UTC (rev 239495)
+++ extra-i686/PKGBUILD 2015-05-17 13:41:00 UTC (rev 239496)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=grilo-plugins
-pkgver=0.2.14
-pkgrel=2
-pkgdesc=Plugins for Grilo
-url=http://www.gnome.org;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(grilo lua libmediaart libgdata libtracker-sparql gom libdmapsharing)
-makedepends=(intltool itstool yelp-tools)
-optdepends=('dleyna-server: DLNA plugin'
-'tracker: Tracker plugin')
-options=('!emptydirs')
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('d0f18116675058c7e8c178b1fe26d6d73998a0452f85a73b1696df740c83d3ab')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: grilo-plugins/repos/extra-i686/PKGBUILD (from rev 239495, 
grilo-plugins/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-17 13:41:00 UTC (rev 239496)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=grilo-plugins
+pkgver=0.2.14
+pkgrel=3
+pkgdesc=Plugins for Grilo
+url=http://www.gnome.org;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(grilo lua libmediaart libgdata libtracker-sparql gom libdmapsharing)
+makedepends=(intltool itstool yelp-tools)
+optdepends=('dleyna-server: DLNA plugin'
+'tracker: Tracker plugin')
+options=('!emptydirs')
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz
+local-metadata-crash.patch)
+sha256sums=('d0f18116675058c7e8c178b1fe26d6d73998a0452f85a73b1696df740c83d3ab'
+'221f770b064309635b52095d21d325707d45de03772da5cc579252b7795ced1b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../local-metadata-crash.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: grilo-plugins/repos/extra-i686/local-metadata-crash.patch (from rev 
239495, grilo-plugins/trunk/local-metadata-crash.patch)
===
--- extra-i686/local-metadata-crash.patch   (rev 0)
+++ extra-i686/local-metadata-crash.patch   2015-05-17 13:41:00 UTC (rev 
239496)
@@ -0,0 +1,31 @@
+From 85fc7cbf831e914456623a2f7a9efbe81919bf4d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= olivier.cr...@collabora.com
+Date: Tue, 28 Apr 2015 19:46:54 -0400
+Subject: local-metadata: Ignore sanitization if the whole filename is
+ blacklisted
+
+If the whole filename ends up blacklisted, then just take it as-is.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=748604
+
+diff --git a/src/local-metadata/grl-local-metadata.c 
b/src/local-metadata/grl-local-metadata.c
+index adc81f0..45856be 100644
+--- a/src/local-metadata/grl-local-metadata.c
 b/src/local-metadata/grl-local-metadata.c
+@@ -272,6 +272,13 @@ video_sanitise_string (const gchar *str)
+   if (*line_end != '\0') {
+ line_end = g_utf8_find_prev_char (line, line_end);
+ 
++
++/* If everything in the string is blacklisted, just ignore
++ * the blackisting logic.
++ */
++if (line_end == NULL)
++  return g_strdup (str);
++
+ /* After removing substring with blacklisted word, ignore non 
alpha-numeric
+  * char in the end of the sanitised string */
+ while (g_unichar_isalnum