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

2015-03-30 Thread Timothy Redaelli
Date: Monday, March 30, 2015 @ 17:46:55
  Author: tredaelli
Revision: 130316

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

Added:
  bitcoin/repos/community-staging-i686/
  bitcoin/repos/community-staging-i686/PKGBUILD
(from rev 130315, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-staging-i686/bitcoin-qt.install
(from rev 130315, bitcoin/trunk/bitcoin-qt.install)
  bitcoin/repos/community-staging-x86_64/
  bitcoin/repos/community-staging-x86_64/PKGBUILD
(from rev 130315, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-staging-x86_64/bitcoin-qt.install
(from rev 130315, bitcoin/trunk/bitcoin-qt.install)

-+
 community-staging-i686/PKGBUILD |   79 ++
 community-staging-i686/bitcoin-qt.install   |   11 +++
 community-staging-x86_64/PKGBUILD   |   79 ++
 community-staging-x86_64/bitcoin-qt.install |   11 +++
 4 files changed, 180 insertions(+)

Copied: bitcoin/repos/community-staging-i686/PKGBUILD (from rev 130315, 
bitcoin/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-03-30 15:46:55 UTC (rev 130316)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: shahid hellla...@gmail.com
+
+pkgbase=bitcoin
+pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
+pkgver=0.10.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url=http://www.bitcoin.org/;
+makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
+license=('MIT')
+source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver.tar.gz
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
+sha256sums=('a516cf6d9f58a117607148405334b35d3178df1ba1c59229609d2bcd08d30624'
+'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
+'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
+'b049cc2650d5988a581d1b72b205254edbaa4f8c0587c2fe8ac4aa0a25543a6a'
+'0a31a5f3ad860ecc1cc8041a863aabdbc4084c7ea5fdc487806b5aa829a244fe'
+'9acf7f46052f6e508af4f38be4574f34bf0f57d2cf462f072606d3f177b4c957')
+
+# Upstream should be more coherent!
+case $pkgver in
+*.*.*.*)
+  _pkgver=${pkgver%.*}
+  ;;
+*)
+  _pkgver=$pkgver
+  ;;
+esac
+
+build() {
+  cd $srcdir/$pkgbase-$pkgver
+  ./configure --prefix=/usr --with-incompatible-bdb --with-gui=qt4
+  make
+}
+
+package_bitcoin-qt() {
+  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - Qt
+  depends=(boost-libs qt4 miniupnpc qrencode protobuf)
+  install=bitcoin-qt.install
+
+  cd $pkgbase-$pkgver
+  install -Dm755 src/qt/bitcoin-qt $pkgdir/usr/bin/bitcoin-qt
+  install -Dm644 $srcdir/bitcoin-qt.desktop \
+$pkgdir/usr/share/applications/bitcoin.desktop
+  install -Dm644 $srcdir/bitcoin128.png \
+$pkgdir/usr/share/pixmaps/bitcoin128.png
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+package_bitcoin-daemon() {
+  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - daemon
+  depends=(boost-libs miniupnpc openssl)
+
+  cd $pkgbase-$pkgver
+  install -Dm755 src/bitcoind $pkgdir/usr/bin/bitcoind
+  install -Dm644 $srcdir/bitcoin.conf \
+$pkgdir/usr/share/doc/$pkgname/examples/bitcoin.conf
+  install -Dm644 $srcdir/bitcoind.1 \
+$pkgdir/usr/share/man/man1/bitcoind.1
+  install -Dm644 $srcdir/bitcoin.conf.5 \
+$pkgdir/usr/share/man/man5/bitcoin.conf.5
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+package_bitcoin-cli() {
+  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - RPC 
client
+  depends=(boost-libs openssl)
+
+  cd $pkgbase-$pkgver
+  install -Dm755 src/bitcoin-cli $pkgdir/usr/bin/bitcoin-cli
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: bitcoin/repos/community-staging-i686/bitcoin-qt.install (from rev 
130315, bitcoin/trunk/bitcoin-qt.install)
===
--- community-staging-i686/bitcoin-qt.install   (rev 0)
+++ community-staging-i686/bitcoin-qt.install   2015-03-30 15:46:55 UTC (rev 
130316)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_remove() {
+post_install $1
+}

Copied: bitcoin/repos/community-staging-x86_64/PKGBUILD (from rev 130315, 
bitcoin/trunk/PKGBUILD

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

2015-03-30 Thread Timothy Redaelli
Date: Monday, March 30, 2015 @ 18:03:53
  Author: tredaelli
Revision: 130317

upgpkg: parallel 20150322-1

Modified:
  parallel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-30 15:46:55 UTC (rev 130316)
+++ PKGBUILD2015-03-30 16:03:53 UTC (rev 130317)
@@ -4,7 +4,7 @@
 # Contributor: Peter Simons sim...@cryp.to
 
 pkgname=parallel
-pkgver=20150122
+pkgver=20150322
 pkgrel=1
 pkgdesc='A shell tool for executing jobs in parallel'
 arch=('any')
@@ -12,9 +12,9 @@
 license=('GPL3')
 depends=('perl' 'procps')
 source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('b3b30bdbfc031f6955e0eb27cb2c6d72'
+md5sums=('94b9113a651dfdb40a7032637a5d5aaf'
  'SKIP')
-sha1sums=('95f822b42010d41be8156b773816c684d4e2fac5'
+sha1sums=('9f880243481f268fa0985befb0112d86154cc490'
   'SKIP')
 validpgpkeys=('CDA01A4208C4F74506107E7BD1AB4516')
 


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

2015-03-30 Thread Timothy Redaelli
Date: Monday, March 30, 2015 @ 18:04:01
  Author: tredaelli
Revision: 130318

archrelease: copy trunk to community-any

Added:
  parallel/repos/community-any/PKGBUILD
(from rev 130317, parallel/trunk/PKGBUILD)
  parallel/repos/community-any/fix-pod-numbers.patch
(from rev 130317, parallel/trunk/fix-pod-numbers.patch)
Deleted:
  parallel/repos/community-any/PKGBUILD
  parallel/repos/community-any/fix-pod-numbers.patch

---+
 PKGBUILD  |   70 +--
 fix-pod-numbers.patch |   94 
 2 files changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-30 16:03:53 UTC (rev 130317)
+++ PKGBUILD2015-03-30 16:04:01 UTC (rev 130318)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Vianney le Clément vleclement AT gmail·com
-# Contributor: Peter Simons sim...@cryp.to
-
-pkgname=parallel
-pkgver=20150122
-pkgrel=1
-pkgdesc='A shell tool for executing jobs in parallel'
-arch=('any')
-url='http://www.gnu.org/software/parallel/'
-license=('GPL3')
-depends=('perl' 'procps')
-source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('b3b30bdbfc031f6955e0eb27cb2c6d72'
- 'SKIP')
-sha1sums=('95f822b42010d41be8156b773816c684d4e2fac5'
-  'SKIP')
-validpgpkeys=('CDA01A4208C4F74506107E7BD1AB4516')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  # FIXME
-  ln -sf parallel $pkgdir/usr/bin/sem
-}
-
-# vim:set ts=2 sw=2 et:

Copied: parallel/repos/community-any/PKGBUILD (from rev 130317, 
parallel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-30 16:04:01 UTC (rev 130318)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Vianney le Clément vleclement AT gmail·com
+# Contributor: Peter Simons sim...@cryp.to
+
+pkgname=parallel
+pkgver=20150322
+pkgrel=1
+pkgdesc='A shell tool for executing jobs in parallel'
+arch=('any')
+url='http://www.gnu.org/software/parallel/'
+license=('GPL3')
+depends=('perl' 'procps')
+source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+md5sums=('94b9113a651dfdb40a7032637a5d5aaf'
+ 'SKIP')
+sha1sums=('9f880243481f268fa0985befb0112d86154cc490'
+  'SKIP')
+validpgpkeys=('CDA01A4208C4F74506107E7BD1AB4516')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+
+  # FIXME
+  ln -sf parallel $pkgdir/usr/bin/sem
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-pod-numbers.patch
===
--- fix-pod-numbers.patch   2015-03-30 16:03:53 UTC (rev 130317)
+++ fix-pod-numbers.patch   2015-03-30 16:04:01 UTC (rev 130318)
@@ -1,47 +0,0 @@
 src/parallel.pod.orig
-+++ src/parallel.pod
-@@ -528,18 +528,18 @@
- 
- =over 3
- 
--=item 0
-+=item 0Z
- 
- Do not halt if a job fails. Exit status will be the number of jobs
- failed. This is the default.
- 
--=item 1
-+=item 1Z
- 
- Do not start new jobs if a job fails, but complete the running jobs
- including cleanup. The exit status will be the exit status from the
- last failing job.
- 
--=item 2
-+=item 2Z
- 
- Kill off all jobs immediately and exit without cleanup. The exit
- status will be the exit status from the failing job.
-@@ -2760,7 +2760,7 @@
- 
- =over 6
- 
--=item 0
-+=item 0Z
- 
- All jobs ran without error.
- 
-@@ -2768,11 +2768,11 @@
- 
- Some of the jobs failed. The exit status gives the number of failed jobs
- 
--=item 254
-+=item 254Z
- 
- More than 253 jobs failed.
- 
--=item 255
-+=item 255Z
- 
- Other error.
- 

Copied: parallel/repos/community-any/fix-pod-numbers.patch (from rev 130317, 
parallel/trunk/fix-pod-numbers.patch)
===
--- fix-pod-numbers.patch   (rev 0)
+++ fix-pod-numbers.patch   2015-03-30 16:04:01 UTC (rev 130318)
@@ -0,0 +1,47 @@
+--- src/parallel.pod.orig
 src/parallel.pod
+@@ -528,18 +528,18 @@
+ 
+ =over 3
+ 
+-=item 0
++=item 0Z
+ 
+ Do not halt if a job fails. Exit status will be the number of jobs
+ failed. This is the default.
+ 
+-=item 1
++=item 1Z
+ 
+ Do not start new jobs if a job fails, but complete the running jobs
+ including cleanup. The exit status will be the exit status from the
+ last failing job.
+ 
+-=item 2
++=item 2Z
+ 
+ Kill off all jobs immediately and exit without cleanup. The exit
+ status will be the exit status from the failing job.
+@@ -2760,7 +2760,7 @@
+ 
+ =over 6
+ 
+-=item 0
++=item 0Z
+ 
+ All jobs ran without error.
+ 
+@@ -2768,11

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

2015-03-23 Thread Timothy Redaelli
Date: Monday, March 23, 2015 @ 12:27:20
  Author: tredaelli
Revision: 129808

upgpkg: choqok 1.5-2

FS#44309

Modified:
  choqok/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-23 11:19:56 UTC (rev 129807)
+++ PKGBUILD2015-03-23 11:27:20 UTC (rev 129808)
@@ -6,8 +6,8 @@
 
 pkgname=choqok
 pkgver=1.5
-pkgrel=1
-pkgdesc=A Twitter/identi.ca/laconica client for KDE
+pkgrel=2
+pkgdesc=A Twitter/Pump.io/GNU social client for KDE
 url='http://choqok.gnufolks.org/'
 license=('GPL')
 arch=('i686' 'x86_64')


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

2015-03-23 Thread Timothy Redaelli
Date: Monday, March 23, 2015 @ 12:27:31
  Author: tredaelli
Revision: 129809

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

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

-+
 /PKGBUILD   |   74 ++
 /choqok.install |   22 +++
 community-i686/PKGBUILD |   37 ---
 community-i686/choqok.install   |   11 -
 community-x86_64/PKGBUILD   |   37 ---
 community-x86_64/choqok.install |   11 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-23 11:27:20 UTC (rev 129808)
+++ community-i686/PKGBUILD 2015-03-23 11:27:31 UTC (rev 129809)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Peter Richard Lewis ple...@aur.archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Emanuele Rossi newdna1...@yahoo.it
-# Contributor: Bram Schoenmakers m...@bramschoenmakers.nl
-
-pkgname=choqok
-pkgver=1.5
-pkgrel=1
-pkgdesc=A Twitter/identi.ca/laconica client for KDE
-url='http://choqok.gnufolks.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('kdebase-runtime' 'qjson' 'qoauth' 'qca-ossl')
-makedepends=('cmake' 'automoc4' 'telepathy-qt')
-optdepends=('kdebase-konqueror: proxy support'
-'telepathy-qt: IMstatus plugin')
-install=${pkgname}.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('f2efdd76199f8276e8ac2f76dc600596')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: choqok/repos/community-i686/PKGBUILD (from rev 129808, 
choqok/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-23 11:27:31 UTC (rev 129809)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Peter Richard Lewis ple...@aur.archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Emanuele Rossi newdna1...@yahoo.it
+# Contributor: Bram Schoenmakers m...@bramschoenmakers.nl
+
+pkgname=choqok
+pkgver=1.5
+pkgrel=2
+pkgdesc=A Twitter/Pump.io/GNU social client for KDE
+url='http://choqok.gnufolks.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('kdebase-runtime' 'qjson' 'qoauth' 'qca-ossl')
+makedepends=('cmake' 'automoc4' 'telepathy-qt')
+optdepends=('kdebase-konqueror: proxy support'
+'telepathy-qt: IMstatus plugin')
+install=${pkgname}.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('f2efdd76199f8276e8ac2f76dc600596')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/choqok.install
===
--- community-i686/choqok.install   2015-03-23 11:27:20 UTC (rev 129808)
+++ community-i686/choqok.install   2015-03-23 11:27:31 UTC (rev 129809)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: choqok/repos/community-i686/choqok.install (from rev 129808, 
choqok/trunk/choqok.install)
===
--- community-i686/choqok.install   (rev 0)
+++ community-i686/choqok.install   2015-03-23 11:27:31 UTC (rev 129809)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-03-23 11:27:20 UTC (rev 129808)
+++ community-x86_64/PKGBUILD   2015-03-23 11:27:31 UTC (rev 129809)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Peter Richard Lewis ple...@aur.archlinux.org
-# Contributor: Andrea Scarpino 

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

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 14:30:17
  Author: tredaelli
Revision: 129416

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

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

--+
 /PKGBUILD|   66 +
 /trojita.install |   24 +
 community-i686/PKGBUILD  |   33 --
 community-i686/trojita.install   |   12 --
 community-x86_64/PKGBUILD|   33 --
 community-x86_64/trojita.install |   12 --
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-17 13:30:06 UTC (rev 129415)
+++ community-i686/PKGBUILD 2015-03-17 13:30:17 UTC (rev 129416)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: birdflesh antkoul at gmail dot com
-
-pkgname=trojita
-pkgver=0.5
-pkgrel=1
-pkgdesc=A QT IMAP email client
-arch=('i686' 'x86_64')
-url=http://trojita.flaska.net;
-license=('GPL')
-makedepends=('cmake' 'automoc4')
-depends=('qtwebkit')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('c583bb4d82620cda1c49e5f1b084f550'
- 'SKIP')
-validpgpkeys=('61AB87D6F66CE2FCD2D2E1F56A65DFA844722517')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../$pkgname-$pkgver \
--DQT_QMAKE_EXECUTABLE=qmake-qt4 \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: trojita/repos/community-i686/PKGBUILD (from rev 129415, 
trojita/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-17 13:30:17 UTC (rev 129416)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: birdflesh antkoul at gmail dot com
+
+pkgname=trojita
+pkgver=0.5
+pkgrel=2
+pkgdesc=A QT IMAP email client
+arch=('i686' 'x86_64')
+url=http://trojita.flaska.net;
+license=('GPL')
+makedepends=('cmake' 'automoc4')
+depends=('qtwebkit' 'qtkeychain-qt4')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('c583bb4d82620cda1c49e5f1b084f550'
+ 'SKIP')
+validpgpkeys=('61AB87D6F66CE2FCD2D2E1F56A65DFA844722517')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/trojita.install
===
--- community-i686/trojita.install  2015-03-17 13:30:06 UTC (rev 129415)
+++ community-i686/trojita.install  2015-03-17 13:30:17 UTC (rev 129416)
@@ -1,12 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
\ No newline at end of file

Copied: trojita/repos/community-i686/trojita.install (from rev 129415, 
trojita/trunk/trojita.install)
===
--- community-i686/trojita.install  (rev 0)
+++ community-i686/trojita.install  2015-03-17 13:30:17 UTC (rev 129416)
@@ -0,0 +1,12 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
\ No newline at end of file

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-03-17 13:30:06 UTC (rev 129415)
+++ community-x86_64/PKGBUILD   2015-03-17 13:30:17 UTC (rev 129416)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: birdflesh antkoul at gmail dot com
-
-pkgname=trojita
-pkgver=0.5
-pkgrel=1
-pkgdesc=A QT IMAP email client
-arch=('i686' 'x86_64')
-url=http://trojita.flaska.net;
-license=('GPL')
-makedepends=('cmake' 'automoc4')
-depends=('qtwebkit')
-install

[arch-commits] Commit in python2-hidapi/repos (2 files)

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 15:11:07
  Author: tredaelli
Revision: 129420

archrelease: copy trunk to community-x86_64

Added:
  python2-hidapi/repos/community-x86_64/
  python2-hidapi/repos/community-x86_64/PKGBUILD
(from rev 129419, python2-hidapi/trunk/PKGBUILD)

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

Copied: python2-hidapi/repos/community-x86_64/PKGBUILD (from rev 129419, 
python2-hidapi/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-03-17 14:11:07 UTC (rev 129420)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=python2-hidapi
+pkgver=0.7.99.5
+_pkgver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc=A Cython interface to the hidapi from signal11/hidapi
+arch=('i686' 'x86_64')
+depends=('libusb' 'python2')
+makedepends=('cython2' 'python2-setuptools')
+url=https://github.com/trezor/cython-hidapi;
+license=('custom')
+source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
+sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
+
+build() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  echo You are free to use cython-hidapi code for any purpose.  
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 14:31:45
  Author: tredaelli
Revision: 129417

upgpkg: ecryptfs-utils 106-1

FS#44157

Modified:
  ecryptfs-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-17 13:30:17 UTC (rev 129416)
+++ PKGBUILD2015-03-17 13:31:45 UTC (rev 129417)
@@ -4,7 +4,7 @@
 # Contributor: Michal Krenek mi...@sg1.cz
 
 pkgname=ecryptfs-utils
-pkgver=104
+pkgver=106
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc=Enterprise-class stacked cryptographic filesystem for Linux
@@ -15,7 +15,7 @@
 optdepends=('python2: for python module')
 
source=(http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/${pkgname}_${pkgver}.orig.tar.gz;
 
${pkgname}_${pkgver}.orig.tar.gz.sig::http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/..-${pkgname}_${pkgver}.orig.tar.gz.asc;)
-md5sums=('6ae93822bcf0d15470516c30a3deee32'
+md5sums=('bff8052636f6be642f15c6be45a14ea3'
  'SKIP')
 validpgpkeys=('E2D9E1C5F9F5D59291F4607D95E64373F1529469')
 


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

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 14:30:06
  Author: tredaelli
Revision: 129415

upgpkg: trojita 0.5-2

FS#44215

Modified:
  trojita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-17 12:34:41 UTC (rev 129414)
+++ PKGBUILD2015-03-17 13:30:06 UTC (rev 129415)
@@ -4,13 +4,13 @@
 
 pkgname=trojita
 pkgver=0.5
-pkgrel=1
+pkgrel=2
 pkgdesc=A QT IMAP email client
 arch=('i686' 'x86_64')
 url=http://trojita.flaska.net;
 license=('GPL')
 makedepends=('cmake' 'automoc4')
-depends=('qtwebkit')
+depends=('qtwebkit' 'qtkeychain-qt4')
 install=$pkgname.install
 
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
 md5sums=('c583bb4d82620cda1c49e5f1b084f550'


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

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 14:31:57
  Author: tredaelli
Revision: 129418

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

Added:
  ecryptfs-utils/repos/community-i686/PKGBUILD
(from rev 129417, ecryptfs-utils/trunk/PKGBUILD)
  ecryptfs-utils/repos/community-x86_64/PKGBUILD
(from rev 129417, ecryptfs-utils/trunk/PKGBUILD)
Deleted:
  ecryptfs-utils/repos/community-i686/PKGBUILD
  ecryptfs-utils/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-17 13:31:45 UTC (rev 129417)
+++ community-i686/PKGBUILD 2015-03-17 13:31:57 UTC (rev 129418)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Richard Murri ad...@richardmurri.com
-# Contributor: Michal Krenek mi...@sg1.cz
-
-pkgname=ecryptfs-utils
-pkgver=104
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc=Enterprise-class stacked cryptographic filesystem for Linux
-url=https://launchpad.net/ecryptfs;
-license=('GPL')
-makedepends=('swig' 'intltool' 'gettext' 'python2')
-depends=('nss' 'pam')
-optdepends=('python2: for python module')
-source=(http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/${pkgname}_${pkgver}.orig.tar.gz;
-
${pkgname}_${pkgver}.orig.tar.gz.sig::http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/..-${pkgname}_${pkgver}.orig.tar.gz.asc;)
-md5sums=('6ae93822bcf0d15470516c30a3deee32'
- 'SKIP')
-
-build() {
-  cd $srcdir/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-pamdir=/usr/lib/security PYTHON=python2
-  make
-}
-
-package() {
-  cd $srcdir/${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir/ rootsbindir='/usr/bin' install
-  chmod +s $pkgdir/usr/bin/mount.ecryptfs_private
-}

Copied: ecryptfs-utils/repos/community-i686/PKGBUILD (from rev 129417, 
ecryptfs-utils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-17 13:31:57 UTC (rev 129418)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Richard Murri ad...@richardmurri.com
+# Contributor: Michal Krenek mi...@sg1.cz
+
+pkgname=ecryptfs-utils
+pkgver=106
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc=Enterprise-class stacked cryptographic filesystem for Linux
+url=https://launchpad.net/ecryptfs;
+license=('GPL')
+makedepends=('swig' 'intltool' 'gettext' 'python2')
+depends=('nss' 'pam')
+optdepends=('python2: for python module')
+source=(http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/${pkgname}_${pkgver}.orig.tar.gz;
+
${pkgname}_${pkgver}.orig.tar.gz.sig::http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/..-${pkgname}_${pkgver}.orig.tar.gz.asc;)
+md5sums=('bff8052636f6be642f15c6be45a14ea3'
+ 'SKIP')
+validpgpkeys=('E2D9E1C5F9F5D59291F4607D95E64373F1529469')
+
+build() {
+  cd $srcdir/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-pamdir=/usr/lib/security PYTHON=python2
+  make
+}
+
+package() {
+  cd $srcdir/${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir/ rootsbindir='/usr/bin' install
+  chmod +s $pkgdir/usr/bin/mount.ecryptfs_private
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-03-17 13:31:45 UTC (rev 129417)
+++ community-x86_64/PKGBUILD   2015-03-17 13:31:57 UTC (rev 129418)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Richard Murri ad...@richardmurri.com
-# Contributor: Michal Krenek mi...@sg1.cz
-
-pkgname=ecryptfs-utils
-pkgver=104
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc=Enterprise-class stacked cryptographic filesystem for Linux
-url=https://launchpad.net/ecryptfs;
-license=('GPL')
-makedepends=('swig' 'intltool' 'gettext' 'python2')
-depends=('nss' 'pam')
-optdepends=('python2: for python module')
-source=(http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/${pkgname}_${pkgver}.orig.tar.gz;
-
${pkgname}_${pkgver}.orig.tar.gz.sig::http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/..-${pkgname}_${pkgver}.orig.tar.gz.asc;)
-md5sums=('6ae93822bcf0d15470516c30a3deee32'
- 'SKIP')
-
-build() {
-  cd $srcdir/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-pamdir=/usr/lib/security PYTHON=python2
-  make
-}
-
-package() {
-  cd $srcdir/${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir/ rootsbindir='/usr/bin' install
-  chmod +s $pkgdir/usr/bin/mount.ecryptfs_private
-}

Copied: ecryptfs-utils/repos/community-x86_64/PKGBUILD (from rev 129417, 
ecryptfs-utils/trunk/PKGBUILD

[arch-commits] Commit in (4 files)

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 15:09:33
  Author: tredaelli
Revision: 129419

New package: python2-hidapi

Added:
  python2-hidapi/
  python2-hidapi/repos/
  python2-hidapi/trunk/
  python2-hidapi/trunk/PKGBUILD

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

Added: python2-hidapi/trunk/PKGBUILD
===
--- python2-hidapi/trunk/PKGBUILD   (rev 0)
+++ python2-hidapi/trunk/PKGBUILD   2015-03-17 14:09:33 UTC (rev 129419)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=python2-hidapi
+pkgver=0.7.99.5
+_pkgver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc=A Cython interface to the hidapi from signal11/hidapi
+arch=('i686' 'x86_64')
+depends=('libusb' 'python2')
+makedepends=('cython2' 'python2-setuptools')
+url=https://github.com/trezor/cython-hidapi;
+license=('custom')
+source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
+sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
+
+build() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  echo You are free to use cython-hidapi code for any purpose.  
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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


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

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 15:13:08
  Author: tredaelli
Revision: 129422

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

Added:
  python2-hidapi/repos/community-i686/
  python2-hidapi/repos/community-i686/PKGBUILD
(from rev 129421, python2-hidapi/trunk/PKGBUILD)
  python2-hidapi/repos/community-x86_64/PKGBUILD
(from rev 129421, python2-hidapi/trunk/PKGBUILD)
Deleted:
  python2-hidapi/repos/community-x86_64/PKGBUILD

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

Copied: python2-hidapi/repos/community-i686/PKGBUILD (from rev 129421, 
python2-hidapi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-17 14:13:08 UTC (rev 129422)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=python2-hidapi
+pkgver=0.7.99.5
+_pkgver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc=A Cython interface to the hidapi from signal11/hidapi
+arch=('i686' 'x86_64')
+depends=('libusb' 'python2')
+makedepends=('cython2' 'python2-setuptools')
+url=https://github.com/trezor/cython-hidapi;
+license=('custom')
+source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
+sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
+
+build() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  echo You are free to use cython-hidapi code for any purpose.  
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-03-17 14:12:40 UTC (rev 129421)
+++ community-x86_64/PKGBUILD   2015-03-17 14:13:08 UTC (rev 129422)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Andy Weidenbaum archb...@gmail.com
-
-pkgname=python2-hidapi
-pkgver=0.7.99.5
-_pkgver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc=A Cython interface to the hidapi from signal11/hidapi
-arch=('i686' 'x86_64')
-depends=('libusb' 'python2')
-makedepends=('cython2' 'python2-setuptools')
-url=https://github.com/trezor/cython-hidapi;
-license=('custom')
-source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
-sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
-
-build() {
-  cd ${pkgname#python2-}-$_pkgver
-
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname#python2-}-$_pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
-  echo You are free to use cython-hidapi code for any purpose.  
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python2-hidapi/repos/community-x86_64/PKGBUILD (from rev 129421, 
python2-hidapi/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-03-17 14:13:08 UTC (rev 129422)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=python2-hidapi
+pkgver=0.7.99.5
+_pkgver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc=A Cython interface to the hidapi from signal11/hidapi
+arch=('i686' 'x86_64')
+depends=('libusb' 'python2')
+makedepends=('cython2' 'python2-setuptools')
+url=https://github.com/trezor/cython-hidapi;
+license=('custom')
+source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
+sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
+
+build() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  echo You are free to use cython-hidapi code for any purpose.  
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 15:27:48
  Author: tredaelli
Revision: 129424

archrelease: copy trunk to community-any

Added:
  python2-btchip/repos/community-any/
  python2-btchip/repos/community-any/PKGBUILD
(from rev 129423, python2-btchip/trunk/PKGBUILD)

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

Copied: python2-btchip/repos/community-any/PKGBUILD (from rev 129423, 
python2-btchip/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-03-17 14:27:48 UTC (rev 129424)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=python2-btchip
+pkgver=0.1.14
+pkgrel=1
+pkgdesc=Python library to communicate with BTChip dongle
+arch=('any')
+depends=('python2-hidapi')
+makedepends=('python2-setuptools')
+url=https://github.com/LedgerHQ/btchip-python;
+license=('Apache')
+source=(https://github.com/LedgerHQ/btchip-python/archive/v$pkgver.tar.gz)
+sha256sums=('6adfa69f18bc3ecff07a877dd46eff62dc747bd8cac491d882ba1bcb16bd16d5')
+
+build() {
+  cd btchip-python-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd btchip-python-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+}


[arch-commits] Commit in (4 files)

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 15:27:34
  Author: tredaelli
Revision: 129423

New package: python2-btchip

Added:
  python2-btchip/
  python2-btchip/repos/
  python2-btchip/trunk/
  python2-btchip/trunk/PKGBUILD

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

Added: python2-btchip/trunk/PKGBUILD
===
--- python2-btchip/trunk/PKGBUILD   (rev 0)
+++ python2-btchip/trunk/PKGBUILD   2015-03-17 14:27:34 UTC (rev 129423)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=python2-btchip
+pkgver=0.1.14
+pkgrel=1
+pkgdesc=Python library to communicate with BTChip dongle
+arch=('any')
+depends=('python2-hidapi')
+makedepends=('python2-setuptools')
+url=https://github.com/LedgerHQ/btchip-python;
+license=('Apache')
+source=(https://github.com/LedgerHQ/btchip-python/archive/v$pkgver.tar.gz)
+sha256sums=('6adfa69f18bc3ecff07a877dd46eff62dc747bd8cac491d882ba1bcb16bd16d5')
+
+build() {
+  cd btchip-python-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd btchip-python-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+}


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


[arch-commits] Commit in python2-hidapi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2015-03-17 Thread Timothy Redaelli
Date: Tuesday, March 17, 2015 @ 15:12:40
  Author: tredaelli
Revision: 129421

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

Added:
  python2-hidapi/repos/community-x86_64/PKGBUILD
(from rev 129420, python2-hidapi/trunk/PKGBUILD)
Deleted:
  python2-hidapi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-17 14:11:07 UTC (rev 129420)
+++ PKGBUILD2015-03-17 14:12:40 UTC (rev 129421)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Andy Weidenbaum archb...@gmail.com
-
-pkgname=python2-hidapi
-pkgver=0.7.99.5
-_pkgver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc=A Cython interface to the hidapi from signal11/hidapi
-arch=('i686' 'x86_64')
-depends=('libusb' 'python2')
-makedepends=('cython2' 'python2-setuptools')
-url=https://github.com/trezor/cython-hidapi;
-license=('custom')
-source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
-sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
-
-build() {
-  cd ${pkgname#python2-}-$_pkgver
-
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname#python2-}-$_pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
-  echo You are free to use cython-hidapi code for any purpose.  
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python2-hidapi/repos/community-x86_64/PKGBUILD (from rev 129420, 
python2-hidapi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-17 14:12:40 UTC (rev 129421)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=python2-hidapi
+pkgver=0.7.99.5
+_pkgver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc=A Cython interface to the hidapi from signal11/hidapi
+arch=('i686' 'x86_64')
+depends=('libusb' 'python2')
+makedepends=('cython2' 'python2-setuptools')
+url=https://github.com/trezor/cython-hidapi;
+license=('custom')
+source=(https://pypi.python.org/packages/source/h/${pkgname#python2-}/${pkgname#python2-}-$_pkgver.tar.gz)
+sha256sums=('9316c34c25a441e0c3f478a5a09a9e360e03d5bf5cf34e7f425419d3d3b6c8ac')
+
+build() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#python2-}-$_pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  install -dm 755 $pkgdir/usr/share/licenses/$pkgname
+  echo You are free to use cython-hidapi code for any purpose.  
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-03-16 Thread Timothy Redaelli
Date: Monday, March 16, 2015 @ 12:51:43
  Author: tredaelli
Revision: 129359

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 129357, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/configure-pixmap-fix.diff
(from rev 129357, wireshark/trunk/configure-pixmap-fix.diff)
  wireshark/repos/community-i686/wireshark-gtk.install
(from rev 129357, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-i686/wireshark-qt.install
(from rev 129357, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-i686/wireshark.install
(from rev 129357, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 129358, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/configure-pixmap-fix.diff
(from rev 129358, wireshark/trunk/configure-pixmap-fix.diff)
  wireshark/repos/community-x86_64/wireshark-gtk.install
(from rev 129358, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-x86_64/wireshark-qt.install
(from rev 129358, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 129358, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/PKGBUILD
  wireshark/repos/community-i686/wireshark-gtk.install
  wireshark/repos/community-i686/wireshark-qt.install
  wireshark/repos/community-i686/wireshark.install
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/wireshark-gtk.install
  wireshark/repos/community-x86_64/wireshark-qt.install
  wireshark/repos/community-x86_64/wireshark.install

+
 /PKGBUILD  |  196 +++
 /wireshark-gtk.install |   24 +++
 /wireshark-qt.install  |   22 +++
 /wireshark.install |   36 
 community-i686/PKGBUILD|   95 -
 community-i686/configure-pixmap-fix.diff   |   14 +
 community-i686/wireshark-gtk.install   |   12 -
 community-i686/wireshark-qt.install|   11 -
 community-i686/wireshark.install   |   18 --
 community-x86_64/PKGBUILD  |   95 -
 community-x86_64/configure-pixmap-fix.diff |   14 +
 community-x86_64/wireshark-gtk.install |   12 -
 community-x86_64/wireshark-qt.install  |   11 -
 community-x86_64/wireshark.install |   18 --
 14 files changed, 306 insertions(+), 272 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-16 11:51:35 UTC (rev 129358)
+++ community-i686/PKGBUILD 2015-03-16 11:51:43 UTC (rev 129359)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Guillaume ALAUX guilla...@archlinux.org
-# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
-pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
-pkgbase=wireshark
-pkgver=1.12.4
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('qt4' 'gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
- 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
-url='http://www.wireshark.org/'
-source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha1sums=('dbbd4090c02fe170f35b26fa26d8aba0b399c659')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed -i 's/$(AM_V_RCC)rcc/-qt4/p' ui/qt/Makefile.am
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt \
-  --with-gtk3=yes \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('krb5' 'libgcrypt' 'libcap' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  #wireshark uid group is 150
-  chgrp 150 ${pkgdir}/usr/bin/dumpcap
-  chmod 754 ${pkgdir}/usr/bin/dumpcap
-  rm ${pkgdir}/usr/bin/wireshark ${pkgdir}/usr/bin/wireshark-qt
-
-  # Headers
-  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
-
-  install -m644 color.h config.h register.h ws_symbol_export.h 
${pkgdir}/usr/include/${pkgbase}
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
-  done
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('gtk3' 'portaudio' 'wireshark-cli' 'desktop-file-utils' 
'hicolor-icon-theme')
-  install=wireshark

[arch-commits] Commit in wireshark/trunk (PKGBUILD configure-pixmap-fix.diff)

2015-03-16 Thread Timothy Redaelli
Date: Monday, March 16, 2015 @ 12:51:26
  Author: tredaelli
Revision: 129357

upgpkg: wireshark 1.12.4-2

FS#44169 (not reproducible here)

Added:
  wireshark/trunk/configure-pixmap-fix.diff
Modified:
  wireshark/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++---
 configure-pixmap-fix.diff |   14 ++
 2 files changed, 20 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-16 11:51:19 UTC (rev 129356)
+++ PKGBUILD2015-03-16 11:51:26 UTC (rev 129357)
@@ -5,18 +5,21 @@
 pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
 pkgbase=wireshark
 pkgver=1.12.4
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL2')
 makedepends=('qt4' 'gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
  'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
 url='http://www.wireshark.org/'
-source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha1sums=('dbbd4090c02fe170f35b26fa26d8aba0b399c659')
+source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
+configure-pixmap-fix.diff)
+sha1sums=('dbbd4090c02fe170f35b26fa26d8aba0b399c659'
+  'c383bad83442d75f44afe1737848b9dee4f35b8f')
 
 prepare() {
   cd ${pkgbase}-${pkgver}
   sed -i 's/$(AM_V_RCC)rcc/-qt4/p' ui/qt/Makefile.am
+  patch -uNp0 -i ../configure-pixmap-fix.diff
 }
 
 build() {

Added: configure-pixmap-fix.diff
===
--- configure-pixmap-fix.diff   (rev 0)
+++ configure-pixmap-fix.diff   2015-03-16 11:51:26 UTC (rev 129357)
@@ -0,0 +1,14 @@
+--- configure.ac   2015-03-14 10:52:22.187482157 -0500
 configure.ac   2015-03-14 10:53:01.040495936 -0500
+@@ -1531,7 +1531,10 @@
+ if test $have_gtk = yes ; then
+   # If we have GTK then add flags for it.
+ 
+-  CPPFLAGS=-DGDK_PIXBUF_DISABLE_DEPRECATED $CPPFLAGS
++  # 2015-03-04 - disabled to fix SegFault, see
++  # https://trac.macports.org/ticket/46850
++  # https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195980#c45
++  #CPPFLAGS=-DGDK_PIXBUF_DISABLE_DEPRECATED $CPPFLAGS
+   CPPFLAGS=-DGDK_DISABLE_DEPRECATED $CPPFLAGS
+   if test \( $gtk_config_major_version -eq 3 -a $gtk_config_minor_version 
-ge 10 \) ; then
+   ## Allow use of deprecated  disable deprecated warnings if Gtk 
= 3.10;


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

2015-03-12 Thread Timothy Redaelli
Date: Wednesday, March 11, 2015 @ 18:44:20
  Author: tredaelli
Revision: 129080

upgpkg: electrum 2.0.2-1

Modified:
  electrum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 17:20:40 UTC (rev 129079)
+++ PKGBUILD2015-03-11 17:44:20 UTC (rev 129080)
@@ -5,7 +5,7 @@
 # http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
 
 pkgname=electrum
-pkgver=2.0.1
+pkgver=2.0.2
 pkgrel=1
 pkgdesc=Lightweight Bitcoin wallet
 arch=('any')
@@ -12,13 +12,15 @@
 depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
  'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
 makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
-optdepends=('python2-zbar: QR code reading support')
+optdepends=('python2-btchip: BTChip hardware wallet support'
+'python2-matplotlib: plot transaction history in graphical mode'
+'zbar: QR code reading support')
 url=https://electrum.org;
 license=('GPL3')
 source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc})
-md5sums=('409e5bff5b9e83f65724a8127d344055'
+md5sums=('4e940304cc7b5b3f297250d220b2825f'
  'SKIP')
-sha256sums=('562dcb53ed75790d63506b68ffaf51c49bdd6c735762dcaa1b8cca52825e35bf'
+sha256sums=('65fa10adb4d49fb94daf7c7dc3ec13813107f728039d11c5aa66e5f3b53a458c'
 'SKIP')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 


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

2015-03-11 Thread Timothy Redaelli
Date: Wednesday, March 11, 2015 @ 18:20:26
  Author: tredaelli
Revision: 129078

upgpkg: wireshark 1.12.4-1

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 14:11:55 UTC (rev 129077)
+++ PKGBUILD2015-03-11 17:20:26 UTC (rev 129078)
@@ -4,7 +4,7 @@
 # Contributor: Florian Pritz bluewind at jabber dot ccc dot de
 pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
 pkgbase=wireshark
-pkgver=1.12.3
+pkgver=1.12.4
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -12,7 +12,7 @@
  'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
 url='http://www.wireshark.org/'
 source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha1sums=('44ad77b6e80f41ba34ac0eaf477b81cb1345ceed')
+sha1sums=('dbbd4090c02fe170f35b26fa26d8aba0b399c659')
 
 prepare() {
   cd ${pkgbase}-${pkgver}


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

2015-03-11 Thread Timothy Redaelli
Date: Wednesday, March 11, 2015 @ 18:20:40
  Author: tredaelli
Revision: 129079

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 129078, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/wireshark-gtk.install
(from rev 129078, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-i686/wireshark-qt.install
(from rev 129078, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-i686/wireshark.install
(from rev 129078, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 129078, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/wireshark-gtk.install
(from rev 129078, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-x86_64/wireshark-qt.install
(from rev 129078, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 129078, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/PKGBUILD
  wireshark/repos/community-i686/wireshark-gtk.install
  wireshark/repos/community-i686/wireshark-qt.install
  wireshark/repos/community-i686/wireshark.install
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/wireshark-gtk.install
  wireshark/repos/community-x86_64/wireshark-qt.install
  wireshark/repos/community-x86_64/wireshark.install

+
 /PKGBUILD  |  190 +++
 /wireshark-gtk.install |   24 +++
 /wireshark-qt.install  |   22 +++
 /wireshark.install |   36 +
 community-i686/PKGBUILD|   95 ---
 community-i686/wireshark-gtk.install   |   12 -
 community-i686/wireshark-qt.install|   11 -
 community-i686/wireshark.install   |   18 --
 community-x86_64/PKGBUILD  |   95 ---
 community-x86_64/wireshark-gtk.install |   12 -
 community-x86_64/wireshark-qt.install  |   11 -
 community-x86_64/wireshark.install |   18 --
 12 files changed, 272 insertions(+), 272 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-11 17:20:26 UTC (rev 129078)
+++ community-i686/PKGBUILD 2015-03-11 17:20:40 UTC (rev 129079)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Guillaume ALAUX guilla...@archlinux.org
-# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
-pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
-pkgbase=wireshark
-pkgver=1.12.3
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('qt4' 'gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
- 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
-url='http://www.wireshark.org/'
-source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha1sums=('44ad77b6e80f41ba34ac0eaf477b81cb1345ceed')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed -i 's/$(AM_V_RCC)rcc/-qt4/p' ui/qt/Makefile.am
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt \
-  --with-gtk3=yes \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('krb5' 'libgcrypt' 'libcap' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  #wireshark uid group is 150
-  chgrp 150 ${pkgdir}/usr/bin/dumpcap
-  chmod 754 ${pkgdir}/usr/bin/dumpcap
-  rm ${pkgdir}/usr/bin/wireshark ${pkgdir}/usr/bin/wireshark-qt
-
-  # Headers
-  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
-
-  install -m644 color.h config.h register.h ws_symbol_export.h 
${pkgdir}/usr/include/${pkgbase}
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
-  done
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('gtk3' 'portaudio' 'wireshark-cli' 'desktop-file-utils' 
'hicolor-icon-theme')
-  install=wireshark-gtk.install
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  install -Dm755 .libs/wireshark ${pkgdir}/usr/bin/wireshark
-  for d in 16 32 48; do
-install -Dm644 image/hi${d}-app-wireshark.png  \
-   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
-  done
-
-  for d in 16 24 32 48 64 128 256 ; do
-install -Dm644 image

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

2015-03-11 Thread Timothy Redaelli
Date: Wednesday, March 11, 2015 @ 18:44:30
  Author: tredaelli
Revision: 129081

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   94 +++--
 electrum.install |   22 ++--
 2 files changed, 59 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 17:44:20 UTC (rev 129080)
+++ PKGBUILD2015-03-11 17:44:30 UTC (rev 129081)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Andy Weidenbaum archb...@gmail.com
-# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
-# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
-
-pkgname=electrum
-pkgver=2.0.1
-pkgrel=1
-pkgdesc=Lightweight Bitcoin wallet
-arch=('any')
-depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
- 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
-makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
-optdepends=('python2-zbar: QR code reading support')
-url=https://electrum.org;
-license=('GPL3')
-source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc})
-md5sums=('409e5bff5b9e83f65724a8127d344055'
- 'SKIP')
-sha256sums=('562dcb53ed75790d63506b68ffaf51c49bdd6c735762dcaa1b8cca52825e35bf'
-'SKIP')
-validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
-
-provides=('electrum')
-install=electrum.install
-
-prepare() {
-  cd ${pkgname^}-${pkgver}
-
-  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
-}
-
-build() {
-  cd ${pkgname^}-${pkgver}
-
-  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname^}-${pkgver}
-
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: electrum/repos/community-any/PKGBUILD (from rev 129080, 
electrum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 17:44:30 UTC (rev 129081)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
+# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
+
+pkgname=electrum
+pkgver=2.0.2
+pkgrel=1
+pkgdesc=Lightweight Bitcoin wallet
+arch=('any')
+depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
+ 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
+makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
+optdepends=('python2-btchip: BTChip hardware wallet support'
+'python2-matplotlib: plot transaction history in graphical mode'
+'zbar: QR code reading support')
+url=https://electrum.org;
+license=('GPL3')
+source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc})
+md5sums=('4e940304cc7b5b3f297250d220b2825f'
+ 'SKIP')
+sha256sums=('65fa10adb4d49fb94daf7c7dc3ec13813107f728039d11c5aa66e5f3b53a458c'
+'SKIP')
+validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
+
+provides=('electrum')
+install=electrum.install
+
+prepare() {
+  cd ${pkgname^}-${pkgver}
+
+  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
+}
+
+build() {
+  cd ${pkgname^}-${pkgver}
+
+  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname^}-${pkgver}
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}

Deleted: electrum.install
===
--- electrum.install2015-03-11 17:44:20 UTC (rev 129080)
+++ electrum.install2015-03-11 17:44:30 UTC (rev 129081)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: electrum/repos/community-any/electrum.install (from rev 129080, 
electrum/trunk/electrum.install)
===
--- electrum.install(rev 0)
+++ electrum.install2015-03-11 17:44:30 UTC (rev 129081)
@@ -0,0 +1,11 @@
+post_install

[arch-commits] Commit in (4 files)

2015-03-09 Thread Timothy Redaelli
Date: Monday, March 9, 2015 @ 14:57:44
  Author: tredaelli
Revision: 128980

New package: python2-zbar

Added:
  python2-zbar/
  python2-zbar/repos/
  python2-zbar/trunk/
  python2-zbar/trunk/PKGBUILD

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

Added: python2-zbar/trunk/PKGBUILD
===
--- python2-zbar/trunk/PKGBUILD (rev 0)
+++ python2-zbar/trunk/PKGBUILD 2015-03-09 13:57:44 UTC (rev 128980)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+# Contributor: Giorgio Gilestro gior...@gilest.ro
+# Contributor: Valentin Huélamo vhuel...@gmail.com
+
+pkgname=python2-zbar
+pkgver=0.10
+pkgrel=5
+pkgdesc=Python bindings for zbar QR code  bar code reader
+arch=('any')
+depends=('python2' 'zbar')
+makedepends=('python2-setuptools')
+url=https://pypi.python.org/pypi/zbar/;
+license=('LGPL')
+source=(https://pypi.python.org/packages/source/z/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz
+
https://pypi.python.org/packages/source/z/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz.asc)
+md5sums=('09568253d65e13e252987e3fd02e5ec8'
+ 'cc3cc73b96ef9773f1c184d68f2077ab')
+sha256sums=('5d0dad77dbca8822a4689c546f598f28030321efb14fa36ac5e409d181a0d9dd'
+'ecff67e9505b6f7773beac1f6149d661566e3b083db32b61a0e58eba9172f3d2')
+
+prepare() {
+  cd $srcdir/${pkgname#python2-}-$pkgver
+
+  msg 'Fixing Python version...'
+  find . -type f -print0 | xargs -0 sed -i 
's#/usr/bin/python#/usr/bin/python2#g'
+  find . -type f -print0 | xargs -0 sed -i 's#/usr/bin/env python#/usr/bin/env 
python2#g'
+}
+
+build() {
+  cd ${pkgname#python2-}-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#python2-}-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1 
+  rm ${pkgdir}/usr/lib/python2.7/site-packages/zbar.so
+}


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


[arch-commits] Commit in (python2-zbar)

2015-03-09 Thread Timothy Redaelli
Date: Monday, March 9, 2015 @ 15:18:29
  Author: tredaelli
Revision: 128981

Useless, included in zbar package

Deleted:
  python2-zbar/


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

2015-03-09 Thread Timothy Redaelli
Date: Monday, March 9, 2015 @ 17:13:42
  Author: tredaelli
Revision: 128982

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-09 14:18:29 UTC (rev 128981)
+++ community-i686/PKGBUILD 2015-03-09 16:13:42 UTC (rev 128982)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: carstene1ns arch carsten-teibes de - http://git.io/ctPKG
-# Contributor: Jkkyll Wu adaptee at gmail [dot] com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
-
-pkgname=qbittorrent
-pkgver=3.1.12
-pkgrel=1
-pkgdesc=A bittorrent client written in C++ / Qt4 using the good libtorrent 
library
-arch=('i686' 'x86_64')
-url=http://www.qbittorrent.org;
-license=('custom' 'GPL')
-depends=('qt4' 'libtorrent-rasterbar')
-makedepends=('boost')
-optdepends=('python: needed for torrent search tab')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz;)
-sha256sums=('d5d5b27958297f0b14cf03af8dd24a0d2a990e108c9a7a6159e4a2fbbc83')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make INSTALL_ROOT=$pkgdir/ install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: qbittorrent/repos/community-i686/PKGBUILD (from rev 128981, 
qbittorrent/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-09 16:13:42 UTC (rev 128982)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: carstene1ns arch carsten-teibes de - http://git.io/ctPKG
+# Contributor: Jkkyll Wu adaptee at gmail [dot] com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
+
+pkgname=qbittorrent
+pkgver=3.1.12
+pkgrel=1
+pkgdesc=A bittorrent client written in C++ / Qt4 using the good libtorrent 
library
+arch=('i686' 'x86_64')
+url=http://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('qt4' 'libtorrent-rasterbar')
+makedepends=('boost')
+optdepends=('python: needed for torrent search tab')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz;)
+sha256sums=('d5d5b27958297f0b14cf03af8dd24a0d2a990e108c9a7a6159e4a2fbbc83')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make INSTALL_ROOT=$pkgdir/ install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Deleted: community-i686/qbittorrent.install
===
--- community-i686/qbittorrent.install  2015-03-09 14:18:29 UTC (rev 128981)
+++ community-i686/qbittorrent.install  2015-03-09 16:13:42 UTC (rev 128982)
@@ -1,13 +0,0 @@
-
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: qbittorrent/repos/community-i686/qbittorrent.install (from rev 128981, 
qbittorrent/trunk/qbittorrent.install)
===
--- community-i686/qbittorrent.install  (rev 0)
+++ community-i686/qbittorrent.install  2015-03-09 16:13:42 UTC (rev 128982)
@@ -0,0 +1,13 @@
+
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q

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

2015-03-06 Thread Timothy Redaelli
Date: Friday, March 6, 2015 @ 11:45:57
  Author: tredaelli
Revision: 128795

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   92 ++---
 electrum.install |   22 ++--
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-06 10:45:50 UTC (rev 128794)
+++ PKGBUILD2015-03-06 10:45:57 UTC (rev 128795)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Andy Weidenbaum archb...@gmail.com
-# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
-# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
-
-pkgname=electrum
-pkgver=2.0
-pkgrel=2
-pkgdesc=Lightweight Bitcoin wallet
-arch=('any')
-depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
- 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
-makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
-optdepends=('python2-zbar: QR code reading support')
-url=https://electrum.org;
-license=('GPL3')
-source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc})
-md5sums=('ad9db1c037babe0829c55e3a3c1f7630'
- 'SKIP')
-sha256sums=('69942f9edf4067e4a9b6cb66e7a5ae17215bab295f83647999656f847481bdcf'
-'SKIP')
-validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
-
-provides=('electrum')
-install=electrum.install
-
-prepare() {
-  cd ${pkgname^}-${pkgver}
-
-  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
-}
-
-build() {
-  cd ${pkgname^}-${pkgver}
-
-  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname^}-${pkgver}
-
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: electrum/repos/community-any/PKGBUILD (from rev 128794, 
electrum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-06 10:45:57 UTC (rev 128795)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
+# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
+
+pkgname=electrum
+pkgver=2.0.1
+pkgrel=1
+pkgdesc=Lightweight Bitcoin wallet
+arch=('any')
+depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
+ 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
+makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
+optdepends=('python2-zbar: QR code reading support')
+url=https://electrum.org;
+license=('GPL3')
+source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc})
+md5sums=('409e5bff5b9e83f65724a8127d344055'
+ 'SKIP')
+sha256sums=('562dcb53ed75790d63506b68ffaf51c49bdd6c735762dcaa1b8cca52825e35bf'
+'SKIP')
+validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
+
+provides=('electrum')
+install=electrum.install
+
+prepare() {
+  cd ${pkgname^}-${pkgver}
+
+  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
+}
+
+build() {
+  cd ${pkgname^}-${pkgver}
+
+  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname^}-${pkgver}
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}

Deleted: electrum.install
===
--- electrum.install2015-03-06 10:45:50 UTC (rev 128794)
+++ electrum.install2015-03-06 10:45:57 UTC (rev 128795)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: electrum/repos/community-any/electrum.install (from rev 128794, 
electrum/trunk/electrum.install)
===
--- electrum.install(rev 0)
+++ electrum.install2015-03-06 10:45:57 UTC (rev 128795)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-03-06 Thread Timothy Redaelli
Date: Friday, March 6, 2015 @ 11:45:50
  Author: tredaelli
Revision: 128794

upgpkg: electrum 2.0.1-1

Modified:
  electrum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-06 10:04:22 UTC (rev 128793)
+++ PKGBUILD2015-03-06 10:45:50 UTC (rev 128794)
@@ -5,8 +5,8 @@
 # http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
 
 pkgname=electrum
-pkgver=2.0
-pkgrel=2
+pkgver=2.0.1
+pkgrel=1
 pkgdesc=Lightweight Bitcoin wallet
 arch=('any')
 depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
@@ -16,9 +16,9 @@
 url=https://electrum.org;
 license=('GPL3')
 source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc})
-md5sums=('ad9db1c037babe0829c55e3a3c1f7630'
+md5sums=('409e5bff5b9e83f65724a8127d344055'
  'SKIP')
-sha256sums=('69942f9edf4067e4a9b6cb66e7a5ae17215bab295f83647999656f847481bdcf'
+sha256sums=('562dcb53ed75790d63506b68ffaf51c49bdd6c735762dcaa1b8cca52825e35bf'
 'SKIP')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 


[arch-commits] Commit in (5 files)

2015-03-06 Thread Timothy Redaelli
Date: Friday, March 6, 2015 @ 19:03:34
  Author: tredaelli
Revision: 128826

New package: qbittorrent

Added:
  qbittorrent/
  qbittorrent/repos/
  qbittorrent/trunk/
  qbittorrent/trunk/PKGBUILD
  qbittorrent/trunk/qbittorrent.install

-+
 PKGBUILD|   35 +++
 qbittorrent.install |   13 +
 2 files changed, 48 insertions(+)

Added: qbittorrent/trunk/PKGBUILD
===
--- qbittorrent/trunk/PKGBUILD  (rev 0)
+++ qbittorrent/trunk/PKGBUILD  2015-03-06 18:03:34 UTC (rev 128826)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: carstene1ns arch carsten-teibes de - http://git.io/ctPKG
+# Contributor: Jkkyll Wu adaptee at gmail [dot] com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
+
+pkgname=qbittorrent
+pkgver=3.1.12
+pkgrel=1
+pkgdesc=A bittorrent client written in C++ / Qt4 using the good libtorrent 
library
+arch=('i686' 'x86_64')
+url=http://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('qt4' 'libtorrent-rasterbar')
+makedepends=('boost')
+optdepends=('python: needed for torrent search tab')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz;)
+sha256sums=('d5d5b27958297f0b14cf03af8dd24a0d2a990e108c9a7a6159e4a2fbbc83')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make INSTALL_ROOT=$pkgdir/ install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}


Property changes on: qbittorrent/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: qbittorrent/trunk/qbittorrent.install
===
--- qbittorrent/trunk/qbittorrent.install   (rev 0)
+++ qbittorrent/trunk/qbittorrent.install   2015-03-06 18:03:34 UTC (rev 
128826)
@@ -0,0 +1,13 @@
+
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-03-06 Thread Timothy Redaelli
Date: Friday, March 6, 2015 @ 19:08:22
  Author: tredaelli
Revision: 128829

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

Added:
  qbittorrent/repos/community-i686/
  qbittorrent/repos/community-i686/PKGBUILD
(from rev 128828, qbittorrent/trunk/PKGBUILD)
  qbittorrent/repos/community-i686/qbittorrent.install
(from rev 128828, qbittorrent/trunk/qbittorrent.install)
  qbittorrent/repos/community-x86_64/
  qbittorrent/repos/community-x86_64/PKGBUILD
(from rev 128828, qbittorrent/trunk/PKGBUILD)
  qbittorrent/repos/community-x86_64/qbittorrent.install
(from rev 128828, qbittorrent/trunk/qbittorrent.install)

--+
 community-i686/PKGBUILD  |   35 +
 community-i686/qbittorrent.install   |   13 
 community-x86_64/PKGBUILD|   35 +
 community-x86_64/qbittorrent.install |   13 
 4 files changed, 96 insertions(+)

Copied: qbittorrent/repos/community-i686/PKGBUILD (from rev 128828, 
qbittorrent/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-06 18:08:22 UTC (rev 128829)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: carstene1ns arch carsten-teibes de - http://git.io/ctPKG
+# Contributor: Jkkyll Wu adaptee at gmail [dot] com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
+
+pkgname=qbittorrent
+pkgver=3.1.12
+pkgrel=1
+pkgdesc=A bittorrent client written in C++ / Qt4 using the good libtorrent 
library
+arch=('i686' 'x86_64')
+url=http://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('qt4' 'libtorrent-rasterbar')
+makedepends=('boost')
+optdepends=('python: needed for torrent search tab')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz;)
+sha256sums=('d5d5b27958297f0b14cf03af8dd24a0d2a990e108c9a7a6159e4a2fbbc83')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make INSTALL_ROOT=$pkgdir/ install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: qbittorrent/repos/community-i686/qbittorrent.install (from rev 128828, 
qbittorrent/trunk/qbittorrent.install)
===
--- community-i686/qbittorrent.install  (rev 0)
+++ community-i686/qbittorrent.install  2015-03-06 18:08:22 UTC (rev 128829)
@@ -0,0 +1,13 @@
+
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: qbittorrent/repos/community-x86_64/PKGBUILD (from rev 128828, 
qbittorrent/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-03-06 18:08:22 UTC (rev 128829)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: carstene1ns arch carsten-teibes de - http://git.io/ctPKG
+# Contributor: Jkkyll Wu adaptee at gmail [dot] com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
+
+pkgname=qbittorrent
+pkgver=3.1.12
+pkgrel=1
+pkgdesc=A bittorrent client written in C++ / Qt4 using the good libtorrent 
library
+arch=('i686' 'x86_64')
+url=http://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('qt4' 'libtorrent-rasterbar')
+makedepends=('boost')
+optdepends=('python: needed for torrent search tab')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz;)
+sha256sums=('d5d5b27958297f0b14cf03af8dd24a0d2a990e108c9a7a6159e4a2fbbc83')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make INSTALL_ROOT=$pkgdir/ install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: qbittorrent/repos/community-x86_64/qbittorrent.install (from rev 
128828, qbittorrent/trunk/qbittorrent.install)
===
--- community-x86_64/qbittorrent.install(rev 0)
+++ community-x86_64/qbittorrent.install2015-03-06 18:08:22 UTC (rev 
128829)
@@ -0,0 +1,13 @@
+
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-03-03 Thread Timothy Redaelli
Date: Tuesday, March 3, 2015 @ 16:23:37
  Author: tredaelli
Revision: 128636

archrelease: copy trunk to community-any

Modified:
  electrum/repos/community-any/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-03 15:20:22 UTC (rev 128635)
+++ PKGBUILD2015-03-03 15:23:37 UTC (rev 128636)
@@ -6,11 +6,11 @@
 
 pkgname=electrum
 pkgver=2.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Lightweight Bitcoin wallet
 arch=('any')
-depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-qrcode' 'python2-protobuf'
-'python2-tlslite' 'python2-dnspython' 'python2-pyqt4' 'python2-sip' 
'python2-slowaes')
+depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
+ 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
 makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
 optdepends=('python2-zbar: QR code reading support')
 url=https://electrum.org;


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

2015-03-03 Thread Timothy Redaelli
Date: Tuesday, March 3, 2015 @ 16:20:22
  Author: tredaelli
Revision: 128635

upgpkg: electrum 2.0-2

FS#44035

Modified:
  electrum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-03 15:13:34 UTC (rev 128634)
+++ PKGBUILD2015-03-03 15:20:22 UTC (rev 128635)
@@ -6,11 +6,11 @@
 
 pkgname=electrum
 pkgver=2.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Lightweight Bitcoin wallet
 arch=('any')
-depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-qrcode' 'python2-protobuf'
-'python2-tlslite' 'python2-dnspython' 'python2-pyqt4' 'python2-sip' 
'python2-slowaes')
+depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
+ 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
 makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
 optdepends=('python2-zbar: QR code reading support')
 url=https://electrum.org;


[arch-commits] Commit in (vidalia)

2015-03-03 Thread Timothy Redaelli
Date: Tuesday, March 3, 2015 @ 17:53:39
  Author: tredaelli
Revision: 128645

Remove vidalia (deprecated by upstream)

Deleted:
  vidalia/


[arch-commits] Commit in electrum/trunk (5 files)

2015-03-03 Thread Timothy Redaelli
Date: Tuesday, March 3, 2015 @ 12:39:46
  Author: tredaelli
Revision: 128613

upgpkg: electrum 2.0-1

Modified:
  electrum/trunk/PKGBUILD
  electrum/trunk/electrum.install
Deleted:
  electrum/trunk/gtk3.patch
  electrum/trunk/pyqt4-4.11.patch
  electrum/trunk/setup.py.patch

--+
 PKGBUILD |   37 +++--
 electrum.install |2 +-
 gtk3.patch   |   13 -
 pyqt4-4.11.patch |   13 -
 setup.py.patch   |   11 ---
 5 files changed, 12 insertions(+), 64 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-03 11:31:20 UTC (rev 128612)
+++ PKGBUILD2015-03-03 11:39:46 UTC (rev 128613)
@@ -5,31 +5,21 @@
 # http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
 
 pkgname=electrum
-pkgver=1.9.8
-pkgrel=4
+pkgver=2.0
+pkgrel=1
 pkgdesc=Lightweight Bitcoin wallet
 arch=('any')
-depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-pyqt4' 'python2-sip' 
'python2-slowaes')
-makedepends=('gettext' 'python2-pycurl' 'python2-setuptools')
-optdepends=('desktop-file-utils: update desktop database'
-'pygtk: GTK user interface'
-'python2-zbar: QR code reading support')
+depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-qrcode' 'python2-protobuf'
+'python2-tlslite' 'python2-dnspython' 'python2-pyqt4' 'python2-sip' 
'python2-slowaes')
+makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
+optdepends=('python2-zbar: QR code reading support')
 url=https://electrum.org;
 license=('GPL3')
-source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc}
-setup.py.patch
-gtk3.patch
-pyqt4-4.11.patch)
-md5sums=('e3918fec0254267f08e41a1fb8691382'
- 'SKIP'
- '562f61b12e8bc80de23fb56b8ce56fe7'
- 'b74882fe1c8319faf8f7d1ecbb6e30f6'
- '0e865e4f0337f9a6acef6d15581627ed')
-sha256sums=('8fc144a32013e4a747fea27fff981762a6b9e14cde9ffb405c4c721975d846ff'
-'SKIP'
-'5f8d846dedce20601f3131e687bd2dc54ca8df0137cbdaa1b06eab11eb6a52da'
-'ba97ed1716af25fb64e439415cbe55aadac3d6528ab29f7a0ea0f93b5a539299'
-'2542b0891b3e25674b4ab0755b4bf23523144b3e86dfb6281f852117e2e3d973')
+source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc})
+md5sums=('ad9db1c037babe0829c55e3a3c1f7630'
+ 'SKIP')
+sha256sums=('69942f9edf4067e4a9b6cb66e7a5ae17215bab295f83647999656f847481bdcf'
+'SKIP')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 
 provides=('electrum')
@@ -38,10 +28,6 @@
 prepare() {
   cd ${pkgname^}-${pkgver}
 
-  patch -p1  ${srcdir}/setup.py.patch
-  patch -p1  ${srcdir}/gtk3.patch
-  patch -p1  ${srcdir}/pyqt4-4.11.patch
-
   find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
   find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
 }
@@ -49,7 +35,6 @@
 build() {
   cd ${pkgname^}-${pkgver}
 
-  python2 mki18n.py
   pyrcc4 icons.qrc -o gui/qt/icons_rc.py
   python2 setup.py build
 }

Modified: electrum.install
===
--- electrum.install2015-03-03 11:31:20 UTC (rev 128612)
+++ electrum.install2015-03-03 11:39:46 UTC (rev 128613)
@@ -7,5 +7,5 @@
 }
 
 post_remove() {
-  update-desktop-database -q
+  post_install
 }

Deleted: gtk3.patch
===
--- gtk3.patch  2015-03-03 11:31:20 UTC (rev 128612)
+++ gtk3.patch  2015-03-03 11:39:46 UTC (rev 128613)
@@ -1,13 +0,0 @@
-diff --git a/gui/gtk.py b/gui/gtk.py
-index cd9178f8..fe302181 100644
 a/gui/gtk.py
-+++ b/gui/gtk.py
-@@ -87,7 +87,7 @@ def restore_create_dialog():
- # ask if the user wants to create a new wallet, or recover from a seed. 
- # if he wants to recover, and nothing is found, do not create wallet
- dialog = Gtk.Dialog(electrum, parent=None, 
--
flags=Gtk.DialogFlags.MODAL|Gtk.DialogFlags.NO_SEPARATOR, 
-+flags=Gtk.DialogFlags.MODAL,
- buttons= (create, 0, restore,1, cancel,2)  )
- 
- label = Gtk.Label(Wallet file not found.\nDo you want to create a new 
wallet,\n or to restore an existing one?  )

Deleted: pyqt4-4.11.patch
===
--- pyqt4-4.11.patch2015-03-03 11:31:20 UTC (rev 128612)
+++ pyqt4-4.11.patch2015-03-03 11:39:46 UTC (rev 128613)
@@ -1,13 +0,0 @@
 Electrum-1.9.8/gui/qt/installwizard.py.orig2014-09-19 
22:05:42.536699757 +
-+++ Electrum-1.9.8/gui/qt/installwizard.py 2014-09-19 22:06:48.993369698 
+
-@@ -31,8 +31,8 @@
- def set_layout(self, layout):
- w = QWidget()
- w.setLayout(layout)
--self.stack.setCurrentIndex(self.stack.addWidget(w))
--
-+self.stack.addWidget(w)
-+

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

2015-03-03 Thread Timothy Redaelli
Date: Tuesday, March 3, 2015 @ 12:25:03
  Author: tredaelli
Revision: 128610

archrelease: copy trunk to community-any

Added:
  python2-qrcode/repos/community-any/
  python2-qrcode/repos/community-any/PKGBUILD
(from rev 128609, python2-qrcode/trunk/PKGBUILD)

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

Copied: python2-qrcode/repos/community-any/PKGBUILD (from rev 128609, 
python2-qrcode/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-03-03 11:25:03 UTC (rev 128610)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Francois Boulogne fboulogne at april dot org
+
+pkgname=python2-qrcode
+pkgver=5.1
+pkgrel=1
+pkgdesc=Python library to generate QR codes
+arch=('any')
+url=https://github.com/lincolnloop/python-qrcode;
+license=('custom')
+depends=('python2-pillow' 'python2-six')
+makedepends=('python2-setuptools')
+source=(http://pypi.python.org/packages/source/q/qrcode/qrcode-${pkgver}.tar.gz)
+
+prepare() {
+  find qrcode-$pkgver -type f -exec sed -i 
's#/usr/bin/python#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
+}
+
+package() {
+  cd qrcode-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim:ts=2:sw=2:et:
+md5sums=('1f20223419bbf992208ada0c12ed4577')


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

2015-03-03 Thread Timothy Redaelli
Date: Tuesday, March 3, 2015 @ 12:31:20
  Author: tredaelli
Revision: 128612

archrelease: copy trunk to community-any

Added:
  python2-tlslite/repos/community-any/
  python2-tlslite/repos/community-any/PKGBUILD
(from rev 128611, python2-tlslite/trunk/PKGBUILD)

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

Copied: python2-tlslite/repos/community-any/PKGBUILD (from rev 128611, 
python2-tlslite/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-03-03 11:31:20 UTC (rev 128612)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=python2-tlslite
+pkgver=0.4.8
+pkgrel=1
+pkgdesc=SSL/TLS library in pure Python supporting RSA and SRP ciphersuites
+arch=('any')
+depends=('python2')
+makedepends=('python2-setuptools')
+optdepends=('python2-crypto: fast RSA operations and fast ciphers'
+'python2-gmpy: fast RSA and SRP operations'
+'python2-m2crypto: fast RSA operations and fast ciphers'
+'python2-tackpy: run an X.509 server using TACK')
+url=http://trevp.net/tlslite;
+license=('custom')
+options=(!emptydirs)
+source=(https://pypi.python.org/packages/source/t/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz)
+sha256sums=('d9b447048a322c70df800f540ab577c93ecf20de52c0a02c8621176e4733bdbb')
+
+prepare(){
+  cd ${pkgname#python2-}-$pkgver
+
+  find . -type f -print0 | xargs -0 sed -i 
's#/usr/bin/python#/usr/bin/python2#g'
+  find . -type f -print0 | xargs -0 sed -i 's#/usr/bin/env python#/usr/bin/env 
python2#g'
+}
+
+build() {
+  cd ${pkgname#python2-}-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#python2-}-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  install -Dm 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm 644 README $pkgdir/usr/share/doc/$pkgname/README
+}


[arch-commits] Commit in electrum/repos/community-any (7 files)

2015-03-03 Thread Timothy Redaelli
Date: Tuesday, March 3, 2015 @ 12:39:52
  Author: tredaelli
Revision: 128614

archrelease: copy trunk to community-any

Added:
  electrum/repos/community-any/PKGBUILD
(from rev 128613, electrum/trunk/PKGBUILD)
  electrum/repos/community-any/electrum.install
(from rev 128613, electrum/trunk/electrum.install)
Deleted:
  electrum/repos/community-any/PKGBUILD
  electrum/repos/community-any/electrum.install
  electrum/repos/community-any/gtk3.patch
  electrum/repos/community-any/pyqt4-4.11.patch
  electrum/repos/community-any/setup.py.patch

--+
 PKGBUILD |  105 +++--
 electrum.install |   22 +--
 gtk3.patch   |   13 --
 pyqt4-4.11.patch |   13 --
 setup.py.patch   |   11 -
 5 files changed, 57 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-03 11:39:46 UTC (rev 128613)
+++ PKGBUILD2015-03-03 11:39:52 UTC (rev 128614)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Andy Weidenbaum archb...@gmail.com
-# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
-# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
-
-pkgname=electrum
-pkgver=1.9.8
-pkgrel=4
-pkgdesc=Lightweight Bitcoin wallet
-arch=('any')
-depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-pyqt4' 'python2-sip' 
'python2-slowaes')
-makedepends=('gettext' 'python2-pycurl' 'python2-setuptools')
-optdepends=('desktop-file-utils: update desktop database'
-'pygtk: GTK user interface'
-'python2-zbar: QR code reading support')
-url=https://electrum.org;
-license=('GPL3')
-source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc}
-setup.py.patch
-gtk3.patch
-pyqt4-4.11.patch)
-md5sums=('e3918fec0254267f08e41a1fb8691382'
- 'SKIP'
- '562f61b12e8bc80de23fb56b8ce56fe7'
- 'b74882fe1c8319faf8f7d1ecbb6e30f6'
- '0e865e4f0337f9a6acef6d15581627ed')
-sha256sums=('8fc144a32013e4a747fea27fff981762a6b9e14cde9ffb405c4c721975d846ff'
-'SKIP'
-'5f8d846dedce20601f3131e687bd2dc54ca8df0137cbdaa1b06eab11eb6a52da'
-'ba97ed1716af25fb64e439415cbe55aadac3d6528ab29f7a0ea0f93b5a539299'
-'2542b0891b3e25674b4ab0755b4bf23523144b3e86dfb6281f852117e2e3d973')
-provides=('electrum')
-install=electrum.install
-
-prepare() {
-  cd ${pkgname^}-${pkgver}
-
-  patch -p1  ${srcdir}/setup.py.patch
-  patch -p1  ${srcdir}/gtk3.patch
-  patch -p1  ${srcdir}/pyqt4-4.11.patch
-
-  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
-}
-
-build() {
-  cd ${pkgname^}-${pkgver}
-
-  python2 mki18n.py
-  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname^}-${pkgver}
-
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: electrum/repos/community-any/PKGBUILD (from rev 128613, 
electrum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-03 11:39:52 UTC (rev 128614)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
+# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
+
+pkgname=electrum
+pkgver=2.0
+pkgrel=1
+pkgdesc=Lightweight Bitcoin wallet
+arch=('any')
+depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-qrcode' 'python2-protobuf'
+'python2-tlslite' 'python2-dnspython' 'python2-pyqt4' 'python2-sip' 
'python2-slowaes')
+makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
+optdepends=('python2-zbar: QR code reading support')
+url=https://electrum.org;
+license=('GPL3')
+source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc})
+md5sums=('ad9db1c037babe0829c55e3a3c1f7630'
+ 'SKIP')
+sha256sums=('69942f9edf4067e4a9b6cb66e7a5ae17215bab295f83647999656f847481bdcf'
+'SKIP')
+validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
+
+provides=('electrum')
+install=electrum.install
+
+prepare() {
+  cd ${pkgname^}-${pkgver}
+
+  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
+}
+
+build() {
+  cd ${pkgname^}-${pkgver}
+
+  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname^}-${pkgver}
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}

Deleted: electrum.install
===
--- electrum.install2015-03-03 11:39:46 UTC (rev 128613

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

2015-02-23 Thread Timothy Redaelli
Date: Monday, February 23, 2015 @ 12:33:37
  Author: tredaelli
Revision: 128127

upgpkg: trojita 0.5-1

Modified:
  trojita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-23 09:03:26 UTC (rev 128126)
+++ PKGBUILD2015-02-23 11:33:37 UTC (rev 128127)
@@ -3,7 +3,7 @@
 # Contributor: birdflesh antkoul at gmail dot com
 
 pkgname=trojita
-pkgver=0.4.1
+pkgver=0.5
 pkgrel=1
 pkgdesc=A QT IMAP email client
 arch=('i686' 'x86_64')
@@ -12,8 +12,10 @@
 makedepends=('cmake' 'automoc4')
 depends=('qtwebkit')
 install=$pkgname.install
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('130c9e51bb71564511ab123f88236850')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('c583bb4d82620cda1c49e5f1b084f550'
+ 'SKIP')
+validpgpkeys=('61AB87D6F66CE2FCD2D2E1F56A65DFA844722517')
 
 build() {
   mkdir -p build


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

2015-02-23 Thread Timothy Redaelli
Date: Monday, February 23, 2015 @ 12:33:47
  Author: tredaelli
Revision: 128128

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

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

--+
 /PKGBUILD|   66 +
 /trojita.install |   24 +
 community-i686/PKGBUILD  |   31 -
 community-i686/trojita.install   |   12 --
 community-x86_64/PKGBUILD|   31 -
 community-x86_64/trojita.install |   12 --
 6 files changed, 90 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-23 11:33:37 UTC (rev 128127)
+++ community-i686/PKGBUILD 2015-02-23 11:33:47 UTC (rev 128128)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: birdflesh antkoul at gmail dot com
-
-pkgname=trojita
-pkgver=0.4.1
-pkgrel=1
-pkgdesc=A QT IMAP email client
-arch=('i686' 'x86_64')
-url=http://trojita.flaska.net;
-license=('GPL')
-makedepends=('cmake' 'automoc4')
-depends=('qtwebkit')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('130c9e51bb71564511ab123f88236850')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../$pkgname-$pkgver \
--DQT_QMAKE_EXECUTABLE=qmake-qt4 \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: trojita/repos/community-i686/PKGBUILD (from rev 128127, 
trojita/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-23 11:33:47 UTC (rev 128128)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: birdflesh antkoul at gmail dot com
+
+pkgname=trojita
+pkgver=0.5
+pkgrel=1
+pkgdesc=A QT IMAP email client
+arch=('i686' 'x86_64')
+url=http://trojita.flaska.net;
+license=('GPL')
+makedepends=('cmake' 'automoc4')
+depends=('qtwebkit')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('c583bb4d82620cda1c49e5f1b084f550'
+ 'SKIP')
+validpgpkeys=('61AB87D6F66CE2FCD2D2E1F56A65DFA844722517')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/trojita.install
===
--- community-i686/trojita.install  2015-02-23 11:33:37 UTC (rev 128127)
+++ community-i686/trojita.install  2015-02-23 11:33:47 UTC (rev 128128)
@@ -1,12 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
\ No newline at end of file

Copied: trojita/repos/community-i686/trojita.install (from rev 128127, 
trojita/trunk/trojita.install)
===
--- community-i686/trojita.install  (rev 0)
+++ community-i686/trojita.install  2015-02-23 11:33:47 UTC (rev 128128)
@@ -0,0 +1,12 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
\ No newline at end of file

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-23 11:33:37 UTC (rev 128127)
+++ community-x86_64/PKGBUILD   2015-02-23 11:33:47 UTC (rev 128128)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: birdflesh antkoul at gmail dot com
-
-pkgname=trojita
-pkgver=0.4.1
-pkgrel=1
-pkgdesc=A QT IMAP email client
-arch=('i686' 'x86_64')
-url=http://trojita.flaska.net;
-license=('GPL')
-makedepends=('cmake' 'automoc4')
-depends=('qtwebkit')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums

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

2015-02-16 Thread Timothy Redaelli
Date: Monday, February 16, 2015 @ 18:07:20
  Author: tredaelli
Revision: 127801

upgpkg: bitcoin 0.10.0-1

Deleted:
  bitcoin/trunk/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
  bitcoin/trunk/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
  bitcoin/trunk/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch
  bitcoin/trunk/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch

+
 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch |   43 ---
 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch |   50 ---
 60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch |   25 ---
 b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch |   43 ---
 4 files changed, 161 deletions(-)

Deleted: 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
===
--- 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch  2015-02-16 17:05:57 UTC 
(rev 127800)
+++ 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch  2015-02-16 17:07:20 UTC 
(rev 127801)
@@ -1,43 +0,0 @@
-From 037bfefe6bccbdf656e628a1f4526db8f80c3922 Mon Sep 17 00:00:00 2001
-From: Wladimir J. van der Laan laa...@gmail.com
-Date: Mon, 12 Jan 2015 09:28:24 +0100
-Subject: [PATCH] Improve robustness of DER recoding code
-
-Add some defensive programming on top of #5634.
-
-This copies the respective OpenSSL code in ECDSA_verify in
-OpenSSL pre-1.0.1k (e.g. 
https://github.com/openssl/openssl/blob/OpenSSL_1_0_1j/crypto/ecdsa/ecs_vrf.c#L89)
-more closely.
-
-As reported by @sergiodemianlerner.
-
-Github-Pull: #5640
-Rebased-From: c6b7b29f232c651f898eeffb93f36c8f537c56d2

- src/key.cpp | 13 -
- 1 file changed, 12 insertions(+), 1 deletion(-)
-
-diff --git a/src/key.cpp b/src/key.cpp
-index a845ba1..63332bf 100644
 a/src/key.cpp
-+++ b/src/key.cpp
-@@ -234,7 +234,18 @@ class CECKey {
- unsigned char *norm_der = NULL;
- ECDSA_SIG *norm_sig = ECDSA_SIG_new();
- const unsigned char* sigptr = vchSig[0];
--d2i_ECDSA_SIG(norm_sig, sigptr, vchSig.size());
-+assert(norm_sig);
-+if (d2i_ECDSA_SIG(norm_sig, sigptr, vchSig.size()) == NULL)
-+{
-+/* As of OpenSSL 1.0.0p d2i_ECDSA_SIG frees and nulls the pointer 
on
-+ * error. But OpenSSL's own use of this function redundantly 
frees the
-+ * result. As ECDSA_SIG_free(NULL) is a no-op, and in the absence 
of a
-+ * clear contract for the function behaving the same way is more
-+ * conservative.
-+ */
-+ECDSA_SIG_free(norm_sig);
-+return false;
-+}
- int derlen = i2d_ECDSA_SIG(norm_sig, norm_der);
- ECDSA_SIG_free(norm_sig);
- if (derlen = 0)

Deleted: 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
===
--- 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch  2015-02-16 17:05:57 UTC 
(rev 127800)
+++ 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch  2015-02-16 17:07:20 UTC 
(rev 127801)
@@ -1,50 +0,0 @@
-From 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283 Mon Sep 17 00:00:00 2001
-From: Gregory Maxwell g...@xiph.org
-Date: Sat, 6 Dec 2014 07:08:02 -0800
-Subject: [PATCH] Disable SSLv3 (in favor of TLS) for the RPC client and
- server.
-
-TLS is subject to downgrade attacks when SSLv3 is available, and
- SSLv3 has vulnerabilities.
-
-The popular solution is to disable SSLv3. On the web this breaks
- some tiny number of very old clients. While Bitcoin RPC shouldn't
- be exposed to the open Internet, it also shouldn't be exposed to
- really old SSL implementations, so it shouldn't be a major issue
- for us to disable SSLv3.
-
-There is more information on the downgrade attacks and disabling
- SSLv3 at https://disablessl3.com/ .
-
-Rebased-From: 683dc4009b2b01699e672f8150c28e2ebe0aae19

- src/rpcclient.cpp | 2 +-
- src/rpcserver.cpp | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp
-index 4f3c39c..5e62b71 100644
 a/src/rpcclient.cpp
-+++ b/src/rpcclient.cpp
-@@ -40,7 +40,7 @@ Object CallRPC(const string strMethod, const Array params)
- bool fUseSSL = GetBoolArg(-rpcssl, false);
- asio::io_service io_service;
- ssl::context context(io_service, ssl::context::sslv23);
--context.set_options(ssl::context::no_sslv2);
-+context.set_options(ssl::context::no_sslv2 | ssl::context::no_sslv3);
- asio::ssl::streamasio::ip::tcp::socket sslStream(io_service, context);
- SSLIOStreamDeviceasio::ip::tcp d(sslStream, fUseSSL);
- iostreams::stream SSLIOStreamDeviceasio::ip::tcp  stream(d);
-diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp
-index f43acf4..cc9e330 100644
 a/src/rpcserver.cpp
-+++ b/src/rpcserver.cpp
-@@ -539,7 +539,7 @@ void StartRPCThreads()
- 
- if (fUseSSL)
- {
--rpc_ssl_context-set_options(ssl::context::no_sslv2);
-+

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

2015-02-16 Thread Timothy Redaelli
)
@@ -1,50 +0,0 @@
-From 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283 Mon Sep 17 00:00:00 2001
-From: Gregory Maxwell g...@xiph.org
-Date: Sat, 6 Dec 2014 07:08:02 -0800
-Subject: [PATCH] Disable SSLv3 (in favor of TLS) for the RPC client and
- server.
-
-TLS is subject to downgrade attacks when SSLv3 is available, and
- SSLv3 has vulnerabilities.
-
-The popular solution is to disable SSLv3. On the web this breaks
- some tiny number of very old clients. While Bitcoin RPC shouldn't
- be exposed to the open Internet, it also shouldn't be exposed to
- really old SSL implementations, so it shouldn't be a major issue
- for us to disable SSLv3.
-
-There is more information on the downgrade attacks and disabling
- SSLv3 at https://disablessl3.com/ .
-
-Rebased-From: 683dc4009b2b01699e672f8150c28e2ebe0aae19

- src/rpcclient.cpp | 2 +-
- src/rpcserver.cpp | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp
-index 4f3c39c..5e62b71 100644
 a/src/rpcclient.cpp
-+++ b/src/rpcclient.cpp
-@@ -40,7 +40,7 @@ Object CallRPC(const string strMethod, const Array params)
- bool fUseSSL = GetBoolArg(-rpcssl, false);
- asio::io_service io_service;
- ssl::context context(io_service, ssl::context::sslv23);
--context.set_options(ssl::context::no_sslv2);
-+context.set_options(ssl::context::no_sslv2 | ssl::context::no_sslv3);
- asio::ssl::streamasio::ip::tcp::socket sslStream(io_service, context);
- SSLIOStreamDeviceasio::ip::tcp d(sslStream, fUseSSL);
- iostreams::stream SSLIOStreamDeviceasio::ip::tcp  stream(d);
-diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp
-index f43acf4..cc9e330 100644
 a/src/rpcserver.cpp
-+++ b/src/rpcserver.cpp
-@@ -539,7 +539,7 @@ void StartRPCThreads()
- 
- if (fUseSSL)
- {
--rpc_ssl_context-set_options(ssl::context::no_sslv2);
-+rpc_ssl_context-set_options(ssl::context::no_sslv2 | 
ssl::context::no_sslv3);
- 
- filesystem::path pathCertFile(GetArg(-rpcsslcertificatechainfile, 
server.cert));
- if (!pathCertFile.is_complete()) pathCertFile = 
filesystem::path(GetDataDir()) / pathCertFile;

Deleted: community-i686/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch
===
--- community-i686/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch   
2015-02-16 17:07:20 UTC (rev 127801)
+++ community-i686/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch   
2015-02-16 17:07:30 UTC (rev 127802)
@@ -1,25 +0,0 @@
-From 60c51f1c381bbd93c70cfdf41c6688609a7956fc Mon Sep 17 00:00:00 2001
-From: Wladimir J. van der Laan laa...@gmail.com
-Date: Sat, 10 Jan 2015 08:58:47 +0100
-Subject: [PATCH] fail immediately on an empty signature
-
-Github-Pull: #5634
-Rebased-From: 8dccba6a45db0466370726ed462b9da2eae43bce

- src/key.cpp | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/src/key.cpp b/src/key.cpp
-index e5943af..a845ba1 100644
 a/src/key.cpp
-+++ b/src/key.cpp
-@@ -227,6 +227,9 @@ class CECKey {
- }
- 
- bool Verify(const uint256 hash, const std::vectorunsigned char 
vchSig) {
-+if (vchSig.empty())
-+return false;
-+
- // New versions of OpenSSL will reject non-canonical DER signatures. 
de/re-serialize first.
- unsigned char *norm_der = NULL;
- ECDSA_SIG *norm_sig = ECDSA_SIG_new();

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-16 17:07:20 UTC (rev 127801)
+++ community-i686/PKGBUILD 2015-02-16 17:07:30 UTC (rev 127802)
@@ -1,100 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: shahid hellla...@gmail.com
-
-pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
-pkgver=0.9.3
-pkgrel=4
-arch=('i686' 'x86_64')
-url=http://www.bitcoin.org/;
-makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
-license=('MIT')
-source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver-linux.tar.gz
-   
https://github.com/bitcoin/bitcoin/commit/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
-   
https://github.com/bitcoin/bitcoin/commit/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch
-   
https://github.com/bitcoin/bitcoin/commit/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch
-   
https://github.com/bitcoin/bitcoin/commit/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
-sha256sums=('c425783b6cbab9b801ad6a1dcc9235828b98e5dee6675112741f8b210e4f65cd

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

2015-02-16 Thread Timothy Redaelli
Date: Monday, February 16, 2015 @ 18:05:57
  Author: tredaelli
Revision: 127800

upgpkg: bitcoin 0.10.0-1

Modified:
  bitcoin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 13:25:54 UTC (rev 127799)
+++ PKGBUILD2015-02-16 17:05:57 UTC (rev 127800)
@@ -4,32 +4,24 @@
 
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
-pkgver=0.9.3
-pkgrel=4
+pkgver=0.10.0
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.bitcoin.org/;
 makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
 license=('MIT')
-source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver-linux.tar.gz
-   
https://github.com/bitcoin/bitcoin/commit/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
-   
https://github.com/bitcoin/bitcoin/commit/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch
-   
https://github.com/bitcoin/bitcoin/commit/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch
-   
https://github.com/bitcoin/bitcoin/commit/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
+source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver.tar.gz

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop

https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
-sha256sums=('c425783b6cbab9b801ad6a1dcc9235828b98e5dee6675112741f8b210e4f65cd'
-'18f5d43dd29682c8f9bd98dfb94c07b2453c99b9454996651562410b535e289b'
-'ac3a6d0e9116566f44ef99b6fc5ae7ec792a05e73d33b9db25e4f62b296b5d59'
-'67c50de4c469e40d8fb0a7663acd5af8dbbe93f362a5192e981bfa2ec9ab82df'
-'9ff94c3ddb09b0b27eda2e157627ff61808afd7a8fedc0c9d1b0db1a53ee1138'
+sha256sums=('a516cf6d9f58a117607148405334b35d3178df1ba1c59229609d2bcd08d30624'
 'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
 'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
-'e141088b07641e4e58cc750f93bbdda1ca0e8f07262fce66b73524c1ed97480e'
-'881dcc53ebe2d2a4f8647eb206fd355c69e4186f225e2dcfce19d276381e613a'
-'b7b232079027c41061dcfd21bca2054e349e4bed4f233733406bb3d90bd533ec')
+'b049cc2650d5988a581d1b72b205254edbaa4f8c0587c2fe8ac4aa0a25543a6a'
+'0a31a5f3ad860ecc1cc8041a863aabdbc4084c7ea5fdc487806b5aa829a244fe'
+'9acf7f46052f6e508af4f38be4574f34bf0f57d2cf462f072606d3f177b4c957')
 
 # Upstream should be more coherent!
 case $pkgver in
@@ -41,21 +33,8 @@
   ;;
 esac
 
-prepare() {
-  local x
-  cd $srcdir/$pkgbase-$pkgver-linux/src
-  tar xf $pkgbase-$_pkgver.tar.gz
-  cd $pkgbase-$_pkgver
-
-  # Disable SSLv3 for Puddle + FS#43396
-  for x in 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283 
b8e81b7ccd4490155e3345fc73346ff8c3a77524 \
-   60c51f1c381bbd93c70cfdf41c6688609a7956fc 
037bfefe6bccbdf656e628a1f4526db8f80c3922; do
-patch -Np1 -i $srcdir/$x.patch
-  done
-}
-
 build() {
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  cd $srcdir/$pkgbase-$pkgver
   ./configure --prefix=/usr --with-incompatible-bdb --with-gui=qt4
   make
 }
@@ -65,7 +44,7 @@
   depends=(boost-libs qt4 miniupnpc qrencode protobuf)
   install=bitcoin-qt.install
 
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  cd $pkgbase-$pkgver
   install -Dm755 src/qt/bitcoin-qt $pkgdir/usr/bin/bitcoin-qt
   install -Dm644 $srcdir/bitcoin-qt.desktop \
 $pkgdir/usr/share/applications/bitcoin.desktop
@@ -79,7 +58,7 @@
   pkgdesc=Bitcoin is a peer-to-peer network based digital currency - daemon
   depends=(boost-libs miniupnpc openssl)
 
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  cd $pkgbase-$pkgver
   install -Dm755 src/bitcoind $pkgdir/usr/bin/bitcoind
   install -Dm644 $srcdir/bitcoin.conf \
 $pkgdir/usr/share/doc/$pkgname/examples/bitcoin.conf
@@ -94,7 +73,7 @@
   pkgdesc=Bitcoin is a peer-to-peer network based digital currency - RPC 
client
   depends=(boost-libs openssl)
 
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  cd $pkgbase-$pkgver
   install -Dm755 src/bitcoin-cli $pkgdir/usr/bin/bitcoin-cli
   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }


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

2015-02-09 Thread Timothy Redaelli
Date: Monday, February 9, 2015 @ 11:58:13
  Author: tredaelli
Revision: 127380

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

Added:
  tinc/repos/community-i686/PKGBUILD
(from rev 127379, tinc/trunk/PKGBUILD)
  tinc/repos/community-i686/tinc.install
(from rev 127379, tinc/trunk/tinc.install)
  tinc/repos/community-i686/tincd@.service
(from rev 127379, tinc/trunk/tincd@.service)
  tinc/repos/community-x86_64/PKGBUILD
(from rev 127379, tinc/trunk/PKGBUILD)
  tinc/repos/community-x86_64/tinc.install
(from rev 127379, tinc/trunk/tinc.install)
  tinc/repos/community-x86_64/tincd@.service
(from rev 127379, tinc/trunk/tincd@.service)
Deleted:
  tinc/repos/community-i686/PKGBUILD
  tinc/repos/community-i686/tinc.install
  tinc/repos/community-i686/tincd@.service
  tinc/repos/community-x86_64/PKGBUILD
  tinc/repos/community-x86_64/tinc.install
  tinc/repos/community-x86_64/tincd@.service

-+
 /PKGBUILD   |   80 ++
 /tinc.install   |   40 +++
 /tincd@.service |   24 +++
 community-i686/PKGBUILD |   40 ---
 community-i686/tinc.install |   20 -
 community-i686/tincd@.service   |   10 
 community-x86_64/PKGBUILD   |   40 ---
 community-x86_64/tinc.install   |   20 -
 community-x86_64/tincd@.service |   10 
 9 files changed, 144 insertions(+), 140 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-09 10:58:00 UTC (rev 127379)
+++ community-i686/PKGBUILD 2015-02-09 10:58:13 UTC (rev 127380)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: helios
-# Contributor: Lothar Gesslein
-# Contributor: Dominik George n...@naturalnet.de
-
-pkgname=tinc
-pkgver=1.0.25
-pkgrel=1
-pkgdesc=VPN (Virtual Private Network) daemon
-arch=('i686' 'x86_64')
-url=http://www.tinc-vpn.org/;
-license=('GPL')
-depends=('lzo' 'openssl')
-install=tinc.install
-source=(http://www.tinc-vpn.org/packages/tinc-$pkgver.tar.gz{,.sig}
-tincd@.service)
-md5sums=('0b91b693f7cf76f481b547d0c86f9578'
- 'SKIP'
- '112327da32fdb56ab779fe004712235f')
-validpgpkeys=('D62BDD168EFBE48BC60E8E234A6084B9C0D71F4A')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-  install -dm755 $pkgdir/usr/share/tinc/examples
-  tar xozvf doc/sample-config.tar.gz -C $pkgdir/usr/share/tinc/examples
-  find $pkgdir/usr/share/tinc/examples -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/tinc/examples -type d -exec chmod 755 {} +
-
-  install -Dm644 $srcdir/tincd@.service 
$pkgdir/usr/lib/systemd/system/tincd@.service
-}

Copied: tinc/repos/community-i686/PKGBUILD (from rev 127379, 
tinc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-09 10:58:13 UTC (rev 127380)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: helios
+# Contributor: Lothar Gesslein
+# Contributor: Dominik George n...@naturalnet.de
+
+pkgname=tinc
+pkgver=1.0.25
+pkgrel=2
+pkgdesc=VPN (Virtual Private Network) daemon
+arch=('i686' 'x86_64')
+url=http://www.tinc-vpn.org/;
+license=('GPL')
+depends=('lzo' 'openssl')
+install=tinc.install
+source=(http://www.tinc-vpn.org/packages/tinc-$pkgver.tar.gz{,.sig}
+tincd@.service)
+md5sums=('0b91b693f7cf76f481b547d0c86f9578'
+ 'SKIP'
+ 'aab8a13d6f7a18996a21f779ffb424df')
+validpgpkeys=('D62BDD168EFBE48BC60E8E234A6084B9C0D71F4A')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+  install -dm755 $pkgdir/usr/share/tinc/examples
+  tar xozvf doc/sample-config.tar.gz -C $pkgdir/usr/share/tinc/examples
+  find $pkgdir/usr/share/tinc/examples -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/tinc/examples -type d -exec chmod 755 {} +
+
+  install -Dm644 $srcdir/tincd@.service 
$pkgdir/usr/lib/systemd/system/tincd@.service
+}

Deleted: community-i686/tinc.install
===
--- community-i686/tinc.install 2015-02-09 10:58:00 UTC (rev 127379)
+++ community-i686/tinc.install 2015-02-09 10:58:13 UTC (rev 127380)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(tinc.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2 /dev/null

[arch-commits] Commit in tinc/trunk (PKGBUILD tincd@.service)

2015-02-09 Thread Timothy Redaelli
Date: Monday, February 9, 2015 @ 11:58:00
  Author: tredaelli
Revision: 127379

upgpkg: tinc 1.0.25-2

FS#43741 and use Type=simple

Modified:
  tinc/trunk/PKGBUILD
  tinc/trunk/tincd@.service

+
 PKGBUILD   |4 ++--
 tincd@.service |6 --
 2 files changed, 6 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-09 10:38:39 UTC (rev 127378)
+++ PKGBUILD2015-02-09 10:58:00 UTC (rev 127379)
@@ -6,7 +6,7 @@
 
 pkgname=tinc
 pkgver=1.0.25
-pkgrel=1
+pkgrel=2
 pkgdesc=VPN (Virtual Private Network) daemon
 arch=('i686' 'x86_64')
 url=http://www.tinc-vpn.org/;
@@ -17,7 +17,7 @@
 tincd@.service)
 md5sums=('0b91b693f7cf76f481b547d0c86f9578'
  'SKIP'
- '112327da32fdb56ab779fe004712235f')
+ 'aab8a13d6f7a18996a21f779ffb424df')
 validpgpkeys=('D62BDD168EFBE48BC60E8E234A6084B9C0D71F4A')
 
 build() {

Modified: tincd@.service
===
--- tincd@.service  2015-02-09 10:38:39 UTC (rev 127378)
+++ tincd@.service  2015-02-09 10:58:00 UTC (rev 127379)
@@ -3,8 +3,10 @@
 After=network.target
 
 [Service]
-Type=forking
-ExecStart=/usr/bin/tincd -n %i
+ExecStart=/usr/bin/tincd -D --pidfile /run/tinc.%i.pid -n %I
+ExecStop=/usr/bin/tincd -n %I -k
+ExecReload=/usr/sbin/tincd -n %I -k HUP
+Restart=on-failure
 
 [Install]
 WantedBy=multi-user.target


[arch-commits] Commit in tinc/trunk (tincd@.service)

2015-02-09 Thread Timothy Redaelli
Date: Monday, February 9, 2015 @ 14:24:27
  Author: tredaelli
Revision: 127396

Use always /usr/bin for tincd

Modified:
  tinc/trunk/tincd@.service

+
 tincd@.service |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: tincd@.service
===
--- tincd@.service  2015-02-09 13:21:16 UTC (rev 127395)
+++ tincd@.service  2015-02-09 13:24:27 UTC (rev 127396)
@@ -5,7 +5,7 @@
 [Service]
 ExecStart=/usr/bin/tincd -D --pidfile /run/tinc.%i.pid -n %I
 ExecStop=/usr/bin/tincd -n %I -k
-ExecReload=/usr/sbin/tincd -n %I -k HUP
+ExecReload=/usr/bin/tincd -n %I -k HUP
 Restart=on-failure
 
 [Install]


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

2015-01-28 Thread Timothy Redaelli
Date: Wednesday, January 28, 2015 @ 12:16:19
  Author: tredaelli
Revision: 126695

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

Added:
  iperf3/repos/community-i686/
  iperf3/repos/community-i686/PKGBUILD
(from rev 126694, iperf3/trunk/PKGBUILD)
  iperf3/repos/community-x86_64/
  iperf3/repos/community-x86_64/PKGBUILD
(from rev 126694, iperf3/trunk/PKGBUILD)

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

Copied: iperf3/repos/community-i686/PKGBUILD (from rev 126694, 
iperf3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-28 11:16:19 UTC (rev 126695)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Author: Jim Ferguson fergu...@ncsa.uiuc.edu
+# Contributor: Xi0N jonandermonl...@gmail.com
+# Contributor: goll adrian.goll+aur[at]gmail
+
+pkgname=iperf3
+pkgver=3.0.11
+pkgrel=1
+pkgdesc=Internet Protocol bandwidth measuring tool
+arch=('i686' 'x86_64')
+url=https://github.com/esnet/iperf; 
+license=('BSD')
+depends=('glibc') 
+source=(http://downloads.es.net/pub/iperf/iperf-$pkgver.tar.gz)
+sha256sums=('e01db5be6f47f67c987463095fe4f5b8b9ff891fb92c39104d042ad8fde97f6e')
+
+build() { 
+  cd iperf-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd iperf-$pkgver
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/iperf3/LICENSE
+  make DESTDIR=$pkgdir/ install
+}

Copied: iperf3/repos/community-x86_64/PKGBUILD (from rev 126694, 
iperf3/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-01-28 11:16:19 UTC (rev 126695)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Author: Jim Ferguson fergu...@ncsa.uiuc.edu
+# Contributor: Xi0N jonandermonl...@gmail.com
+# Contributor: goll adrian.goll+aur[at]gmail
+
+pkgname=iperf3
+pkgver=3.0.11
+pkgrel=1
+pkgdesc=Internet Protocol bandwidth measuring tool
+arch=('i686' 'x86_64')
+url=https://github.com/esnet/iperf; 
+license=('BSD')
+depends=('glibc') 
+source=(http://downloads.es.net/pub/iperf/iperf-$pkgver.tar.gz)
+sha256sums=('e01db5be6f47f67c987463095fe4f5b8b9ff891fb92c39104d042ad8fde97f6e')
+
+build() { 
+  cd iperf-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd iperf-$pkgver
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/iperf3/LICENSE
+  make DESTDIR=$pkgdir/ install
+}


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

2015-01-28 Thread Timothy Redaelli
Date: Wednesday, January 28, 2015 @ 12:15:41
  Author: tredaelli
Revision: 126694

New package: iperf3

Added:
  iperf3/
  iperf3/repos/
  iperf3/trunk/
  iperf3/trunk/PKGBUILD

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

Added: iperf3/trunk/PKGBUILD
===
--- iperf3/trunk/PKGBUILD   (rev 0)
+++ iperf3/trunk/PKGBUILD   2015-01-28 11:15:41 UTC (rev 126694)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Author: Jim Ferguson fergu...@ncsa.uiuc.edu
+# Contributor: Xi0N jonandermonl...@gmail.com
+# Contributor: goll adrian.goll+aur[at]gmail
+
+pkgname=iperf3
+pkgver=3.0.11
+pkgrel=1
+pkgdesc=Internet Protocol bandwidth measuring tool
+arch=('i686' 'x86_64')
+url=https://github.com/esnet/iperf; 
+license=('BSD')
+depends=('glibc') 
+source=(http://downloads.es.net/pub/iperf/iperf-$pkgver.tar.gz)
+sha256sums=('e01db5be6f47f67c987463095fe4f5b8b9ff891fb92c39104d042ad8fde97f6e')
+
+build() { 
+  cd iperf-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd iperf-$pkgver
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/iperf3/LICENSE
+  make DESTDIR=$pkgdir/ install
+}


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


[arch-commits] Commit in (4 files)

2015-01-27 Thread Timothy Redaelli
Date: Tuesday, January 27, 2015 @ 11:00:37
  Author: tredaelli
Revision: 126629

New package: vdpauinfo

Added:
  vdpauinfo/
  vdpauinfo/repos/
  vdpauinfo/trunk/
  vdpauinfo/trunk/PKGBUILD

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

Added: vdpauinfo/trunk/PKGBUILD
===
--- vdpauinfo/trunk/PKGBUILD(rev 0)
+++ vdpauinfo/trunk/PKGBUILD2015-01-27 10:00:37 UTC (rev 126629)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Aaron Plattner aplatt...@nvidia.com
+# Contributor: Bart Verhoeven bartverhoe...@live.com
+
+pkgname=vdpauinfo
+pkgver=0.9
+pkgrel=1
+pkgdesc=Command line utility for querying the capabilities of a VDPAU device.
+arch=('i686' 'x86_64')
+url=http://cgit.freedesktop.org/~aplattner/vdpauinfo;
+license=('custom')
+depends=('libvdpau' 'libx11')
+source=(http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz;
+
http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz.sig;)
+validpgpkeys=('BD68A042C603DDAD9AA354B0F56ACC8F09BA9635') # Aaron Plattner 
aplatt...@nvidia.com
+sha256sums=('a040fe3682db4cb6076179185a68559a62b908cd01f0aee086838eaf2923c8e3'
+'SKIP')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m644 $srcdir/$pkgname-$pkgver/COPYING 
$pkgdir/usr/share/licenses/$pkgname/license
+}


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


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

2015-01-27 Thread Timothy Redaelli
Date: Tuesday, January 27, 2015 @ 11:08:53
  Author: tredaelli
Revision: 126632

archrelease: copy trunk to community-any

Added:
  parallel/repos/community-any/PKGBUILD
(from rev 126631, parallel/trunk/PKGBUILD)
  parallel/repos/community-any/fix-pod-numbers.patch
(from rev 126631, parallel/trunk/fix-pod-numbers.patch)
Deleted:
  parallel/repos/community-any/PKGBUILD
  parallel/repos/community-any/fix-pod-numbers.patch

---+
 PKGBUILD  |   69 +--
 fix-pod-numbers.patch |   94 
 2 files changed, 82 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-27 10:08:46 UTC (rev 126631)
+++ PKGBUILD2015-01-27 10:08:53 UTC (rev 126632)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Vianney le Clément vleclement AT gmail·com
-# Contributor: Peter Simons sim...@cryp.to
-
-pkgname=parallel
-pkgver=20141122
-pkgrel=1
-pkgdesc='A shell tool for executing jobs in parallel'
-arch=('any')
-url='http://www.gnu.org/software/parallel/'
-license=('GPL3')
-depends=('perl' 'procps')
-source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('9fad45cfb5180d35650f6c2316e1489a'
- 'SKIP')
-sha1sums=('234b43a99354e2079b3dff48ab2e10a9cc9e3b42'
-  'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  # FIXME
-  ln -sf parallel $pkgdir/usr/bin/sem
-}
-
-# vim:set ts=2 sw=2 et:

Copied: parallel/repos/community-any/PKGBUILD (from rev 126631, 
parallel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-27 10:08:53 UTC (rev 126632)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Vianney le Clément vleclement AT gmail·com
+# Contributor: Peter Simons sim...@cryp.to
+
+pkgname=parallel
+pkgver=20150122
+pkgrel=1
+pkgdesc='A shell tool for executing jobs in parallel'
+arch=('any')
+url='http://www.gnu.org/software/parallel/'
+license=('GPL3')
+depends=('perl' 'procps')
+source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+md5sums=('b3b30bdbfc031f6955e0eb27cb2c6d72'
+ 'SKIP')
+sha1sums=('95f822b42010d41be8156b773816c684d4e2fac5'
+  'SKIP')
+validpgpkeys=('CDA01A4208C4F74506107E7BD1AB4516')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+
+  # FIXME
+  ln -sf parallel $pkgdir/usr/bin/sem
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-pod-numbers.patch
===
--- fix-pod-numbers.patch   2015-01-27 10:08:46 UTC (rev 126631)
+++ fix-pod-numbers.patch   2015-01-27 10:08:53 UTC (rev 126632)
@@ -1,47 +0,0 @@
 src/parallel.pod.orig
-+++ src/parallel.pod
-@@ -528,18 +528,18 @@
- 
- =over 3
- 
--=item 0
-+=item 0Z
- 
- Do not halt if a job fails. Exit status will be the number of jobs
- failed. This is the default.
- 
--=item 1
-+=item 1Z
- 
- Do not start new jobs if a job fails, but complete the running jobs
- including cleanup. The exit status will be the exit status from the
- last failing job.
- 
--=item 2
-+=item 2Z
- 
- Kill off all jobs immediately and exit without cleanup. The exit
- status will be the exit status from the failing job.
-@@ -2760,7 +2760,7 @@
- 
- =over 6
- 
--=item 0
-+=item 0Z
- 
- All jobs ran without error.
- 
-@@ -2768,11 +2768,11 @@
- 
- Some of the jobs failed. The exit status gives the number of failed jobs
- 
--=item 254
-+=item 254Z
- 
- More than 253 jobs failed.
- 
--=item 255
-+=item 255Z
- 
- Other error.
- 

Copied: parallel/repos/community-any/fix-pod-numbers.patch (from rev 126631, 
parallel/trunk/fix-pod-numbers.patch)
===
--- fix-pod-numbers.patch   (rev 0)
+++ fix-pod-numbers.patch   2015-01-27 10:08:53 UTC (rev 126632)
@@ -0,0 +1,47 @@
+--- src/parallel.pod.orig
 src/parallel.pod
+@@ -528,18 +528,18 @@
+ 
+ =over 3
+ 
+-=item 0
++=item 0Z
+ 
+ Do not halt if a job fails. Exit status will be the number of jobs
+ failed. This is the default.
+ 
+-=item 1
++=item 1Z
+ 
+ Do not start new jobs if a job fails, but complete the running jobs
+ including cleanup. The exit status will be the exit status from the
+ last failing job.
+ 
+-=item 2
++=item 2Z
+ 
+ Kill off all jobs immediately and exit without cleanup. The exit
+ status will be the exit status from the failing job.
+@@ -2760,7 +2760,7 @@
+ 
+ =over 6
+ 
+-=item 0
++=item 0Z
+ 
+ All jobs ran without error.
+ 
+@@ -2768,11 +2768,11 @@
+ 
+ Some of the jobs failed. The exit status

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

2015-01-27 Thread Timothy Redaelli
Date: Tuesday, January 27, 2015 @ 11:08:46
  Author: tredaelli
Revision: 126631

upgpkg: parallel 20150122-1

Modified:
  parallel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-27 10:06:53 UTC (rev 126630)
+++ PKGBUILD2015-01-27 10:08:46 UTC (rev 126631)
@@ -4,7 +4,7 @@
 # Contributor: Peter Simons sim...@cryp.to
 
 pkgname=parallel
-pkgver=20141122
+pkgver=20150122
 pkgrel=1
 pkgdesc='A shell tool for executing jobs in parallel'
 arch=('any')
@@ -12,9 +12,9 @@
 license=('GPL3')
 depends=('perl' 'procps')
 source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('9fad45cfb5180d35650f6c2316e1489a'
+md5sums=('b3b30bdbfc031f6955e0eb27cb2c6d72'
  'SKIP')
-sha1sums=('234b43a99354e2079b3dff48ab2e10a9cc9e3b42'
+sha1sums=('95f822b42010d41be8156b773816c684d4e2fac5'
   'SKIP')
 validpgpkeys=('CDA01A4208C4F74506107E7BD1AB4516')
 


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

2015-01-27 Thread Timothy Redaelli
Date: Tuesday, January 27, 2015 @ 11:06:53
  Author: tredaelli
Revision: 126630

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

Added:
  vdpauinfo/repos/community-i686/
  vdpauinfo/repos/community-i686/PKGBUILD
(from rev 126629, vdpauinfo/trunk/PKGBUILD)
  vdpauinfo/repos/community-x86_64/
  vdpauinfo/repos/community-x86_64/PKGBUILD
(from rev 126629, vdpauinfo/trunk/PKGBUILD)

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

Copied: vdpauinfo/repos/community-i686/PKGBUILD (from rev 126629, 
vdpauinfo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-27 10:06:53 UTC (rev 126630)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Aaron Plattner aplatt...@nvidia.com
+# Contributor: Bart Verhoeven bartverhoe...@live.com
+
+pkgname=vdpauinfo
+pkgver=0.9
+pkgrel=1
+pkgdesc=Command line utility for querying the capabilities of a VDPAU device.
+arch=('i686' 'x86_64')
+url=http://cgit.freedesktop.org/~aplattner/vdpauinfo;
+license=('custom')
+depends=('libvdpau' 'libx11')
+source=(http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz;
+
http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz.sig;)
+validpgpkeys=('BD68A042C603DDAD9AA354B0F56ACC8F09BA9635') # Aaron Plattner 
aplatt...@nvidia.com
+sha256sums=('a040fe3682db4cb6076179185a68559a62b908cd01f0aee086838eaf2923c8e3'
+'SKIP')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m644 $srcdir/$pkgname-$pkgver/COPYING 
$pkgdir/usr/share/licenses/$pkgname/license
+}

Copied: vdpauinfo/repos/community-x86_64/PKGBUILD (from rev 126629, 
vdpauinfo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-01-27 10:06:53 UTC (rev 126630)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Aaron Plattner aplatt...@nvidia.com
+# Contributor: Bart Verhoeven bartverhoe...@live.com
+
+pkgname=vdpauinfo
+pkgver=0.9
+pkgrel=1
+pkgdesc=Command line utility for querying the capabilities of a VDPAU device.
+arch=('i686' 'x86_64')
+url=http://cgit.freedesktop.org/~aplattner/vdpauinfo;
+license=('custom')
+depends=('libvdpau' 'libx11')
+source=(http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz;
+
http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz.sig;)
+validpgpkeys=('BD68A042C603DDAD9AA354B0F56ACC8F09BA9635') # Aaron Plattner 
aplatt...@nvidia.com
+sha256sums=('a040fe3682db4cb6076179185a68559a62b908cd01f0aee086838eaf2923c8e3'
+'SKIP')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m644 $srcdir/$pkgname-$pkgver/COPYING 
$pkgdir/usr/share/licenses/$pkgname/license
+}


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

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 10:55:04
  Author: tredaelli
Revision: 125797

validpgpkeys integrity check

Modified:
  ecryptfs-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-12 09:41:56 UTC (rev 125796)
+++ PKGBUILD2015-01-12 09:55:04 UTC (rev 125797)
@@ -17,6 +17,7 @@
 
${pkgname}_${pkgver}.orig.tar.gz.sig::http://launchpad.net/ecryptfs/trunk/${pkgver}/+download/..-${pkgname}_${pkgver}.orig.tar.gz.asc;)
 md5sums=('6ae93822bcf0d15470516c30a3deee32'
  'SKIP')
+validpgpkeys=('E2D9E1C5F9F5D59291F4607D95E64373F1529469')
 
 build() {
   cd $srcdir/${pkgname}-${pkgver}


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

2015-01-12 Thread Timothy Redaelli
 the
++ * result. As ECDSA_SIG_free(NULL) is a no-op, and in the absence 
of a
++ * clear contract for the function behaving the same way is more
++ * conservative.
++ */
++ECDSA_SIG_free(norm_sig);
++return false;
++}
+ int derlen = i2d_ECDSA_SIG(norm_sig, norm_der);
+ ECDSA_SIG_free(norm_sig);
+ if (derlen = 0)

Copied: 
bitcoin/repos/community-i686/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch 
(from rev 125793, bitcoin/trunk/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch)
===
--- community-i686/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch   
(rev 0)
+++ community-i686/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch   
2015-01-12 09:41:20 UTC (rev 125794)
@@ -0,0 +1,50 @@
+From 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283 Mon Sep 17 00:00:00 2001
+From: Gregory Maxwell g...@xiph.org
+Date: Sat, 6 Dec 2014 07:08:02 -0800
+Subject: [PATCH] Disable SSLv3 (in favor of TLS) for the RPC client and
+ server.
+
+TLS is subject to downgrade attacks when SSLv3 is available, and
+ SSLv3 has vulnerabilities.
+
+The popular solution is to disable SSLv3. On the web this breaks
+ some tiny number of very old clients. While Bitcoin RPC shouldn't
+ be exposed to the open Internet, it also shouldn't be exposed to
+ really old SSL implementations, so it shouldn't be a major issue
+ for us to disable SSLv3.
+
+There is more information on the downgrade attacks and disabling
+ SSLv3 at https://disablessl3.com/ .
+
+Rebased-From: 683dc4009b2b01699e672f8150c28e2ebe0aae19
+---
+ src/rpcclient.cpp | 2 +-
+ src/rpcserver.cpp | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp
+index 4f3c39c..5e62b71 100644
+--- a/src/rpcclient.cpp
 b/src/rpcclient.cpp
+@@ -40,7 +40,7 @@ Object CallRPC(const string strMethod, const Array params)
+ bool fUseSSL = GetBoolArg(-rpcssl, false);
+ asio::io_service io_service;
+ ssl::context context(io_service, ssl::context::sslv23);
+-context.set_options(ssl::context::no_sslv2);
++context.set_options(ssl::context::no_sslv2 | ssl::context::no_sslv3);
+ asio::ssl::streamasio::ip::tcp::socket sslStream(io_service, context);
+ SSLIOStreamDeviceasio::ip::tcp d(sslStream, fUseSSL);
+ iostreams::stream SSLIOStreamDeviceasio::ip::tcp  stream(d);
+diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp
+index f43acf4..cc9e330 100644
+--- a/src/rpcserver.cpp
 b/src/rpcserver.cpp
+@@ -539,7 +539,7 @@ void StartRPCThreads()
+ 
+ if (fUseSSL)
+ {
+-rpc_ssl_context-set_options(ssl::context::no_sslv2);
++rpc_ssl_context-set_options(ssl::context::no_sslv2 | 
ssl::context::no_sslv3);
+ 
+ filesystem::path pathCertFile(GetArg(-rpcsslcertificatechainfile, 
server.cert));
+ if (!pathCertFile.is_complete()) pathCertFile = 
filesystem::path(GetDataDir()) / pathCertFile;

Copied: 
bitcoin/repos/community-i686/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch 
(from rev 125793, bitcoin/trunk/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch)
===
--- community-i686/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch   
(rev 0)
+++ community-i686/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch   
2015-01-12 09:41:20 UTC (rev 125794)
@@ -0,0 +1,25 @@
+From 60c51f1c381bbd93c70cfdf41c6688609a7956fc Mon Sep 17 00:00:00 2001
+From: Wladimir J. van der Laan laa...@gmail.com
+Date: Sat, 10 Jan 2015 08:58:47 +0100
+Subject: [PATCH] fail immediately on an empty signature
+
+Github-Pull: #5634
+Rebased-From: 8dccba6a45db0466370726ed462b9da2eae43bce
+---
+ src/key.cpp | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/src/key.cpp b/src/key.cpp
+index e5943af..a845ba1 100644
+--- a/src/key.cpp
 b/src/key.cpp
+@@ -227,6 +227,9 @@ class CECKey {
+ }
+ 
+ bool Verify(const uint256 hash, const std::vectorunsigned char 
vchSig) {
++if (vchSig.empty())
++return false;
++
+ // New versions of OpenSSL will reject non-canonical DER signatures. 
de/re-serialize first.
+ unsigned char *norm_der = NULL;
+ ECDSA_SIG *norm_sig = ECDSA_SIG_new();

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-12 09:41:00 UTC (rev 125793)
+++ community-i686/PKGBUILD 2015-01-12 09:41:20 UTC (rev 125794)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: shahid hellla...@gmail.com
-
-pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
-pkgver=0.9.3
-pkgrel=3
-arch=('i686' 'x86_64')
-url=http://www.bitcoin.org/;
-makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
-license=('MIT')
-source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver-linux.tar.gz

[arch-commits] Commit in bitcoin/trunk (5 files)

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 10:41:00
  Author: tredaelli
Revision: 125793

upgpkg: bitcoin 0.9.3-4

FS#43396

Added:
  bitcoin/trunk/037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
  bitcoin/trunk/0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
  bitcoin/trunk/60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch
  bitcoin/trunk/b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch
Modified:
  bitcoin/trunk/PKGBUILD

+
 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch |   43 +++
 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch |   50 +++
 60c51f1c381bbd93c70cfdf41c6688609a7956fc.patch |   25 +++
 PKGBUILD   |   18 +++-
 b8e81b7ccd4490155e3345fc73346ff8c3a77524.patch |   43 +++
 5 files changed, 178 insertions(+), 1 deletion(-)

Added: 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch
===
--- 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch  
(rev 0)
+++ 037bfefe6bccbdf656e628a1f4526db8f80c3922.patch  2015-01-12 09:41:00 UTC 
(rev 125793)
@@ -0,0 +1,43 @@
+From 037bfefe6bccbdf656e628a1f4526db8f80c3922 Mon Sep 17 00:00:00 2001
+From: Wladimir J. van der Laan laa...@gmail.com
+Date: Mon, 12 Jan 2015 09:28:24 +0100
+Subject: [PATCH] Improve robustness of DER recoding code
+
+Add some defensive programming on top of #5634.
+
+This copies the respective OpenSSL code in ECDSA_verify in
+OpenSSL pre-1.0.1k (e.g. 
https://github.com/openssl/openssl/blob/OpenSSL_1_0_1j/crypto/ecdsa/ecs_vrf.c#L89)
+more closely.
+
+As reported by @sergiodemianlerner.
+
+Github-Pull: #5640
+Rebased-From: c6b7b29f232c651f898eeffb93f36c8f537c56d2
+---
+ src/key.cpp | 13 -
+ 1 file changed, 12 insertions(+), 1 deletion(-)
+
+diff --git a/src/key.cpp b/src/key.cpp
+index a845ba1..63332bf 100644
+--- a/src/key.cpp
 b/src/key.cpp
+@@ -234,7 +234,18 @@ class CECKey {
+ unsigned char *norm_der = NULL;
+ ECDSA_SIG *norm_sig = ECDSA_SIG_new();
+ const unsigned char* sigptr = vchSig[0];
+-d2i_ECDSA_SIG(norm_sig, sigptr, vchSig.size());
++assert(norm_sig);
++if (d2i_ECDSA_SIG(norm_sig, sigptr, vchSig.size()) == NULL)
++{
++/* As of OpenSSL 1.0.0p d2i_ECDSA_SIG frees and nulls the pointer 
on
++ * error. But OpenSSL's own use of this function redundantly 
frees the
++ * result. As ECDSA_SIG_free(NULL) is a no-op, and in the absence 
of a
++ * clear contract for the function behaving the same way is more
++ * conservative.
++ */
++ECDSA_SIG_free(norm_sig);
++return false;
++}
+ int derlen = i2d_ECDSA_SIG(norm_sig, norm_der);
+ ECDSA_SIG_free(norm_sig);
+ if (derlen = 0)

Added: 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch
===
--- 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch  
(rev 0)
+++ 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283.patch  2015-01-12 09:41:00 UTC 
(rev 125793)
@@ -0,0 +1,50 @@
+From 0a94661e8db94e84ecbf1ea45a51fb3c7fb77283 Mon Sep 17 00:00:00 2001
+From: Gregory Maxwell g...@xiph.org
+Date: Sat, 6 Dec 2014 07:08:02 -0800
+Subject: [PATCH] Disable SSLv3 (in favor of TLS) for the RPC client and
+ server.
+
+TLS is subject to downgrade attacks when SSLv3 is available, and
+ SSLv3 has vulnerabilities.
+
+The popular solution is to disable SSLv3. On the web this breaks
+ some tiny number of very old clients. While Bitcoin RPC shouldn't
+ be exposed to the open Internet, it also shouldn't be exposed to
+ really old SSL implementations, so it shouldn't be a major issue
+ for us to disable SSLv3.
+
+There is more information on the downgrade attacks and disabling
+ SSLv3 at https://disablessl3.com/ .
+
+Rebased-From: 683dc4009b2b01699e672f8150c28e2ebe0aae19
+---
+ src/rpcclient.cpp | 2 +-
+ src/rpcserver.cpp | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp
+index 4f3c39c..5e62b71 100644
+--- a/src/rpcclient.cpp
 b/src/rpcclient.cpp
+@@ -40,7 +40,7 @@ Object CallRPC(const string strMethod, const Array params)
+ bool fUseSSL = GetBoolArg(-rpcssl, false);
+ asio::io_service io_service;
+ ssl::context context(io_service, ssl::context::sslv23);
+-context.set_options(ssl::context::no_sslv2);
++context.set_options(ssl::context::no_sslv2 | ssl::context::no_sslv3);
+ asio::ssl::streamasio::ip::tcp::socket sslStream(io_service, context);
+ SSLIOStreamDeviceasio::ip::tcp d(sslStream, fUseSSL);
+ iostreams::stream SSLIOStreamDeviceasio::ip::tcp  stream(d);
+diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp
+index f43acf4..cc9e330 100644
+--- a/src/rpcserver.cpp
 b/src/rpcserver.cpp
+@@ -539,7 +539,7 @@ void StartRPCThreads()
+ 
+ 

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

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 10:57:00
  Author: tredaelli
Revision: 125798

validpgpkeys integrity check

Modified:
  electrum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-12 09:55:04 UTC (rev 125797)
+++ PKGBUILD2015-01-12 09:57:00 UTC (rev 125798)
@@ -30,6 +30,8 @@
 '5f8d846dedce20601f3131e687bd2dc54ca8df0137cbdaa1b06eab11eb6a52da'
 'ba97ed1716af25fb64e439415cbe55aadac3d6528ab29f7a0ea0f93b5a539299'
 '2542b0891b3e25674b4ab0755b4bf23523144b3e86dfb6281f852117e2e3d973')
+validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
+
 provides=('electrum')
 install=electrum.install
 


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

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 10:58:17
  Author: tredaelli
Revision: 125799

validpgpkeys integrity check

Modified:
  keepass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-12 09:57:00 UTC (rev 125798)
+++ PKGBUILD2015-01-12 09:58:17 UTC (rev 125799)
@@ -28,6 +28,7 @@
 'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'
 '1d5420e8babce5f4bbb3c68bdffe3bc0d3c3be25ad689138cd02fa14edd89140'
 '3d017c17a8788166c644e2460ba3596fd503f300342561921201fe5f69e5d194')
+validpgpkeys=('2171BEEAD0DD92A180655626DCCAA5B3FEB7C7BC')
 
 prepare() {
   # Extract icons


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

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 11:05:14
  Author: tredaelli
Revision: 125803

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

Added:
  tinc/repos/community-i686/PKGBUILD
(from rev 125802, tinc/trunk/PKGBUILD)
  tinc/repos/community-i686/tinc.install
(from rev 125802, tinc/trunk/tinc.install)
  tinc/repos/community-i686/tincd@.service
(from rev 125802, tinc/trunk/tincd@.service)
  tinc/repos/community-x86_64/PKGBUILD
(from rev 125802, tinc/trunk/PKGBUILD)
  tinc/repos/community-x86_64/tinc.install
(from rev 125802, tinc/trunk/tinc.install)
  tinc/repos/community-x86_64/tincd@.service
(from rev 125802, tinc/trunk/tincd@.service)
Deleted:
  tinc/repos/community-i686/PKGBUILD
  tinc/repos/community-i686/tinc.install
  tinc/repos/community-i686/tincd@.service
  tinc/repos/community-x86_64/PKGBUILD
  tinc/repos/community-x86_64/tinc.install
  tinc/repos/community-x86_64/tincd@.service

-+
 /PKGBUILD   |   80 ++
 /tinc.install   |   40 +++
 /tincd@.service |   20 +
 community-i686/PKGBUILD |   39 --
 community-i686/tinc.install |   20 -
 community-i686/tincd@.service   |   10 
 community-x86_64/PKGBUILD   |   39 --
 community-x86_64/tinc.install   |   20 -
 community-x86_64/tincd@.service |   10 
 9 files changed, 140 insertions(+), 138 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-12 10:05:02 UTC (rev 125802)
+++ community-i686/PKGBUILD 2015-01-12 10:05:14 UTC (rev 125803)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: helios
-# Contributor: Lothar Gesslein
-# Contributor: Dominik George n...@naturalnet.de
-
-pkgname=tinc
-pkgver=1.0.24
-pkgrel=2
-pkgdesc=VPN (Virtual Private Network) daemon
-arch=('i686' 'x86_64')
-url=http://www.tinc-vpn.org/;
-license=('GPL')
-depends=('lzo' 'openssl')
-install=tinc.install
-source=(http://www.tinc-vpn.org/packages/tinc-$pkgver.tar.gz{,.sig}
-tincd@.service)
-md5sums=('14a91eb2e85bdc0451a815612521b708'
- 'SKIP'
- '112327da32fdb56ab779fe004712235f')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-  install -dm755 $pkgdir/usr/share/tinc/examples
-  tar xozvf doc/sample-config.tar.gz -C $pkgdir/usr/share/tinc/examples
-  find $pkgdir/usr/share/tinc/examples -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/tinc/examples -type d -exec chmod 755 {} +
-
-  install -Dm644 $srcdir/tincd@.service 
$pkgdir/usr/lib/systemd/system/tincd@.service
-}

Copied: tinc/repos/community-i686/PKGBUILD (from rev 125802, 
tinc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-12 10:05:14 UTC (rev 125803)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: helios
+# Contributor: Lothar Gesslein
+# Contributor: Dominik George n...@naturalnet.de
+
+pkgname=tinc
+pkgver=1.0.25
+pkgrel=1
+pkgdesc=VPN (Virtual Private Network) daemon
+arch=('i686' 'x86_64')
+url=http://www.tinc-vpn.org/;
+license=('GPL')
+depends=('lzo' 'openssl')
+install=tinc.install
+source=(http://www.tinc-vpn.org/packages/tinc-$pkgver.tar.gz{,.sig}
+tincd@.service)
+md5sums=('0b91b693f7cf76f481b547d0c86f9578'
+ 'SKIP'
+ '112327da32fdb56ab779fe004712235f')
+validpgpkeys=('D62BDD168EFBE48BC60E8E234A6084B9C0D71F4A')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+  install -dm755 $pkgdir/usr/share/tinc/examples
+  tar xozvf doc/sample-config.tar.gz -C $pkgdir/usr/share/tinc/examples
+  find $pkgdir/usr/share/tinc/examples -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/tinc/examples -type d -exec chmod 755 {} +
+
+  install -Dm644 $srcdir/tincd@.service 
$pkgdir/usr/lib/systemd/system/tincd@.service
+}

Deleted: community-i686/tinc.install
===
--- community-i686/tinc.install 2015-01-12 10:05:02 UTC (rev 125802)
+++ community-i686/tinc.install 2015-01-12 10:05:14 UTC (rev 125803)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(tinc.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove

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

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 11:05:02
  Author: tredaelli
Revision: 125802

upgpkg: tinc 1.0.25-1

Modified:
  tinc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-12 10:03:10 UTC (rev 125801)
+++ PKGBUILD2015-01-12 10:05:02 UTC (rev 125802)
@@ -5,8 +5,8 @@
 # Contributor: Dominik George n...@naturalnet.de
 
 pkgname=tinc
-pkgver=1.0.24
-pkgrel=2
+pkgver=1.0.25
+pkgrel=1
 pkgdesc=VPN (Virtual Private Network) daemon
 arch=('i686' 'x86_64')
 url=http://www.tinc-vpn.org/;
@@ -15,9 +15,10 @@
 install=tinc.install
 source=(http://www.tinc-vpn.org/packages/tinc-$pkgver.tar.gz{,.sig}
 tincd@.service)
-md5sums=('14a91eb2e85bdc0451a815612521b708'
+md5sums=('0b91b693f7cf76f481b547d0c86f9578'
  'SKIP'
  '112327da32fdb56ab779fe004712235f')
+validpgpkeys=('D62BDD168EFBE48BC60E8E234A6084B9C0D71F4A')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


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

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 11:29:24
  Author: tredaelli
Revision: 125805

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 125804, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/wireshark-gtk.install
(from rev 125804, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-i686/wireshark-qt.install
(from rev 125804, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-i686/wireshark.install
(from rev 125804, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 125804, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/wireshark-gtk.install
(from rev 125804, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-x86_64/wireshark-qt.install
(from rev 125804, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 125804, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/PKGBUILD
  wireshark/repos/community-i686/wireshark-gtk.install
  wireshark/repos/community-i686/wireshark-qt.install
  wireshark/repos/community-i686/wireshark.install
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/wireshark-gtk.install
  wireshark/repos/community-x86_64/wireshark-qt.install
  wireshark/repos/community-x86_64/wireshark.install

+
 /PKGBUILD  |  190 +++
 /wireshark-gtk.install |   24 +++
 /wireshark-qt.install  |   22 +++
 /wireshark.install |   36 +
 community-i686/PKGBUILD|   95 ---
 community-i686/wireshark-gtk.install   |   12 -
 community-i686/wireshark-qt.install|   11 -
 community-i686/wireshark.install   |   18 --
 community-x86_64/PKGBUILD  |   95 ---
 community-x86_64/wireshark-gtk.install |   12 -
 community-x86_64/wireshark-qt.install  |   11 -
 community-x86_64/wireshark.install |   18 --
 12 files changed, 272 insertions(+), 272 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-12 10:28:56 UTC (rev 125804)
+++ community-i686/PKGBUILD 2015-01-12 10:29:24 UTC (rev 125805)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Guillaume ALAUX guilla...@archlinux.org
-# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
-pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
-pkgbase=wireshark
-pkgver=1.12.2
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('qt4' 'gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
- 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
-url='http://www.wireshark.org/'
-source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha1sums=('0598fe285725f97045d7d08e6bde04686044b335')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed -i 's/$(AM_V_RCC)rcc/-qt4/p' ui/qt/Makefile.am
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt \
-  --with-gtk3=yes \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('krb5' 'libgcrypt' 'libcap' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  #wireshark uid group is 150
-  chgrp 150 ${pkgdir}/usr/bin/dumpcap
-  chmod 754 ${pkgdir}/usr/bin/dumpcap
-  rm ${pkgdir}/usr/bin/wireshark ${pkgdir}/usr/bin/wireshark-qt
-
-  # Headers
-  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
-
-  install -m644 color.h config.h register.h ws_symbol_export.h 
${pkgdir}/usr/include/${pkgbase}
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
-  done
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('gtk3' 'portaudio' 'wireshark-cli' 'desktop-file-utils' 
'hicolor-icon-theme')
-  install=wireshark-gtk.install
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  install -Dm755 .libs/wireshark ${pkgdir}/usr/bin/wireshark
-  for d in 16 32 48; do
-install -Dm644 image/hi${d}-app-wireshark.png  \
-   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
-  done
-
-  for d in 16 24 32 48 64 128 256 ; do
-install -Dm644 image

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

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 11:03:10
  Author: tredaelli
Revision: 125801

validpgpkeys integrity check

Modified:
  vidalia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-12 10:00:43 UTC (rev 125800)
+++ PKGBUILD2015-01-12 10:03:10 UTC (rev 125801)
@@ -15,6 +15,7 @@
 source=(https://www.torproject.org/vidalia/dist/$pkgname-$pkgver.tar.gz{,.asc})
 md5sums=('8d3079a66d79c79ccfefb929b820f9ac'
  'c735521ae9d231e974c753a5206c2c0f')
+validpgpkeys=('8738A680B84B3031A630F2DB416F061063FEE659')
 
 build() {
   cd $srcdir


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

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 11:28:56
  Author: tredaelli
Revision: 125804

upgpkg: wireshark 1.12.3-1

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-12 10:05:14 UTC (rev 125803)
+++ PKGBUILD2015-01-12 10:28:56 UTC (rev 125804)
@@ -4,7 +4,7 @@
 # Contributor: Florian Pritz bluewind at jabber dot ccc dot de
 pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
 pkgbase=wireshark
-pkgver=1.12.2
+pkgver=1.12.3
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -12,7 +12,7 @@
  'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
 url='http://www.wireshark.org/'
 source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha1sums=('0598fe285725f97045d7d08e6bde04686044b335')
+sha1sums=('44ad77b6e80f41ba34ac0eaf477b81cb1345ceed')
 
 prepare() {
   cd ${pkgbase}-${pkgver}


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

2015-01-12 Thread Timothy Redaelli
Date: Monday, January 12, 2015 @ 11:00:43
  Author: tredaelli
Revision: 125800

validpgpkeys integrity check

Modified:
  parallel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-12 09:58:17 UTC (rev 125799)
+++ PKGBUILD2015-01-12 10:00:43 UTC (rev 125800)
@@ -16,6 +16,7 @@
  'SKIP')
 sha1sums=('234b43a99354e2079b3dff48ab2e10a9cc9e3b42'
   'SKIP')
+validpgpkeys=('CDA01A4208C4F74506107E7BD1AB4516')
 
 build() {
   cd $pkgname-$pkgver


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

2014-12-19 Thread Timothy Redaelli
Date: Friday, December 19, 2014 @ 14:43:04
  Author: tredaelli
Revision: 124101

upgpkg: tcpreplay 4.1.0-1

Modified:
  tcpreplay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 11:25:36 UTC (rev 124100)
+++ PKGBUILD2014-12-19 13:43:04 UTC (rev 124101)
@@ -3,7 +3,7 @@
 # Contributor: Sébastien Duquette ekse...@gmail.com
 # Contributor: Dawid Wrobel cr...@klej.net
 pkgname=tcpreplay
-pkgver=4.0.5
+pkgver=4.1.0
 pkgrel=1
 pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
 url=http://tcpreplay.appneta.com;
@@ -14,11 +14,11 @@
 optdepends=('tcpdump: decoding of packets support')
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('1a6f108a62bf526eeffa2998a6f311af')
+md5sums=('fd48d73d84ade30ece0a9abb538c82d5')
 
 build() {
  cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump
+ ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump ac_cv_header_net_bpf_h=n
  make
 }
 


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

2014-12-19 Thread Timothy Redaelli
Date: Friday, December 19, 2014 @ 14:43:17
  Author: tredaelli
Revision: 124102

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-19 13:43:04 UTC (rev 124101)
+++ community-i686/PKGBUILD 2014-12-19 13:43:17 UTC (rev 124102)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Sébastien Duquette ekse...@gmail.com
-# Contributor: Dawid Wrobel cr...@klej.net
-pkgname=tcpreplay
-pkgver=4.0.5
-pkgrel=1
-pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
-url=http://tcpreplay.appneta.com;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('libpcap' 'libdnet')
-makedepends=('tcpdump')
-optdepends=('tcpdump: decoding of packets support')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('1a6f108a62bf526eeffa2998a6f311af')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir/ install
-}

Copied: tcpreplay/repos/community-i686/PKGBUILD (from rev 124101, 
tcpreplay/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-19 13:43:17 UTC (rev 124102)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Sébastien Duquette ekse...@gmail.com
+# Contributor: Dawid Wrobel cr...@klej.net
+pkgname=tcpreplay
+pkgver=4.1.0
+pkgrel=1
+pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
+url=http://tcpreplay.appneta.com;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('libpcap' 'libdnet')
+makedepends=('tcpdump')
+optdepends=('tcpdump: decoding of packets support')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('fd48d73d84ade30ece0a9abb538c82d5')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump ac_cv_header_net_bpf_h=n
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir/ install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-19 13:43:04 UTC (rev 124101)
+++ community-x86_64/PKGBUILD   2014-12-19 13:43:17 UTC (rev 124102)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Sébastien Duquette ekse...@gmail.com
-# Contributor: Dawid Wrobel cr...@klej.net
-pkgname=tcpreplay
-pkgver=4.0.5
-pkgrel=1
-pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
-url=http://tcpreplay.appneta.com;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('libpcap' 'libdnet')
-makedepends=('tcpdump')
-optdepends=('tcpdump: decoding of packets support')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('1a6f108a62bf526eeffa2998a6f311af')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir/ install
-}

Copied: tcpreplay/repos/community-x86_64/PKGBUILD (from rev 124101, 
tcpreplay/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-19 13:43:17 UTC (rev 124102)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Sébastien Duquette ekse...@gmail.com
+# Contributor: Dawid Wrobel cr...@klej.net
+pkgname=tcpreplay
+pkgver=4.1.0
+pkgrel=1
+pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
+url=http://tcpreplay.appneta.com;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('libpcap' 'libdnet')
+makedepends=('tcpdump')
+optdepends=('tcpdump: decoding of packets support

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

2014-12-15 Thread Timothy Redaelli
Date: Monday, December 15, 2014 @ 16:43:19
  Author: tredaelli
Revision: 123905

upgpkg: parallel 20141122-1

Modified:
  parallel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 09:56:01 UTC (rev 123904)
+++ PKGBUILD2014-12-15 15:43:19 UTC (rev 123905)
@@ -4,7 +4,7 @@
 # Contributor: Peter Simons sim...@cryp.to
 
 pkgname=parallel
-pkgver=20141022
+pkgver=20141122
 pkgrel=1
 pkgdesc='A shell tool for executing jobs in parallel'
 arch=('any')
@@ -12,9 +12,9 @@
 license=('GPL3')
 depends=('perl' 'procps')
 source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('c01f53f9f6cc721a81591308f9e689c4'
+md5sums=('9fad45cfb5180d35650f6c2316e1489a'
  'SKIP')
-sha1sums=('6aca752527a4c3798c4ec80a9d0f037969280975'
+sha1sums=('234b43a99354e2079b3dff48ab2e10a9cc9e3b42'
   'SKIP')
 
 build() {


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

2014-12-15 Thread Timothy Redaelli
Date: Monday, December 15, 2014 @ 16:43:32
  Author: tredaelli
Revision: 123906

archrelease: copy trunk to community-any

Added:
  parallel/repos/community-any/PKGBUILD
(from rev 123905, parallel/trunk/PKGBUILD)
  parallel/repos/community-any/fix-pod-numbers.patch
(from rev 123905, parallel/trunk/fix-pod-numbers.patch)
Deleted:
  parallel/repos/community-any/PKGBUILD
  parallel/repos/community-any/fix-pod-numbers.patch

---+
 PKGBUILD  |   68 +-
 fix-pod-numbers.patch |   94 
 2 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-15 15:43:19 UTC (rev 123905)
+++ PKGBUILD2014-12-15 15:43:32 UTC (rev 123906)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Vianney le Clément vleclement AT gmail·com
-# Contributor: Peter Simons sim...@cryp.to
-
-pkgname=parallel
-pkgver=20141022
-pkgrel=1
-pkgdesc='A shell tool for executing jobs in parallel'
-arch=('any')
-url='http://www.gnu.org/software/parallel/'
-license=('GPL3')
-depends=('perl' 'procps')
-source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('c01f53f9f6cc721a81591308f9e689c4'
- 'SKIP')
-sha1sums=('6aca752527a4c3798c4ec80a9d0f037969280975'
-  'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  # FIXME
-  ln -sf parallel $pkgdir/usr/bin/sem
-}
-
-# vim:set ts=2 sw=2 et:

Copied: parallel/repos/community-any/PKGBUILD (from rev 123905, 
parallel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-15 15:43:32 UTC (rev 123906)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Vianney le Clément vleclement AT gmail·com
+# Contributor: Peter Simons sim...@cryp.to
+
+pkgname=parallel
+pkgver=20141122
+pkgrel=1
+pkgdesc='A shell tool for executing jobs in parallel'
+arch=('any')
+url='http://www.gnu.org/software/parallel/'
+license=('GPL3')
+depends=('perl' 'procps')
+source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+md5sums=('9fad45cfb5180d35650f6c2316e1489a'
+ 'SKIP')
+sha1sums=('234b43a99354e2079b3dff48ab2e10a9cc9e3b42'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+
+  # FIXME
+  ln -sf parallel $pkgdir/usr/bin/sem
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-pod-numbers.patch
===
--- fix-pod-numbers.patch   2014-12-15 15:43:19 UTC (rev 123905)
+++ fix-pod-numbers.patch   2014-12-15 15:43:32 UTC (rev 123906)
@@ -1,47 +0,0 @@
 src/parallel.pod.orig
-+++ src/parallel.pod
-@@ -528,18 +528,18 @@
- 
- =over 3
- 
--=item 0
-+=item 0Z
- 
- Do not halt if a job fails. Exit status will be the number of jobs
- failed. This is the default.
- 
--=item 1
-+=item 1Z
- 
- Do not start new jobs if a job fails, but complete the running jobs
- including cleanup. The exit status will be the exit status from the
- last failing job.
- 
--=item 2
-+=item 2Z
- 
- Kill off all jobs immediately and exit without cleanup. The exit
- status will be the exit status from the failing job.
-@@ -2760,7 +2760,7 @@
- 
- =over 6
- 
--=item 0
-+=item 0Z
- 
- All jobs ran without error.
- 
-@@ -2768,11 +2768,11 @@
- 
- Some of the jobs failed. The exit status gives the number of failed jobs
- 
--=item 254
-+=item 254Z
- 
- More than 253 jobs failed.
- 
--=item 255
-+=item 255Z
- 
- Other error.
- 

Copied: parallel/repos/community-any/fix-pod-numbers.patch (from rev 123905, 
parallel/trunk/fix-pod-numbers.patch)
===
--- fix-pod-numbers.patch   (rev 0)
+++ fix-pod-numbers.patch   2014-12-15 15:43:32 UTC (rev 123906)
@@ -0,0 +1,47 @@
+--- src/parallel.pod.orig
 src/parallel.pod
+@@ -528,18 +528,18 @@
+ 
+ =over 3
+ 
+-=item 0
++=item 0Z
+ 
+ Do not halt if a job fails. Exit status will be the number of jobs
+ failed. This is the default.
+ 
+-=item 1
++=item 1Z
+ 
+ Do not start new jobs if a job fails, but complete the running jobs
+ including cleanup. The exit status will be the exit status from the
+ last failing job.
+ 
+-=item 2
++=item 2Z
+ 
+ Kill off all jobs immediately and exit without cleanup. The exit
+ status will be the exit status from the failing job.
+@@ -2760,7 +2760,7 @@
+ 
+ =over 6
+ 
+-=item 0
++=item 0Z
+ 
+ All jobs ran without error.
+ 
+@@ -2768,11 +2768,11 @@
+ 
+ Some of the jobs failed. The exit status gives the number of failed jobs
+ 
+-=item 254
++=item 254Z

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

2014-12-15 Thread Timothy Redaelli
Date: Monday, December 15, 2014 @ 17:12:47
  Author: tredaelli
Revision: 123909

upgpkg: pax-utils 0.9.1-1

Modified:
  pax-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 16:08:33 UTC (rev 123908)
+++ PKGBUILD2014-12-15 16:12:47 UTC (rev 123909)
@@ -4,7 +4,7 @@
 # Contributor: Maxwel msg.max...@gmail.com
 
 pkgname=pax-utils
-pkgver=0.8.1
+pkgver=0.9.1
 pkgrel=1
 pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
 url='http://hardened.gentoo.org/pax-utils.xml'
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('bash' 'libcap' 'python-pyelftools')
 source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('844ff25b1a11bcef92ef34b22f576f226a772b67196818656f8874513438f5b9')
+sha256sums=('643ccaf6952f836c42aafcd5ad7e5f7de2d3472225a34603680b151a8b198b0c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -21,7 +21,8 @@
 
 check() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  make check
+  # FIXME lddpath.py uses /lib64 before /usr/lib
+  LD_LIBRARY_PATH=/usr/lib make check
 }
 
 package() {


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

2014-12-15 Thread Timothy Redaelli
Date: Monday, December 15, 2014 @ 17:13:00
  Author: tredaelli
Revision: 123910

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

Added:
  pax-utils/repos/community-i686/PKGBUILD
(from rev 123909, pax-utils/trunk/PKGBUILD)
  pax-utils/repos/community-x86_64/PKGBUILD
(from rev 123909, pax-utils/trunk/PKGBUILD)
Deleted:
  pax-utils/repos/community-i686/PKGBUILD
  pax-utils/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 16:12:47 UTC (rev 123909)
+++ community-i686/PKGBUILD 2014-12-15 16:13:00 UTC (rev 123910)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: sh0 m...@sh0.org
-# Contributor: Maxwel msg.max...@gmail.com
-
-pkgname=pax-utils
-pkgver=0.8.1
-pkgrel=1
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'python-pyelftools')
-source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('844ff25b1a11bcef92ef34b22f576f226a772b67196818656f8874513438f5b9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_CAP='yes'
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_PYTHON='yes' DESTDIR=${pkgdir} install
-}

Copied: pax-utils/repos/community-i686/PKGBUILD (from rev 123909, 
pax-utils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 16:13:00 UTC (rev 123910)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: sh0 m...@sh0.org
+# Contributor: Maxwel msg.max...@gmail.com
+
+pkgname=pax-utils
+pkgver=0.9.1
+pkgrel=1
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('643ccaf6952f836c42aafcd5ad7e5f7de2d3472225a34603680b151a8b198b0c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make USE_CAP='yes'
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # FIXME lddpath.py uses /lib64 before /usr/lib
+  LD_LIBRARY_PATH=/usr/lib make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make USE_PYTHON='yes' DESTDIR=${pkgdir} install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-15 16:12:47 UTC (rev 123909)
+++ community-x86_64/PKGBUILD   2014-12-15 16:13:00 UTC (rev 123910)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: sh0 m...@sh0.org
-# Contributor: Maxwel msg.max...@gmail.com
-
-pkgname=pax-utils
-pkgver=0.8.1
-pkgrel=1
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'python-pyelftools')
-source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('844ff25b1a11bcef92ef34b22f576f226a772b67196818656f8874513438f5b9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_CAP='yes'
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_PYTHON='yes' DESTDIR=${pkgdir} install
-}

Copied: pax-utils/repos/community-x86_64/PKGBUILD (from rev 123909, 
pax-utils/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-15 16:13:00 UTC (rev 123910)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: sh0 m...@sh0.org
+# Contributor: Maxwel msg.max...@gmail.com
+
+pkgname=pax-utils
+pkgver=0.9.1
+pkgrel=1
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
+sha256sums

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

2014-11-28 Thread Timothy Redaelli
Date: Friday, November 28, 2014 @ 16:37:04
  Author: tredaelli
Revision: 123254

upgpkg: dispcalgui 2.6.0.0-1

Modified:
  dispcalgui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-28 15:28:37 UTC (rev 123253)
+++ PKGBUILD2014-11-28 15:37:04 UTC (rev 123254)
@@ -4,7 +4,7 @@
 # Contributor: foxbunny bg.bra...@gmail.com
 
 pkgname=dispcalgui
-pkgver=2.5.0.0
+pkgver=2.6.0.0
 pkgrel=1
 pkgdesc=A GUI frontend for several utilities from the open source color 
management system Argyll CMS
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 optdepends=('gksu: For running as root')
 install=${pkgname}.install
 
source=(http://downloads.sourceforge.net/project/dispcalgui/release/${pkgver}/dispcalGUI-${pkgver}.tar.gz;)
-md5sums=('bbef859293e85f4ce1252e5761863ce1')
+md5sums=('95b9bfbb911c184f8fcb0d9f5e126d1b')
 
 prepare() {
   cd dispcalGUI-${pkgver}


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

2014-11-28 Thread Timothy Redaelli
Date: Friday, November 28, 2014 @ 16:37:15
  Author: tredaelli
Revision: 123255

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

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

-+
 /PKGBUILD   |   64 ++
 /dispcalgui.install |   38 
 community-i686/PKGBUILD |   32 -
 community-i686/dispcalgui.install   |   19 --
 community-x86_64/PKGBUILD   |   32 -
 community-x86_64/dispcalgui.install |   19 --
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-28 15:37:04 UTC (rev 123254)
+++ community-i686/PKGBUILD 2014-11-28 15:37:15 UTC (rev 123255)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Cedric Girard girard.ced...@gmail.com
-# Contributor: foxbunny bg.bra...@gmail.com
-
-pkgname=dispcalgui
-pkgver=2.5.0.0
-pkgrel=1
-pkgdesc=A GUI frontend for several utilities from the open source color 
management system Argyll CMS
-arch=('i686' 'x86_64')
-url=http://hoech.net/dispcalGUI/;
-license=('GPL3')
-makedepends=('libx11' 'libxrandr' 'libxinerama' 'libxxf86vm' 
'python2-setuptools' 'xdg-utils')
-depends=('argyllcms' 'wxpython' 'hicolor-icon-theme' 'desktop-file-utils' 
'python2-numpy')
-optdepends=('gksu: For running as root')
-install=${pkgname}.install
-source=(http://downloads.sourceforge.net/project/dispcalgui/release/${pkgver}/dispcalGUI-${pkgver}.tar.gz;)
-md5sums=('bbef859293e85f4ce1252e5761863ce1')
-
-prepare() {
-  cd dispcalGUI-${pkgver}
-  find . -name *.py -exec sed -i 's!/usr/bin/env python!/usr/bin/env 
python2!g' {} +
-}
-
-package() {
-  cd dispcalGUI-${pkgver}
-  python2 setup.py install --root=${pkgdir} --optimize=1
-  #udev rules are shipped with argyllcms
-  rm -rf ${pkgdir}/etc/udev/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dispcalgui/repos/community-i686/PKGBUILD (from rev 123254, 
dispcalgui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-28 15:37:15 UTC (rev 123255)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Cedric Girard girard.ced...@gmail.com
+# Contributor: foxbunny bg.bra...@gmail.com
+
+pkgname=dispcalgui
+pkgver=2.6.0.0
+pkgrel=1
+pkgdesc=A GUI frontend for several utilities from the open source color 
management system Argyll CMS
+arch=('i686' 'x86_64')
+url=http://hoech.net/dispcalGUI/;
+license=('GPL3')
+makedepends=('libx11' 'libxrandr' 'libxinerama' 'libxxf86vm' 
'python2-setuptools' 'xdg-utils')
+depends=('argyllcms' 'wxpython' 'hicolor-icon-theme' 'desktop-file-utils' 
'python2-numpy')
+optdepends=('gksu: For running as root')
+install=${pkgname}.install
+source=(http://downloads.sourceforge.net/project/dispcalgui/release/${pkgver}/dispcalGUI-${pkgver}.tar.gz;)
+md5sums=('95b9bfbb911c184f8fcb0d9f5e126d1b')
+
+prepare() {
+  cd dispcalGUI-${pkgver}
+  find . -name *.py -exec sed -i 's!/usr/bin/env python!/usr/bin/env 
python2!g' {} +
+}
+
+package() {
+  cd dispcalGUI-${pkgver}
+  python2 setup.py install --root=${pkgdir} --optimize=1
+  #udev rules are shipped with argyllcms
+  rm -rf ${pkgdir}/etc/udev/
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/dispcalgui.install
===
--- community-i686/dispcalgui.install   2014-11-28 15:37:04 UTC (rev 123254)
+++ community-i686/dispcalgui.install   2014-11-28 15:37:15 UTC (rev 123255)
@@ -1,19 +0,0 @@
-# arg 1:  the new package version
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade(){
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_remove() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-
-# vim:set ts=2 sw=2 et:

Copied: dispcalgui/repos/community-i686/dispcalgui.install (from rev 123254, 
dispcalgui/trunk/dispcalgui.install

[arch-commits] Commit in (6 files)

2014-11-28 Thread Timothy Redaelli
(der.value);
-   sc_pkcs15_free_certificate(cert);
-   return SC_ERROR_INVALID_ASN1_OBJECT;
-   }
-+  free(der.value);
- 
--  cert-data = der;
-   *cert_out = cert;
-   return SC_SUCCESS;
- }
--- 
-1.8.4
-

Deleted: opensc/trunk/0002-epass2003-properly-disable-padding.patch
===
--- opensc/trunk/0002-epass2003-properly-disable-padding.patch  2014-08-29 
18:34:59 UTC (rev 118078)
+++ opensc/trunk/0002-epass2003-properly-disable-padding.patch  2014-11-28 
17:08:03 UTC (rev 123259)
@@ -1,39 +0,0 @@
-From b1a4775310a4e30d8fd5c1cc91e60971f922e64a Mon Sep 17 00:00:00 2001
-From: Zbigniew Halas zha...@gmail.com
-Date: Wed, 27 Feb 2013 23:44:02 +
-Subject: [PATCH] epass2003: properly disable padding
-
-EVP_CIPHER_CTX_set_padding needs to be called after EVP_EncryptInit_ex
-and EVP_DecryptInit_ex, otherwise padding is re-enabled, which in turn
-causes buffer overruns

- src/libopensc/card-epass2003.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/libopensc/card-epass2003.c b/src/libopensc/card-epass2003.c
-index 80088b9..6f04573 100644
 a/src/libopensc/card-epass2003.c
-+++ b/src/libopensc/card-epass2003.c
-@@ -117,8 +117,8 @@
- 
-   memcpy(iv_tmp, iv, EVP_MAX_IV_LENGTH);
-   EVP_CIPHER_CTX_init(ctx);
--  EVP_CIPHER_CTX_set_padding(ctx, 0);
-   EVP_EncryptInit_ex(ctx, cipher, NULL, key, iv_tmp);
-+  EVP_CIPHER_CTX_set_padding(ctx, 0);
- 
-   if (!EVP_EncryptUpdate(ctx, output, outl, input, length))
-   goto out;
-@@ -146,8 +146,8 @@
- 
-   memcpy(iv_tmp, iv, EVP_MAX_IV_LENGTH);
-   EVP_CIPHER_CTX_init(ctx);
--  EVP_CIPHER_CTX_set_padding(ctx, 0);
-   EVP_DecryptInit_ex(ctx, cipher, NULL, key, iv_tmp);
-+  EVP_CIPHER_CTX_set_padding(ctx, 0);
- 
-   if (!EVP_DecryptUpdate(ctx, output, outl, input, length))
-   goto out;
--- 
-1.8.4
-

Modified: opensc/trunk/PKGBUILD
===
--- opensc/trunk/PKGBUILD   2014-08-29 18:34:59 UTC (rev 118078)
+++ opensc/trunk/PKGBUILD   2014-11-28 17:08:03 UTC (rev 123259)
@@ -1,10 +1,11 @@
 # $Id$
-# Maintainer: Sébastien Luttringer
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Sébastien Luttringer
 # Contributor: kevku ke...@msn.com
 
 pkgname=opensc
-pkgver=0.13.0
-pkgrel=4
+pkgver=0.14.0
+pkgrel=1
 pkgdesc='Tools and libraries for smart cards'
 arch=('x86_64' 'i686')
 url='https://github.com/OpenSC/OpenSC/wiki'
@@ -13,18 +14,9 @@
 makedepends=('docbook-xsl')
 depends=('openssl' 'pcsclite' 'libltdl')
 options=('!emptydirs')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;
-'0001-pkcs15-regression-in-e35febe-compute-cert-length.patch'
-'0002-epass2003-properly-disable-padding.patch')
-md5sums=('74a10de6c646bdaae307d6dc9e9accc0'
- '49a0989c169decf6876a3a9631289dbc'
- '68fe80c8fb6c28c0bcf9d36e3245e4ae')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('8e99885dbe28a9c71d5140f0105c56ff')
 
-prepare() {
-  patch -p1 -d $pkgname-$pkgver  
0001-pkcs15-regression-in-e35febe-compute-cert-length.patch
-  patch -p1 -d $pkgname-$pkgver  0002-epass2003-properly-disable-padding.patch
-}
-
 build() {
   cd $pkgname-$pkgver
   export LIBS=-lltdl


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

2014-11-28 Thread Timothy Redaelli
Date: Friday, November 28, 2014 @ 18:08:25
  Author: tredaelli
Revision: 123260

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

Added:
  opensc/repos/community-i686/
  opensc/repos/community-i686/PKGBUILD
(from rev 123259, opensc/trunk/PKGBUILD)
  opensc/repos/community-x86_64/
  opensc/repos/community-x86_64/PKGBUILD
(from rev 123259, opensc/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   44 
 community-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: opensc/repos/community-i686/PKGBUILD (from rev 123259, 
opensc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-28 17:08:25 UTC (rev 123260)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: kevku ke...@msn.com
+
+pkgname=opensc
+pkgver=0.14.0
+pkgrel=1
+pkgdesc='Tools and libraries for smart cards'
+arch=('x86_64' 'i686')
+url='https://github.com/OpenSC/OpenSC/wiki'
+license=('LGPL')
+backup=('etc/opensc.conf')
+makedepends=('docbook-xsl')
+depends=('openssl' 'pcsclite' 'libltdl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('8e99885dbe28a9c71d5140f0105c56ff')
+
+build() {
+  cd $pkgname-$pkgver
+  export LIBS=-lltdl
+  _sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*)
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-man \
+--enable-doc \
+--enable-readline \
+--enable-openssl \
+--enable-pcsc \
+--enable-zlib \
+--enable-sm \
+--with-xsl-stylesheetsdir=$_sheetdir
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m644 etc/opensc.conf $pkgdir/etc/opensc.conf
+}
+
+# vim:set ts=2 sw=2 et:

Copied: opensc/repos/community-x86_64/PKGBUILD (from rev 123259, 
opensc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-11-28 17:08:25 UTC (rev 123260)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Sébastien Luttringer
+# Contributor: kevku ke...@msn.com
+
+pkgname=opensc
+pkgver=0.14.0
+pkgrel=1
+pkgdesc='Tools and libraries for smart cards'
+arch=('x86_64' 'i686')
+url='https://github.com/OpenSC/OpenSC/wiki'
+license=('LGPL')
+backup=('etc/opensc.conf')
+makedepends=('docbook-xsl')
+depends=('openssl' 'pcsclite' 'libltdl')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('8e99885dbe28a9c71d5140f0105c56ff')
+
+build() {
+  cd $pkgname-$pkgver
+  export LIBS=-lltdl
+  _sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*)
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-man \
+--enable-doc \
+--enable-readline \
+--enable-openssl \
+--enable-pcsc \
+--enable-zlib \
+--enable-sm \
+--with-xsl-stylesheetsdir=$_sheetdir
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m644 etc/opensc.conf $pkgdir/etc/opensc.conf
+}
+
+# vim:set ts=2 sw=2 et:


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

2014-11-20 Thread Timothy Redaelli
Date: Thursday, November 20, 2014 @ 14:23:26
  Author: tredaelli
Revision: 122832

upgpkg: wireshark 1.12.2-1

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-20 12:44:00 UTC (rev 122831)
+++ PKGBUILD2014-11-20 13:23:26 UTC (rev 122832)
@@ -4,7 +4,7 @@
 # Contributor: Florian Pritz bluewind at jabber dot ccc dot de
 pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
 pkgbase=wireshark
-pkgver=1.12.1
+pkgver=1.12.2
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -12,7 +12,7 @@
  'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
 url='http://www.wireshark.org/'
 source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha256sums=('82b26bd416ec15903b27785e35a622687008a743342054e96eaaeaa249be584b')
+sha1sums=('0598fe285725f97045d7d08e6bde04686044b335')
 
 prepare() {
   cd ${pkgbase}-${pkgver}


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

2014-11-20 Thread Timothy Redaelli
Date: Thursday, November 20, 2014 @ 14:27:04
  Author: tredaelli
Revision: 122833

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 122832, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/wireshark-gtk.install
(from rev 122832, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-i686/wireshark-qt.install
(from rev 122832, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-i686/wireshark.install
(from rev 122832, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 122832, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/wireshark-gtk.install
(from rev 122832, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-x86_64/wireshark-qt.install
(from rev 122832, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 122832, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/PKGBUILD
  wireshark/repos/community-i686/wireshark-gtk.install
  wireshark/repos/community-i686/wireshark-qt.install
  wireshark/repos/community-i686/wireshark.install
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/wireshark-gtk.install
  wireshark/repos/community-x86_64/wireshark-qt.install
  wireshark/repos/community-x86_64/wireshark.install

+
 /PKGBUILD  |  190 +++
 /wireshark-gtk.install |   24 +++
 /wireshark-qt.install  |   22 +++
 /wireshark.install |   36 +
 community-i686/PKGBUILD|   95 ---
 community-i686/wireshark-gtk.install   |   12 -
 community-i686/wireshark-qt.install|   11 -
 community-i686/wireshark.install   |   18 --
 community-x86_64/PKGBUILD  |   95 ---
 community-x86_64/wireshark-gtk.install |   12 -
 community-x86_64/wireshark-qt.install  |   11 -
 community-x86_64/wireshark.install |   18 --
 12 files changed, 272 insertions(+), 272 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-20 13:23:26 UTC (rev 122832)
+++ community-i686/PKGBUILD 2014-11-20 13:27:04 UTC (rev 122833)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Guillaume ALAUX guilla...@archlinux.org
-# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
-pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
-pkgbase=wireshark
-pkgver=1.12.1
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('qt4' 'gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
- 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
-url='http://www.wireshark.org/'
-source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha256sums=('82b26bd416ec15903b27785e35a622687008a743342054e96eaaeaa249be584b')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed -i 's/$(AM_V_RCC)rcc/-qt4/p' ui/qt/Makefile.am
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt \
-  --with-gtk3=yes \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('krb5' 'libgcrypt' 'libcap' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  #wireshark uid group is 150
-  chgrp 150 ${pkgdir}/usr/bin/dumpcap
-  chmod 754 ${pkgdir}/usr/bin/dumpcap
-  rm ${pkgdir}/usr/bin/wireshark ${pkgdir}/usr/bin/wireshark-qt
-
-  # Headers
-  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
-
-  install -m644 color.h config.h register.h ws_symbol_export.h 
${pkgdir}/usr/include/${pkgbase}
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
-  done
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('gtk3' 'portaudio' 'wireshark-cli' 'desktop-file-utils' 
'hicolor-icon-theme')
-  install=wireshark-gtk.install
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  install -Dm755 .libs/wireshark ${pkgdir}/usr/bin/wireshark
-  for d in 16 32 48; do
-install -Dm644 image/hi${d}-app-wireshark.png  \
-   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
-  done
-
-  for d in 16 24 32 48 64 128 256 ; do

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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 16:40:04
  Author: tredaelli
Revision: 121828

upgpkg: dropbear 2014.66-1

Modified:
  dropbear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-04 15:39:33 UTC (rev 121827)
+++ PKGBUILD2014-11-04 15:40:04 UTC (rev 121828)
@@ -8,7 +8,7 @@
 # Contributor: Simon Perry aur [at] sanxion [dot] net
 
 pkgname=dropbear
-pkgver=2014.65
+pkgver=2014.66
 pkgrel=1
 pkgdesc=Lightweight replacement for sshd
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 depends=('zlib')
 source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
 $pkgname.service)
-sha256sums=('e20057aa7db0f9ea4efdcbfc6fc6b73a648b47b6ab6a01659472142b06f5f56c'
+sha256sums=('ab3fe2670a517cc0bbe398ff5d15e9ca12cd14f2fc18930a8111ae2baa64ab76'
 '1920dc2d9a1dd86b3137ae4348196f9b95142d6eee484ee536bc7dfed7f0def0')
 
 prepare() {


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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 16:40:15
  Author: tredaelli
Revision: 121829

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

Added:
  dropbear/repos/community-i686/PKGBUILD
(from rev 121828, dropbear/trunk/PKGBUILD)
  dropbear/repos/community-i686/dropbear.service
(from rev 121828, dropbear/trunk/dropbear.service)
  dropbear/repos/community-x86_64/PKGBUILD
(from rev 121828, dropbear/trunk/PKGBUILD)
  dropbear/repos/community-x86_64/dropbear.service
(from rev 121828, dropbear/trunk/dropbear.service)
Deleted:
  dropbear/repos/community-i686/PKGBUILD
  dropbear/repos/community-i686/dropbear.service
  dropbear/repos/community-x86_64/PKGBUILD
  dropbear/repos/community-x86_64/dropbear.service

---+
 /PKGBUILD |   92 
 /dropbear.service |   20 +++
 community-i686/PKGBUILD   |   46 --
 community-i686/dropbear.service   |   10 ---
 community-x86_64/PKGBUILD |   46 --
 community-x86_64/dropbear.service |   10 ---
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-04 15:40:04 UTC (rev 121828)
+++ community-i686/PKGBUILD 2014-11-04 15:40:15 UTC (rev 121829)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Simon Perry aur [at] sanxion [dot] net
-# Contributor: Bartlomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Jason Pierce `echo 'moc tod liamg ta nosaj tod ecreip' | rev`
-# Contributor: Jeremy Cowgar jer...@cowgar.com
-# Contributor: Simon Perry aur [at] sanxion [dot] net
-
-pkgname=dropbear
-pkgver=2014.65
-pkgrel=1
-pkgdesc=Lightweight replacement for sshd
-arch=('i686' 'x86_64')
-url=http://matt.ucc.asn.au/dropbear/dropbear.html;
-license=('MIT')
-depends=('zlib')
-source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
-$pkgname.service)
-sha256sums=('e20057aa7db0f9ea4efdcbfc6fc6b73a648b47b6ab6a01659472142b06f5f56c'
-'1920dc2d9a1dd86b3137ae4348196f9b95142d6eee484ee536bc7dfed7f0def0')
-
-prepare() {
-  sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' $pkgname-$pkgver/options.h
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install DESTDIR=${pkgdir}/
-
-  # Configuration files
-  install -d ${pkgdir}/etc/$pkgname
-  install -D -m644 ${srcdir}/$pkgname.service 
${pkgdir}/usr/lib/systemd/system/$pkgname.service
-
-  # License file
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: dropbear/repos/community-i686/PKGBUILD (from rev 121828, 
dropbear/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-04 15:40:15 UTC (rev 121829)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Simon Perry aur [at] sanxion [dot] net
+# Contributor: Bartlomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Jason Pierce `echo 'moc tod liamg ta nosaj tod ecreip' | rev`
+# Contributor: Jeremy Cowgar jer...@cowgar.com
+# Contributor: Simon Perry aur [at] sanxion [dot] net
+
+pkgname=dropbear
+pkgver=2014.66
+pkgrel=1
+pkgdesc=Lightweight replacement for sshd
+arch=('i686' 'x86_64')
+url=http://matt.ucc.asn.au/dropbear/dropbear.html;
+license=('MIT')
+depends=('zlib')
+source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
+$pkgname.service)
+sha256sums=('ab3fe2670a517cc0bbe398ff5d15e9ca12cd14f2fc18930a8111ae2baa64ab76'
+'1920dc2d9a1dd86b3137ae4348196f9b95142d6eee484ee536bc7dfed7f0def0')
+
+prepare() {
+  sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' $pkgname-$pkgver/options.h
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install DESTDIR=${pkgdir}/
+
+  # Configuration files
+  install -d ${pkgdir}/etc/$pkgname
+  install -D -m644 ${srcdir}/$pkgname.service 
${pkgdir}/usr/lib/systemd/system/$pkgname.service
+
+  # License file
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: community-i686/dropbear.service
===
--- community-i686/dropbear.service 2014-11-04 15:40:04 UTC (rev 121828)
+++ community-i686/dropbear.service 2014-11-04 15:40:15 UTC (rev 121829)
@@ -1,10 +0,0 @@
-[Unit]
-Description=Dropbear SSH Daemon
-After=network.target
-
-[Service]
-Type=simple
-ExecStart=/usr/bin

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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 16:42:52
  Author: tredaelli
Revision: 121830

upgpkg: miniupnpc 1.9.20141027-1

Modified:
  miniupnpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-04 15:40:15 UTC (rev 121829)
+++ PKGBUILD2014-11-04 15:42:52 UTC (rev 121830)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli timothy.redae...@gmail.com
 # Contributor: Florian Loitsch archli...@florian.loitsch.com
 pkgname=miniupnpc
-pkgver=1.9.20140401
+pkgver=1.9.20141027
 pkgrel=1
 pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
 arch=('i686' 'x86_64')
@@ -10,15 +10,15 @@
 license=('BSD')
 depends=('sh')
 source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
-sha256sums=('d02670112125300f7a3d61421714d99105edd90190bf12542d16785f16f017aa')
+sha256sums=('763a3ebed0c3267b8605247b38f46e99bfe54c96a9ca2882aa9abb5485407540')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make PREFIX=$pkgdir/ install
   install -Dm644 man3/miniupnpc.3 ${pkgdir}/usr/share/man/man3/miniupnpc.3
   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE


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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 16:43:05
  Author: tredaelli
Revision: 121831

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-04 15:42:52 UTC (rev 121830)
+++ community-i686/PKGBUILD 2014-11-04 15:43:05 UTC (rev 121831)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Florian Loitsch archli...@florian.loitsch.com
-pkgname=miniupnpc
-pkgver=1.9.20140401
-pkgrel=1
-pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
-arch=('i686' 'x86_64')
-url=http://miniupnp.free.fr;
-license=('BSD')
-depends=('sh')
-source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
-sha256sums=('d02670112125300f7a3d61421714d99105edd90190bf12542d16785f16f017aa')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make PREFIX=$pkgdir/ install
-  install -Dm644 man3/miniupnpc.3 ${pkgdir}/usr/share/man/man3/miniupnpc.3
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: miniupnpc/repos/community-i686/PKGBUILD (from rev 121830, 
miniupnpc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-04 15:43:05 UTC (rev 121831)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Florian Loitsch archli...@florian.loitsch.com
+pkgname=miniupnpc
+pkgver=1.9.20141027
+pkgrel=1
+pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
+arch=('i686' 'x86_64')
+url=http://miniupnp.free.fr;
+license=('BSD')
+depends=('sh')
+source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
+sha256sums=('763a3ebed0c3267b8605247b38f46e99bfe54c96a9ca2882aa9abb5485407540')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=$pkgdir/ install
+  install -Dm644 man3/miniupnpc.3 ${pkgdir}/usr/share/man/man3/miniupnpc.3
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-04 15:42:52 UTC (rev 121830)
+++ community-x86_64/PKGBUILD   2014-11-04 15:43:05 UTC (rev 121831)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Florian Loitsch archli...@florian.loitsch.com
-pkgname=miniupnpc
-pkgver=1.9.20140401
-pkgrel=1
-pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
-arch=('i686' 'x86_64')
-url=http://miniupnp.free.fr;
-license=('BSD')
-depends=('sh')
-source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
-sha256sums=('d02670112125300f7a3d61421714d99105edd90190bf12542d16785f16f017aa')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make PREFIX=$pkgdir/ install
-  install -Dm644 man3/miniupnpc.3 ${pkgdir}/usr/share/man/man3/miniupnpc.3
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: miniupnpc/repos/community-x86_64/PKGBUILD (from rev 121830, 
miniupnpc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-11-04 15:43:05 UTC (rev 121831)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Florian Loitsch archli...@florian.loitsch.com
+pkgname=miniupnpc
+pkgver=1.9.20141027
+pkgrel=1
+pkgdesc=A small UPnP client library/tool to access Internet Gateway Devices
+arch=('i686' 'x86_64')
+url=http://miniupnp.free.fr;
+license=('BSD')
+depends=('sh')
+source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;)
+sha256sums=('763a3ebed0c3267b8605247b38f46e99bfe54c96a9ca2882aa9abb5485407540')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=$pkgdir/ install
+  install -Dm644 man3/miniupnpc.3 ${pkgdir}/usr/share/man/man3/miniupnpc.3
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}


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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 16:45:09
  Author: tredaelli
Revision: 121833

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

Added:
  miniupnpd/repos/community-i686/PKGBUILD
(from rev 121832, miniupnpd/trunk/PKGBUILD)
  miniupnpd/repos/community-i686/miniupnpd-1.8.20140401-foreground.patch
(from rev 121832, miniupnpd/trunk/miniupnpd-1.8.20140401-foreground.patch)
  miniupnpd/repos/community-i686/miniupnpd.systemd
(from rev 121832, miniupnpd/trunk/miniupnpd.systemd)
  miniupnpd/repos/community-x86_64/PKGBUILD
(from rev 121832, miniupnpd/trunk/PKGBUILD)
  miniupnpd/repos/community-x86_64/miniupnpd-1.8.20140401-foreground.patch
(from rev 121832, miniupnpd/trunk/miniupnpd-1.8.20140401-foreground.patch)
  miniupnpd/repos/community-x86_64/miniupnpd.systemd
(from rev 121832, miniupnpd/trunk/miniupnpd.systemd)
Deleted:
  miniupnpd/repos/community-i686/PKGBUILD
  miniupnpd/repos/community-i686/miniupnpd-1.8.20140401-foreground.patch
  miniupnpd/repos/community-i686/miniupnpd.systemd
  miniupnpd/repos/community-x86_64/PKGBUILD
  miniupnpd/repos/community-x86_64/miniupnpd-1.8.20140401-foreground.patch
  miniupnpd/repos/community-x86_64/miniupnpd.systemd

--+
 /PKGBUILD|   98 +
 /miniupnpd-1.8.20140401-foreground.patch |   80 ++
 /miniupnpd.systemd   |   22 ++
 community-i686/PKGBUILD  |   49 --
 community-i686/miniupnpd-1.8.20140401-foreground.patch   |   40 -
 community-i686/miniupnpd.systemd |   11 -
 community-x86_64/PKGBUILD|   49 --
 community-x86_64/miniupnpd-1.8.20140401-foreground.patch |   40 -
 community-x86_64/miniupnpd.systemd   |   11 -
 9 files changed, 200 insertions(+), 200 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-04 15:44:55 UTC (rev 121832)
+++ community-i686/PKGBUILD 2014-11-04 15:45:09 UTC (rev 121833)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: fauno fa...@parabola.nu
-pkgname=miniupnpd
-pkgver=1.8.20140422
-pkgrel=1
-pkgdesc=Lightweight UPnP IGD daemon
-arch=('i686' 'x86_64')
-url=http://miniupnp.free.fr;
-license=('BSD')
-backup=(etc/miniupnpd/miniupnpd.conf)
-depends=('libnfnetlink' 'iptables' 'net-tools' 'util-linux')
-makedepends=('lsb-release')
-source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;
-miniupnpd-1.8.20140401-foreground.patch
-miniupnpd.systemd)
-sha256sums=('2980c7dbcdf00d6942ad21c814d88a3c70996b550a8e229eb52362bd472c3961'
-'79350f2dbb695b58744aa9036d34a7dfdcfc97cf0f5f3419b86bd9ca58482f8e'
-'baac6223eb35729ea301bd658dc2df6aad5396c7c0b1ec15c8aac1803ef37f6a')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -p0 -i $srcdir/miniupnpd-1.8.20140401-foreground.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  CONFIG_OPTIONS=--strict --ipv6 --leasefile make -f Makefile.linux config.h
-  make -f Makefile.linux
-}
-
-package() {
-  cd $pkgname-$pkgver
-  mkdir -p $pkgdir/usr/share/man/man8
-
-  make PREFIX=$pkgdir/ SBININSTALLDIR=$pkgdir/usr/bin -f Makefile.linux 
install
-
-  rm -r ${pkgdir}/etc/init.d
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  install -Dm644 ${srcdir}/miniupnpd.systemd 
${pkgdir}/usr/lib/systemd/system/miniupnpd.service
-
-  sed -i 's:/s\?bin/iptables:/usr/bin/iptables:
-  s:eth0:`cat /etc/miniupnpd/miniupnpd.conf | 'awk -F= 
'/^ext_ifname/ { print \$2 }''`:' ${pkgdir}/etc/miniupnpd/*.sh
-  sed -i -e s/^uuid=[-0-9a-f]*/uuid=----/
- s/make genuuid/uuidgen/ ${pkgdir}/etc/miniupnpd/miniupnpd.conf
-}

Copied: miniupnpd/repos/community-i686/PKGBUILD (from rev 121832, 
miniupnpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-04 15:45:09 UTC (rev 121833)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: fauno fa...@parabola.nu
+pkgname=miniupnpd
+pkgver=1.9
+pkgrel=1
+pkgdesc=Lightweight UPnP IGD daemon
+arch=('i686' 'x86_64')
+url=http://miniupnp.free.fr;
+license=('BSD')
+backup=(etc/miniupnpd/miniupnpd.conf)
+depends=('libnfnetlink' 'iptables' 'net-tools' 'util-linux')
+makedepends=('lsb-release')
+source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;
+miniupnpd-1.8.20140401-foreground.patch
+miniupnpd.systemd)
+sha256sums=('6176eb21a6422a7ee68ef1c62ccbbd5003335fa773d8c9013228c2a217bba2ac'
+'79350f2dbb695b58744aa9036d34a7dfdcfc97cf0f5f3419b86bd9ca58482f8e

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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 16:44:55
  Author: tredaelli
Revision: 121832

upgpkg: miniupnpd 1.9-1

Modified:
  miniupnpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-04 15:43:05 UTC (rev 121831)
+++ PKGBUILD2014-11-04 15:44:55 UTC (rev 121832)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli timothy.redae...@gmail.com
 # Contributor: fauno fa...@parabola.nu
 pkgname=miniupnpd
-pkgver=1.8.20140422
+pkgver=1.9
 pkgrel=1
 pkgdesc=Lightweight UPnP IGD daemon
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 source=(http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz;
 miniupnpd-1.8.20140401-foreground.patch
 miniupnpd.systemd)
-sha256sums=('2980c7dbcdf00d6942ad21c814d88a3c70996b550a8e229eb52362bd472c3961'
+sha256sums=('6176eb21a6422a7ee68ef1c62ccbbd5003335fa773d8c9013228c2a217bba2ac'
 '79350f2dbb695b58744aa9036d34a7dfdcfc97cf0f5f3419b86bd9ca58482f8e'
 'baac6223eb35729ea301bd658dc2df6aad5396c7c0b1ec15c8aac1803ef37f6a')
 


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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 16:46:52
  Author: tredaelli
Revision: 121835

archrelease: copy trunk to community-any

Added:
  parallel/repos/community-any/PKGBUILD
(from rev 121834, parallel/trunk/PKGBUILD)
  parallel/repos/community-any/fix-pod-numbers.patch
(from rev 121834, parallel/trunk/fix-pod-numbers.patch)
Deleted:
  parallel/repos/community-any/PKGBUILD
  parallel/repos/community-any/fix-pod-numbers.patch

---+
 PKGBUILD  |   68 +-
 fix-pod-numbers.patch |   94 
 2 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-04 15:46:46 UTC (rev 121834)
+++ PKGBUILD2014-11-04 15:46:52 UTC (rev 121835)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Vianney le Clément vleclement AT gmail·com
-# Contributor: Peter Simons sim...@cryp.to
-
-pkgname=parallel
-pkgver=20140922
-pkgrel=1
-pkgdesc='A shell tool for executing jobs in parallel'
-arch=('any')
-url='http://www.gnu.org/software/parallel/'
-license=('GPL3')
-depends=('perl' 'procps')
-source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('82501190145992d56abf2e391752820b'
- 'SKIP')
-sha1sums=('30face2362e8c15057b4914786b38a2d2e54ec9a'
-  'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  # FIXME
-  ln -sf parallel $pkgdir/usr/bin/sem
-}
-
-# vim:set ts=2 sw=2 et:

Copied: parallel/repos/community-any/PKGBUILD (from rev 121834, 
parallel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-04 15:46:52 UTC (rev 121835)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Vianney le Clément vleclement AT gmail·com
+# Contributor: Peter Simons sim...@cryp.to
+
+pkgname=parallel
+pkgver=20141022
+pkgrel=1
+pkgdesc='A shell tool for executing jobs in parallel'
+arch=('any')
+url='http://www.gnu.org/software/parallel/'
+license=('GPL3')
+depends=('perl' 'procps')
+source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+md5sums=('c01f53f9f6cc721a81591308f9e689c4'
+ 'SKIP')
+sha1sums=('6aca752527a4c3798c4ec80a9d0f037969280975'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+
+  # FIXME
+  ln -sf parallel $pkgdir/usr/bin/sem
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-pod-numbers.patch
===
--- fix-pod-numbers.patch   2014-11-04 15:46:46 UTC (rev 121834)
+++ fix-pod-numbers.patch   2014-11-04 15:46:52 UTC (rev 121835)
@@ -1,47 +0,0 @@
 src/parallel.pod.orig
-+++ src/parallel.pod
-@@ -528,18 +528,18 @@
- 
- =over 3
- 
--=item 0
-+=item 0Z
- 
- Do not halt if a job fails. Exit status will be the number of jobs
- failed. This is the default.
- 
--=item 1
-+=item 1Z
- 
- Do not start new jobs if a job fails, but complete the running jobs
- including cleanup. The exit status will be the exit status from the
- last failing job.
- 
--=item 2
-+=item 2Z
- 
- Kill off all jobs immediately and exit without cleanup. The exit
- status will be the exit status from the failing job.
-@@ -2760,7 +2760,7 @@
- 
- =over 6
- 
--=item 0
-+=item 0Z
- 
- All jobs ran without error.
- 
-@@ -2768,11 +2768,11 @@
- 
- Some of the jobs failed. The exit status gives the number of failed jobs
- 
--=item 254
-+=item 254Z
- 
- More than 253 jobs failed.
- 
--=item 255
-+=item 255Z
- 
- Other error.
- 

Copied: parallel/repos/community-any/fix-pod-numbers.patch (from rev 121834, 
parallel/trunk/fix-pod-numbers.patch)
===
--- fix-pod-numbers.patch   (rev 0)
+++ fix-pod-numbers.patch   2014-11-04 15:46:52 UTC (rev 121835)
@@ -0,0 +1,47 @@
+--- src/parallel.pod.orig
 src/parallel.pod
+@@ -528,18 +528,18 @@
+ 
+ =over 3
+ 
+-=item 0
++=item 0Z
+ 
+ Do not halt if a job fails. Exit status will be the number of jobs
+ failed. This is the default.
+ 
+-=item 1
++=item 1Z
+ 
+ Do not start new jobs if a job fails, but complete the running jobs
+ including cleanup. The exit status will be the exit status from the
+ last failing job.
+ 
+-=item 2
++=item 2Z
+ 
+ Kill off all jobs immediately and exit without cleanup. The exit
+ status will be the exit status from the failing job.
+@@ -2760,7 +2760,7 @@
+ 
+ =over 6
+ 
+-=item 0
++=item 0Z
+ 
+ All jobs ran without error.
+ 
+@@ -2768,11 +2768,11 @@
+ 
+ Some of the jobs failed. The exit status gives the number of failed jobs
+ 
+-=item 254
++=item 254Z

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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 16:46:46
  Author: tredaelli
Revision: 121834

upgpkg: parallel 20141022-1

Modified:
  parallel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-04 15:45:09 UTC (rev 121833)
+++ PKGBUILD2014-11-04 15:46:46 UTC (rev 121834)
@@ -4,7 +4,7 @@
 # Contributor: Peter Simons sim...@cryp.to
 
 pkgname=parallel
-pkgver=20140922
+pkgver=20141022
 pkgrel=1
 pkgdesc='A shell tool for executing jobs in parallel'
 arch=('any')
@@ -12,9 +12,9 @@
 license=('GPL3')
 depends=('perl' 'procps')
 source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('82501190145992d56abf2e391752820b'
+md5sums=('c01f53f9f6cc721a81591308f9e689c4'
  'SKIP')
-sha1sums=('30face2362e8c15057b4914786b38a2d2e54ec9a'
+sha1sums=('6aca752527a4c3798c4ec80a9d0f037969280975'
   'SKIP')
 
 build() {


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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 17:10:13
  Author: tredaelli
Revision: 121838

upgpkg: os-prober 1.64-1

Modified:
  os-prober/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-04 16:07:13 UTC (rev 121837)
+++ PKGBUILD2014-11-04 16:10:13 UTC (rev 121838)
@@ -3,22 +3,22 @@
 # Contributor: darkcoder mario_v...@hotmail.com
 
 pkgname=os-prober
-pkgver=1.58
-pkgrel=3
+pkgver=1.64
+pkgrel=1
 pkgdesc=Utility to detect other OSes on a set of drives
 url=http://joey.kitenet.net/code/os-prober/;
 arch=('i686' 'x86_64')
 license=('GPL3')
 depends=('sh')
-source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz
+source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.xz
os-prober-util-linux-2.24.patch)
-md5sums=('11406f47d9536bccb655456d6d92d111'
+md5sums=('b13047131d2b1a924ed97dd0fa0885a7'
  'ce6218a8a0f791b617a79d29d097d7d8')
-sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93'
+sha256sums=('b0c14b530dd83856d17736e3758700f7e89fbf0ff6f6c20104b3b4ae1d8579df'
 '5271a50ebeaea23b5f1e02a5d61b9a68c3b8f978f48cd8511cbec78773200e8e')
 
 prepare() {
-  cd $pkgname-$pkgver
+  cd $pkgname
 
   patch -p1 -i $srcdir/os-prober-util-linux-2.24.patch
 
@@ -29,13 +29,13 @@
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
 
   make newns
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
 
   install -Dm755 linux-boot-prober $pkgdir/usr/bin/linux-boot-prober
   install -Dm755 os-prober $pkgdir/usr/bin/os-prober


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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 17:10:24
  Author: tredaelli
Revision: 121839

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

Added:
  os-prober/repos/community-i686/PKGBUILD
(from rev 121838, os-prober/trunk/PKGBUILD)
  os-prober/repos/community-i686/os-prober-util-linux-2.24.patch
(from rev 121838, os-prober/trunk/os-prober-util-linux-2.24.patch)
  os-prober/repos/community-x86_64/PKGBUILD
(from rev 121838, os-prober/trunk/PKGBUILD)
  os-prober/repos/community-x86_64/os-prober-util-linux-2.24.patch
(from rev 121838, os-prober/trunk/os-prober-util-linux-2.24.patch)
Deleted:
  os-prober/repos/community-i686/PKGBUILD
  os-prober/repos/community-i686/os-prober-util-linux-2.24.patch
  os-prober/repos/community-x86_64/PKGBUILD
  os-prober/repos/community-x86_64/os-prober-util-linux-2.24.patch

--+
 /PKGBUILD|  108 +++
 /os-prober-util-linux-2.24.patch |  116 +
 community-i686/PKGBUILD  |   54 -
 community-i686/os-prober-util-linux-2.24.patch   |   58 --
 community-x86_64/PKGBUILD|   54 -
 community-x86_64/os-prober-util-linux-2.24.patch |   58 --
 6 files changed, 224 insertions(+), 224 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-04 16:10:13 UTC (rev 121838)
+++ community-i686/PKGBUILD 2014-11-04 16:10:24 UTC (rev 121839)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: darkcoder mario_v...@hotmail.com
-
-pkgname=os-prober
-pkgver=1.58
-pkgrel=3
-pkgdesc=Utility to detect other OSes on a set of drives
-url=http://joey.kitenet.net/code/os-prober/;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('sh')
-source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz
-   os-prober-util-linux-2.24.patch)
-md5sums=('11406f47d9536bccb655456d6d92d111'
- 'ce6218a8a0f791b617a79d29d097d7d8')
-sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93'
-'5271a50ebeaea23b5f1e02a5d61b9a68c3b8f978f48cd8511cbec78773200e8e')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -p1 -i $srcdir/os-prober-util-linux-2.24.patch
-
-  # adjust lib dir to allow detection of 64-bit distros
-  sed -i -e s:/lib/ld\*\.so\*:/lib*/ld*.so*:g 
os-probes/mounted/common/90linux-distro
-
-  rm -f Makefile
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  make newns
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  install -Dm755 linux-boot-prober $pkgdir/usr/bin/linux-boot-prober
-  install -Dm755 os-prober $pkgdir/usr/bin/os-prober
-  install -Dm755 newns $pkgdir/usr/lib/os-prober/newns
-  install -Dm755 common.sh $pkgdir/usr/share/os-prober/common.sh  
-
-  for dir in os-probes os-probes/mounted os-probes/init linux-boot-probes 
linux-boot-probes/mounted; do
-install -dm755 $pkgdir/usr/lib/$dir
-install -m755 -t $pkgdir/usr/lib/$dir $dir/common/*
-[[ -d $dir/x86 ]]  cp -r $dir/x86/* $pkgdir/usr/lib/$dir
-  done
-
-  install -Dm755 os-probes/mounted/powerpc/20macosx 
$pkgdir/usr/lib/os-probes/mounted/20macosx
-
-  install -dm755 $pkgdir/var/lib/os-prober
-}

Copied: os-prober/repos/community-i686/PKGBUILD (from rev 121838, 
os-prober/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-04 16:10:24 UTC (rev 121839)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: darkcoder mario_v...@hotmail.com
+
+pkgname=os-prober
+pkgver=1.64
+pkgrel=1
+pkgdesc=Utility to detect other OSes on a set of drives
+url=http://joey.kitenet.net/code/os-prober/;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('sh')
+source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.xz
+   os-prober-util-linux-2.24.patch)
+md5sums=('b13047131d2b1a924ed97dd0fa0885a7'
+ 'ce6218a8a0f791b617a79d29d097d7d8')
+sha256sums=('b0c14b530dd83856d17736e3758700f7e89fbf0ff6f6c20104b3b4ae1d8579df'
+'5271a50ebeaea23b5f1e02a5d61b9a68c3b8f978f48cd8511cbec78773200e8e')
+
+prepare() {
+  cd $pkgname
+
+  patch -p1 -i $srcdir/os-prober-util-linux-2.24.patch
+
+  # adjust lib dir to allow detection of 64-bit distros
+  sed -i -e s:/lib/ld\*\.so\*:/lib*/ld*.so*:g 
os-probes/mounted/common/90linux-distro
+
+  rm -f Makefile
+}
+
+build() {
+  cd $pkgname
+
+  make newns
+}
+
+package() {
+  cd $pkgname
+
+  install -Dm755 linux-boot-prober $pkgdir/usr/bin/linux-boot-prober
+  install -Dm755 os-prober $pkgdir/usr/bin/os-prober
+  install -Dm755 newns $pkgdir/usr/lib/os-prober/newns
+  install -Dm755 common.sh $pkgdir/usr/share/os-prober/common.sh  
+
+  for dir in os-probes os-probes

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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 17:29:17
  Author: tredaelli
Revision: 121845

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

Added:
  bitcoin/repos/community-staging-i686/
  bitcoin/repos/community-staging-i686/PKGBUILD
(from rev 121844, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-staging-i686/bitcoin-qt.install
(from rev 121844, bitcoin/trunk/bitcoin-qt.install)
  bitcoin/repos/community-staging-x86_64/
  bitcoin/repos/community-staging-x86_64/PKGBUILD
(from rev 121844, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-staging-x86_64/bitcoin-qt.install
(from rev 121844, bitcoin/trunk/bitcoin-qt.install)

-+
 community-staging-i686/PKGBUILD |   84 ++
 community-staging-i686/bitcoin-qt.install   |   11 +++
 community-staging-x86_64/PKGBUILD   |   84 ++
 community-staging-x86_64/bitcoin-qt.install |   11 +++
 4 files changed, 190 insertions(+)

Copied: bitcoin/repos/community-staging-i686/PKGBUILD (from rev 121844, 
bitcoin/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-11-04 16:29:17 UTC (rev 121845)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: shahid hellla...@gmail.com
+
+pkgbase=bitcoin
+pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
+pkgver=0.9.3
+pkgrel=3
+arch=('i686' 'x86_64')
+url=http://www.bitcoin.org/;
+makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
+license=('MIT')
+source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver-linux.tar.gz
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1
+   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
+sha256sums=('c425783b6cbab9b801ad6a1dcc9235828b98e5dee6675112741f8b210e4f65cd'
+'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
+'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
+'e141088b07641e4e58cc750f93bbdda1ca0e8f07262fce66b73524c1ed97480e'
+'881dcc53ebe2d2a4f8647eb206fd355c69e4186f225e2dcfce19d276381e613a'
+'b7b232079027c41061dcfd21bca2054e349e4bed4f233733406bb3d90bd533ec')
+
+# Upstream should be more coherent!
+case $pkgver in
+*.*.*.*)
+  _pkgver=${pkgver%.*}
+  ;;
+*)
+  _pkgver=$pkgver
+  ;;
+esac
+
+prepare() {
+  cd $srcdir/$pkgbase-$pkgver-linux/src
+  tar xf $pkgbase-$_pkgver.tar.gz
+}
+
+build() {
+  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  ./configure --prefix=/usr --with-incompatible-bdb --with-gui=qt4
+  make
+}
+
+package_bitcoin-qt() {
+  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - Qt
+  depends=(boost-libs qt4 miniupnpc qrencode protobuf)
+  install=bitcoin-qt.install
+
+  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  install -Dm755 src/qt/bitcoin-qt $pkgdir/usr/bin/bitcoin-qt
+  install -Dm644 $srcdir/bitcoin-qt.desktop \
+$pkgdir/usr/share/applications/bitcoin.desktop
+  install -Dm644 $srcdir/bitcoin128.png \
+$pkgdir/usr/share/pixmaps/bitcoin128.png
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+package_bitcoin-daemon() {
+  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - daemon
+  depends=(boost-libs miniupnpc openssl)
+
+  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  install -Dm755 src/bitcoind $pkgdir/usr/bin/bitcoind
+  install -Dm644 $srcdir/bitcoin.conf \
+$pkgdir/usr/share/doc/$pkgname/examples/bitcoin.conf
+  install -Dm644 $srcdir/bitcoind.1 \
+$pkgdir/usr/share/man/man1/bitcoind.1
+  install -Dm644 $srcdir/bitcoin.conf.5 \
+$pkgdir/usr/share/man/man5/bitcoin.conf.5
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+package_bitcoin-cli() {
+  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - RPC 
client
+  depends=(boost-libs openssl)
+
+  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
+  install -Dm755 src/bitcoin-cli $pkgdir/usr/bin/bitcoin-cli
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: bitcoin/repos/community-staging-i686/bitcoin-qt.install (from rev 
121844, bitcoin/trunk/bitcoin-qt.install)
===
--- community-staging-i686/bitcoin-qt.install   (rev 0)
+++ community-staging-i686/bitcoin-qt.install   2014-11-04 16:29:17 UTC (rev 
121845)
@@ -0,0 +1,11 @@
+post_install

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

2014-11-04 Thread Timothy Redaelli
Date: Tuesday, November 4, 2014 @ 17:29:07
  Author: tredaelli
Revision: 121844

upgpkg: bitcoin 0.9.3-3

boost 1.57.0 rebuild

Modified:
  bitcoin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-04 16:20:22 UTC (rev 121843)
+++ PKGBUILD2014-11-04 16:29:07 UTC (rev 121844)
@@ -5,7 +5,7 @@
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
 pkgver=0.9.3
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url=http://www.bitcoin.org/;
 makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')


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

2014-10-23 Thread Timothy Redaelli
Date: Thursday, October 23, 2014 @ 11:01:01
  Author: tredaelli
Revision: 121268

upgpkg: keepass 2.28-2

FS#42506

Modified:
  keepass/trunk/PKGBUILD
  keepass/trunk/keepass.install

-+
 PKGBUILD|6 +-
 keepass.install |2 +-
 2 files changed, 2 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-23 08:47:28 UTC (rev 121267)
+++ PKGBUILD2014-10-23 09:01:01 UTC (rev 121268)
@@ -5,7 +5,7 @@
 
 pkgname=keepass
 pkgver=2.28
-pkgrel=1
+pkgrel=2
 pkgdesc='A easy-to-use password manager for Windows, Linux, Mac OS X and 
mobile devices.'
 arch=('any')
 url='http://keepass.info/'
@@ -36,10 +36,6 @@
   pushd Build /dev/null
   bash PrepMonoDev.sh
   popd /dev/null
-
-  # FIXME Right alignment doesn't work correctly (truncated text).
-#  sed -i 
's/^\(\s*\S*\.TextAlign\s*=\s*System\.Windows\.Forms\.HorizontalAlignment\).Right\(;\s*\)$/\1.Left\2/g'
 \
-#KeePass/Forms/*.Designer.cs
 }
 
 build() {

Modified: keepass.install
===
--- keepass.install 2014-10-23 08:47:28 UTC (rev 121267)
+++ keepass.install 2014-10-23 09:01:01 UTC (rev 121268)
@@ -3,7 +3,7 @@
   rmdir --ignore-fail-on-non-empty usr/share/keepass
   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
   update-desktop-database -q
-  update-mime-database usr/share/mime
+  update-mime-database usr/share/mime /dev/null
 }
 
 post_install() {


[arch-commits] Commit in keepass/repos/community-any (12 files)

2014-10-23 Thread Timothy Redaelli
Date: Thursday, October 23, 2014 @ 11:01:12
  Author: tredaelli
Revision: 121269

archrelease: copy trunk to community-any

Added:
  keepass/repos/community-any/PKGBUILD
(from rev 121268, keepass/trunk/PKGBUILD)
  keepass/repos/community-any/keepass
(from rev 121268, keepass/trunk/keepass)
  keepass/repos/community-any/keepass.1
(from rev 121268, keepass/trunk/keepass.1)
  keepass/repos/community-any/keepass.desktop
(from rev 121268, keepass/trunk/keepass.desktop)
  keepass/repos/community-any/keepass.install
(from rev 121268, keepass/trunk/keepass.install)
  keepass/repos/community-any/keepass.xml
(from rev 121268, keepass/trunk/keepass.xml)
Deleted:
  keepass/repos/community-any/PKGBUILD
  keepass/repos/community-any/keepass
  keepass/repos/community-any/keepass.1
  keepass/repos/community-any/keepass.desktop
  keepass/repos/community-any/keepass.install
  keepass/repos/community-any/keepass.xml

-+
 PKGBUILD|  146 ++
 keepass |4 -
 keepass.1   |   46 -
 keepass.desktop |   24 
 keepass.install |   32 +--
 5 files changed, 124 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-23 09:01:01 UTC (rev 121268)
+++ PKGBUILD2014-10-23 09:01:12 UTC (rev 121269)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Kirill reflexing Churin reflex...@reflexing.ru
-# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
-
-pkgname=keepass
-pkgver=2.28
-pkgrel=1
-pkgdesc='A easy-to-use password manager for Windows, Linux, Mac OS X and 
mobile devices.'
-arch=('any')
-url='http://keepass.info/'
-license=('GPL')
-depends=('mono' 'desktop-file-utils' 'xdg-utils' 'shared-mime-info' 
'hicolor-icon-theme' 'gtk-update-icon-cache')
-makedepends=('icoutils')
-optdepends=('xdotool: if you want to use auto-type'
-'xsel: clipboard operations in order to work around Mono clipboard 
bugs')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/keepass/KeePass-$pkgver-Source.zip;
-http://keepass.info/integrity/v2/KeePass-$pkgver-Source.zip.asc;
-'keepass'
-'keepass.1'
-'keepass.desktop'
-'keepass.xml')
-
-sha256sums=('2bd3291308fbb592ee8da21c42457320f81d00eda189c9ee39f03a12783ff91b'
-'SKIP'
-'7547f2af38771b66c8c2f3d7900b051b37214af49de3dfa27a5d383bf847d582'
-'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'
-'1d5420e8babce5f4bbb3c68bdffe3bc0d3c3be25ad689138cd02fa14edd89140'
-'3d017c17a8788166c644e2460ba3596fd503f300342561921201fe5f69e5d194')
-
-prepare() {
-  # Extract icons
-  icotool -x KeePass/KeePass.ico
-
-  pushd Build /dev/null
-  bash PrepMonoDev.sh
-  popd /dev/null
-
-  # FIXME Right alignment doesn't work correctly (truncated text).
-#  sed -i 
's/^\(\s*\S*\.TextAlign\s*=\s*System\.Windows\.Forms\.HorizontalAlignment\).Right\(;\s*\)$/\1.Left\2/g'
 \
-#KeePass/Forms/*.Designer.cs
-}
-
-build() {
-  xbuild /target:KeePass /property:Configuration=Release
-  cp Ext/KeePass.exe.config Build/KeePass/Release/
-}
-
-package() {
-  install -dm755 $pkgdir/usr/bin
-  install -dm755 $pkgdir/usr/share/keepass/XSL
-
-  install -Dm755 keepass $pkgdir/usr/bin/keepass
-  install -Dm755 Build/KeePass/Release/KeePass.exe 
$pkgdir/usr/share/keepass/KeePass.exe
-  install -Dm755 Ext/KeePass.config.xml 
$pkgdir/usr/share/keepass/KeePass.config.xml
-  install -Dm755 Ext/KeePass.exe.config 
$pkgdir/usr/share/keepass/KeePass.exe.config
-
-  install -m644 Ext/XSL/* $pkgdir/usr/share/keepass/XSL
-
-  install -Dm644 keepass.1 $pkgdir/usr/share/man/man1/keepass.1
-
-  # Proper installation of .desktop file
-  desktop-file-install -m 644 --dir $pkgdir/usr/share/applications/ 
keepass.desktop
-
-  # Install icons
-  for size in 16 32 48 256; do
-install -Dm644 \
-KeePass_*_${size}x${size}x32.png \
-$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/keepass.png
-  done
-
-  # Needed for postinst with xdg-utils
-  install -Dm644 keepass.xml $pkgdir/usr/share/mime/packages/keepass.xml
-}

Copied: keepass/repos/community-any/PKGBUILD (from rev 121268, 
keepass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-23 09:01:12 UTC (rev 121269)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Kirill reflexing Churin reflex...@reflexing.ru
+# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
+
+pkgname=keepass
+pkgver=2.28
+pkgrel=2
+pkgdesc='A easy-to-use password manager for Windows, Linux, Mac OS X and 
mobile devices.'
+arch=('any')
+url='http://keepass.info/'
+license=('GPL')
+depends=('mono' 'desktop-file-utils' 'xdg-utils' 'shared-mime-info

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

2014-10-22 Thread Timothy Redaelli
Date: Wednesday, October 22, 2014 @ 12:19:17
  Author: tredaelli
Revision: 121212

upgpkg: keepass 2.28-1

Modified:
  keepass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-22 10:18:50 UTC (rev 121211)
+++ PKGBUILD2014-10-22 10:19:17 UTC (rev 121212)
@@ -4,7 +4,7 @@
 # Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
 
 pkgname=keepass
-pkgver=2.27
+pkgver=2.28
 pkgrel=1
 pkgdesc='A easy-to-use password manager for Windows, Linux, Mac OS X and 
mobile devices.'
 arch=('any')
@@ -22,7 +22,7 @@
 'keepass.desktop'
 'keepass.xml')
 
-sha256sums=('f812a7bc2921a491d7dcf4a247373fa53f32843b1df6a34ece488a25d599ca44'
+sha256sums=('2bd3291308fbb592ee8da21c42457320f81d00eda189c9ee39f03a12783ff91b'
 'SKIP'
 '7547f2af38771b66c8c2f3d7900b051b37214af49de3dfa27a5d383bf847d582'
 'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'
@@ -38,8 +38,8 @@
   popd /dev/null
 
   # FIXME Right alignment doesn't work correctly (truncated text).
-  sed -i 
's/^\(\s*\S*\.TextAlign\s*=\s*System\.Windows\.Forms\.HorizontalAlignment\).Right\(;\s*\)$/\1.Left\2/g'
 \
-KeePass/Forms/*.Designer.cs
+#  sed -i 
's/^\(\s*\S*\.TextAlign\s*=\s*System\.Windows\.Forms\.HorizontalAlignment\).Right\(;\s*\)$/\1.Left\2/g'
 \
+#KeePass/Forms/*.Designer.cs
 }
 
 build() {


[arch-commits] Commit in keepass/repos/community-any (12 files)

2014-10-22 Thread Timothy Redaelli
Date: Wednesday, October 22, 2014 @ 12:19:28
  Author: tredaelli
Revision: 121213

archrelease: copy trunk to community-any

Added:
  keepass/repos/community-any/PKGBUILD
(from rev 121212, keepass/trunk/PKGBUILD)
  keepass/repos/community-any/keepass
(from rev 121212, keepass/trunk/keepass)
  keepass/repos/community-any/keepass.1
(from rev 121212, keepass/trunk/keepass.1)
  keepass/repos/community-any/keepass.desktop
(from rev 121212, keepass/trunk/keepass.desktop)
  keepass/repos/community-any/keepass.install
(from rev 121212, keepass/trunk/keepass.install)
  keepass/repos/community-any/keepass.xml
(from rev 121212, keepass/trunk/keepass.xml)
Deleted:
  keepass/repos/community-any/PKGBUILD
  keepass/repos/community-any/keepass
  keepass/repos/community-any/keepass.1
  keepass/repos/community-any/keepass.desktop
  keepass/repos/community-any/keepass.install
  keepass/repos/community-any/keepass.xml

-+
 PKGBUILD|  150 +++---
 keepass |4 -
 keepass.1   |   46 
 keepass.desktop |   24 
 keepass.install |   32 +--
 5 files changed, 128 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-22 10:19:17 UTC (rev 121212)
+++ PKGBUILD2014-10-22 10:19:28 UTC (rev 121213)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Kirill reflexing Churin reflex...@reflexing.ru
-# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
-
-pkgname=keepass
-pkgver=2.27
-pkgrel=1
-pkgdesc='A easy-to-use password manager for Windows, Linux, Mac OS X and 
mobile devices.'
-arch=('any')
-url='http://keepass.info/'
-license=('GPL')
-depends=('mono' 'desktop-file-utils' 'xdg-utils' 'shared-mime-info' 
'hicolor-icon-theme' 'gtk-update-icon-cache')
-makedepends=('icoutils')
-optdepends=('xdotool: if you want to use auto-type'
-'xsel: clipboard operations in order to work around Mono clipboard 
bugs')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/keepass/KeePass-$pkgver-Source.zip;
-http://keepass.info/integrity/v2/KeePass-$pkgver-Source.zip.asc;
-'keepass'
-'keepass.1'
-'keepass.desktop'
-'keepass.xml')
-
-sha256sums=('f812a7bc2921a491d7dcf4a247373fa53f32843b1df6a34ece488a25d599ca44'
-'SKIP'
-'7547f2af38771b66c8c2f3d7900b051b37214af49de3dfa27a5d383bf847d582'
-'a5fff678466443c0c8256c4771128c86103da47b6a2c49351d9941191b65dd6f'
-'1d5420e8babce5f4bbb3c68bdffe3bc0d3c3be25ad689138cd02fa14edd89140'
-'3d017c17a8788166c644e2460ba3596fd503f300342561921201fe5f69e5d194')
-
-prepare() {
-  # Extract icons
-  icotool -x KeePass/KeePass.ico
-
-  pushd Build /dev/null
-  bash PrepMonoDev.sh
-  popd /dev/null
-
-  # FIXME Right alignment doesn't work correctly (truncated text).
-  sed -i 
's/^\(\s*\S*\.TextAlign\s*=\s*System\.Windows\.Forms\.HorizontalAlignment\).Right\(;\s*\)$/\1.Left\2/g'
 \
-KeePass/Forms/*.Designer.cs
-}
-
-build() {
-  xbuild /target:KeePass /property:Configuration=Release
-  cp Ext/KeePass.exe.config Build/KeePass/Release/
-}
-
-package() {
-  install -dm755 $pkgdir/usr/bin
-  install -dm755 $pkgdir/usr/share/keepass/XSL
-
-  install -Dm755 keepass $pkgdir/usr/bin/keepass
-  install -Dm755 Build/KeePass/Release/KeePass.exe 
$pkgdir/usr/share/keepass/KeePass.exe
-  install -Dm755 Ext/KeePass.config.xml 
$pkgdir/usr/share/keepass/KeePass.config.xml
-  install -Dm755 Ext/KeePass.exe.config 
$pkgdir/usr/share/keepass/KeePass.exe.config
-
-  install -m644 Ext/XSL/* $pkgdir/usr/share/keepass/XSL
-
-  install -Dm644 keepass.1 $pkgdir/usr/share/man/man1/keepass.1
-
-  # Proper installation of .desktop file
-  desktop-file-install -m 644 --dir $pkgdir/usr/share/applications/ 
keepass.desktop
-
-  # Install icons
-  for size in 16 32 48 256; do
-install -Dm644 \
-KeePass_*_${size}x${size}x32.png \
-$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/keepass.png
-  done
-
-  # Needed for postinst with xdg-utils
-  install -Dm644 keepass.xml $pkgdir/usr/share/mime/packages/keepass.xml
-}

Copied: keepass/repos/community-any/PKGBUILD (from rev 121212, 
keepass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-22 10:19:28 UTC (rev 121213)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Kirill reflexing Churin reflex...@reflexing.ru
+# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
+
+pkgname=keepass
+pkgver=2.28
+pkgrel=1
+pkgdesc='A easy-to-use password manager for Windows, Linux, Mac OS X and 
mobile devices.'
+arch=('any')
+url='http://keepass.info/'
+license=('GPL')
+depends=('mono' 'desktop-file-utils' 'xdg-utils' 'shared-mime-info' 
'hicolor

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

2014-10-22 Thread Timothy Redaelli
Date: Wednesday, October 22, 2014 @ 16:43:24
  Author: tredaelli
Revision: 121219

upgpkg: tcpreplay 4.0.5-1

Modified:
  tcpreplay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-22 14:18:59 UTC (rev 121218)
+++ PKGBUILD2014-10-22 14:43:24 UTC (rev 121219)
@@ -3,10 +3,10 @@
 # Contributor: Sébastien Duquette ekse...@gmail.com
 # Contributor: Dawid Wrobel cr...@klej.net
 pkgname=tcpreplay
-pkgver=3.4.4
-pkgrel=4
+pkgver=4.0.5
+pkgrel=1
 pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
-url=http://tcpreplay.synfin.net;
+url=http://tcpreplay.appneta.com;
 arch=('i686' 'x86_64')
 license=('GPL3')
 depends=('libpcap' 'libdnet')
@@ -14,7 +14,7 @@
 optdepends=('tcpdump: decoding of packets support')
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('22725feb9b2590809f9350308ec65180')
+md5sums=('1a6f108a62bf526eeffa2998a6f311af')
 
 build() {
  cd $srcdir/$pkgname-$pkgver


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

2014-10-22 Thread Timothy Redaelli
Date: Wednesday, October 22, 2014 @ 16:43:36
  Author: tredaelli
Revision: 121220

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-22 14:43:24 UTC (rev 121219)
+++ community-i686/PKGBUILD 2014-10-22 14:43:36 UTC (rev 121220)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Sébastien Duquette ekse...@gmail.com
-# Contributor: Dawid Wrobel cr...@klej.net
-pkgname=tcpreplay
-pkgver=3.4.4
-pkgrel=4
-pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
-url=http://tcpreplay.synfin.net;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('libpcap' 'libdnet')
-makedepends=('tcpdump')
-optdepends=('tcpdump: decoding of packets support')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('22725feb9b2590809f9350308ec65180')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir/ install
-}

Copied: tcpreplay/repos/community-i686/PKGBUILD (from rev 121219, 
tcpreplay/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-22 14:43:36 UTC (rev 121220)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Sébastien Duquette ekse...@gmail.com
+# Contributor: Dawid Wrobel cr...@klej.net
+pkgname=tcpreplay
+pkgver=4.0.5
+pkgrel=1
+pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
+url=http://tcpreplay.appneta.com;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('libpcap' 'libdnet')
+makedepends=('tcpdump')
+optdepends=('tcpdump: decoding of packets support')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('1a6f108a62bf526eeffa2998a6f311af')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir/ install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-10-22 14:43:24 UTC (rev 121219)
+++ community-x86_64/PKGBUILD   2014-10-22 14:43:36 UTC (rev 121220)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Sébastien Duquette ekse...@gmail.com
-# Contributor: Dawid Wrobel cr...@klej.net
-pkgname=tcpreplay
-pkgver=3.4.4
-pkgrel=4
-pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
-url=http://tcpreplay.synfin.net;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('libpcap' 'libdnet')
-makedepends=('tcpdump')
-optdepends=('tcpdump: decoding of packets support')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('22725feb9b2590809f9350308ec65180')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir/ install
-}

Copied: tcpreplay/repos/community-x86_64/PKGBUILD (from rev 121219, 
tcpreplay/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-10-22 14:43:36 UTC (rev 121220)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Sébastien Duquette ekse...@gmail.com
+# Contributor: Dawid Wrobel cr...@klej.net
+pkgname=tcpreplay
+pkgver=4.0.5
+pkgrel=1
+pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
+url=http://tcpreplay.appneta.com;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('libpcap' 'libdnet')
+makedepends=('tcpdump')
+optdepends=('tcpdump: decoding of packets support')
+options=('!emptydirs')
+source

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

2014-10-22 Thread Timothy Redaelli
Date: Wednesday, October 22, 2014 @ 16:45:49
  Author: tredaelli
Revision: 121221

upgpkg: pax-utils 0.8.1-1

Modified:
  pax-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-22 14:43:36 UTC (rev 121220)
+++ PKGBUILD2014-10-22 14:45:49 UTC (rev 121221)
@@ -4,8 +4,8 @@
 # Contributor: Maxwel msg.max...@gmail.com
 
 pkgname=pax-utils
-pkgver=0.7
-pkgrel=2
+pkgver=0.8.1
+pkgrel=1
 pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
 url='http://hardened.gentoo.org/pax-utils.xml'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('bash' 'libcap' 'python-pyelftools')
 source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('1ac4cee9a9ca97a723505eb29a25e50adeccffba3f0f0ef4f035cf082caf3b84')
+sha256sums=('844ff25b1a11bcef92ef34b22f576f226a772b67196818656f8874513438f5b9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}


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

2014-10-22 Thread Timothy Redaelli
Date: Wednesday, October 22, 2014 @ 16:46:03
  Author: tredaelli
Revision: 121222

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

Added:
  pax-utils/repos/community-i686/PKGBUILD
(from rev 121221, pax-utils/trunk/PKGBUILD)
  pax-utils/repos/community-x86_64/PKGBUILD
(from rev 121221, pax-utils/trunk/PKGBUILD)
Deleted:
  pax-utils/repos/community-i686/PKGBUILD
  pax-utils/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-22 14:45:49 UTC (rev 121221)
+++ community-i686/PKGBUILD 2014-10-22 14:46:03 UTC (rev 121222)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: sh0 m...@sh0.org
-# Contributor: Maxwel msg.max...@gmail.com
-
-pkgname=pax-utils
-pkgver=0.7
-pkgrel=2
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'python-pyelftools')
-source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('1ac4cee9a9ca97a723505eb29a25e50adeccffba3f0f0ef4f035cf082caf3b84')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_CAP='yes'
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_PYTHON='yes' DESTDIR=${pkgdir} install
-}

Copied: pax-utils/repos/community-i686/PKGBUILD (from rev 121221, 
pax-utils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-22 14:46:03 UTC (rev 121222)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: sh0 m...@sh0.org
+# Contributor: Maxwel msg.max...@gmail.com
+
+pkgname=pax-utils
+pkgver=0.8.1
+pkgrel=1
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('844ff25b1a11bcef92ef34b22f576f226a772b67196818656f8874513438f5b9')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make USE_CAP='yes'
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make USE_PYTHON='yes' DESTDIR=${pkgdir} install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-10-22 14:45:49 UTC (rev 121221)
+++ community-x86_64/PKGBUILD   2014-10-22 14:46:03 UTC (rev 121222)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: sh0 m...@sh0.org
-# Contributor: Maxwel msg.max...@gmail.com
-
-pkgname=pax-utils
-pkgver=0.7
-pkgrel=2
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'python-pyelftools')
-source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('1ac4cee9a9ca97a723505eb29a25e50adeccffba3f0f0ef4f035cf082caf3b84')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_CAP='yes'
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_PYTHON='yes' DESTDIR=${pkgdir} install
-}

Copied: pax-utils/repos/community-x86_64/PKGBUILD (from rev 121221, 
pax-utils/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-10-22 14:46:03 UTC (rev 121222)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: sh0 m...@sh0.org
+# Contributor: Maxwel msg.max...@gmail.com
+
+pkgname=pax-utils
+pkgver=0.8.1
+pkgrel=1
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('844ff25b1a11bcef92ef34b22f576f226a772b67196818656f8874513438f5b9')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver

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

2014-10-01 Thread Timothy Redaelli
Date: Wednesday, October 1, 2014 @ 11:16:57
  Author: tredaelli
Revision: 119940

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

Added:
  os-prober/repos/community-i686/PKGBUILD
(from rev 119939, os-prober/trunk/PKGBUILD)
  os-prober/repos/community-i686/os-prober-util-linux-2.24.patch
(from rev 119939, os-prober/trunk/os-prober-util-linux-2.24.patch)
  os-prober/repos/community-x86_64/PKGBUILD
(from rev 119939, os-prober/trunk/PKGBUILD)
  os-prober/repos/community-x86_64/os-prober-util-linux-2.24.patch
(from rev 119939, os-prober/trunk/os-prober-util-linux-2.24.patch)
Deleted:
  os-prober/repos/community-i686/PKGBUILD
  os-prober/repos/community-x86_64/PKGBUILD

--+
 /PKGBUILD|  108 +
 community-i686/PKGBUILD  |   44 
 community-i686/os-prober-util-linux-2.24.patch   |   58 +++
 community-x86_64/PKGBUILD|   44 
 community-x86_64/os-prober-util-linux-2.24.patch |   58 +++
 5 files changed, 224 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 09:16:46 UTC (rev 119939)
+++ community-i686/PKGBUILD 2014-10-01 09:16:57 UTC (rev 119940)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: darkcoder mario_v...@hotmail.com
-
-pkgname=os-prober
-pkgver=1.58
-pkgrel=1
-pkgdesc=Utility to detect other OSes on a set of drives
-url=http://joey.kitenet.net/code/os-prober/;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('sh')
-source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz)
-md5sums=('11406f47d9536bccb655456d6d92d111')
-sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # adjust lib dir to allow detection of 64-bit distros
-  sed -i -e s:/lib/ld\*\.so\*:/lib*/ld*.so*:g 
os-probes/mounted/common/90linux-distro
-
-  rm -f Makefile
-  make newns
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  install -Dm755 linux-boot-prober $pkgdir/usr/bin/linux-boot-prober
-  install -Dm755 os-prober $pkgdir/usr/bin/os-prober
-  install -Dm755 newns $pkgdir/usr/lib/os-prober/newns
-  install -Dm755 common.sh $pkgdir/usr/share/os-prober/common.sh  
-
-  for dir in os-probes os-probes/mounted os-probes/init linux-boot-probes 
linux-boot-probes/mounted; do
-install -dm755 $pkgdir/usr/lib/$dir
-install -m755 -t $pkgdir/usr/lib/$dir $dir/common/*
-[[ -d $dir/x86 ]]  cp -r $dir/x86/* $pkgdir/usr/lib/$dir
-  done
-
-  install -Dm755 os-probes/mounted/powerpc/20macosx 
$pkgdir/usr/lib/os-probes/mounted/20macosx
-
-  install -dm755 $pkgdir/var/lib/os-prober
-}

Copied: os-prober/repos/community-i686/PKGBUILD (from rev 119939, 
os-prober/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 09:16:57 UTC (rev 119940)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: darkcoder mario_v...@hotmail.com
+
+pkgname=os-prober
+pkgver=1.58
+pkgrel=3
+pkgdesc=Utility to detect other OSes on a set of drives
+url=http://joey.kitenet.net/code/os-prober/;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('sh')
+source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz
+   os-prober-util-linux-2.24.patch)
+md5sums=('11406f47d9536bccb655456d6d92d111'
+ 'ce6218a8a0f791b617a79d29d097d7d8')
+sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93'
+'5271a50ebeaea23b5f1e02a5d61b9a68c3b8f978f48cd8511cbec78773200e8e')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -p1 -i $srcdir/os-prober-util-linux-2.24.patch
+
+  # adjust lib dir to allow detection of 64-bit distros
+  sed -i -e s:/lib/ld\*\.so\*:/lib*/ld*.so*:g 
os-probes/mounted/common/90linux-distro
+
+  rm -f Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  make newns
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -Dm755 linux-boot-prober $pkgdir/usr/bin/linux-boot-prober
+  install -Dm755 os-prober $pkgdir/usr/bin/os-prober
+  install -Dm755 newns $pkgdir/usr/lib/os-prober/newns
+  install -Dm755 common.sh $pkgdir/usr/share/os-prober/common.sh  
+
+  for dir in os-probes os-probes/mounted os-probes/init linux-boot-probes 
linux-boot-probes/mounted; do
+install -dm755 $pkgdir/usr/lib/$dir
+install -m755 -t $pkgdir/usr/lib/$dir $dir/common/*
+[[ -d $dir/x86 ]]  cp -r $dir/x86/* $pkgdir/usr/lib/$dir
+  done
+
+  install -Dm755 os-probes/mounted/powerpc/20macosx 
$pkgdir/usr/lib/os-probes/mounted/20macosx
+
+  install -dm755 $pkgdir/var/lib/os-prober
+}

Copied: os-prober/repos/community-i686/os-prober

[arch-commits] Commit in os-prober/trunk (PKGBUILD os-prober-util-linux-2.24.patch)

2014-10-01 Thread Timothy Redaelli
Date: Wednesday, October 1, 2014 @ 11:16:46
  Author: tredaelli
Revision: 119939

upgpkg: os-prober 1.58-3

FS#38487

Add a patch taken from https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=735169

Added:
  os-prober/trunk/os-prober-util-linux-2.24.patch
Modified:
  os-prober/trunk/PKGBUILD

-+
 PKGBUILD|   24 +++
 os-prober-util-linux-2.24.patch |   58 ++
 2 files changed, 75 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 09:16:21 UTC (rev 119938)
+++ PKGBUILD2014-10-01 09:16:46 UTC (rev 119939)
@@ -4,28 +4,38 @@
 
 pkgname=os-prober
 pkgver=1.58
-pkgrel=1
+pkgrel=3
 pkgdesc=Utility to detect other OSes on a set of drives
 url=http://joey.kitenet.net/code/os-prober/;
 arch=('i686' 'x86_64')
 license=('GPL3')
 depends=('sh')
-source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz)
-md5sums=('11406f47d9536bccb655456d6d92d111')
-sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93')
+source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz
+   os-prober-util-linux-2.24.patch)
+md5sums=('11406f47d9536bccb655456d6d92d111'
+ 'ce6218a8a0f791b617a79d29d097d7d8')
+sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93'
+'5271a50ebeaea23b5f1e02a5d61b9a68c3b8f978f48cd8511cbec78773200e8e')
 
-build() {
-  cd $srcdir/$pkgname-$pkgver
+prepare() {
+  cd $pkgname-$pkgver
 
+  patch -p1 -i $srcdir/os-prober-util-linux-2.24.patch
+
   # adjust lib dir to allow detection of 64-bit distros
   sed -i -e s:/lib/ld\*\.so\*:/lib*/ld*.so*:g 
os-probes/mounted/common/90linux-distro
 
   rm -f Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver
+
   make newns
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
   install -Dm755 linux-boot-prober $pkgdir/usr/bin/linux-boot-prober
   install -Dm755 os-prober $pkgdir/usr/bin/os-prober

Added: os-prober-util-linux-2.24.patch
===
--- os-prober-util-linux-2.24.patch (rev 0)
+++ os-prober-util-linux-2.24.patch 2014-10-01 09:16:46 UTC (rev 119939)
@@ -0,0 +1,58 @@
+--- a/common.sh
 b/common.sh
+@@ -116,6 +116,29 @@ fs_type () {
+   fi
+ }
+ 
++is_dos_extended_partition() {
++  if type blkid /dev/null 21; then
++  local output
++
++  output=$(blkid -o export $1)
++
++  # old blkid (util-linux  2.24) errors out on extended p.
++  if [ $? = 2 ]; then
++  return 0
++  fi
++
++  # dos partition type and no filesystem type?...
++  if echo $output | grep -q ' PTTYPE=dos ' 
++  ! echo $output | grep -q ' TYPE='; then
++  return 0
++  else
++  return 1
++  fi
++  fi
++
++  return 1
++}
++
+ parse_proc_mounts () {
+   while read -r line; do
+   set -f
+--- a/linux-boot-probes/common/50mounted-tests
 b/linux-boot-probes/common/50mounted-tests
+@@ -20,6 +20,10 @@ elif [ $types = ntfs ]; then
+   types='ntfs-3g ntfs'
+   fi
+ elif [ -z $types ]; then
++  if is_dos_extended_partition $partition; then
++  debug $1 looks like an extended dos partition; skipping
++  exit 0
++  fi
+   if type cryptsetup /dev/null 21  \
+  cryptsetup luksDump $partition /dev/null 21; then
+   debug $1 is a LUKS partition; skipping
+--- a/os-probes/common/50mounted-tests
 b/os-probes/common/50mounted-tests
+@@ -20,6 +20,10 @@ elif [ $types = ntfs ]; then
+   types='ntfs-3g ntfs'
+   fi
+ elif [ -z $types ]; then
++  if is_dos_extended_partition $partition; then
++  debug $1 looks like an extended dos partition; skipping
++  exit 0
++  fi
+   if type cryptsetup /dev/null 21  \
+  cryptsetup luksDump $partition /dev/null 21; then
+   debug $1 is a LUKS partition; skipping


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

2014-09-29 Thread Timothy Redaelli
Date: Tuesday, September 30, 2014 @ 00:24:17
  Author: tredaelli
Revision: 119846

upgpkg: bitcoin 0.9.3-1

Modified:
  bitcoin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-29 20:32:34 UTC (rev 119845)
+++ PKGBUILD2014-09-29 22:24:17 UTC (rev 119846)
@@ -4,8 +4,8 @@
 
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
-pkgver=0.9.2.1
-pkgrel=2
+pkgver=0.9.3
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.bitcoin.org/;
 makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
@@ -16,7 +16,7 @@

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1

https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
-sha256sums=('0060f7d38b98113ab912d4c184000291d7f026eaf77ca5830deec15059678f54'
+sha256sums=('c425783b6cbab9b801ad6a1dcc9235828b98e5dee6675112741f8b210e4f65cd'
 'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
 'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
 'e141088b07641e4e58cc750f93bbdda1ca0e8f07262fce66b73524c1ed97480e'


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

2014-09-29 Thread Timothy Redaelli
Date: Tuesday, September 30, 2014 @ 00:24:35
  Author: tredaelli
Revision: 119847

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

Added:
  bitcoin/repos/community-i686/PKGBUILD
(from rev 119846, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-i686/bitcoin-qt.install
(from rev 119846, bitcoin/trunk/bitcoin-qt.install)
  bitcoin/repos/community-x86_64/PKGBUILD
(from rev 119846, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-x86_64/bitcoin-qt.install
(from rev 119846, bitcoin/trunk/bitcoin-qt.install)
Deleted:
  bitcoin/repos/community-i686/PKGBUILD
  bitcoin/repos/community-i686/bitcoin-qt.install
  bitcoin/repos/community-x86_64/PKGBUILD
  bitcoin/repos/community-x86_64/bitcoin-qt.install

-+
 /PKGBUILD   |  168 ++
 /bitcoin-qt.install |   22 
 community-i686/PKGBUILD |   84 -
 community-i686/bitcoin-qt.install   |   11 --
 community-x86_64/PKGBUILD   |   84 -
 community-x86_64/bitcoin-qt.install |   11 --
 6 files changed, 190 insertions(+), 190 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-29 22:24:17 UTC (rev 119846)
+++ community-i686/PKGBUILD 2014-09-29 22:24:35 UTC (rev 119847)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: shahid hellla...@gmail.com
-
-pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
-pkgver=0.9.2.1
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://www.bitcoin.org/;
-makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc' 'protobuf')
-license=('MIT')
-source=(http://bitcoin.org/bin/$pkgver/bitcoin-$pkgver-linux.tar.gz
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
-sha256sums=('0060f7d38b98113ab912d4c184000291d7f026eaf77ca5830deec15059678f54'
-'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
-'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
-'e141088b07641e4e58cc750f93bbdda1ca0e8f07262fce66b73524c1ed97480e'
-'881dcc53ebe2d2a4f8647eb206fd355c69e4186f225e2dcfce19d276381e613a'
-'b7b232079027c41061dcfd21bca2054e349e4bed4f233733406bb3d90bd533ec')
-
-# Upstream should be more coherent!
-case $pkgver in
-*.*.*.*)
-  _pkgver=${pkgver%.*}
-  ;;
-*)
-  _pkgver=$pkgver
-  ;;
-esac
-
-prepare() {
-  cd $srcdir/$pkgbase-$pkgver-linux/src
-  tar xf $pkgbase-$_pkgver.tar.gz
-}
-
-build() {
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
-  ./configure --prefix=/usr --with-incompatible-bdb --with-gui=qt4
-  make
-}
-
-package_bitcoin-qt() {
-  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - Qt
-  depends=(boost-libs qt4 miniupnpc qrencode protobuf)
-  install=bitcoin-qt.install
-
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
-  install -Dm755 src/qt/bitcoin-qt $pkgdir/usr/bin/bitcoin-qt
-  install -Dm644 $srcdir/bitcoin-qt.desktop \
-$pkgdir/usr/share/applications/bitcoin.desktop
-  install -Dm644 $srcdir/bitcoin128.png \
-$pkgdir/usr/share/pixmaps/bitcoin128.png
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-package_bitcoin-daemon() {
-  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - daemon
-  depends=(boost-libs miniupnpc openssl)
-
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
-  install -Dm755 src/bitcoind $pkgdir/usr/bin/bitcoind
-  install -Dm644 $srcdir/bitcoin.conf \
-$pkgdir/usr/share/doc/$pkgname/examples/bitcoin.conf
-  install -Dm644 $srcdir/bitcoind.1 \
-$pkgdir/usr/share/man/man1/bitcoind.1
-  install -Dm644 $srcdir/bitcoin.conf.5 \
-$pkgdir/usr/share/man/man5/bitcoin.conf.5
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-package_bitcoin-cli() {
-  pkgdesc=Bitcoin is a peer-to-peer network based digital currency - RPC 
client
-  depends=(boost-libs openssl)
-
-  cd $srcdir/$pkgbase-$pkgver-linux/src/$pkgbase-$_pkgver
-  install -Dm755 src/bitcoin-cli $pkgdir/usr/bin/bitcoin-cli
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: bitcoin/repos/community-i686/PKGBUILD (from rev 119846, 
bitcoin/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-29 22:24:35 UTC (rev 119847)
@@ -0,0 +1,84

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

2014-09-29 Thread Timothy Redaelli
Date: Tuesday, September 30, 2014 @ 00:30:22
  Author: tredaelli
Revision: 119849

archrelease: copy trunk to community-any

Added:
  parallel/repos/community-any/PKGBUILD
(from rev 119848, parallel/trunk/PKGBUILD)
  parallel/repos/community-any/fix-pod-numbers.patch
(from rev 119848, parallel/trunk/fix-pod-numbers.patch)
Deleted:
  parallel/repos/community-any/PKGBUILD
  parallel/repos/community-any/fix-pod-numbers.patch

---+
 PKGBUILD  |   68 +-
 fix-pod-numbers.patch |   94 
 2 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-29 22:30:11 UTC (rev 119848)
+++ PKGBUILD2014-09-29 22:30:22 UTC (rev 119849)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Vianney le Clément vleclement AT gmail·com
-# Contributor: Peter Simons sim...@cryp.to
-
-pkgname=parallel
-pkgver=20140822
-pkgrel=2
-pkgdesc='A shell tool for executing jobs in parallel'
-arch=('any')
-url='http://www.gnu.org/software/parallel/'
-license=('GPL3')
-depends=('perl' 'procps')
-source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('81064272734f7576f367636eb7d6059d'
- 'SKIP')
-sha1sums=('ca81369f106137380ba6a1729fb85efbf9c6e00f'
-  'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  # FIXME
-  ln -sf parallel $pkgdir/usr/bin/sem
-}
-
-# vim:set ts=2 sw=2 et:

Copied: parallel/repos/community-any/PKGBUILD (from rev 119848, 
parallel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-29 22:30:22 UTC (rev 119849)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Vianney le Clément vleclement AT gmail·com
+# Contributor: Peter Simons sim...@cryp.to
+
+pkgname=parallel
+pkgver=20140922
+pkgrel=1
+pkgdesc='A shell tool for executing jobs in parallel'
+arch=('any')
+url='http://www.gnu.org/software/parallel/'
+license=('GPL3')
+depends=('perl' 'procps')
+source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+md5sums=('82501190145992d56abf2e391752820b'
+ 'SKIP')
+sha1sums=('30face2362e8c15057b4914786b38a2d2e54ec9a'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+
+  # FIXME
+  ln -sf parallel $pkgdir/usr/bin/sem
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-pod-numbers.patch
===
--- fix-pod-numbers.patch   2014-09-29 22:30:11 UTC (rev 119848)
+++ fix-pod-numbers.patch   2014-09-29 22:30:22 UTC (rev 119849)
@@ -1,47 +0,0 @@
 src/parallel.pod.orig
-+++ src/parallel.pod
-@@ -528,18 +528,18 @@
- 
- =over 3
- 
--=item 0
-+=item 0Z
- 
- Do not halt if a job fails. Exit status will be the number of jobs
- failed. This is the default.
- 
--=item 1
-+=item 1Z
- 
- Do not start new jobs if a job fails, but complete the running jobs
- including cleanup. The exit status will be the exit status from the
- last failing job.
- 
--=item 2
-+=item 2Z
- 
- Kill off all jobs immediately and exit without cleanup. The exit
- status will be the exit status from the failing job.
-@@ -2760,7 +2760,7 @@
- 
- =over 6
- 
--=item 0
-+=item 0Z
- 
- All jobs ran without error.
- 
-@@ -2768,11 +2768,11 @@
- 
- Some of the jobs failed. The exit status gives the number of failed jobs
- 
--=item 254
-+=item 254Z
- 
- More than 253 jobs failed.
- 
--=item 255
-+=item 255Z
- 
- Other error.
- 

Copied: parallel/repos/community-any/fix-pod-numbers.patch (from rev 119848, 
parallel/trunk/fix-pod-numbers.patch)
===
--- fix-pod-numbers.patch   (rev 0)
+++ fix-pod-numbers.patch   2014-09-29 22:30:22 UTC (rev 119849)
@@ -0,0 +1,47 @@
+--- src/parallel.pod.orig
 src/parallel.pod
+@@ -528,18 +528,18 @@
+ 
+ =over 3
+ 
+-=item 0
++=item 0Z
+ 
+ Do not halt if a job fails. Exit status will be the number of jobs
+ failed. This is the default.
+ 
+-=item 1
++=item 1Z
+ 
+ Do not start new jobs if a job fails, but complete the running jobs
+ including cleanup. The exit status will be the exit status from the
+ last failing job.
+ 
+-=item 2
++=item 2Z
+ 
+ Kill off all jobs immediately and exit without cleanup. The exit
+ status will be the exit status from the failing job.
+@@ -2760,7 +2760,7 @@
+ 
+ =over 6
+ 
+-=item 0
++=item 0Z
+ 
+ All jobs ran without error.
+ 
+@@ -2768,11 +2768,11 @@
+ 
+ Some of the jobs failed. The exit status gives the number of failed jobs
+ 
+-=item 254
++=item 254Z

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

2014-09-29 Thread Timothy Redaelli
Date: Tuesday, September 30, 2014 @ 00:30:11
  Author: tredaelli
Revision: 119848

upgpkg: parallel 20140922-1

Modified:
  parallel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-29 22:24:35 UTC (rev 119847)
+++ PKGBUILD2014-09-29 22:30:11 UTC (rev 119848)
@@ -4,8 +4,8 @@
 # Contributor: Peter Simons sim...@cryp.to
 
 pkgname=parallel
-pkgver=20140822
-pkgrel=2
+pkgver=20140922
+pkgrel=1
 pkgdesc='A shell tool for executing jobs in parallel'
 arch=('any')
 url='http://www.gnu.org/software/parallel/'
@@ -12,9 +12,9 @@
 license=('GPL3')
 depends=('perl' 'procps')
 source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('81064272734f7576f367636eb7d6059d'
+md5sums=('82501190145992d56abf2e391752820b'
  'SKIP')
-sha1sums=('ca81369f106137380ba6a1729fb85efbf9c6e00f'
+sha1sums=('30face2362e8c15057b4914786b38a2d2e54ec9a'
   'SKIP')
 
 build() {


[arch-commits] Commit in electrum/repos/community-any (7 files)

2014-09-19 Thread Timothy Redaelli
Date: Friday, September 19, 2014 @ 19:43:35
  Author: tredaelli
Revision: 119244

archrelease: copy trunk to community-any

Added:
  electrum/repos/community-any/PKGBUILD
(from rev 119243, electrum/trunk/PKGBUILD)
  electrum/repos/community-any/electrum.install
(from rev 119243, electrum/trunk/electrum.install)
  electrum/repos/community-any/gtk3.patch
(from rev 119243, electrum/trunk/gtk3.patch)
  electrum/repos/community-any/setup.py.patch
(from rev 119243, electrum/trunk/setup.py.patch)
Deleted:
  electrum/repos/community-any/PKGBUILD
  electrum/repos/community-any/electrum.install
  electrum/repos/community-any/setup.py.patch

--+
 PKGBUILD |  110 ++---
 electrum.install |   22 +-
 gtk3.patch   |   13 ++
 setup.py.patch   |   22 +-
 4 files changed, 91 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-19 17:43:27 UTC (rev 119243)
+++ PKGBUILD2014-09-19 17:43:35 UTC (rev 119244)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Andy Weidenbaum archb...@gmail.com
-# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
-# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
-
-pkgname=electrum
-pkgver=1.9.8
-pkgrel=2
-pkgdesc=Lightweight Bitcoin wallet
-arch=('any')
-depends=('python2' 'python2-ecdsa' 'python2-pbkdf2' 'python2-pyqt4' 
'python2-sip' 'python2-slowaes' 'qt4' 'sip')
-makedepends=('gettext' 'python2-pycurl' 'python2-setuptools')
-optdepends=('desktop-file-utils: update desktop database'
-'python2-zbar: QR code reading support')
-url=https://electrum.org;
-license=('GPL3')
-source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc}
-setup.py.patch)
-md5sums=('e3918fec0254267f08e41a1fb8691382'
- '4fdd91fe50c4718067b5f22a866ceb53'
- '562f61b12e8bc80de23fb56b8ce56fe7')
-sha256sums=('8fc144a32013e4a747fea27fff981762a6b9e14cde9ffb405c4c721975d846ff'
-'181b88ceecd8701844d79110d31fe71b16d943c47612989f3c51e19270f2a87b'
-'5f8d846dedce20601f3131e687bd2dc54ca8df0137cbdaa1b06eab11eb6a52da')
-provides=('electrum')
-install=electrum.install
-
-prepare() {
-  cd ${srcdir}/${pkgname^}-${pkgver}
-
-  msg 'Patching setup.py...'
-  patch -p1  ${srcdir}/setup.py.patch
-
-  msg 'Fixing Python version...'
-  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
-}
-
-build() {
-  cd ${srcdir}/${pkgname^}-${pkgver}
-
-  msg 'Building...'
-  python2 mki18n.py
-  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${pkgname^}-${pkgver}
-
-  msg 'Installing...'
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: electrum/repos/community-any/PKGBUILD (from rev 119243, 
electrum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-19 17:43:35 UTC (rev 119244)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
+# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
+
+pkgname=electrum
+pkgver=1.9.8
+pkgrel=3
+pkgdesc=Lightweight Bitcoin wallet
+arch=('any')
+depends=('python2' 'python2-ecdsa' 'python2-pbkdf2' 'python2-pyqt4' 
'python2-sip' 'python2-slowaes' 'qt4' 'sip')
+makedepends=('gettext' 'python2-pycurl' 'python2-setuptools')
+optdepends=('desktop-file-utils: update desktop database'
+'pygtk: GTK user interface'
+'python2-zbar: QR code reading support')
+url=https://electrum.org;
+license=('GPL3')
+source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc}
+setup.py.patch
+gtk3.patch)
+md5sums=('e3918fec0254267f08e41a1fb8691382'
+ 'SKIP'
+ '562f61b12e8bc80de23fb56b8ce56fe7'
+ 'b74882fe1c8319faf8f7d1ecbb6e30f6')
+sha256sums=('8fc144a32013e4a747fea27fff981762a6b9e14cde9ffb405c4c721975d846ff'
+'SKIP'
+'5f8d846dedce20601f3131e687bd2dc54ca8df0137cbdaa1b06eab11eb6a52da'
+'ba97ed1716af25fb64e439415cbe55aadac3d6528ab29f7a0ea0f93b5a539299')
+provides=('electrum')
+install=electrum.install
+
+prepare() {
+  cd ${pkgname^}-${pkgver}
+
+  patch -p1  ${srcdir}/setup.py.patch
+
+  patch -p1  ${srcdir}/gtk3.patch
+
+  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
+}
+
+build() {
+  cd ${pkgname^}-${pkgver}
+
+  python2 mki18n.py
+  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname^}-${pkgver

[arch-commits] Commit in electrum/trunk (PKGBUILD gtk3.patch)

2014-09-19 Thread Timothy Redaelli
Date: Friday, September 19, 2014 @ 19:43:27
  Author: tredaelli
Revision: 119243

upgpkg: electrum 1.9.8-3

Fix GTK UI

Added:
  electrum/trunk/gtk3.patch
Modified:
  electrum/trunk/PKGBUILD

+
 PKGBUILD   |   30 --
 gtk3.patch |   13 +
 2 files changed, 29 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-19 17:30:34 UTC (rev 119242)
+++ PKGBUILD2014-09-19 17:43:27 UTC (rev 119243)
@@ -6,41 +6,44 @@
 
 pkgname=electrum
 pkgver=1.9.8
-pkgrel=2
+pkgrel=3
 pkgdesc=Lightweight Bitcoin wallet
 arch=('any')
 depends=('python2' 'python2-ecdsa' 'python2-pbkdf2' 'python2-pyqt4' 
'python2-sip' 'python2-slowaes' 'qt4' 'sip')
 makedepends=('gettext' 'python2-pycurl' 'python2-setuptools')
 optdepends=('desktop-file-utils: update desktop database'
+'pygtk: GTK user interface'
 'python2-zbar: QR code reading support')
 url=https://electrum.org;
 license=('GPL3')
 source=(https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz{,.asc}
-setup.py.patch)
+setup.py.patch
+gtk3.patch)
 md5sums=('e3918fec0254267f08e41a1fb8691382'
- '4fdd91fe50c4718067b5f22a866ceb53'
- '562f61b12e8bc80de23fb56b8ce56fe7')
+ 'SKIP'
+ '562f61b12e8bc80de23fb56b8ce56fe7'
+ 'b74882fe1c8319faf8f7d1ecbb6e30f6')
 sha256sums=('8fc144a32013e4a747fea27fff981762a6b9e14cde9ffb405c4c721975d846ff'
-'181b88ceecd8701844d79110d31fe71b16d943c47612989f3c51e19270f2a87b'
-'5f8d846dedce20601f3131e687bd2dc54ca8df0137cbdaa1b06eab11eb6a52da')
+'SKIP'
+'5f8d846dedce20601f3131e687bd2dc54ca8df0137cbdaa1b06eab11eb6a52da'
+'ba97ed1716af25fb64e439415cbe55aadac3d6528ab29f7a0ea0f93b5a539299')
 provides=('electrum')
 install=electrum.install
 
 prepare() {
-  cd ${srcdir}/${pkgname^}-${pkgver}
+  cd ${pkgname^}-${pkgver}
 
-  msg 'Patching setup.py...'
-  patch -p1  ${srcdir}/setup.py.patch
+  patch -p1  ${srcdir}/setup.py.patch
 
-  msg 'Fixing Python version...'
+  patch -p1  ${srcdir}/gtk3.patch
+
   find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
   find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
 }
 
 build() {
-  cd ${srcdir}/${pkgname^}-${pkgver}
+  cd ${pkgname^}-${pkgver}
 
-  msg 'Building...'
   python2 mki18n.py
   pyrcc4 icons.qrc -o gui/qt/icons_rc.py
   python2 setup.py build
@@ -47,8 +50,7 @@
 }
 
 package() {
-  cd ${srcdir}/${pkgname^}-${pkgver}
+  cd ${pkgname^}-${pkgver}
 
-  msg 'Installing...'
   python2 setup.py install --root=${pkgdir} --optimize=1
 }

Added: gtk3.patch
===
--- gtk3.patch  (rev 0)
+++ gtk3.patch  2014-09-19 17:43:27 UTC (rev 119243)
@@ -0,0 +1,13 @@
+diff --git a/gui/gtk.py b/gui/gtk.py
+index cd9178f8..fe302181 100644
+--- a/gui/gtk.py
 b/gui/gtk.py
+@@ -87,7 +87,7 @@ def restore_create_dialog():
+ # ask if the user wants to create a new wallet, or recover from a seed. 
+ # if he wants to recover, and nothing is found, do not create wallet
+ dialog = Gtk.Dialog(electrum, parent=None, 
+-
flags=Gtk.DialogFlags.MODAL|Gtk.DialogFlags.NO_SEPARATOR, 
++flags=Gtk.DialogFlags.MODAL,
+ buttons= (create, 0, restore,1, cancel,2)  )
+ 
+ label = Gtk.Label(Wallet file not found.\nDo you want to create a new 
wallet,\n or to restore an existing one?  )



<    1   2   3   4   5   6   7   8   9   >