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

2013-12-17 Thread Balló György
Date: Wednesday, December 18, 2013 @ 04:40:48
  Author: bgyorgy
Revision: 102733

Add to vim-plugins group (FS#36075)

Modified:
  vim-supertab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 21:12:04 UTC (rev 102732)
+++ PKGBUILD2013-12-18 03:40:48 UTC (rev 102733)
@@ -11,6 +11,7 @@
 url='http://www.vim.org/scripts/script.php?script_id=1643'
 license=('BSD')
 depends=('vim')
+groups=('vim-plugins')
 install=vimdoc.install
 
source=("supertab.vmb::http://www.vim.org/scripts/download_script.php?src_id=$_sourceid";
 'LICENSE')



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

2013-12-17 Thread Dan McGee
Date: Wednesday, December 18, 2013 @ 02:22:42
  Author: dan
Revision: 201683

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

Added:
  git/repos/extra-i686/PKGBUILD
(from rev 201682, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon.socket
(from rev 201682, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 201682, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 201682, git/trunk/git.install)
  git/repos/extra-x86_64/PKGBUILD
(from rev 201682, git/trunk/PKGBUILD)
  git/repos/extra-x86_64/git-daemon.socket
(from rev 201682, git/trunk/git-daemon.socket)
  git/repos/extra-x86_64/git-daemon@.service
(from rev 201682, git/trunk/git-daemon@.service)
  git/repos/extra-x86_64/git.install
(from rev 201682, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon.socket
  git/repos/extra-i686/git-daemon@.service
  git/repos/extra-i686/git.install
  git/repos/extra-x86_64/PKGBUILD
  git/repos/extra-x86_64/git-daemon.socket
  git/repos/extra-x86_64/git-daemon@.service
  git/repos/extra-x86_64/git.install

--+
 /PKGBUILD|  238 +
 /git-daemon.socket   |   18 ++
 /git-daemon@.service |   20 +++
 /git.install |   42 ++
 extra-i686/PKGBUILD  |  119 --
 extra-i686/git-daemon.socket |9 -
 extra-i686/git-daemon@.service   |   10 -
 extra-i686/git.install   |   21 ---
 extra-x86_64/PKGBUILD|  119 --
 extra-x86_64/git-daemon.socket   |9 -
 extra-x86_64/git-daemon@.service |   10 -
 extra-x86_64/git.install |   21 ---
 12 files changed, 318 insertions(+), 318 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-18 01:22:28 UTC (rev 201682)
+++ extra-i686/PKGBUILD 2013-12-18 01:22:42 UTC (rev 201683)
@@ -1,119 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgname=git
-pkgver=1.8.5.1
-pkgrel=1
-pkgdesc="the fast distributed version control system"
-arch=(i686 x86_64)
-url="http://git-scm.com/";
-license=('GPL2')
-depends=('curl' 'expat>=2.0' 'perl-error' 'perl>=5.14.0' 'openssl' 'pcre')
-makedepends=('python2' 'emacs' 'libgnome-keyring')
-optdepends=('tk: gitk and git gui'
-'perl-libwww: git svn'
-'perl-term-readkey: git svn'
-'perl-mime-tools: git send-email'
-'perl-net-smtp-ssl: git send-email TLS support'
-'perl-authen-sasl: git send-email TLS support'
-'python2: various helper scripts'
-'subversion: git svn'
-'cvsps: git cvsimport'
-'gnome-keyring: GNOME keyring credential helper')
-replaces=('git-core')
-provides=('git-core')
-install=git.install
-source=("http://git-core.googlecode.com/files/git-$pkgver.tar.gz";
-"http://git-core.googlecode.com/files/git-manpages-$pkgver.tar.gz";
-git-daemon@.service
-git-daemon.socket)
-
-build() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-all
-
-  make -C contrib/emacs prefix=/usr
-  make -C contrib/credential/gnome-keyring
-}
-
-check() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  local jobs
-  jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*')
-  # build failures with multiple jobs in check, not ideal...
-  jobs='-j1'
-  mkdir -p /dev/shm/git-test
-  # We used to use this, but silly git regressions:
-  #GIT_TEST_OPTS="--root=/dev/shm/" \
-  # http://comments.gmane.org/gmane.comp.version-control.git/202020
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-NO_SVN_TESTS=y \
-DEFAULT_TEST_TARGET=prove \
-GIT_PROVE_OPTS="$jobs -Q" \
-GIT_TEST_OPTS="--root=/dev/shm/git-test" \
-test
-}
-
-package() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-INSTALLDIRS=vendor DESTDIR="$pkgdir" install
-
-  # bash completion
-  mkdir -p "$pkgdir"/usr/share/bash-completion/completions/
-  install -m644 ./contrib/completion/git-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/git
-  # fancy git prompt
-  mkdir -p "$pkgdir"/usr/share/git/
-  install -m644 ./contrib/completion/git-prompt.sh 
"$pkgdir"/usr/share/git/git-prompt.sh
-  # emacs
-  make -C contrib/emacs prefix=/usr DESTDIR="$pkgdir" install
-  # gnome credentials helper
-  install -m755 contrib/credential/gnome-keyring/git-credential-g

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

2013-12-17 Thread Dan McGee
Date: Wednesday, December 18, 2013 @ 02:22:28
  Author: dan
Revision: 201682

upgpkg: git 1.8.5.2-1

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-18 00:02:19 UTC (rev 201681)
+++ PKGBUILD2013-12-18 01:22:28 UTC (rev 201682)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.8.5.1
+pkgver=1.8.5.2
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -113,7 +113,7 @@
   install -D -m 644 "$srcdir"/git-daemon.socket 
"$pkgdir"/usr/lib/systemd/system/git-daemon.socket
 }
 
-md5sums=('7b9d622c98482aeb4532500231626210'
- '4d6a83339753f5a9a2dd8aed4b7180bc'
+md5sums=('df8519044f9880f3687d863d99245282'
+ '27851cc39808f1be6d3789fae87c8308'
  '042524f942785772d7bd52a1f02fe5ae'
  'f67869315c2cc112e076f0c73f248002')



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

2013-12-17 Thread Sven-Hendrik Haase
Date: Wednesday, December 18, 2013 @ 01:02:08
  Author: svenstaro
Revision: 201680

upgpkg: boost 1.55.0-3

Build using gcc and our flags, probably solves some bugs

Modified:
  boost/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 22:11:08 UTC (rev 201679)
+++ PKGBUILD2013-12-18 00:02:08 UTC (rev 201680)
@@ -10,11 +10,11 @@
 pkgname=('boost-libs' 'boost')
 pkgver=1.55.0
 _boostver=${pkgver//./_}
-pkgrel=2
+pkgrel=3
 url="http://www.boost.org/";
 arch=('i686' 'x86_64')
 license=('custom')
-makedepends=('icu>=52.1' 'python' 'python2' 'bzip2' 'zlib' 'openmpi' 'clang')
+makedepends=('icu>=52.1' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
 
source=(http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz
 001-log_fix_dump_avx2.patch)
 sha1sums=('61ed0e57d3c7c8985805bb0682de3f4c65f4b6e5'
@@ -38,7 +38,7 @@
 
cd ${pkgbase}_${_boostver}
 
-   ./bootstrap.sh --with-toolset=clang --with-icu 
--with-python=/usr/bin/python2
+   ./bootstrap.sh --with-toolset=gcc --with-icu --with-python=/usr/bin/python2
 
_bindir="bin.linuxx86"
[[ "${CARCH}" = "x86_64" ]] && _bindir="bin.linuxx86_64"
@@ -48,9 +48,9 @@
 
pushd tools
for _tool in bcp inspect quickbook compiler_status process_jam_log wave; do
-  "${_stagedir}"/bin/b2 --toolset=clang $_tool
+  "${_stagedir}"/bin/b2 --toolset=gcc cflags="${CPPFLAGS} ${CFLAGS} 
-std=gnu++11 -O3" linkflags="${LDFLAGS}" $_tool
done
-   "${_stagedir}"/bin/b2 --toolset=clang cflags="-std=gnu++11  
-D__STRICT_ANSI__" library_status
+   "${_stagedir}"/bin/b2 --toolset=gcc cflags="${CPPFLAGS} ${CFLAGS} 
-std=gnu++11 -O3" linkflags="${LDFLAGS}" library_status
popd
cp -a dist/bin/* "${_stagedir}"/bin
 
@@ -70,8 +70,9 @@
   threading=multi \
   runtime-link=shared \
   link=shared,static \
-  toolset=clang \
+  toolset=gcc \
   python=2.7 \
+  cflags="${CPPFLAGS} ${CFLAGS} -std=gnu++11 -O3" linkflags="${LDFLAGS}" \
   --layout=system \
   --prefix="${_stagedir}" \
   ${JOBS} \



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

2013-12-17 Thread Sven-Hendrik Haase
Date: Wednesday, December 18, 2013 @ 01:02:19
  Author: svenstaro
Revision: 201681

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

Added:
  boost/repos/testing-i686/
  boost/repos/testing-i686/001-log_fix_dump_avx2.patch
(from rev 201680, boost/trunk/001-log_fix_dump_avx2.patch)
  boost/repos/testing-i686/PKGBUILD
(from rev 201680, boost/trunk/PKGBUILD)
  boost/repos/testing-x86_64/
  boost/repos/testing-x86_64/001-log_fix_dump_avx2.patch
(from rev 201680, boost/trunk/001-log_fix_dump_avx2.patch)
  boost/repos/testing-x86_64/PKGBUILD
(from rev 201680, boost/trunk/PKGBUILD)

+
 testing-i686/001-log_fix_dump_avx2.patch   |   13 +++
 testing-i686/PKGBUILD  |  112 +++
 testing-x86_64/001-log_fix_dump_avx2.patch |   13 +++
 testing-x86_64/PKGBUILD|  112 +++
 4 files changed, 250 insertions(+)

Copied: boost/repos/testing-i686/001-log_fix_dump_avx2.patch (from rev 201680, 
boost/trunk/001-log_fix_dump_avx2.patch)
===
--- testing-i686/001-log_fix_dump_avx2.patch(rev 0)
+++ testing-i686/001-log_fix_dump_avx2.patch2013-12-18 00:02:19 UTC (rev 
201681)
@@ -0,0 +1,13 @@
+Index: libs/log/src/dump_avx2.cpp
+===
+--- libs/log/src/dump_avx2.cpp (revision 86614)
 libs/log/src/dump_avx2.cpp (working copy)
+@@ -205,7 +205,7 @@
+ __m256i mm_input = _mm256_load_si256(reinterpret_cast< const 
__m256i* >(p));
+ __m256i mm_output1, mm_output2, mm_output3;
+ dump_pack(mm_char_10_to_a, mm_input, mm_output1, mm_output2, 
mm_output3);
+-store_characters_x3(mm_output1, mm_output2, mm_output3, buf);
++store_characters_x3(mm_output1, mm_output2, mm_output3, b);
+ }
+ 
+ _mm256_zeroall(); // need to zero all ymm registers to avoid register 
spills/restores the compler generates around the function call

Copied: boost/repos/testing-i686/PKGBUILD (from rev 201680, 
boost/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-18 00:02:19 UTC (rev 201681)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Ionut Biru 
+# Contributor: kevin 
+# Contributor: Giovanni Scafora 
+# Contributor: Kritoke 
+# Contributor: Luca Roccia 
+
+pkgbase=boost
+pkgname=('boost-libs' 'boost')
+pkgver=1.55.0
+_boostver=${pkgver//./_}
+pkgrel=3
+url="http://www.boost.org/";
+arch=('i686' 'x86_64')
+license=('custom')
+makedepends=('icu>=52.1' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
+source=(http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz
+001-log_fix_dump_avx2.patch)
+sha1sums=('61ed0e57d3c7c8985805bb0682de3f4c65f4b6e5'
+  'a4a47cc5716df87d544ae7684aaf402287132d50')
+
+prepare() {
+   export _stagedir="${srcdir}/stagedir"
+   cd ${pkgbase}_${_boostver}
+
+   patch -p0 -i ../001-log_fix_dump_avx2.patch
+
+   # Add an extra python version. This does not replace anything and python 
2.x need to be the default.
+   echo "using python : 3.3 : /usr/bin/python3 : /usr/include/python3.3m : 
/usr/lib ;" >> ./tools/build/v2/user-config.jam
+
+   # Support for OpenMPI   
 
+   echo "using mpi ;" >> ./tools/build/v2/user-config.jam
+}
+
+build() {
+   local JOBS="$(sed -e 's/.*\(-j *[0-9]\+\).*/\1/' <<< ${MAKEFLAGS})"
+
+   cd ${pkgbase}_${_boostver}
+
+   ./bootstrap.sh --with-toolset=gcc --with-icu --with-python=/usr/bin/python2
+
+   _bindir="bin.linuxx86"
+   [[ "${CARCH}" = "x86_64" ]] && _bindir="bin.linuxx86_64"
+
+   install -dm755 "${_stagedir}"/bin
+   install tools/build/v2/engine/${_bindir}/b2 "${_stagedir}"/bin/b2
+
+   pushd tools
+   for _tool in bcp inspect quickbook compiler_status process_jam_log wave; do
+  "${_stagedir}"/bin/b2 --toolset=gcc cflags="${CPPFLAGS} ${CFLAGS} 
-std=gnu++11 -O3" linkflags="${LDFLAGS}" $_tool
+   done
+   "${_stagedir}"/bin/b2 --toolset=gcc cflags="${CPPFLAGS} ${CFLAGS} 
-std=gnu++11 -O3" linkflags="${LDFLAGS}" library_status
+   popd
+   cp -a dist/bin/* "${_stagedir}"/bin
+
+   # boostbook is needed by quickbook
+   install -dm755 "${_stagedir}"/share/boostbook
+   cp -a tools/boostbook/{xsl,dtd} "${_stagedir}"/share/boostbook/
+
+   # default "minimal" install: "release link=shared,static
+   # runtime-link=shared threading=single,multi"
+   # --layout=tagged will add the "-mt" suffix for multithreaded libraries
+   # and installs includes in /usr/include/boost.
+   # --layout=system no longer adds the -mt suffix for multi-threaded libs.
+   # install to ${_stagedir} in preparation for split packaging
+   "${_stagedir}"/bin/b2 \
+  variant=release \
+  debug-symbo

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

2013-12-17 Thread Andreas Radke
Date: Tuesday, December 17, 2013 @ 23:11:08
  Author: andyrtr
Revision: 201679

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

Added:
  xmlsec/repos/staging-i686/
  xmlsec/repos/staging-i686/PKGBUILD
(from rev 201678, xmlsec/trunk/PKGBUILD)
  xmlsec/repos/staging-x86_64/
  xmlsec/repos/staging-x86_64/PKGBUILD
(from rev 201678, xmlsec/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   33 +
 staging-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: xmlsec/repos/staging-i686/PKGBUILD (from rev 201678, 
xmlsec/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 22:11:08 UTC (rev 201679)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Jan de Groot 
+# Contributor: Hussam Al-Tayeb 
+
+pkgname=xmlsec
+pkgver=1.2.19
+pkgrel=2
+pkgdesc="XML Security Library is a C library based on LibXML2"
+license=('custom')
+arch=(i686 x86_64)
+url="http://www.aleksey.com/xmlsec/index.html";
+depends=('libxslt' 'openssl' 'gnutls' 'nss' 'libltdl')
+source=(http://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.tar.gz)
+md5sums=('fe664ba5f01ebfaeb0ab5deeb0b2249e')
+
+build() {
+  cd ${srcdir}/${pkgname}1-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd "$srcdir/${pkgname}1-$pkgver"
+  make -k check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}1-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xmlsec/repos/staging-x86_64/PKGBUILD (from rev 201678, 
xmlsec/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 22:11:08 UTC (rev 201679)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Jan de Groot 
+# Contributor: Hussam Al-Tayeb 
+
+pkgname=xmlsec
+pkgver=1.2.19
+pkgrel=2
+pkgdesc="XML Security Library is a C library based on LibXML2"
+license=('custom')
+arch=(i686 x86_64)
+url="http://www.aleksey.com/xmlsec/index.html";
+depends=('libxslt' 'openssl' 'gnutls' 'nss' 'libltdl')
+source=(http://www.aleksey.com/xmlsec/download/${pkgname}1-${pkgver}.tar.gz)
+md5sums=('fe664ba5f01ebfaeb0ab5deeb0b2249e')
+
+build() {
+  cd ${srcdir}/${pkgname}1-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd "$srcdir/${pkgname}1-$pkgver"
+  make -k check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}1-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}



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

2013-12-17 Thread Andreas Radke
Date: Tuesday, December 17, 2013 @ 23:10:57
  Author: andyrtr
Revision: 201678

upgpkg: xmlsec 1.2.19-2

libcrypgt rebuild

Modified:
  xmlsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 22:10:45 UTC (rev 201677)
+++ PKGBUILD2013-12-17 22:10:57 UTC (rev 201678)
@@ -5,7 +5,7 @@
 
 pkgname=xmlsec
 pkgver=1.2.19
-pkgrel=1
+pkgrel=2
 pkgdesc="XML Security Library is a C library based on LibXML2"
 license=('custom')
 arch=(i686 x86_64)



[arch-commits] Commit in xfce4-mailwatch-plugin/repos (6 files)

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 23:10:45
  Author: eric
Revision: 201677

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

Added:
  xfce4-mailwatch-plugin/repos/staging-i686/
  xfce4-mailwatch-plugin/repos/staging-i686/PKGBUILD
(from rev 201676, xfce4-mailwatch-plugin/trunk/PKGBUILD)
  xfce4-mailwatch-plugin/repos/staging-i686/xfce4-mailwatch-plugin.install
(from rev 201676, 
xfce4-mailwatch-plugin/trunk/xfce4-mailwatch-plugin.install)
  xfce4-mailwatch-plugin/repos/staging-x86_64/
  xfce4-mailwatch-plugin/repos/staging-x86_64/PKGBUILD
(from rev 201676, xfce4-mailwatch-plugin/trunk/PKGBUILD)
  xfce4-mailwatch-plugin/repos/staging-x86_64/xfce4-mailwatch-plugin.install
(from rev 201676, 
xfce4-mailwatch-plugin/trunk/xfce4-mailwatch-plugin.install)

---+
 staging-i686/PKGBUILD |   32 
 staging-i686/xfce4-mailwatch-plugin.install   |   11 
 staging-x86_64/PKGBUILD   |   32 
 staging-x86_64/xfce4-mailwatch-plugin.install |   11 
 4 files changed, 86 insertions(+)

Copied: xfce4-mailwatch-plugin/repos/staging-i686/PKGBUILD (from rev 201676, 
xfce4-mailwatch-plugin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 22:10:45 UTC (rev 201677)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Suzy Williams 
+
+pkgname=xfce4-mailwatch-plugin
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A mailbox watch/check plugin for the Xfce4 panel"
+arch=('i686' 'x86_64')
+url="http://goodies.xfce.org/projects/panel-plugins/xfce4-mailwatch-plugin";
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfce4-panel')
+makedepends=('intltool')
+install=${pkgname}.install
+source=(http://archive.xfce.org/src/panel-plugins/xfce4-mailwatch-plugin/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('7263114ec0f2987a3aff15afeeb45577')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var \
+   --disable-debug
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
xfce4-mailwatch-plugin/repos/staging-i686/xfce4-mailwatch-plugin.install (from 
rev 201676, xfce4-mailwatch-plugin/trunk/xfce4-mailwatch-plugin.install)
===
--- staging-i686/xfce4-mailwatch-plugin.install (rev 0)
+++ staging-i686/xfce4-mailwatch-plugin.install 2013-12-17 22:10:45 UTC (rev 
201677)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}

Copied: xfce4-mailwatch-plugin/repos/staging-x86_64/PKGBUILD (from rev 201676, 
xfce4-mailwatch-plugin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 22:10:45 UTC (rev 201677)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Suzy Williams 
+
+pkgname=xfce4-mailwatch-plugin
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A mailbox watch/check plugin for the Xfce4 panel"
+arch=('i686' 'x86_64')
+url="http://goodies.xfce.org/projects/panel-plugins/xfce4-mailwatch-plugin";
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfce4-panel')
+makedepends=('intltool')
+install=${pkgname}.install
+source=(http://archive.xfce.org/src/panel-plugins/xfce4-mailwatch-plugin/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('7263114ec0f2987a3aff15afeeb45577')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var \
+   --disable-debug
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
xfce4-mailwatch-plugin/repos/staging-x86_64/xfce4-mailwatch-plugin.install 
(from rev 201676, xfce4-mailwatch-plugin/trunk/xfce4-mailwatch-plugin.install)
===
--- staging-x86_64/xfce4-mailwatch-plugin.install   
(rev 0)
+++ staging-x86_64/xfce4-mailwatch-plugin.install   2013-12-17 22:10:45 UTC 
(rev 201677)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



[arch-commits] Commit in xfce4-mailwatch-plugin/trunk (PKGBUILD)

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 23:09:32
  Author: eric
Revision: 201676

upgpkg: xfce4-mailwatch-plugin 1.2.0-2

Rebuild against libgcrypt 1.6.0

Modified:
  xfce4-mailwatch-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 22:03:50 UTC (rev 201675)
+++ PKGBUILD2013-12-17 22:09:32 UTC (rev 201676)
@@ -4,7 +4,7 @@
 
 pkgname=xfce4-mailwatch-plugin
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A mailbox watch/check plugin for the Xfce4 panel"
 arch=('i686' 'x86_64')
 url="http://goodies.xfce.org/projects/panel-plugins/xfce4-mailwatch-plugin";



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

2013-12-17 Thread Andreas Radke
Date: Tuesday, December 17, 2013 @ 23:03:36
  Author: andyrtr
Revision: 201674

upgpkg: x2goclient 4.0.1.2-1

upstream update 4.0.1.2

Modified:
  x2goclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 21:57:34 UTC (rev 201673)
+++ PKGBUILD2013-12-17 22:03:36 UTC (rev 201674)
@@ -4,7 +4,7 @@
 # Contributor: Richard Murri 
 
 pkgname=x2goclient
-pkgver=4.0.1.1
+pkgver=4.0.1.2
 pkgrel=1
 pkgdesc="x2go qt4 client"
 arch=('i686' 'x86_64')
@@ -14,13 +14,16 @@
 makedepends=('man2html')
 install=x2goclient.install
 
source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('13b6729acfd5c6a00441430ef6ab69d6')
+md5sums=('500c94ce4c8a63ecabde347d526f1356')
 
 build() {
   cd ${pkgname}-${pkgver}
   sed -i "s:-o root -g root ::" Makefile
-  sed -i "s:lrelease:lrelease-qt4:g" Makefile
-  make PREFIX=/usr
+  #make PREFIX=/usr
+  #make PREFIX=/usr build_man # target broken and making the build hang
+  make PREFIX=/usr build_pluginprovider
+  make PREFIX=/usr build_client 
+  make PREFIX=/usr build_plugin
 }
 
 package() {



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

2013-12-17 Thread Andreas Radke
Date: Tuesday, December 17, 2013 @ 23:03:50
  Author: andyrtr
Revision: 201675

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

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

-+
 /PKGBUILD   |   64 ++
 /x2goclient.install |   22 +
 extra-i686/PKGBUILD |   29 -
 extra-i686/x2goclient.install   |   11 --
 extra-x86_64/PKGBUILD   |   29 -
 extra-x86_64/x2goclient.install |   11 --
 6 files changed, 86 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-17 22:03:36 UTC (rev 201674)
+++ extra-i686/PKGBUILD 2013-12-17 22:03:50 UTC (rev 201675)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Gerhard Brauer 
-# Contributor: Richard Murri 
-
-pkgname=x2goclient
-pkgver=4.0.1.1
-pkgrel=1
-pkgdesc="x2go qt4 client"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.x2go.org";
-depends=('qt4' 'libldap' 'libcups' 'nxproxy' 'libssh' 'libxpm' 
'hicolor-icon-theme' 'xdg-utils')
-makedepends=('man2html')
-install=x2goclient.install
-source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('13b6729acfd5c6a00441430ef6ab69d6')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  sed -i "s:-o root -g root ::" Makefile
-  sed -i "s:lrelease:lrelease-qt4:g" Makefile
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-}

Copied: x2goclient/repos/extra-i686/PKGBUILD (from rev 201674, 
x2goclient/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-17 22:03:50 UTC (rev 201675)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Gerhard Brauer 
+# Contributor: Richard Murri 
+
+pkgname=x2goclient
+pkgver=4.0.1.2
+pkgrel=1
+pkgdesc="x2go qt4 client"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.x2go.org";
+depends=('qt4' 'libldap' 'libcups' 'nxproxy' 'libssh' 'libxpm' 
'hicolor-icon-theme' 'xdg-utils')
+makedepends=('man2html')
+install=x2goclient.install
+source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('500c94ce4c8a63ecabde347d526f1356')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  sed -i "s:-o root -g root ::" Makefile
+  #make PREFIX=/usr
+  #make PREFIX=/usr build_man # target broken and making the build hang
+  make PREFIX=/usr build_pluginprovider
+  make PREFIX=/usr build_client 
+  make PREFIX=/usr build_plugin
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/x2goclient.install
===
--- extra-i686/x2goclient.install   2013-12-17 22:03:36 UTC (rev 201674)
+++ extra-i686/x2goclient.install   2013-12-17 22:03:50 UTC (rev 201675)
@@ -1,11 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor
-}
-
-post_upgrade() {
-  xdg-icon-resource forceupdate --theme hicolor
-}
-
-post_remove() {
-  xdg-icon-resource forceupdate --theme hicolor
-}

Copied: x2goclient/repos/extra-i686/x2goclient.install (from rev 201674, 
x2goclient/trunk/x2goclient.install)
===
--- extra-i686/x2goclient.install   (rev 0)
+++ extra-i686/x2goclient.install   2013-12-17 22:03:50 UTC (rev 201675)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor
+}
+
+post_upgrade() {
+  xdg-icon-resource forceupdate --theme hicolor
+}
+
+post_remove() {
+  xdg-icon-resource forceupdate --theme hicolor
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-12-17 22:03:36 UTC (rev 201674)
+++ extra-x86_64/PKGBUILD   2013-12-17 22:03:50 UTC (rev 201675)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Gerhard Brauer 
-# Contributor: Richard Murri 
-
-pkgname=x2goclient
-pkgver=4.0.1.1
-pkgrel=1
-pkgdesc="x2go qt4 client"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.x2go.org";
-depends=('qt4' 'libldap' 'libcups' 'nxproxy' 'libssh' 'libxpm' 
'hicolor-icon-theme' 'xdg-uti

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

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 22:57:34
  Author: eric
Revision: 201673

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

Added:
  libotr3/repos/staging-i686/
  libotr3/repos/staging-i686/PKGBUILD
(from rev 201672, libotr3/trunk/PKGBUILD)
  libotr3/repos/staging-i686/libotr3-soname.patch
(from rev 201672, libotr3/trunk/libotr3-soname.patch)
  libotr3/repos/staging-x86_64/
  libotr3/repos/staging-x86_64/PKGBUILD
(from rev 201672, libotr3/trunk/PKGBUILD)
  libotr3/repos/staging-x86_64/libotr3-soname.patch
(from rev 201672, libotr3/trunk/libotr3-soname.patch)

-+
 staging-i686/PKGBUILD   |   34 +
 staging-i686/libotr3-soname.patch   |  695 ++
 staging-x86_64/PKGBUILD |   34 +
 staging-x86_64/libotr3-soname.patch |  695 ++
 4 files changed, 1458 insertions(+)

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


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

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 22:56:23
  Author: eric
Revision: 201672

upgpkg: libotr3 3.2.1-2

Rebuild against libgcrypt 1.6.0

Modified:
  libotr3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 21:50:07 UTC (rev 201671)
+++ PKGBUILD2013-12-17 21:56:23 UTC (rev 201672)
@@ -5,7 +5,7 @@
 
 pkgname=libotr3
 pkgver=3.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Off-the-Record Messaging Library and Toolkit (version 3.X)'
 url='http://www.cypherpunks.ca/otr/'
 license=('GPL' 'LGPL')
@@ -18,7 +18,7 @@
 build() {
cd "${srcdir}/libotr-${pkgver}"
patch -p1 -i "${srcdir}/libotr3-soname.patch"
-   ./configure --prefix=/usr --mandir=/usr/share/man --disable-static \
+   ./configure --prefix=/usr --mandir=/usr/share/man \
  --program-transform-name='s/otr/otr3/'
make 
 }



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

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 22:50:07
  Author: eric
Revision: 201671

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

Added:
  gtk-vnc/repos/staging-i686/
  gtk-vnc/repos/staging-i686/PKGBUILD
(from rev 201670, gtk-vnc/trunk/PKGBUILD)
  gtk-vnc/repos/staging-x86_64/
  gtk-vnc/repos/staging-x86_64/PKGBUILD
(from rev 201670, gtk-vnc/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   39 +++
 staging-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: gtk-vnc/repos/staging-i686/PKGBUILD (from rev 201670, 
gtk-vnc/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 21:50:07 UTC (rev 201671)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Allan McRae 
+# Contributor: lp76 
+
+pkgname=gtk-vnc
+pkgver=0.5.3
+pkgrel=2
+pkgdesc="A VNC viewer widget for GTK"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/gtk-vnc";
+license=('LGPL')
+depends=('libgcrypt' 'gtk3')
+optdepends=('gtk2: GTK2 widget')
+makedepends=('intltool' 'pygtk' 'pygobject2-devel' 'gtk-doc' 'gtk2' 'vala' 
'gobject-introspection')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('d490a6c8f40e550d43aef0043ce3bec498ec220d5eb3dc5cdcff8fd561149caf')
+
+build() {
+  rm -rf gtk2-build gtk3-build
+  cp -a $pkgname-$pkgver gtk2-build
+  mv $pkgname-$pkgver gtk3-build
+
+  ( cd gtk2-build
+PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --with-python --disable-static --with-gtk=2.0
+make )
+
+  ( cd gtk3-build
+PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --with-python --with-examples --disable-static --with-gtk=3.0
+make )
+}
+
+package() {
+  make -C gtk2-build DESTDIR="${pkgdir}" install
+  make -C gtk3-build DESTDIR="${pkgdir}" install
+}

Copied: gtk-vnc/repos/staging-x86_64/PKGBUILD (from rev 201670, 
gtk-vnc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 21:50:07 UTC (rev 201671)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Allan McRae 
+# Contributor: lp76 
+
+pkgname=gtk-vnc
+pkgver=0.5.3
+pkgrel=2
+pkgdesc="A VNC viewer widget for GTK"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/gtk-vnc";
+license=('LGPL')
+depends=('libgcrypt' 'gtk3')
+optdepends=('gtk2: GTK2 widget')
+makedepends=('intltool' 'pygtk' 'pygobject2-devel' 'gtk-doc' 'gtk2' 'vala' 
'gobject-introspection')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('d490a6c8f40e550d43aef0043ce3bec498ec220d5eb3dc5cdcff8fd561149caf')
+
+build() {
+  rm -rf gtk2-build gtk3-build
+  cp -a $pkgname-$pkgver gtk2-build
+  mv $pkgname-$pkgver gtk3-build
+
+  ( cd gtk2-build
+PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --with-python --disable-static --with-gtk=2.0
+make )
+
+  ( cd gtk3-build
+PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --with-python --with-examples --disable-static --with-gtk=3.0
+make )
+}
+
+package() {
+  make -C gtk2-build DESTDIR="${pkgdir}" install
+  make -C gtk3-build DESTDIR="${pkgdir}" install
+}



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

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 22:48:46
  Author: eric
Revision: 201670

upgpkg: gtk-vnc 0.5.3-2

Rebuild against libgcrypt 1.6.0

Modified:
  gtk-vnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 21:04:57 UTC (rev 201669)
+++ PKGBUILD2013-12-17 21:48:46 UTC (rev 201670)
@@ -6,7 +6,7 @@
 
 pkgname=gtk-vnc
 pkgver=0.5.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A VNC viewer widget for GTK"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Projects/gtk-vnc";



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

2013-12-17 Thread Jelle van der Waa
Date: Tuesday, December 17, 2013 @ 20:15:13
  Author: jelle
Revision: 102716

upgpkg: python-scipy 0.13.2-1

Modified:
  python-scipy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 19:00:21 UTC (rev 102715)
+++ PKGBUILD2013-12-17 19:15:13 UTC (rev 102716)
@@ -6,7 +6,7 @@
 # Contributor: Andrzej Giniewicz 
 
 pkgname=('python-scipy' 'python2-scipy')
-pkgver=0.13.1
+pkgver=0.13.2
 pkgrel=1
 pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
 arch=('i686' 'x86_64')
@@ -15,7 +15,6 @@
 makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 
'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose')
 
source=("https://pypi.python.org/packages/source/s/scipy/scipy-${pkgver}.tar.gz";)
-md5sums=('e082fe358a2b39cff235e5af4240f5a5')
 
 build() {
   # Changing the arithmetic parameter (Thanks to Fabrizio Castellano)
@@ -81,3 +80,4 @@
 }
 
 # vim:set ts=2 sw=2 et:
+md5sums=('fcd110802b0bf3505ba567cf831566e1')



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

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 20:18:38
  Author: eric
Revision: 102718

upgpkg: youtube-dl 2013.12.17.2-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 19:17:02 UTC (rev 102717)
+++ PKGBUILD2013-12-17 19:18:38 UTC (rev 102718)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=youtube-dl
-pkgver=2013.12.16.7
+pkgver=2013.12.17.2
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -12,7 +12,7 @@
 optdepends=('ffmpeg: for video post-processing')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('eb6ac0c7106036c2c2530ae29a610c2354dc'
+sha1sums=('121e80e8e165931c3accceeca0b24ed001c0292e'
   'SKIP')
 
 prepare() {



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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 20:00:21
  Author: bgyorgy
Revision: 102715

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-17 19:00:16 UTC (rev 102714)
+++ PKGBUILD2013-12-17 19:00:21 UTC (rev 102715)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Ionut Biru 
-# Contributor: Allan McRae 
-# Contributor: FJ 
-# Contributor: Sebastien Piccand 
-
-pkgname=gaupol
-pkgver=0.24.3
-pkgrel=1
-pkgdesc="An editor for text-based subtitles"
-arch=('any')
-url="http://home.gna.org/gaupol";
-license=('GPL')
-depends=('python-gobject' 'iso-codes' 'desktop-file-utils'
- 'hicolor-icon-theme')
-makedepends=('gettext' 'intltool')
-optdepends=('python-pyenchant: spell-checking'
-'python-gtkspellcheck: inline spell-checking'
-'python-chardet: character encoding auto-detection'
-'mplayer: subtitle preview'
-'vlc: subtitle preview')
-install=gaupol.install
-source=(http://download.gna.org/$pkgname/0.24/$pkgname-$pkgver.tar.xz)
-sha256sums=('e42b35d2027991b192af43f00b2e16b3915f3c4a605d12014ce81f1076f31d86')
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  python3 setup.py --without-iso-codes install --root="$pkgdir" -O1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gaupol/repos/community-any/PKGBUILD (from rev 102714, 
gaupol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-17 19:00:21 UTC (rev 102715)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Ionut Biru 
+# Contributor: Allan McRae 
+# Contributor: FJ 
+# Contributor: Sebastien Piccand 
+
+pkgname=gaupol
+pkgver=0.24.3
+pkgrel=2
+pkgdesc="An editor for text-based subtitles"
+arch=('any')
+url="http://home.gna.org/gaupol";
+license=('GPL')
+depends=('python-gobject' 'gtk3' 'gst-plugins-base' 'gst-plugins-good' 
'iso-codes'
+ 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('gettext' 'intltool')
+optdepends=('python-pyenchant: spell-checking'
+'python-gtkspellcheck: inline spell-checking'
+'python-chardet: character encoding auto-detection'
+'mplayer: subtitle preview'
+'vlc: subtitle preview'
+'gst-plugins-bad: extra media codecs'
+'gst-plugins-ugly: extra media codecs'
+'gst-libav: extra media codecs')
+install=gaupol.install
+source=(http://download.gna.org/$pkgname/0.24/$pkgname-$pkgver.tar.xz)
+sha256sums=('e42b35d2027991b192af43f00b2e16b3915f3c4a605d12014ce81f1076f31d86')
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python3 setup.py --without-iso-codes install --root="$pkgdir" -O1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gaupol.install
===
--- gaupol.install  2013-12-17 19:00:16 UTC (rev 102714)
+++ gaupol.install  2013-12-17 19:00:21 UTC (rev 102715)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gaupol/repos/community-any/gaupol.install (from rev 102714, 
gaupol/trunk/gaupol.install)
===
--- gaupol.install  (rev 0)
+++ gaupol.install  2013-12-17 19:00:21 UTC (rev 102715)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 20:00:16
  Author: bgyorgy
Revision: 102714

upgpkg: gaupol 0.24.3-2

Add gtk3 and gstreamer as dependencies (FS#37673)

Modified:
  gaupol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 18:43:56 UTC (rev 102713)
+++ PKGBUILD2013-12-17 19:00:16 UTC (rev 102714)
@@ -7,19 +7,22 @@
 
 pkgname=gaupol
 pkgver=0.24.3
-pkgrel=1
+pkgrel=2
 pkgdesc="An editor for text-based subtitles"
 arch=('any')
 url="http://home.gna.org/gaupol";
 license=('GPL')
-depends=('python-gobject' 'iso-codes' 'desktop-file-utils'
- 'hicolor-icon-theme')
+depends=('python-gobject' 'gtk3' 'gst-plugins-base' 'gst-plugins-good' 
'iso-codes'
+ 'desktop-file-utils' 'hicolor-icon-theme')
 makedepends=('gettext' 'intltool')
 optdepends=('python-pyenchant: spell-checking'
 'python-gtkspellcheck: inline spell-checking'
 'python-chardet: character encoding auto-detection'
 'mplayer: subtitle preview'
-'vlc: subtitle preview')
+'vlc: subtitle preview'
+'gst-plugins-bad: extra media codecs'
+'gst-plugins-ugly: extra media codecs'
+'gst-libav: extra media codecs')
 install=gaupol.install
 source=(http://download.gna.org/$pkgname/0.24/$pkgname-$pkgver.tar.xz)
 sha256sums=('e42b35d2027991b192af43f00b2e16b3915f3c4a605d12014ce81f1076f31d86')



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

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 21:25:52
  Author: eric
Revision: 201664

upgpkg: imagemagick 6.8.7.10-1

Upstream update

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 17:26:36 UTC (rev 201663)
+++ PKGBUILD2013-12-17 20:25:52 UTC (rev 201664)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.7.9
+pkgver=6.8.7.10
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.imagemagick.org/";
@@ -14,7 +14,7 @@
 
#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 \
 
source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 \
 perlmagick.rpath.patch)
-sha1sums=('058b791ecc0447954d2e3b78e6fbec634ec11c78'
+sha1sums=('a74ebac95fb592e98cbe33e25c05978590807c57'
   'SKIP'
   'e143cf9d530fabf3b58023899b5cc544ba93daec')
 



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

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 20:19:57
  Author: eric
Revision: 102719

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-17 19:18:38 UTC (rev 102718)
+++ PKGBUILD2013-12-17 19:19:57 UTC (rev 102719)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=youtube-dl
-pkgver=2013.12.16.7
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/";
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('eb6ac0c7106036c2c2530ae29a610c2354dc'
-  'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
-"${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 102718, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-17 19:19:57 UTC (rev 102719)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=youtube-dl
+pkgver=2013.12.17.2
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/";
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('121e80e8e165931c3accceeca0b24ed001c0292e'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+"${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 20:52:09
  Author: bgyorgy
Revision: 102722

upgpkg: mythtv 1:0.27-6

Add udisks to optdepends, use github source (FS#37898, FS#37471)

Modified:
  mythtv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 19:43:24 UTC (rev 102721)
+++ PKGBUILD2013-12-17 19:52:09 UTC (rev 102722)
@@ -7,7 +7,7 @@
 
 pkgname=mythtv
 pkgver=0.27
-pkgrel=5
+pkgrel=6
 epoch=1
 pkgdesc="A Homebrew PVR project"
 arch=('i686' 'x86_64')
@@ -22,20 +22,20 @@
 'libcec: for consumer electronics control capabilities'
 'libxml2: to read blu-ray metadata'
 'openssl: for AirTunes (RAOP) support'
+'udisks: detect changes to removable media'
 'xmltv: to download tv listings')
 conflicts=('myththemes' 'mythplugins-mythvideo')
 replaces=('myththemes' 'mythplugins-mythvideo')
-backup=()
 install='mythtv.install'
-source=("$pkgname-$pkgver.tar.gz::http://www.$pkgname.org/download/$pkgname/$pkgver";
+source=("$pkgname-$pkgver.tar.gz::https://github.com/MythTV/$pkgname/archive/v$pkgver.tar.gz";
 'mythbackend.service'
 
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('e43fb64e362d1701d57887081c9402a6295376bb105002ac7153c8e8b331a01b'
+sha256sums=('494ebd7ee384e751c05ee0a1b3dcd3618caf72f1e94810381c09c2b5d1c799f0'
 'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
 '8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
 
 prepare() {
-  cd "$srcdir/$pkgname-fixes-$pkgver/$pkgname"
+  cd "$srcdir/$pkgname-$pkgver/$pkgname"
 
   find 'bindings/python' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
   patch -Np2 -i "$srcdir/libcec-2-support.2.patch"
@@ -42,7 +42,7 @@
 }
 
 build() {
-  cd "$srcdir/$pkgname-fixes-$pkgver/$pkgname"
+  cd "$srcdir/$pkgname-$pkgver/$pkgname"
 
   ARCH="${CARCH/_/-}"
   ./configure --prefix=/usr \
@@ -61,7 +61,7 @@
 }
 
 package() {
-  cd "$srcdir/$pkgname-fixes-$pkgver/$pkgname"
+  cd "$srcdir/$pkgname-$pkgver/$pkgname"
   make INSTALL_ROOT="$pkgdir" install
 
   install -D -m644 "$srcdir/mythbackend.service" 
"$pkgdir/usr/lib/systemd/system/mythbackend.service"



[arch-commits] Commit in xf86-video-vmware/repos (6 files)

2013-12-17 Thread Laurent Carlier
Date: Tuesday, December 17, 2013 @ 21:57:08
  Author: lcarlier
Revision: 201667

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

Added:
  xf86-video-vmware/repos/testing-i686/
  xf86-video-vmware/repos/testing-i686/PKGBUILD
(from rev 201666, xf86-video-vmware/trunk/PKGBUILD)
  xf86-video-vmware/repos/testing-i686/xatracker-v2-fixes.patch
(from rev 201666, xf86-video-vmware/trunk/xatracker-v2-fixes.patch)
  xf86-video-vmware/repos/testing-x86_64/
  xf86-video-vmware/repos/testing-x86_64/PKGBUILD
(from rev 201666, xf86-video-vmware/trunk/PKGBUILD)
  xf86-video-vmware/repos/testing-x86_64/xatracker-v2-fixes.patch
(from rev 201666, xf86-video-vmware/trunk/xatracker-v2-fixes.patch)

-+
 testing-i686/PKGBUILD   |   39 
 testing-i686/xatracker-v2-fixes.patch   | 1583 ++
 testing-x86_64/PKGBUILD |   39 
 testing-x86_64/xatracker-v2-fixes.patch | 1583 ++
 4 files changed, 3244 insertions(+)

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


[arch-commits] Commit in xf86-video-vmware/trunk (PKGBUILD xatracker-v2-fixes.patch)

2013-12-17 Thread Laurent Carlier
Date: Tuesday, December 17, 2013 @ 21:56:54
  Author: lcarlier
Revision: 201666

upgpkg: xf86-video-vmware 13.0.1-2

Rebuild against mesa-10.0, add an upstream patch to fix building for 
libxatracker v2

Added:
  xf86-video-vmware/trunk/xatracker-v2-fixes.patch
Modified:
  xf86-video-vmware/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 xatracker-v2-fixes.patch | 1583 +
 2 files changed, 1595 insertions(+), 4 deletions(-)

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


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

2013-12-17 Thread Kyle Keen
Date: Tuesday, December 17, 2013 @ 20:22:29
  Author: kkeen
Revision: 102720

upgpkg: gnuradio 3.7.2.1-1

Modified:
  gnuradio/trunk/PKGBUILD
  gnuradio/trunk/gnuradio.install

--+
 PKGBUILD |   31 +++
 gnuradio.install |   49 -
 2 files changed, 67 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 19:19:57 UTC (rev 102719)
+++ PKGBUILD2013-12-17 19:22:29 UTC (rev 102720)
@@ -1,9 +1,10 @@
 # $Id$
 # Maintainer: Kyle Keen 
 # Contributor: Dominik Heidler 
+# Contributor: Jonatan Sastre 
 pkgname=gnuradio
-pkgver=3.7.2
-pkgrel=2
+pkgver=3.7.2.1
+pkgrel=1
 pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
 arch=('i686' 'x86_64')
 url="http://gnuradio.org";
@@ -14,13 +15,19 @@
 'python2-lxml: gnuradio-companion'
 'pygtk: gnuradio-companion'
 'wxpython: gr-wxgui'
-'qwtplot3d: gr-qtgui'
-'pyqwt: gr-qtgui'
-'doxygen: autogenerated documentation'
-'pkgconfig: ?')
+'pkgconfig: libuhd')
 conflicts=('gnuradio-git')
 install=gnuradio.install
 
+# gr-qtgui todo
+# talk to ronald about adding qwt5 to qwt package
+# bring pyqwt in from AUR
+# update optdepends
+#'qwtplot3d: gr-qtgui'
+#'pyqwt: gr-qtgui'
+# update makedepends
+#'qwtplot3d'
+
 # todo
 # add gr-osmosdr-git to optdepends
 # split the gui components?
@@ -27,14 +34,22 @@
 # build doxygen docs?
 # icons
 
+# comedilib: gr-comedi
+# zeroc-ice: gr-ctrlport
+# doxygen: C++ autogenerated documentation
+# python2-sphinx: Python autogenerated documentation
+
 source=("http://gnuradio.org/releases/$pkgname/$pkgname-$pkgver.tar.gz";
 "21-fcd.rules")
-md5sums=('9a9da8458fd0c1b452487524ed29f3fd'
+md5sums=('f2ea23a30cb02802870fe8cb9bf272c9'
  '465e12c454c6a22ebec9849181af7bdc')
 
 build() {
export PYTHON=python2
cd "$srcdir/$pkgname-$pkgver"
+   sed -i -e "s|GR_PKG_LIBEXEC_DIR|GR_RUNTIME_DIR|" 
grc/freedesktop/CMakeLists.txt
+   sed -i -e "s|/qwt$|/qwt5|" -e "s| qwt | qwt5 |" 
cmake/Modules/FindQwt.cmake
+   sed -i -e "s| sphinx-build$| sphinx-build2|" 
cmake/Modules/FindSphinx.cmake
msg "Starting build."
mkdir -p build
cd build
@@ -43,7 +58,7 @@
-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
-DENABLE_GRC=ON \
-   -DCMAKE_INSTALL_PREFIX=/usr ../
+   -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev ../
make
 }
 

Modified: gnuradio.install
===
--- gnuradio.install2013-12-17 19:19:57 UTC (rev 102719)
+++ gnuradio.install2013-12-17 19:22:29 UTC (rev 102720)
@@ -1,11 +1,50 @@
-post_install() {
+
+# clean up for anyone silly enough to run this as root
+
+# it would be great if pkgname and not just pkgver was passed in the arg list
+
+_pkg='gnuradio'
+_cpython='cpython-33'
+
+post_upgrade() {
+  while read _f; do
+if [[ "${_f:(-3)}" != ".py" ]]; then
+  continue
+fi
+if [[ ! -f "$_f" ]]; then
+  continue
+fi
+if [[ -e "${_f}c" ]]; then
+  rm -f "${_f}c"
+fi
+if [[ -e "${_f}o" ]]; then
+  rm -f "${_f}o"
+fi
+_thisdir="$(dirname "$_f")/__pycache__"
+if [[ ! -d "$_thisdir" ]]; then
+  continue
+fi
+_thisfile="$(basename "$_f")"
+_thisfile="${_thisfile/%.py/.${_cpython}.py}"
+if [[ -e "${_thisdir}/${_thisfile}c" ]]; then
+  rm -f "${_thisdir}/${_thisfile}c"
+fi
+if [[ -e "${_thisdir}/${_thisfile}o" ]]; then
+  rm -f "${_thisdir}/${_thisfile}o"
+fi
+# no good way to test for empty dir
+# would be 25% faster if there were
+rmdir --ignore-fail-on-non-empty "$_thisdir" &> /dev/null
+  done <<<  "$(pacman -Qql $_pkg | grep '\.py$')"
+
   update-desktop-database -q
 }
 
-post_upgrade() {
-  post_install
+post_install() {
+  post_upgrade $1
 }
 
-post_remove() {
-  post_install
+pre_remove() {
+  post_upgrade $1
 }
+



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

2013-12-17 Thread Jelle van der Waa
Date: Tuesday, December 17, 2013 @ 21:48:26
  Author: jelle
Revision: 102731

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

Added:
  calibre/repos/community-i686/PKGBUILD
(from rev 102730, calibre/trunk/PKGBUILD)
  calibre/repos/community-i686/calibre-mount-helper
(from rev 102730, calibre/trunk/calibre-mount-helper)
  calibre/repos/community-i686/calibre.install
(from rev 102730, calibre/trunk/calibre.install)
  calibre/repos/community-i686/desktop_integration.patch
(from rev 102730, calibre/trunk/desktop_integration.patch)
  calibre/repos/community-x86_64/PKGBUILD
(from rev 102730, calibre/trunk/PKGBUILD)
  calibre/repos/community-x86_64/calibre-mount-helper
(from rev 102730, calibre/trunk/calibre-mount-helper)
  calibre/repos/community-x86_64/calibre.install
(from rev 102730, calibre/trunk/calibre.install)
  calibre/repos/community-x86_64/desktop_integration.patch
(from rev 102730, calibre/trunk/desktop_integration.patch)
Deleted:
  calibre/repos/community-i686/PKGBUILD
  calibre/repos/community-i686/calibre-mount-helper
  calibre/repos/community-i686/calibre.install
  calibre/repos/community-i686/desktop_integration.patch
  calibre/repos/community-x86_64/PKGBUILD
  calibre/repos/community-x86_64/calibre-mount-helper
  calibre/repos/community-x86_64/calibre.install
  calibre/repos/community-x86_64/desktop_integration.patch

+
 /PKGBUILD  |  184 
 /calibre-mount-helper  |   56 ++
 /calibre.install   |   24 ++
 /desktop_integration.patch |  238 +++
 community-i686/PKGBUILD|   92 --
 community-i686/calibre-mount-helper|   28 ---
 community-i686/calibre.install |   12 -
 community-i686/desktop_integration.patch   |  117 -
 community-x86_64/PKGBUILD  |   92 --
 community-x86_64/calibre-mount-helper  |   28 ---
 community-x86_64/calibre.install   |   12 -
 community-x86_64/desktop_integration.patch |  117 -
 12 files changed, 502 insertions(+), 498 deletions(-)

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


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

2013-12-17 Thread Jelle van der Waa
Date: Tuesday, December 17, 2013 @ 21:47:06
  Author: jelle
Revision: 102730

upgpkg: calibre 1.15.0-2

fix FS#38164

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 20:32:08 UTC (rev 102729)
+++ PKGBUILD2013-12-17 20:47:06 UTC (rev 102730)
@@ -8,7 +8,7 @@
 
 pkgname=calibre
 pkgver=1.15.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Ebook management application"
 arch=('i686' 'x86_64') 
 url="http://calibre-ebook.com/";
@@ -88,8 +88,5 @@
   python2 -O -m compileall "${pkgdir}/usr/lib/calibre/"
 }
 md5sums=('ee72ec13e501b51f22916ea94d26c610'
- 'b46ad0d81c20a888f10dd3c03571d365'
- '675cd87d41342119827ef706055491e7')
-md5sums=('ee72ec13e501b51f22916ea94d26c610'
  '95ca4eb3afa7c737c8371708a23bdad9'
  '675cd87d41342119827ef706055491e7')



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

2013-12-17 Thread Ike Devolder
Date: Tuesday, December 17, 2013 @ 21:32:08
  Author: idevolder
Revision: 102729

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

Added:
  afpfs-ng/repos/community-staging-i686/
  afpfs-ng/repos/community-staging-i686/01-gcrypt.patch
(from rev 102728, afpfs-ng/trunk/01-gcrypt.patch)
  afpfs-ng/repos/community-staging-i686/02-pointer.patch
(from rev 102728, afpfs-ng/trunk/02-pointer.patch)
  afpfs-ng/repos/community-staging-i686/10-fix-errno.patch
(from rev 102728, afpfs-ng/trunk/10-fix-errno.patch)
  afpfs-ng/repos/community-staging-i686/20-build-error-fixes.patch
(from rev 102728, afpfs-ng/trunk/20-build-error-fixes.patch)
  afpfs-ng/repos/community-staging-i686/21-header-path-fix.patch
(from rev 102728, afpfs-ng/trunk/21-header-path-fix.patch)
  afpfs-ng/repos/community-staging-i686/30-include-fixes.patch
(from rev 102728, afpfs-ng/trunk/30-include-fixes.patch)
  afpfs-ng/repos/community-staging-i686/PKGBUILD
(from rev 102728, afpfs-ng/trunk/PKGBUILD)
  afpfs-ng/repos/community-staging-i686/fix_afpfs-ng_includes.patch
(from rev 102728, afpfs-ng/trunk/fix_afpfs-ng_includes.patch)
  afpfs-ng/repos/community-staging-x86_64/
  afpfs-ng/repos/community-staging-x86_64/01-gcrypt.patch
(from rev 102728, afpfs-ng/trunk/01-gcrypt.patch)
  afpfs-ng/repos/community-staging-x86_64/02-pointer.patch
(from rev 102728, afpfs-ng/trunk/02-pointer.patch)
  afpfs-ng/repos/community-staging-x86_64/10-fix-errno.patch
(from rev 102728, afpfs-ng/trunk/10-fix-errno.patch)
  afpfs-ng/repos/community-staging-x86_64/20-build-error-fixes.patch
(from rev 102728, afpfs-ng/trunk/20-build-error-fixes.patch)
  afpfs-ng/repos/community-staging-x86_64/21-header-path-fix.patch
(from rev 102728, afpfs-ng/trunk/21-header-path-fix.patch)
  afpfs-ng/repos/community-staging-x86_64/30-include-fixes.patch
(from rev 102728, afpfs-ng/trunk/30-include-fixes.patch)
  afpfs-ng/repos/community-staging-x86_64/PKGBUILD
(from rev 102728, afpfs-ng/trunk/PKGBUILD)
  afpfs-ng/repos/community-staging-x86_64/fix_afpfs-ng_includes.patch
(from rev 102728, afpfs-ng/trunk/fix_afpfs-ng_includes.patch)

--+
 community-staging-i686/01-gcrypt.patch   |   26 
 community-staging-i686/02-pointer.patch  |  280 +
 community-staging-i686/10-fix-errno.patch|   23 
 community-staging-i686/20-build-error-fixes.patch|  125 
 community-staging-i686/21-header-path-fix.patch  |   16 
 community-staging-i686/30-include-fixes.patch|   44 
 community-staging-i686/PKGBUILD  |   65 
 community-staging-i686/fix_afpfs-ng_includes.patch   | 3082 +
 community-staging-x86_64/01-gcrypt.patch |   26 
 community-staging-x86_64/02-pointer.patch|  280 +
 community-staging-x86_64/10-fix-errno.patch  |   23 
 community-staging-x86_64/20-build-error-fixes.patch  |  125 
 community-staging-x86_64/21-header-path-fix.patch|   16 
 community-staging-x86_64/30-include-fixes.patch  |   44 
 community-staging-x86_64/PKGBUILD|   65 
 community-staging-x86_64/fix_afpfs-ng_includes.patch | 3082 +
 16 files changed, 7322 insertions(+)

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


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

2013-12-17 Thread Ike Devolder
Date: Tuesday, December 17, 2013 @ 21:31:15
  Author: idevolder
Revision: 102728

afpfs-ng :: 0.8.1-8

libgcrypt 1.6.0 rebuild

Modified:
  afpfs-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 20:22:43 UTC (rev 102727)
+++ PKGBUILD2013-12-17 20:31:15 UTC (rev 102728)
@@ -4,7 +4,7 @@
 
 pkgname=afpfs-ng
 pkgver=0.8.1
-pkgrel=7
+pkgrel=8
 pkgdesc="A client for the Apple Filing Protocol (AFP)"
 url="http://alexthepuffin.googlepages.com/";
 license=('GPL')



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

2013-12-17 Thread Kyle Keen
Date: Tuesday, December 17, 2013 @ 20:43:24
  Author: kkeen
Revision: 102721

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

Added:
  gnuradio/repos/community-i686/21-fcd.rules
(from rev 102720, gnuradio/trunk/21-fcd.rules)
  gnuradio/repos/community-i686/PKGBUILD
(from rev 102720, gnuradio/trunk/PKGBUILD)
  gnuradio/repos/community-i686/gnuradio.install
(from rev 102720, gnuradio/trunk/gnuradio.install)
  gnuradio/repos/community-x86_64/21-fcd.rules
(from rev 102720, gnuradio/trunk/21-fcd.rules)
  gnuradio/repos/community-x86_64/PKGBUILD
(from rev 102720, gnuradio/trunk/PKGBUILD)
  gnuradio/repos/community-x86_64/gnuradio.install
(from rev 102720, gnuradio/trunk/gnuradio.install)
Deleted:
  gnuradio/repos/community-i686/21-fcd.rules
  gnuradio/repos/community-i686/PKGBUILD
  gnuradio/repos/community-i686/gnuradio.install
  gnuradio/repos/community-x86_64/21-fcd.rules
  gnuradio/repos/community-x86_64/PKGBUILD
  gnuradio/repos/community-x86_64/gnuradio.install

---+
 /21-fcd.rules |   18 +++
 /PKGBUILD |  192 
 /gnuradio.install |  100 ++
 community-i686/21-fcd.rules   |9 -
 community-i686/PKGBUILD   |   81 ---
 community-i686/gnuradio.install   |   11 --
 community-x86_64/21-fcd.rules |9 -
 community-x86_64/PKGBUILD |   81 ---
 community-x86_64/gnuradio.install |   11 --
 9 files changed, 310 insertions(+), 202 deletions(-)

Deleted: community-i686/21-fcd.rules
===
--- community-i686/21-fcd.rules 2013-12-17 19:22:29 UTC (rev 102720)
+++ community-i686/21-fcd.rules 2013-12-17 19:43:24 UTC (rev 102721)
@@ -1,9 +0,0 @@
-# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
-
-# HIDAPI/libusb:
-SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
-SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
-
-# HIDAPI/hidraw:
-KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
-KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio/repos/community-i686/21-fcd.rules (from rev 102720, 
gnuradio/trunk/21-fcd.rules)
===
--- community-i686/21-fcd.rules (rev 0)
+++ community-i686/21-fcd.rules 2013-12-17 19:43:24 UTC (rev 102721)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 19:22:29 UTC (rev 102720)
+++ community-i686/PKGBUILD 2013-12-17 19:43:24 UTC (rev 102721)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Dominik Heidler 
-pkgname=gnuradio
-pkgver=3.7.2
-pkgrel=2
-pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
-arch=('i686' 'x86_64')
-url="http://gnuradio.org";
-license=('GPL')
-depends=('fftw' 'python2-numpy' 'cppunit' 'swig' 'gsl' 'blas' 'guile' 
'boost-libs>=1.53' 'libusbx' 'portaudio' 'libuhd')
-makedepends=('boost' 'cmake' 'python2-lxml' 'pygtk' 'wxpython' 
'python2-cheetah')
-optdepends=('python2-cheetah: gnuradio-companion'
-'python2-lxml: gnuradio-companion'
-'pygtk: gnuradio-companion'
-'wxpython: gr-wxgui'
-'qwtplot3d: gr-qtgui'
-'pyqwt: gr-qtgui'
-'doxygen: autogenerated documentation'
-'pkgconfig: ?')
-conflicts=('gnuradio-git')
-install=gnuradio.install
-
-# todo
-# add gr-osmosdr-git to optdepends
-# split the gui components?
-# build doxygen docs?
-# icons
-
-source=("http://gnuradio.org/releases/$pkgname/$pkgname-$pkgver.tar.gz";
-"21-fcd.rules")
-md5sums=('9a9da8458fd0c1b452487524ed29f3fd'
- '465e12c454c6a22ebec9849181af7bdc')
-
-build() {
-   export PYTHON=python2
-   cd "$srcdir/$pkgname-$pkgver"
-   msg "Starting build."
-   mkdir -p build
-   cd build
-   cmake \
-   -DPYTHON_EXECUTABLE=$(which python2) \
-   -DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
-   -DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
-   -DENABLE_GRC=ON \
-   -DCMAKE_INSTALL_PREFIX=/usr ../
-   make
-}
-
-check() {
-   cd 

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

2013-12-17 Thread Jelle van der Waa
Date: Tuesday, December 17, 2013 @ 19:43:56
  Author: jelle
Revision: 102713

archrelease: copy trunk to community-any

Added:
  python-cssutils/repos/community-any/PKGBUILD
(from rev 102712, python-cssutils/trunk/PKGBUILD)
Deleted:
  python-cssutils/repos/community-any/PKGBUILD

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-17 18:43:02 UTC (rev 102712)
+++ PKGBUILD2013-12-17 18:43:56 UTC (rev 102713)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Simon Sapin 
-# Contributor: Michal Marek 
-# Contributor: Rick W. Chena 
-# Contributor: Andrea Fagiani 
-
-pkgbase=python-cssutils
-pkgname=('python2-cssutils' 'python-cssutils')
-pkgver=0.9.10
-pkgrel=5
-pkgdesc="A CSS Cascading Style Sheets library for Python"
-arch=('any')
-url="http://cthedot.de/cssutils/";
-license=('LGPL3')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("http://pypi.python.org/packages/source/c/cssutils/cssutils-${pkgver}.zip";)
-md5sums=('81b5c0294c54479a54548769eaa236f8')
-
-build() {
-  cd "${srcdir}"
-
-  # Create python2 build dir
-  cp -a cssutils-${pkgver} cssutils-py2-${pkgver}
-
-  # Use #!/usr/bin/python3 
-  cd cssutils-${pkgver}/src
-  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
-
-  cd "${srcdir}/cssutils-py2-${pkgver}"
-  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i -e 
's:#!/usr/bin/env python:#!/usr/bin/env python2:g' '{}' \;
-}
-
-package_python2-cssutils() {
-  depends=('python2')
-
-  cd "${srcdir}/cssutils-py2-${pkgver}"
-
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-
-
-  # Don't install tests (FS#27567)
-  rm -rf "${pkgdir}/usr/lib/python2.7/site-packages/tests"
-}
-
-package_python-cssutils() {
-  depends=('python')
-
-  cd "${srcdir}/cssutils-${pkgver}"
-
-  python3 setup.py install --root="${pkgdir}/" --optimize=1
-
-  # Avoid a conflict: only keep the Py2 executables.
-  rm -rf "${pkgdir}/usr/bin"
-
-  # Don't install tests (FS#27567)
-  rm -rf "${pkgdir}/usr/lib/python3.3/site-packages/tests"
-}
-
-check() {
-  cd "${srcdir}/cssutils-${pkgver}"
-  # Currently broken..
-#  python3 setup.py test
-#  python2 setup.py test
-}

Copied: python-cssutils/repos/community-any/PKGBUILD (from rev 102712, 
python-cssutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-17 18:43:56 UTC (rev 102713)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Simon Sapin 
+# Contributor: Michal Marek 
+# Contributor: Rick W. Chena 
+# Contributor: Andrea Fagiani 
+
+pkgbase=python-cssutils
+pkgname=('python2-cssutils' 'python-cssutils')
+pkgver=1.0
+pkgrel=1
+pkgdesc="A CSS Cascading Style Sheets library for Python"
+arch=('any')
+url="http://cthedot.de/cssutils/";
+license=('LGPL3')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=("http://pypi.python.org/packages/source/c/cssutils/cssutils-${pkgver}.zip";)
+md5sums=('0c0b9df329ec1461c732d0f3cba05e93')
+
+build() {
+  cd "${srcdir}"
+
+  # Create python2 build dir
+  cp -a cssutils-${pkgver} cssutils-py2-${pkgver}
+
+  # Use #!/usr/bin/python3 
+  cd cssutils-${pkgver}/src
+  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i 's/env 
python/python3/' '{}' \;
+
+  cd "${srcdir}/cssutils-py2-${pkgver}"
+  find . -maxdepth 2 -mindepth 1 -type f -iname '*.py' -exec sed -i -e 
's:#!/usr/bin/env python:#!/usr/bin/env python2:g' '{}' \;
+}
+
+package_python2-cssutils() {
+  depends=('python2')
+
+  cd "${srcdir}/cssutils-py2-${pkgver}"
+
+  python2 setup.py install --root="${pkgdir}/" --optimize=1
+
+
+  # Don't install tests (FS#27567)
+  rm -rf "${pkgdir}/usr/lib/python2.7/site-packages/tests"
+}
+
+package_python-cssutils() {
+  depends=('python')
+
+  cd "${srcdir}/cssutils-${pkgver}"
+
+  python3 setup.py install --root="${pkgdir}/" --optimize=1
+
+  # Avoid a conflict: only keep the Py2 executables.
+  rm -rf "${pkgdir}/usr/bin"
+
+  # Don't install tests (FS#27567)
+  rm -rf "${pkgdir}/usr/lib/python3.3/site-packages/tests"
+}
+
+check() {
+  cd "${srcdir}/cssutils-${pkgver}"
+  # Currently broken..
+#  python3 setup.py test
+  python2 setup.py test
+}



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

2013-12-17 Thread Eric Bélanger
Date: Tuesday, December 17, 2013 @ 21:27:22
  Author: eric
Revision: 201665

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

Added:
  imagemagick/repos/extra-i686/PKGBUILD
(from rev 201664, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
(from rev 201664, imagemagick/trunk/perlmagick.rpath.patch)
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 201664, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
(from rev 201664, imagemagick/trunk/perlmagick.rpath.patch)
Deleted:
  imagemagick/repos/extra-i686/PKGBUILD
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch

-+
 /PKGBUILD   |  180 ++
 /perlmagick.rpath.patch |   22 
 extra-i686/PKGBUILD |   90 -
 extra-i686/perlmagick.rpath.patch   |   11 --
 extra-x86_64/PKGBUILD   |   90 -
 extra-x86_64/perlmagick.rpath.patch |   11 --
 6 files changed, 202 insertions(+), 202 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-17 20:25:52 UTC (rev 201664)
+++ extra-i686/PKGBUILD 2013-12-17 20:27:22 UTC (rev 201665)
@@ -1,90 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.7.9
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.imagemagick.org/";
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript' \
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'jasper' 'liblqr' \
- 'opencl-headers' 'libcl' 'libwebp')
-#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 \
-source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 \
-perlmagick.rpath.patch)
-sha1sums=('058b791ecc0447954d2e3b78e6fbec634ec11c78'
-  'SKIP'
-  'e143cf9d530fabf3b58023899b5cc544ba93daec')
-
-prepare() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf --force --install
-  patch -p0 -i "${srcdir}/perlmagick.rpath.patch"
-}
-
-build() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
-  [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
---enable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 --with-jp2 
\
---with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr 
--with-rsvg \
---enable-opencl --without-gvc --without-djvu --without-autotrace \
---without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
-  make
-}
-
-check() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make check
-}
-
-package_imagemagick() {
-  pkgdesc="An image viewing/manipulation program"
-  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 
'libcl')
-  optdepends=('imagemagick-doc: for additional information'
-  'ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'jasper: for JPEG-2000 support' 
-  'libpng: for PNG support' 
- 'libwebp: for WEBP support')
-  backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml"
-  "etc/ImageMagick-${pkgver%%.*}/colors.xml"
-  "etc/ImageMagick-${pkgver%%.*}/delegates.xml"
-  "etc/ImageMagick-${pkgver%%.*}/log.xml"
-  "etc/ImageMagick-${pkgver%%.*}/magic.xml"
-  "etc/ImageMagick-${pkgver%%.*}/mime.xml"
-  "etc/ImageMagick-${pkgver%%.*}/policy.xml"
-  "etc/ImageMagick-${pkgver%%.*}/quantization-table.xml"
-  "etc/ImageMagick-${pkgver%%.*}/thresholds.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-dejavu.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-ghostscript.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-windows.xml")
-  options=('!docs' 'libtool' '!emptydirs')
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make -j1 DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick/LICENSE"
-  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick/NOTICE"
-
-#Cleaning
-  rm -f "${pkgdir}"/usr/lib/*.la
-}
-
-package_imagemagick-doc() {
-  pkgdesc="The ImageMagick documentation (utilities manuals and libraries API)"
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR="${pkgdir}" install-data-

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

2013-12-17 Thread Jelle van der Waa
Date: Tuesday, December 17, 2013 @ 19:43:02
  Author: jelle
Revision: 102712

upgpkg: python-cssutils 1.0-1

Modified:
  python-cssutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 18:09:28 UTC (rev 102711)
+++ PKGBUILD2013-12-17 18:43:02 UTC (rev 102712)
@@ -7,8 +7,8 @@
 
 pkgbase=python-cssutils
 pkgname=('python2-cssutils' 'python-cssutils')
-pkgver=0.9.10
-pkgrel=5
+pkgver=1.0
+pkgrel=1
 pkgdesc="A CSS Cascading Style Sheets library for Python"
 arch=('any')
 url="http://cthedot.de/cssutils/";
@@ -15,7 +15,7 @@
 license=('LGPL3')
 makedepends=('python2-setuptools' 'python-setuptools')
 
source=("http://pypi.python.org/packages/source/c/cssutils/cssutils-${pkgver}.zip";)
-md5sums=('81b5c0294c54479a54548769eaa236f8')
+md5sums=('0c0b9df329ec1461c732d0f3cba05e93')
 
 build() {
   cd "${srcdir}"
@@ -61,5 +61,5 @@
   cd "${srcdir}/cssutils-${pkgver}"
   # Currently broken..
 #  python3 setup.py test
-#  python2 setup.py test
+  python2 setup.py test
 }



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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 21:17:05
  Author: bgyorgy
Revision: 102725

upgpkg: mythplugins 1:0.27-4

Use github as source, rebuild for mythtv (FS#37502)

Modified:
  mythplugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 20:15:22 UTC (rev 102724)
+++ PKGBUILD2013-12-17 20:17:05 UTC (rev 102725)
@@ -14,7 +14,7 @@
  'mythplugins-mythweb'
  'mythplugins-mythzoneminder')
 pkgver=0.27
-pkgrel=3
+pkgrel=4
 epoch=1
 arch=('i686' 'x86_64')
 url="http://www.mythtv.org";
@@ -23,28 +23,28 @@
  'libvorbis' 'mesa' 'mesa-libgl' 'mplayer' 'mythtv'
  'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size'
  'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax'
- 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 
'python-imaging'
+ 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 
'python2-pillow'
  'python2-pycurl' 'zlib')
-source=("mythtv-$pkgver.tar.gz::http://www.mythtv.org/download/mythtv/$pkgver";
-
"mythweb-$pkgver.tar.gz::http://www.mythtv.org/download/mythweb/$pkgver";
+source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz";
+
"mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz";
'cdparanoia.patch')
-sha256sums=('c236c879563a5fcccb6ca949ad04be93611745261f7c56282dda2eb32185a78c'
-'c6574a9d3029e00ef9e2fb4eff33be60804d06c71d517ad8cae27bed9b5275d3'
-   '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c')
+sha256sums=('494ebd7ee384e751c05ee0a1b3dcd3618caf72f1e94810381c09c2b5d1c799f0'
+'7e54d6b388e2e8f3e50515c3fe46113f4217e3989242459a0fa73c928dcca494'
+'004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c')
 
 prepare() {
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase"
 
   find . -name '*.py' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
   patch -Np1 -i "$srcdir/cdparanoia.patch"
 
-  cd "$srcdir/mythweb-fixes-$pkgver"
+  cd "$srcdir/mythweb-$pkgver"
 
   sed -re 's@/usr/local.*/usr/share@/usr/share@' -i 'mythweb.php'
 }
 
 build() {
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase"
 
   ./configure --prefix=/usr \
   --enable-all \
@@ -56,9 +56,9 @@
 package_mythplugins-mytharchive() {
   pkgdesc="Create DVDs or archive recorded shows in MythTV"
   depends=('cdrkit' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'mythtv'
-   'python-imaging')
+   'python2-pillow')
 
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mytharchive"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mytharchive"
   make INSTALL_ROOT="$pkgdir" install
 }
 
@@ -66,7 +66,7 @@
   pkgdesc="Mini web browser for MythTV"
   depends=('mythtv')
 
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythbrowser"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythbrowser"
   make INSTALL_ROOT="$pkgdir" install
 }
 
@@ -74,7 +74,7 @@
   pkgdesc="Image gallery plugin for MythTV"
   depends=('libexif' 'mythtv')
 
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythgallery"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythgallery"
   make INSTALL_ROOT="$pkgdir" install
 }
 
@@ -82,7 +82,7 @@
   pkgdesc="Game emulator plugin for MythTV"
   depends=('mythtv')
 
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythgame"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythgame"
   make INSTALL_ROOT="$pkgdir" install
 }
 
@@ -90,7 +90,7 @@
   pkgdesc="Music playing plugin for MythTV"
   depends=('mythtv' 'libcdio-paranoia')
 
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythmusic"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythmusic"
   make INSTALL_ROOT="$pkgdir" install
 }
 
@@ -98,7 +98,7 @@
   pkgdesc="MythNetvision plugin for MythTV"
   depends=('mythtv' 'python2-oauth')
 
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythnetvision"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythnetvision"
   make INSTALL_ROOT="$pkgdir" install
 }
 
@@ -106,7 +106,7 @@
   pkgdesc="News checking plugin for MythTV"
   depends=('mythtv')
 
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythnews"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythnews"
   make INSTALL_ROOT="$pkgdir" install
 }
 
@@ -116,7 +116,7 @@
'perl-xml-sax' 'perl-xml-simple' 'perl-xml-xpath' 'perl-image-size'
'perl-datetime-format-iso8601')
 
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mythweather"
+  cd "$srcdir/mythtv-$pkgver/$pkgbase/mythweather"
   make INSTALL_ROOT="$pkgdir" install
 }
 
@@ -128,7 +128,7 @@
   install='mythplugins-mythweb.install'
 
   mkdir -p "$pkgdir/var/lib/mythtv/mythweb"/{image_cache,php_sessions}
-  cp -R "$srcdir/mythweb-fixes-$pkgver"/* "$pkgdir/var/lib/mythtv/mythweb"
+  cp -R "$srcdir/mythweb-$pkgver"/* "$pkgdir/var/lib/mythtv/m

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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 21:17:14
  Author: bgyorgy
Revision: 102726

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

Added:
  mythplugins/repos/community-i686/PKGBUILD
(from rev 102725, mythplugins/trunk/PKGBUILD)
  mythplugins/repos/community-i686/cdparanoia.patch
(from rev 102725, mythplugins/trunk/cdparanoia.patch)
  mythplugins/repos/community-i686/mythplugins-mythweb.install
(from rev 102725, mythplugins/trunk/mythplugins-mythweb.install)
  mythplugins/repos/community-i686/mythplugins-mythzoneminder.install
(from rev 102725, mythplugins/trunk/mythplugins-mythzoneminder.install)
  mythplugins/repos/community-x86_64/PKGBUILD
(from rev 102725, mythplugins/trunk/PKGBUILD)
  mythplugins/repos/community-x86_64/cdparanoia.patch
(from rev 102725, mythplugins/trunk/cdparanoia.patch)
  mythplugins/repos/community-x86_64/mythplugins-mythweb.install
(from rev 102725, mythplugins/trunk/mythplugins-mythweb.install)
  mythplugins/repos/community-x86_64/mythplugins-mythzoneminder.install
(from rev 102725, mythplugins/trunk/mythplugins-mythzoneminder.install)
Deleted:
  mythplugins/repos/community-i686/PKGBUILD
  mythplugins/repos/community-i686/cdparanoia.patch
  mythplugins/repos/community-i686/mythplugins-mythweb.install
  mythplugins/repos/community-i686/mythplugins-mythzoneminder.install
  mythplugins/repos/community-x86_64/PKGBUILD
  mythplugins/repos/community-x86_64/cdparanoia.patch
  mythplugins/repos/community-x86_64/mythplugins-mythweb.install
  mythplugins/repos/community-x86_64/mythplugins-mythzoneminder.install

-+
 /PKGBUILD   |  286 ++
 /cdparanoia.patch   |  104 ++
 /mythplugins-mythweb.install|8 
 /mythplugins-mythzoneminder.install |6 
 community-i686/PKGBUILD |  143 -
 community-i686/cdparanoia.patch |   52 ---
 community-i686/mythplugins-mythweb.install  |4 
 community-i686/mythplugins-mythzoneminder.install   |3 
 community-x86_64/PKGBUILD   |  143 -
 community-x86_64/cdparanoia.patch   |   52 ---
 community-x86_64/mythplugins-mythweb.install|4 
 community-x86_64/mythplugins-mythzoneminder.install |3 
 12 files changed, 404 insertions(+), 404 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 20:17:05 UTC (rev 102725)
+++ community-i686/PKGBUILD 2013-12-17 20:17:14 UTC (rev 102726)
@@ -1,143 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Conder 
-# Contributor: Giovanni Scafora 
-
-pkgbase=mythplugins
-pkgname=('mythplugins-mytharchive'
- 'mythplugins-mythbrowser'
- 'mythplugins-mythgallery'
- 'mythplugins-mythgame'
- 'mythplugins-mythmusic'
- 'mythplugins-mythnetvision'
- 'mythplugins-mythnews'
- 'mythplugins-mythweather'
- 'mythplugins-mythweb'
- 'mythplugins-mythzoneminder')
-pkgver=0.27
-pkgrel=3
-epoch=1
-arch=('i686' 'x86_64')
-url="http://www.mythtv.org";
-license=('GPL')
-makedepends=('cdrkit' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'flac' 'libexif'
- 'libvorbis' 'mesa' 'mesa-libgl' 'mplayer' 'mythtv'
- 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size'
- 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax'
- 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 
'python-imaging'
- 'python2-pycurl' 'zlib')
-source=("mythtv-$pkgver.tar.gz::http://www.mythtv.org/download/mythtv/$pkgver";
-
"mythweb-$pkgver.tar.gz::http://www.mythtv.org/download/mythweb/$pkgver";
-   'cdparanoia.patch')
-sha256sums=('c236c879563a5fcccb6ca949ad04be93611745261f7c56282dda2eb32185a78c'
-'c6574a9d3029e00ef9e2fb4eff33be60804d06c71d517ad8cae27bed9b5275d3'
-   '004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c')
-
-prepare() {
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase"
-
-  find . -name '*.py' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
-  patch -Np1 -i "$srcdir/cdparanoia.patch"
-
-  cd "$srcdir/mythweb-fixes-$pkgver"
-
-  sed -re 's@/usr/local.*/usr/share@/usr/share@' -i 'mythweb.php'
-}
-
-build() {
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase"
-
-  ./configure --prefix=/usr \
-  --enable-all \
-  --python=python2
-  qmake-qt4 mythplugins.pro
-  make -s
-}
-
-package_mythplugins-mytharchive() {
-  pkgdesc="Create DVDs or archive recorded shows in MythTV"
-  depends=('cdrkit' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'mythtv'
-   'python-imaging')
-
-  cd "$srcdir/mythtv-fixes-$pkgver/$pkgbase/mytharchive"
-  make INSTALL_ROOT="$pkgdir" install
-}
-
-package_mythplugins-mythbrowser() {
-  pkgdesc=

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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 20:52:17
  Author: bgyorgy
Revision: 102723

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

Added:
  mythtv/repos/community-i686/PKGBUILD
(from rev 102722, mythtv/trunk/PKGBUILD)
  mythtv/repos/community-i686/mythbackend.service
(from rev 102722, mythtv/trunk/mythbackend.service)
  mythtv/repos/community-i686/mythtv.install
(from rev 102722, mythtv/trunk/mythtv.install)
  mythtv/repos/community-x86_64/PKGBUILD
(from rev 102722, mythtv/trunk/PKGBUILD)
  mythtv/repos/community-x86_64/mythbackend.service
(from rev 102722, mythtv/trunk/mythbackend.service)
  mythtv/repos/community-x86_64/mythtv.install
(from rev 102722, mythtv/trunk/mythtv.install)
Deleted:
  mythtv/repos/community-i686/PKGBUILD
  mythtv/repos/community-i686/mythbackend.service
  mythtv/repos/community-i686/mythtv.install
  mythtv/repos/community-x86_64/PKGBUILD
  mythtv/repos/community-x86_64/mythbackend.service
  mythtv/repos/community-x86_64/mythtv.install

--+
 /PKGBUILD|  146 +
 /mythbackend.service |   30 ++
 /mythtv.install  |   44 +
 community-i686/PKGBUILD  |   73 
 community-i686/mythbackend.service   |   15 ---
 community-i686/mythtv.install|   22 
 community-x86_64/PKGBUILD|   73 
 community-x86_64/mythbackend.service |   15 ---
 community-x86_64/mythtv.install  |   22 
 9 files changed, 220 insertions(+), 220 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 19:52:09 UTC (rev 102722)
+++ community-i686/PKGBUILD 2013-12-17 19:52:17 UTC (rev 102723)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Conder 
-# Contributor: Giovanni Scafora 
-# Contributor: Juergen Hoetzel 
-# Contributor: 
-# Contributor: dorphell 
-
-pkgname=mythtv
-pkgver=0.27
-pkgrel=5
-epoch=1
-pkgdesc="A Homebrew PVR project"
-arch=('i686' 'x86_64')
-url="http://www.mythtv.org/";
-license=('GPL')
-depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883'
- 'libpulse' 'libva' 'libvpx' 'libxinerama' 'lirc-utils' 
'mariadb-clients'
- 'mysql-python' 'perl-dbd-mysql' 'perl-io-socket-inet6' 'perl-libwww'
- 'perl-net-upnp' 'python2-lxml' 'qtwebkit' 'taglib' 'urlgrabber' 
'x264')
-makedepends=('glew' 'libcec' 'libxml2' 'mesa' 'mesa-libgl' 'openssl' 'yasm')
-optdepends=('glew: for GPU commercial flagging'
-'libcec: for consumer electronics control capabilities'
-'libxml2: to read blu-ray metadata'
-'openssl: for AirTunes (RAOP) support'
-'xmltv: to download tv listings')
-conflicts=('myththemes' 'mythplugins-mythvideo')
-replaces=('myththemes' 'mythplugins-mythvideo')
-backup=()
-install='mythtv.install'
-source=("$pkgname-$pkgver.tar.gz::http://www.$pkgname.org/download/$pkgname/$pkgver";
-'mythbackend.service'
-
'http://code.mythtv.org/trac/raw-attachment/ticket/11338/libcec-2-support.2.patch')
-sha256sums=('e43fb64e362d1701d57887081c9402a6295376bb105002ac7153c8e8b331a01b'
-'ecfde779ded8332cc62c86fac6b432b09cbf5d254135798287ada688af9a1302'
-'8270407c2074b305e0c32151f89c84f6bf980a32665a2da8e4727405fa3911f3')
-
-prepare() {
-  cd "$srcdir/$pkgname-fixes-$pkgver/$pkgname"
-
-  find 'bindings/python' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
-  patch -Np2 -i "$srcdir/libcec-2-support.2.patch"
-}
-
-build() {
-  cd "$srcdir/$pkgname-fixes-$pkgver/$pkgname"
-
-  ARCH="${CARCH/_/-}"
-  ./configure --prefix=/usr \
-  --cpu="$ARCH" \
-  --disable-altivec \
-  --disable-audio-jack \
-  --disable-ccache \
-  --disable-distcc \
-  --enable-libfftw3 \
-  --enable-libmp3lame \
-  --enable-libvpx \
-  --enable-libx264 \
-  --enable-vaapi \
-  --python=python2
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-fixes-$pkgver/$pkgname"
-  make INSTALL_ROOT="$pkgdir" install
-
-  install -D -m644 "$srcdir/mythbackend.service" 
"$pkgdir/usr/lib/systemd/system/mythbackend.service"
-  install -D -m644 'database/mc.sql' "$pkgdir/usr/share/mythtv/mc.sql"
-
-  mkdir -p "$pkgdir/usr/share/mythtv"
-  cp -R 'contrib' "$pkgdir/usr/share/mythtv"
-  mkdir -p "$pkgdir/var/log/mythtv"
-}

Copied: mythtv/repos/community-i686/PKGBUILD (from rev 102722, 
mythtv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 19:52:17 UTC (rev 102723)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Jonathan Conder 
+# Contributor: Giovanni Scafora 
+# Contributor: Juergen Hoetzel 
+# Contributor: 
+# Con

[arch-commits] Commit in calibre/trunk (PKGBUILD desktop_integration.patch)

2013-12-17 Thread Jelle van der Waa
Date: Tuesday, December 17, 2013 @ 21:22:43
  Author: jelle
Revision: 102727

upgpkg: calibre 1.15.0-1

fix FS#38164

Modified:
  calibre/trunk/PKGBUILD
  calibre/trunk/desktop_integration.patch

---+
 PKGBUILD  |3 +++
 desktop_integration.patch |   10 ++
 2 files changed, 9 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 20:17:14 UTC (rev 102726)
+++ PKGBUILD2013-12-17 20:22:43 UTC (rev 102727)
@@ -90,3 +90,6 @@
 md5sums=('ee72ec13e501b51f22916ea94d26c610'
  'b46ad0d81c20a888f10dd3c03571d365'
  '675cd87d41342119827ef706055491e7')
+md5sums=('ee72ec13e501b51f22916ea94d26c610'
+ '95ca4eb3afa7c737c8371708a23bdad9'
+ '675cd87d41342119827ef706055491e7')

Modified: desktop_integration.patch
===
--- desktop_integration.patch   2013-12-17 20:17:14 UTC (rev 102726)
+++ desktop_integration.patch   2013-12-17 20:22:43 UTC (rev 102727)
@@ -1,6 +1,6 @@
 diff -aur calibre/src/calibre/linux.py calibre.new/src/calibre/linux.py
 --- calibre/src/calibre/linux.py   2013-12-13 03:47:23.0 +0100
-+++ calibre.new/src/calibre/linux.py   2013-12-13 11:24:15.165257058 +0100
 calibre.new/src/calibre/linux.py   2013-12-17 20:11:58.319040313 +0100
 @@ -451,18 +451,6 @@
  self.setup_completion()
  if islinux or isbsd:
@@ -29,7 +29,7 @@
  if not os.path.exists(os.path.dirname(f)):
  os.makedirs(os.path.dirname(f))
  if zsh.dest:
-@@ -657,51 +645,32 @@
+@@ -657,71 +645,45 @@
  
  with TemporaryDirectory() as tdir, CurrentDir(tdir), \
  PreserveMIMEDefaults():
@@ -65,7 +65,7 @@
 +render_img('mimetypes/lrf.png', 
os.path.join(dir,'calibre-lrf.png'))
 +render_img('lt.png', os.path.join(dir, 'calibre-gui.png'))
 +render_img('viewer.png', os.path.join(dir, 
'calibre-viewer.png'))
-+render_img('edit.png', os.path.join(dir, 
'calibre-ebook-tweak.png'))
++render_img('tweak.png', os.path.join(dir, 
'calibre-ebook-edit.png'))
  
  mimetypes = set([])
  for x in all_input_formats():
@@ -93,7 +93,9 @@
  f.write(ETWEAK)
  mt = [guess_type('a.' + x.lower())[0] for x in SUPPORTED]
  f.write('MimeType=%s;\n'%';'.join(mt))
-@@ -710,18 +679,11 @@
+ f.close()
+-f = open('calibre-gui.desktop', 'wb')
++f = open(os.path.join(dir, 'calibre-gui.desktop'), 'wb')
  f.write(GUI)
  write_mimetypes(f)
  f.close()



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

2013-12-17 Thread Jelle van der Waa
Date: Tuesday, December 17, 2013 @ 20:17:02
  Author: jelle
Revision: 102717

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

Added:
  python-scipy/repos/community-i686/PKGBUILD
(from rev 102716, python-scipy/trunk/PKGBUILD)
  python-scipy/repos/community-x86_64/PKGBUILD
(from rev 102716, python-scipy/trunk/PKGBUILD)
Deleted:
  python-scipy/repos/community-i686/PKGBUILD
  python-scipy/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 19:15:13 UTC (rev 102716)
+++ community-i686/PKGBUILD 2013-12-17 19:17:02 UTC (rev 102717)
@@ -1,83 +0,0 @@
-# Maintainer: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Ray Rashif 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Bodor Dávid Gábor 
-# Contributor: Andrzej Giniewicz 
-
-pkgname=('python-scipy' 'python2-scipy')
-pkgver=0.13.1
-pkgrel=1
-pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
-arch=('i686' 'x86_64')
-url="http://www.scipy.org/";
-license=('BSD')
-makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 
'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose')
-source=("https://pypi.python.org/packages/source/s/scipy/scipy-${pkgver}.tar.gz";)
-md5sums=('e082fe358a2b39cff235e5af4240f5a5')
-
-build() {
-  # Changing the arithmetic parameter (Thanks to Fabrizio Castellano)
-#  sed -i "s/\#define\ UNK\ 1/\#define\ IBMPC\ 1/" \
-#scipy-${pkgver}/scipy/special/cephes/mconf.h
-  export LDFLAGS="-Wall -shared"
-
-  # 2 builds
-  cp -r scipy-${pkgver} scipy-${pkgver}-py2
-
-  # build for python3
-  cd scipy-${pkgver}
-  python3 setup.py config_fc --fcompiler=gnu95 build
-
-  # build for python2
-  cd ../scipy-${pkgver}-py2
-
-  for file in $(find . -name '*.py' -print); do
-   sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-   sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-  done
-
-  python2 setup.py config_fc --fcompiler=gnu95 build
-}
-
-check() {
-  cd scipy-${pkgver}
-# figure out how to run tests in the source tree easily
-#  python -c "from scipy import test; test('full')"
-#  python setup.py test
-
-  cd ../scipy-${pkgver}-py2
-# figure out how to run tests in the source tree easily
-#  python2 -c "from scipy import test; test('full')"
-}
-
-package_python-scipy() {
-  depends=('python-numpy')
-  provides=('python3-scipy' 'scipy')
-
-  cd scipy-${pkgver}
-  export LDFLAGS="-Wall -shared"
-
-  python3 setup.py config_fc --fcompiler=gnu95 install \
---prefix=/usr --root=${pkgdir} --optimize=1
-
-  install -Dm644 LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
-}
-
-package_python2-scipy() {
-  depends=('python2-numpy')
-  conflicts=('python-scipy<0.9.0')
-
-  cd scipy-${pkgver}-py2
-  export LDFLAGS="-Wall -shared"
-
-  python2 setup.py config_fc --fcompiler=gnu95 install \
---prefix=/usr --root=${pkgdir} --optimize=1
-
-  install -Dm644 LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-scipy/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-scipy/repos/community-i686/PKGBUILD (from rev 102716, 
python-scipy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 19:17:02 UTC (rev 102717)
@@ -0,0 +1,83 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Bodor Dávid Gábor 
+# Contributor: Andrzej Giniewicz 
+
+pkgname=('python-scipy' 'python2-scipy')
+pkgver=0.13.2
+pkgrel=1
+pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
+arch=('i686' 'x86_64')
+url="http://www.scipy.org/";
+license=('BSD')
+makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 
'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose')
+source=("https://pypi.python.org/packages/source/s/scipy/scipy-${pkgver}.tar.gz";)
+
+build() {
+  # Changing the arithmetic parameter (Thanks to Fabrizio Castellano)
+#  sed -i "s/\#define\ UNK\ 1/\#define\ IBMPC\ 1/" \
+#scipy-${pkgver}/scipy/special/cephes/mconf.h
+  export LDFLAGS="-Wall -shared"
+
+  # 2 builds
+  cp -r scipy-${pkgver} scipy-${pkgver}-py2
+
+  # build for python3
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 build
+
+  # build for python2
+  cd ../scipy-${pkgver}-py2
+
+  for file in $(find . -name '*.py' -print); do
+   sed -i 's_^#!.*/usr/bin/p

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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 19:09:28
  Author: bgyorgy
Revision: 102711

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

Added:
  gedit-plugins/repos/community-i686/PKGBUILD
(from rev 102710, gedit-plugins/trunk/PKGBUILD)
  gedit-plugins/repos/community-i686/gedit-plugins.install
(from rev 102710, gedit-plugins/trunk/gedit-plugins.install)
  gedit-plugins/repos/community-x86_64/PKGBUILD
(from rev 102710, gedit-plugins/trunk/PKGBUILD)
  gedit-plugins/repos/community-x86_64/gedit-plugins.install
(from rev 102710, gedit-plugins/trunk/gedit-plugins.install)
Deleted:
  gedit-plugins/repos/community-i686/PKGBUILD
  gedit-plugins/repos/community-i686/gedit-plugins.install
  gedit-plugins/repos/community-x86_64/PKGBUILD
  gedit-plugins/repos/community-x86_64/gedit-plugins.install

+
 /PKGBUILD  |   74 +++
 /gedit-plugins.install |   46 +++
 community-i686/PKGBUILD|   37 ---
 community-i686/gedit-plugins.install   |   23 -
 community-x86_64/PKGBUILD  |   37 ---
 community-x86_64/gedit-plugins.install |   23 -
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 18:09:19 UTC (rev 102710)
+++ community-i686/PKGBUILD 2013-12-17 18:09:28 UTC (rev 102711)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru 
-# Contributor: Alexander Rødseth 
-# Contributor: Hugo Doria 
-# Contributor: Sergej Chodarev 
-# Contributor: zhuqin 
-
-pkgname=gedit-plugins
-pkgver=3.10.0
-pkgrel=1
-pkgdesc="Plugins for gedit"
-arch=(x86_64 i686)
-license=(GPL)
-url="http://live.gnome.org/GeditPlugins";
-depends=(gedit python-dbus)
-makedepends=(intltool gnome-doc-utils vte3 libgit2-glib itstool)
-optdepends=('gucharmap: for charmap plugin'
-'vte3: for embedded terminal'
-'libgit2-glib: for git plugin')
-options=('!emptydirs')
-install=gedit-plugins.install
-source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz";)
-sha256sums=('17cb703a09a0346b6a73d0e34eec87cde9073ffd5e0168741f0830a419ab57cd')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --with-plugins=all \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gedit-plugins/repos/community-i686/PKGBUILD (from rev 102710, 
gedit-plugins/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 18:09:28 UTC (rev 102711)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:  Ionut Biru 
+# Contributor: Alexander Rødseth 
+# Contributor: Hugo Doria 
+# Contributor: Sergej Chodarev 
+# Contributor: zhuqin 
+
+pkgname=gedit-plugins
+pkgver=3.10.1
+pkgrel=1
+pkgdesc="Plugins for gedit"
+arch=(x86_64 i686)
+license=(GPL)
+url="http://live.gnome.org/GeditPlugins";
+depends=(gedit python-dbus)
+makedepends=(intltool gnome-doc-utils vte3 libgit2-glib itstool)
+optdepends=('gucharmap: for charmap plugin'
+'vte3: for embedded terminal'
+'libgit2-glib: for git plugin')
+options=('!emptydirs')
+install=gedit-plugins.install
+source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz";)
+sha256sums=('b30e30d5a0efb9a711c6583748b37c1ed3e45222505e08f920b78c6de0bc4a9d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --with-plugins=all \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gedit-plugins.install
===
--- community-i686/gedit-plugins.install2013-12-17 18:09:19 UTC (rev 
102710)
+++ community-i686/gedit-plugins.install2013-12-17 18:09:28 UTC (rev 
102711)
@@ -1,23 +0,0 @@
-pkgname=gedit-plugins
-
-post_install() {
-  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-pre_upgrade() {
-  if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
-usr/sbin/gconfpkg --uninstall ${pkgname}
-  fi
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-
-post_remove() {
-  post_install $1
-}
-
-
-# vim:set ts=2 sw=2 et:

Copied: gedit-plugins/repos/community-i686/gedit-plugins.install (from rev 
102710, gedit-plugins/trunk/gedit-plugins.install)
===
--- community-i686/gedit-plugins.install(rev 0)
+++ community-i686/gedit-plugins.install2013-12-17 18:09:28 UTC (rev 
102711)
@@ -0,0 +1,23 @@
+pkgname=gedit-plugins
+
+post

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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 19:09:19
  Author: bgyorgy
Revision: 102710

upgpkg: gedit-plugins 3.10.1-1

Update to version 3.10.1

Modified:
  gedit-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 18:05:22 UTC (rev 102709)
+++ PKGBUILD2013-12-17 18:09:19 UTC (rev 102710)
@@ -6,7 +6,7 @@
 # Contributor: zhuqin 
 
 pkgname=gedit-plugins
-pkgver=3.10.0
+pkgver=3.10.1
 pkgrel=1
 pkgdesc="Plugins for gedit"
 arch=(x86_64 i686)
@@ -20,7 +20,7 @@
 options=('!emptydirs')
 install=gedit-plugins.install
 
source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz";)
-sha256sums=('17cb703a09a0346b6a73d0e34eec87cde9073ffd5e0168741f0830a419ab57cd')
+sha256sums=('b30e30d5a0efb9a711c6583748b37c1ed3e45222505e08f920b78c6de0bc4a9d')
 
 build() {
   cd $pkgname-$pkgver



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

2013-12-17 Thread Guillaume Alaux
Date: Tuesday, December 17, 2013 @ 19:05:22
  Author: guillaume
Revision: 102709

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 18:01:17 UTC (rev 102708)
+++ community-i686/PKGBUILD 2013-12-17 18:05:22 UTC (rev 102709)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX 
-# Contributor: Jaroslaw Swierczynski 
-
-pkgname=javasqlite
-pkgver=20120209
-pkgrel=1
-pkgdesc="Java support for SQLite database engine"
-arch=('i686' 'x86_64')
-url="http://www.ch-werner.de/javasqlite/";
-license=('custom:BSD-style')
-depends=('java-runtime' 'sqlite')
-makedepends=('java-environment')
-source=(http://www.ch-werner.de/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a5c4f7760ed002749560068b2bd4bb25')
-sha1sums=('76aebb0a11b9e1f861ebaeab9ea3e5818b753ab3')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -D -m 644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: javasqlite/repos/community-i686/PKGBUILD (from rev 102708, 
javasqlite/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 18:05:22 UTC (rev 102709)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Guillaume ALAUX 
+# Contributor: Jaroslaw Swierczynski 
+
+pkgname=javasqlite
+pkgver=20131124
+pkgrel=1
+pkgdesc="Java support for SQLite database engine"
+arch=('i686' 'x86_64')
+url="http://www.ch-werner.de/javasqlite/";
+license=('custom:BSD-style')
+depends=('java-runtime' 'sqlite')
+makedepends=('java-environment')
+source=(http://www.ch-werner.de/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('681b58556ea3f565b815efb830993d11c798c93dd961f6b6e7477485591585e2')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -D -m 644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-17 18:01:17 UTC (rev 102708)
+++ community-x86_64/PKGBUILD   2013-12-17 18:05:22 UTC (rev 102709)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX 
-# Contributor: Jaroslaw Swierczynski 
-
-pkgname=javasqlite
-pkgver=20120209
-pkgrel=1
-pkgdesc="Java support for SQLite database engine"
-arch=('i686' 'x86_64')
-url="http://www.ch-werner.de/javasqlite/";
-license=('custom:BSD-style')
-depends=('java-runtime' 'sqlite')
-makedepends=('java-environment')
-source=(http://www.ch-werner.de/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a5c4f7760ed002749560068b2bd4bb25')
-sha1sums=('76aebb0a11b9e1f861ebaeab9ea3e5818b753ab3')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -D -m 644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: javasqlite/repos/community-x86_64/PKGBUILD (from rev 102708, 
javasqlite/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-17 18:05:22 UTC (rev 102709)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Guillaume ALAUX 
+# Contributor: Jaroslaw Swierczynski 
+
+pkgname=javasqlite
+pkgver=20131124
+pkgrel=1
+pkgdesc="Java support for SQLite database engine"
+arch=('i686' 'x86_64')
+url="http://www.ch-werner.de/javasqlite/";
+license=('custom:BSD-style')
+depends=('java-runtime' 'sqlite')
+makedepends=('java-environment')
+source=(http://www.ch-werner.de/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('681b58556ea3f565b815efb830993d11c798c93dd961f6b6e7477485591585e2')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -D -m 644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2013-12-17 Thread Guillaume Alaux
Date: Tuesday, December 17, 2013 @ 19:01:17
  Author: guillaume
Revision: 102708

Upstream release

Modified:
  javasqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 17:48:08 UTC (rev 102707)
+++ PKGBUILD2013-12-17 18:01:17 UTC (rev 102708)
@@ -3,7 +3,7 @@
 # Contributor: Jaroslaw Swierczynski 
 
 pkgname=javasqlite
-pkgver=20120209
+pkgver=20131124
 pkgrel=1
 pkgdesc="Java support for SQLite database engine"
 arch=('i686' 'x86_64')
@@ -12,8 +12,7 @@
 depends=('java-runtime' 'sqlite')
 makedepends=('java-environment')
 source=(http://www.ch-werner.de/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a5c4f7760ed002749560068b2bd4bb25')
-sha1sums=('76aebb0a11b9e1f861ebaeab9ea3e5818b753ab3')
+sha256sums=('681b58556ea3f565b815efb830993d11c798c93dd961f6b6e7477485591585e2')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 18:48:08
  Author: bgyorgy
Revision: 102707

Update upstream URL (FS#38001)

Modified:
  giggle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 17:42:48 UTC (rev 102706)
+++ PKGBUILD2013-12-17 17:48:08 UTC (rev 102707)
@@ -7,7 +7,7 @@
 pkgrel=2
 pkgdesc="Git repository viewer"
 arch=(i686 x86_64)
-url="http://live.gnome.org/giggle";
+url="https://wiki.gnome.org/Apps/giggle";
 license=(GPL)
 depends=(git gtksourceview3 vte3 desktop-file-utils hicolor-icon-theme)
 makedepends=(intltool itstool)



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 18:42:48
  Author: spupykin
Revision: 102706

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 17:42:32 UTC (rev 102705)
+++ community-i686/PKGBUILD 2013-12-17 17:42:48 UTC (rev 102706)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Giovanni Scafora 
-# Contributor: simo 
-
-pkgname=xcircuit
-pkgver=3.7.54
-pkgrel=1
-pkgdesc="A program for drawing publishable-quality electrical circuit 
schematic diagrams"
-arch=('i686' 'x86_64')
-url="http://opencircuitdesign.com/xcircuit";
-license=('GPL2')
-depends=('tk' 'libxpm' 'zlib')
-makedepends=('chrpath')
-source=(http://opencircuitdesign.com/xcircuit/archive/$pkgname-$pkgver.tgz)
-md5sums=('25e60837e5db6b4ff71615505493a481')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-tcl=/usr/lib --with-tk=/usr/lib 
--mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  mkdir -p $pkgdir/usr/share/man/man1
-  mv $pkgdir/usr/lib/xcircuit-3.7/man/* $pkgdir/usr/share/man/man1/
-  rm -rf $pkgdir/usr/lib/xcircuit-3.7/man/
-  chrpath -d $pkgdir/usr/lib/xcircuit-3.7/xcircexec
-}

Copied: xcircuit/repos/community-i686/PKGBUILD (from rev 102705, 
xcircuit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 17:42:48 UTC (rev 102706)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Giovanni Scafora 
+# Contributor: simo 
+
+pkgname=xcircuit
+pkgver=3.7.55
+pkgrel=1
+pkgdesc="A program for drawing publishable-quality electrical circuit 
schematic diagrams"
+arch=('i686' 'x86_64')
+url="http://opencircuitdesign.com/xcircuit";
+license=('GPL2')
+depends=('tk' 'libxpm' 'zlib')
+makedepends=('chrpath')
+source=(http://opencircuitdesign.com/xcircuit/archive/$pkgname-$pkgver.tgz)
+md5sums=('938bccd7f8309f897ef6c2e742f5dbac')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --with-tcl=/usr/lib --with-tk=/usr/lib 
--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  mkdir -p $pkgdir/usr/share/man/man1
+  mv $pkgdir/usr/lib/xcircuit-3.7/man/* $pkgdir/usr/share/man/man1/
+  rm -rf $pkgdir/usr/lib/xcircuit-3.7/man/
+  chrpath -d $pkgdir/usr/lib/xcircuit-3.7/xcircexec
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-17 17:42:32 UTC (rev 102705)
+++ community-x86_64/PKGBUILD   2013-12-17 17:42:48 UTC (rev 102706)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Giovanni Scafora 
-# Contributor: simo 
-
-pkgname=xcircuit
-pkgver=3.7.54
-pkgrel=1
-pkgdesc="A program for drawing publishable-quality electrical circuit 
schematic diagrams"
-arch=('i686' 'x86_64')
-url="http://opencircuitdesign.com/xcircuit";
-license=('GPL2')
-depends=('tk' 'libxpm' 'zlib')
-makedepends=('chrpath')
-source=(http://opencircuitdesign.com/xcircuit/archive/$pkgname-$pkgver.tgz)
-md5sums=('25e60837e5db6b4ff71615505493a481')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-tcl=/usr/lib --with-tk=/usr/lib 
--mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  mkdir -p $pkgdir/usr/share/man/man1
-  mv $pkgdir/usr/lib/xcircuit-3.7/man/* $pkgdir/usr/share/man/man1/
-  rm -rf $pkgdir/usr/lib/xcircuit-3.7/man/
-  chrpath -d $pkgdir/usr/lib/xcircuit-3.7/xcircexec
-}

Copied: xcircuit/repos/community-x86_64/PKGBUILD (from rev 102705, 
xcircuit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-17 17:42:48 UTC (rev 102706)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Giovanni Scafora 
+# Contributor: simo 
+
+pkgname=xcircuit
+pkgver=3.7.55
+pkgrel=1
+pkgdesc="A program for drawing publishable-quality electrical circuit 
schematic diagrams"
+arch=('i686' 'x86_64')
+url="http://opencircuitdesign.com/xcircuit";
+license=('GPL2')
+depends=('tk' 'libxpm' 'zlib')
+makedepends

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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 18:42:32
  Author: spupykin
Revision: 102705

upgpkg: xcircuit 3.7.55-1

upd

Modified:
  xcircuit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 17:42:28 UTC (rev 102704)
+++ PKGBUILD2013-12-17 17:42:32 UTC (rev 102705)
@@ -4,7 +4,7 @@
 # Contributor: simo 
 
 pkgname=xcircuit
-pkgver=3.7.54
+pkgver=3.7.55
 pkgrel=1
 pkgdesc="A program for drawing publishable-quality electrical circuit 
schematic diagrams"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('tk' 'libxpm' 'zlib')
 makedepends=('chrpath')
 source=(http://opencircuitdesign.com/xcircuit/archive/$pkgname-$pkgver.tgz)
-md5sums=('25e60837e5db6b4ff71615505493a481')
+md5sums=('938bccd7f8309f897ef6c2e742f5dbac')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 18:42:28
  Author: spupykin
Revision: 102704

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

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

+
 /PKGBUILD  |  166 +++
 /squid.cron|   18 
 /squid.install |   52 
 /squid.pam |8 +
 /squid.service |   26 ++
 community-i686/PKGBUILD|  106 
 community-i686/squid.cron  |9 --
 community-i686/squid.install   |   26 --
 community-i686/squid.pam   |4 
 community-i686/squid.service   |   13 ---
 community-x86_64/PKGBUILD  |  106 
 community-x86_64/squid.cron|9 --
 community-x86_64/squid.install |   26 --
 community-x86_64/squid.pam |4 
 community-x86_64/squid.service |   13 ---
 15 files changed, 270 insertions(+), 316 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 17:42:06 UTC (rev 102703)
+++ community-i686/PKGBUILD 2013-12-17 17:42:28 UTC (rev 102704)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Mark Coolen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=squid
-pkgver=3.3.10
-pkgrel=1
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64' 'i686')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'cron' 'perl' 'libltdl')
-makedepends=('libcap' 'krb5')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-'etc/squid/mime.conf')
-install=$pkgname.install
-source=("http://www.squid-cache.org/Versions/v3/3.3/$pkgname-$pkgver.tar.bz2";
-'squid.pam'
-'squid.cron'
-'squid.service')
-md5sums=('ff69d08818ee008f6f79bb27b9ee'
- '270977cdd9b47ef44c0c427ab9034777'
- 'a71425c4951f2e5b640d19e6a5048531'
- 'ceeb57c69ebb165676219222f109a24e')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # gcc 4.6 doesn't support -fhuge-objects.
-  sed '/^HUGE_OBJECT_FLAG=/ s/"-fhuge-objects"//' -i configure
-
-  # fix cache_dir, cache_dir size, and effective group.
-  sed '/^DEFAULT_SWAP_DIR/ s@/cache@/cache/squid@' -i src/Makefile.in
-  sed '/^#cache_dir/ s/100/256/
-   /^NAME: cache_effective_group/ {n;n;s/none/proxy/}' -i src/cf.data.pre
-
-  sed -i '1,1i#include ' 
helpers/external_acl/file_userip/ext_file_userip_acl.cc
-
-  for i in \
-helpers/basic_auth/DB \
-helpers/log_daemon/DB \
-helpers/negotiate_auth/kerberos \
-helpers/external_acl/SQL_session; \
-  do
-  echo -e "#!/bin/sh\nexit 0" >$i/config.test
-  chmod 0755 $i/config.test
-  done
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---datadir=/usr/share/squid \
---sysconfdir=/etc/squid \
---libexecdir=/usr/lib/squid \
---localstatedir=/var \
---with-logdir=/var/log/squid \
---with-pidfile=/run/squid.pid \
---enable-auth \
---enable-auth-basic \
---enable-auth-ntlm \
---enable-auth-digest \
---enable-auth-negotiate \
---enable-removal-policies="lru,heap" \
---enable-storeio="aufs,ufs,diskd" \
---enable-delay-pools \
---enable-arp-acl \
---enable-ssl \
---enable-snmp \
---enable-linux-netfilter \
---enable-ident-lookups \
---enable-useragent-log \
---enable-cache-digests \
---enable-referer-log \
---enable-arp-acl \
---enable-htcp \
---enable-carp \
---enable-epoll \
---with-large-files \
---enab

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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 18:42:06
  Author: spupykin
Revision: 102703

upgpkg: squid 3.4.1-1

upd

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 17:29:31 UTC (rev 102702)
+++ PKGBUILD2013-12-17 17:42:06 UTC (rev 102703)
@@ -5,7 +5,7 @@
 # Contributor: Kevin Piche 
 
 pkgname=squid
-pkgver=3.3.10
+pkgver=3.4.1
 pkgrel=1
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64' 'i686')
@@ -17,39 +17,15 @@
 backup=('etc/squid/squid.conf'
 'etc/squid/mime.conf')
 install=$pkgname.install
-source=("http://www.squid-cache.org/Versions/v3/3.3/$pkgname-$pkgver.tar.bz2";
+source=("http://www.squid-cache.org/Versions/v3/3.4/$pkgname-$pkgver.tar.bz2";
 'squid.pam'
 'squid.cron'
 'squid.service')
-md5sums=('ff69d08818ee008f6f79bb27b9ee'
+md5sums=('859cf167499d8a5430070dbde78c8eea'
  '270977cdd9b47ef44c0c427ab9034777'
  'a71425c4951f2e5b640d19e6a5048531'
  'ceeb57c69ebb165676219222f109a24e')
 
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # gcc 4.6 doesn't support -fhuge-objects.
-  sed '/^HUGE_OBJECT_FLAG=/ s/"-fhuge-objects"//' -i configure
-
-  # fix cache_dir, cache_dir size, and effective group.
-  sed '/^DEFAULT_SWAP_DIR/ s@/cache@/cache/squid@' -i src/Makefile.in
-  sed '/^#cache_dir/ s/100/256/
-   /^NAME: cache_effective_group/ {n;n;s/none/proxy/}' -i src/cf.data.pre
-
-  sed -i '1,1i#include ' 
helpers/external_acl/file_userip/ext_file_userip_acl.cc
-
-  for i in \
-helpers/basic_auth/DB \
-helpers/log_daemon/DB \
-helpers/negotiate_auth/kerberos \
-helpers/external_acl/SQL_session; \
-  do
-  echo -e "#!/bin/sh\nexit 0" >$i/config.test
-  chmod 0755 $i/config.test
-  done
-}
-
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 
@@ -88,7 +64,8 @@
 --enable-async-io \
 --enable-truncate \
 --enable-icap-client \
---enable-ssl-crtd
+--enable-ssl-crtd \
+--disable-strict-error-checking
   make
 }
 



[arch-commits] Commit in qcad/trunk (PKGBUILD QCad.desktop)

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 18:29:31
  Author: spupykin
Revision: 102702

Modified:
  qcad/trunk/PKGBUILD
  qcad/trunk/QCad.desktop

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 17:21:09 UTC (rev 102701)
+++ PKGBUILD2013-12-17 17:29:31 UTC (rev 102702)
@@ -17,7 +17,7 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz
 QCad.desktop)
 md5sums=('0363ae9a55d1d8067fa166aade51f973'
- '35100eaedbdf6625f6e6a09b177854cd')
+ '84f189dd152e7614a1265659dac6222d')
 
 prepare() {
   cd ${srcdir}/qcad-$pkgver

Modified: QCad.desktop
===
--- QCad.desktop2013-12-17 17:21:09 UTC (rev 102701)
+++ QCad.desktop2013-12-17 17:29:31 UTC (rev 102702)
@@ -6,4 +6,4 @@
 StartupNotify=true
 Terminal=false
 Type=Application
-Categories=Application;Office;
+Categories=Application;Development;Electronics;Engineering;



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

2013-12-17 Thread Sven-Hendrik Haase
Date: Tuesday, December 17, 2013 @ 18:26:36
  Author: svenstaro
Revision: 201663

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-17 17:26:28 UTC (rev 201662)
+++ extra-i686/PKGBUILD 2013-12-17 17:26:36 UTC (rev 201663)
@@ -1,34 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=sdl2
-pkgver=2.0.1
-pkgrel=2
-pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
-arch=('i686' 'x86_64')
-url="http://www.libsdl.org";
-license=('MIT')
-depends=('glibc' 'libxext' 'libxrender' 'libx11' 'libgl')
-makedepends=('alsa-lib' 'mesa' 'libpulse' 'libxrandr' 'libxinerama')
-optdepends=('alsa-lib: ALSA audio driver'
-'libpulse: PulseAudio audio driver')
-source=("http://www.libsdl.org/release/SDL2-${pkgver}.tar.gz";)
-md5sums=('0eb97039488bf463e775295f7b18b227')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  ../SDL2-$pkgver/configure --prefix=/usr \
---enable-sdl-dlopen \
---disable-arts --disable-esd --disable-nas \
---enable-alsa --enable-pulseaudio-shared \
---disable-rpath
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 ../SDL2-$pkgver/COPYING.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: sdl2/repos/extra-i686/PKGBUILD (from rev 201662, sdl2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-17 17:26:36 UTC (rev 201663)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=sdl2
+pkgver=2.0.1
+pkgrel=3
+pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
+arch=('i686' 'x86_64')
+url="http://www.libsdl.org";
+license=('MIT')
+depends=('glibc' 'libxext' 'libxrender' 'libx11' 'libgl' 'libxcursor')
+makedepends=('alsa-lib' 'mesa' 'libpulse' 'libxrandr' 'libxinerama')
+optdepends=('alsa-lib: ALSA audio driver'
+'libpulse: PulseAudio audio driver')
+source=("http://www.libsdl.org/release/SDL2-${pkgver}.tar.gz";)
+md5sums=('0eb97039488bf463e775295f7b18b227')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  ../SDL2-$pkgver/configure --prefix=/usr \
+--enable-sdl-dlopen \
+--disable-arts --disable-esd --disable-nas \
+--enable-alsa --enable-pulseaudio-shared \
+--disable-rpath
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../SDL2-$pkgver/COPYING.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-12-17 17:26:28 UTC (rev 201662)
+++ extra-x86_64/PKGBUILD   2013-12-17 17:26:36 UTC (rev 201663)
@@ -1,34 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=sdl2
-pkgver=2.0.1
-pkgrel=2
-pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
-arch=('i686' 'x86_64')
-url="http://www.libsdl.org";
-license=('MIT')
-depends=('glibc' 'libxext' 'libxrender' 'libx11' 'libgl')
-makedepends=('alsa-lib' 'mesa' 'libpulse' 'libxrandr' 'libxinerama')
-optdepends=('alsa-lib: ALSA audio driver'
-'libpulse: PulseAudio audio driver')
-source=("http://www.libsdl.org/release/SDL2-${pkgver}.tar.gz";)
-md5sums=('0eb97039488bf463e775295f7b18b227')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  ../SDL2-$pkgver/configure --prefix=/usr \
---enable-sdl-dlopen \
---disable-arts --disable-esd --disable-nas \
---enable-alsa --enable-pulseaudio-shared \
---disable-rpath
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 ../SDL2-$pkgver/COPYING.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: sdl2/repos/extra-x86_64/PKGBUILD (from rev 201662, sdl2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-12-17 17:26:36 UTC (rev 201663)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=sdl2
+pkgver=2.0.1
+pkgrel=3
+pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
+arch=('i686' 'x86_64')
+ur

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

2013-12-17 Thread Sven-Hendrik Haase
Date: Tuesday, December 17, 2013 @ 18:26:28
  Author: svenstaro
Revision: 201662

upgpkg: sdl2 2.0.1-3

Fix FS#38049 - Add libxcursor dep

Modified:
  sdl2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 15:31:03 UTC (rev 201661)
+++ PKGBUILD2013-12-17 17:26:28 UTC (rev 201662)
@@ -1,12 +1,12 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=sdl2
 pkgver=2.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard (Version 2)"
 arch=('i686' 'x86_64')
 url="http://www.libsdl.org";
 license=('MIT')
-depends=('glibc' 'libxext' 'libxrender' 'libx11' 'libgl')
+depends=('glibc' 'libxext' 'libxrender' 'libx11' 'libgl' 'libxcursor')
 makedepends=('alsa-lib' 'mesa' 'libpulse' 'libxrandr' 'libxinerama')
 optdepends=('alsa-lib: ALSA audio driver'
 'libpulse: PulseAudio audio driver')



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 18:04:58
  Author: spupykin
Revision: 102699

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

Added:
  dbmail/repos/community-i686/PKGBUILD
(from rev 102698, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-i686/dbmail-7-systemd.diff
(from rev 102698, dbmail/trunk/dbmail-7-systemd.diff)
  dbmail/repos/community-i686/dbmail-imapd.xinetd
(from rev 102698, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
(from rev 102698, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
(from rev 102698, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
(from rev 102698, dbmail/trunk/dbmail-timsieved.xinetd)
  dbmail/repos/community-x86_64/PKGBUILD
(from rev 102698, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-x86_64/dbmail-7-systemd.diff
(from rev 102698, dbmail/trunk/dbmail-7-systemd.diff)
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
(from rev 102698, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
(from rev 102698, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
(from rev 102698, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd
(from rev 102698, dbmail/trunk/dbmail-timsieved.xinetd)
Deleted:
  dbmail/repos/community-i686/PKGBUILD
  dbmail/repos/community-i686/dbmail-7-systemd.diff
  dbmail/repos/community-i686/dbmail-imapd.xinetd
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
  dbmail/repos/community-x86_64/PKGBUILD
  dbmail/repos/community-x86_64/dbmail-7-systemd.diff
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd

--+
 /PKGBUILD|  136 +++
 /dbmail-7-systemd.diff   |  352 +
 /dbmail-imapd.xinetd |   26 ++
 /dbmail-lmtpd.xinetd |   26 ++
 /dbmail-pop3d.xinetd |   26 ++
 /dbmail-timsieved.xinetd |   30 ++
 community-i686/PKGBUILD  |   71 -
 community-i686/dbmail-7-systemd.diff |  176 --
 community-i686/dbmail-imapd.xinetd   |   13 -
 community-i686/dbmail-lmtpd.xinetd   |   13 -
 community-i686/dbmail-pop3d.xinetd   |   13 -
 community-i686/dbmail-timsieved.xinetd   |   15 -
 community-x86_64/PKGBUILD|   71 -
 community-x86_64/dbmail-7-systemd.diff   |  176 --
 community-x86_64/dbmail-imapd.xinetd |   13 -
 community-x86_64/dbmail-lmtpd.xinetd |   13 -
 community-x86_64/dbmail-pop3d.xinetd |   13 -
 community-x86_64/dbmail-timsieved.xinetd |   15 -
 18 files changed, 596 insertions(+), 602 deletions(-)

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


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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 18:04:32
  Author: spupykin
Revision: 102698

upgpkg: dbmail 3.1.8-1

upd

Modified:
  dbmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 16:59:44 UTC (rev 102697)
+++ PKGBUILD2013-12-17 17:04:32 UTC (rev 102698)
@@ -3,8 +3,8 @@
 # Contributor: Sebastian Faltoni 
 
 pkgname=dbmail
-pkgver=3.1.7
-pkgrel=5
+pkgver=3.1.8
+pkgrel=1
 pkgdesc="Fast and scalable sql based mail services"
 arch=('i686' 'x86_64')
 depends=('gmime' 'libzdb' 'mhash' 'libevent')
@@ -20,25 +20,22 @@
etc/xinetd.d/dbmail-pop3d
etc/xinetd.d/dbmail-lmtpd
etc/xinetd.d/dbmail-timsieved)
-#source=("http://www.dbmail.org/download/3.1/dbmail-${pkgver}.tar.gz";
-source=("dbmail-$pkgver::git://git.subdir.eu/paul/dbmail#branch=dbmail_3_1"
+#source=("dbmail-$pkgver::git://git.subdir.eu/paul/dbmail#branch=dbmail_3_1"
+source=("http://www.dbmail.org/download/3.1/dbmail-${pkgver}.tar.gz";
"dbmail-imapd.xinetd"
"dbmail-lmtpd.xinetd"
"dbmail-pop3d.xinetd"
"dbmail-timsieved.xinetd"
-   
"dbmail-6-sieve.patch::http://git.dbmail.eu/paul/dbmail/patch/?id=92b98094a01eda5efe3ba3080e529482d08945a2";
"dbmail-7-systemd.diff")
-md5sums=('SKIP'
+md5sums=('a726bb948ed77557ea63e1ed4745c1e2'
  '890de13361afbdf4fed12d6d7eb53e66'
  '961593658cd596297d03d25eb9c9e98f'
  '4cb764894abd3914802e90602bf90a0c'
  'e78dc86355f9aaf24590bc7c6611162f'
- 'b1063893dd0e74bc0ddee454bb65bf01'
  'a781a4ebe2dd75ed635c9b4a239b38d8')
 
 prepare() {
   cd $srcdir/dbmail-${pkgver}/
-  patch -p1 <$srcdir/dbmail-6-sieve.patch
   patch -Rp1 <$srcdir/dbmail-7-systemd.diff
   aclocal
   automake --add-missing



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 17:59:44
  Author: spupykin
Revision: 102697

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

Added:
  python2-gnutls/repos/community-i686/PKGBUILD
(from rev 102696, python2-gnutls/trunk/PKGBUILD)
  python2-gnutls/repos/community-i686/gnutls3.patch
(from rev 102696, python2-gnutls/trunk/gnutls3.patch)
  python2-gnutls/repos/community-x86_64/PKGBUILD
(from rev 102696, python2-gnutls/trunk/PKGBUILD)
  python2-gnutls/repos/community-x86_64/gnutls3.patch
(from rev 102696, python2-gnutls/trunk/gnutls3.patch)
Deleted:
  python2-gnutls/repos/community-i686/PKGBUILD
  python2-gnutls/repos/community-i686/gnutls3.patch
  python2-gnutls/repos/community-x86_64/PKGBUILD
  python2-gnutls/repos/community-x86_64/gnutls3.patch

+
 /PKGBUILD  |   54 +++
 /gnutls3.patch |  550 +++
 community-i686/PKGBUILD|   27 -
 community-i686/gnutls3.patch   |  271 ---
 community-x86_64/PKGBUILD  |   27 -
 community-x86_64/gnutls3.patch |  271 ---
 6 files changed, 604 insertions(+), 596 deletions(-)

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


[arch-commits] Commit in python2-gnutls/trunk (PKGBUILD gnutls3.patch)

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 17:59:26
  Author: spupykin
Revision: 102696

upgpkg: python2-gnutls 1.2.5-2

upd

Modified:
  python2-gnutls/trunk/PKGBUILD
  python2-gnutls/trunk/gnutls3.patch

---+
 PKGBUILD  |8 
 gnutls3.patch |   22 +-
 2 files changed, 17 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 15:04:41 UTC (rev 102695)
+++ PKGBUILD2013-12-17 16:59:26 UTC (rev 102696)
@@ -5,7 +5,7 @@
 
 pkgname=python2-gnutls
 pkgver=1.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Python wrapper for the GNUTLS library"
 arch=('i686' 'x86_64')
 url="http://cheeseshop.python.org/pypi/python-gnutls";
@@ -14,11 +14,11 @@
 
source=(http://pypi.python.org/packages/source/p/python-gnutls/python-gnutls-${pkgver}.tar.gz
gnutls3.patch)
 md5sums=('a398a75b1f366857cf2628cf4d62dd34'
- '24bc95d9f5e71e9f5e180706cbb09248')
+ 'e3df8fb19cf4cc96b8cf9fa69bd532e0')
 
-build() {
+prepare() {
   cd ${srcdir}/python-gnutls-${pkgver}
-  patch -Np0 <$srcdir/gnutls3.patch
+  patch -Np1 <$srcdir/gnutls3.patch
 }
 
 package() {

Modified: gnutls3.patch
===
--- gnutls3.patch   2013-12-17 15:04:41 UTC (rev 102695)
+++ gnutls3.patch   2013-12-17 16:59:26 UTC (rev 102696)
@@ -1,6 +1,6 @@
-diff -ru gnutls/library/functions.py gnutls.fixed/library/functions.py
 gnutls/library/functions.py2011-08-19 04:48:14.0 +0100
-+++ gnutls.fixed/library/functions.py  2012-08-01 11:56:43.450975419 +0100
+diff -wbBur python-gnutls-1.2.5/gnutls/library/functions.py 
python-gnutls-1.2.5.my/gnutls/library/functions.py
+--- python-gnutls-1.2.5/gnutls/library/functions.py2011-08-19 
07:48:14.0 +0400
 python-gnutls-1.2.5.my/gnutls/library/functions.py 2013-12-17 
19:57:57.393043074 +0400
 @@ -4,7 +4,7 @@
  import sys
  from ctypes import *
@@ -223,9 +223,9 @@
  gnutls_x509_rdn_get = libgnutls.gnutls_x509_rdn_get
  gnutls_x509_rdn_get.argtypes = [POINTER(gnutls_datum_t), c_char_p, 
POINTER(size_t)]
  gnutls_x509_rdn_get.restype = c_int
-diff -ru gnutls/library/__init__.py gnutls.fixed/library/__init__.py
 gnutls/library/__init__.py 2011-11-11 17:23:49.0 +
-+++ gnutls.fixed/library/__init__.py   2012-08-01 11:57:42.284290997 +0100
+diff -wbBur python-gnutls-1.2.5/gnutls/library/__init__.py 
python-gnutls-1.2.5.my/gnutls/library/__init__.py
+--- python-gnutls-1.2.5/gnutls/library/__init__.py 2013-12-12 
20:29:45.0 +0400
 python-gnutls-1.2.5.my/gnutls/library/__init__.py  2013-12-17 
19:58:10.393043366 +0400
 @@ -53,6 +53,9 @@
  else:
  raise RuntimeError('cannot find lib%s on this system' % name)
@@ -236,7 +236,7 @@
  
  def initialize_gcrypt():
  from ctypes import c_void_p
-@@ -104,7 +107,7 @@
+@@ -104,10 +107,10 @@
  libgcrypt = load_library(name='gcrypt', version=11)
  gcry_control = libgcrypt.gcry_control
  else:
@@ -244,8 +244,12 @@
 +gcry_control = do_nothing
  
  gcry_control(GCRYCTL_SET_THREAD_CBS, 
c_void_p(gcrypt_thread_callbacks_ptr))
+-libgnutls.gcry_check_version('1.2.4')# GNUTLS_MIN_LIBGCRYPT_VERSION
++#libgnutls.gcry_check_version('1.2.4')# GNUTLS_MIN_LIBGCRYPT_VERSION
  if system == 'cygwin':
-@@ -117,12 +120,10 @@
+ gcry_control(GCRYCTL_DISABLE_SECMEM, 0)
+ else:
+@@ -118,12 +121,10 @@
  
  
  
@@ -259,7 +263,7 @@
  
  
  from gnutls.library import constants
-@@ -136,9 +137,6 @@
+@@ -137,9 +138,6 @@
  if functions.gnutls_check_version(__need_version__) is None:
  version = functions.gnutls_check_version(None)
  raise RuntimeError("Found GNUTLS library version %s, but at least version 
%s is required" % (version, __need_version__))



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

2013-12-17 Thread Dave Reisner
Date: Tuesday, December 17, 2013 @ 16:30:45
  Author: dreisner
Revision: 201660

upgpkg: curl 7.34.0-1

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:52:43 UTC (rev 201659)
+++ PKGBUILD2013-12-17 15:30:45 UTC (rev 201660)
@@ -6,8 +6,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=curl
-pkgver=7.33.0
-pkgrel=3
+pkgver=7.34.0
+pkgrel=1
 pkgdesc="An URL retrieval utility and library"
 arch=('i686' 'x86_64')
 url="http://curl.haxx.se";
@@ -16,19 +16,11 @@
 provides=('libcurl.so')
 options=('strip' 'debug')
 source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
-
"0001-glob-fix-regression-from-commit-5ca96cb844.patch::https://github.com/bagder/curl/commit/867b52a.patch";
 curlbuild.h)
-md5sums=('c8a4eaac7ce7b0d1bf458d62ccd4ef93'
+md5sums=('d5b7edccbd1793e3549842e01331da20'
  'SKIP'
- 'd6590a94c96c63098a57dd8c7875dfe7'
  '751bd433ede935c8fae727377625a8ae')
 
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  patch -Np1 < "$srcdir"/0001-glob-fix-regression-from-commit-5ca96cb844.patch
-}
-
 build() {
   cd "$pkgname-$pkgver"
 



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

2013-12-17 Thread Dave Reisner
Date: Tuesday, December 17, 2013 @ 16:31:03
  Author: dreisner
Revision: 201661

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

Added:
  curl/repos/testing-i686/
  curl/repos/testing-i686/PKGBUILD
(from rev 201660, curl/trunk/PKGBUILD)
  curl/repos/testing-i686/curlbuild.h
(from rev 201660, curl/trunk/curlbuild.h)
  curl/repos/testing-x86_64/
  curl/repos/testing-x86_64/PKGBUILD
(from rev 201660, curl/trunk/PKGBUILD)
  curl/repos/testing-x86_64/curlbuild.h
(from rev 201660, curl/trunk/curlbuild.h)

+
 testing-i686/PKGBUILD  |   63 +++
 testing-i686/curlbuild.h   |9 ++
 testing-x86_64/PKGBUILD|   63 +++
 testing-x86_64/curlbuild.h |9 ++
 4 files changed, 144 insertions(+)

Copied: curl/repos/testing-i686/PKGBUILD (from rev 201660, curl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-17 15:31:03 UTC (rev 201661)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=curl
+pkgver=7.34.0
+pkgrel=1
+pkgdesc="An URL retrieval utility and library"
+arch=('i686' 'x86_64')
+url="http://curl.haxx.se";
+license=('MIT')
+depends=('ca-certificates' 'libssh2' 'openssl' 'zlib')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
+curlbuild.h)
+md5sums=('d5b7edccbd1793e3549842e01331da20'
+ 'SKIP'
+ '751bd433ede935c8fae727377625a8ae')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --without-libidn \
+  --with-random=/dev/urandom \
+  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  local ptrsize=$(cpp <<<'__SIZEOF_POINTER__' | sed '/^#/d')
+  case $ptrsize in
+8) _curlbuild=curlbuild-64.h ;;
+4) _curlbuild=curlbuild-32.h ;;
+*) error "unknown pointer size for architecture: %s bytes" "$ptrsize"
+  exit 1
+  ;;
+  esac
+
+  # license
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+  # devel
+  mv "$pkgdir/usr/include/curl/curlbuild.h" 
"$pkgdir/usr/include/curl/$_curlbuild"
+  install -m644 "$srcdir/curlbuild.h" "$pkgdir/usr/include/curl/curlbuild.h"
+}

Copied: curl/repos/testing-i686/curlbuild.h (from rev 201660, 
curl/trunk/curlbuild.h)
===
--- testing-i686/curlbuild.h(rev 0)
+++ testing-i686/curlbuild.h2013-12-17 15:31:03 UTC (rev 201661)
@@ -0,0 +1,9 @@
+#include 
+
+#if __WORDSIZE == 32
+#include "curlbuild-32.h"
+#elif __WORDSIZE == 64
+#include "curlbuild-64.h"
+#else
+#error "Unknown word size"
+#endif

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 201660, 
curl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-12-17 15:31:03 UTC (rev 201661)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=curl
+pkgver=7.34.0
+pkgrel=1
+pkgdesc="An URL retrieval utility and library"
+arch=('i686' 'x86_64')
+url="http://curl.haxx.se";
+license=('MIT')
+depends=('ca-certificates' 'libssh2' 'openssl' 'zlib')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
+curlbuild.h)
+md5sums=('d5b7edccbd1793e3549842e01331da20'
+ 'SKIP'
+ '751bd433ede935c8fae727377625a8ae')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --without-libidn \
+  --with-random=/dev/urandom \
+  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  local ptrsize=$(cpp <<<'__SIZEOF_POINTER__' | sed '/^#/d')
+  case $ptrsize in
+8) _curlbuild=curlbuild-64.h ;;
+4) _curlbuild=curlbuild-32.h ;;
+*) error "unknown pointer size for architecture: %s bytes" "$ptrsize"
+  exit 1
+  ;;
+  esac
+
+  # license
+  install -Dm644 COPYING "$pk

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

2013-12-17 Thread Felix Yan
Date: Tuesday, December 17, 2013 @ 16:03:50
  Author: fyan
Revision: 102694

upgpkg: sunpinyin-data 1:2.0.3.20131212-1

Modified:
  sunpinyin-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 14:10:52 UTC (rev 102693)
+++ PKGBUILD2013-12-17 15:03:50 UTC (rev 102694)
@@ -3,9 +3,10 @@
 # Contributor: Thomas Dziedzic < gostrc at gmail >
 
 pkgname=sunpinyin-data
-pkgver=2.0.3.20131214
+pkgver=2.0.3.20131212
+epoch=1
 _lm_sc_ver=20121025
-_dict_ver=20131214
+_dict_ver=20131212
 pkgrel=1
 arch=('any')
 pkgdesc="Statistical language model data from open-gram project for sunpinyin"
@@ -36,3 +37,5 @@
 
 
sha512sums=('3159dd3700382cfa617ba025ce542660580f3057e0dd6bbb92947902495db08e4454c1d09d01a55c90653444513d125dd034e944b060a9d8e009c3633b106d97'
 
'adaf52a27c6afdeb950912845f3fcb7a6799f997d50a2892ceecf76ed13e3644407338d734832c2ce4b09bce11fec4731774f1eb2dd4c30bea5490555915bd5b')
+sha512sums=('3159dd3700382cfa617ba025ce542660580f3057e0dd6bbb92947902495db08e4454c1d09d01a55c90653444513d125dd034e944b060a9d8e009c3633b106d97'
+
'3c90965ee389995a9a2801d489fb3f37ecf124d318a159a94145f6db348d7561dfa408dd148ab4eeae3ea466f83c1132558d4117bc6a01ca97cf89ce85ca9b99')



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

2013-12-17 Thread Felix Yan
Date: Tuesday, December 17, 2013 @ 16:04:41
  Author: fyan
Revision: 102695

archrelease: copy trunk to community-any

Added:
  sunpinyin-data/repos/community-any/PKGBUILD
(from rev 102694, sunpinyin-data/trunk/PKGBUILD)
Deleted:
  sunpinyin-data/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-17 15:03:50 UTC (rev 102694)
+++ PKGBUILD2013-12-17 15:04:41 UTC (rev 102695)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-
-pkgname=sunpinyin-data
-pkgver=2.0.3.20131214
-_lm_sc_ver=20121025
-_dict_ver=20131214
-pkgrel=1
-arch=('any')
-pkgdesc="Statistical language model data from open-gram project for sunpinyin"
-license=('APACHE')
-provides=("sunpinyin-data-le=$pkgver")
-url="http://sunpinyin.googlecode.com";
-makedepends=("sunpinyin")
-source=("http://open-gram.googlecode.com/files/lm_sc.t3g.arpa-${_lm_sc_ver}.tar.bz2";
-"http://open-gram.googlecode.com/files/dict.utf8-${_dict_ver}.tar.bz2";)
-
-prepare() {
-  mkdir raw && cd raw
-  ln -s ../lm_sc.t3g.arpa
-  ln -s ../dict.utf8
-
-  ln -sf "/usr/share/doc/sunpinyin/SLM-inst.mk" ./Makefile
-}
-
-build() {
-  cd raw
-  make
-}
-
-package() {
-  cd raw
-  make DESTDIR="$pkgdir" install
-}
-
-sha512sums=('3159dd3700382cfa617ba025ce542660580f3057e0dd6bbb92947902495db08e4454c1d09d01a55c90653444513d125dd034e944b060a9d8e009c3633b106d97'
-
'adaf52a27c6afdeb950912845f3fcb7a6799f997d50a2892ceecf76ed13e3644407338d734832c2ce4b09bce11fec4731774f1eb2dd4c30bea5490555915bd5b')

Copied: sunpinyin-data/repos/community-any/PKGBUILD (from rev 102694, 
sunpinyin-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-17 15:04:41 UTC (rev 102695)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+
+pkgname=sunpinyin-data
+pkgver=2.0.3.20131212
+epoch=1
+_lm_sc_ver=20121025
+_dict_ver=20131212
+pkgrel=1
+arch=('any')
+pkgdesc="Statistical language model data from open-gram project for sunpinyin"
+license=('APACHE')
+provides=("sunpinyin-data-le=$pkgver")
+url="http://sunpinyin.googlecode.com";
+makedepends=("sunpinyin")
+source=("http://open-gram.googlecode.com/files/lm_sc.t3g.arpa-${_lm_sc_ver}.tar.bz2";
+"http://open-gram.googlecode.com/files/dict.utf8-${_dict_ver}.tar.bz2";)
+
+prepare() {
+  mkdir raw && cd raw
+  ln -s ../lm_sc.t3g.arpa
+  ln -s ../dict.utf8
+
+  ln -sf "/usr/share/doc/sunpinyin/SLM-inst.mk" ./Makefile
+}
+
+build() {
+  cd raw
+  make
+}
+
+package() {
+  cd raw
+  make DESTDIR="$pkgdir" install
+}
+
+sha512sums=('3159dd3700382cfa617ba025ce542660580f3057e0dd6bbb92947902495db08e4454c1d09d01a55c90653444513d125dd034e944b060a9d8e009c3633b106d97'
+
'adaf52a27c6afdeb950912845f3fcb7a6799f997d50a2892ceecf76ed13e3644407338d734832c2ce4b09bce11fec4731774f1eb2dd4c30bea5490555915bd5b')
+sha512sums=('3159dd3700382cfa617ba025ce542660580f3057e0dd6bbb92947902495db08e4454c1d09d01a55c90653444513d125dd034e944b060a9d8e009c3633b106d97'
+
'3c90965ee389995a9a2801d489fb3f37ecf124d318a159a94145f6db348d7561dfa408dd148ab4eeae3ea466f83c1132558d4117bc6a01ca97cf89ce85ca9b99')



[arch-commits] Commit in gpointing-device-settings/repos (6 files)

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 15:10:52
  Author: bgyorgy
Revision: 102693

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

Added:
  gpointing-device-settings/repos/community-i686/PKGBUILD
(from rev 102692, gpointing-device-settings/trunk/PKGBUILD)
  gpointing-device-settings/repos/community-i686/fix-build.patch
(from rev 102692, gpointing-device-settings/trunk/fix-build.patch)
  gpointing-device-settings/repos/community-x86_64/PKGBUILD
(from rev 102692, gpointing-device-settings/trunk/PKGBUILD)
  gpointing-device-settings/repos/community-x86_64/fix-build.patch
(from rev 102692, gpointing-device-settings/trunk/fix-build.patch)
Deleted:
  gpointing-device-settings/repos/community-i686/PKGBUILD
  gpointing-device-settings/repos/community-x86_64/PKGBUILD

--+
 /PKGBUILD|   88 +
 community-i686/PKGBUILD  |   39 
 community-i686/fix-build.patch   |   26 ++
 community-x86_64/PKGBUILD|   39 
 community-x86_64/fix-build.patch |   26 ++
 5 files changed, 140 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 14:10:46 UTC (rev 102692)
+++ community-i686/PKGBUILD 2013-12-17 14:10:52 UTC (rev 102693)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Thomas Mudrunka 
-
-pkgname=gpointing-device-settings
-pkgver=1.5.1
-pkgrel=4
-pkgdesc="GUI tool for setting pointing device such as TrackPoint or Touchpad"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://live.gnome.org/GPointingDeviceSettings";
-depends=('gtk2' 'gconf')
-makedepends=('gnome-settings-daemon' 'intltool')
-source=("http://keihanna.dl.sourceforge.jp/gsynaptics/45812/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('1d1491473df8eabca3c15c997a975d7f')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Enable deprecations
-  sed -i -e '/DISABLE_DEPRECATED/d' -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' 
configure.ac
-
-  # Disable GSD plugin (won't build with GSD 3.8)
-  sed -i 's/ gnome-settings-daemon-plugins//' modules/Makefile.am
-
-  autoreconf -fi
-  ./configure  --prefix=/usr --sysconfdir=/etc \
-   --disable-static --disable-schemas-install \
-   --with-gconf-schema-file-dir=/usr/share/gconf/schemas
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR=${pkgdir} install
-
-  # Remove GConf schema (used by GSD plugin)
-  rm -r "${pkgdir}/usr/share/gconf"
-}

Copied: gpointing-device-settings/repos/community-i686/PKGBUILD (from rev 
102692, gpointing-device-settings/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 14:10:52 UTC (rev 102693)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Thomas Mudrunka 
+
+pkgname=gpointing-device-settings
+pkgver=1.5.1
+pkgrel=5
+pkgdesc="GUI tool for setting pointing device such as TrackPoint or Touchpad"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="https://wiki.gnome.org/Attic/GPointingDeviceSettings";
+depends=('gtk2' 'gconf')
+makedepends=('gnome-settings-daemon' 'intltool')
+source=("http://sourceforge.jp/frs/redir.php?m=iij&f=/gsynaptics/45812/$pkgname-$pkgver.tar.gz";
+"fix-build.patch")
+md5sums=('1d1491473df8eabca3c15c997a975d7f'
+ 'cc42b7bcd69fb43ae5bfbe6e1d540713')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Fix build
+  patch -Np1 -i "${srcdir}/fix-build.patch"
+
+  # Disable GSD plugin (won't build with GSD 3.8)
+  sed -i 's/ gnome-settings-daemon-plugins//' modules/Makefile.am
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  autoreconf -fi
+  ./configure  --prefix=/usr --sysconfdir=/etc \
+   --disable-static --disable-schemas-install \
+   --with-gconf-schema-file-dir=/usr/share/gconf/schemas
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR=${pkgdir} install
+
+  # Remove GConf schema (used by GSD plugin)
+  rm -r "${pkgdir}/usr/share/gconf"
+}

Copied: gpointing-device-settings/repos/community-i686/fix-build.patch (from 
rev 102692, gpointing-device-settings/trunk/fix-build.patch)
===
--- community-i686/fix-build.patch  (rev 0)
+++ community-i686/fix-build.patch  2013-12-17 14:10:52 UTC (rev 102693)
@@ -0,0 +1,26 @@
+diff -Naur gpointing-device-settings-1.5.1.orig/configure.ac 
gpointing-device-settings-1.5.1/configure.ac
+--- gpointing-device-settings-1.5.1.orig/configure.ac  2010-02-05 
00:38:20.0 +0100
 gpointing-device-settings-1.5.1/configure.ac   2013-12-17 
15:00:08.394574115 +0100
+@@ -3,10 +3,9 @@
+ 
+ AC_INIT(gpointing-device-settings

[arch-commits] Commit in gpointing-device-settings/trunk (PKGBUILD fix-build.patch)

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 15:10:46
  Author: bgyorgy
Revision: 102692

upgpkg: gpointing-device-settings 1.5.1-5

Fix build, update upstream URL

Added:
  gpointing-device-settings/trunk/fix-build.patch
Modified:
  gpointing-device-settings/trunk/PKGBUILD

-+
 PKGBUILD|   19 ---
 fix-build.patch |   26 ++
 2 files changed, 38 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:25:28 UTC (rev 102691)
+++ PKGBUILD2013-12-17 14:10:46 UTC (rev 102692)
@@ -4,25 +4,30 @@
 
 pkgname=gpointing-device-settings
 pkgver=1.5.1
-pkgrel=4
+pkgrel=5
 pkgdesc="GUI tool for setting pointing device such as TrackPoint or Touchpad"
 arch=('i686' 'x86_64')
 license=('GPL')
-url="http://live.gnome.org/GPointingDeviceSettings";
+url="https://wiki.gnome.org/Attic/GPointingDeviceSettings";
 depends=('gtk2' 'gconf')
 makedepends=('gnome-settings-daemon' 'intltool')
-source=("http://keihanna.dl.sourceforge.jp/gsynaptics/45812/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('1d1491473df8eabca3c15c997a975d7f')
+source=("http://sourceforge.jp/frs/redir.php?m=iij&f=/gsynaptics/45812/$pkgname-$pkgver.tar.gz";
+"fix-build.patch")
+md5sums=('1d1491473df8eabca3c15c997a975d7f'
+ 'cc42b7bcd69fb43ae5bfbe6e1d540713')
 
-build() {
+prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 
-  # Enable deprecations
-  sed -i -e '/DISABLE_DEPRECATED/d' -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' 
configure.ac
+  # Fix build
+  patch -Np1 -i "${srcdir}/fix-build.patch"
 
   # Disable GSD plugin (won't build with GSD 3.8)
   sed -i 's/ gnome-settings-daemon-plugins//' modules/Makefile.am
+}
 
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
   autoreconf -fi
   ./configure  --prefix=/usr --sysconfdir=/etc \
--disable-static --disable-schemas-install \

Added: fix-build.patch
===
--- fix-build.patch (rev 0)
+++ fix-build.patch 2013-12-17 14:10:46 UTC (rev 102692)
@@ -0,0 +1,26 @@
+diff -Naur gpointing-device-settings-1.5.1.orig/configure.ac 
gpointing-device-settings-1.5.1/configure.ac
+--- gpointing-device-settings-1.5.1.orig/configure.ac  2010-02-05 
00:38:20.0 +0100
 gpointing-device-settings-1.5.1/configure.ac   2013-12-17 
15:00:08.394574115 +0100
+@@ -3,10 +3,9 @@
+ 
+ AC_INIT(gpointing-device-settings, 1.5.1,
+ 
[http://bugzilla.gnome.org/enter_bug.cgi?product=GPointingDeviceSettings])
+-AM_INIT_AUTOMAKE([1.9 tar-pax])
+-AM_INIT_AUTOMAKE([foreign])
++AM_INIT_AUTOMAKE([1.9 tar-pax foreign])
+ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
+-AM_CONFIG_HEADER(config.h)
++AC_CONFIG_HEADERS(config.h)
+ AC_CONFIG_MACRO_DIR([m4])
+ 
+ AM_PROG_LIBTOOL
+@@ -146,9 +145,6 @@
+ 
+ GPDS_CFLAGS="$XINPUT_CFLAGS $GTK_CFLAGS"
+ GPDS_CFLAGS="$GPDS_CFLAGS $GCONF2_CFLAGS"
+-GPDS_CFLAGS="$GPDS_CFLAGS -DGTK_DISABLE_DEPRECATED"
+-GPDS_CFLAGS="$GPDS_CFLAGS -DGDK_DISABLE_DEPRECATED"
+-GPDS_CFLAGS="$GPDS_CFLAGS -DG_DISABLE_DEPRECATED"
+ GPDS_CFLAGS="$GPDS_CFLAGS -DGPDS_MODULEDIR=\\\"\"\$(gpds_moduledir)\"\\\""
+ GPDS_CFLAGS="$GPDS_CFLAGS -DGPDS_DATADIR=\\\"\"\$(gpds_datadir)\"\\\""
+ GPDS_CFLAGS="$GPDS_CFLAGS -DGPDS_UIDIR=\\\"\"\$(gpds_uidir)\"\\\""



[arch-commits] Commit in (664 files)

2013-12-17 Thread Andrea Scarpino
Date: Tuesday, December 17, 2013 @ 14:52:43
  Author: andrea
Revision: 201659

KDE 4.12

Added:
  kactivities/trunk/
  kde-base-artwork/trunk/
  kde-meta/trunk/
  kde-wallpapers/trunk/
  kdeaccessibility-jovie/trunk/
  kdeaccessibility-kaccessible/trunk/
  kdeaccessibility-kmag/trunk/
  kdeaccessibility-kmousetool/trunk/
  kdeaccessibility-kmouth/trunk/
  kdeadmin-kcron/trunk/
  kdeadmin-ksystemlog/trunk/
  kdeadmin-kuser/trunk/
  kdeartwork/trunk/
  kdebase-konsole/trunk/
  kdebase-runtime/trunk/
  kdebase/trunk/
  kdebindings-kimono/trunk/
  kdebindings-korundum/trunk/
  kdebindings-kross/trunk/
  kdebindings-perlkde/trunk/
  kdebindings-perlqt/trunk/
  kdebindings-python/trunk/
  kdebindings-qtruby/trunk/
  kdebindings-qyoto/trunk/
  kdebindings-smokegen/trunk/
  kdebindings-smokekde/trunk/
  kdebindings-smokeqt/trunk/
  kdeedu-analitza/trunk/
  kdeedu-blinken/trunk/
  kdeedu-cantor/trunk/
  kdeedu-kalgebra/trunk/
  kdeedu-kalzium/trunk/
  kdeedu-kanagram/trunk/
  kdeedu-kbruch/trunk/
  kdeedu-kgeography/trunk/
  kdeedu-khangman/trunk/
  kdeedu-kig/trunk/
  kdeedu-kiten/trunk/
  kdeedu-klettres/trunk/
  kdeedu-kmplot/trunk/
  kdeedu-kstars/trunk/
  kdeedu-ktouch/trunk/
  kdeedu-kturtle/trunk/
  kdeedu-kwordquiz/trunk/
  kdeedu-marble/trunk/
  kdeedu-pairs/trunk/
  kdeedu-parley/trunk/
  kdeedu-rocs/trunk/
  kdeedu-step/trunk/
  kdegames-bomber/trunk/
  kdegames-bovo/trunk/
  kdegames-granatier/trunk/
  kdegames-kajongg/trunk/
  kdegames-kapman/trunk/
  kdegames-katomic/trunk/
  kdegames-kblackbox/trunk/
  kdegames-kblocks/trunk/
  kdegames-kbounce/trunk/
  kdegames-kbreakout/trunk/
  kdegames-kdiamond/trunk/
  kdegames-kfourinline/trunk/
  kdegames-kgoldrunner/trunk/
  kdegames-kigo/trunk/
  kdegames-killbots/trunk/
  kdegames-kiriki/trunk/
  kdegames-kjumpingcube/trunk/
  kdegames-klickety/trunk/
  kdegames-klines/trunk/
  kdegames-kmahjongg/trunk/
  kdegames-kmines/trunk/
  kdegames-knavalbattle/trunk/
  kdegames-knetwalk/trunk/
  kdegames-kolf/trunk/
  kdegames-kollision/trunk/
  kdegames-konquest/trunk/
  kdegames-kpatience/trunk/
  kdegames-kreversi/trunk/
  kdegames-kshisen/trunk/
  kdegames-ksirk/trunk/
  kdegames-ksnakeduel/trunk/
  kdegames-kspaceduel/trunk/
  kdegames-ksquares/trunk/
  kdegames-ksudoku/trunk/
  kdegames-ktuberling/trunk/
  kdegames-kubrick/trunk/
  kdegames-lskat/trunk/
  kdegames-palapeli/trunk/
  kdegames-picmi/trunk/
  kdegraphics-gwenview/trunk/
  kdegraphics-kamera/trunk/
  kdegraphics-kcolorchooser/trunk/
  kdegraphics-kgamma/trunk/
  kdegraphics-kolourpaint/trunk/
  kdegraphics-kruler/trunk/
  kdegraphics-ksaneplugin/trunk/
  kdegraphics-ksnapshot/trunk/
  kdegraphics-mobipocket/trunk/
  kdegraphics-okular/trunk/
  kdegraphics-strigi-analyzer/trunk/
  kdegraphics-svgpart/trunk/
  kdegraphics-thumbnailers/trunk/
  kdelibs/trunk/
  kdemultimedia-audiocd-kio/trunk/
  kdemultimedia-dragonplayer/trunk/
  kdemultimedia-ffmpegthumbs/trunk/
  kdemultimedia-juk/trunk/
  kdemultimedia-kmix/trunk/
  kdemultimedia-kscd/trunk/
  kdemultimedia-mplayerthumbs/trunk/
  kdenetwork-filesharing/trunk/
  kdenetwork-kdnssd/trunk/
  kdenetwork-kget/trunk/
  kdenetwork-kopete/trunk/
  kdenetwork-kppp/trunk/
  kdenetwork-krdc/trunk/
  kdenetwork-krfb/trunk/
  kdenetwork-strigi-analyzers/trunk/
  kdepim-runtime/trunk/
  kdepim/trunk/
  kdepimlibs/trunk/
  kdeplasma-addons/trunk/
  kdesdk-cervisia/trunk/
  kdesdk-dev-scripts/trunk/
  kdesdk-dev-utils/trunk/
  kdesdk-dolphin-plugins/trunk/
  kdesdk-kapptemplate/trunk/
  kdesdk-kate/trunk/
  kdesdk-kcachegrind/trunk/
  kdesdk-kioslaves/trunk/
  kdesdk-kompare/trunk/
  kdesdk-lokalize/trunk/
  kdesdk-okteta/trunk/
  kdesdk-poxml/trunk/
  kdesdk-strigi-analyzers/trunk/
  kdesdk-thumbnailers/trunk/
  kdesdk-umbrello/trunk/
  kdetoys-amor/trunk/
  kdetoys-kteatime/trunk/
  kdetoys-ktux/trunk/
  kdeutils-ark/trunk/
  kdeutils-filelight/trunk/
  kdeutils-kcalc/trunk/
  kdeutils-kcharselect/trunk/
  kdeutils-kdf/trunk/
  kdeutils-kfloppy/trunk/
  kdeutils-kgpg/trunk/
  kdeutils-kremotecontrol/trunk/
  kdeutils-ktimer/trunk/
  kdeutils-kwallet/trunk/
  kdeutils-print-manager/trunk/
  kdeutils-superkaramba/trunk/
  kdeutils-sweeper/trunk/
  kdewebdev/trunk/
  libkcddb/trunk/
  libkcompactdisc/trunk/
  libkdcraw/trunk/
  libkdeedu/trunk/
  libkdegames/trunk/
  libkexiv2/trunk/
  libkipi/trunk/
  libkmahjongg/trunk/
  libkomparediff2/trunk/
  libksane/trunk/
  nepomuk-core/trunk/
  nepomuk-widgets/trunk/
  oxygen-icons/trunk/
Modified:
  kactivities/trunk/PKGBUILD
  kde-base-artwork/trunk/PKGBUILD
  kde-l10n/trunk/PKGBUILD
  kde-wallpapers/trunk/PKGBUILD
  kdeaccessibility-jovie/trunk/PKGBUILD
  kdeaccessibility-kaccessible/trunk/PKGBUILD
  kdeaccessibility-kmag/trunk/PKGBUILD
  kdeaccessibility-kmousetool/trunk/PKGBUILD
  kdeaccessibility-kmouth/trunk/PKGBUILD
  kdeadmin-kcron/trunk/PKGBUILD
  kdeadmin-ksystemlog/trunk/PKGBUILD
  kdeadmin-kuser/trunk/PKGBUILD
  kdeartwork/trunk/PKGBUILD
  kdebase-konsole/trunk/PKGBUILD
  kdebase-runtime/trunk/PKGBUILD
  

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

2013-12-17 Thread Maxime Gauduin
Date: Tuesday, December 17, 2013 @ 14:25:17
  Author: alucryd
Revision: 102690

upgpkg: granite 0.2.3-1

Modified:
  granite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:23:35 UTC (rev 102689)
+++ PKGBUILD2013-12-17 13:25:17 UTC (rev 102690)
@@ -3,17 +3,17 @@
 # Contributor: Ner0 
 
 pkgname=granite
-pkgver=0.2.2
-pkgrel=3
-pkgdesc="An extension of GTK+ libraries"
+pkgver=0.2.3
+pkgrel=1
+pkgdesc='An extension of GTK+ libraries'
 arch=('i686' 'x86_64')
-url="https://launchpad.net/granite";
+url='https://launchpad.net/granite'
 license=('LGPL3')
 depends=('gtk3' 'libgee06')
 makedepends=('cmake' 'gobject-introspection' 'vala')
 install="${pkgname}.install"
-source=("https://launchpad.net/${pkgname}/${pkgver%\.?}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
-sha256sums=('341f94cd8c2af60fc072fb8602e1406bccd77189aad76424b172c3ce08c173cc')
+source=("${url}/${pkgver%\.?}/${pkgver}/+download/${pkgname}-${pkgver}.tgz")
+sha256sums=('e0a448e647ee4b6dcff543b1d8695e9cb7e630e38c31ba741cf6b19eddae71f1')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2013-12-17 Thread Maxime Gauduin
Date: Tuesday, December 17, 2013 @ 14:25:28
  Author: alucryd
Revision: 102691

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

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

--+
 /PKGBUILD|   72 +
 /granite.install |   26 +
 community-i686/PKGBUILD  |   36 --
 community-i686/granite.install   |   13 --
 community-x86_64/PKGBUILD|   36 --
 community-x86_64/granite.install |   13 --
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-17 13:25:17 UTC (rev 102690)
+++ community-i686/PKGBUILD 2013-12-17 13:25:28 UTC (rev 102691)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Ner0 
-
-pkgname=granite
-pkgver=0.2.2
-pkgrel=3
-pkgdesc="An extension of GTK+ libraries"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/granite";
-license=('LGPL3')
-depends=('gtk3' 'libgee06')
-makedepends=('cmake' 'gobject-introspection' 'vala')
-install="${pkgname}.install"
-source=("https://launchpad.net/${pkgname}/${pkgver%\.?}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
-sha256sums=('341f94cd8c2af60fc072fb8602e1406bccd77189aad76424b172c3ce08c173cc')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build && cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release'
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: granite/repos/community-i686/PKGBUILD (from rev 102690, 
granite/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-17 13:25:28 UTC (rev 102691)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Ner0 
+
+pkgname=granite
+pkgver=0.2.3
+pkgrel=1
+pkgdesc='An extension of GTK+ libraries'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/granite'
+license=('LGPL3')
+depends=('gtk3' 'libgee06')
+makedepends=('cmake' 'gobject-introspection' 'vala')
+install="${pkgname}.install"
+source=("${url}/${pkgver%\.?}/${pkgver}/+download/${pkgname}-${pkgver}.tgz")
+sha256sums=('e0a448e647ee4b6dcff543b1d8695e9cb7e630e38c31ba741cf6b19eddae71f1')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/granite.install
===
--- community-i686/granite.install  2013-12-17 13:25:17 UTC (rev 102690)
+++ community-i686/granite.install  2013-12-17 13:25:28 UTC (rev 102691)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -ftq usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: granite/repos/community-i686/granite.install (from rev 102690, 
granite/trunk/granite.install)
===
--- community-i686/granite.install  (rev 0)
+++ community-i686/granite.install  2013-12-17 13:25:28 UTC (rev 102691)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-17 13:25:17 UTC (rev 102690)
+++ community-x86_64/PKGBUILD   2013-12-17 13:25:28 UTC (rev 102691)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Ner0 
-
-pkgname=granite
-pkgver=0.2.2
-pkgrel=3
-pkgdesc="An extension of GTK+ libraries"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/granite";
-license=('LGPL3')
-depends=('gtk3' 'libgee06')
-makedepends=('cmake' 'gobject-introspection' 'vala')
-install="${pkgname}.install"
-source=("https://launchpad.net/${pkgname}/${pkgve

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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:23:03
  Author: spupykin
Revision: 102686

upgpkg: netcf 0.2.3-3

upd

Modified:
  netcf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:22:58 UTC (rev 102685)
+++ PKGBUILD2013-12-17 13:23:03 UTC (rev 102686)
@@ -4,7 +4,7 @@
 
 pkgname=netcf
 pkgver=0.2.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A library for configuring network interfaces"
 arch=('i686' 'x86_64')
 license=('LGPL')



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:23:35
  Author: spupykin
Revision: 102689

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

Added:
  rsyslog/repos/community-staging-i686/
  rsyslog/repos/community-staging-i686/PKGBUILD
(from rev 102688, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-staging-i686/rsyslog.conf
(from rev 102688, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-staging-i686/rsyslog.logrotate
(from rev 102688, rsyslog/trunk/rsyslog.logrotate)
  rsyslog/repos/community-staging-x86_64/
  rsyslog/repos/community-staging-x86_64/PKGBUILD
(from rev 102688, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-staging-x86_64/rsyslog.conf
(from rev 102688, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-staging-x86_64/rsyslog.logrotate
(from rev 102688, rsyslog/trunk/rsyslog.logrotate)

+
 community-staging-i686/PKGBUILD|   59 +++
 community-staging-i686/rsyslog.conf|   44 
 community-staging-i686/rsyslog.logrotate   |7 +++
 community-staging-x86_64/PKGBUILD  |   59 +++
 community-staging-x86_64/rsyslog.conf  |   44 
 community-staging-x86_64/rsyslog.logrotate |7 +++
 6 files changed, 220 insertions(+)

Copied: rsyslog/repos/community-staging-i686/PKGBUILD (from rev 102688, 
rsyslog/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:23:35 UTC (rev 102689)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=rsyslog
+pkgver=7.4.7
+pkgrel=2
+pkgdesc="An enhanced multi-threaded syslogd with a focus on security and 
reliability"
+url="http://www.rsyslog.com/";
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd')
+makedepends=('postgresql-libs>=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls'
+'python-docutils')
+optdepends=('postgresql-libs: PostgreSQL Database Support'
+   'libmariadbclient: MySQL Database Support'
+   'net-snmp'
+   'gnutls')
+backup=('etc/rsyslog.conf'
+   'etc/logrotate.d/rsyslog'
+   'etc/conf.d/rsyslog')
+options=('strip' 'zipman')
+source=("http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz";
+   'rsyslog.logrotate'
+   'rsyslog.conf')
+md5sums=('c96850bd9d07780ea7398ac86df385ae'
+ '0d990373f5c70ddee989296007b4df5b'
+ 'd61dd424e660eb16401121eed20d98bc')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --enable-mysql \
+  --enable-pgsql \
+  --enable-mail \
+  --enable-imfile \
+  --enable-snmp \
+  --enable-gnutls \
+  --enable-inet \
+  --enable-imjournal \
+  --enable-omjournal \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system
+  echo "rsyslogd_LDADD += \$(LIBESTR_LIBS) -lm" >>tools/Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make install DESTDIR=${pkgdir}
+  # Install Daemons and Configuration Files
+  install -D -m644 doc/${pkgname}-example.conf 
${pkgdir}/usr/share/doc/$pkgname/${pkgname}.conf.example
+  install -D -m644 $srcdir/${pkgname}.conf ${pkgdir}/etc/${pkgname}.conf
+  install -D -m644 $srcdir/${pkgname}.logrotate 
${pkgdir}/etc/logrotate.d/${pkgname}
+
+  # fix location of systemctl and remove start precondition
+  sed -i "$pkgdir/usr/lib/systemd/system/rsyslog.service" \
+-e 's@/bin/systemctl@/usr&@' \
+-e '/^ExecStartPre/d'
+}

Copied: rsyslog/repos/community-staging-i686/rsyslog.conf (from rev 102688, 
rsyslog/trunk/rsyslog.conf)
===
--- community-staging-i686/rsyslog.conf (rev 0)
+++ community-staging-i686/rsyslog.conf 2013-12-17 13:23:35 UTC (rev 102689)
@@ -0,0 +1,44 @@
+# Minimal config
+
+$ModLoad imuxsock # provides support for local system logging
+$ModLoad imklog   # provides kernel logging support
+$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
+$FileOwner root
+$FileGroup root
+$FileCreateMode 0640
+$DirCreateMode 0755
+$Umask 0022
+$WorkDirectory /var/spool/rsyslog
+$IncludeConfig /etc/rsyslog.d/*.conf
+
+auth,authpriv.*/var/log/auth.log
+*.*;auth,authpriv.none -/var/log/syslog
+#cron.*/var/log/cron.log
+daemon.*   -/var/log/daemon.log
+kern.* -/var/log/kern.log
+lpr.*  -/var/log/lpr.log
+mail.* -/var/log/mail.log
+user.* -/var/log/user.log
+
+mail.info  -/var/log/mail.info
+mail.warn 

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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:22:38
  Author: spupykin
Revision: 102683

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

Added:
  kvpnc/repos/community-staging-i686/
  kvpnc/repos/community-staging-i686/PKGBUILD
(from rev 102682, kvpnc/trunk/PKGBUILD)
  kvpnc/repos/community-staging-i686/kvpnc.install
(from rev 102682, kvpnc/trunk/kvpnc.install)
  kvpnc/repos/community-staging-i686/vpnc-paths.patch
(from rev 102682, kvpnc/trunk/vpnc-paths.patch)
  kvpnc/repos/community-staging-x86_64/
  kvpnc/repos/community-staging-x86_64/PKGBUILD
(from rev 102682, kvpnc/trunk/PKGBUILD)
  kvpnc/repos/community-staging-x86_64/kvpnc.install
(from rev 102682, kvpnc/trunk/kvpnc.install)
  kvpnc/repos/community-staging-x86_64/vpnc-paths.patch
(from rev 102682, kvpnc/trunk/vpnc-paths.patch)

---+
 community-staging-i686/PKGBUILD   |   44 +++
 community-staging-i686/kvpnc.install  |   52 
 community-staging-i686/vpnc-paths.patch   |   20 ++
 community-staging-x86_64/PKGBUILD |   44 +++
 community-staging-x86_64/kvpnc.install|   52 
 community-staging-x86_64/vpnc-paths.patch |   20 ++
 6 files changed, 232 insertions(+)

Copied: kvpnc/repos/community-staging-i686/PKGBUILD (from rev 102682, 
kvpnc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:22:38 UTC (rev 102683)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Danial Olsen 
+
+pkgname=kvpnc
+pkgver=0.9.6a
+pkgrel=5
+pkgdesc="A KDE Desktop Environment frontend for various vpn clients"
+arch=(i686 x86_64)
+url="http://home.gna.org/kvpnc/";
+license=("GPL")
+depends=('kdelibs' 'hicolor-icon-theme')
+makedepends=('cmake' 'automoc4' 'optipng')
+install=kvpnc.install
+source=(http://download.gna.org/$pkgname/$pkgname-${pkgver}-kde4.tar.bz2
+"vpnc-paths.patch")
+md5sums=('bf8b7224284f5d3f8ad5235c599fe9e7'
+ '4bf6a10c7be84656723183b876cbaf9d')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver-kde4"
+
+  patch -Np0 <"$srcdir/vpnc-paths.patch"
+
+  sed -i '1,1i#include ' src/kvpnc.cpp
+}
+
+build() {
+  cd $srcdir
+
+  export LDFLAGS=-lX11
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver}-kde4 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+  find -name '*.png' -exec optipng -quiet -force -fix {} \;
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kvpnc/repos/community-staging-i686/kvpnc.install (from rev 102682, 
kvpnc/trunk/kvpnc.install)
===
--- community-staging-i686/kvpnc.install(rev 0)
+++ community-staging-i686/kvpnc.install2013-12-17 13:22:38 UTC (rev 
102683)
@@ -0,0 +1,52 @@
+# arg 1: the new package version
+post_install() {
+  echo "
+You will need a vpn client, these are supported:
+---
+- vpnc >= 0.2-rm+zomb-pre9  Cisco VPN
+- FreeS/WAN (OpenS/WAN too) >= 2.x  IPSec VPN Linux 2.4/2.6
+- racoon (ipsec-tools) > = 1.x  IPSec VPN Linux 2.6
+- pptpclient  PPTP VPN
+- OpenVPN  VPN based on SSL
+
+
+==
+Howto setup KVpnc for use without root password - sudo
+==
+
+1. install sudo
+
+2. edit /etc/sudoers
+
+#  Cmnd alias specification
+Cmnd_Alias KVPNC = /usr/bin/kvpnc
+
+# User privilege specification
+ALL ALL=NOPASSWD:KVPNC
+
+3. edit desktop link (/usr/share/applications/kde4/kvpnc.desktop)
+
+replace the folling lines:
+
+Exec=kvpnc
+X-KDE-SubstituteUID=true
+
+with:
+
+Exec=sudo kvpnc
+X-KDE-SubstituteUID=false
+"
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}
+
+# arg 1: the old package version
+post_remove() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource 
forceupdate || true
+}
+

Copied: kvpnc/repos/community-staging-i686/vpnc-paths.patch (from rev 102682, 
kvpnc/trunk/vpnc-paths.patch)
===
--- community-staging-i686/vpnc-paths.patch (rev 0)
+++ community-staging-i686/vpnc-paths.patch 2013-12-17 13:22:38 UTC (rev 
102683)
@@ -0,0 +1,20 @@
+--- src/kvpncconfig.cpp.orig   2013-05-19 14:37:11.867517045 -0400
 src/kvpncconfig.cpp2013-05-19 14:37:31.702107829 -0400
+@@ -865,7 +865,7 @@
+ 

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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:22:43
  Author: spupykin
Revision: 102684

upgpkg: mailutils 2.2-10

upd

Modified:
  mailutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:22:38 UTC (rev 102683)
+++ PKGBUILD2013-12-17 13:22:43 UTC (rev 102684)
@@ -4,7 +4,7 @@
 
 pkgname=mailutils
 pkgver=2.2
-pkgrel=9
+pkgrel=10
 pkgdesc="MUA command line tool (mailx)"
 arch=(i686 x86_64)
 url="http://www.gnu.org/software/mailutils/";



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:23:20
  Author: spupykin
Revision: 102688

upgpkg: rsyslog 7.4.7-2

upd

Modified:
  rsyslog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:23:16 UTC (rev 102687)
+++ PKGBUILD2013-12-17 13:23:20 UTC (rev 102688)
@@ -3,7 +3,7 @@
 
 pkgname=rsyslog
 pkgver=7.4.7
-pkgrel=1
+pkgrel=2
 pkgdesc="An enhanced multi-threaded syslogd with a focus on security and 
reliability"
 url="http://www.rsyslog.com/";
 arch=('i686' 'x86_64')



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:23:16
  Author: spupykin
Revision: 102687

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

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

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

Copied: netcf/repos/community-staging-i686/PKGBUILD (from rev 102686, 
netcf/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:23:16 UTC (rev 102687)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Aurélien Wailly 
+
+pkgname=netcf
+pkgver=0.2.3
+pkgrel=3
+pkgdesc="A library for configuring network interfaces"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="https://fedorahosted.org/netcf/";
+depends=('augeas>=0.7.4' 'netctl' 'libxslt' 'libxml2' 'libnl')
+makedepends=('gcc')
+source=("https://fedorahosted.org/released/netcf/$pkgname-$pkgver.tar.gz";)
+md5sums=('bee292470b06201b59af0fad473a1b65')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  aclocal
+  automake --add-missing || true
+  autoreconf
+  ./configure --prefix=/usr \
+   --disable-static \
+   --with-init-script=none \
+   --with-driver=redhat
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR=${pkgdir} install
+  rm -rf $pkgdir/etc/rc.d
+}

Copied: netcf/repos/community-staging-x86_64/PKGBUILD (from rev 102686, 
netcf/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-12-17 13:23:16 UTC (rev 102687)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Aurélien Wailly 
+
+pkgname=netcf
+pkgver=0.2.3
+pkgrel=3
+pkgdesc="A library for configuring network interfaces"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="https://fedorahosted.org/netcf/";
+depends=('augeas>=0.7.4' 'netctl' 'libxslt' 'libxml2' 'libnl')
+makedepends=('gcc')
+source=("https://fedorahosted.org/released/netcf/$pkgname-$pkgver.tar.gz";)
+md5sums=('bee292470b06201b59af0fad473a1b65')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  aclocal
+  automake --add-missing || true
+  autoreconf
+  ./configure --prefix=/usr \
+   --disable-static \
+   --with-init-script=none \
+   --with-driver=redhat
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR=${pkgdir} install
+  rm -rf $pkgdir/etc/rc.d
+}



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:22:00
  Author: spupykin
Revision: 102679

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

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

+
 community-staging-i686/PKGBUILD|   30 +++
 community-staging-i686/gogglesmm.install   |   11 +
 community-staging-x86_64/PKGBUILD  |   30 +++
 community-staging-x86_64/gogglesmm.install |   11 +
 4 files changed, 82 insertions(+)

Copied: gogglesmm/repos/community-staging-i686/PKGBUILD (from rev 102678, 
gogglesmm/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:22:00 UTC (rev 102679)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sander Jansen 
+
+pkgname=gogglesmm
+pkgver=0.12.7
+pkgrel=3
+pkgdesc="Music Manager and Player"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/gogglesmm/";
+license=('GPL3')
+install=gogglesmm.install
+depends=('fox>=1.6.0' 'xine-lib>=1.0' 'sqlite>=3.4.0' 'taglib' 'dbus-core' 
'curl' 'expat' 'libgcrypt')
+makedepends=('pkgconfig' 'glproto' 'dri2proto' 'glu' 'mesa')
+replaces=('musicmanager')
+conflicts=('musicmanager')
+source=(http://gogglesmm.googlecode.com/files/gogglesmm-$pkgver.tar.bz2)
+md5sums=('9ca337ab496b57d79e66d0541c7da970')
+
+build() {
+  cd $srcdir/gogglesmm-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/gogglesmm-$pkgver
+  mkdir -p $pkgdir/usr/bin
+  make DESTDIR=$pkgdir install
+}

Copied: gogglesmm/repos/community-staging-i686/gogglesmm.install (from rev 
102678, gogglesmm/trunk/gogglesmm.install)
===
--- community-staging-i686/gogglesmm.install(rev 0)
+++ community-staging-i686/gogglesmm.install2013-12-17 13:22:00 UTC (rev 
102679)
@@ -0,0 +1,11 @@
+post_install() {
+  which gtk-update-icon-cache >/dev/null && gtk-update-icon-cache 
/usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gogglesmm/repos/community-staging-x86_64/PKGBUILD (from rev 102678, 
gogglesmm/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-12-17 13:22:00 UTC (rev 102679)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sander Jansen 
+
+pkgname=gogglesmm
+pkgver=0.12.7
+pkgrel=3
+pkgdesc="Music Manager and Player"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/gogglesmm/";
+license=('GPL3')
+install=gogglesmm.install
+depends=('fox>=1.6.0' 'xine-lib>=1.0' 'sqlite>=3.4.0' 'taglib' 'dbus-core' 
'curl' 'expat' 'libgcrypt')
+makedepends=('pkgconfig' 'glproto' 'dri2proto' 'glu' 'mesa')
+replaces=('musicmanager')
+conflicts=('musicmanager')
+source=(http://gogglesmm.googlecode.com/files/gogglesmm-$pkgver.tar.bz2)
+md5sums=('9ca337ab496b57d79e66d0541c7da970')
+
+build() {
+  cd $srcdir/gogglesmm-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/gogglesmm-$pkgver
+  mkdir -p $pkgdir/usr/bin
+  make DESTDIR=$pkgdir install
+}

Copied: gogglesmm/repos/community-staging-x86_64/gogglesmm.install (from rev 
102678, gogglesmm/trunk/gogglesmm.install)
===
--- community-staging-x86_64/gogglesmm.install  (rev 0)
+++ community-staging-x86_64/gogglesmm.install  2013-12-17 13:22:00 UTC (rev 
102679)
@@ -0,0 +1,11 @@
+post_install() {
+  which gtk-update-icon-cache >/dev/null && gtk-update-icon-cache 
/usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:22:58
  Author: spupykin
Revision: 102685

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

Added:
  mailutils/repos/community-staging-i686/
  mailutils/repos/community-staging-i686/PKGBUILD
(from rev 102684, mailutils/trunk/PKGBUILD)
  mailutils/repos/community-staging-i686/build-fix.patch
(from rev 102684, mailutils/trunk/build-fix.patch)
  mailutils/repos/community-staging-i686/mailutils.install
(from rev 102684, mailutils/trunk/mailutils.install)
  mailutils/repos/community-staging-x86_64/
  mailutils/repos/community-staging-x86_64/PKGBUILD
(from rev 102684, mailutils/trunk/PKGBUILD)
  mailutils/repos/community-staging-x86_64/build-fix.patch
(from rev 102684, mailutils/trunk/build-fix.patch)
  mailutils/repos/community-staging-x86_64/mailutils.install
(from rev 102684, mailutils/trunk/mailutils.install)

+
 community-staging-i686/PKGBUILD|   42 +++
 community-staging-i686/build-fix.patch |   13 
 community-staging-i686/mailutils.install   |   20 
 community-staging-x86_64/PKGBUILD  |   42 +++
 community-staging-x86_64/build-fix.patch   |   13 
 community-staging-x86_64/mailutils.install |   20 
 6 files changed, 150 insertions(+)

Copied: mailutils/repos/community-staging-i686/PKGBUILD (from rev 102684, 
mailutils/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:22:58 UTC (rev 102685)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=mailutils
+pkgver=2.2
+pkgrel=10
+pkgdesc="MUA command line tool (mailx)"
+arch=(i686 x86_64)
+url="http://www.gnu.org/software/mailutils/";
+license=('GPL')
+depends=('libldap' 'pam' 'gnutls')
+makedepends=('emacs')
+install=mailutils.install
+options=(zipman !emptydirs)
+source=(http://ftp.gnu.org/gnu/mailutils/mailutils-$pkgver.tar.bz2
+   build-fix.patch)
+md5sums=('834d2f616b922856127ecfe6c2de7d1a'
+ 'e83709ffdcdb257dfab443ef77c89574')
+
+prepare() {
+  cd "$srcdir/mailutils-$pkgver"
+  patch -p1 <$srcdir/build-fix.patch
+}
+
+build() {
+  cd "$srcdir/mailutils-$pkgver"
+  ./configure --prefix=/usr --with-gdbm --with-gnutls \
+   --libexecdir=/usr/lib/$pkgname --without-fribidi \
+   --without-tcp-wrappers --sbindir=/usr/bin \
+   --without-python --without-guile
+  make -j1
+}
+
+package() {
+  cd "$srcdir/mailutils-$pkgver"
+  make -j1 DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/share/info/dir
+  mv $pkgdir/usr/bin/mail $pkgdir/usr/bin/gnu-mail
+  mv $pkgdir/usr/share/man/man1/mail.1 $pkgdir/usr/share/man/man1/gnu-mail.1
+  chown -R root:root $pkgdir
+}

Copied: mailutils/repos/community-staging-i686/build-fix.patch (from rev 
102684, mailutils/trunk/build-fix.patch)
===
--- community-staging-i686/build-fix.patch  (rev 0)
+++ community-staging-i686/build-fix.patch  2013-12-17 13:22:58 UTC (rev 
102685)
@@ -0,0 +1,13 @@
+diff -wbBur mailutils-2.2/lib/Makefile.in mailutils-2.2.q/lib/Makefile.in
+--- mailutils-2.2/lib/Makefile.in  2010-09-08 13:58:58.0 +0400
 mailutils-2.2.q/lib/Makefile.in2013-05-29 14:51:14.064888989 +0400
+@@ -1861,7 +1861,8 @@
+ -e 's|@''REPLACE_VSPRINTF''@|$(REPLACE_VSPRINTF)|g' \
+ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
+ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
+--e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
++-e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
++-e 's|_GL_WARN_ON_USE (gets.*||'; \
+   } > $@-t && \
+   mv $@-t $@
+ 

Copied: mailutils/repos/community-staging-i686/mailutils.install (from rev 
102684, mailutils/trunk/mailutils.install)
===
--- community-staging-i686/mailutils.install(rev 0)
+++ community-staging-i686/mailutils.install2013-12-17 13:22:58 UTC (rev 
102685)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(mailutils.info mailutils.info-1 mailutils.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}

Copied: mailutils/repos/community-staging-x86_64/PKGBUILD (from rev 102684, 
mailutils/trunk/PKGBUILD)
==

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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:22:22
  Author: spupykin
Revision: 102682

upgpkg: kvpnc 0.9.6a-5

upd

Modified:
  kvpnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:22:17 UTC (rev 102681)
+++ PKGBUILD2013-12-17 13:22:22 UTC (rev 102682)
@@ -4,7 +4,7 @@
 
 pkgname=kvpnc
 pkgver=0.9.6a
-pkgrel=4
+pkgrel=5
 pkgdesc="A KDE Desktop Environment frontend for various vpn clients"
 arch=(i686 x86_64)
 url="http://home.gna.org/kvpnc/";



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:21:30
  Author: spupykin
Revision: 102676

upgpkg: gnustep-base 1.24.5-5

upd

Modified:
  gnustep-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:21:25 UTC (rev 102675)
+++ PKGBUILD2013-12-17 13:21:30 UTC (rev 102676)
@@ -5,7 +5,7 @@
 
 pkgname=gnustep-base
 pkgver=1.24.5
-pkgrel=3
+pkgrel=5
 pkgdesc="The GNUstep base package"
 arch=('i686' 'x86_64')
 url="http://www.gnustep.org/";



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:22:04
  Author: spupykin
Revision: 102680

upgpkg: gwenhywfar 4.3.3-4

upd

Modified:
  gwenhywfar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:22:00 UTC (rev 102679)
+++ PKGBUILD2013-12-17 13:22:04 UTC (rev 102680)
@@ -5,7 +5,7 @@
 pkgname=gwenhywfar
 pkgver=4.3.3
 _dnrel=67
-pkgrel=2
+pkgrel=4
 pkgdesc="OS abstraction functions for various projects"
 arch=(i686 x86_64)
 url="http://www.aquamaniac.de";



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:22:17
  Author: spupykin
Revision: 102681

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

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

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

Copied: gwenhywfar/repos/community-staging-i686/PKGBUILD (from rev 102680, 
gwenhywfar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:22:17 UTC (rev 102681)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+
+pkgname=gwenhywfar
+pkgver=4.3.3
+_dnrel=67
+pkgrel=4
+pkgdesc="OS abstraction functions for various projects"
+arch=(i686 x86_64)
+url="http://www.aquamaniac.de";
+license=("LGPL")
+depends=('openssl' 'gnutls' 'libgcrypt')
+makedepends=('gtk2' 'qt4')
+optdepends=('gtk2' 'qt4')
+source=("gwenhywfar-$pkgver.tar.gz::http://www2.aquamaniac.de/sites/download/download.php?package=01&release=${_dnrel}&file=01&dummy=gwenhywfar-$pkgver.tar.gz";)
+md5sums=('c5b9d52a25960f84f9264a5a5dd484d1')
+
+build() {
+  pacman -Q gwenhywfar && return 1
+  cd $srcdir/gwenhywfar-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-ssl
+  sed -i 's|gnutls_transport_set_lowat||g' src/sio/syncio_tls.c
+  make
+}
+
+package() {
+  cd $srcdir/gwenhywfar-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gwenhywfar/repos/community-staging-x86_64/PKGBUILD (from rev 102680, 
gwenhywfar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-12-17 13:22:17 UTC (rev 102681)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+
+pkgname=gwenhywfar
+pkgver=4.3.3
+_dnrel=67
+pkgrel=4
+pkgdesc="OS abstraction functions for various projects"
+arch=(i686 x86_64)
+url="http://www.aquamaniac.de";
+license=("LGPL")
+depends=('openssl' 'gnutls' 'libgcrypt')
+makedepends=('gtk2' 'qt4')
+optdepends=('gtk2' 'qt4')
+source=("gwenhywfar-$pkgver.tar.gz::http://www2.aquamaniac.de/sites/download/download.php?package=01&release=${_dnrel}&file=01&dummy=gwenhywfar-$pkgver.tar.gz";)
+md5sums=('c5b9d52a25960f84f9264a5a5dd484d1')
+
+build() {
+  pacman -Q gwenhywfar && return 1
+  cd $srcdir/gwenhywfar-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-ssl
+  sed -i 's|gnutls_transport_set_lowat||g' src/sio/syncio_tls.c
+  make
+}
+
+package() {
+  cd $srcdir/gwenhywfar-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:21:43
  Author: spupykin
Revision: 102677

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

Added:
  gnustep-base/repos/community-staging-i686/
  gnustep-base/repos/community-staging-i686/ChangeLog
(from rev 102676, gnustep-base/trunk/ChangeLog)
  gnustep-base/repos/community-staging-i686/PKGBUILD
(from rev 102676, gnustep-base/trunk/PKGBUILD)
  gnustep-base/repos/community-staging-x86_64/
  gnustep-base/repos/community-staging-x86_64/ChangeLog
(from rev 102676, gnustep-base/trunk/ChangeLog)
  gnustep-base/repos/community-staging-x86_64/PKGBUILD
(from rev 102676, gnustep-base/trunk/PKGBUILD)

+
 community-staging-i686/ChangeLog   |6 +
 community-staging-i686/PKGBUILD|   36 +++
 community-staging-x86_64/ChangeLog |6 +
 community-staging-x86_64/PKGBUILD  |   36 +++
 4 files changed, 84 insertions(+)

Copied: gnustep-base/repos/community-staging-i686/ChangeLog (from rev 102676, 
gnustep-base/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2013-12-17 13:21:43 UTC (rev 102677)
@@ -0,0 +1,6 @@
+2007-07-24 Snowman 
+   * rebuilt against toolchain in current
+   * fixed SMP build
+   * fixed file ownership
+2007-06-26 tardo 
+* Built for x86_64

Copied: gnustep-base/repos/community-staging-i686/PKGBUILD (from rev 102676, 
gnustep-base/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:21:43 UTC (rev 102677)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Sebastian Sareyko 
+
+pkgname=gnustep-base
+pkgver=1.24.5
+pkgrel=5
+pkgdesc="The GNUstep base package"
+arch=('i686' 'x86_64')
+url="http://www.gnustep.org/";
+license=("GPL" "LGPL")
+depends=(libxslt avahi gmp gcc-libs openssl libffi gnustep-make gnutls icu)
+makedepends=(gcc-objc)
+conflicts=('gnustep-base-svn')
+groups=('gnustep-core')
+options=('!emptydirs' '!makeflags')
+source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
+md5sums=('df4e9786c6845d091a677b55d4e2c7c3')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  source /etc/profile.d/GNUstep.sh
+  ./configure --prefix=/usr --sysconfdir=/etc/GNUstep \
+   --with-ffi-include=/usr/lib/libffi-`pacman -Q libffi | cut -f2 -d\ |cut 
-f1 -d-`/include/
+  # fix file ownership
+  sed -i 's/tar -xf $(TIMEZONE_ARCHIVE);/tar -xf $(TIMEZONE_ARCHIVE);chown -R 
root:root * ;/' NSTimeZones/Makefile.postamble
+  sed -i 's|.*gnutls_transport_set_lowat.*||' Source/GSSocketStream.m
+  make VERBOSE=1
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  chown -R root.root "$pkgdir/"
+}

Copied: gnustep-base/repos/community-staging-x86_64/ChangeLog (from rev 102676, 
gnustep-base/trunk/ChangeLog)
===
--- community-staging-x86_64/ChangeLog  (rev 0)
+++ community-staging-x86_64/ChangeLog  2013-12-17 13:21:43 UTC (rev 102677)
@@ -0,0 +1,6 @@
+2007-07-24 Snowman 
+   * rebuilt against toolchain in current
+   * fixed SMP build
+   * fixed file ownership
+2007-06-26 tardo 
+* Built for x86_64

Copied: gnustep-base/repos/community-staging-x86_64/PKGBUILD (from rev 102676, 
gnustep-base/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-12-17 13:21:43 UTC (rev 102677)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Sebastian Sareyko 
+
+pkgname=gnustep-base
+pkgver=1.24.5
+pkgrel=5
+pkgdesc="The GNUstep base package"
+arch=('i686' 'x86_64')
+url="http://www.gnustep.org/";
+license=("GPL" "LGPL")
+depends=(libxslt avahi gmp gcc-libs openssl libffi gnustep-make gnutls icu)
+makedepends=(gcc-objc)
+conflicts=('gnustep-base-svn')
+groups=('gnustep-core')
+options=('!emptydirs' '!makeflags')
+source=(ftp://ftp.gnustep.org/pub/gnustep/core/$pkgname-$pkgver.tar.gz)
+md5sums=('df4e9786c6845d091a677b55d4e2c7c3')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  source /etc/profile.d/GNUstep.sh
+  ./configure --prefix=/usr --sysconfdir=/etc/GNUstep \
+   --with-ffi-include=/usr/lib/libffi-`pacman -Q libffi | cut -f2 -d\ |cut 
-f1 -d-`/include/
+  # fix file ownership
+  sed -i 's/tar -xf $(TIMEZONE_ARCHIVE);/tar -xf $(TIMEZONE_ARCHIVE);chown -R 
root:root * ;/' NSTimeZones/Makefile.postamble
+  sed -i 's|.*gnutls_transport_set_lowat.*||' Source/GSSocketStream.m
+  make VERBOSE=1
+}
+
+package() {
+  cd "$srcdir/

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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:20:42
  Author: spupykin
Revision: 102672

upgpkg: gloox 1.0.9-3

upd

Modified:
  gloox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:16:50 UTC (rev 102671)
+++ PKGBUILD2013-12-17 13:20:42 UTC (rev 102672)
@@ -4,7 +4,7 @@
 
 pkgname=gloox
 pkgver=1.0.9
-pkgrel=1
+pkgrel=3
 pkgdesc="C++ libraries for development of Jabber client/component/server"
 arch=(i686 x86_64)
 url="http://camaya.net/gloox";



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:21:25
  Author: spupykin
Revision: 102675

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

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

-+
 community-staging-i686/PKGBUILD |   38 ++
 community-staging-i686/defaults.conf|  483 ++
 community-staging-i686/gnunet.install   |7 
 community-staging-i686/gnunet.service   |   10 
 community-staging-x86_64/PKGBUILD   |   38 ++
 community-staging-x86_64/defaults.conf  |  483 ++
 community-staging-x86_64/gnunet.install |7 
 community-staging-x86_64/gnunet.service |   10 
 8 files changed, 1076 insertions(+)

Copied: gnunet/repos/community-staging-i686/PKGBUILD (from rev 102674, 
gnunet/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:21:25 UTC (rev 102675)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: wahnby 
+
+pkgname=gnunet
+pkgver=0.9.5_a
+pkgrel=4
+pkgdesc="A framework for secure peer-to-peer networking"
+arch=('i686' 'x86_64')
+url="http://gnunet.org";
+license=('GPL')
+depends=('gmp' 'libgcrypt' 'libextractor' 'sqlite' 'curl'
+'libmicrohttpd' 'libunistring' 'libidn')
+makedepends=('gettext' 'pkgconfig')
+backup=(etc/gnunetd.conf)
+options=('!makeflags')
+install=gnunet.install
+source=(ftp://ftp.gnu.org/gnu/gnunet/gnunet-${pkgver/_/}.tar.gz
+   gnunet.service
+   defaults.conf)
+md5sums=('b0e204cf9711f9799baaeb477992e66a'
+ '54cce3d2415d95b2e5bd1bd88db3a0ea'
+ '0fe23b2ca5b3fc47a0b5645e04406da0')
+
+build() {
+  cd $srcdir/gnunet-${pkgver/_/}
+  sed -i 's|contrib doc|doc|' Makefile.*
+  [ -f Makefile ] || ./configure --prefix=/usr --without-mysql
+  make
+}
+
+package() {
+  cd $srcdir/gnunet-${pkgver/_/}
+  make DESTDIR=$pkgdir install
+  install -D -m0644 $srcdir/defaults.conf $pkgdir/etc/gnunetd.conf
+  rm -rf $pkgdir/usr/include/libltdl $pkgdir/usr/lib/libltdl.* 
$pkgdir/usr/include/ltdl.h
+  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
+}

Copied: gnunet/repos/community-staging-i686/defaults.conf (from rev 102674, 
gnunet/trunk/defaults.conf)
===
--- community-staging-i686/defaults.conf(rev 0)
+++ community-staging-i686/defaults.conf2013-12-17 13:21:25 UTC (rev 
102675)
@@ -0,0 +1,483 @@
+[PATHS]
+SERVICEHOME = ~/.gnunet/
+# SERVICEHOME = /var/lib/gnunet/
+# DEFAULTCONFIG = /etc/gnunet.conf
+# If 'DEFAULTCONFIG' is not defined, the current
+# configuration file is assumed to be the default,
+# which is what we want by default...
+
+[gnunetd]
+HOSTKEY = $SERVICEHOME/.hostkey
+
+[TESTING]
+WEAKRANDOM = NO
+# How long before failing a connection?
+CONNECT_TIMEOUT = 30
+# How many connect attempts should we make?
+CONNECT_ATTEMPTS = 3
+# How many connections can happen simultaneously?
+MAX_OUTSTANDING_CONNECTIONS = 50
+
+# Should we clean up the files on peer group shutdown?
+DELETE_FILES = YES
+
+[client]
+HOME = $SERVICEHOME
+
+[nat]
+# Are we behind NAT?
+BEHIND_NAT = NO
+
+# Is the NAT hole-punched?
+PUNCHED_NAT = NO
+
+# Enable UPNP by default?
+ENABLE_UPNP = NO
+
+# Use addresses from the local network interfaces (inluding loopback, but also 
others)
+USE_LOCALADDR = YES
+
+# Use address obtained from a DNS lookup of our hostname
+USE_HOSTNAME = NO
+
+# External IP address of the NAT box (if known); IPv4 dotted-decimal ONLY at 
this time (should allow DynDNS!)
+# normal interface IP address for non-NATed peers; 
+# possibly auto-detected (using UPnP) if possible if not specified
+# EXTERNAL_ADDRESS = 
+
+# Should we use ICMP-based NAT traversal to try connect to NATed peers
+# or, if we are behind NAT, to allow connections to us?
+ENABLE_ICMP_CLIENT = NO
+ENABLE_ICMP_SERVER = NO
+
+# IP address of the interface connected to the NAT box; IPv4 dotted-decimal 
ONLY;
+# no

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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:21:48
  Author: spupykin
Revision: 102678

upgpkg: gogglesmm 0.12.7-3

upd

Modified:
  gogglesmm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:21:43 UTC (rev 102677)
+++ PKGBUILD2013-12-17 13:21:48 UTC (rev 102678)
@@ -4,7 +4,7 @@
 
 pkgname=gogglesmm
 pkgver=0.12.7
-pkgrel=1
+pkgrel=3
 pkgdesc="Music Manager and Player"
 arch=('i686' 'x86_64')
 url="http://code.google.com/p/gogglesmm/";



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:21:07
  Author: spupykin
Revision: 102674

upgpkg: gnunet 0.9.5_a-4

upd

Modified:
  gnunet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 13:21:00 UTC (rev 102673)
+++ PKGBUILD2013-12-17 13:21:07 UTC (rev 102674)
@@ -4,7 +4,7 @@
 
 pkgname=gnunet
 pkgver=0.9.5_a
-pkgrel=2
+pkgrel=4
 pkgdesc="A framework for secure peer-to-peer networking"
 arch=('i686' 'x86_64')
 url="http://gnunet.org";



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 14:21:00
  Author: spupykin
Revision: 102673

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

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

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

Copied: gloox/repos/community-staging-i686/PKGBUILD (from rev 102672, 
gloox/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:21:00 UTC (rev 102673)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+
+pkgname=gloox
+pkgver=1.0.9
+pkgrel=3
+pkgdesc="C++ libraries for development of Jabber client/component/server"
+arch=(i686 x86_64)
+url="http://camaya.net/gloox";
+license=("GPL")
+depends=('libidn' 'gnutls')
+source=(http://camaya.net/download/gloox-$pkgver.tar.bz2)
+md5sums=('48fc9aa5210c2a1ce253751a4d38e19c')
+
+build() {
+  cd $srcdir/gloox-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/gloox-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gloox/repos/community-staging-x86_64/PKGBUILD (from rev 102672, 
gloox/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-12-17 13:21:00 UTC (rev 102673)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+
+pkgname=gloox
+pkgver=1.0.9
+pkgrel=3
+pkgdesc="C++ libraries for development of Jabber client/component/server"
+arch=(i686 x86_64)
+url="http://camaya.net/gloox";
+license=("GPL")
+depends=('libidn' 'gnutls')
+source=(http://camaya.net/download/gloox-$pkgver.tar.bz2)
+md5sums=('48fc9aa5210c2a1ce253751a4d38e19c')
+
+build() {
+  cd $srcdir/gloox-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/gloox-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in lightdm/repos (20 files)

2013-12-17 Thread Maxime Gauduin
Date: Tuesday, December 17, 2013 @ 14:16:50
  Author: alucryd
Revision: 102671

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

Added:
  lightdm/repos/community-staging-i686/
  lightdm/repos/community-staging-i686/PKGBUILD
(from rev 102670, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-staging-i686/Xsession
(from rev 102670, lightdm/trunk/Xsession)
  lightdm/repos/community-staging-i686/lightdm-autologin.pam
(from rev 102670, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-staging-i686/lightdm-default-config.patch
(from rev 102670, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-staging-i686/lightdm.install
(from rev 102670, lightdm/trunk/lightdm.install)
  lightdm/repos/community-staging-i686/lightdm.pam
(from rev 102670, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-staging-i686/lightdm.rules
(from rev 102670, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-staging-i686/lightdm.service
(from rev 102670, lightdm/trunk/lightdm.service)
  lightdm/repos/community-staging-i686/lightdm.tmpfiles
(from rev 102670, lightdm/trunk/lightdm.tmpfiles)
  lightdm/repos/community-staging-x86_64/
  lightdm/repos/community-staging-x86_64/PKGBUILD
(from rev 102670, lightdm/trunk/PKGBUILD)
  lightdm/repos/community-staging-x86_64/Xsession
(from rev 102670, lightdm/trunk/Xsession)
  lightdm/repos/community-staging-x86_64/lightdm-autologin.pam
(from rev 102670, lightdm/trunk/lightdm-autologin.pam)
  lightdm/repos/community-staging-x86_64/lightdm-default-config.patch
(from rev 102670, lightdm/trunk/lightdm-default-config.patch)
  lightdm/repos/community-staging-x86_64/lightdm.install
(from rev 102670, lightdm/trunk/lightdm.install)
  lightdm/repos/community-staging-x86_64/lightdm.pam
(from rev 102670, lightdm/trunk/lightdm.pam)
  lightdm/repos/community-staging-x86_64/lightdm.rules
(from rev 102670, lightdm/trunk/lightdm.rules)
  lightdm/repos/community-staging-x86_64/lightdm.service
(from rev 102670, lightdm/trunk/lightdm.service)
  lightdm/repos/community-staging-x86_64/lightdm.tmpfiles
(from rev 102670, lightdm/trunk/lightdm.tmpfiles)

---+
 community-staging-i686/PKGBUILD   |  120 
 community-staging-i686/Xsession   |   57 +++
 community-staging-i686/lightdm-autologin.pam  |   13 +
 community-staging-i686/lightdm-default-config.patch   |   58 +++
 community-staging-i686/lightdm.install|   23 +++
 community-staging-i686/lightdm.pam|7 
 community-staging-i686/lightdm.rules  |   15 ++
 community-staging-i686/lightdm.service|   14 +
 community-staging-i686/lightdm.tmpfiles   |1 
 community-staging-x86_64/PKGBUILD |  120 
 community-staging-x86_64/Xsession |   57 +++
 community-staging-x86_64/lightdm-autologin.pam|   13 +
 community-staging-x86_64/lightdm-default-config.patch |   58 +++
 community-staging-x86_64/lightdm.install  |   23 +++
 community-staging-x86_64/lightdm.pam  |7 
 community-staging-x86_64/lightdm.rules|   15 ++
 community-staging-x86_64/lightdm.service  |   14 +
 community-staging-x86_64/lightdm.tmpfiles |1 
 18 files changed, 616 insertions(+)

Copied: lightdm/repos/community-staging-i686/PKGBUILD (from rev 102670, 
lightdm/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 13:16:50 UTC (rev 102671)
@@ -0,0 +1,120 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Morfeo 
+
+pkgbase=lightdm
+pkgname=('lightdm' 'liblightdm-qt4' 'liblightdm-qt5')
+pkgver=1.8.5
+pkgrel=3
+epoch=1
+pkgdesc="A lightweight display manager"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/lightdm";
+license=('GPL3' 'LGPL3')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool' 'itstool' 
'libxklavier' 'polkit' 'qt4' 'qt5-base')
+source=("https://launchpad.net/lightdm/${pkgver%.*}/${pkgver}/+download/${pkgbase}-${pkgver}.tar.xz";
+'lightdm.service'
+'lightdm.tmpfiles'
+'lightdm.pam'
+'lightdm-autologin.pam'
+'lightdm.rules'
+'lightdm-default-config.patch'
+'Xsession')
+sha256sums=('c1a55800628c7a683a529e32646eae4be32295a09af049c9b15387acff0232a2'
+'0d2adba25cdbe59e97ffd302083db9d5e23920780f41e04f64512cd6b633289a'
+'b29521fbd7a48a8f60b93ecca3b30c30bcb71560de8033c8d39b25c22c6f696f'
+'e8c4c5fd3b801a390d201166fd1fb9730e78a5c62928768103b870b6bd980ea0'
+'33e3c3d6e16c8d30756754ea3f31f5457c5be0343686aad287692be34958984a'
+'a89566307e1c81c24f037d854cb

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

2013-12-17 Thread Maxime Gauduin
Date: Tuesday, December 17, 2013 @ 14:16:18
  Author: alucryd
Revision: 102670

upgpkg: lightdm 1:1.8.5-3

Modified:
  lightdm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 12:22:44 UTC (rev 102669)
+++ PKGBUILD2013-12-17 13:16:18 UTC (rev 102670)
@@ -5,7 +5,7 @@
 pkgbase=lightdm
 pkgname=('lightdm' 'liblightdm-qt4' 'liblightdm-qt5')
 pkgver=1.8.5
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="A lightweight display manager"
 arch=('i686' 'x86_64')



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 13:22:44
  Author: spupykin
Revision: 102669

archrelease: copy trunk to community-x86_64

Added:
  goocanvas/repos/community-x86_64/PKGBUILD
(from rev 102668, goocanvas/trunk/PKGBUILD)
Deleted:
  goocanvas/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-17 12:22:29 UTC (rev 102668)
+++ PKGBUILD2013-12-17 12:22:44 UTC (rev 102669)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: William Rea 
-
-pkgname=goocanvas
-pkgver=2.0.1
-pkgrel=2
-pkgdesc="A cairo canvas widget for GTK+"
-arch=(i686 x86_64)
-url="http://live.gnome.org/GooCanvas";
-options=('docs')
-license=("LGPL")
-depends=('gtk3')
-makedepends=('gobject-introspection' 'python-gobject2')
-source=(http://ftp.gnome.org/pub/GNOME/sources/goocanvas/2.0/goocanvas-$pkgver.tar.xz)
-sha256sums=('0c3a595a6d2a4fe0f1a1a5243637e66aa1bfbaf6492455bfd0b51e0dec9b1553')
-sha256sums=('0c3a595a6d2a4fe0f1a1a5243637e66aa1bfbaf6492455bfd0b51e0dec9b1553')
-
-build() {
-  cd $srcdir/goocanvas-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $srcdir/goocanvas-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: goocanvas/repos/community-x86_64/PKGBUILD (from rev 102668, 
goocanvas/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-17 12:22:44 UTC (rev 102669)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=goocanvas
+pkgver=2.0.2
+pkgrel=1
+pkgdesc="A cairo canvas widget for GTK+"
+arch=(i686 x86_64)
+url="http://live.gnome.org/GooCanvas";
+options=('docs')
+license=("LGPL")
+depends=('gtk3')
+makedepends=('gobject-introspection' 'python-gobject2')
+source=(http://ftp.gnome.org/pub/GNOME/sources/goocanvas/2.0/goocanvas-$pkgver.tar.xz)
+sha256sums=('f20e5fbef8d1a2633033edbd886dd13146a1b948d1813a9c353a80a29295d1d0')
+
+build() {
+  cd $srcdir/goocanvas-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $srcdir/goocanvas-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in goocanvas/repos/community-i686 (PKGBUILD)

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 13:22:29
  Author: spupykin
Revision: 102668

archrelease: copy trunk to community-i686

Added:
  goocanvas/repos/community-i686/PKGBUILD
(from rev 102667, goocanvas/trunk/PKGBUILD)

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

Copied: goocanvas/repos/community-i686/PKGBUILD (from rev 102667, 
goocanvas/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-17 12:22:29 UTC (rev 102668)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=goocanvas
+pkgver=2.0.2
+pkgrel=1
+pkgdesc="A cairo canvas widget for GTK+"
+arch=(i686 x86_64)
+url="http://live.gnome.org/GooCanvas";
+options=('docs')
+license=("LGPL")
+depends=('gtk3')
+makedepends=('gobject-introspection' 'python-gobject2')
+source=(http://ftp.gnome.org/pub/GNOME/sources/goocanvas/2.0/goocanvas-$pkgver.tar.xz)
+sha256sums=('f20e5fbef8d1a2633033edbd886dd13146a1b948d1813a9c353a80a29295d1d0')
+
+build() {
+  cd $srcdir/goocanvas-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $srcdir/goocanvas-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 13:21:33
  Author: spupykin
Revision: 102666

upgpkg: python2-gnutls 1.2.5-1

upd

Modified:
  python2-gnutls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 12:21:29 UTC (rev 102665)
+++ PKGBUILD2013-12-17 12:21:33 UTC (rev 102666)
@@ -4,8 +4,8 @@
 # Contributor: N3RD3X 
 
 pkgname=python2-gnutls
-pkgver=1.2.4
-pkgrel=2
+pkgver=1.2.5
+pkgrel=1
 pkgdesc="Python wrapper for the GNUTLS library"
 arch=('i686' 'x86_64')
 url="http://cheeseshop.python.org/pypi/python-gnutls";
@@ -13,7 +13,7 @@
 license=('LGPL')
 
source=(http://pypi.python.org/packages/source/p/python-gnutls/python-gnutls-${pkgver}.tar.gz
gnutls3.patch)
-md5sums=('e3536c421291a791869d875a41dcb26a'
+md5sums=('a398a75b1f366857cf2628cf4d62dd34'
  '24bc95d9f5e71e9f5e180706cbb09248')
 
 build() {



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 13:21:51
  Author: spupykin
Revision: 102667

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

Added:
  python2-gnutls/repos/community-i686/PKGBUILD
(from rev 102666, python2-gnutls/trunk/PKGBUILD)
  python2-gnutls/repos/community-i686/gnutls3.patch
(from rev 102666, python2-gnutls/trunk/gnutls3.patch)
  python2-gnutls/repos/community-x86_64/PKGBUILD
(from rev 102666, python2-gnutls/trunk/PKGBUILD)
  python2-gnutls/repos/community-x86_64/gnutls3.patch
(from rev 102666, python2-gnutls/trunk/gnutls3.patch)
Deleted:
  python2-gnutls/repos/community-i686/PKGBUILD
  python2-gnutls/repos/community-i686/gnutls3.patch
  python2-gnutls/repos/community-x86_64/PKGBUILD
  python2-gnutls/repos/community-x86_64/gnutls3.patch

+
 /PKGBUILD  |   54 +++
 /gnutls3.patch |  542 +++
 community-i686/PKGBUILD|   23 -
 community-i686/gnutls3.patch   |  271 ---
 community-x86_64/PKGBUILD  |   23 -
 community-x86_64/gnutls3.patch |  271 ---
 6 files changed, 596 insertions(+), 588 deletions(-)

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


[arch-commits] Commit in goocanvas/repos/community-i686 (PKGBUILD)

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 13:21:29
  Author: spupykin
Revision: 102665

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

Deleted:
  goocanvas/repos/community-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-17 12:21:11 UTC (rev 102664)
+++ PKGBUILD2013-12-17 12:21:29 UTC (rev 102665)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: William Rea 
-
-pkgname=goocanvas
-pkgver=2.0.1
-pkgrel=2
-pkgdesc="A cairo canvas widget for GTK+"
-arch=(i686 x86_64)
-url="http://live.gnome.org/GooCanvas";
-options=('docs')
-license=("LGPL")
-depends=('gtk3')
-makedepends=('gobject-introspection' 'python-gobject2')
-source=(http://ftp.gnome.org/pub/GNOME/sources/goocanvas/2.0/goocanvas-$pkgver.tar.xz)
-sha256sums=('0c3a595a6d2a4fe0f1a1a5243637e66aa1bfbaf6492455bfd0b51e0dec9b1553')
-sha256sums=('0c3a595a6d2a4fe0f1a1a5243637e66aa1bfbaf6492455bfd0b51e0dec9b1553')
-
-build() {
-  cd $srcdir/goocanvas-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $srcdir/goocanvas-$pkgver
-  make DESTDIR=$pkgdir install
-}



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

2013-12-17 Thread Sergej Pupykin
Date: Tuesday, December 17, 2013 @ 13:21:11
  Author: spupykin
Revision: 102664

upgpkg: goocanvas 2.0.2-1

upd

Modified:
  goocanvas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 12:06:27 UTC (rev 102663)
+++ PKGBUILD2013-12-17 12:21:11 UTC (rev 102664)
@@ -3,8 +3,8 @@
 # Contributor: William Rea 
 
 pkgname=goocanvas
-pkgver=2.0.1
-pkgrel=2
+pkgver=2.0.2
+pkgrel=1
 pkgdesc="A cairo canvas widget for GTK+"
 arch=(i686 x86_64)
 url="http://live.gnome.org/GooCanvas";
@@ -13,8 +13,7 @@
 depends=('gtk3')
 makedepends=('gobject-introspection' 'python-gobject2')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/goocanvas/2.0/goocanvas-$pkgver.tar.xz)
-sha256sums=('0c3a595a6d2a4fe0f1a1a5243637e66aa1bfbaf6492455bfd0b51e0dec9b1553')
-sha256sums=('0c3a595a6d2a4fe0f1a1a5243637e66aa1bfbaf6492455bfd0b51e0dec9b1553')
+sha256sums=('f20e5fbef8d1a2633033edbd886dd13146a1b948d1813a9c353a80a29295d1d0')
 
 build() {
   cd $srcdir/goocanvas-$pkgver



[arch-commits] Commit in pyneighborhood/repos/community-any (3 files)

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 13:06:27
  Author: bgyorgy
Revision: 102663

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   62 +++
 pyneighborhood.install |   12 -
 2 files changed, 31 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-17 12:06:22 UTC (rev 102662)
+++ PKGBUILD2013-12-17 12:06:27 UTC (rev 102663)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Ronald van Haren 
-
-pkgname=pyneighborhood
-pkgver=0.5.4
-pkgrel=2
-pkgdesc="A GTK+ 2 rewrite of the well-known LinNeighborhood tool"
-license=('GPL')
-url="https://launchpad.net/pyneighborhood";
-source=("http://launchpad.net/pyneighborhood/0.5/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2";)
-depends=('pygtk' 'smbclient')
-install=pyneighborhood.install
-arch=('any')
-options=('!emptydirs')
-sha1sums=('b0d899230ed0212aa50c17f406b0ee7e3d6ac17a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # python2 fix
-  for file in $(find . -type f -print); do
-sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-  done
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make PYTHON=python2 DESTDIR=${pkgdir}/usr install
-}

Copied: pyneighborhood/repos/community-any/PKGBUILD (from rev 102662, 
pyneighborhood/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-17 12:06:27 UTC (rev 102663)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Ronald van Haren 
+
+pkgname=pyneighborhood
+pkgver=0.5.4
+pkgrel=3
+pkgdesc="A GTK+ 2 rewrite of the well-known LinNeighborhood tool"
+license=('GPL')
+url="https://launchpad.net/pyneighborhood";
+source=("http://launchpad.net/pyneighborhood/0.5/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2";)
+depends=('pygtk' 'smbclient')
+optdepends=('gksu: mount/unmount Samba shares')
+arch=('any')
+options=('!emptydirs')
+sha1sums=('b0d899230ed0212aa50c17f406b0ee7e3d6ac17a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # python2 fix
+  for file in $(find . -type f -print); do
+sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
+sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
+  done
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make PYTHON=python2 DESTDIR=${pkgdir}/usr install
+}

Deleted: pyneighborhood.install
===
--- pyneighborhood.install  2013-12-17 12:06:22 UTC (rev 102662)
+++ pyneighborhood.install  2013-12-17 12:06:27 UTC (rev 102663)
@@ -1,12 +0,0 @@
-pkgname=pyneighborhood
-
-post_install() {
-  echo ""
-  echo "Please run 'chmod +s /sbin/mount.cifs /sbin/umount.cifs'"
-  echo "as root to be able to mount shares as a non-root user'"
-  echo ""
-  }
-  
-  post_upgrade() {
-post_install $1
-}



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

2013-12-17 Thread Balló György
Date: Tuesday, December 17, 2013 @ 13:06:22
  Author: bgyorgy
Revision: 102662

upgpkg: pyneighborhood 0.5.4-3

Remove inaccurate .install file, add gksu to optdepends (FS#34104)

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

+
 PKGBUILD   |6 +++---
 pyneighborhood.install |   12 
 2 files changed, 3 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 11:21:19 UTC (rev 102661)
+++ PKGBUILD2013-12-17 12:06:22 UTC (rev 102662)
@@ -4,18 +4,18 @@
 
 pkgname=pyneighborhood
 pkgver=0.5.4
-pkgrel=2
+pkgrel=3
 pkgdesc="A GTK+ 2 rewrite of the well-known LinNeighborhood tool"
 license=('GPL')
 url="https://launchpad.net/pyneighborhood";
 
source=("http://launchpad.net/pyneighborhood/0.5/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2";)
 depends=('pygtk' 'smbclient')
-install=pyneighborhood.install
+optdepends=('gksu: mount/unmount Samba shares')
 arch=('any')
 options=('!emptydirs')
 sha1sums=('b0d899230ed0212aa50c17f406b0ee7e3d6ac17a')
 
-build() {
+prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
   # python2 fix

Deleted: pyneighborhood.install
===
--- pyneighborhood.install  2013-12-17 11:21:19 UTC (rev 102661)
+++ pyneighborhood.install  2013-12-17 12:06:22 UTC (rev 102662)
@@ -1,12 +0,0 @@
-pkgname=pyneighborhood
-
-post_install() {
-  echo ""
-  echo "Please run 'chmod +s /sbin/mount.cifs /sbin/umount.cifs'"
-  echo "as root to be able to mount shares as a non-root user'"
-  echo ""
-  }
-  
-  post_upgrade() {
-post_install $1
-}



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

2013-12-17 Thread Jan Steffens
Date: Tuesday, December 17, 2013 @ 12:36:43
  Author: heftig
Revision: 201657

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

Added:
  vino/repos/staging-i686/
  vino/repos/staging-i686/PKGBUILD
(from rev 201656, vino/trunk/PKGBUILD)
  vino/repos/staging-i686/vino.install
(from rev 201656, vino/trunk/vino.install)
  vino/repos/staging-x86_64/
  vino/repos/staging-x86_64/PKGBUILD
(from rev 201656, vino/trunk/PKGBUILD)
  vino/repos/staging-x86_64/vino.install
(from rev 201656, vino/trunk/vino.install)

-+
 staging-i686/PKGBUILD   |   37 +
 staging-i686/vino.install   |   12 
 staging-x86_64/PKGBUILD |   37 +
 staging-x86_64/vino.install |   12 
 4 files changed, 98 insertions(+)

Copied: vino/repos/staging-i686/PKGBUILD (from rev 201656, vino/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 11:36:43 UTC (rev 201657)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=vino
+pkgver=3.10.1
+pkgrel=2
+pkgdesc="a VNC server for the GNOME desktop"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libnotify libxtst libsm telepathy-glib gtk3 libsecret avahi 
desktop-file-utils)
+makedepends=(intltool networkmanager gnome-common)
+groups=(gnome)
+url="http://www.gnome.org";
+options=(!emptydirs)
+install=vino.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('faf10d667c43d00cd37dc6343b44012456de9d2e39d8ce679c719e65d2dfbe46')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vino \
+  --localstatedir=/var \
+  --disable-http-server --with-secret
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: vino/repos/staging-i686/vino.install (from rev 201656, 
vino/trunk/vino.install)
===
--- staging-i686/vino.install   (rev 0)
+++ staging-i686/vino.install   2013-12-17 11:36:43 UTC (rev 201657)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: vino/repos/staging-x86_64/PKGBUILD (from rev 201656, 
vino/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 11:36:43 UTC (rev 201657)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=vino
+pkgver=3.10.1
+pkgrel=2
+pkgdesc="a VNC server for the GNOME desktop"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libnotify libxtst libsm telepathy-glib gtk3 libsecret avahi 
desktop-file-utils)
+makedepends=(intltool networkmanager gnome-common)
+groups=(gnome)
+url="http://www.gnome.org";
+options=(!emptydirs)
+install=vino.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('faf10d667c43d00cd37dc6343b44012456de9d2e39d8ce679c719e65d2dfbe46')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vino \
+  --localstatedir=/var \
+  --disable-http-server --with-secret
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: vino/repos/staging-x86_64/vino.install (from rev 201656, 
vino/trunk/vino.install)
===
--- staging-x86_64/vino.install (rev 0)
+++ staging-x86_64/vino.install 2013-12-17 11:36:43 UTC (rev 201657)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-12-17 Thread Jan Steffens
Date: Tuesday, December 17, 2013 @ 12:37:22
  Author: heftig
Revision: 201658

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

Added:
  grilo-plugins/repos/staging-i686/
  grilo-plugins/repos/staging-i686/PKGBUILD
(from rev 201657, grilo-plugins/trunk/PKGBUILD)
  grilo-plugins/repos/staging-x86_64/
  grilo-plugins/repos/staging-x86_64/PKGBUILD
(from rev 201657, grilo-plugins/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   37 +
 staging-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: grilo-plugins/repos/staging-i686/PKGBUILD (from rev 201657, 
grilo-plugins/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 11:37:22 UTC (rev 201658)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=grilo-plugins
+pkgver=0.2.9
+pkgrel=3
+pkgdesc="Plugins for Grilo"
+url="http://www.gnome.org";
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(grilo sqlite libgcrypt)
+makedepends=(gupnp-av libgdata gmime rest libtracker-sparql totem-plparser 
libdmapsharing
+ json-glib intltool)
+optdepends=('gupnp-av: uPnP plugin'
+'libgdata: Youtube plugin'
+'gmime: Podcasts plugin'
+'rest: Blip.tv plugin'
+'libtracker-sparql: Tracker plugin'
+'totem-plparser: Youtube plugin, Vimeo plugin, Optical media 
plugin'
+'libdmapsharing: DMAP sharing plugin'
+'json-glib: TMDb plugin')
+options=('!emptydirs')
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('902b839bd1cdc27613d9e44af2afe00d1ef3b7471ae72c66c622560007e1023e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
+--enable-shoutcast
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: grilo-plugins/repos/staging-x86_64/PKGBUILD (from rev 201657, 
grilo-plugins/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 11:37:22 UTC (rev 201658)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=grilo-plugins
+pkgver=0.2.9
+pkgrel=3
+pkgdesc="Plugins for Grilo"
+url="http://www.gnome.org";
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(grilo sqlite libgcrypt)
+makedepends=(gupnp-av libgdata gmime rest libtracker-sparql totem-plparser 
libdmapsharing
+ json-glib intltool)
+optdepends=('gupnp-av: uPnP plugin'
+'libgdata: Youtube plugin'
+'gmime: Podcasts plugin'
+'rest: Blip.tv plugin'
+'libtracker-sparql: Tracker plugin'
+'totem-plparser: Youtube plugin, Vimeo plugin, Optical media 
plugin'
+'libdmapsharing: DMAP sharing plugin'
+'json-glib: TMDb plugin')
+options=('!emptydirs')
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('902b839bd1cdc27613d9e44af2afe00d1ef3b7471ae72c66c622560007e1023e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
+--enable-shoutcast
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2013-12-17 Thread Jan Steffens
Date: Tuesday, December 17, 2013 @ 12:36:07
  Author: heftig
Revision: 201656

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

Added:
  totem-plparser/repos/staging-i686/
  totem-plparser/repos/staging-i686/PKGBUILD
(from rev 201655, totem-plparser/trunk/PKGBUILD)
  totem-plparser/repos/staging-x86_64/
  totem-plparser/repos/staging-x86_64/PKGBUILD
(from rev 201655, totem-plparser/trunk/PKGBUILD)

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

Copied: totem-plparser/repos/staging-i686/PKGBUILD (from rev 201655, 
totem-plparser/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 11:36:07 UTC (rev 201656)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=totem-plparser
+pkgver=3.10.0
+pkgrel=4
+url="http://www.gnome.org";
+pkgdesc="Totem playlist parser library"
+license=('LGPL')
+arch=(i686 x86_64)
+depends=('gmime' 'libsoup' 'libarchive')
+makedepends=('intltool' 'gobject-introspection' 'libquvi')
+optdepends=('libquvi: video site handling (Youtube etc.)')
+source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
+sha256sums=('87eac3fdf2b632dfac0edda07906a3e84f1ce4442b8127394414020dafe41aa9')
+
+build() {
+  cd totem-pl-parser-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package(){
+  cd totem-pl-parser-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: totem-plparser/repos/staging-x86_64/PKGBUILD (from rev 201655, 
totem-plparser/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 11:36:07 UTC (rev 201656)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=totem-plparser
+pkgver=3.10.0
+pkgrel=4
+url="http://www.gnome.org";
+pkgdesc="Totem playlist parser library"
+license=('LGPL')
+arch=(i686 x86_64)
+depends=('gmime' 'libsoup' 'libarchive')
+makedepends=('intltool' 'gobject-introspection' 'libquvi')
+optdepends=('libquvi: video site handling (Youtube etc.)')
+source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
+sha256sums=('87eac3fdf2b632dfac0edda07906a3e84f1ce4442b8127394414020dafe41aa9')
+
+build() {
+  cd totem-pl-parser-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package(){
+  cd totem-pl-parser-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2013-12-17 Thread Andrea Scarpino
Date: Tuesday, December 17, 2013 @ 12:35:14
  Author: andrea
Revision: 201654

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

Added:
  libvncserver/repos/staging-i686/
  libvncserver/repos/staging-i686/PKGBUILD
(from rev 201653, libvncserver/trunk/PKGBUILD)
  libvncserver/repos/staging-x86_64/
  libvncserver/repos/staging-x86_64/PKGBUILD
(from rev 201653, libvncserver/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   26 ++
 staging-x86_64/PKGBUILD |   26 ++
 2 files changed, 52 insertions(+)

Copied: libvncserver/repos/staging-i686/PKGBUILD (from rev 201653, 
libvncserver/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 11:35:14 UTC (rev 201654)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libvncserver
+pkgver=0.9.9
+pkgrel=3
+pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
+arch=('i686' 'x86_64')
+url="http://libvncserver.sourceforge.net/";
+license=('GPL')
+depends=('libjpeg' 'gnutls' 'libgcrypt')
+source=("http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz";)
+md5sums=('70422169b122765693d2a294d13e3714')
+
+build() {
+  cd LibVNCServer-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd LibVNCServer-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: libvncserver/repos/staging-x86_64/PKGBUILD (from rev 201653, 
libvncserver/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 11:35:14 UTC (rev 201654)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libvncserver
+pkgver=0.9.9
+pkgrel=3
+pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
+arch=('i686' 'x86_64')
+url="http://libvncserver.sourceforge.net/";
+license=('GPL')
+depends=('libjpeg' 'gnutls' 'libgcrypt')
+source=("http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz";)
+md5sums=('70422169b122765693d2a294d13e3714')
+
+build() {
+  cd LibVNCServer-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd LibVNCServer-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}



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

2013-12-17 Thread Jan Steffens
Date: Tuesday, December 17, 2013 @ 12:35:34
  Author: heftig
Revision: 201655

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

Added:
  libquvi/repos/staging-i686/
  libquvi/repos/staging-i686/PKGBUILD
(from rev 201654, libquvi/trunk/PKGBUILD)
  libquvi/repos/staging-x86_64/
  libquvi/repos/staging-x86_64/PKGBUILD
(from rev 201654, libquvi/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   27 +++
 staging-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: libquvi/repos/staging-i686/PKGBUILD (from rev 201654, 
libquvi/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 11:35:34 UTC (rev 201655)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+
+pkgname=libquvi
+pkgver=0.9.4
+pkgrel=2
+pkgdesc='Library for parsing video download links.'
+arch=('i686' 'x86_64')
+url='http://quvi.sourceforge.net/'
+license=('AGPL3')
+depends=('libquvi-scripts' 'curl' 'lua' 'libproxy' 'libgcrypt' 'glib2')
+conflicts=('quvi<0.9.0')
+source=("http://downloads.sourceforge.net/sourceforge/quvi/${pkgname}-${pkgver}.tar.xz"{,.sig})
+md5sums=('8e3f2134a6b3376934bd884b07dcdac5'
+ 'SKIP')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: libquvi/repos/staging-x86_64/PKGBUILD (from rev 201654, 
libquvi/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 11:35:34 UTC (rev 201655)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+
+pkgname=libquvi
+pkgver=0.9.4
+pkgrel=2
+pkgdesc='Library for parsing video download links.'
+arch=('i686' 'x86_64')
+url='http://quvi.sourceforge.net/'
+license=('AGPL3')
+depends=('libquvi-scripts' 'curl' 'lua' 'libproxy' 'libgcrypt' 'glib2')
+conflicts=('quvi<0.9.0')
+source=("http://downloads.sourceforge.net/sourceforge/quvi/${pkgname}-${pkgver}.tar.xz"{,.sig})
+md5sums=('8e3f2134a6b3376934bd884b07dcdac5'
+ 'SKIP')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2013-12-17 Thread Andrea Scarpino
Date: Tuesday, December 17, 2013 @ 12:35:08
  Author: andrea
Revision: 201653

upgpkg: libvncserver 0.9.9-3

libgcrypt rebuild

Modified:
  libvncserver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-17 11:35:00 UTC (rev 201652)
+++ PKGBUILD2013-12-17 11:35:08 UTC (rev 201653)
@@ -5,12 +5,12 @@
 
 pkgname=libvncserver
 pkgver=0.9.9
-pkgrel=2
+pkgrel=3
 pkgdesc="A cross-platform C libraries that allow you to easily implement VNC 
server"
 arch=('i686' 'x86_64')
 url="http://libvncserver.sourceforge.net/";
 license=('GPL')
-depends=('libjpeg' 'gnutls' 'libgcrypt' 'openssl')
+depends=('libjpeg' 'gnutls' 'libgcrypt')
 
source=("http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz";)
 md5sums=('70422169b122765693d2a294d13e3714')
 



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

2013-12-17 Thread Jan Steffens
Date: Tuesday, December 17, 2013 @ 12:35:00
  Author: heftig
Revision: 201652

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

Added:
  gnome-keyring/repos/staging-i686/
  gnome-keyring/repos/staging-i686/PKGBUILD
(from rev 201651, gnome-keyring/trunk/PKGBUILD)
  gnome-keyring/repos/staging-i686/gnome-keyring.install
(from rev 201651, gnome-keyring/trunk/gnome-keyring.install)
  gnome-keyring/repos/staging-x86_64/
  gnome-keyring/repos/staging-x86_64/PKGBUILD
(from rev 201651, gnome-keyring/trunk/PKGBUILD)
  gnome-keyring/repos/staging-x86_64/gnome-keyring.install
(from rev 201651, gnome-keyring/trunk/gnome-keyring.install)

--+
 staging-i686/PKGBUILD|   32 
 staging-i686/gnome-keyring.install   |   12 
 staging-x86_64/PKGBUILD  |   32 
 staging-x86_64/gnome-keyring.install |   12 
 4 files changed, 88 insertions(+)

Copied: gnome-keyring/repos/staging-i686/PKGBUILD (from rev 201651, 
gnome-keyring/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 11:35:00 UTC (rev 201652)
@@ -0,0 +1,32 @@
+#$Id$
+# Maintainer: Jan De Groot 
+
+pkgname=gnome-keyring
+pkgver=3.10.1
+pkgrel=2
+pkgdesc="GNOME Password Management daemon"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('gtk3' 'gcr' 'libcap-ng')
+makedepends=('intltool' 'gtk-doc')
+groups=('gnome')
+options=('!emptydirs')
+url="http://www.gnome.org";
+install=gnome-keyring.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('18001fa94c6d92e476b76423fe585dbf649051bba33012a037b07449c215dbf8')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-keyring \
+  --with-pam-dir=/usr/lib/security --with-root-certs=/etc/ssl/certs \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-keyring/repos/staging-i686/gnome-keyring.install (from rev 
201651, gnome-keyring/trunk/gnome-keyring.install)
===
--- staging-i686/gnome-keyring.install  (rev 0)
+++ staging-i686/gnome-keyring.install  2013-12-17 11:35:00 UTC (rev 201652)
@@ -0,0 +1,12 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+setcap cap_ipc_lock=ep /usr/bin/gnome-keyring-daemon
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_remove() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}

Copied: gnome-keyring/repos/staging-x86_64/PKGBUILD (from rev 201651, 
gnome-keyring/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 11:35:00 UTC (rev 201652)
@@ -0,0 +1,32 @@
+#$Id$
+# Maintainer: Jan De Groot 
+
+pkgname=gnome-keyring
+pkgver=3.10.1
+pkgrel=2
+pkgdesc="GNOME Password Management daemon"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('gtk3' 'gcr' 'libcap-ng')
+makedepends=('intltool' 'gtk-doc')
+groups=('gnome')
+options=('!emptydirs')
+url="http://www.gnome.org";
+install=gnome-keyring.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('18001fa94c6d92e476b76423fe585dbf649051bba33012a037b07449c215dbf8')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-keyring \
+  --with-pam-dir=/usr/lib/security --with-root-certs=/etc/ssl/certs \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-keyring/repos/staging-x86_64/gnome-keyring.install (from rev 
201651, gnome-keyring/trunk/gnome-keyring.install)
===
--- staging-x86_64/gnome-keyring.install(rev 0)
+++ staging-x86_64/gnome-keyring.install2013-12-17 11:35:00 UTC (rev 
201652)
@@ -0,0 +1,12 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+setcap cap_ipc_lock=ep /usr/bin/gnome-keyring-daemon
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_remove() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}



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

2013-12-17 Thread Jan Steffens
Date: Tuesday, December 17, 2013 @ 12:34:14
  Author: heftig
Revision: 201651

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

Added:
  libgnome-keyring/repos/staging-i686/
  libgnome-keyring/repos/staging-i686/PKGBUILD
(from rev 201650, libgnome-keyring/trunk/PKGBUILD)
  libgnome-keyring/repos/staging-x86_64/
  libgnome-keyring/repos/staging-x86_64/PKGBUILD
(from rev 201650, libgnome-keyring/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   29 +
 staging-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: libgnome-keyring/repos/staging-i686/PKGBUILD (from rev 201650, 
libgnome-keyring/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 11:34:14 UTC (rev 201651)
@@ -0,0 +1,29 @@
+#$Id$
+#Maintainer: Jan De Groot 
+
+pkgname=libgnome-keyring
+pkgver=3.10.1
+pkgrel=2
+pkgdesc="GNOME keyring client library"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('dbus-core' 'glib2' 'libgcrypt')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
+options=('!emptydirs')
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('052cf1121ba823359afe534c425f7e216c6a2b1a2b316dee279dcf9032423772')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-keyring
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: libgnome-keyring/repos/staging-x86_64/PKGBUILD (from rev 201650, 
libgnome-keyring/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 11:34:14 UTC (rev 201651)
@@ -0,0 +1,29 @@
+#$Id$
+#Maintainer: Jan De Groot 
+
+pkgname=libgnome-keyring
+pkgver=3.10.1
+pkgrel=2
+pkgdesc="GNOME keyring client library"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('dbus-core' 'glib2' 'libgcrypt')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
+options=('!emptydirs')
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('052cf1121ba823359afe534c425f7e216c6a2b1a2b316dee279dcf9032423772')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-keyring
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}



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

2013-12-17 Thread Jan Steffens
Date: Tuesday, December 17, 2013 @ 12:32:55
  Author: heftig
Revision: 201649

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

Added:
  libsecret/repos/staging-i686/
  libsecret/repos/staging-i686/PKGBUILD
(from rev 201648, libsecret/trunk/PKGBUILD)
  libsecret/repos/staging-x86_64/
  libsecret/repos/staging-x86_64/PKGBUILD
(from rev 201648, libsecret/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   27 +++
 staging-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: libsecret/repos/staging-i686/PKGBUILD (from rev 201648, 
libsecret/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-17 11:32:55 UTC (rev 201649)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libsecret
+pkgver=0.16
+pkgrel=2
+pkgdesc='Library for storing and retrieving passwords and other secrets.'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="https://live.gnome.org/Libsecret";
+depends=('glib2' 'libgcrypt')
+makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'vala')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('b859406c490a2011b35f5940235304315b343f2efd554800285f24b95e14f218')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: libsecret/repos/staging-x86_64/PKGBUILD (from rev 201648, 
libsecret/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-17 11:32:55 UTC (rev 201649)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libsecret
+pkgver=0.16
+pkgrel=2
+pkgdesc='Library for storing and retrieving passwords and other secrets.'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="https://live.gnome.org/Libsecret";
+depends=('glib2' 'libgcrypt')
+makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'vala')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('b859406c490a2011b35f5940235304315b343f2efd554800285f24b95e14f218')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}



  1   2   >