[arch-commits] Commit in nvidia-340xx/repos (8 files)

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 07:34:32
  Author: fyan
Revision: 268631

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

Added:
  nvidia-340xx/repos/testing-i686/
  nvidia-340xx/repos/testing-i686/PKGBUILD
(from rev 268630, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/testing-i686/linux-4.6.patch
(from rev 268630, nvidia-340xx/trunk/linux-4.6.patch)
  nvidia-340xx/repos/testing-i686/nvidia-340xx.install
(from rev 268630, nvidia-340xx/trunk/nvidia-340xx.install)
  nvidia-340xx/repos/testing-x86_64/
  nvidia-340xx/repos/testing-x86_64/PKGBUILD
(from rev 268630, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/testing-x86_64/linux-4.6.patch
(from rev 268630, nvidia-340xx/trunk/linux-4.6.patch)
  nvidia-340xx/repos/testing-x86_64/nvidia-340xx.install
(from rev 268630, nvidia-340xx/trunk/nvidia-340xx.install)

-+
 testing-i686/PKGBUILD   |   71 
 testing-i686/linux-4.6.patch|  150 ++
 testing-i686/nvidia-340xx.install   |   13 ++
 testing-x86_64/PKGBUILD |   71 
 testing-x86_64/linux-4.6.patch  |  150 ++
 testing-x86_64/nvidia-340xx.install |   13 ++
 6 files changed, 468 insertions(+)

Copied: nvidia-340xx/repos/testing-i686/PKGBUILD (from rev 268630, 
nvidia-340xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-05-27 05:34:32 UTC (rev 268631)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.96
+_extramodules=extramodules-4.6-ARCH
+pkgrel=13
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-340xx-libgl=${pkgver}" "nvidia-340xx-utils=${pkgver}" 
'linux' 'linux-headers>=4.6' 'linux-headers<4.7')
+conflicts=('nvidia')
+license=('custom')
+options=(!strip)
+source=('linux-4.6.patch')
+source_i686+=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;)
+source_x86_64+=("ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('1f2baa65fd351ae7a2fc3dfd71ffcbfe')
+md5sums_i686=('cb64b165b638671bcdc75bcf297b8d90')
+md5sums_x86_64=('7bdbcee13bade63227933d9217571882')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+patch -p1 --no-backup-if-mismatch -i ../linux-4.6.patch
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.6' 'linux<4.7' 'libgl' "nvidia-340xx-utils=${pkgver}")
+conflict+=('nvidia-340xx-dkms')
+install=nvidia-340xx.install
+
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver")
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia-340xx')
+
+cd ${_pkg}
+install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}"/usr/src/nvidia-${pkgver}
+echo 'blacklist nouveau' > "${pkgdir}"/usr/lib/modprobe.d/nvidia.conf
+cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
+}

Copied: nvidia-340xx/repos/testing-i686/linux-4.6.patch (from rev 268630, 
nvidia-340xx/trunk/linux-4.6.patch)
===
--- testing-i686/linux-4.6.patch(rev 0)
+++ testing-i686/linux-4.6.patch2016-05-27 05:34:32 UTC (rev 268631)
@@ -0,0 +1,150 @@
+--- /dev/null
 b/kernel/nv-mm.h
+@@ -0,0 +1,55 @@
++/***
++Copyright (c) 2016 NVIDIA Corporation

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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 07:33:44
  Author: fyan
Revision: 268630

upgpkg: nvidia-340xx 340.96-13

made a patch to work with newer kernels

Added:
  nvidia-340xx/trunk/linux-4.6.patch
Modified:
  nvidia-340xx/trunk/PKGBUILD

-+
 PKGBUILD|   10 ++-
 linux-4.6.patch |  150 ++
 2 files changed, 157 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 05:17:40 UTC (rev 268629)
+++ PKGBUILD2016-05-27 05:33:44 UTC (rev 268630)
@@ -13,8 +13,10 @@
 conflicts=('nvidia')
 license=('custom')
 options=(!strip)
+source=('linux-4.6.patch')
 
source_i686+=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;)
 
source_x86_64+=("ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('1f2baa65fd351ae7a2fc3dfd71ffcbfe')
 md5sums_i686=('cb64b165b638671bcdc75bcf297b8d90')
 md5sums_x86_64=('7bdbcee13bade63227933d9217571882')
 
@@ -25,6 +27,9 @@
 sh "${_pkg}.run" --extract-only
 cd "${_pkg}"
 # patches here
+patch -p1 --no-backup-if-mismatch -i ../linux-4.6.patch
+
+cp -a kernel kernel-dkms
 }
 
 build() {
@@ -38,7 +43,7 @@
 
 package_nvidia-340xx() {
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
-depends=('linux>=4.5' 'linux<4.6' 'libgl' "nvidia-340xx-utils=${pkgver}")
+depends=('linux>=4.6' 'linux<4.7' 'libgl' "nvidia-340xx-utils=${pkgver}")
 conflict+=('nvidia-340xx-dkms')
 install=nvidia-340xx.install
 
@@ -59,9 +64,8 @@
 conflicts+=('nvidia-340xx')
 
 cd ${_pkg}
-make -C kernel clean
 install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
-cp -dr --no-preserve='ownership' kernel 
"${pkgdir}"/usr/src/nvidia-${pkgver}
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}"/usr/src/nvidia-${pkgver}
 echo 'blacklist nouveau' > "${pkgdir}"/usr/lib/modprobe.d/nvidia.conf
 cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
 }

Added: linux-4.6.patch
===
--- linux-4.6.patch (rev 0)
+++ linux-4.6.patch 2016-05-27 05:33:44 UTC (rev 268630)
@@ -0,0 +1,150 @@
+--- /dev/null
 b/kernel/nv-mm.h
+@@ -0,0 +1,55 @@
++/***
++Copyright (c) 2016 NVIDIA Corporation
++
++Permission is hereby granted, free of charge, to any person obtaining a 
copy
++of this software and associated documentation files (the "Software"), to
++deal in the Software without restriction, including without limitation the
++rights to use, copy, modify, merge, publish, distribute, sublicense, 
and/or
++sell copies of the Software, and to permit persons to whom the Software is
++furnished to do so, subject to the following conditions:
++
++The above copyright notice and this permission notice shall be
++included in all copies or substantial portions of the Software.
++
++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
++IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
++LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
++FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
++DEALINGS IN THE SOFTWARE.
++
++***/
++#ifndef __NV_MM_H__
++#define __NV_MM_H__
++
++/*  get_user_pages_remote() was added by:
++ *2016 Feb 12: 1e9877902dc7e11d2be038371c6fbf2dfcd469d7
++ *
++ *  The very next commit (cde70140fed8429acf7a14e2e2cbd3e329036653)
++ *  deprecated the 8-argument version of get_user_pages for the
++ *  non-remote case (calling get_user_pages with current and current->mm).
++ *
++ *  The guidelines are: call NV_GET_USER_PAGES_REMOTE if you need the 
8-argument
++ *  version that uses something other than current and current->mm. Use
++ *  NV_GET_USER_PAGES if you are refering to current and current->mm.
++ *
++*  Note that get_user_pages_remote() requires the caller to hold a reference 
on
++*  the task_struct (if non-NULL) and the mm_struct. This will always be true
++*  when using current and current->mm. If the kernel passes the driver a vma
++*  via driver callback, the kernel holds a reference on vma->vm_mm over that
++*  callback.
++ */
++
++#if defined(NV_GET_USER_PAGES_REMOTE_PRESENT)
++#define NV_GET_USER_PAGES   get_user_pages
++#define NV_GET_USER_PAGES_REMOTEget_user_pages_remote
++#else
++#define NV_GET_USER_PAGES(start, nr_pages, write, force, pages, vmas) \
++

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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 07:17:40
  Author: fyan
Revision: 268629

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

Added:
  subversion/repos/staging-i686/
  subversion/repos/staging-i686/PKGBUILD
(from rev 268628, subversion/trunk/PKGBUILD)
  subversion/repos/staging-i686/ruby-frozen-nil.patch
(from rev 268628, subversion/trunk/ruby-frozen-nil.patch)
  subversion/repos/staging-i686/subversion.install
(from rev 268628, subversion/trunk/subversion.install)
  subversion/repos/staging-i686/subversion.rpath.fix.patch
(from rev 268628, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/staging-i686/svn
(from rev 268628, subversion/trunk/svn)
  subversion/repos/staging-i686/svnserve.conf
(from rev 268628, subversion/trunk/svnserve.conf)
  subversion/repos/staging-i686/svnserve.service
(from rev 268628, subversion/trunk/svnserve.service)
  subversion/repos/staging-i686/svnserve.tmpfiles
(from rev 268628, subversion/trunk/svnserve.tmpfiles)
  subversion/repos/staging-x86_64/
  subversion/repos/staging-x86_64/PKGBUILD
(from rev 268628, subversion/trunk/PKGBUILD)
  subversion/repos/staging-x86_64/ruby-frozen-nil.patch
(from rev 268628, subversion/trunk/ruby-frozen-nil.patch)
  subversion/repos/staging-x86_64/subversion.install
(from rev 268628, subversion/trunk/subversion.install)
  subversion/repos/staging-x86_64/subversion.rpath.fix.patch
(from rev 268628, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/staging-x86_64/svn
(from rev 268628, subversion/trunk/svn)
  subversion/repos/staging-x86_64/svnserve.conf
(from rev 268628, subversion/trunk/svnserve.conf)
  subversion/repos/staging-x86_64/svnserve.service
(from rev 268628, subversion/trunk/svnserve.service)
  subversion/repos/staging-x86_64/svnserve.tmpfiles
(from rev 268628, subversion/trunk/svnserve.tmpfiles)

---+
 staging-i686/PKGBUILD |  110 
 staging-i686/ruby-frozen-nil.patch|   42 ++
 staging-i686/subversion.install   |7 +
 staging-i686/subversion.rpath.fix.patch   |   11 ++
 staging-i686/svn  |   11 ++
 staging-i686/svnserve.conf|5 +
 staging-i686/svnserve.service |   11 ++
 staging-i686/svnserve.tmpfiles|1 
 staging-x86_64/PKGBUILD   |  110 
 staging-x86_64/ruby-frozen-nil.patch  |   42 ++
 staging-x86_64/subversion.install |7 +
 staging-x86_64/subversion.rpath.fix.patch |   11 ++
 staging-x86_64/svn|   11 ++
 staging-x86_64/svnserve.conf  |5 +
 staging-x86_64/svnserve.service   |   11 ++
 staging-x86_64/svnserve.tmpfiles  |1 
 16 files changed, 396 insertions(+)

Copied: subversion/repos/staging-i686/PKGBUILD (from rev 268628, 
subversion/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-05-27 05:17:40 UTC (rev 268629)
@@ -0,0 +1,110 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Paul Mattal 
+# Contributor: Jason Chu 
+
+pkgname=subversion
+pkgver=1.9.4
+pkgrel=1
+pkgdesc="A Modern Concurrent Version Control System"
+arch=('i686' 'x86_64')
+url="http://subversion.apache.org/;
+license=('APACHE')
+depends=('sqlite' 'file' 'serf' 'systemd')
+makedepends=('apache' 'python2' 'perl' 'swig' 'java-environment'
+ 'libgnome-keyring' 'kdelibs' 'ruby')
+optdepends=('libgnome-keyring: for GNOME Keyring for auth credentials'
+'kdebase-runtime: for KWallet for auth credentials'
+'bash-completion: for svn bash completion'
+'python2: for some hook scripts'
+'java-environment: for Java support'
+'ruby: for some hook scripts')
+provides=('svn')
+backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
+options=('!makeflags' '!emptydirs')
+install=${pkgname}.install
+source=(http://www.apache.org/dist/subversion/subversion-${pkgver}.tar.bz2{,.asc}
+svn
+svnserve.conf
+svnserve.tmpfiles
+svnserve.service
+subversion.rpath.fix.patch
+ruby-frozen-nil.patch)
+md5sums=('29121a038f87641055a8183f49e9739f'
+ 'SKIP'
+ 'a0db6dd43af33952739b6ec089852630'
+ 'af1dd703cc28e61d2e2a132ce3eec37a'
+ 'bb2857eceafcfac35dde39dcffad2314'
+ '733011145b8a8e74baf4c9fc9197b3e8'
+ '31c0f079a0b0815d6af5673ab7be96af'
+ '6b1e5abe57edcc662582bcf05fee34bb')
+validpgpkeys=('19BBCAEF7B19B280A0E2175E62D48FAD16A0DE01'
+  '8BC4DAE0C5A4D65F404401074F7DBAA99A59B973'
+  

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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 07:16:34
  Author: fyan
Revision: 268628

upgpkg: subversion 1.9.4-1

Perl 5.24 rebuild

Added:
  subversion/trunk/ruby-frozen-nil.patch
Modified:
  subversion/trunk/PKGBUILD
Deleted:
  subversion/trunk/fix_ruby22_tests.patch

+
 PKGBUILD   |6 -
 fix_ruby22_tests.patch |  174 ---
 ruby-frozen-nil.patch  |   42 +++
 3 files changed, 45 insertions(+), 177 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 21:21:03 UTC (rev 268627)
+++ PKGBUILD2016-05-27 05:16:34 UTC (rev 268628)
@@ -31,7 +31,7 @@
 svnserve.tmpfiles
 svnserve.service
 subversion.rpath.fix.patch
-fix_ruby22_tests.patch)
+ruby-frozen-nil.patch)
 md5sums=('29121a038f87641055a8183f49e9739f'
  'SKIP'
  'a0db6dd43af33952739b6ec089852630'
@@ -39,7 +39,7 @@
  'bb2857eceafcfac35dde39dcffad2314'
  '733011145b8a8e74baf4c9fc9197b3e8'
  '31c0f079a0b0815d6af5673ab7be96af'
- 'e5a59f43af24c103477e09bc1120831d')
+ '6b1e5abe57edcc662582bcf05fee34bb')
 validpgpkeys=('19BBCAEF7B19B280A0E2175E62D48FAD16A0DE01'
   '8BC4DAE0C5A4D65F404401074F7DBAA99A59B973'
   'BA3C15B1337CF0FB222BD41A1BCA6586A347943F'
@@ -49,7 +49,7 @@
 prepare() {
cd ${pkgname}-${pkgver}
patch -Np0 -i ../subversion.rpath.fix.patch
-   patch -p1 -i ../fix_ruby22_tests.patch
+   patch -p1 -i ../ruby-frozen-nil.patch
sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
tools/hook-scripts/{,mailer/{,tests/}}*.py subversion/tests/cmdline/*.py
 }
 

Deleted: fix_ruby22_tests.patch
===
--- fix_ruby22_tests.patch  2016-05-26 21:21:03 UTC (rev 268627)
+++ fix_ruby22_tests.patch  2016-05-27 05:16:34 UTC (rev 268628)
@@ -1,174 +0,0 @@
-commit 1bf46d7f134b24a8f594a0e108056aed67759590
-Author: Anatol Pomozov 
-Date:   Tue Dec 30 04:50:55 2014 -0800
-
-Fix test for ruby 2.2
-
-The main source of problems with ruby 2.2 is that it uses new test-unit 
framework
-that changes some API.
-
-In partcular all assert_* functions are void, but our tests expect bool. 
Change tests and do
-not check output of assert_* functions.
-
-Do not override TestCase::inherit function as it is used by the framework 
itself.
-
-In ruby 2.2 bool is frozen object so we cannot modify it.
-
-diff --git a/subversion/bindings/swig/ruby/test/my-assertions.rb 
b/subversion/bindings/swig/ruby/test/my-assertions.rb
-index 77c42e7..91f7ad8 100644
 a/subversion/bindings/swig/ruby/test/my-assertions.rb
-+++ b/subversion/bindings/swig/ruby/test/my-assertions.rb
-@@ -24,41 +24,13 @@ module Test
-   module Unit
- module Assertions
- 
--  # make an intermediary assertion block handler
--  def _my_assert_block()
--   if RUBY_VERSION > '1.9'
-- assert_block do
--   yield
-- end
--   else
-- _wrap_assertion do
--   yield
-- end
--   end
--  end
--
--  def assert_true(boolean, message=nil)
--_my_assert_block do
--  assert_equal(true, boolean, message)
--end
--  end
--
--  def assert_false(boolean, message=nil)
--_my_assert_block do
--  assert_equal(false, boolean, message)
--end
--  end
--
-   def assert_nested_sorted_array(expected, actual, message=nil)
--_my_assert_block do
-   assert_equal(expected.collect {|elem| elem.sort},
-actual.collect {|elem| elem.sort},
-message)
--end
-   end
- 
-   def assert_equal_log_entries(expected, actual, message=nil)
--_my_assert_block do
-   actual = actual.collect do |entry|
- changed_paths = entry.changed_paths
- changed_paths.each_key do |path|
-@@ -73,7 +45,6 @@ module Test
-  entry.has_children?]
-   end
-   assert_equal(expected, actual, message)
--end
-   end
- end
-   end
-diff --git a/subversion/bindings/swig/ruby/test/test-unit-ext.rb 
b/subversion/bindings/swig/ruby/test/test-unit-ext.rb
-index ce88d75..62a1508 100644
 a/subversion/bindings/swig/ruby/test/test-unit-ext.rb
-+++ b/subversion/bindings/swig/ruby/test/test-unit-ext.rb
-@@ -18,6 +18,6 @@
- # 
- 
- require "test-unit-ext/always-show-result" if RUBY_VERSION < '1.9.3'
--require "test-unit-ext/priority"
-+#require "test-unit-ext/priority"
- require "test-unit-ext/backtrace-filter" if RUBY_VERSION < '1.9.3'
- require "test-unit-ext/long-display-for-emacs" if RUBY_VERSION < '1.9.3'
-diff --git a/subversion/bindings/swig/ruby/test/test_delta.rb 
b/subversion/bindings/swig/ruby/test/test_delta.rb
-index 

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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:35:04
  Author: fyan
Revision: 177162

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-27 03:34:42 UTC (rev 177161)
+++ community-i686/PKGBUILD 2016-05-27 03:35:04 UTC (rev 177162)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-persistent
-pkgname=('python-persistent' 'python2-persistent')
-pkgver=4.2.0
-pkgrel=1
-pkgdesc="Translucent persistent objects"
-arch=('i686' 'x86_64')
-license=('ZPL')
-url="http://www.zope.org/Products/ZODB;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
- 'python2-zope-interface' 'git')
-checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/zopefoundation/persistent.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a persistent{,-py2}
-}
-
-build() {
-  cd "$srcdir"/persistent
-  python setup.py build
-
-  cd "$srcdir"/persistent-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/persistent
-  nosetests3
-
-  cd "$srcdir"/persistent-py2
-  nosetests2
-}
-
-package_python-persistent() {
-  depends=('python-zope-interface')
-
-  cd persistent
-  python setup.py install --root="${pkgdir}" --optimize=1
-}
-
-package_python2-persistent() {
-  depends=('python2-zope-interface')
-
-  cd persistent-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: python-persistent/repos/community-i686/PKGBUILD (from rev 177161, 
python-persistent/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-27 03:35:04 UTC (rev 177162)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-persistent
+pkgname=('python-persistent' 'python2-persistent')
+pkgver=4.2.1
+pkgrel=1
+pkgdesc="Translucent persistent objects"
+arch=('i686' 'x86_64')
+license=('ZPL')
+url="http://www.zope.org/Products/ZODB;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
+ 'python2-zope-interface' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/zopefoundation/persistent.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a persistent{,-py2}
+}
+
+build() {
+  cd "$srcdir"/persistent
+  python setup.py build
+
+  cd "$srcdir"/persistent-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/persistent
+  nosetests3
+
+  cd "$srcdir"/persistent-py2
+  nosetests2
+}
+
+package_python-persistent() {
+  depends=('python-zope-interface')
+
+  cd persistent
+  python setup.py install --root="${pkgdir}" --optimize=1
+}
+
+package_python2-persistent() {
+  depends=('python2-zope-interface')
+
+  cd persistent-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-27 03:34:42 UTC (rev 177161)
+++ community-x86_64/PKGBUILD   2016-05-27 03:35:04 UTC (rev 177162)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-persistent
-pkgname=('python-persistent' 'python2-persistent')
-pkgver=4.2.0
-pkgrel=1
-pkgdesc="Translucent persistent objects"
-arch=('i686' 'x86_64')
-license=('ZPL')
-url="http://www.zope.org/Products/ZODB;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
- 'python2-zope-interface' 'git')
-checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/zopefoundation/persistent.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a persistent{,-py2}
-}
-
-build() {
-  cd "$srcdir"/persistent
-  python setup.py build
-
-  cd "$srcdir"/persistent-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/persistent
-  nosetests3
-
-  cd "$srcdir"/persistent-py2
-  nosetests2
-}
-
-package_python-persistent() {
-  depends=('python-zope-interface')
-
-  cd persistent
-  python setup.py install --root="${pkgdir}" --optimize=1
-}
-
-package_python2-persistent() {
-  depends=('python2-zope-interface')
-
-  cd persistent-py2
-  python2 setup.py install 

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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:34:42
  Author: fyan
Revision: 177161

upgpkg: python-persistent 4.2.1-1

Modified:
  python-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 03:32:14 UTC (rev 177160)
+++ PKGBUILD2016-05-27 03:34:42 UTC (rev 177161)
@@ -3,7 +3,7 @@
 
 pkgbase=python-persistent
 pkgname=('python-persistent' 'python2-persistent')
-pkgver=4.2.0
+pkgver=4.2.1
 pkgrel=1
 pkgdesc="Translucent persistent objects"
 arch=('i686' 'x86_64')


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:32:14
  Author: fyan
Revision: 177160

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-27 03:32:00 UTC (rev 177159)
+++ PKGBUILD2016-05-27 03:32:14 UTC (rev 177160)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: mutantmonkey 
-
-pkgbase=python-amqp
-pkgname=('python-amqp' 'python2-amqp')
-pkgver=1.4.9
-pkgrel=1
-pkgdesc="Low-level AMQP client for Python (fork of amqplib)"
-arch=('any')
-url="http://github.com/celery/py-amqp;
-license=('LGPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
-source=("https://pypi.python.org/packages/source/a/amqp/amqp-$pkgver.tar.gz;)
-md5sums=('df57dde763ba2dea25b3fa92dfe43c19')
-
-prepare() {
-  cp -a amqp-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/amqp-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/amqp-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/amqp-$pkgver"
-  nosetests3
-
-  cd "$srcdir/amqp-$pkgver-py2"
-  nosetests2
-}
-
-package_python-amqp() {
-  depends=('python')
-
-  cd amqp-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-amqp() {
-  depends=('python2')
-
-  cd amqp-$pkgver-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-amqp/repos/community-any/PKGBUILD (from rev 177159, 
python-amqp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-27 03:32:14 UTC (rev 177160)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: mutantmonkey 
+
+pkgbase=python-amqp
+pkgname=('python-amqp' 'python2-amqp')
+pkgver=2.0.0
+_commit=a0c96ff8584ec59659656eed3e0e42d29f52dade
+pkgrel=1
+pkgdesc="Low-level AMQP client for Python (fork of amqplib)"
+arch=('any')
+url="http://github.com/celery/py-amqp;
+license=('LGPL')
+makedepends=('python-vine' 'python2-vine' 'git')
+source=("git+https://github.com/celery/py-amqp.git#commit=$_commit;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a py-amqp{,-py2}
+}
+
+build() {
+  cd "$srcdir"/py-amqp
+  python setup.py build
+
+  cd "$srcdir"/py-amqp-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/py-amqp
+  nosetests3
+
+  cd "$srcdir"/py-amqp-py2
+  nosetests2
+}
+
+package_python-amqp() {
+  depends=('python-vine')
+
+  cd py-amqp
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-amqp() {
+  depends=('python2-vine')
+
+  cd py-amqp-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:32:00
  Author: fyan
Revision: 177159

upgpkg: python-amqp 2.0.0-1

Modified:
  python-amqp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 03:28:12 UTC (rev 177158)
+++ PKGBUILD2016-05-27 03:32:00 UTC (rev 177159)
@@ -4,48 +4,48 @@
 
 pkgbase=python-amqp
 pkgname=('python-amqp' 'python2-amqp')
-pkgver=1.4.9
+pkgver=2.0.0
+_commit=a0c96ff8584ec59659656eed3e0e42d29f52dade
 pkgrel=1
 pkgdesc="Low-level AMQP client for Python (fork of amqplib)"
 arch=('any')
 url="http://github.com/celery/py-amqp;
 license=('LGPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
-source=("https://pypi.python.org/packages/source/a/amqp/amqp-$pkgver.tar.gz;)
-md5sums=('df57dde763ba2dea25b3fa92dfe43c19')
+makedepends=('python-vine' 'python2-vine' 'git')
+source=("git+https://github.com/celery/py-amqp.git#commit=$_commit;)
+md5sums=('SKIP')
 
 prepare() {
-  cp -a amqp-$pkgver{,-py2}
+  cp -a py-amqp{,-py2}
 }
 
 build() {
-  cd "$srcdir/amqp-$pkgver"
+  cd "$srcdir"/py-amqp
   python setup.py build
 
-  cd "$srcdir/amqp-$pkgver-py2"
+  cd "$srcdir"/py-amqp-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/amqp-$pkgver"
+  cd "$srcdir"/py-amqp
   nosetests3
 
-  cd "$srcdir/amqp-$pkgver-py2"
+  cd "$srcdir"/py-amqp-py2
   nosetests2
 }
 
 package_python-amqp() {
-  depends=('python')
+  depends=('python-vine')
 
-  cd amqp-$pkgver
+  cd py-amqp
   python setup.py install --root="$pkgdir/" --optimize=1
 }
 
 package_python2-amqp() {
-  depends=('python2')
+  depends=('python2-vine')
 
-  cd amqp-$pkgver-py2
+  cd py-amqp-py2
   python2 setup.py install --root="$pkgdir/" --optimize=1
 }
 


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:28:12
  Author: fyan
Revision: 177158

archrelease: copy trunk to community-any

Added:
  python-vine/repos/community-any/
  python-vine/repos/community-any/PKGBUILD
(from rev 177157, python-vine/trunk/PKGBUILD)

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

Copied: python-vine/repos/community-any/PKGBUILD (from rev 177157, 
python-vine/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-05-27 03:28:12 UTC (rev 177158)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-vine
+pkgname=('python-vine' 'python2-vine')
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Promises, promises, promises"
+arch=('any')
+license=('BSD')
+url="https://github.com/celery/vine;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-case' 
'python2-case' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/celery/vine.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a vine{,-py2}
+}
+
+build() {
+  cd "$srcdir"/vine
+  python setup.py build
+
+  cd "$srcdir"/vine-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/vine
+  python setup.py test
+
+  cd "$srcdir"/vine-py2
+  python2 setup.py test
+}
+
+package_python-vine() {
+  depends=('python-case')
+
+  cd vine
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-vine() {
+  depends=('python2-case')
+
+  cd vine-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:27:58
  Author: fyan
Revision: 177157

addpkg: python-vine 1.1.0-1

Added:
  python-vine/
  python-vine/repos/
  python-vine/trunk/
  python-vine/trunk/PKGBUILD

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

Added: python-vine/trunk/PKGBUILD
===
--- python-vine/trunk/PKGBUILD  (rev 0)
+++ python-vine/trunk/PKGBUILD  2016-05-27 03:27:58 UTC (rev 177157)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-vine
+pkgname=('python-vine' 'python2-vine')
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Promises, promises, promises"
+arch=('any')
+license=('BSD')
+url="https://github.com/celery/vine;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-case' 
'python2-case' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/celery/vine.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a vine{,-py2}
+}
+
+build() {
+  cd "$srcdir"/vine
+  python setup.py build
+
+  cd "$srcdir"/vine-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/vine
+  python setup.py test
+
+  cd "$srcdir"/vine-py2
+  python2 setup.py test
+}
+
+package_python-vine() {
+  depends=('python-case')
+
+  cd vine
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-vine() {
+  depends=('python2-case')
+
+  cd vine-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:26:59
  Author: fyan
Revision: 177155

upgpkg: python2-unittest2 1.1.0-4

remove argparse from installed egg-info's requirements

Modified:
  python2-unittest2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 03:20:29 UTC (rev 177154)
+++ PKGBUILD2016-05-27 03:26:59 UTC (rev 177155)
@@ -4,7 +4,7 @@
 pkgname=python2-unittest2
 _pkgname=unittest2
 pkgver=1.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc="New features in unittest for Python 2"
 url="http://www.voidspace.org.uk/python/articles/unittest2.shtml;
 arch=('any')
@@ -16,6 +16,10 @@
 
sha512sums=('ccd701194994623422d5c0bdd88d89b279cbbc67cd96b3cfee7f48e1c32f87c154a3378771e2909afa89d9c13692173ccbd692312b1ad7b9d05cf8c115fcc14b'
 
'85242ed21eb191fa0bab16f3e390957f1c8b7bc3b79aefbea2d925feaa8248f33d6e22afaa7d1c07c5fcb5e800910aa2a1cb52d892c104337bbdb57a380373a2')
 
+prepare() {
+  sed -i "s/'argparse', //" ${_pkgname}-${pkgver}/setup.py
+}
+
 build() {
   cd ${_pkgname}-${pkgver}
   python2 setup.py build


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:27:13
  Author: fyan
Revision: 177156

archrelease: copy trunk to community-any

Added:
  python2-unittest2/repos/community-any/LICENSE
(from rev 177155, python2-unittest2/trunk/LICENSE)
  python2-unittest2/repos/community-any/PKGBUILD
(from rev 177155, python2-unittest2/trunk/PKGBUILD)
Deleted:
  python2-unittest2/repos/community-any/LICENSE
  python2-unittest2/repos/community-any/PKGBUILD

--+
 LICENSE  |   64 +--
 PKGBUILD |   66 -
 2 files changed, 67 insertions(+), 63 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2016-05-27 03:26:59 UTC (rev 177155)
+++ LICENSE 2016-05-27 03:27:13 UTC (rev 177156)
@@ -1,32 +0,0 @@
-Copyright (c) 2003-2010, Michael Foord
-All rights reserved.
-E-mail : fuzzyman AT voidspace DOT org DOT uk
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
-
-* Redistributions of source code must retain the above copyright
-  notice, this list of conditions and the following disclaimer.
-
-* Redistributions in binary form must reproduce the above
-  copyright notice, this list of conditions and the following
-  disclaimer in the documentation and/or other materials provided
-  with the distribution.
-
-* Neither the name of Michael Foord nor the name of Voidspace
-  may be used to endorse or promote products derived from this
-  software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Copied: python2-unittest2/repos/community-any/LICENSE (from rev 177155, 
python2-unittest2/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2016-05-27 03:27:13 UTC (rev 177156)
@@ -0,0 +1,32 @@
+Copyright (c) 2003-2010, Michael Foord
+All rights reserved.
+E-mail : fuzzyman AT voidspace DOT org DOT uk
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above
+  copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided
+  with the distribution.
+
+* Neither the name of Michael Foord nor the name of Voidspace
+  may be used to endorse or promote products derived from this
+  software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-27 03:26:59 UTC (rev 177155)
+++ PKGBUILD2016-05-27 03:27:13 UTC (rev 177156)
@@ -1,31 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Carl George < arch at cgtx dot us >
-
-pkgname=python2-unittest2
-_pkgname=unittest2
-pkgver=1.1.0
-pkgrel=3
-pkgdesc="New features in unittest for Python 2"
-url="http://www.voidspace.org.uk/python/articles/unittest2.shtml;
-arch=('any')
-license=('BSD')
-depends=('python2-six' 'python2-traceback2')
-makedepends=('python2-distribute')

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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:20:29
  Author: fyan
Revision: 177154

archrelease: copy trunk to community-any

Added:
  python-case/repos/community-any/
  python-case/repos/community-any/PKGBUILD
(from rev 177153, python-case/trunk/PKGBUILD)

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

Copied: python-case/repos/community-any/PKGBUILD (from rev 177153, 
python-case/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-05-27 03:20:29 UTC (rev 177154)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-case
+pkgname=('python-case' 'python2-case')
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Python unittest Utilities"
+arch=('any')
+license=('BSD')
+url="https://github.com/celery/case;
+makedepends=('python-nose' 'python2-nose' 'python2-mock' 'python2-unittest2' 
'git')
+checkdepends=('python-coverage' 'python2-coverage')
+source=("git+https://github.com/celery/case.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a case{,-py2}
+}
+
+build() {
+  cd "$srcdir"/case
+  python setup.py build
+
+  cd "$srcdir"/case-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/case
+  nosetests3
+
+  cd "$srcdir"/case-py2
+  nosetests2
+}
+
+package_python-case() {
+  depends=('python-nose')
+
+  cd case
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-case() {
+  depends=('python2-nose' 'python2-mock' 'python2-unittest2')
+
+  cd case-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:20:14
  Author: fyan
Revision: 177153

addpkg: python-case 1.1.4-1

Added:
  python-case/
  python-case/repos/
  python-case/trunk/
  python-case/trunk/PKGBUILD

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

Added: python-case/trunk/PKGBUILD
===
--- python-case/trunk/PKGBUILD  (rev 0)
+++ python-case/trunk/PKGBUILD  2016-05-27 03:20:14 UTC (rev 177153)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-case
+pkgname=('python-case' 'python2-case')
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Python unittest Utilities"
+arch=('any')
+license=('BSD')
+url="https://github.com/celery/case;
+makedepends=('python-nose' 'python2-nose' 'python2-mock' 'python2-unittest2' 
'git')
+checkdepends=('python-coverage' 'python2-coverage')
+source=("git+https://github.com/celery/case.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a case{,-py2}
+}
+
+build() {
+  cd "$srcdir"/case
+  python setup.py build
+
+  cd "$srcdir"/case-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/case
+  nosetests3
+
+  cd "$srcdir"/case-py2
+  nosetests2
+}
+
+package_python-case() {
+  depends=('python-nose')
+
+  cd case
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-case() {
+  depends=('python2-nose' 'python2-mock' 'python2-unittest2')
+
+  cd case-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:03:32
  Author: fyan
Revision: 177152

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

Added:
  deepin-desktop/repos/community-i686/PKGBUILD
(from rev 177151, deepin-desktop/trunk/PKGBUILD)
  deepin-desktop/repos/community-x86_64/PKGBUILD
(from rev 177151, deepin-desktop/trunk/PKGBUILD)
Deleted:
  deepin-desktop/repos/community-i686/PKGBUILD
  deepin-desktop/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-27 03:03:07 UTC (rev 177151)
+++ community-i686/PKGBUILD 2016-05-27 03:03:32 UTC (rev 177152)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=3.0.9
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Desktop module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-desktop;
-license=('GPL3')
-depends=('deepin-file-manager-backend' 'deepin-nautilus-properties' 
'gsettings-qt'
- 'deepin-daemon' 'deepin-tool-kit' 'startdde' 'deepin-dock' 'gtk2' 
'qt5-svg'
- 'qt5-x11extras')
-makedepends=('git')
-conflicts=('dde-desktop')
-replaces=('dde-desktop')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-i686/PKGBUILD (from rev 177151, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-27 03:03:32 UTC (rev 177152)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=3.0.10
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-desktop;
+license=('GPL3')
+depends=('deepin-file-manager-backend' 'deepin-nautilus-properties' 
'gsettings-qt'
+ 'deepin-daemon' 'deepin-tool-kit' 'startdde' 'deepin-dock' 'gtk2' 
'qt5-svg'
+ 'qt5-x11extras')
+makedepends=('git')
+conflicts=('dde-desktop')
+replaces=('dde-desktop')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-desktop
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-desktop
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-27 03:03:07 UTC (rev 177151)
+++ community-x86_64/PKGBUILD   2016-05-27 03:03:32 UTC (rev 177152)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=3.0.9
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Desktop module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-desktop;
-license=('GPL3')
-depends=('deepin-file-manager-backend' 'deepin-nautilus-properties' 
'gsettings-qt'
- 'deepin-daemon' 'deepin-tool-kit' 'startdde' 'deepin-dock' 'gtk2' 
'qt5-svg'
- 'qt5-x11extras')
-makedepends=('git')
-conflicts=('dde-desktop')
-replaces=('dde-desktop')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-x86_64/PKGBUILD (from rev 177151, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-05-27 03:03:32 UTC (rev 177152)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=3.0.10
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-desktop;
+license=('GPL3')
+depends=('deepin-file-manager-backend' 'deepin-nautilus-properties' 
'gsettings-qt'
+ 'deepin-daemon' 'deepin-tool-kit' 'startdde' 'deepin-dock' 'gtk2' 

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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:03:07
  Author: fyan
Revision: 177151

upgpkg: deepin-desktop 3.0.10-1

Modified:
  deepin-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 03:02:47 UTC (rev 177150)
+++ PKGBUILD2016-05-27 03:03:07 UTC (rev 177151)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-desktop
-pkgver=3.0.9
+pkgver=3.0.10
 pkgrel=1
 pkgdesc='Deepin desktop-environment - Desktop module'
 arch=('i686' 'x86_64')


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:02:47
  Author: fyan
Revision: 177150

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

Added:
  deepin-launcher/repos/community-i686/PKGBUILD
(from rev 177149, deepin-launcher/trunk/PKGBUILD)
  deepin-launcher/repos/community-x86_64/PKGBUILD
(from rev 177149, deepin-launcher/trunk/PKGBUILD)
Deleted:
  deepin-launcher/repos/community-i686/PKGBUILD
  deepin-launcher/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 2016-05-27 03:02:22 UTC (rev 177149)
+++ community-i686/PKGBUILD 2016-05-27 03:02:47 UTC (rev 177150)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-launcher
-pkgver=3.0.10
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Launcher module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-launcher;
-license=('GPL3')
-depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
- 'startdde' 'deepin-tool-kit' 'deepin-menu' 'deepin-daemon')
-makedepends=('git' 'qt5-tools')
-conflicts=('dde-launcher')
-replaces=('dde-launcher')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-launcher
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-launcher
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-launcher/repos/community-i686/PKGBUILD (from rev 177149, 
deepin-launcher/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-27 03:02:47 UTC (rev 177150)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=3.0.11
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Launcher module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-launcher;
+license=('GPL3')
+depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
+ 'startdde' 'deepin-tool-kit' 'deepin-menu' 'deepin-daemon')
+makedepends=('git' 'qt5-tools')
+conflicts=('dde-launcher')
+replaces=('dde-launcher')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-launcher
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-launcher
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-27 03:02:22 UTC (rev 177149)
+++ community-x86_64/PKGBUILD   2016-05-27 03:02:47 UTC (rev 177150)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-launcher
-pkgver=3.0.10
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Launcher module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-launcher;
-license=('GPL3')
-depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
- 'startdde' 'deepin-tool-kit' 'deepin-menu' 'deepin-daemon')
-makedepends=('git' 'qt5-tools')
-conflicts=('dde-launcher')
-replaces=('dde-launcher')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-launcher
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-launcher
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-launcher/repos/community-x86_64/PKGBUILD (from rev 177149, 
deepin-launcher/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-05-27 03:02:47 UTC (rev 177150)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=3.0.11
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Launcher module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-launcher;
+license=('GPL3')
+depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
+ 'startdde' 'deepin-tool-kit' 'deepin-menu' 'deepin-daemon')
+makedepends=('git' 'qt5-tools')
+conflicts=('dde-launcher')

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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:02:22
  Author: fyan
Revision: 177149

upgpkg: deepin-launcher 3.0.11-1

Modified:
  deepin-launcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 03:00:43 UTC (rev 177148)
+++ PKGBUILD2016-05-27 03:02:22 UTC (rev 177149)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-launcher
-pkgver=3.0.10
+pkgver=3.0.11
 pkgrel=1
 pkgdesc='Deepin desktop-environment - Launcher module'
 arch=('i686' 'x86_64')


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:00:43
  Author: fyan
Revision: 177148

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-27 03:00:28 UTC (rev 177147)
+++ PKGBUILD2016-05-27 03:00:43 UTC (rev 177148)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-_pypiname=exam
-pkgbase=python-exam
-pkgname=('python-exam' 'python2-exam')
-pkgver=0.10.5
-pkgrel=2
-pkgdesc="Helpers for better testing"
-arch=('any')
-url="https://pypi.python.org/pypi/exam;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-mock' 
'python2-mock' 'git')
-checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/Fluxx/exam.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a exam{,-py2}
-}
-
-build() {
-  cd "$srcdir/exam"
-  python setup.py build
-
-  cd "$srcdir/exam-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/exam"
-  python setup.py test
-
-  cd "$srcdir/exam-py2"
-  python2 setup.py test
-}
-
-package_python-exam() {
-  depends=('python-mock')
-
-  cd "$srcdir/$_pypiname"
-  python setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-exam() {
-  depends=('python2-mock')
-
-  cd "$srcdir/$_pypiname-py2"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-exam/repos/community-any/PKGBUILD (from rev 177147, 
python-exam/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-27 03:00:43 UTC (rev 177148)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_pypiname=exam
+pkgbase=python-exam
+pkgname=('python-exam' 'python2-exam')
+pkgver=0.10.6
+pkgrel=1
+pkgdesc="Helpers for better testing"
+arch=('any')
+url="https://pypi.python.org/pypi/exam;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-mock' 
'python2-mock' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/Fluxx/exam.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a exam{,-py2}
+}
+
+build() {
+  cd "$srcdir/exam"
+  python setup.py build
+
+  cd "$srcdir/exam-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/exam"
+  python setup.py test
+
+  cd "$srcdir/exam-py2"
+  python2 setup.py test
+}
+
+package_python-exam() {
+  depends=('python-mock')
+
+  cd "$srcdir/$_pypiname"
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-exam() {
+  depends=('python2-mock')
+
+  cd "$srcdir/$_pypiname-py2"
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 05:00:28
  Author: fyan
Revision: 177147

upgpkg: python-exam 0.10.6-1

Modified:
  python-exam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 02:57:37 UTC (rev 177146)
+++ PKGBUILD2016-05-27 03:00:28 UTC (rev 177147)
@@ -4,8 +4,8 @@
 _pypiname=exam
 pkgbase=python-exam
 pkgname=('python-exam' 'python2-exam')
-pkgver=0.10.5
-pkgrel=2
+pkgver=0.10.6
+pkgrel=1
 pkgdesc="Helpers for better testing"
 arch=('any')
 url="https://pypi.python.org/pypi/exam;


[arch-commits] Commit in deepin-wm-switcher/repos (4 files)

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 04:57:37
  Author: fyan
Revision: 177146

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

Added:
  deepin-wm-switcher/repos/community-i686/PKGBUILD
(from rev 177145, deepin-wm-switcher/trunk/PKGBUILD)
  deepin-wm-switcher/repos/community-x86_64/PKGBUILD
(from rev 177145, deepin-wm-switcher/trunk/PKGBUILD)
Deleted:
  deepin-wm-switcher/repos/community-i686/PKGBUILD
  deepin-wm-switcher/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-27 02:57:12 UTC (rev 177145)
+++ community-i686/PKGBUILD 2016-05-27 02:57:37 UTC (rev 177146)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-wm-switcher
-pkgver=1.0.3
-pkgrel=1
-pkgdesc='Window manager switcher for Deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-wm-switcher;
-license=('GPL3')
-groups=('deepin')
-depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'qt5-x11extras')
-makedepends=('git' 'cmake')
-source=("git+https://github.com/linuxdeepin/deepin-wm-switcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../$pkgname
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: deepin-wm-switcher/repos/community-i686/PKGBUILD (from rev 177145, 
deepin-wm-switcher/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-27 02:57:37 UTC (rev 177146)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-wm-switcher
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='Window manager switcher for Deepin'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-wm-switcher;
+license=('GPL3')
+groups=('deepin')
+depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'qt5-x11extras')
+makedepends=('git' 'cmake')
+source=("git+https://github.com/linuxdeepin/deepin-wm-switcher.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../$pkgname
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-27 02:57:12 UTC (rev 177145)
+++ community-x86_64/PKGBUILD   2016-05-27 02:57:37 UTC (rev 177146)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-wm-switcher
-pkgver=1.0.3
-pkgrel=1
-pkgdesc='Window manager switcher for Deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-wm-switcher;
-license=('GPL3')
-groups=('deepin')
-depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'qt5-x11extras')
-makedepends=('git' 'cmake')
-source=("git+https://github.com/linuxdeepin/deepin-wm-switcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../$pkgname
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: deepin-wm-switcher/repos/community-x86_64/PKGBUILD (from rev 177145, 
deepin-wm-switcher/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-05-27 02:57:37 UTC (rev 177146)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-wm-switcher
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='Window manager switcher for Deepin'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-wm-switcher;
+license=('GPL3')
+groups=('deepin')
+depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'qt5-x11extras')
+makedepends=('git' 'cmake')
+source=("git+https://github.com/linuxdeepin/deepin-wm-switcher.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../$pkgname
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in deepin-wm-switcher/trunk (PKGBUILD)

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 04:57:12
  Author: fyan
Revision: 177145

upgpkg: deepin-wm-switcher 1.0.4-1

Modified:
  deepin-wm-switcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 02:46:37 UTC (rev 177144)
+++ PKGBUILD2016-05-27 02:57:12 UTC (rev 177145)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=deepin-wm-switcher
-pkgver=1.0.3
+pkgver=1.0.4
 pkgrel=1
 pkgdesc='Window manager switcher for Deepin'
 arch=('i686' 'x86_64')


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 04:46:22
  Author: fyan
Revision: 177143

upgpkg: python-sortedcontainers 1.5.1-1

Modified:
  python-sortedcontainers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 01:55:15 UTC (rev 177142)
+++ PKGBUILD2016-05-27 02:46:22 UTC (rev 177143)
@@ -3,8 +3,8 @@
 
 pkgbase=python-sortedcontainers
 pkgname=('python-sortedcontainers' 'python2-sortedcontainers')
-pkgver=1.4.4
-pkgrel=2
+pkgver=1.5.1
+pkgrel=1
 pkgdesc="Python Sorted Container Types: SortedList, SortedDict, and SortedSet"
 arch=('any')
 license=('Apache')


[arch-commits] Commit in python-sortedcontainers/repos/community-any (2 files)

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 04:46:37
  Author: fyan
Revision: 177144

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-27 02:46:22 UTC (rev 177143)
+++ PKGBUILD2016-05-27 02:46:37 UTC (rev 177144)
@@ -1,49 +0,0 @@
-# $Id: PKGBUILD 141139 2015-09-20 03:14:59Z fyan $
-# Maintainer: Felix Yan 
-
-pkgbase=python-sortedcontainers
-pkgname=('python-sortedcontainers' 'python2-sortedcontainers')
-pkgver=1.4.4
-pkgrel=2
-pkgdesc="Python Sorted Container Types: SortedList, SortedDict, and SortedSet"
-arch=('any')
-license=('Apache')
-url="http://www.grantjenks.com/docs/sortedcontainers/;
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/grantjenks/sorted_containers.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a sorted_containers{,-py2}
-}
-
-build() {
-  cd "$srcdir/sorted_containers"
-  python setup.py build
-
-  cd "$srcdir/sorted_containers-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/sorted_containers"
-  nosetests3
-
-  cd "$srcdir/sorted_containers-py2"
-  nosetests2
-}
-
-package_python-sortedcontainers() {
-  depends=('python')
-
-  cd sorted_containers
-  python setup.py install --root="${pkgdir}" --optimize=1
-}
-
-package_python2-sortedcontainers() {
-  depends=('python2')
-
-  cd sorted_containers-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: python-sortedcontainers/repos/community-any/PKGBUILD (from rev 177143, 
python-sortedcontainers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-27 02:46:37 UTC (rev 177144)
@@ -0,0 +1,49 @@
+# $Id: PKGBUILD 141139 2015-09-20 03:14:59Z fyan $
+# Maintainer: Felix Yan 
+
+pkgbase=python-sortedcontainers
+pkgname=('python-sortedcontainers' 'python2-sortedcontainers')
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="Python Sorted Container Types: SortedList, SortedDict, and SortedSet"
+arch=('any')
+license=('Apache')
+url="http://www.grantjenks.com/docs/sortedcontainers/;
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/grantjenks/sorted_containers.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a sorted_containers{,-py2}
+}
+
+build() {
+  cd "$srcdir/sorted_containers"
+  python setup.py build
+
+  cd "$srcdir/sorted_containers-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/sorted_containers"
+  nosetests3
+
+  cd "$srcdir/sorted_containers-py2"
+  nosetests2
+}
+
+package_python-sortedcontainers() {
+  depends=('python')
+
+  cd sorted_containers
+  python setup.py install --root="${pkgdir}" --optimize=1
+}
+
+package_python2-sortedcontainers() {
+  depends=('python2')
+
+  cd sorted_containers-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 03:55:15
  Author: fyan
Revision: 177142

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 177141, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-27 01:54:49 UTC (rev 177141)
+++ PKGBUILD2016-05-27 01:55:15 UTC (rev 177142)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=3.9.2
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs' 'semver')
-provides=('nodejs-node-gyp')
-makedepends=('git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-options=('!emptydirs')
-source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd npm
-  make
-}
-
-package() {
-  cd npm
-  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-  
-  # Fix files owned by nobody:
-  chown -R root "$pkgdir/usr/lib/node_modules" 
-
-  # Fix wrong symlinks
-  for _dir in man1 man5 man7; do
-rm -f "$pkgdir"/usr/share/man/$_dir/*
-cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
-done
-  done
-  
-  # Provide node-gyp executable
-  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
-  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in semver; do
-rm -r $dep;
-node "$srcdir"/npm/cli.js link $dep;
-  done
-  
-  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 177141, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-27 01:55:15 UTC (rev 177142)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=3.9.3
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs' 'semver')
+provides=('nodejs-node-gyp')
+makedepends=('git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+options=('!emptydirs')
+source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd npm
+  make
+}
+
+package() {
+  cd npm
+  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+  
+  # Fix files owned by nobody:
+  chown -R root "$pkgdir/usr/lib/node_modules" 
+
+  # Fix wrong symlinks
+  for _dir in man1 man5 man7; do
+rm -f "$pkgdir"/usr/share/man/$_dir/*
+cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
+for _file in *; do
+  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
+done
+  done
+  
+  # Provide node-gyp executable
+  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
+  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in semver; do
+rm -r $dep;
+node "$srcdir"/npm/cli.js link $dep;
+  done
+  
+  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 03:54:49
  Author: fyan
Revision: 177141

upgpkg: npm 3.9.3-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 01:53:47 UTC (rev 177140)
+++ PKGBUILD2016-05-27 01:54:49 UTC (rev 177141)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=3.9.2
+pkgver=3.9.3
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')


[arch-commits] Commit in python-openstackclient/repos/community-any (2 files)

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 03:53:47
  Author: fyan
Revision: 177140

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  142 ++---
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-27 01:53:16 UTC (rev 177139)
+++ PKGBUILD2016-05-27 01:53:47 UTC (rev 177140)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-openstackclient
-pkgname=(python-openstackclient python2-openstackclient)
-pkgver=2.4.0
-pkgrel=1
-pkgdesc="OpenStack Command-line Client"
-arch=('any')
-url="http://docs.openstack.org/developer/python-openstackclient;
-license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
- 'python-babel' 'python2-babel' 'python-cliff' 'python2-cliff'
- 'python-keystoneclient' 'python2-keystoneclient' 'python-requests'
- 'python2-requests' 'python-keystoneauth1' 'python2-keystoneauth1' 
'python-oslo-utils'
- 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n' 
'python-openstacksdk'
- 'python2-openstacksdk' 'python-os-client-config' 
'python2-os-client-config'
- 'python-oslo-config' 'python2-oslo-config' 'python-glanceclient'
- 'python2-glanceclient' 'python-novaclient' 'python2-novaclient'
- 'python-cinderclient' 'python2-cinderclient' 'python-stevedore' 
'python2-stevedore'
- 'python-simplejson' 'python2-simplejson')
-checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 
'python2-requests-mock')
-source=("git+https://git.openstack.org/openstack/python-openstackclient#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a python-openstackclient{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-openstackclient
-  python setup.py build
-
-  cd "$srcdir"/python-openstackclient-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-openstackclient
-  python setup.py testr || warning "Tests failed"
-
-  cd "$srcdir"/python-openstackclient-py2
-  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
-}
-
-package_python-openstackclient() {
-  depends=('python-six' 'python-pbr' 'python-babel' 'python-cliff' 
'python-keystoneclient'
-   'python-requests' 'python-keystoneauth1' 'python-oslo-utils' 
'python-oslo-i18n'
-   'python-openstacksdk' 'python-os-client-config' 'python-oslo-config'
-   'python-glanceclient' 'python-novaclient' 'python-cinderclient' 
'python-stevedore'
-   'python-simplejson')
-
-  cd "$srcdir"/python-openstackclient
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-openstackclient() {
-  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-cliff' 
'python2-keystoneclient'
-   'python2-requests' 'python2-keystoneauth1' 'python2-oslo-utils' 
'python2-oslo-i18n'
-   'python2-openstacksdk' 'python2-os-client-config' 
'python2-oslo-config'
-   'python2-glanceclient' 'python2-novaclient' 'python2-cinderclient' 
'python2-stevedore'
-   'python2-simplejson')
-
-  cd "$srcdir"/python-openstackclient-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-
-  mv "$pkgdir"/usr/bin/openstack{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-openstackclient/repos/community-any/PKGBUILD (from rev 177139, 
python-openstackclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-27 01:53:47 UTC (rev 177140)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-openstackclient
+pkgname=(python-openstackclient python2-openstackclient)
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="OpenStack Command-line Client"
+arch=('any')
+url="http://docs.openstack.org/developer/python-openstackclient;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel' 'python-cliff' 'python2-cliff'
+ 'python-keystoneclient' 'python2-keystoneclient' 'python-requests'
+ 'python2-requests' 'python-keystoneauth1' 'python2-keystoneauth1' 
'python-oslo-utils'
+ 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n' 
'python-openstacksdk'
+ 'python2-openstacksdk' 'python-os-client-config' 
'python2-os-client-config'
+ 'python-oslo-config' 'python2-oslo-config' 'python-glanceclient'
+ 'python2-glanceclient' 'python-novaclient' 'python2-novaclient'
+

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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 03:53:16
  Author: fyan
Revision: 177139

upgpkg: python-openstackclient 2.5.0-1

Modified:
  python-openstackclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-27 01:51:44 UTC (rev 177138)
+++ PKGBUILD2016-05-27 01:53:16 UTC (rev 177139)
@@ -4,7 +4,7 @@
 
 pkgbase=python-openstackclient
 pkgname=(python-openstackclient python2-openstackclient)
-pkgver=2.4.0
+pkgver=2.5.0
 pkgrel=1
 pkgdesc="OpenStack Command-line Client"
 arch=('any')


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 03:51:44
  Author: fyan
Revision: 177138

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  122 ++---
 1 file changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-27 01:51:18 UTC (rev 177137)
+++ PKGBUILD2016-05-27 01:51:44 UTC (rev 177138)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-cinderclient
-pkgname=(python-cinderclient python2-cinderclient)
-pkgver=1.7.0
-pkgrel=1
-pkgdesc="OpenStack Block Storage API Client Library"
-arch=('any')
-url="http://docs.openstack.org/developer/python-cinderclient;
-license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
- 'python-babel' 'python2-babel' 'python-prettytable' 
'python2-prettytable'
- 'python-keystoneclient' 'python2-keystoneclient' 'python-requests'
- 'python2-requests' 'python-oslo-utils' 'python2-oslo-utils')
-checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock'
-  'python2-requests-mock' 'python-ddt' 'python2-ddt')
-source=("git+https://git.openstack.org/openstack/python-cinderclient#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  sed -i '/simplejson/d' python-cinderclient/requirements.txt
-  cp -a python-cinderclient{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-cinderclient
-  python setup.py build
-
-  cd "$srcdir"/python-cinderclient-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-cinderclient
-  python setup.py testr
-
-  cd "$srcdir"/python-cinderclient-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-cinderclient() {
-  depends=('python-six' 'python-pbr' 'python-babel' 'python-prettytable' 
'python-keystoneclient'
-   'python-requests' 'python-oslo-utils')
-
-  cd "$srcdir"/python-cinderclient
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-cinderclient() {
-  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-prettytable' 
'python2-keystoneclient'
-   'python2-requests' 'python2-oslo-utils')
-
-  cd "$srcdir"/python-cinderclient-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-
-  mv "$pkgdir"/usr/bin/cinder{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-cinderclient/repos/community-any/PKGBUILD (from rev 177137, 
python-cinderclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-27 01:51:44 UTC (rev 177138)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-cinderclient
+pkgname=(python-cinderclient python2-cinderclient)
+pkgver=1.7.1
+pkgrel=1
+pkgdesc="OpenStack Block Storage API Client Library"
+arch=('any')
+url="http://docs.openstack.org/developer/python-cinderclient;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel' 'python-prettytable' 
'python2-prettytable'
+ 'python-keystoneclient' 'python2-keystoneclient' 'python-requests'
+ 'python2-requests' 'python-oslo-utils' 'python2-oslo-utils')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock'
+  'python2-requests-mock' 'python-ddt' 'python2-ddt')
+source=("git+https://git.openstack.org/openstack/python-cinderclient#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  sed -i '/simplejson/d' python-cinderclient/requirements.txt
+  cp -a python-cinderclient{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-cinderclient
+  python setup.py build
+
+  cd "$srcdir"/python-cinderclient-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-cinderclient
+  python setup.py testr
+
+  cd "$srcdir"/python-cinderclient-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-cinderclient() {
+  depends=('python-six' 'python-pbr' 'python-babel' 'python-prettytable' 
'python-keystoneclient'
+   'python-requests' 'python-oslo-utils')
+
+  cd "$srcdir"/python-cinderclient
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-cinderclient() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-prettytable' 
'python2-keystoneclient'
+   'python2-requests' 'python2-oslo-utils')
+
+  cd "$srcdir"/python-cinderclient-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+
+  mv "$pkgdir"/usr/bin/cinder{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-05-26 Thread Felix Yan
Date: Friday, May 27, 2016 @ 03:51:18
  Author: fyan
Revision: 177137

upgpkg: python-cinderclient 1.7.1-1

Modified:
  python-cinderclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 17:53:28 UTC (rev 177136)
+++ PKGBUILD2016-05-27 01:51:18 UTC (rev 177137)
@@ -4,7 +4,7 @@
 
 pkgbase=python-cinderclient
 pkgname=(python-cinderclient python2-cinderclient)
-pkgver=1.7.0
+pkgver=1.7.1
 pkgrel=1
 pkgdesc="OpenStack Block Storage API Client Library"
 arch=('any')


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

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 23:21:03
  Author: jgc
Revision: 268627

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

Added:
  gnumeric/repos/staging-i686/PKGBUILD
(from rev 268626, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/staging-i686/revert-warnings.patch
(from rev 268626, gnumeric/trunk/revert-warnings.patch)
  gnumeric/repos/staging-x86_64/PKGBUILD
(from rev 268626, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/staging-x86_64/revert-warnings.patch
(from rev 268626, gnumeric/trunk/revert-warnings.patch)
Deleted:
  gnumeric/repos/staging-i686/PKGBUILD
  gnumeric/repos/staging-i686/revert-warnings.patch
  gnumeric/repos/staging-x86_64/PKGBUILD
  gnumeric/repos/staging-x86_64/revert-warnings.patch

--+
 /PKGBUILD|   94 +
 /revert-warnings.patch   |   22 +++
 staging-i686/PKGBUILD|   47 
 staging-i686/revert-warnings.patch   |   11 ---
 staging-x86_64/PKGBUILD  |   47 
 staging-x86_64/revert-warnings.patch |   11 ---
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2016-05-26 21:20:57 UTC (rev 268626)
+++ staging-i686/PKGBUILD   2016-05-26 21:21:03 UTC (rev 268627)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Eric Belanger 
-# Contributor: Kritoke 
-
-pkgname=gnumeric
-pkgver=1.12.28
-pkgrel=2
-pkgdesc="A GNOME Spreadsheet Program"
-arch=('i686' 'x86_64')
-url="http://www.gnome.org/projects/gnumeric/;
-license=('GPL')
-depends=('goffice' 'desktop-file-utils')
-makedepends=('intltool' 'psiconv' 'pygobject-devel'
- 'gobject-introspection' 'rarian')
-optdepends=('python2-gobject: for python plugin support'
-'perl: for perl plugin support'
-'psiconv: for Psion 5 file support'
-'yelp: for viewing the help manual')
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz
-revert-warnings.patch)
-sha256sums=('02d4ad13389e51f24638a0a59dbfb870ec8120efc453b2dca8804167f2b94dbb'
-'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -Np0 -i ../revert-warnings.patch
-
-  # Remove invalid mime type. (FS#26338)
-  sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
-
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-schemas-compile --enable-introspection
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: gnumeric/repos/staging-i686/PKGBUILD (from rev 268626, 
gnumeric/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-05-26 21:21:03 UTC (rev 268627)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Eric Belanger 
+# Contributor: Kritoke 
+
+pkgname=gnumeric
+pkgver=1.12.29
+pkgrel=1
+pkgdesc="A GNOME Spreadsheet Program"
+arch=('i686' 'x86_64')
+url="http://www.gnome.org/projects/gnumeric/;
+license=('GPL')
+depends=('goffice' 'desktop-file-utils')
+makedepends=('intltool' 'psiconv' 'pygobject-devel'
+ 'gobject-introspection' 'rarian')
+optdepends=('python2-gobject: for python plugin support'
+'perl: for perl plugin support'
+'psiconv: for Psion 5 file support'
+'yelp: for viewing the help manual')
+source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz
+revert-warnings.patch)
+sha256sums=('5a35c56679027e5d0e61f67358c2feee458dc0f62494e32281c9a1a579ba7fb5'
+'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np0 -i ../revert-warnings.patch
+
+  # Remove invalid mime type. (FS#26338)
+  sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
+
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-schemas-compile --enable-introspection
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: staging-i686/revert-warnings.patch
===
--- staging-i686/revert-warnings.patch  2016-05-26 21:20:57 UTC (rev 268626)
+++ staging-i686/revert-warnings.patch  2016-05-26 21:21:03 UTC (rev 268627)
@@ -1,11 +0,0 @@
 configure.ac.orig  2013-03-13 16:09:02.355422066 +
-+++ configure.ac   

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

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 23:20:57
  Author: jgc
Revision: 268626

upgpkg: gnumeric 1.12.29-1

Modified:
  gnumeric/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 21:13:20 UTC (rev 268625)
+++ PKGBUILD2016-05-26 21:20:57 UTC (rev 268626)
@@ -3,8 +3,8 @@
 # Contributor: Kritoke 
 
 pkgname=gnumeric
-pkgver=1.12.28
-pkgrel=2
+pkgver=1.12.29
+pkgrel=1
 pkgdesc="A GNOME Spreadsheet Program"
 arch=('i686' 'x86_64')
 url="http://www.gnome.org/projects/gnumeric/;
@@ -18,7 +18,7 @@
 'yelp: for viewing the help manual')
 
source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz
 revert-warnings.patch)
-sha256sums=('02d4ad13389e51f24638a0a59dbfb870ec8120efc453b2dca8804167f2b94dbb'
+sha256sums=('5a35c56679027e5d0e61f67358c2feee458dc0f62494e32281c9a1a579ba7fb5'
 'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
 
 prepare() {


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

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 23:13:20
  Author: jgc
Revision: 268625

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-26 21:13:13 UTC (rev 268624)
+++ extra-i686/PKGBUILD 2016-05-26 21:13:20 UTC (rev 268625)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Aaron Griffin 
-
-pkgname=goffice
-pkgver=0.10.28
-pkgrel=1
-pkgdesc="A library of document-centric objects and utilities built on top of 
GLib and Gtk+"
-arch=('i686' 'x86_64')
-url="http://www.gnome.org;
-license=('GPL')
-makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
-depends=('librsvg' 'gtk3' 'libgsf' 'libspectre' 'libxslt' 'lasem')
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('068f060de1a4c058b373dbd4adbfc48fda4b4e3402ec070499d7cd1e737f3a8b')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-introspection
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: goffice/repos/extra-i686/PKGBUILD (from rev 268624, 
goffice/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-26 21:13:20 UTC (rev 268625)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Aaron Griffin 
+
+pkgname=goffice
+pkgver=0.10.29
+pkgrel=1
+pkgdesc="A library of document-centric objects and utilities built on top of 
GLib and Gtk+"
+arch=('i686' 'x86_64')
+url="http://www.gnome.org;
+license=('GPL')
+makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
+depends=('librsvg' 'gtk3' 'libgsf' 'libspectre' 'libxslt' 'lasem')
+source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('b395dcf062f8575788aeab087b66ae21c2e22a7661309adc81d1825b507b7ff9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static --enable-introspection
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-26 21:13:13 UTC (rev 268624)
+++ extra-x86_64/PKGBUILD   2016-05-26 21:13:20 UTC (rev 268625)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Aaron Griffin 
-
-pkgname=goffice
-pkgver=0.10.28
-pkgrel=1
-pkgdesc="A library of document-centric objects and utilities built on top of 
GLib and Gtk+"
-arch=('i686' 'x86_64')
-url="http://www.gnome.org;
-license=('GPL')
-makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
-depends=('librsvg' 'gtk3' 'libgsf' 'libspectre' 'libxslt' 'lasem')
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('068f060de1a4c058b373dbd4adbfc48fda4b4e3402ec070499d7cd1e737f3a8b')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-introspection
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: goffice/repos/extra-x86_64/PKGBUILD (from rev 268624, 
goffice/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-05-26 21:13:20 UTC (rev 268625)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Aaron Griffin 
+
+pkgname=goffice
+pkgver=0.10.29
+pkgrel=1
+pkgdesc="A library of document-centric objects and utilities built on top of 
GLib and Gtk+"
+arch=('i686' 'x86_64')
+url="http://www.gnome.org;
+license=('GPL')
+makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection')
+depends=('librsvg' 'gtk3' 'libgsf' 'libspectre' 'libxslt' 'lasem')

[arch-commits] Commit in libxslt/repos/extra-i686 (3 files)

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 23:08:31
  Author: jgc
Revision: 268623

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

Added:
  libxslt/repos/extra-i686/PKGBUILD
(from rev 268622, libxslt/trunk/PKGBUILD)
Deleted:
  libxslt/repos/extra-i686/CVE-2015-7995.patch
  libxslt/repos/extra-i686/PKGBUILD

-+
 CVE-2015-7995.patch |   29 ---
 PKGBUILD|   92 +++---
 2 files changed, 44 insertions(+), 77 deletions(-)

Deleted: CVE-2015-7995.patch
===
--- CVE-2015-7995.patch 2016-05-26 21:05:23 UTC (rev 268622)
+++ CVE-2015-7995.patch 2016-05-26 21:08:31 UTC (rev 268623)
@@ -1,29 +0,0 @@
-From 7ca19df892ca22d9314e95d59ce2abdeff46b617 Mon Sep 17 00:00:00 2001
-From: Daniel Veillard 
-Date: Thu, 29 Oct 2015 19:33:23 +0800
-Subject: Fix for type confusion in preprocessing attributes
-
-CVE-2015-7995 http://www.openwall.com/lists/oss-security/2015/10/27/10
-We need to check that the parent node is an element before dereferencing
-its namespace

- libxslt/preproc.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/libxslt/preproc.c b/libxslt/preproc.c
-index 0eb80a0..7f69325 100644
 a/libxslt/preproc.c
-+++ b/libxslt/preproc.c
-@@ -2249,7 +2249,8 @@ xsltStylePreCompute(xsltStylesheetPtr style, xmlNodePtr 
inst) {
-   } else if (IS_XSLT_NAME(inst, "attribute")) {
-   xmlNodePtr parent = inst->parent;
- 
--  if ((parent == NULL) || (parent->ns == NULL) ||
-+  if ((parent == NULL) ||
-+  (parent->type != XML_ELEMENT_NODE) || (parent->ns == NULL) ||
-   ((parent->ns != inst->ns) &&
-(!xmlStrEqual(parent->ns->href, inst->ns->href))) ||
-   (!xmlStrEqual(parent->name, BAD_CAST "attribute-set"))) {
--- 
-cgit v0.11.2
-

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 21:05:23 UTC (rev 268622)
+++ PKGBUILD2016-05-26 21:08:31 UTC (rev 268623)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Eric Belanger 
-# Contributor: John Proctor 
-
-pkgname=libxslt
-pkgver=1.1.28
-pkgrel=4
-pkgdesc="XML stylesheet transformation library"
-arch=('i686' 'x86_64')
-url="http://xmlsoft.org/XSLT/;
-license=('custom')
-depends=('libxml2' 'libgcrypt')
-makedepends=('python2')
-checkdepends=('docbook-xml')
-source=(http://xmlsoft.org/sources/${pkgname}-${pkgver}.tar.gz
-CVE-2015-7995.patch)
-md5sums=('9667bf6f9310b957254fdcf6596600b7'
- 'b97b695cbe4171f8cb10df41f652aba5')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../CVE-2015-7995.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -e 's|/usr/bin/python -u|/usr/bin/python2 -u|g' -e 
's|/usr/bin/python$|/usr/bin/python2|g' -i python/tests/*.py
-  ./configure --prefix=/usr --with-python=/usr/bin/python2
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  rm -f "${pkgdir}"/usr/lib/python*/site-packages/*.a
-}

Copied: libxslt/repos/extra-i686/PKGBUILD (from rev 268622, 
libxslt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 21:08:31 UTC (rev 268623)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Eric Belanger 
+# Contributor: John Proctor 
+
+pkgname=libxslt
+pkgver=1.1.29
+pkgrel=1
+pkgdesc="XML stylesheet transformation library"
+arch=('i686' 'x86_64')
+url="http://xmlsoft.org/XSLT/;
+license=('custom')
+depends=('libxml2' 'libgcrypt')
+makedepends=('python2')
+checkdepends=('docbook-xml' 'python')
+source=(http://xmlsoft.org/sources/${pkgname}-${pkgver}.tar.gz)
+md5sums=('a129d3c44c022de3b9dcf6d6f288d72e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e 's|/usr/bin/python -u|/usr/bin/python2 -u|g' -e 
's|/usr/bin/python$|/usr/bin/python2|g' -i python/tests/*.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-python=/usr/bin/python2
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+
+  install -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -f 

[arch-commits] Commit in libxslt/repos/extra-x86_64 (3 files)

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 23:05:23
  Author: jgc
Revision: 268622

archrelease: copy trunk to extra-x86_64

Added:
  libxslt/repos/extra-x86_64/PKGBUILD
(from rev 268621, libxslt/trunk/PKGBUILD)
Deleted:
  libxslt/repos/extra-x86_64/CVE-2015-7995.patch
  libxslt/repos/extra-x86_64/PKGBUILD

-+
 CVE-2015-7995.patch |   29 ---
 PKGBUILD|   92 +++---
 2 files changed, 44 insertions(+), 77 deletions(-)

Deleted: CVE-2015-7995.patch
===
--- CVE-2015-7995.patch 2016-05-26 21:05:18 UTC (rev 268621)
+++ CVE-2015-7995.patch 2016-05-26 21:05:23 UTC (rev 268622)
@@ -1,29 +0,0 @@
-From 7ca19df892ca22d9314e95d59ce2abdeff46b617 Mon Sep 17 00:00:00 2001
-From: Daniel Veillard 
-Date: Thu, 29 Oct 2015 19:33:23 +0800
-Subject: Fix for type confusion in preprocessing attributes
-
-CVE-2015-7995 http://www.openwall.com/lists/oss-security/2015/10/27/10
-We need to check that the parent node is an element before dereferencing
-its namespace

- libxslt/preproc.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/libxslt/preproc.c b/libxslt/preproc.c
-index 0eb80a0..7f69325 100644
 a/libxslt/preproc.c
-+++ b/libxslt/preproc.c
-@@ -2249,7 +2249,8 @@ xsltStylePreCompute(xsltStylesheetPtr style, xmlNodePtr 
inst) {
-   } else if (IS_XSLT_NAME(inst, "attribute")) {
-   xmlNodePtr parent = inst->parent;
- 
--  if ((parent == NULL) || (parent->ns == NULL) ||
-+  if ((parent == NULL) ||
-+  (parent->type != XML_ELEMENT_NODE) || (parent->ns == NULL) ||
-   ((parent->ns != inst->ns) &&
-(!xmlStrEqual(parent->ns->href, inst->ns->href))) ||
-   (!xmlStrEqual(parent->name, BAD_CAST "attribute-set"))) {
--- 
-cgit v0.11.2
-

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 21:05:18 UTC (rev 268621)
+++ PKGBUILD2016-05-26 21:05:23 UTC (rev 268622)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Eric Belanger 
-# Contributor: John Proctor 
-
-pkgname=libxslt
-pkgver=1.1.28
-pkgrel=4
-pkgdesc="XML stylesheet transformation library"
-arch=('i686' 'x86_64')
-url="http://xmlsoft.org/XSLT/;
-license=('custom')
-depends=('libxml2' 'libgcrypt')
-makedepends=('python2')
-checkdepends=('docbook-xml')
-source=(http://xmlsoft.org/sources/${pkgname}-${pkgver}.tar.gz
-CVE-2015-7995.patch)
-md5sums=('9667bf6f9310b957254fdcf6596600b7'
- 'b97b695cbe4171f8cb10df41f652aba5')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../CVE-2015-7995.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -e 's|/usr/bin/python -u|/usr/bin/python2 -u|g' -e 
's|/usr/bin/python$|/usr/bin/python2|g' -i python/tests/*.py
-  ./configure --prefix=/usr --with-python=/usr/bin/python2
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  rm -f "${pkgdir}"/usr/lib/python*/site-packages/*.a
-}

Copied: libxslt/repos/extra-x86_64/PKGBUILD (from rev 268621, 
libxslt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 21:05:23 UTC (rev 268622)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Eric Belanger 
+# Contributor: John Proctor 
+
+pkgname=libxslt
+pkgver=1.1.29
+pkgrel=1
+pkgdesc="XML stylesheet transformation library"
+arch=('i686' 'x86_64')
+url="http://xmlsoft.org/XSLT/;
+license=('custom')
+depends=('libxml2' 'libgcrypt')
+makedepends=('python2')
+checkdepends=('docbook-xml' 'python')
+source=(http://xmlsoft.org/sources/${pkgname}-${pkgver}.tar.gz)
+md5sums=('a129d3c44c022de3b9dcf6d6f288d72e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e 's|/usr/bin/python -u|/usr/bin/python2 -u|g' -e 
's|/usr/bin/python$|/usr/bin/python2|g' -i python/tests/*.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-python=/usr/bin/python2
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+
+  install -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  rm -f 

[arch-commits] Commit in libxslt/trunk (CVE-2015-7995.patch PKGBUILD)

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 23:05:18
  Author: jgc
Revision: 268621

upgpkg: libxslt 1.1.29-1

Modified:
  libxslt/trunk/PKGBUILD
Deleted:
  libxslt/trunk/CVE-2015-7995.patch

-+
 CVE-2015-7995.patch |   29 -
 PKGBUILD|   24 ++--
 2 files changed, 10 insertions(+), 43 deletions(-)

Deleted: CVE-2015-7995.patch
===
--- CVE-2015-7995.patch 2016-05-26 20:55:57 UTC (rev 268620)
+++ CVE-2015-7995.patch 2016-05-26 21:05:18 UTC (rev 268621)
@@ -1,29 +0,0 @@
-From 7ca19df892ca22d9314e95d59ce2abdeff46b617 Mon Sep 17 00:00:00 2001
-From: Daniel Veillard 
-Date: Thu, 29 Oct 2015 19:33:23 +0800
-Subject: Fix for type confusion in preprocessing attributes
-
-CVE-2015-7995 http://www.openwall.com/lists/oss-security/2015/10/27/10
-We need to check that the parent node is an element before dereferencing
-its namespace

- libxslt/preproc.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/libxslt/preproc.c b/libxslt/preproc.c
-index 0eb80a0..7f69325 100644
 a/libxslt/preproc.c
-+++ b/libxslt/preproc.c
-@@ -2249,7 +2249,8 @@ xsltStylePreCompute(xsltStylesheetPtr style, xmlNodePtr 
inst) {
-   } else if (IS_XSLT_NAME(inst, "attribute")) {
-   xmlNodePtr parent = inst->parent;
- 
--  if ((parent == NULL) || (parent->ns == NULL) ||
-+  if ((parent == NULL) ||
-+  (parent->type != XML_ELEMENT_NODE) || (parent->ns == NULL) ||
-   ((parent->ns != inst->ns) &&
-(!xmlStrEqual(parent->ns->href, inst->ns->href))) ||
-   (!xmlStrEqual(parent->name, BAD_CAST "attribute-set"))) {
--- 
-cgit v0.11.2
-

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 20:55:57 UTC (rev 268620)
+++ PKGBUILD2016-05-26 21:05:18 UTC (rev 268621)
@@ -3,8 +3,8 @@
 # Contributor: John Proctor 
 
 pkgname=libxslt
-pkgver=1.1.28
-pkgrel=4
+pkgver=1.1.29
+pkgrel=1
 pkgdesc="XML stylesheet transformation library"
 arch=('i686' 'x86_64')
 url="http://xmlsoft.org/XSLT/;
@@ -11,34 +11,30 @@
 license=('custom')
 depends=('libxml2' 'libgcrypt')
 makedepends=('python2')
-checkdepends=('docbook-xml')
-source=(http://xmlsoft.org/sources/${pkgname}-${pkgver}.tar.gz
-CVE-2015-7995.patch)
-md5sums=('9667bf6f9310b957254fdcf6596600b7'
- 'b97b695cbe4171f8cb10df41f652aba5')
+checkdepends=('docbook-xml' 'python')
+source=(http://xmlsoft.org/sources/${pkgname}-${pkgver}.tar.gz)
+md5sums=('a129d3c44c022de3b9dcf6d6f288d72e')
 
 prepare() {
   cd $pkgname-$pkgver
-  patch -Np1 -i ../CVE-2015-7995.patch
+  sed -e 's|/usr/bin/python -u|/usr/bin/python2 -u|g' -e 
's|/usr/bin/python$|/usr/bin/python2|g' -i python/tests/*.py
 }
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -e 's|/usr/bin/python -u|/usr/bin/python2 -u|g' -e 
's|/usr/bin/python$|/usr/bin/python2|g' -i python/tests/*.py
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --with-python=/usr/bin/python2
 
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd $pkgname-$pkgver
   make check
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd $pkgname-$pkgver
   make DESTDIR="${pkgdir}" install
 
   install -d "${pkgdir}/usr/share/licenses/${pkgname}"


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

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 22:55:57
  Author: jgc
Revision: 268620

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

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

---+
 /PKGBUILD |   78 
 extra-i686/PKGBUILD   |   33 --
 extra-i686/ghex.install   |   20 ---
 extra-x86_64/PKGBUILD |   33 --
 extra-x86_64/ghex.install |   20 ---
 5 files changed, 78 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-26 20:55:49 UTC (rev 268619)
+++ extra-i686/PKGBUILD 2016-05-26 20:55:57 UTC (rev 268620)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tobias Kieslich 
-
-pkgname=ghex
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="A simple binary editor for the Gnome desktop"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://live.gnome.org/Ghex;
-depends=('gtk3')
-makedepends=('intltool' 'itstool' 'docbook-xsl')
-options=('!emptydirs')
-install=ghex.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c5b1eb50a8dd1334880b37617871498b778ea137f79bb43894ec68e4f63dc925')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: ghex/repos/extra-i686/PKGBUILD (from rev 268619, ghex/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-26 20:55:57 UTC (rev 268620)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tobias Kieslich 
+
+pkgname=ghex
+pkgver=3.18.1
+pkgrel=1
+pkgdesc="A simple binary editor for the Gnome desktop"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://live.gnome.org/Ghex;
+depends=('gtk3')
+makedepends=('intltool' 'itstool' 'docbook-xsl')
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a0aacbc18bf89b3ad1ff96e108d94ed1fc8ba517689f847207be7749606b084b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Workaround compile error: 
https://bugzilla.redhat.com/show_bug.cgi?id=1320175#c2
+  sed 's/-Werror=format=2/-Werror=format=1/' -i configure
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/ghex.install
===
--- extra-i686/ghex.install 2016-05-26 20:55:49 UTC (rev 268619)
+++ extra-i686/ghex.install 2016-05-26 20:55:57 UTC (rev 268620)
@@ -1,20 +0,0 @@
-pkgname=ghex
-
-post_install() {
-glib-compile-schemas usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-if [ -f usr/share/gconf/schemas/$pkgname.schemas ]; then
-gconfpkg --uninstall $pkgname
-fi
-}
-
-post_upgrade() {
-post_install $1
-}
-
-post_remove() {
-post_install $1
-}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-26 20:55:49 UTC (rev 268619)
+++ extra-x86_64/PKGBUILD   2016-05-26 20:55:57 UTC (rev 268620)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tobias Kieslich 
-
-pkgname=ghex
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="A simple binary editor for the Gnome desktop"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://live.gnome.org/Ghex;
-depends=('gtk3')
-makedepends=('intltool' 'itstool' 'docbook-xsl')
-options=('!emptydirs')
-install=ghex.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c5b1eb50a8dd1334880b37617871498b778ea137f79bb43894ec68e4f63dc925')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd 

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

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 22:55:49
  Author: jgc
Revision: 268619

upgpkg: ghex 3.18.1-1

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

--+
 PKGBUILD |   12 +---
 ghex.install |   20 
 2 files changed, 9 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 20:44:23 UTC (rev 268618)
+++ PKGBUILD2016-05-26 20:55:49 UTC (rev 268619)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=ghex
-pkgver=3.18.0
+pkgver=3.18.1
 pkgrel=1
 pkgdesc="A simple binary editor for the Gnome desktop"
 arch=('i686' 'x86_64')
@@ -12,12 +12,18 @@
 depends=('gtk3')
 makedepends=('intltool' 'itstool' 'docbook-xsl')
 options=('!emptydirs')
-install=ghex.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c5b1eb50a8dd1334880b37617871498b778ea137f79bb43894ec68e4f63dc925')
+sha256sums=('a0aacbc18bf89b3ad1ff96e108d94ed1fc8ba517689f847207be7749606b084b')
 
+prepare() {
+  cd $pkgname-$pkgver
+  # Workaround compile error: 
https://bugzilla.redhat.com/show_bug.cgi?id=1320175#c2
+  sed 's/-Werror=format=2/-Werror=format=1/' -i configure
+}
+
 build() {
   cd $pkgname-$pkgver
+
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-static \
   --disable-schemas-compile

Deleted: ghex.install
===
--- ghex.install2016-05-26 20:44:23 UTC (rev 268618)
+++ ghex.install2016-05-26 20:55:49 UTC (rev 268619)
@@ -1,20 +0,0 @@
-pkgname=ghex
-
-post_install() {
-glib-compile-schemas usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-if [ -f usr/share/gconf/schemas/$pkgname.schemas ]; then
-gconfpkg --uninstall $pkgname
-fi
-}
-
-post_upgrade() {
-post_install $1
-}
-
-post_remove() {
-post_install $1
-}


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

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 22:44:15
  Author: jgc
Revision: 268617

upgpkg: gnome-sudoku 3.20.2-1

Modified:
  gnome-sudoku/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 20:38:14 UTC (rev 268616)
+++ PKGBUILD2016-05-26 20:44:15 UTC (rev 268617)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-sudoku
-pkgver=3.20.1
+pkgver=3.20.2
 pkgrel=1
 pkgdesc="Test your logic skills in this number grid puzzle"
 url="https://wiki.gnome.org/Apps/Sudoku;
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 groups=(gnome-extra)
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('23f27323ec8c37b37c1829510e9b6e7e8288a4109d1b7c9017f2ada07fd6fdbb')
+sha256sums=('9c7e737686e88c20e83ca366bfc0a20194b7fe4af7c74ab752d98f0af1df3553')
 
 build() {
   cd $pkgname-$pkgver


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

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 22:44:23
  Author: jgc
Revision: 268618

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

Added:
  gnome-sudoku/repos/extra-i686/PKGBUILD
(from rev 268617, gnome-sudoku/trunk/PKGBUILD)
  gnome-sudoku/repos/extra-x86_64/PKGBUILD
(from rev 268617, gnome-sudoku/trunk/PKGBUILD)
Deleted:
  gnome-sudoku/repos/extra-i686/PKGBUILD
  gnome-sudoku/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-26 20:44:15 UTC (rev 268617)
+++ extra-i686/PKGBUILD 2016-05-26 20:44:23 UTC (rev 268618)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-sudoku
-pkgver=3.20.1
-pkgrel=1
-pkgdesc="Test your logic skills in this number grid puzzle"
-url="https://wiki.gnome.org/Apps/Sudoku;
-arch=(x86_64 i686)
-license=(GPL)
-depends=(dconf gtk3 qqwing libgee json-glib)
-makedepends=(intltool itstool vala)
-options=(!emptydirs)
-groups=(gnome-extra)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('23f27323ec8c37b37c1829510e9b6e7e8288a4109d1b7c9017f2ada07fd6fdbb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -i 's_#! /usr/bin/python_#!/usr/bin/python2_' 
"$pkgdir/usr/bin/gnome-sudoku"
-}

Copied: gnome-sudoku/repos/extra-i686/PKGBUILD (from rev 268617, 
gnome-sudoku/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-26 20:44:23 UTC (rev 268618)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-sudoku
+pkgver=3.20.2
+pkgrel=1
+pkgdesc="Test your logic skills in this number grid puzzle"
+url="https://wiki.gnome.org/Apps/Sudoku;
+arch=(x86_64 i686)
+license=(GPL)
+depends=(dconf gtk3 qqwing libgee json-glib)
+makedepends=(intltool itstool vala)
+options=(!emptydirs)
+groups=(gnome-extra)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9c7e737686e88c20e83ca366bfc0a20194b7fe4af7c74ab752d98f0af1df3553')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -i 's_#! /usr/bin/python_#!/usr/bin/python2_' 
"$pkgdir/usr/bin/gnome-sudoku"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-26 20:44:15 UTC (rev 268617)
+++ extra-x86_64/PKGBUILD   2016-05-26 20:44:23 UTC (rev 268618)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-sudoku
-pkgver=3.20.1
-pkgrel=1
-pkgdesc="Test your logic skills in this number grid puzzle"
-url="https://wiki.gnome.org/Apps/Sudoku;
-arch=(x86_64 i686)
-license=(GPL)
-depends=(dconf gtk3 qqwing libgee json-glib)
-makedepends=(intltool itstool vala)
-options=(!emptydirs)
-groups=(gnome-extra)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('23f27323ec8c37b37c1829510e9b6e7e8288a4109d1b7c9017f2ada07fd6fdbb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -i 's_#! /usr/bin/python_#!/usr/bin/python2_' 
"$pkgdir/usr/bin/gnome-sudoku"
-}

Copied: gnome-sudoku/repos/extra-x86_64/PKGBUILD (from rev 268617, 
gnome-sudoku/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-05-26 20:44:23 UTC (rev 268618)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-sudoku
+pkgver=3.20.2
+pkgrel=1
+pkgdesc="Test your logic skills in this number grid puzzle"
+url="https://wiki.gnome.org/Apps/Sudoku;
+arch=(x86_64 i686)
+license=(GPL)
+depends=(dconf gtk3 qqwing libgee json-glib)
+makedepends=(intltool itstool vala)
+options=(!emptydirs)

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

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 22:38:14
  Author: jgc
Revision: 268616

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

Added:
  gnome-calendar/repos/extra-i686/PKGBUILD
(from rev 268615, gnome-calendar/trunk/PKGBUILD)
  gnome-calendar/repos/extra-i686/year-view-use-gsettings-desktop-schemas.patch
(from rev 268615, 
gnome-calendar/trunk/year-view-use-gsettings-desktop-schemas.patch)
  gnome-calendar/repos/extra-x86_64/PKGBUILD
(from rev 268615, gnome-calendar/trunk/PKGBUILD)
  
gnome-calendar/repos/extra-x86_64/year-view-use-gsettings-desktop-schemas.patch
(from rev 268615, 
gnome-calendar/trunk/year-view-use-gsettings-desktop-schemas.patch)
Deleted:
  gnome-calendar/repos/extra-i686/PKGBUILD
  gnome-calendar/repos/extra-x86_64/PKGBUILD

+
 /PKGBUILD  |   72 +++
 extra-i686/PKGBUILD|   28 
 extra-i686/year-view-use-gsettings-desktop-schemas.patch   |   72 +++
 extra-x86_64/PKGBUILD  |   28 
 extra-x86_64/year-view-use-gsettings-desktop-schemas.patch |   72 +++
 5 files changed, 216 insertions(+), 56 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-26 20:38:06 UTC (rev 268615)
+++ extra-i686/PKGBUILD 2016-05-26 20:38:14 UTC (rev 268616)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-calendar
-pkgver=3.20.2
-pkgrel=1
-pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
-url="https://wiki.gnome.org/Apps/Calendar;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(evolution-data-server)
-makedepends=(intltool python)
-groups=(gnome-extra)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('f132cff56310b83cf086628e949685b04cdaf872e989d67dbb8a3e4e9943deee')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-calendar/repos/extra-i686/PKGBUILD (from rev 268615, 
gnome-calendar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-26 20:38:14 UTC (rev 268616)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-calendar
+pkgver=3.20.2
+pkgrel=2
+pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
+url="https://wiki.gnome.org/Apps/Calendar;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(evolution-data-server 'gsettings-desktop-schemas>=3.21.2')
+makedepends=(intltool python gnome-common)
+groups=(gnome-extra)
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+year-view-use-gsettings-desktop-schemas.patch)
+sha256sums=('f132cff56310b83cf086628e949685b04cdaf872e989d67dbb8a3e4e9943deee'
+'668a698fc5e6902f3796b70a418c6c88ef49ab1e1c11bb9e2f4f16d344ee8f77')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../year-view-use-gsettings-desktop-schemas.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  autoreconf -fi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gnome-calendar/repos/extra-i686/year-view-use-gsettings-desktop-schemas.patch 
(from rev 268615, 
gnome-calendar/trunk/year-view-use-gsettings-desktop-schemas.patch)
===
--- extra-i686/year-view-use-gsettings-desktop-schemas.patch
(rev 0)
+++ extra-i686/year-view-use-gsettings-desktop-schemas.patch2016-05-26 
20:38:14 UTC (rev 268616)
@@ -0,0 +1,72 @@
+From da06a48fde20f84d920953a7d4f80f67ed51fe50 Mon Sep 17 00:00:00 2001
+From: Iain Lane 
+Date: Thu, 12 May 2016 11:26:35 +0100
+Subject: [PATCH] year-view: Use the new schema from gsettings-desktop-schemas
+
+So that we don't have to depend on GNOME shell.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=764001
+---
+ configure.ac |  4 +++-
+ src/gcal-year-view.c | 10 +-
+ 2 files changed, 8 insertions(+), 6 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 815260e..693d38e 100644
+--- a/configure.ac
 b/configure.ac
+@@ -100,6 +100,7 @@ EDATASERVER_REQUIRED=3.17.1
+ EDATASERVERUI_REQUIRED=3.17.1
+ LIBICAL_REQUIRED=1.0
+ GOA_MIN_VERSION=3.2.0
++GSETTINGS_DESKTOP_SCHEMAS_REQUIRED=3.21.2
+ 
+ PKG_CHECK_MODULES(CALENDAR,
+   gmodule-export-2.0
+@@ -110,7 +111,8 @@ PKG_CHECK_MODULES(CALENDAR,
+   libecal-1.2 >= $ECAL_REQUIRED
+   libedataserver-1.2 >= 

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

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 22:38:06
  Author: jgc
Revision: 268615

upgpkg: gnome-calendar 3.20.2-2

Depend on new gsettings-desktop-schemas instead of using gnome-shell 
preferences that might not be available

Added:
  gnome-calendar/trunk/year-view-use-gsettings-desktop-schemas.patch
Modified:
  gnome-calendar/trunk/PKGBUILD

---+
 PKGBUILD  |   18 --
 year-view-use-gsettings-desktop-schemas.patch |   72 
 2 files changed, 85 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 20:32:07 UTC (rev 268614)
+++ PKGBUILD2016-05-26 20:38:06 UTC (rev 268615)
@@ -3,19 +3,27 @@
 
 pkgname=gnome-calendar
 pkgver=3.20.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
 url="https://wiki.gnome.org/Apps/Calendar;
 arch=(i686 x86_64)
 license=(GPL)
-depends=(evolution-data-server)
-makedepends=(intltool python)
+depends=(evolution-data-server 'gsettings-desktop-schemas>=3.21.2')
+makedepends=(intltool python gnome-common)
 groups=(gnome-extra)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('f132cff56310b83cf086628e949685b04cdaf872e989d67dbb8a3e4e9943deee')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+year-view-use-gsettings-desktop-schemas.patch)
+sha256sums=('f132cff56310b83cf086628e949685b04cdaf872e989d67dbb8a3e4e9943deee'
+'668a698fc5e6902f3796b70a418c6c88ef49ab1e1c11bb9e2f4f16d344ee8f77')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../year-view-use-gsettings-desktop-schemas.patch
+}
+
 build() {
   cd $pkgname-$pkgver
+  autoreconf -fi
   ./configure --prefix=/usr
   make
 }

Added: year-view-use-gsettings-desktop-schemas.patch
===
--- year-view-use-gsettings-desktop-schemas.patch   
(rev 0)
+++ year-view-use-gsettings-desktop-schemas.patch   2016-05-26 20:38:06 UTC 
(rev 268615)
@@ -0,0 +1,72 @@
+From da06a48fde20f84d920953a7d4f80f67ed51fe50 Mon Sep 17 00:00:00 2001
+From: Iain Lane 
+Date: Thu, 12 May 2016 11:26:35 +0100
+Subject: [PATCH] year-view: Use the new schema from gsettings-desktop-schemas
+
+So that we don't have to depend on GNOME shell.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=764001
+---
+ configure.ac |  4 +++-
+ src/gcal-year-view.c | 10 +-
+ 2 files changed, 8 insertions(+), 6 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 815260e..693d38e 100644
+--- a/configure.ac
 b/configure.ac
+@@ -100,6 +100,7 @@ EDATASERVER_REQUIRED=3.17.1
+ EDATASERVERUI_REQUIRED=3.17.1
+ LIBICAL_REQUIRED=1.0
+ GOA_MIN_VERSION=3.2.0
++GSETTINGS_DESKTOP_SCHEMAS_REQUIRED=3.21.2
+ 
+ PKG_CHECK_MODULES(CALENDAR,
+   gmodule-export-2.0
+@@ -110,7 +111,8 @@ PKG_CHECK_MODULES(CALENDAR,
+   libecal-1.2 >= $ECAL_REQUIRED
+   libedataserver-1.2 >= $EDATASERVER_REQUIRED
+   libedataserverui-1.2 >= $EDATASERVERUI_REQUIRED
+-  libical >= $LIBICAL_REQUIRED)
++  libical >= $LIBICAL_REQUIRED
++  gsettings-desktop-schemas >= 
$GSETTINGS_DESKTOP_SCHEMAS_REQUIRED)
+ 
+ AC_CHECK_LIB(ical, icaltime_days_in_year, [],
+ AC_MSG_ERROR([Error: icaltime_days_in_year() not found in 
libical!. Upgrade your libical library.]))
+diff --git a/src/gcal-year-view.c b/src/gcal-year-view.c
+index 60b061c..3864c83 100644
+--- a/src/gcal-year-view.c
 b/src/gcal-year-view.c
+@@ -88,7 +88,7 @@ struct _GcalYearView
+   gboolean  use_24h_format;
+ 
+   /* show week numbers from GNOME Shell settings */
+-  GSettings*shell_settings;
++  GSettings*calendar_settings;
+   gboolean  show_week_numbers;
+ 
+   /* text direction factors */
+@@ -1099,7 +1099,7 @@ gcal_year_view_finalize (GObject *object)
+ 
+   g_clear_pointer (_view->date, g_free);
+ 
+-  g_clear_object (_view->shell_settings);
++  g_clear_object (_view->calendar_settings);
+ 
+   G_OBJECT_CLASS (gcal_year_view_parent_class)->finalize (object);
+ }
+@@ -1502,9 +1502,9 @@ gcal_year_view_init (GcalYearView *self)
+   self->end_selected_date->zone = e_cal_util_get_system_timezone ();
+ 
+   /* bind GNOME Shell' show week numbers property to GNOME Calendar's one */
+-  self->shell_settings = g_settings_new ("org.gnome.shell.calendar");
+-  g_settings_bind (self->shell_settings, "show-weekdate", self, 
"show-week-numbers", G_SETTINGS_BIND_DEFAULT);
+-  g_signal_connect_swapped (self->shell_settings, "changed::show-weekdate", 
G_CALLBACK (gtk_widget_queue_draw), self);
++  self->calendar_settings = g_settings_new ("org.gnome.desktop.calendar");
++  g_settings_bind (self->calendar_settings, 

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

2016-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2016 @ 22:32:07
  Author: bisson
Revision: 268614

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

Added:
  x11vnc/repos/extra-i686/PKGBUILD
(from rev 268613, x11vnc/repos/testing-i686/PKGBUILD)
  x11vnc/repos/extra-i686/service
(from rev 268613, x11vnc/repos/testing-i686/service)
  x11vnc/repos/extra-x86_64/PKGBUILD
(from rev 268613, x11vnc/repos/testing-x86_64/PKGBUILD)
  x11vnc/repos/extra-x86_64/service
(from rev 268613, x11vnc/repos/testing-x86_64/service)
Deleted:
  x11vnc/repos/extra-i686/PKGBUILD
  x11vnc/repos/extra-i686/service
  x11vnc/repos/extra-x86_64/PKGBUILD
  x11vnc/repos/extra-x86_64/service
  x11vnc/repos/testing-i686/
  x11vnc/repos/testing-x86_64/

---+
 /PKGBUILD |   68 
 /service  |   14 +
 extra-i686/PKGBUILD   |   33 ---
 extra-i686/service|7 
 extra-x86_64/PKGBUILD |   33 ---
 extra-x86_64/service  |7 
 6 files changed, 82 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-26 20:31:12 UTC (rev 268613)
+++ extra-i686/PKGBUILD 2016-05-26 20:32:07 UTC (rev 268614)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: damir 
-
-pkgname=x11vnc
-pkgver=0.9.13
-pkgrel=7
-pkgdesc='VNC server for real X displays'
-url='http://www.karlrunge.com/x11vnc/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-optdepends=('tk: GUI support'
-'net-tools: -auth guess'
-'xf86-video-dummy: Xdummy script')
-depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
-source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
-'service')
-sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
-  '53e1ed7f84518a699a29607a03bee2321f9f9624')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install x11vnc/misc/{rx11vnc,Xdummy} "${pkgdir}"/usr/bin
-   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/x11vnc.service"
-   rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
-}

Copied: x11vnc/repos/extra-i686/PKGBUILD (from rev 268613, 
x11vnc/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-26 20:32:07 UTC (rev 268614)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: damir 
+
+pkgname=x11vnc
+epoch=1
+pkgver=0.9.13
+pkgrel=8
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: GUI support'
+'net-tools: -auth guess'
+'xf86-video-dummy: Xdummy script')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
+source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+  '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install x11vnc/misc/{rx11vnc,Xdummy} "${pkgdir}"/usr/bin
+   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/x11vnc.service"
+   rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
+}

Deleted: extra-i686/service
===
--- extra-i686/service  2016-05-26 20:31:12 UTC (rev 268613)
+++ extra-i686/service  2016-05-26 20:32:07 UTC (rev 268614)
@@ -1,7 +0,0 @@
-[Unit]
-Description=VNC Server for X11
-Requires=graphical.target
-After=graphical.target
-
-[Service]
-ExecStart=/usr/bin/x11vnc

Copied: x11vnc/repos/extra-i686/service (from rev 268613, 
x11vnc/repos/testing-i686/service)
===
--- extra-i686/service  (rev 0)
+++ extra-i686/service  2016-05-26 20:32:07 UTC (rev 268614)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-26 20:31:12 UTC (rev 268613)
+++ extra-x86_64/PKGBUILD   

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

2016-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2016 @ 22:31:12
  Author: bisson
Revision: 268613

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

Added:
  x11vnc/repos/testing-i686/PKGBUILD
(from rev 268612, x11vnc/trunk/PKGBUILD)
  x11vnc/repos/testing-i686/service
(from rev 268612, x11vnc/trunk/service)
  x11vnc/repos/testing-x86_64/PKGBUILD
(from rev 268612, x11vnc/trunk/PKGBUILD)
  x11vnc/repos/testing-x86_64/service
(from rev 268612, x11vnc/trunk/service)
Deleted:
  x11vnc/repos/testing-i686/PKGBUILD
  x11vnc/repos/testing-i686/service
  x11vnc/repos/testing-x86_64/PKGBUILD
  x11vnc/repos/testing-x86_64/service

-+
 /PKGBUILD   |   68 ++
 /service|   14 +
 testing-i686/PKGBUILD   |   38 -
 testing-i686/service|7 
 testing-x86_64/PKGBUILD |   38 -
 testing-x86_64/service  |7 
 6 files changed, 82 insertions(+), 90 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-05-26 20:30:26 UTC (rev 268612)
+++ testing-i686/PKGBUILD   2016-05-26 20:31:12 UTC (rev 268613)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: damir 
-
-pkgname=x11vnc
-pkgver=0.9.14
-pkgrel=1
-pkgdesc='VNC server for real X displays'
-url='https://github.com/LibVNC/x11vnc/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-optdepends=('tk: GUI support'
-'net-tools: -auth guess'
-'xf86-video-dummy: Xdummy script')
-depends=('libvncserver' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
-source=("https://github.com/LibVNC/x11vnc/archive/${pkgver}.tar.gz;
-'service')
-sha1sums=('f5903a5faade531ef6223d6740826a7729bc696c'
-  '53e1ed7f84518a699a29607a03bee2321f9f9624')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   touch config.h.in
-   aclocal; automake --add-missing; autoconf
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install misc/{rx11vnc,Xdummy} "${pkgdir}"/usr/bin
-   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/x11vnc.service"
-}

Copied: x11vnc/repos/testing-i686/PKGBUILD (from rev 268612, 
x11vnc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-05-26 20:31:12 UTC (rev 268613)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: damir 
+
+pkgname=x11vnc
+epoch=1
+pkgver=0.9.13
+pkgrel=8
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: GUI support'
+'net-tools: -auth guess'
+'xf86-video-dummy: Xdummy script')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
+source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+  '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install x11vnc/misc/{rx11vnc,Xdummy} "${pkgdir}"/usr/bin
+   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/x11vnc.service"
+   rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
+}

Deleted: testing-i686/service
===
--- testing-i686/service2016-05-26 20:30:26 UTC (rev 268612)
+++ testing-i686/service2016-05-26 20:31:12 UTC (rev 268613)
@@ -1,7 +0,0 @@
-[Unit]
-Description=VNC Server for X11
-Requires=graphical.target
-After=graphical.target
-
-[Service]
-ExecStart=/usr/bin/x11vnc

Copied: x11vnc/repos/testing-i686/service (from rev 268612, 
x11vnc/trunk/service)
===
--- testing-i686/service(rev 0)
+++ testing-i686/service2016-05-26 20:31:12 UTC (rev 268613)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2016-05-26 20:30:26 UTC (rev 268612)
+++ testing-x86_64/PKGBUILD 2016-05-26 20:31:12 UTC (rev 

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

2016-05-26 Thread Gaetan Bisson
Date: Thursday, May 26, 2016 @ 22:30:26
  Author: bisson
Revision: 268612

revert to working package

Modified:
  x11vnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 20:30:05 UTC (rev 268611)
+++ PKGBUILD2016-05-26 20:30:26 UTC (rev 268612)
@@ -3,27 +3,22 @@
 # Contributor: damir 
 
 pkgname=x11vnc
-pkgver=0.9.14
-pkgrel=1
+epoch=1
+pkgver=0.9.13
+pkgrel=8
 pkgdesc='VNC server for real X displays'
-url='https://github.com/LibVNC/x11vnc/'
+url='http://www.karlrunge.com/x11vnc/'
 arch=('i686' 'x86_64')
 license=('GPL2')
 optdepends=('tk: GUI support'
 'net-tools: -auth guess'
 'xf86-video-dummy: Xdummy script')
-depends=('libvncserver' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
-source=("https://github.com/LibVNC/x11vnc/archive/${pkgver}.tar.gz;
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 
'avahi')
+source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
 'service')
-sha1sums=('f5903a5faade531ef6223d6740826a7729bc696c'
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
   '53e1ed7f84518a699a29607a03bee2321f9f9624')
 
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   touch config.h.in
-   aclocal; automake --add-missing; autoconf
-}
-
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --mandir=/usr/share/man
@@ -33,6 +28,7 @@
 package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
-   install misc/{rx11vnc,Xdummy} "${pkgdir}"/usr/bin
+   install x11vnc/misc/{rx11vnc,Xdummy} "${pkgdir}"/usr/bin
install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/x11vnc.service"
+   rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
 }


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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 22:30:05
  Author: bpiotrowski
Revision: 268611

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

Added:
  chromium/repos/testing-i686/PKGBUILD
(from rev 268610, chromium/trunk/PKGBUILD)
  chromium/repos/testing-i686/PNGImageDecoder.patch
(from rev 268610, chromium/trunk/PNGImageDecoder.patch)
  chromium/repos/testing-i686/chromium-widevine.patch
(from rev 268610, chromium/trunk/chromium-widevine.patch)
  chromium/repos/testing-i686/chromium.desktop
(from rev 268610, chromium/trunk/chromium.desktop)
  chromium/repos/testing-i686/chromium.install
(from rev 268610, chromium/trunk/chromium.install)
  chromium/repos/testing-x86_64/PKGBUILD
(from rev 268610, chromium/trunk/PKGBUILD)
  chromium/repos/testing-x86_64/PNGImageDecoder.patch
(from rev 268610, chromium/trunk/PNGImageDecoder.patch)
  chromium/repos/testing-x86_64/chromium-widevine.patch
(from rev 268610, chromium/trunk/chromium-widevine.patch)
  chromium/repos/testing-x86_64/chromium.desktop
(from rev 268610, chromium/trunk/chromium.desktop)
  chromium/repos/testing-x86_64/chromium.install
(from rev 268610, chromium/trunk/chromium.install)
Deleted:
  chromium/repos/testing-i686/PKGBUILD
  chromium/repos/testing-i686/PNGImageDecoder.patch
  chromium/repos/testing-i686/chromium-widevine.patch
  chromium/repos/testing-i686/chromium.desktop
  chromium/repos/testing-i686/chromium.install
  chromium/repos/testing-x86_64/PKGBUILD
  chromium/repos/testing-x86_64/PNGImageDecoder.patch
  chromium/repos/testing-x86_64/chromium-widevine.patch
  chromium/repos/testing-x86_64/chromium.desktop
  chromium/repos/testing-x86_64/chromium.install

+
 /PKGBUILD  |  446 +++
 /PNGImageDecoder.patch |   22 +
 /chromium-widevine.patch   |  106 +++
 /chromium.desktop  |  224 +++
 /chromium.install  |   32 ++
 testing-i686/PKGBUILD  |  223 ---
 testing-i686/PNGImageDecoder.patch |   11 
 testing-i686/chromium-widevine.patch   |   53 ---
 testing-i686/chromium.desktop  |  112 ---
 testing-i686/chromium.install  |   16 -
 testing-x86_64/PKGBUILD|  223 ---
 testing-x86_64/PNGImageDecoder.patch   |   11 
 testing-x86_64/chromium-widevine.patch |   53 ---
 testing-x86_64/chromium.desktop|  112 ---
 testing-x86_64/chromium.install|   16 -
 15 files changed, 830 insertions(+), 830 deletions(-)

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


[arch-commits] Commit in chromium/trunk (PKGBUILD PNGImageDecoder.patch)

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 22:29:04
  Author: bpiotrowski
Revision: 268609

upgpkg: chromium 51.0.2704.63-1

new upstream release

Added:
  chromium/trunk/PNGImageDecoder.patch
Modified:
  chromium/trunk/PKGBUILD

---+
 PKGBUILD  |   16 +---
 PNGImageDecoder.patch |   11 +++
 2 files changed, 20 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 20:16:56 UTC (rev 268608)
+++ PKGBUILD2016-05-26 20:29:04 UTC (rev 268609)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=50.0.2661.102
+pkgver=51.0.2704.63
 pkgrel=1
 _launcher_ver=3
 pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
@@ -27,11 +27,13 @@
 
source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
 
chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz
 chromium.desktop
-chromium-widevine.patch)
-sha256sums=('12135ef890c2bd13b653a06e2a44e8f251a65fe9e91404c792d27e346c5d57c6'
+chromium-widevine.patch
+PNGImageDecoder.patch)
+sha256sums=('b243e46e0ebaf8f60d1c37a0d99f1fdd80e1597667be4776a1862bb004e4eee9'
 '8b01fb4efe58146279858a754d90b49e5a38c9a0b36a1f84cbb7d12f92b84c28'
 '028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9'
-'4660344789c45c9b9e52cb6d86f7cb6edb297b39320d04f6947e5216d6e5f64c')
+'4660344789c45c9b9e52cb6d86f7cb6edb297b39320d04f6947e5216d6e5f64c'
+'d9fd982ba6d50edb7743db6122b975ad1d3da5a9ad907c8ab7cf574395b186cd')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
 # Note: These are for Arch Linux use ONLY. For your own distribution, please
@@ -56,9 +58,6 @@
   # 
https://groups.google.com/a/chromium.org/d/topic/chromium-packagers/9JX1N2nf4PU/discussion
   touch chrome/test/data/webui/i18n_process_css_test.html
 
-  # https://code.google.com/p/chromium/issues/detail?id=541273
-  sed -i "/'target_name': 'libvpx'/s/libvpx/&_new/" 
build/linux/unbundle/libvpx.gyp
-
   # Enable support for the Widevine CDM plugin
   # libwidevinecdm.so is not included, but can be copied over from Chrome
   # (Version string doesn't seem to matter so let's go with "Pinkie Pie")
@@ -65,6 +64,9 @@
   sed "s/@WIDEVINE_VERSION@/Pinkie Pie/" ../chromium-widevine.patch |
 patch -Np1
 
+  # Chromium 51 won't build without this patch. Not reported upstream yet 
AFAIK.
+  patch -p1 -i "$srcdir"/PNGImageDecoder.patch
+
   # Commentception – use bundled ICU due to build failures (50.0.2661.75)
   # See https://crbug.com/584920 and https://crbug.com/592268
   # ---

Added: PNGImageDecoder.patch
===
--- PNGImageDecoder.patch   (rev 0)
+++ PNGImageDecoder.patch   2016-05-26 20:29:04 UTC (rev 268609)
@@ -0,0 +1,11 @@
+--- 
a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cppg
   2016-05-01 15:22:46.103607522 +0800
 
b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp 
   2016-05-01 15:25:14.459753876 +0800
+@@ -234,7 +234,7 @@
+ #endif
+ png_uint_32 profileLength = 0;
+ if (png_get_iCCP(png, info, , , 
, )) {
+-setColorProfileAndTransform(profile, profileLength, 
imageHasAlpha, false /* useSRGB */);
++setColorProfileAndTransform((const char*)profile, 
profileLength, imageHasAlpha, false /* useSRGB */);
+ }
+ }
+ #endif // PNG_iCCP_SUPPORTED


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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 22:29:14
  Author: bpiotrowski
Revision: 268610

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

Added:
  chromium/repos/testing-i686/
  chromium/repos/testing-i686/PKGBUILD
(from rev 268609, chromium/trunk/PKGBUILD)
  chromium/repos/testing-i686/PNGImageDecoder.patch
(from rev 268609, chromium/trunk/PNGImageDecoder.patch)
  chromium/repos/testing-i686/chromium-widevine.patch
(from rev 268609, chromium/trunk/chromium-widevine.patch)
  chromium/repos/testing-i686/chromium.desktop
(from rev 268609, chromium/trunk/chromium.desktop)
  chromium/repos/testing-i686/chromium.install
(from rev 268609, chromium/trunk/chromium.install)
  chromium/repos/testing-x86_64/
  chromium/repos/testing-x86_64/PKGBUILD
(from rev 268609, chromium/trunk/PKGBUILD)
  chromium/repos/testing-x86_64/PNGImageDecoder.patch
(from rev 268609, chromium/trunk/PNGImageDecoder.patch)
  chromium/repos/testing-x86_64/chromium-widevine.patch
(from rev 268609, chromium/trunk/chromium-widevine.patch)
  chromium/repos/testing-x86_64/chromium.desktop
(from rev 268609, chromium/trunk/chromium.desktop)
  chromium/repos/testing-x86_64/chromium.install
(from rev 268609, chromium/trunk/chromium.install)

+
 testing-i686/PKGBUILD  |  223 +++
 testing-i686/PNGImageDecoder.patch |   11 +
 testing-i686/chromium-widevine.patch   |   53 +++
 testing-i686/chromium.desktop  |  112 +++
 testing-i686/chromium.install  |   16 ++
 testing-x86_64/PKGBUILD|  223 +++
 testing-x86_64/PNGImageDecoder.patch   |   11 +
 testing-x86_64/chromium-widevine.patch |   53 +++
 testing-x86_64/chromium.desktop|  112 +++
 testing-x86_64/chromium.install|   16 ++
 10 files changed, 830 insertions(+)

Copied: chromium/repos/testing-i686/PKGBUILD (from rev 268609, 
chromium/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-05-26 20:29:14 UTC (rev 268610)
@@ -0,0 +1,223 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Pierre Schmitz 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: Daniel J Griffiths 
+
+pkgname=chromium
+pkgver=51.0.2704.63
+pkgrel=1
+_launcher_ver=3
+pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
+arch=('i686' 'x86_64')
+url="http://www.chromium.org/;
+license=('BSD')
+depends=('gtk2' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent' 'libxss'
+ 'libexif' 'libgcrypt' 'ttf-font' 'systemd' 'dbus' 'flac' 'snappy'
+ 'speech-dispatcher' 'pciutils' 'libpulse' 'harfbuzz' 'libsecret'
+ 'libvpx' 'perl' 'perl-file-basedir' 'desktop-file-utils'
+ 'hicolor-icon-theme')
+makedepends=('python2' 'gperf' 'yasm' 'mesa' 'ninja')
+makedepends_x86_64=('lib32-gcc-libs' 'lib32-zlib')
+optdepends=('kdebase-kdialog: needed for file dialogs in KDE'
+'gnome-keyring: for storing passwords in GNOME keyring'
+'kwallet: for storing passwords in KWallet')
+options=('!strip')
+install=chromium.install
+source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
+
chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz
+chromium.desktop
+chromium-widevine.patch
+PNGImageDecoder.patch)
+sha256sums=('b243e46e0ebaf8f60d1c37a0d99f1fdd80e1597667be4776a1862bb004e4eee9'
+'8b01fb4efe58146279858a754d90b49e5a38c9a0b36a1f84cbb7d12f92b84c28'
+'028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9'
+'4660344789c45c9b9e52cb6d86f7cb6edb297b39320d04f6947e5216d6e5f64c'
+'d9fd982ba6d50edb7743db6122b975ad1d3da5a9ad907c8ab7cf574395b186cd')
+
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact foutre...@archlinux.org for
+# more information.
+_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
+_google_default_client_id=413772536636.apps.googleusercontent.com
+_google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4
+
+# We can't build (P)NaCL on i686 because the toolchain is x86_64 only and the
+# instructions on how to build the toolchain from source don't work that well
+# (at least not from within the Chromium 39 source tree).
+# 
https://sites.google.com/a/chromium.org/dev/nativeclient/pnacl/building-pnacl-components-for-distribution-packagers
+_build_nacl=1
+if [[ $CARCH == i686 ]]; then
+  _build_nacl=0
+fi
+
+prepare() {
+  cd 

[arch-commits] Commit in gsettings-desktop-schemas/repos/extra-any (3 files)

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 22:16:56
  Author: jgc
Revision: 268608

archrelease: copy trunk to extra-any

Added:
  gsettings-desktop-schemas/repos/extra-any/PKGBUILD
(from rev 268607, gsettings-desktop-schemas/trunk/PKGBUILD)
Deleted:
  gsettings-desktop-schemas/repos/extra-any/PKGBUILD
  gsettings-desktop-schemas/repos/extra-any/gsettings-desktop-schemas.install

---+
 PKGBUILD  |   57 +---
 gsettings-desktop-schemas.install |   11 --
 2 files changed, 28 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 20:16:51 UTC (rev 268607)
+++ PKGBUILD2016-05-26 20:16:56 UTC (rev 268608)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Adam Hani Schakaki (krzd) 
-
-pkgname=gsettings-desktop-schemas
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Shared GSettings schemas for the desktop"
-arch=(any)
-url="http://live.gnome.org/;
-license=(GPL)
-depends=(glib2)
-makedepends=(intltool gobject-introspection)
-install=$pkgname.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('55a41b533c0ab955e0a36a84d73829451c88b027d8d719955d8f695c35c6d9c1')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gsettings-desktop-schemas/repos/extra-any/PKGBUILD (from rev 268607, 
gsettings-desktop-schemas/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 20:16:56 UTC (rev 268608)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Adam Hani Schakaki (krzd) 
+
+pkgname=gsettings-desktop-schemas
+pkgver=3.21.2
+pkgrel=1
+pkgdesc="Shared GSettings schemas for the desktop"
+arch=(any)
+url="https://www.gnome.org/;
+license=(GPL)
+depends=(glib2)
+makedepends=(intltool gobject-introspection)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('132c95d64d22cfb36bffa8a3c3502b8c6d844b328033b690d787f3da2e09914e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: gsettings-desktop-schemas.install
===
--- gsettings-desktop-schemas.install   2016-05-26 20:16:51 UTC (rev 268607)
+++ gsettings-desktop-schemas.install   2016-05-26 20:16:56 UTC (rev 268608)
@@ -1,11 +0,0 @@
-post_install() {
-   glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}


[arch-commits] Commit in gsettings-desktop-schemas/trunk (2 files)

2016-05-26 Thread Jan de Groot
Date: Thursday, May 26, 2016 @ 22:16:51
  Author: jgc
Revision: 268607

upgpkg: gsettings-desktop-schemas 3.21.2-1

Update to development version. Nothing exciting except for 
org.gnome.desktop.calendar schema, which is why we package this version

Modified:
  gsettings-desktop-schemas/trunk/PKGBUILD
Deleted:
  gsettings-desktop-schemas/trunk/gsettings-desktop-schemas.install

---+
 PKGBUILD  |7 +++
 gsettings-desktop-schemas.install |   11 ---
 2 files changed, 3 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 16:16:30 UTC (rev 268606)
+++ PKGBUILD2016-05-26 20:16:51 UTC (rev 268607)
@@ -4,17 +4,16 @@
 # Contributor: Adam Hani Schakaki (krzd) 
 
 pkgname=gsettings-desktop-schemas
-pkgver=3.20.0
+pkgver=3.21.2
 pkgrel=1
 pkgdesc="Shared GSettings schemas for the desktop"
 arch=(any)
-url="http://live.gnome.org/;
+url="https://www.gnome.org/;
 license=(GPL)
 depends=(glib2)
 makedepends=(intltool gobject-introspection)
-install=$pkgname.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('55a41b533c0ab955e0a36a84d73829451c88b027d8d719955d8f695c35c6d9c1')
+sha256sums=('132c95d64d22cfb36bffa8a3c3502b8c6d844b328033b690d787f3da2e09914e')
 
 build() {
   cd $pkgname-$pkgver

Deleted: gsettings-desktop-schemas.install
===
--- gsettings-desktop-schemas.install   2016-05-26 16:16:30 UTC (rev 268606)
+++ gsettings-desktop-schemas.install   2016-05-26 20:16:51 UTC (rev 268607)
@@ -1,11 +0,0 @@
-post_install() {
-   glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}


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

2016-05-26 Thread Maxime Gauduin
Date: Thursday, May 26, 2016 @ 19:52:59
  Author: alucryd
Revision: 177135

upgpkg: emby-server 3.0.5972-1

Modified:
  emby-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 15:41:19 UTC (rev 177134)
+++ PKGBUILD2016-05-26 17:52:59 UTC (rev 177135)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Seymour 
 
 pkgname=emby-server
-pkgver=3.0.5971
+pkgver=3.0.5972
 pkgrel=1
 pkgdesc='Bring together your videos, music, photos, and live television'
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 'emby-server.conf'
 'emby-server.service')
 backup=('etc/conf.d/emby-server')
-sha256sums=('280acc051da71b1b2d3ed05c3a50393890c3ecbb6c20cf0d9ecbc34391471daa'
+sha256sums=('3d4e6519cf6844ea76d0c23f032f463829b4cf06e33e22ae9d2cf184513db537'
 '7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
 'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
 'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'


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

2016-05-26 Thread Maxime Gauduin
Date: Thursday, May 26, 2016 @ 19:53:28
  Author: alucryd
Revision: 177136

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

Added:
  emby-server/repos/community-i686/PKGBUILD
(from rev 177135, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-i686/emby-migrate-database
(from rev 177135, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-i686/emby-server
(from rev 177135, emby-server/trunk/emby-server)
  emby-server/repos/community-i686/emby-server.conf
(from rev 177135, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-i686/emby-server.install
(from rev 177135, emby-server/trunk/emby-server.install)
  emby-server/repos/community-i686/emby-server.service
(from rev 177135, emby-server/trunk/emby-server.service)
  emby-server/repos/community-x86_64/PKGBUILD
(from rev 177135, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-x86_64/emby-migrate-database
(from rev 177135, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-x86_64/emby-server
(from rev 177135, emby-server/trunk/emby-server)
  emby-server/repos/community-x86_64/emby-server.conf
(from rev 177135, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-x86_64/emby-server.install
(from rev 177135, emby-server/trunk/emby-server.install)
  emby-server/repos/community-x86_64/emby-server.service
(from rev 177135, emby-server/trunk/emby-server.service)
Deleted:
  emby-server/repos/community-i686/PKGBUILD
  emby-server/repos/community-i686/emby-migrate-database
  emby-server/repos/community-i686/emby-server
  emby-server/repos/community-i686/emby-server.conf
  emby-server/repos/community-i686/emby-server.install
  emby-server/repos/community-i686/emby-server.service
  emby-server/repos/community-x86_64/PKGBUILD
  emby-server/repos/community-x86_64/emby-migrate-database
  emby-server/repos/community-x86_64/emby-server
  emby-server/repos/community-x86_64/emby-server.conf
  emby-server/repos/community-x86_64/emby-server.install
  emby-server/repos/community-x86_64/emby-server.service

+
 /PKGBUILD  |  112 +++
 /emby-migrate-database |  112 +++
 /emby-server   |6 +
 /emby-server.conf  |8 ++
 /emby-server.install   |   62 +
 /emby-server.service   |   32 
 community-i686/PKGBUILD|   56 ---
 community-i686/emby-migrate-database   |   56 ---
 community-i686/emby-server |3 
 community-i686/emby-server.conf|4 -
 community-i686/emby-server.install |   31 
 community-i686/emby-server.service |   16 
 community-x86_64/PKGBUILD  |   56 ---
 community-x86_64/emby-migrate-database |   56 ---
 community-x86_64/emby-server   |3 
 community-x86_64/emby-server.conf  |4 -
 community-x86_64/emby-server.install   |   31 
 community-x86_64/emby-server.service   |   16 
 18 files changed, 332 insertions(+), 332 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-26 17:52:59 UTC (rev 177135)
+++ community-i686/PKGBUILD 2016-05-26 17:53:28 UTC (rev 177136)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Seymour 
-
-pkgname=emby-server
-pkgver=3.0.5971
-pkgrel=1
-pkgdesc='Bring together your videos, music, photos, and live television'
-arch=('i686' 'x86_64')
-url='http://emby.media'
-license=('GPL2')
-depends=('ffmpeg' 'imagemagick' 'mono' 'sqlite')
-install='emby-server.install'
-source=("emby-server-${pkgver}.tar.gz::https://github.com/MediaBrowser/MediaBrowser/archive/${pkgver}.tar.gz;
-'emby-server'
-'emby-migrate-database'
-'emby-server.conf'
-'emby-server.service')
-backup=('etc/conf.d/emby-server')
-sha256sums=('280acc051da71b1b2d3ed05c3a50393890c3ecbb6c20cf0d9ecbc34391471daa'
-'7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
-'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
-'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'
-'8a91ea49a1699c820c4a180710072cba1d6d5c10e45df97477ff6a898f4e1d70')
-
-prepare() {
-  cd Emby-${pkgver}
-
-  sed 's/libMagickWand-6.Q8.so/libMagickWand-6.Q16HDRI.so/' -i 
MediaBrowser.Server.Mono/ImageMagickSharp.dll.config
-}
-
-build() {
-  cd Emby-${pkgver}
-
-  xbuild \
-/p:Configuration='Release Mono' \
-/p:Platform='Any CPU' \
-/p:OutputPath="${srcdir}/build" \
-/t:build MediaBrowser.Mono.sln
-  mono --aot='full' -O='all' ../build/MediaBrowser.Server.Mono.exe
-}
-
-package() {
- 

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

2016-05-26 Thread Anatol Pomozov
Date: Thursday, May 26, 2016 @ 18:16:30
  Author: anatolik
Revision: 268606

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

Added:
  nghttp2/repos/testing-i686/
  nghttp2/repos/testing-i686/PKGBUILD
(from rev 268605, nghttp2/trunk/PKGBUILD)
  nghttp2/repos/testing-x86_64/
  nghttp2/repos/testing-x86_64/PKGBUILD
(from rev 268605, nghttp2/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   45 +
 testing-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: nghttp2/repos/testing-i686/PKGBUILD (from rev 268605, 
nghttp2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-05-26 16:16:30 UTC (rev 268606)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.11.0
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('a9ab5a81a1232d51daf086c23838726a6cf4dc59a264ee9548f118636d885865')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}

Copied: nghttp2/repos/testing-x86_64/PKGBUILD (from rev 268605, 
nghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-05-26 16:16:30 UTC (rev 268606)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.11.0
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('a9ab5a81a1232d51daf086c23838726a6cf4dc59a264ee9548f118636d885865')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}


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

2016-05-26 Thread Anatol Pomozov
Date: Thursday, May 26, 2016 @ 18:15:59
  Author: anatolik
Revision: 268605

upgpkg: nghttp2 1.11.0-1

Modified:
  nghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 16:10:28 UTC (rev 268604)
+++ PKGBUILD2016-05-26 16:15:59 UTC (rev 268605)
@@ -3,7 +3,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=nghttp2
-pkgver=1.10.0
+pkgver=1.11.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
   etc/nghttpx/nghttpx.conf
   etc/logrotate.d/nghttpx
 )
-sha256sums=('5f32d6e0c92c36468aca018c1182a9cbe13ce58589c42b6e80132e26e1069fda')
+sha256sums=('a9ab5a81a1232d51daf086c23838726a6cf4dc59a264ee9548f118636d885865')
 
 build() {
   cd nghttp2-$pkgver


[arch-commits] Commit in linux-manpages/repos (core-any core-any/PKGBUILD)

2016-05-26 Thread Anatol Pomozov
Date: Thursday, May 26, 2016 @ 18:10:28
  Author: anatolik
Revision: 268604

archrelease: copy trunk to core-any

Added:
  linux-manpages/repos/core-any/
  linux-manpages/repos/core-any/PKGBUILD
(from rev 268603, linux-manpages/trunk/PKGBUILD)

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

Copied: linux-manpages/repos/core-any/PKGBUILD (from rev 268603, 
linux-manpages/trunk/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2016-05-26 16:10:28 UTC (rev 268604)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Maintainer: Thomas Baechler 
+
+pkgname=linux-manpages
+pkgver=4.6
+pkgrel=1
+pkgdesc="Kernel hackers manual - Section 9 manpages that comes with the Linux 
kernel."
+arch=('any')
+url="http://www.kernel.org;
+license=('GPL2')
+makedepends=('xmlto' 'docbook-xsl')
+replaces=('kernel26-manpages')
+conflicts=('kernel26-manpages')
+provides=('kernel26-manpages')
+options=('!zipman')
+# https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
+source=("https://www.kernel.org/pub/linux/kernel/v4.x/linux-${pkgver}.tar.xz;)
+sha256sums=('a93771cd5a8ad27798f22e9240538dfea48d3a2bf2a6a6ab415de3f02d25d866')
+
+build() {
+  cd "${srcdir}/linux-$pkgver"
+  make mandocs
+}
+
+package() {
+  cd "${srcdir}/linux-$pkgver"
+  # fix install path
+  sed -i -e "s:/usr/local/man/man9/:${pkgdir}/usr/share/man/man9/:g" 
Documentation/DocBook/Makefile
+  make installmandocs
+
+  #install -d "${pkgdir}/usr/share/man/man9/"
+  #install "${srcdir}"/linux-$pkgver/Documentation/DocBook/man/*/*.9.gz 
"${pkgdir}/usr/share/man/man9/"
+
+#  find "${pkgdir}" -type f -exec chmod 644 {} \;
+}


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

2016-05-26 Thread Anatol Pomozov
Date: Thursday, May 26, 2016 @ 18:10:07
  Author: anatolik
Revision: 268603

upgpkg: linux-manpages 4.6-1

Modified:
  linux-manpages/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 13:32:29 UTC (rev 268602)
+++ PKGBUILD2016-05-26 16:10:07 UTC (rev 268603)
@@ -3,7 +3,7 @@
 # Maintainer: Thomas Baechler 
 
 pkgname=linux-manpages
-pkgver=4.5
+pkgver=4.6
 pkgrel=1
 pkgdesc="Kernel hackers manual - Section 9 manpages that comes with the Linux 
kernel."
 arch=('any')
@@ -16,7 +16,7 @@
 options=('!zipman')
 # https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 source=("https://www.kernel.org/pub/linux/kernel/v4.x/linux-${pkgver}.tar.xz;)
-sha256sums=('a40defb401e01b37d6b8c8ad5c1bbab665be6ac6310cdeed59950c96b31a519c')
+sha256sums=('a93771cd5a8ad27798f22e9240538dfea48d3a2bf2a6a6ab415de3f02d25d866')
 
 build() {
   cd "${srcdir}/linux-$pkgver"


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

2016-05-26 Thread Balló György
Date: Thursday, May 26, 2016 @ 17:41:19
  Author: bgyorgy
Revision: 177134

archrelease: copy trunk to community-any

Added:
  gnome-schedule/repos/community-any/PKGBUILD
(from rev 177133, gnome-schedule/trunk/PKGBUILD)
Deleted:
  gnome-schedule/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 15:41:13 UTC (rev 177133)
+++ PKGBUILD2016-05-26 15:41:19 UTC (rev 177134)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Ionut Biru 
-# Contributor: Roman Kyrylych 
-# Contributor: William Rea 
-
-pkgname=gnome-schedule
-pkgver=2.2.2
-pkgrel=2
-pkgdesc="Graphical interface to crontab and at for GNOME"
-arch=('any')
-url="http://gnome-schedule.sourceforge.net/;
-license=('GPL')
-depends=('python2-gconf' 'at' 'cron')
-makedepends=('gnome-python' 'intltool' 'gnome-doc-utils')
-optdepends=('gnome-terminal: run tasks manually')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('5b4d52288661a880501703d22789cedb')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  python2 -m compileall "$pkgdir"/usr/share/gnome-schedule/
-}

Copied: gnome-schedule/repos/community-any/PKGBUILD (from rev 177133, 
gnome-schedule/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 15:41:19 UTC (rev 177134)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Ionut Biru 
+# Contributor: Roman Kyrylych 
+# Contributor: William Rea 
+
+pkgname=gnome-schedule
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="Graphical interface to crontab and at for GNOME"
+arch=('any')
+url="http://gnome-schedule.sourceforge.net/;
+license=('GPL')
+depends=('python2-gconf' 'at' 'cron')
+makedepends=('intltool' 'gnome-doc-utils')
+optdepends=('gnome-terminal: run tasks manually')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('9992acb12ed52ec781d623fbc33c5dd3428ef863956fb8088b937c401cbe7b5a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  python2 -m compileall "$pkgdir"/usr/share/gnome-schedule/
+}


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

2016-05-26 Thread Balló György
Date: Thursday, May 26, 2016 @ 17:41:13
  Author: bgyorgy
Revision: 177133

upgpkg: gnome-schedule 2.3.0-1

Update to new version

Modified:
  gnome-schedule/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 15:32:35 UTC (rev 177132)
+++ PKGBUILD2016-05-26 15:41:13 UTC (rev 177133)
@@ -5,26 +5,26 @@
 # Contributor: William Rea 
 
 pkgname=gnome-schedule
-pkgver=2.2.2
-pkgrel=2
+pkgver=2.3.0
+pkgrel=1
 pkgdesc="Graphical interface to crontab and at for GNOME"
 arch=('any')
 url="http://gnome-schedule.sourceforge.net/;
 license=('GPL')
 depends=('python2-gconf' 'at' 'cron')
-makedepends=('gnome-python' 'intltool' 'gnome-doc-utils')
+makedepends=('intltool' 'gnome-doc-utils')
 optdepends=('gnome-terminal: run tasks manually')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('5b4d52288661a880501703d22789cedb')
+sha256sums=('9992acb12ed52ec781d623fbc33c5dd3428ef863956fb8088b937c401cbe7b5a')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
   make
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
   python2 -m compileall "$pkgdir"/usr/share/gnome-schedule/
 }


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

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 17:32:35
  Author: fyan
Revision: 177132

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-26 15:31:36 UTC (rev 177131)
+++ community-i686/PKGBUILD 2016-05-26 15:32:35 UTC (rev 177132)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Clément Démoulins 
-# Contributor: Fazlul Shahriar 
-
-pkgname=(python-coverage python2-coverage)
-pkgver=4.0.3
-pkgrel=1
-pkgdesc="A tool for measuring code coverage of Python programs"
-arch=('i686' 'x86_64')
-url="http://nedbatchelder.com/code/coverage/;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'mercurial')
-checkdepends=('python-mock' 'python2-mock' 'python-nose' 'python2-nose'
-  'python-pycontracts' 'python2-pycontracts' 'python-greenlet'
-  'python2-greenlet' 'python-virtualenv' 'python2-virtualenv')
-source=("hg+https://bitbucket.org/ned/coveragepy#tag=coverage-$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a coveragepy{,-py2}
-}
-
-check() {
-  # Hack entry points by installing it
-
-  export LC_CTYPE=en_US.UTF-8
-
-  (
-cd "$srcdir/coveragepy"
-virtualenv "$srcdir/pyvenv" --system-site-packages
-. "$srcdir/pyvenv/bin/activate"
-export PYTHONPATH="$PYTHONPATH:/usr/lib/python3.5/site-packages"
-python setup.py --quiet develop
-python igor.py zip_mods install_egg remove_extension
-python igor.py test_with_tracer py
-python setup.py --quiet build_ext --inplace
-python igor.py test_with_tracer c
-  )
-
-  (
-cd "$srcdir/coveragepy-py2"
-virtualenv2 "$srcdir/pyvenv-py2" --system-site-packages
-. "$srcdir/pyvenv-py2/bin/activate"
-export PYTHONPATH="$PYTHONPATH:/usr/lib/python2.7/site-packages"
-python setup.py --quiet develop
-python igor.py zip_mods install_egg remove_extension
-python igor.py test_with_tracer py
-python setup.py --quiet build_ext --inplace
-python igor.py test_with_tracer c
-  )
-}
-
-package_python-coverage() {
-  depends=('python')
-
-  cd coveragepy
-  python3 setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-coverage() {
-  depends=('python2')
-
-  cd coveragepy
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir/usr/bin/coverage" "$pkgdir/usr/bin/coverage2"
-}

Copied: python-coverage/repos/community-i686/PKGBUILD (from rev 177131, 
python-coverage/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-26 15:32:35 UTC (rev 177132)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Clément Démoulins 
+# Contributor: Fazlul Shahriar 
+
+pkgname=(python-coverage python2-coverage)
+pkgver=4.1
+pkgrel=1
+pkgdesc="A tool for measuring code coverage of Python programs"
+arch=('i686' 'x86_64')
+url="http://nedbatchelder.com/code/coverage/;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'mercurial')
+checkdepends=('python-mock' 'python2-mock' 'python-nose' 'python2-nose'
+  'python-pycontracts' 'python2-pycontracts' 'python-greenlet'
+  'python2-greenlet' 'python-virtualenv' 'python2-virtualenv')
+source=("hg+https://bitbucket.org/ned/coveragepy#tag=coverage-$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a coveragepy{,-py2}
+}
+
+check() {
+  # Hack entry points by installing it
+
+  export LC_CTYPE=en_US.UTF-8
+
+  (
+cd "$srcdir/coveragepy"
+virtualenv "$srcdir/pyvenv" --system-site-packages
+. "$srcdir/pyvenv/bin/activate"
+export PYTHONPATH="$PYTHONPATH:/usr/lib/python3.5/site-packages"
+python setup.py --quiet develop
+python igor.py zip_mods install_egg remove_extension
+python igor.py test_with_tracer py
+python setup.py --quiet build_ext --inplace
+python igor.py test_with_tracer c
+  )
+
+  (
+cd "$srcdir/coveragepy-py2"
+virtualenv2 "$srcdir/pyvenv-py2" --system-site-packages
+. "$srcdir/pyvenv-py2/bin/activate"
+export PYTHONPATH="$PYTHONPATH:/usr/lib/python2.7/site-packages"
+python setup.py 

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

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 17:31:36
  Author: fyan
Revision: 177131

upgpkg: python-coverage 4.1-1

Modified:
  python-coverage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 15:23:24 UTC (rev 177130)
+++ PKGBUILD2016-05-26 15:31:36 UTC (rev 177131)
@@ -4,7 +4,7 @@
 # Contributor: Fazlul Shahriar 
 
 pkgname=(python-coverage python2-coverage)
-pkgver=4.0.3
+pkgver=4.1
 pkgrel=1
 pkgdesc="A tool for measuring code coverage of Python programs"
 arch=('i686' 'x86_64')


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

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 17:23:24
  Author: fyan
Revision: 177130

archrelease: copy trunk to community-any

Added:
  pigar/repos/community-any/PKGBUILD
(from rev 177129, pigar/trunk/PKGBUILD)
Deleted:
  pigar/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 15:22:48 UTC (rev 177129)
+++ PKGBUILD2016-05-26 15:23:24 UTC (rev 177130)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=pigar
-pkgname=("$pkgbase" "python2-$pkgbase")
-pkgver=0.6.7
-pkgrel=1
-pkgdesc="A fantastic tool to generate requirements for your Python project, 
and more than that"
-arch=('any')
-url="https://github.com/Damnever/pigar;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-colorama' 
'python2-colorama'
- 'python2-futures' 'git')
-source=("git+https://github.com/Damnever/${pkgbase}.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a $pkgbase{,-py2}
-}
-
-build() {
-  cd "${srcdir}/${pkgbase}"
-  python setup.py build
-
-  cd "${srcdir}/${pkgbase}-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "${srcdir}/${pkgbase}"
-  python -m unittest discover pigar/tests/ -t . -v
-
-  cd "${srcdir}/${pkgbase}-py2"
-  python2 -m unittest discover pigar/tests/ -t . -v
-}
-
-package_pigar() {
-  depends=('python-setuptools' 'python-colorama')
-
-  cd $pkgbase
-  python3 setup.py install -O1 --root="$pkgdir/"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-pigar() {
-  depends=('python2-setuptools' 'python2-colorama' 'python2-futures')
-
-  cd $pkgbase-py2
-  python2 setup.py install -O1 --root="$pkgdir/"
-  mv "$pkgdir/usr/bin/pigar" "$pkgdir/usr/bin/pigar2"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pigar/repos/community-any/PKGBUILD (from rev 177129, 
pigar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 15:23:24 UTC (rev 177130)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=pigar
+pkgname=("pigar" "python2-pigar")
+pkgver=0.6.9
+pkgrel=1
+pkgdesc="A fantastic tool to generate requirements for your Python project, 
and more than that"
+arch=('any')
+url="https://github.com/Damnever/pigar;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-colorama' 
'python2-colorama'
+ 'python2-futures' 'python-gevent' 'python2-gevent' 'git')
+source=("git+https://github.com/Damnever/pigar.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a pigar{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pigar
+  python setup.py build
+
+  cd "$srcdir"/pigar-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pigar
+  python -m unittest discover pigar/tests/ -t . -v
+
+  cd "$srcdir"/pigar-py2
+  python2 -m unittest discover pigar/tests/ -t . -v
+}
+
+package_pigar() {
+  depends=('python-setuptools' 'python-colorama' 'python-gevent')
+
+  cd pigar
+  python3 setup.py install -O1 --root="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pigar() {
+  depends=('python2-setuptools' 'python2-colorama' 'python2-gevent' 
'python2-futures')
+
+  cd pigar-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  mv "$pkgdir"/usr/bin/pigar{,2}
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 17:22:48
  Author: fyan
Revision: 177129

upgpkg: pigar 0.6.9-1

Modified:
  pigar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 14:48:06 UTC (rev 177128)
+++ PKGBUILD2016-05-26 15:22:48 UTC (rev 177129)
@@ -2,8 +2,8 @@
 # Maintainer: Felix Yan 
 
 pkgbase=pigar
-pkgname=("$pkgbase" "python2-$pkgbase")
-pkgver=0.6.7
+pkgname=("pigar" "python2-pigar")
+pkgver=0.6.9
 pkgrel=1
 pkgdesc="A fantastic tool to generate requirements for your Python project, 
and more than that"
 arch=('any')
@@ -10,47 +10,47 @@
 url="https://github.com/Damnever/pigar;
 license=('BSD')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-colorama' 
'python2-colorama'
- 'python2-futures' 'git')
-source=("git+https://github.com/Damnever/${pkgbase}.git#tag=$pkgver;)
+ 'python2-futures' 'python-gevent' 'python2-gevent' 'git')
+source=("git+https://github.com/Damnever/pigar.git#tag=$pkgver;)
 sha256sums=('SKIP')
 
 prepare() {
-  cp -a $pkgbase{,-py2}
+  cp -a pigar{,-py2}
 }
 
 build() {
-  cd "${srcdir}/${pkgbase}"
+  cd "$srcdir"/pigar
   python setup.py build
 
-  cd "${srcdir}/${pkgbase}-py2"
+  cd "$srcdir"/pigar-py2
   python2 setup.py build
 }
 
 check() {
-  cd "${srcdir}/${pkgbase}"
+  cd "$srcdir"/pigar
   python -m unittest discover pigar/tests/ -t . -v
 
-  cd "${srcdir}/${pkgbase}-py2"
+  cd "$srcdir"/pigar-py2
   python2 -m unittest discover pigar/tests/ -t . -v
 }
 
 package_pigar() {
-  depends=('python-setuptools' 'python-colorama')
+  depends=('python-setuptools' 'python-colorama' 'python-gevent')
 
-  cd $pkgbase
-  python3 setup.py install -O1 --root="$pkgdir/"
+  cd pigar
+  python3 setup.py install -O1 --root="$pkgdir"
 
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-pigar() {
-  depends=('python2-setuptools' 'python2-colorama' 'python2-futures')
+  depends=('python2-setuptools' 'python2-colorama' 'python2-gevent' 
'python2-futures')
 
-  cd $pkgbase-py2
-  python2 setup.py install -O1 --root="$pkgdir/"
-  mv "$pkgdir/usr/bin/pigar" "$pkgdir/usr/bin/pigar2"
+  cd pigar-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  mv "$pkgdir"/usr/bin/pigar{,2}
 
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in dwarffortress/repos/multilib-x86_64 (10 files)

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 16:48:06
  Author: svenstaro
Revision: 177128

archrelease: copy trunk to multilib-x86_64

Added:
  dwarffortress/repos/multilib-x86_64/PKGBUILD
(from rev 177127, dwarffortress/trunk/PKGBUILD)
  dwarffortress/repos/multilib-x86_64/dwarffortress
(from rev 177127, dwarffortress/trunk/dwarffortress)
  dwarffortress/repos/multilib-x86_64/dwarffortress.desktop
(from rev 177127, dwarffortress/trunk/dwarffortress.desktop)
  dwarffortress/repos/multilib-x86_64/dwarffortress.install
(from rev 177127, dwarffortress/trunk/dwarffortress.install)
  dwarffortress/repos/multilib-x86_64/dwarffortress.png
(from rev 177127, dwarffortress/trunk/dwarffortress.png)
Deleted:
  dwarffortress/repos/multilib-x86_64/PKGBUILD
  dwarffortress/repos/multilib-x86_64/dwarffortress
  dwarffortress/repos/multilib-x86_64/dwarffortress.desktop
  dwarffortress/repos/multilib-x86_64/dwarffortress.install
  dwarffortress/repos/multilib-x86_64/dwarffortress.png

---+
 PKGBUILD  |  146 
 dwarffortress |   40 ++---
 dwarffortress.desktop |   18 ++---
 dwarffortress.install |   18 ++---
 4 files changed, 111 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 14:47:50 UTC (rev 177127)
+++ PKGBUILD2016-05-26 14:48:06 UTC (rev 177128)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Daenyth 
-# Contributor: djnm 
-pkgname=dwarffortress
-pkgver=0.43.02
-_pkgver=43_02
-pkgrel=1
-pkgdesc="A single-player fantasy game in which you build a dwarven outpost or 
play an adventurer in a randomly generated world"
-arch=(i686 x86_64)
-url="http://www.bay12games.com/dwarves/;
-license=('custom:dwarffortress')
-depends=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew gcc-libs)
-makedepends=(git cmake)
-options=('!strip' '!buildflags')
-install=${pkgname}.install
-if [[ $CARCH == 'x86_64' ]]; then
-  makedepends+=(gcc-multilib)
-  depends=(gcc-libs-multilib lib32-gtk2 lib32-glu lib32-sdl_image 
lib32-libsndfile lib32-openal
-   lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
-  optdepends=('lib32-nvidia-utils: If you have nvidia graphics'
-  'lib32-catalyst-utils: If you have ATI graphics'
-  'lib32-alsa-lib: for alsa sound'
-  'lib32-libpulse: for pulse sound')
-fi
-# I made a fucking github repo with the sole purpose of unfucking df a bit
-# We try to compile whatever little bit of df is open source
-source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2
-git://github.com/svenstaro/dwarf_fortress_unfuck.git#tag=${pkgver}
-dwarffortress
-dwarffortress.desktop
-dwarffortress.png)
-sha256sums=('a70b638667c60f4a9e4014963e23b4c3cbb8fde582cf2fb46f5ef8c3c5859dca'
-'SKIP'
-'211eaec6559d4fd5c08341dbed1f27bfab997a57bdf61fd268f9940e244652c5'
-'e79e3d945c6cc0da58f4ca30a210c7bf1bc3149fd10406d1262a6214eb40445a'
-'83183abc70b11944720b0d86f4efd07468f786b03fa52fe429ca8e371f708e0f')
-
-build() {
-  cd $srcdir/dwarf_fortress_unfuck
-
-  cmake .
-  make
-}
-
-package() {
-  install -dm755 $pkgdir/opt/
-  cp -r $srcdir/df_linux $pkgdir/opt/$pkgname
-  rm -r $pkgdir/opt/$pkgname/df $pkgdir/opt/$pkgname/libs/* 
$pkgdir/opt/$pkgname/g_src
-
-  find $pkgdir/opt/$pkgname -type d -exec chmod 755 {} +
-  find $pkgdir/opt/$pkgname -type f -exec chmod 644 {} +
-
-  install -Dm755 $srcdir/df_linux/libs/Dwarf_Fortress 
$pkgdir/opt/$pkgname/libs/Dwarf_Fortress
-  install -Dm755 $srcdir/dwarf_fortress_unfuck/libgraphics.so 
$pkgdir/opt/$pkgname/libs/libgraphics.so
-  install -Dm755 $srcdir/dwarffortress $pkgdir/usr/bin/$pkgname
-
-  # No idea why we need this. Really. This isn't being loaded dynamically, 
it's not linked and
-  # in general there is no indication this is being used. However, it doesn't 
work without this symlink.
-  [[ $CARCH == "x86_64" ]] && ln -s /usr/lib32/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-  [[ $CARCH == "i686" ]] && ln -s /usr/lib/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-
-  # Set pkgname in runscript
-  sed -i "s/^pkgname=.*/pkgname=$pkgname/" $pkgdir/usr/bin/$pkgname
-
-  # Desktop launcher with icon
-  install -Dm644 $srcdir/dwarffortress.desktop 
$pkgdir/usr/share/applications/"$pkgname".desktop
-  install -Dm644 $srcdir/dwarffortress.png 
$pkgdir/usr/share/pixmaps/"$pkgname".png
-
-  install -Dm644 $srcdir/df_linux/readme.txt 
$pkgdir/usr/share/licenses/$pkgname/readme.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dwarffortress/repos/multilib-x86_64/PKGBUILD (from rev 177127, 
dwarffortress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 14:48:06 UTC (rev 

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

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 16:47:43
  Author: svenstaro
Revision: 177126

upgpkg: dwarffortress 0.43.03-1

upstream release 0.43.03

Modified:
  dwarffortress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 13:56:45 UTC (rev 177125)
+++ PKGBUILD2016-05-26 14:47:43 UTC (rev 177126)
@@ -3,8 +3,8 @@
 # Contributor: Daenyth 
 # Contributor: djnm 
 pkgname=dwarffortress
-pkgver=0.43.02
-_pkgver=43_02
+pkgver=0.43.03
+_pkgver=43_03
 pkgrel=1
 pkgdesc="A single-player fantasy game in which you build a dwarven outpost or 
play an adventurer in a randomly generated world"
 arch=(i686 x86_64)
@@ -30,7 +30,7 @@
 dwarffortress
 dwarffortress.desktop
 dwarffortress.png)
-sha256sums=('a70b638667c60f4a9e4014963e23b4c3cbb8fde582cf2fb46f5ef8c3c5859dca'
+sha256sums=('8725cb00188b4282fd5a3c4be10c3255f837b951ca48af90fa3a351e3a818337'
 'SKIP'
 '211eaec6559d4fd5c08341dbed1f27bfab997a57bdf61fd268f9940e244652c5'
 'e79e3d945c6cc0da58f4ca30a210c7bf1bc3149fd10406d1262a6214eb40445a'


[arch-commits] Commit in dwarffortress/repos/community-i686 (10 files)

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 16:47:50
  Author: svenstaro
Revision: 177127

archrelease: copy trunk to community-i686

Added:
  dwarffortress/repos/community-i686/PKGBUILD
(from rev 177126, dwarffortress/trunk/PKGBUILD)
  dwarffortress/repos/community-i686/dwarffortress
(from rev 177126, dwarffortress/trunk/dwarffortress)
  dwarffortress/repos/community-i686/dwarffortress.desktop
(from rev 177126, dwarffortress/trunk/dwarffortress.desktop)
  dwarffortress/repos/community-i686/dwarffortress.install
(from rev 177126, dwarffortress/trunk/dwarffortress.install)
  dwarffortress/repos/community-i686/dwarffortress.png
(from rev 177126, dwarffortress/trunk/dwarffortress.png)
Deleted:
  dwarffortress/repos/community-i686/PKGBUILD
  dwarffortress/repos/community-i686/dwarffortress
  dwarffortress/repos/community-i686/dwarffortress.desktop
  dwarffortress/repos/community-i686/dwarffortress.install
  dwarffortress/repos/community-i686/dwarffortress.png

---+
 PKGBUILD  |  146 
 dwarffortress |   40 ++---
 dwarffortress.desktop |   18 ++---
 dwarffortress.install |   18 ++---
 4 files changed, 111 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 14:47:43 UTC (rev 177126)
+++ PKGBUILD2016-05-26 14:47:50 UTC (rev 177127)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Daenyth 
-# Contributor: djnm 
-pkgname=dwarffortress
-pkgver=0.43.02
-_pkgver=43_02
-pkgrel=1
-pkgdesc="A single-player fantasy game in which you build a dwarven outpost or 
play an adventurer in a randomly generated world"
-arch=(i686 x86_64)
-url="http://www.bay12games.com/dwarves/;
-license=('custom:dwarffortress')
-depends=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew gcc-libs)
-makedepends=(git cmake)
-options=('!strip' '!buildflags')
-install=${pkgname}.install
-if [[ $CARCH == 'x86_64' ]]; then
-  makedepends+=(gcc-multilib)
-  depends=(gcc-libs-multilib lib32-gtk2 lib32-glu lib32-sdl_image 
lib32-libsndfile lib32-openal
-   lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
-  optdepends=('lib32-nvidia-utils: If you have nvidia graphics'
-  'lib32-catalyst-utils: If you have ATI graphics'
-  'lib32-alsa-lib: for alsa sound'
-  'lib32-libpulse: for pulse sound')
-fi
-# I made a fucking github repo with the sole purpose of unfucking df a bit
-# We try to compile whatever little bit of df is open source
-source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2
-git://github.com/svenstaro/dwarf_fortress_unfuck.git#tag=${pkgver}
-dwarffortress
-dwarffortress.desktop
-dwarffortress.png)
-sha256sums=('a70b638667c60f4a9e4014963e23b4c3cbb8fde582cf2fb46f5ef8c3c5859dca'
-'SKIP'
-'211eaec6559d4fd5c08341dbed1f27bfab997a57bdf61fd268f9940e244652c5'
-'e79e3d945c6cc0da58f4ca30a210c7bf1bc3149fd10406d1262a6214eb40445a'
-'83183abc70b11944720b0d86f4efd07468f786b03fa52fe429ca8e371f708e0f')
-
-build() {
-  cd $srcdir/dwarf_fortress_unfuck
-
-  cmake .
-  make
-}
-
-package() {
-  install -dm755 $pkgdir/opt/
-  cp -r $srcdir/df_linux $pkgdir/opt/$pkgname
-  rm -r $pkgdir/opt/$pkgname/df $pkgdir/opt/$pkgname/libs/* 
$pkgdir/opt/$pkgname/g_src
-
-  find $pkgdir/opt/$pkgname -type d -exec chmod 755 {} +
-  find $pkgdir/opt/$pkgname -type f -exec chmod 644 {} +
-
-  install -Dm755 $srcdir/df_linux/libs/Dwarf_Fortress 
$pkgdir/opt/$pkgname/libs/Dwarf_Fortress
-  install -Dm755 $srcdir/dwarf_fortress_unfuck/libgraphics.so 
$pkgdir/opt/$pkgname/libs/libgraphics.so
-  install -Dm755 $srcdir/dwarffortress $pkgdir/usr/bin/$pkgname
-
-  # No idea why we need this. Really. This isn't being loaded dynamically, 
it's not linked and
-  # in general there is no indication this is being used. However, it doesn't 
work without this symlink.
-  [[ $CARCH == "x86_64" ]] && ln -s /usr/lib32/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-  [[ $CARCH == "i686" ]] && ln -s /usr/lib/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-
-  # Set pkgname in runscript
-  sed -i "s/^pkgname=.*/pkgname=$pkgname/" $pkgdir/usr/bin/$pkgname
-
-  # Desktop launcher with icon
-  install -Dm644 $srcdir/dwarffortress.desktop 
$pkgdir/usr/share/applications/"$pkgname".desktop
-  install -Dm644 $srcdir/dwarffortress.png 
$pkgdir/usr/share/pixmaps/"$pkgname".png
-
-  install -Dm644 $srcdir/df_linux/readme.txt 
$pkgdir/usr/share/licenses/$pkgname/readme.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dwarffortress/repos/community-i686/PKGBUILD (from rev 177126, 
dwarffortress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 14:47:50 UTC (rev 177127)
@@ -0,0 

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

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 15:56:19
  Author: svenstaro
Revision: 177124

upgpkg: gitlab 8.8.1-1

upstream release 8.8.1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 13:28:06 UTC (rev 177123)
+++ PKGBUILD2016-05-26 13:56:19 UTC (rev 177124)
@@ -7,7 +7,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=8.8.0
+pkgver=8.8.1
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('i686' 'x86_64')
@@ -42,7 +42,7 @@
 nginx-ssl.conf.example
 lighttpd.conf.example)
 install='gitlab.install'
-sha256sums=('b68d508a2b69dc1c8e545d77fd17a9aee81b59e622a22b9943214e3ddb7a2f0b'
+sha256sums=('842519d8bcff1e7e056c83fdfded8dc042e34d8d8402a5ec2b748b155e0522c0'
 'becafe0f9811fea69a69b8e2739857ef007f0b7e89391229f123c79c285f34f3'
 'fbe5ec709ead1729e4de85f3f036f053b2b14041c540742315ff2d63a7bdd59a'
 'd21d8c961b2834115a1d9c646278782e0d1d1cde2357b58e67bad3a58527'


[arch-commits] Commit in gitlab/repos (68 files)

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 15:56:45
  Author: svenstaro
Revision: 177125

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

Added:
  gitlab/repos/community-i686/PKGBUILD
(from rev 177124, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-i686/apache-ssl.conf.example
(from rev 177124, gitlab/trunk/apache-ssl.conf.example)
  gitlab/repos/community-i686/apache.conf.example
(from rev 177124, gitlab/trunk/apache.conf.example)
  gitlab/repos/community-i686/apache2.2-ssl.conf.example
(from rev 177124, gitlab/trunk/apache2.2-ssl.conf.example)
  gitlab/repos/community-i686/apache2.2.conf.example
(from rev 177124, gitlab/trunk/apache2.2.conf.example)
  gitlab/repos/community-i686/gitlab-backup.service
(from rev 177124, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-i686/gitlab-backup.timer
(from rev 177124, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-i686/gitlab-mailroom.service
(from rev 177124, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-i686/gitlab-sidekiq.service
(from rev 177124, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-i686/gitlab-unicorn.service
(from rev 177124, gitlab/trunk/gitlab-unicorn.service)
  gitlab/repos/community-i686/gitlab.install
(from rev 177124, gitlab/trunk/gitlab.install)
  gitlab/repos/community-i686/gitlab.logrotate
(from rev 177124, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-i686/gitlab.target
(from rev 177124, gitlab/trunk/gitlab.target)
  gitlab/repos/community-i686/gitlab.tmpfiles.d
(from rev 177124, gitlab/trunk/gitlab.tmpfiles.d)
  gitlab/repos/community-i686/lighttpd.conf.example
(from rev 177124, gitlab/trunk/lighttpd.conf.example)
  gitlab/repos/community-i686/nginx-ssl.conf.example
(from rev 177124, gitlab/trunk/nginx-ssl.conf.example)
  gitlab/repos/community-i686/nginx.conf.example
(from rev 177124, gitlab/trunk/nginx.conf.example)
  gitlab/repos/community-x86_64/PKGBUILD
(from rev 177124, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-x86_64/apache-ssl.conf.example
(from rev 177124, gitlab/trunk/apache-ssl.conf.example)
  gitlab/repos/community-x86_64/apache.conf.example
(from rev 177124, gitlab/trunk/apache.conf.example)
  gitlab/repos/community-x86_64/apache2.2-ssl.conf.example
(from rev 177124, gitlab/trunk/apache2.2-ssl.conf.example)
  gitlab/repos/community-x86_64/apache2.2.conf.example
(from rev 177124, gitlab/trunk/apache2.2.conf.example)
  gitlab/repos/community-x86_64/gitlab-backup.service
(from rev 177124, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-x86_64/gitlab-backup.timer
(from rev 177124, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-x86_64/gitlab-mailroom.service
(from rev 177124, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
(from rev 177124, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-x86_64/gitlab-unicorn.service
(from rev 177124, gitlab/trunk/gitlab-unicorn.service)
  gitlab/repos/community-x86_64/gitlab.install
(from rev 177124, gitlab/trunk/gitlab.install)
  gitlab/repos/community-x86_64/gitlab.logrotate
(from rev 177124, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-x86_64/gitlab.target
(from rev 177124, gitlab/trunk/gitlab.target)
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
(from rev 177124, gitlab/trunk/gitlab.tmpfiles.d)
  gitlab/repos/community-x86_64/lighttpd.conf.example
(from rev 177124, gitlab/trunk/lighttpd.conf.example)
  gitlab/repos/community-x86_64/nginx-ssl.conf.example
(from rev 177124, gitlab/trunk/nginx-ssl.conf.example)
  gitlab/repos/community-x86_64/nginx.conf.example
(from rev 177124, gitlab/trunk/nginx.conf.example)
Deleted:
  gitlab/repos/community-i686/PKGBUILD
  gitlab/repos/community-i686/apache-ssl.conf.example
  gitlab/repos/community-i686/apache.conf.example
  gitlab/repos/community-i686/apache2.2-ssl.conf.example
  gitlab/repos/community-i686/apache2.2.conf.example
  gitlab/repos/community-i686/gitlab-backup.service
  gitlab/repos/community-i686/gitlab-backup.timer
  gitlab/repos/community-i686/gitlab-mailroom.service
  gitlab/repos/community-i686/gitlab-sidekiq.service
  gitlab/repos/community-i686/gitlab-unicorn.service
  gitlab/repos/community-i686/gitlab.install
  gitlab/repos/community-i686/gitlab.logrotate
  gitlab/repos/community-i686/gitlab.target
  gitlab/repos/community-i686/gitlab.tmpfiles.d
  gitlab/repos/community-i686/lighttpd.conf.example
  gitlab/repos/community-i686/nginx-ssl.conf.example
  gitlab/repos/community-i686/nginx.conf.example
  gitlab/repos/community-x86_64/PKGBUILD
  gitlab/repos/community-x86_64/apache-ssl.conf.example
  gitlab/repos/community-x86_64/apache.conf.example
  gitlab/repos/community-x86_64/apache2.2-ssl.conf.example
  gitlab/repos/community-x86_64/apache2.2.conf.example
  gitlab/repos/community-x86_64/gitlab-backup.service
  

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

2016-05-26 Thread Christian Hesse
Date: Thursday, May 26, 2016 @ 15:32:29
  Author: eworm
Revision: 268602

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

Added:
  lvm2/repos/testing-i686/
  lvm2/repos/testing-i686/11-dm-initramfs.rules
(from rev 268601, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-i686/PKGBUILD
(from rev 268601, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-i686/lvm2-make-sockets-static.patch
(from rev 268601, lvm2/trunk/lvm2-make-sockets-static.patch)
  lvm2/repos/testing-i686/lvm2.install
(from rev 268601, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-i686/lvm2_hook
(from rev 268601, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-i686/lvm2_install
(from rev 268601, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-i686/sd-lvm2_install
(from rev 268601, lvm2/trunk/sd-lvm2_install)
  lvm2/repos/testing-x86_64/
  lvm2/repos/testing-x86_64/11-dm-initramfs.rules
(from rev 268601, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-x86_64/PKGBUILD
(from rev 268601, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-x86_64/lvm2-make-sockets-static.patch
(from rev 268601, lvm2/trunk/lvm2-make-sockets-static.patch)
  lvm2/repos/testing-x86_64/lvm2.install
(from rev 268601, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-x86_64/lvm2_hook
(from rev 268601, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-x86_64/lvm2_install
(from rev 268601, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-x86_64/sd-lvm2_install
(from rev 268601, lvm2/trunk/sd-lvm2_install)

---+
 testing-i686/11-dm-initramfs.rules|3 
 testing-i686/PKGBUILD |  103 
 testing-i686/lvm2-make-sockets-static.patch   |   20 
 testing-i686/lvm2.install |   25 +
 testing-i686/lvm2_hook|   12 ++
 testing-i686/lvm2_install |   34 +++
 testing-i686/sd-lvm2_install  |   32 +++
 testing-x86_64/11-dm-initramfs.rules  |3 
 testing-x86_64/PKGBUILD   |  103 
 testing-x86_64/lvm2-make-sockets-static.patch |   20 
 testing-x86_64/lvm2.install   |   25 +
 testing-x86_64/lvm2_hook  |   12 ++
 testing-x86_64/lvm2_install   |   34 +++
 testing-x86_64/sd-lvm2_install|   32 +++
 14 files changed, 458 insertions(+)

Copied: lvm2/repos/testing-i686/11-dm-initramfs.rules (from rev 268601, 
lvm2/trunk/11-dm-initramfs.rules)
===
--- testing-i686/11-dm-initramfs.rules  (rev 0)
+++ testing-i686/11-dm-initramfs.rules  2016-05-26 13:32:29 UTC (rev 268602)
@@ -0,0 +1,3 @@
+# needed with new udev/mkinitcpio and as implemented in dracut:
+# 

+SUBSYSTEM=="block", KERNEL=="dm-[0-9]*", ACTION=="add|change", 
OPTIONS="db_persist"

Copied: lvm2/repos/testing-i686/PKGBUILD (from rev 268601, lvm2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-05-26 13:32:29 UTC (rev 268602)
@@ -0,0 +1,103 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Thomas Bächler 
+
+pkgbase=lvm2
+pkgname=('lvm2' 'device-mapper')
+pkgver=2.02.154
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://sourceware.org/lvm2/;
+license=('GPL2' 'LGPL2.1')
+makedepends=('systemd' 'thin-provisioning-tools')
+groups=('base')
+source=(ftp://sources.redhat.com/pub/lvm2/LVM2.${pkgver}.tgz{,.asc}
+lvm2_install
+lvm2_hook
+sd-lvm2_install
+11-dm-initramfs.rules
+lvm2-make-sockets-static.patch)
+sha1sums=('6b594f2b23e85bf5bf74a4c4a75817e84e5a0853'
+  'SKIP'
+  '056bb0227d07e35a3d365db02f439585314cfc76'
+  'ff0fdf0a3005a41acd4b36865056109effc3474b'
+  'f6ac78163ab3aba5b51a71655d6e53d05014bfa4'
+  'f6a554eea9557c3c236df2943bb6e7e723945c41'
+  'b084512af42f2e16cdccd8b7ee4de27b574d1f94')
+validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17')
+
+prepare() {
+  cd LVM2.${pkgver}
+
+  # enable lvmetad
+  sed -i 's|use_lvmetad = 0|use_lvmetad = 1|' conf/example.conf.in
+
+  # make systemd sockets static
+  patch -p1 -i "${srcdir}/lvm2-make-sockets-static.patch"
+}
+
+build() {
+  CONFIGUREOPTS="--prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin \
+  --with-udev-prefix=/usr 
--with-systemdsystemunitdir=/usr/lib/systemd/system \
+  --with-default-pid-dir=/run --with-default-dm-run-dir=/run 
--with-default-run-dir=/run/lvm \
+  --enable-pkgconfig --enable-readline --enable-dmeventd --enable-cmdlib 
--enable-applib \
+  --enable-udev_sync --enable-udev_rules 

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

2016-05-26 Thread Christian Hesse
Date: Thursday, May 26, 2016 @ 15:32:19
  Author: eworm
Revision: 268601

upgpkg: lvm2 2.02.154-1

new upstream release

Modified:
  lvm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 12:06:32 UTC (rev 268600)
+++ PKGBUILD2016-05-26 13:32:19 UTC (rev 268601)
@@ -4,7 +4,7 @@
 
 pkgbase=lvm2
 pkgname=('lvm2' 'device-mapper')
-pkgver=2.02.153
+pkgver=2.02.154
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://sourceware.org/lvm2/;
@@ -17,7 +17,7 @@
 sd-lvm2_install
 11-dm-initramfs.rules
 lvm2-make-sockets-static.patch)
-sha1sums=('6ae669ce2aa33d7d040ff99fc04202c714f2c438'
+sha1sums=('6b594f2b23e85bf5bf74a4c4a75817e84e5a0853'
   'SKIP'
   '056bb0227d07e35a3d365db02f439585314cfc76'
   'ff0fdf0a3005a41acd4b36865056109effc3474b'


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

2016-05-26 Thread Sergej Pupykin
Date: Thursday, May 26, 2016 @ 15:28:06
  Author: spupykin
Revision: 177123

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

Added:
  sdlmame/repos/community-i686/PKGBUILD
(from rev 177122, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-i686/extras.tar.gz
(from rev 177122, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-i686/sdlmame.install
(from rev 177122, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-i686/sdlmame.sh
(from rev 177122, sdlmame/trunk/sdlmame.sh)
  sdlmame/repos/community-x86_64/PKGBUILD
(from rev 177122, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-x86_64/extras.tar.gz
(from rev 177122, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-x86_64/sdlmame.install
(from rev 177122, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-x86_64/sdlmame.sh
(from rev 177122, sdlmame/trunk/sdlmame.sh)
Deleted:
  sdlmame/repos/community-i686/PKGBUILD
  sdlmame/repos/community-i686/extras.tar.gz
  sdlmame/repos/community-i686/sdlmame.install
  sdlmame/repos/community-i686/sdlmame.sh
  sdlmame/repos/community-x86_64/PKGBUILD
  sdlmame/repos/community-x86_64/extras.tar.gz
  sdlmame/repos/community-x86_64/sdlmame.install
  sdlmame/repos/community-x86_64/sdlmame.sh

--+
 /PKGBUILD|  172 +
 /sdlmame.install |   16 +++
 /sdlmame.sh  |  112 
 community-i686/PKGBUILD  |   86 --
 community-i686/sdlmame.install   |8 -
 community-i686/sdlmame.sh|   56 
 community-x86_64/PKGBUILD|   86 --
 community-x86_64/sdlmame.install |8 -
 community-x86_64/sdlmame.sh  |   56 
 9 files changed, 300 insertions(+), 300 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-26 13:27:44 UTC (rev 177122)
+++ community-i686/PKGBUILD 2016-05-26 13:28:06 UTC (rev 177123)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: robb_force 
-# Maintainer: JJDaNiMoTh 
-
-pkgname=sdlmame
-pkgver=0.173
-pkgrel=1
-pkgdesc="A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support."
-url="http://mamedev.org/;
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('sdl2' 'libxinerama' 'sdl2_ttf' 'alsa-lib' 'qt5-base')
-makedepends=('unzip' 'nasm' 'mesa' 'glu' 'wget' 'python2')
-install=sdlmame.install
-source=("https://github.com/mamedev/mame/releases/download/mame${pkgver/./}/mame${pkgver/./}s.zip;
-   "sdlmame.sh"
-   "extras.tar.gz"
-   ${_patches})
-md5sums=('69bd811dd252f8d79e31ea05e6aa15ab'
- '0cced0fe9868cc56129600fb4bd5b9ed'
- '420b61240bf5ae11615ba7c6100ee00d')
-
-prepare() {
-  cd $srcdir/
-  unzip mame.zip
-}
-
-build() {
-  cd $srcdir/
-  make NOWERROR=1 OPTIMIZE=2 PYTHON_EXECUTABLE=/usr/bin/python2 TOOLS=1
-}
-
-package() {
-  cd $srcdir/
-  # Install the sdlmame script
-  install -Dm755 $srcdir/${pkgname}.sh $pkgdir/usr/bin/${pkgname}
-
-  # Install the applications and the UI font in /usr/share
-  install -Dm755 mame $pkgdir/usr/lib/${pkgname}/${pkgname} || \
-  install -Dm755 mame64 $pkgdir/usr/lib/${pkgname}/${pkgname}
-
-  install -m755 chdman $pkgdir/usr/lib/${pkgname}/chdman
-  install -m755 jedutil $pkgdir/usr/lib/${pkgname}/jedutil
-  install -m755 regrep $pkgdir/usr/lib/${pkgname}/regrep
-  install -m755 romcmp $pkgdir/usr/lib/${pkgname}/romcmp
-#  install -m755 testkeys $pkgdir/usr/lib/${pkgname}/testkeys
-  install -m755 src2html $pkgdir/usr/lib/${pkgname}/src2html
-  install -m755 srcclean $pkgdir/usr/lib/${pkgname}/srcclean
-  install -m755 ldverify $pkgdir/usr/lib/${pkgname}/ldverify
-  install -m755 ldresample $pkgdir/usr/lib/${pkgname}/ldresample
-
-  # ln binaries
-  install -dm755 $pkgdir/usr/share/${pkgname}
-  for i in $pkgname chdman jedutil regrep romcmp testkeys src2html srcclean 
ldverify ldresample; do
-ln -s /usr/lib/$pkgname/$i $pkgdir/usr/share/$pkgname/$i
-  done
-
-  # Install the extra bits
-  install -d $pkgdir/usr/share/${pkgname}/{artwork,ctrlr,hash,keymaps,shader}
-  install -d $pkgdir/usr/share/man/man1
-  install -d $pkgdir/usr/share/man/man6
-  install -m644 src/osd/modules/opengl/shader/glsl*.*h 
$pkgdir/usr/share/${pkgname}/shader/
-#  install -m644 src/osd/sdl/man/*.1* $pkgdir/usr/share/man/man1/
-#  install -m644 src/osd/sdl/man/*.6* $pkgdir/usr/share/man/man6/
-
-  cp -a $srcdir/artwork/* $pkgdir/usr/share/${pkgname}/artwork/
-  install -m644 $srcdir/ctrlr/* $pkgdir/usr/share/${pkgname}/ctrlr/
-  install -m644 $srcdir/keymaps/* $pkgdir/usr/share/${pkgname}/keymaps/
-  install -m644 $srcdir/hash/* $pkgdir/usr/share/${pkgname}/hash/
-
-  # Include the license
-  install -Dm644 docs/LICENSE 

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

2016-05-26 Thread Sergej Pupykin
Date: Thursday, May 26, 2016 @ 15:27:14
  Author: spupykin
Revision: 177120

upgpkg: qmc2 0.64-1

upd

Modified:
  qmc2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 13:23:35 UTC (rev 177119)
+++ PKGBUILD2016-05-26 13:27:14 UTC (rev 177120)
@@ -3,7 +3,7 @@
 # Contributor: JJDaNiMoTh 
 
 pkgname=qmc2
-pkgver=0.63
+pkgver=0.64
 pkgrel=1
 pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
 url="http://qmc2.batcom-it.net/;
@@ -12,7 +12,7 @@
 depends=('qtwebkit' 'phonon' 'sdl')
 makedepends=('rsync' 'mesa')
 
source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2;)
-md5sums=('a8d3b943cbb1e188e18eb85fd2cc9342')
+md5sums=('4429ad33db6c3b2b47942825759ef34e')
 
 build() {
   cd "$srcdir/$pkgname"


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

2016-05-26 Thread Sergej Pupykin
Date: Thursday, May 26, 2016 @ 15:27:44
  Author: spupykin
Revision: 177122

upgpkg: sdlmame 0.174-1

upd

Modified:
  sdlmame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 13:27:32 UTC (rev 177121)
+++ PKGBUILD2016-05-26 13:27:44 UTC (rev 177122)
@@ -4,7 +4,7 @@
 # Maintainer: JJDaNiMoTh 
 
 pkgname=sdlmame
-pkgver=0.173
+pkgver=0.174
 pkgrel=1
 pkgdesc="A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support."
 url="http://mamedev.org/;
@@ -17,7 +17,7 @@
"sdlmame.sh"
"extras.tar.gz"
${_patches})
-md5sums=('69bd811dd252f8d79e31ea05e6aa15ab'
+md5sums=('0213928db25fbcc66e1b27463a4e10ee'
  '0cced0fe9868cc56129600fb4bd5b9ed'
  '420b61240bf5ae11615ba7c6100ee00d')
 


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

2016-05-26 Thread Sergej Pupykin
Date: Thursday, May 26, 2016 @ 15:27:32
  Author: spupykin
Revision: 177121

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-26 13:27:14 UTC (rev 177120)
+++ community-i686/PKGBUILD 2016-05-26 13:27:32 UTC (rev 177121)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: JJDaNiMoTh 
-
-pkgname=qmc2
-pkgver=0.63
-pkgrel=1
-pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
-url="http://qmc2.batcom-it.net/;
-license=("GPL")
-arch=('i686' 'x86_64')
-depends=('qtwebkit' 'phonon' 'sdl')
-makedepends=('rsync' 'mesa')
-source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2;)
-md5sums=('a8d3b943cbb1e188e18eb85fd2cc9342')
-
-build() {
-  cd "$srcdir/$pkgname"
-  export CTIME=0
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4 DESTDIR=$pkgdir install
-  install -d $pkgdir/usr/share/{applications,pixmaps}
-  install -D -m644 "$srcdir/qmc2/data/img/mame.png" "$pkgdir/usr/share/pixmaps"
-}

Copied: qmc2/repos/community-i686/PKGBUILD (from rev 177120, 
qmc2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-26 13:27:32 UTC (rev 177121)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: JJDaNiMoTh 
+
+pkgname=qmc2
+pkgver=0.64
+pkgrel=1
+pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
+url="http://qmc2.batcom-it.net/;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('qtwebkit' 'phonon' 'sdl')
+makedepends=('rsync' 'mesa')
+source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2;)
+md5sums=('4429ad33db6c3b2b47942825759ef34e')
+
+build() {
+  cd "$srcdir/$pkgname"
+  export CTIME=0
+  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4 DESTDIR=$pkgdir install
+  install -d $pkgdir/usr/share/{applications,pixmaps}
+  install -D -m644 "$srcdir/qmc2/data/img/mame.png" "$pkgdir/usr/share/pixmaps"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-26 13:27:14 UTC (rev 177120)
+++ community-x86_64/PKGBUILD   2016-05-26 13:27:32 UTC (rev 177121)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: JJDaNiMoTh 
-
-pkgname=qmc2
-pkgver=0.63
-pkgrel=1
-pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
-url="http://qmc2.batcom-it.net/;
-license=("GPL")
-arch=('i686' 'x86_64')
-depends=('qtwebkit' 'phonon' 'sdl')
-makedepends=('rsync' 'mesa')
-source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2;)
-md5sums=('a8d3b943cbb1e188e18eb85fd2cc9342')
-
-build() {
-  cd "$srcdir/$pkgname"
-  export CTIME=0
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4 DESTDIR=$pkgdir install
-  install -d $pkgdir/usr/share/{applications,pixmaps}
-  install -D -m644 "$srcdir/qmc2/data/img/mame.png" "$pkgdir/usr/share/pixmaps"
-}

Copied: qmc2/repos/community-x86_64/PKGBUILD (from rev 177120, 
qmc2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-05-26 13:27:32 UTC (rev 177121)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: JJDaNiMoTh 
+
+pkgname=qmc2
+pkgver=0.64
+pkgrel=1
+pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
+url="http://qmc2.batcom-it.net/;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('qtwebkit' 'phonon' 'sdl')
+makedepends=('rsync' 'mesa')

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

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 15:23:35
  Author: fyan
Revision: 177119

archrelease: copy trunk to community-any

Added:
  deepin-movie/repos/community-any/PKGBUILD
(from rev 177118, deepin-movie/trunk/PKGBUILD)
  deepin-movie/repos/community-any/pyqt5.6.patch
(from rev 177118, deepin-movie/trunk/pyqt5.6.patch)
Deleted:
  deepin-movie/repos/community-any/PKGBUILD

---+
 PKGBUILD  |   80 ++--
 pyqt5.6.patch |   12 
 2 files changed, 55 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 13:23:15 UTC (rev 177118)
+++ PKGBUILD2016-05-26 13:23:35 UTC (rev 177119)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-pkgver=2.3.0.20151102
-_commit=9046d58a99f0fd25e148e54290837712bc689a6c
-pkgrel=2
-pkgdesc='Movie player based on QtAV'
-arch=('any')
-url="https://gitcafe.com/Deepin/deepin-movie;
-license=('GPL3')
-depends=('python2-pyqt5' 'qtav' 'mediainfo' 'deepin-menu' 'python2-dbus'
- 'python2-peewee' 'python2-pillow' 'python2-magic' 'python2-bottle'
- 'deepin-qml-widgets' 'python2-xpybutil' 'python2-deepin-utils'
- 'python2-requests' 'dleyna-renderer' 'deepin-dbus-factory')
-makedepends=('deepin-gettext-tools' 'git')
-groups=('deepin-extra')
-source=("git+https://github.com/linuxdeepin/deepin-movie.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd deepin-movie
-
-  # fix python version
-  find -iname "*.py" | xargs sed -i 's=\(^#! */usr/bin.*\)python *$=\1python2='
-}
-
-build() {
-  cd deepin-movie
-  python2 configure.py
-  deepin-generate-mo locale/locale_config.ini
-}
-
-package() {
-  cd deepin-movie
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-}

Copied: deepin-movie/repos/community-any/PKGBUILD (from rev 177118, 
deepin-movie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 13:23:35 UTC (rev 177119)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+pkgver=2.3.0.20160214
+_commit=197d817a39101836a38ad22bffad60a1b3937959
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('any')
+url="https://gitcafe.com/Deepin/deepin-movie;
+license=('GPL3')
+depends=('python2-pyqt5' 'qtav' 'mediainfo' 'deepin-menu' 'python2-dbus'
+ 'python2-peewee' 'python2-pillow' 'python2-magic' 'python2-bottle'
+ 'deepin-qml-widgets' 'python2-xpybutil' 'python2-deepin-utils'
+ 'python2-requests' 'dleyna-renderer' 'deepin-dbus-factory')
+makedepends=('deepin-gettext-tools' 'git')
+groups=('deepin-extra')
+source=("git+https://github.com/linuxdeepin/deepin-movie.git#commit=$_commit;
+pyqt5.6.patch)
+sha256sums=('SKIP'
+'9e0c61503f46ebba7dd24917e84a1248e9f339a82bcca3091a02be7ed5ceb8aa')
+
+prepare() {
+  cd deepin-movie
+
+  # fix python version
+  find -iname "*.py" | xargs sed -i 's=\(^#! */usr/bin.*\)python *$=\1python2='
+
+  patch -p1 -i ../pyqt5.6.patch
+}
+
+build() {
+  cd deepin-movie
+  python2 configure.py
+  deepin-generate-mo locale/locale_config.ini
+}
+
+package() {
+  cd deepin-movie
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+
+  chmod 0755 "$pkgdir"/usr/share/deepin-movie/main.py 
"$pkgdir"/usr/bin/host_service.py
+}

Copied: deepin-movie/repos/community-any/pyqt5.6.patch (from rev 177118, 
deepin-movie/trunk/pyqt5.6.patch)
===
--- pyqt5.6.patch   (rev 0)
+++ pyqt5.6.patch   2016-05-26 13:23:35 UTC (rev 177119)
@@ -0,0 +1,12 @@
+diff --git a/src/views/window.py b/src/views/window.py
+index 3aee43a..0870ed0 100644
+--- a/src/views/window.py
 b/src/views/window.py
+@@ -174,7 +174,6 @@ class Window(QQuickView):
+ def setCursorVisible(self, visible):
+ self.setCursor(QCursor(Qt.ArrowCursor if visible else Qt.BlankCursor))
+ 
+-@pyqtSlot("QVariant")
+ def focusWindowChangedSlot(self, win):
+ if not win: self.rootObject().hideTransientWindows()
+ 


[arch-commits] Commit in deepin-movie/trunk (PKGBUILD pyqt5.6.patch)

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 15:23:15
  Author: fyan
Revision: 177118

upgpkg: deepin-movie 2.3.0.20160214-1

Added:
  deepin-movie/trunk/pyqt5.6.patch
Modified:
  deepin-movie/trunk/PKGBUILD

---+
 PKGBUILD  |   16 +++-
 pyqt5.6.patch |   12 
 2 files changed, 23 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 13:04:40 UTC (rev 177117)
+++ PKGBUILD2016-05-26 13:23:15 UTC (rev 177118)
@@ -2,9 +2,9 @@
 # Maintainer: Felix Yan 
 
 pkgname=deepin-movie
-pkgver=2.3.0.20151102
-_commit=9046d58a99f0fd25e148e54290837712bc689a6c
-pkgrel=2
+pkgver=2.3.0.20160214
+_commit=197d817a39101836a38ad22bffad60a1b3937959
+pkgrel=1
 pkgdesc='Movie player based on QtAV'
 arch=('any')
 url="https://gitcafe.com/Deepin/deepin-movie;
@@ -15,8 +15,10 @@
  'python2-requests' 'dleyna-renderer' 'deepin-dbus-factory')
 makedepends=('deepin-gettext-tools' 'git')
 groups=('deepin-extra')
-source=("git+https://github.com/linuxdeepin/deepin-movie.git#commit=$_commit;)
-sha256sums=('SKIP')
+source=("git+https://github.com/linuxdeepin/deepin-movie.git#commit=$_commit;
+pyqt5.6.patch)
+sha256sums=('SKIP'
+'9e0c61503f46ebba7dd24917e84a1248e9f339a82bcca3091a02be7ed5ceb8aa')
 
 prepare() {
   cd deepin-movie
@@ -23,6 +25,8 @@
 
   # fix python version
   find -iname "*.py" | xargs sed -i 's=\(^#! */usr/bin.*\)python *$=\1python2='
+
+  patch -p1 -i ../pyqt5.6.patch
 }
 
 build() {
@@ -34,4 +38,6 @@
 package() {
   cd deepin-movie
   make DESTDIR="${pkgdir}" PREFIX="/usr" install
+
+  chmod 0755 "$pkgdir"/usr/share/deepin-movie/main.py 
"$pkgdir"/usr/bin/host_service.py
 }

Added: pyqt5.6.patch
===
--- pyqt5.6.patch   (rev 0)
+++ pyqt5.6.patch   2016-05-26 13:23:15 UTC (rev 177118)
@@ -0,0 +1,12 @@
+diff --git a/src/views/window.py b/src/views/window.py
+index 3aee43a..0870ed0 100644
+--- a/src/views/window.py
 b/src/views/window.py
+@@ -174,7 +174,6 @@ class Window(QQuickView):
+ def setCursorVisible(self, visible):
+ self.setCursor(QCursor(Qt.ArrowCursor if visible else Qt.BlankCursor))
+ 
+-@pyqtSlot("QVariant")
+ def focusWindowChangedSlot(self, win):
+ if not win: self.rootObject().hideTransientWindows()
+ 


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

2016-05-26 Thread Jaroslav Lichtblau
Date: Thursday, May 26, 2016 @ 15:04:40
  Author: jlichtblau
Revision: 177117

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

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

+
 /PKGBUILD  |  138 +++
 /syncthing.install |   24 ++
 community-i686/PKGBUILD|   69 -
 community-i686/syncthing.install   |   12 ---
 community-x86_64/PKGBUILD  |   69 -
 community-x86_64/syncthing.install |   12 ---
 6 files changed, 162 insertions(+), 162 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-26 13:03:37 UTC (rev 177116)
+++ community-i686/PKGBUILD 2016-05-26 13:04:40 UTC (rev 177117)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Maintainer : Jaroslav Lichtblau 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=syncthing
-pkgver=0.13.2
-pkgrel=1
-pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-arch=('i686' 'x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-install=$pkgname.install
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
-sha1sums=('SKIP')
-
-prepare() {
-  cd "${srcdir}"
-  install -d "src/github.com/syncthing"
-  mv "${pkgname}-${pkgver}" "src/github.com/syncthing/${pkgname}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-  if [ ${CARCH}" == "i686" ] ; then
-  go run build.go -no-upgrade -goarch 386 build
-  elif [ ${CARCH}" == "x86_64" ] ; then
-  go run build.go -no-upgrade -goarch amd64 build
-  else
-  go run build.go -no-upgrade build
-  fi
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package() {
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-# license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-# man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}

Copied: syncthing/repos/community-i686/PKGBUILD (from rev 177116, 
syncthing/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-26 13:04:40 UTC (rev 177117)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Maintainer : Jaroslav Lichtblau 
+# Contributor: Sauyon Lee 
+# Contributor: Kevin MacMartin 
+# Contributor: korjjj 
+
+pkgname=syncthing
+pkgver=0.13.4
+pkgrel=1
+pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
+arch=('i686' 'x86_64')
+url="http://syncthing.net/;
+license=('MPL')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+install=$pkgname.install
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
+sha1sums=('SKIP')
+
+prepare() {
+  cd "${srcdir}"
+  install -d "src/github.com/syncthing"
+  mv 

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

2016-05-26 Thread Jaroslav Lichtblau
Date: Thursday, May 26, 2016 @ 15:03:37
  Author: jlichtblau
Revision: 177116

upgpkg: syncthing 0.13.4-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 12:24:28 UTC (rev 177115)
+++ PKGBUILD2016-05-26 13:03:37 UTC (rev 177116)
@@ -6,7 +6,7 @@
 # Contributor: korjjj 
 
 pkgname=syncthing
-pkgver=0.13.2
+pkgver=0.13.4
 pkgrel=1
 pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
 arch=('i686' 'x86_64')


[arch-commits] Commit in gitlab-ci-multi-runner/repos (28 files)

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 14:24:28
  Author: svenstaro
Revision: 177115

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

Added:
  gitlab-ci-multi-runner/repos/community-i686/PKGBUILD
(from rev 177114, gitlab-ci-multi-runner/trunk/PKGBUILD)
  gitlab-ci-multi-runner/repos/community-i686/config.toml
(from rev 177114, gitlab-ci-multi-runner/trunk/config.toml)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.install
(from rev 177114, gitlab-ci-multi-runner/trunk/gitlab-runner.install)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.service
(from rev 177114, gitlab-ci-multi-runner/trunk/gitlab-runner.service)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.sysusers
(from rev 177114, gitlab-ci-multi-runner/trunk/gitlab-runner.sysusers)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.tmpfiles
(from rev 177114, gitlab-ci-multi-runner/trunk/gitlab-runner.tmpfiles)
  gitlab-ci-multi-runner/repos/community-i686/godeps.patch
(from rev 177114, gitlab-ci-multi-runner/trunk/godeps.patch)
  gitlab-ci-multi-runner/repos/community-x86_64/PKGBUILD
(from rev 177114, gitlab-ci-multi-runner/trunk/PKGBUILD)
  gitlab-ci-multi-runner/repos/community-x86_64/config.toml
(from rev 177114, gitlab-ci-multi-runner/trunk/config.toml)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.install
(from rev 177114, gitlab-ci-multi-runner/trunk/gitlab-runner.install)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.service
(from rev 177114, gitlab-ci-multi-runner/trunk/gitlab-runner.service)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.sysusers
(from rev 177114, gitlab-ci-multi-runner/trunk/gitlab-runner.sysusers)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.tmpfiles
(from rev 177114, gitlab-ci-multi-runner/trunk/gitlab-runner.tmpfiles)
  gitlab-ci-multi-runner/repos/community-x86_64/godeps.patch
(from rev 177114, gitlab-ci-multi-runner/trunk/godeps.patch)
Deleted:
  gitlab-ci-multi-runner/repos/community-i686/PKGBUILD
  gitlab-ci-multi-runner/repos/community-i686/config.toml
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.install
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.service
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.sysusers
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.tmpfiles
  gitlab-ci-multi-runner/repos/community-i686/godeps.patch
  gitlab-ci-multi-runner/repos/community-x86_64/PKGBUILD
  gitlab-ci-multi-runner/repos/community-x86_64/config.toml
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.install
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.service
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.sysusers
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.tmpfiles
  gitlab-ci-multi-runner/repos/community-x86_64/godeps.patch

-+
 /PKGBUILD   |  150 ++
 /config.toml|2 
 /gitlab-runner.install  |   16 +++
 /gitlab-runner.service  |   34 ++
 /gitlab-runner.sysusers |2 
 /gitlab-runner.tmpfiles |2 
 /godeps.patch   |   26 +
 community-i686/PKGBUILD |   75 ---
 community-i686/config.toml  |1 
 community-i686/gitlab-runner.install|8 -
 community-i686/gitlab-runner.service|   17 ---
 community-i686/gitlab-runner.sysusers   |1 
 community-i686/gitlab-runner.tmpfiles   |1 
 community-i686/godeps.patch |   13 --
 community-x86_64/PKGBUILD   |   75 ---
 community-x86_64/config.toml|1 
 community-x86_64/gitlab-runner.install  |8 -
 community-x86_64/gitlab-runner.service  |   17 ---
 community-x86_64/gitlab-runner.sysusers |1 
 community-x86_64/gitlab-runner.tmpfiles |1 
 community-x86_64/godeps.patch   |   13 --
 21 files changed, 232 insertions(+), 232 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-26 12:24:15 UTC (rev 177114)
+++ community-i686/PKGBUILD 2016-05-26 12:24:28 UTC (rev 177115)
@@ -1,75 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lubomir 'Kuci' Kucera 
-
-pkgname=gitlab-ci-multi-runner
-pkgver=1.1.4
-pkgrel=1
-pkgdesc="The official GitLab CI runner written in Go"
-arch=('i686' 'x86_64')
-url='https://gitlab.com/gitlab-org/gitlab-ci-multi-runner'
-license=('GPLv3')
-depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
-makedepends=('git' 'go' 'godep' 'go-bindata' 'mercurial')
-install='gitlab-runner.install'
-backup=('etc/gitlab-runner/config.toml')
-noextract=('prebuilt.tar.gz')

[arch-commits] Commit in gitlab-ci-multi-runner/trunk (PKGBUILD)

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 14:24:15
  Author: svenstaro
Revision: 177114

upgpkg: gitlab-ci-multi-runner 1.2.0-1

upstream release 1.2.0

Modified:
  gitlab-ci-multi-runner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 12:18:24 UTC (rev 177113)
+++ PKGBUILD2016-05-26 12:24:15 UTC (rev 177114)
@@ -2,7 +2,7 @@
 # Contributor: Lubomir 'Kuci' Kucera 
 
 pkgname=gitlab-ci-multi-runner
-pkgver=1.1.4
+pkgver=1.2.0
 pkgrel=1
 pkgdesc="The official GitLab CI runner written in Go"
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
 "gitlab-runner.tmpfiles"
 "config.toml"
 "godeps.patch")
-sha256sums=('cd64a44b20e1e10ab80d538df8115a7b20b06fdc607f890a3aa467017925243c'
+sha256sums=('4847bc33f659225ad84681b19b5187302a64632d3db813ebb593e94767b3cb99'
 '2975278bad9885bdb5065160bc19e0dab8faff6d984935b69039c2d1dc947948'
 '289f73a16df5c8823a15b67a4aaa635d32b9c49ce4e11baa5d33f12828a1e0bb'
 '843cabc4e1cfbf0a81365abae0c3d6ac388c00074017f9c286a7d5545828d1fa'


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

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 14:18:24
  Author: svenstaro
Revision: 177113

archrelease: copy trunk to community-any

Added:
  ansible/repos/community-any/PKGBUILD
(from rev 177112, ansible/trunk/PKGBUILD)
Deleted:
  ansible/repos/community-any/PKGBUILD

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 12:18:20 UTC (rev 177112)
+++ PKGBUILD2016-05-26 12:18:24 UTC (rev 177113)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Daniel Wallace 
-# Contributor: Chris 
-# Contributor: m0ikz 
-# Contributor: atweiden 
-
-pkgname=ansible
-pkgver=2.0.2.0
-pkgrel=2
-pkgdesc='Radically simple IT automation platform'
-arch=('any')
-url='http://www.ansible.com'
-license=('GPL3')
-depends=('python2' 'python2-yaml' 'python2-paramiko' 'python2-jinja' 
'python2-crypto')
-optdepends=('python2-passlib: crypt values for vars_prompt')
-makedepends=('asciidoc' 'fakeroot')
-backup=('etc/ansible/ansible.cfg')
-source=(http://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz)
-md5sums=('e210c7d696fe2c084f78a07b8cbc2981')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py install -O1 --root="${pkgdir}"
-  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
-
-  install -d "${pkgdir}"/usr/share/ansible/doc
-  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
-  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
-
-  install -d "${pkgdir}"/usr/share/man/man1
-  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
-}

Copied: ansible/repos/community-any/PKGBUILD (from rev 177112, 
ansible/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 12:18:24 UTC (rev 177113)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Daniel Wallace 
+# Contributor: Chris 
+# Contributor: m0ikz 
+# Contributor: atweiden 
+
+pkgname=ansible
+pkgver=2.1.0.0
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='http://www.ansible.com'
+license=('GPL3')
+depends=('python2' 'python2-yaml' 'python2-paramiko' 'python2-jinja' 
'python2-crypto')
+optdepends=('python2-passlib: crypt values for vars_prompt')
+makedepends=('asciidoc' 'fakeroot')
+backup=('etc/ansible/ansible.cfg')
+source=(http://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz)
+md5sums=('9d8bd04d3f0032c1948c5b2bf0b3b048')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
+
+  install -d "${pkgdir}"/usr/share/ansible/doc
+  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
+  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
+}


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

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 14:18:20
  Author: svenstaro
Revision: 177112

upgpkg: ansible 2.1.0.0-1

upstream release 2.1.0.0

Modified:
  ansible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 12:17:48 UTC (rev 177111)
+++ PKGBUILD2016-05-26 12:18:20 UTC (rev 177112)
@@ -7,8 +7,8 @@
 # Contributor: atweiden 
 
 pkgname=ansible
-pkgver=2.0.2.0
-pkgrel=2
+pkgver=2.1.0.0
+pkgrel=1
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
 url='http://www.ansible.com'
@@ -18,7 +18,7 @@
 makedepends=('asciidoc' 'fakeroot')
 backup=('etc/ansible/ansible.cfg')
 source=(http://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz)
-md5sums=('e210c7d696fe2c084f78a07b8cbc2981')
+md5sums=('9d8bd04d3f0032c1948c5b2bf0b3b048')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in ruby2.1-bundler/repos/community-any (PKGBUILD PKGBUILD)

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 14:17:48
  Author: svenstaro
Revision: 177111

archrelease: copy trunk to community-any

Added:
  ruby2.1-bundler/repos/community-any/PKGBUILD
(from rev 177110, ruby2.1-bundler/trunk/PKGBUILD)
Deleted:
  ruby2.1-bundler/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 12:17:43 UTC (rev 177110)
+++ PKGBUILD2016-05-26 12:17:48 UTC (rev 177111)
@@ -1,30 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jonne Haß 
-
-pkgname=ruby2.1-bundler
-_gemname=${pkgname#ruby2.1-}
-pkgver=1.12.1
-pkgrel=1
-pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
-arch=('any')
-url="http://bundler.io;
-license=('MIT')
-depends=('ruby2.1')
-options=('!emptydirs')
-source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
-noextract=("$_gemname-$pkgver.gem")
-sha256sums=('e3133b1a73d51d7adb9898e24ef07d84e479fb121b8f848320756db222ceaed0')
-
-package() {
-  cd "$srcdir"
-
-  local _gemdir="$(ruby-2.1 -rubygems -e'puts Gem.default_dir')"
-  HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem-2.1 install 
--no-user-install --ignore-dependencies \
---no-ri --no-rdoc -i "$pkgdir/$_gemdir" "$_gemname-$pkgver.gem"
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-
-  install -d "$pkgdir/usr/bin/"
-  ln -s "$_gemdir/bin/bundle" "$pkgdir/usr/bin/bundle-2.1"
-}
-

Copied: ruby2.1-bundler/repos/community-any/PKGBUILD (from rev 177110, 
ruby2.1-bundler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 12:17:48 UTC (rev 177111)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Jonne Haß 
+
+pkgname=ruby2.1-bundler
+_gemname=${pkgname#ruby2.1-}
+pkgver=1.12.5
+pkgrel=1
+pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
+arch=('any')
+url="http://bundler.io;
+license=('MIT')
+depends=('ruby2.1')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
+noextract=("$_gemname-$pkgver.gem")
+sha256sums=('6c5e111b828de62d3b5d72d8ae0add77099a34059ede582f0de7c85479ec04e1')
+
+package() {
+  cd "$srcdir"
+
+  local _gemdir="$(ruby-2.1 -rubygems -e'puts Gem.default_dir')"
+  HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem-2.1 install 
--no-user-install --ignore-dependencies \
+--no-ri --no-rdoc -i "$pkgdir/$_gemdir" "$_gemname-$pkgver.gem"
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+
+  install -d "$pkgdir/usr/bin/"
+  ln -s "$_gemdir/bin/bundle" "$pkgdir/usr/bin/bundle-2.1"
+}
+


[arch-commits] Commit in ruby2.1-bundler/trunk (PKGBUILD)

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 14:17:43
  Author: svenstaro
Revision: 177110

upgpkg: ruby2.1-bundler 1.12.5-1

upstream release 1.12.5

Modified:
  ruby2.1-bundler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 12:16:23 UTC (rev 177109)
+++ PKGBUILD2016-05-26 12:17:43 UTC (rev 177110)
@@ -3,7 +3,7 @@
 
 pkgname=ruby2.1-bundler
 _gemname=${pkgname#ruby2.1-}
-pkgver=1.12.1
+pkgver=1.12.5
 pkgrel=1
 pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
 arch=('any')
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
 noextract=("$_gemname-$pkgver.gem")
-sha256sums=('e3133b1a73d51d7adb9898e24ef07d84e479fb121b8f848320756db222ceaed0')
+sha256sums=('6c5e111b828de62d3b5d72d8ae0add77099a34059ede582f0de7c85479ec04e1')
 
 package() {
   cd "$srcdir"


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

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 14:16:13
  Author: svenstaro
Revision: 177108

upgpkg: glm 0.9.7.5-1

upstream release 0.9.7.5

Modified:
  glm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 10:56:14 UTC (rev 177107)
+++ PKGBUILD2016-05-26 12:16:13 UTC (rev 177108)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Peter Hatina 
 pkgname=glm
-pkgver=0.9.7.4
+pkgver=0.9.7.5
 pkgrel=1
 pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification"
 arch=('any')
@@ -9,7 +9,7 @@
 url="http://glm.g-truc.net;
 makedepends=('cmake')
 
source=("https://github.com/g-truc/glm/releases/download/${pkgver}/glm-${pkgver}.zip;)
-md5sums=('e671eb2af475bd76def70776117618de')
+md5sums=('8d8da9c561e43c975946be9c6d37935d')
 
 package() {
 cd $pkgname


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

2016-05-26 Thread Sven-Hendrik Haase
Date: Thursday, May 26, 2016 @ 14:16:23
  Author: svenstaro
Revision: 177109

archrelease: copy trunk to community-any

Added:
  glm/repos/community-any/PKGBUILD
(from rev 177108, glm/trunk/PKGBUILD)
Deleted:
  glm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-26 12:16:13 UTC (rev 177108)
+++ PKGBUILD2016-05-26 12:16:23 UTC (rev 177109)
@@ -1,32 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Peter Hatina 
-pkgname=glm
-pkgver=0.9.7.4
-pkgrel=1
-pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification"
-arch=('any')
-license=('MIT')
-url="http://glm.g-truc.net;
-makedepends=('cmake')
-source=("https://github.com/g-truc/glm/releases/download/${pkgver}/glm-${pkgver}.zip;)
-md5sums=('e671eb2af475bd76def70776117618de')
-
-package() {
-cd $pkgname
-
-mkdir build
-cd build
-
-cmake -DCMAKE_INSTALL_PREFIX=/usr ..
-make DESTDIR=$pkgdir install
-
-cd ..
-
-mkdir -p $pkgdir/usr/share/doc
-cp -r doc $pkgdir/usr/share/doc/glm
-
-find $pkgdir -type f -exec chmod 644 {} \;
-find $pkgdir -type d -exec chmod 755 {} \;
-
-install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: glm/repos/community-any/PKGBUILD (from rev 177108, glm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-26 12:16:23 UTC (rev 177109)
@@ -0,0 +1,32 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Peter Hatina 
+pkgname=glm
+pkgver=0.9.7.5
+pkgrel=1
+pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification"
+arch=('any')
+license=('MIT')
+url="http://glm.g-truc.net;
+makedepends=('cmake')
+source=("https://github.com/g-truc/glm/releases/download/${pkgver}/glm-${pkgver}.zip;)
+md5sums=('8d8da9c561e43c975946be9c6d37935d')
+
+package() {
+cd $pkgname
+
+mkdir build
+cd build
+
+cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+make DESTDIR=$pkgdir install
+
+cd ..
+
+mkdir -p $pkgdir/usr/share/doc
+cp -r doc $pkgdir/usr/share/doc/glm
+
+find $pkgdir -type f -exec chmod 644 {} \;
+find $pkgdir -type d -exec chmod 755 {} \;
+
+install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 14:06:32
  Author: bpiotrowski
Revision: 268600

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

Added:
  gdbm/repos/testing-i686/
  gdbm/repos/testing-i686/PKGBUILD
(from rev 268599, gdbm/trunk/PKGBUILD)
  gdbm/repos/testing-i686/gdbm-1.10-zeroheaders.patch
(from rev 268599, gdbm/trunk/gdbm-1.10-zeroheaders.patch)
  gdbm/repos/testing-i686/gdbm.install
(from rev 268599, gdbm/trunk/gdbm.install)
  gdbm/repos/testing-x86_64/
  gdbm/repos/testing-x86_64/PKGBUILD
(from rev 268599, gdbm/trunk/PKGBUILD)
  gdbm/repos/testing-x86_64/gdbm-1.10-zeroheaders.patch
(from rev 268599, gdbm/trunk/gdbm-1.10-zeroheaders.patch)
  gdbm/repos/testing-x86_64/gdbm.install
(from rev 268599, gdbm/trunk/gdbm.install)

+
 testing-i686/PKGBUILD  |   56 +++
 testing-i686/gdbm-1.10-zeroheaders.patch   |   33 +++
 testing-i686/gdbm.install  |   21 ++
 testing-x86_64/PKGBUILD|   56 +++
 testing-x86_64/gdbm-1.10-zeroheaders.patch |   33 +++
 testing-x86_64/gdbm.install|   21 ++
 6 files changed, 220 insertions(+)

Copied: gdbm/repos/testing-i686/PKGBUILD (from rev 268599, gdbm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-05-26 12:06:32 UTC (rev 268600)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=gdbm
+pkgver=1.12
+pkgrel=1
+pkgdesc="GNU database library"
+url="http://www.gnu.org/software/gdbm/gdbm.html;
+license=('GPL3')
+arch=('i686' 'x86_64')
+depends=('glibc' 'sh')
+options=('!makeflags')
+install=gdbm.install
+source=(ftp://ftp.gnu.org/gnu/gdbm/${pkgname}-${pkgver}.tar.gz{,.sig}
+gdbm-1.10-zeroheaders.patch)
+validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732')
+md5sums=('9ce96ff4c99e74295ea19040931c8fb9'
+ 'SKIP'
+ 'ac255b10452005237836cd2d3a470733')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Prevent gdbm from storing uninitialized memory content
+  # to database files. This patch improves security, as the
+  # uninitialized memory might contain sensitive informations
+  # from other applications.
+  # https://bugzilla.redhat.com/show_bug.cgi?id=4457
+  # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=208927
+  patch -Np1 -i ../gdbm-1.10-zeroheaders.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --enable-libgdbm-compat
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # create symlinks for compatibility
+  install -dm755 "${pkgdir}"/usr/include/gdbm
+  ln -sf ../gdbm.h "${pkgdir}"/usr/include/gdbm/gdbm.h
+  ln -sf ../ndbm.h "${pkgdir}"/usr/include/gdbm/ndbm.h
+  ln -sf ../dbm.h  "${pkgdir}"/usr/include/gdbm/dbm.h
+}

Copied: gdbm/repos/testing-i686/gdbm-1.10-zeroheaders.patch (from rev 268599, 
gdbm/trunk/gdbm-1.10-zeroheaders.patch)
===
--- testing-i686/gdbm-1.10-zeroheaders.patch(rev 0)
+++ testing-i686/gdbm-1.10-zeroheaders.patch2016-05-26 12:06:32 UTC (rev 
268600)
@@ -0,0 +1,33 @@
+diff -up gdbm-1.10/src/falloc.c.zeroheaders gdbm-1.10/src/falloc.c
+--- gdbm-1.10/src/falloc.c.zeroheaders 2011-11-11 11:59:11.0 +0100
 gdbm-1.10/src/falloc.c 2011-11-14 17:34:32.487604027 +0100
+@@ -255,7 +255,7 @@ push_avail_block (GDBM_FILE dbf)
+ 
+ 
+   /* Split the header block. */
+-  temp = (avail_block *) malloc (av_size);
++  temp = (avail_block *) calloc (1, av_size);
+   if (temp == NULL) _gdbm_fatal (dbf, _("malloc error"));
+   /* Set the size to be correct AFTER the pop_avail_block. */
+   temp->size = dbf->header->avail.size;
+diff -up gdbm-1.10/src/gdbmopen.c.zeroheaders gdbm-1.10/src/gdbmopen.c
+--- gdbm-1.10/src/gdbmopen.c.zeroheaders   2011-11-11 19:39:42.0 
+0100
 gdbm-1.10/src/gdbmopen.c   2011-11-14 17:33:24.867608650 +0100
+@@ -264,7 +264,7 @@ gdbm_open (const char *file, int block_s
+   (dbf->header->block_size - sizeof (hash_bucket))
+   / sizeof (bucket_element) + 1;
+   dbf->header->bucket_size  = dbf->header->block_size;
+-  dbf->bucket = (hash_bucket *) malloc (dbf->header->bucket_size);
++  dbf->bucket = (hash_bucket *) calloc (1, dbf->header->bucket_size);
+   if (dbf->bucket == NULL)
+   {
+ gdbm_close (dbf);
+@@ -456,7 +456,7 @@ _gdbm_init_cache(GDBM_FILE dbf, size_t s
+   for(index = 0; index < size; index++)
+ {
+

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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 14:06:25
  Author: bpiotrowski
Revision: 268599

upgpkg: gdbm 1.12-1

new upstream release

Modified:
  gdbm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 12:02:47 UTC (rev 268598)
+++ PKGBUILD2016-05-26 12:06:25 UTC (rev 268599)
@@ -5,7 +5,7 @@
 # Contributor: judd 
 
 pkgname=gdbm
-pkgver=1.11
+pkgver=1.12
 pkgrel=1
 pkgdesc="GNU database library"
 url="http://www.gnu.org/software/gdbm/gdbm.html;
@@ -17,7 +17,7 @@
 source=(ftp://ftp.gnu.org/gnu/gdbm/${pkgname}-${pkgver}.tar.gz{,.sig}
 gdbm-1.10-zeroheaders.patch)
 validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732')
-md5sums=('72c832680cf0999caedbe5b265c8c1bd'
+md5sums=('9ce96ff4c99e74295ea19040931c8fb9'
  'SKIP'
  'ac255b10452005237836cd2d3a470733')
 


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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 14:02:47
  Author: bpiotrowski
Revision: 268598

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-26 12:02:42 UTC (rev 268597)
+++ extra-i686/PKGBUILD 2016-05-26 12:02:47 UTC (rev 268598)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Kovivchak Evgen 
-
-pkgname=jemalloc
-pkgver=4.1.1
-pkgrel=1
-pkgdesc='General-purpose scalable concurrent malloc implementation'
-arch=('i686' 'x86_64')
-license=('BSD')
-url='http://www.canonware.com/jemalloc/'
-depends=('glibc')
-provides=('libjemalloc.so')
-optdepends=('perl: for jeprof')
-source=(http://www.canonware.com/download/jemalloc/$pkgname-$pkgver.tar.bz2)
-md5sums=('7184512da1e4d3331f9587036a6c4739')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  find "$pkgdir" -name \*.a -type f -exec chmod 644 '{}' \;
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: jemalloc/repos/extra-i686/PKGBUILD (from rev 268597, 
jemalloc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-26 12:02:47 UTC (rev 268598)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Kovivchak Evgen 
+
+pkgname=jemalloc
+pkgver=4.2.0
+pkgrel=1
+pkgdesc='General-purpose scalable concurrent malloc implementation'
+arch=('i686' 'x86_64')
+license=('BSD')
+url='http://www.canonware.com/jemalloc/'
+depends=('glibc')
+provides=('libjemalloc.so')
+optdepends=('perl: for jeprof')
+source=(http://www.canonware.com/download/jemalloc/$pkgname-$pkgver.tar.bz2)
+md5sums=('e6b5d5a1ea93a04207528d274efdd144')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  find "$pkgdir" -name \*.a -type f -exec chmod 644 '{}' \;
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-26 12:02:42 UTC (rev 268597)
+++ extra-x86_64/PKGBUILD   2016-05-26 12:02:47 UTC (rev 268598)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Kovivchak Evgen 
-
-pkgname=jemalloc
-pkgver=4.1.1
-pkgrel=1
-pkgdesc='General-purpose scalable concurrent malloc implementation'
-arch=('i686' 'x86_64')
-license=('BSD')
-url='http://www.canonware.com/jemalloc/'
-depends=('glibc')
-provides=('libjemalloc.so')
-optdepends=('perl: for jeprof')
-source=(http://www.canonware.com/download/jemalloc/$pkgname-$pkgver.tar.bz2)
-md5sums=('7184512da1e4d3331f9587036a6c4739')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  find "$pkgdir" -name \*.a -type f -exec chmod 644 '{}' \;
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: jemalloc/repos/extra-x86_64/PKGBUILD (from rev 268597, 
jemalloc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-05-26 12:02:47 UTC (rev 268598)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Kovivchak Evgen 
+
+pkgname=jemalloc
+pkgver=4.2.0
+pkgrel=1
+pkgdesc='General-purpose scalable concurrent malloc implementation'
+arch=('i686' 'x86_64')
+license=('BSD')
+url='http://www.canonware.com/jemalloc/'
+depends=('glibc')
+provides=('libjemalloc.so')
+optdepends=('perl: for jeprof')
+source=(http://www.canonware.com/download/jemalloc/$pkgname-$pkgver.tar.bz2)

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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 14:02:42
  Author: bpiotrowski
Revision: 268597

upgpkg: jemalloc 4.2.0-1

new upstream release

Modified:
  jemalloc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 11:57:09 UTC (rev 268596)
+++ PKGBUILD2016-05-26 12:02:42 UTC (rev 268597)
@@ -4,7 +4,7 @@
 # Contributor: Kovivchak Evgen 
 
 pkgname=jemalloc
-pkgver=4.1.1
+pkgver=4.2.0
 pkgrel=1
 pkgdesc='General-purpose scalable concurrent malloc implementation'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 provides=('libjemalloc.so')
 optdepends=('perl: for jeprof')
 source=(http://www.canonware.com/download/jemalloc/$pkgname-$pkgver.tar.bz2)
-md5sums=('7184512da1e4d3331f9587036a6c4739')
+md5sums=('e6b5d5a1ea93a04207528d274efdd144')
 
 build() {
   cd $pkgname-$pkgver


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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 13:57:09
  Author: bpiotrowski
Revision: 268596

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

Added:
  nginx-mainline/repos/extra-i686/PKGBUILD
(from rev 268595, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/extra-i686/logrotate
(from rev 268595, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/extra-i686/nginx.install
(from rev 268595, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/extra-i686/service
(from rev 268595, nginx-mainline/trunk/service)
  nginx-mainline/repos/extra-x86_64/PKGBUILD
(from rev 268595, nginx-mainline/trunk/PKGBUILD)
  nginx-mainline/repos/extra-x86_64/logrotate
(from rev 268595, nginx-mainline/trunk/logrotate)
  nginx-mainline/repos/extra-x86_64/nginx.install
(from rev 268595, nginx-mainline/trunk/nginx.install)
  nginx-mainline/repos/extra-x86_64/service
(from rev 268595, nginx-mainline/trunk/service)
Deleted:
  nginx-mainline/repos/extra-i686/PKGBUILD
  nginx-mainline/repos/extra-i686/logrotate
  nginx-mainline/repos/extra-i686/nginx.install
  nginx-mainline/repos/extra-i686/service
  nginx-mainline/repos/extra-x86_64/PKGBUILD
  nginx-mainline/repos/extra-x86_64/logrotate
  nginx-mainline/repos/extra-x86_64/nginx.install
  nginx-mainline/repos/extra-x86_64/service

+
 /PKGBUILD  |  244 +++
 /logrotate |   18 +++
 /nginx.install |   42 +++
 /service   |   28 
 extra-i686/PKGBUILD|  121 -
 extra-i686/logrotate   |9 -
 extra-i686/nginx.install   |   21 ---
 extra-i686/service |   14 --
 extra-x86_64/PKGBUILD  |  121 -
 extra-x86_64/logrotate |9 -
 extra-x86_64/nginx.install |   21 ---
 extra-x86_64/service   |   14 --
 12 files changed, 332 insertions(+), 330 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-26 11:57:02 UTC (rev 268595)
+++ extra-i686/PKGBUILD 2016-05-26 11:57:09 UTC (rev 268596)
@@ -1,121 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Sébastien Luttringer
-# Contributor: Drew DeVault
-
-pkgname=nginx-mainline
-pkgver=1.10.0
-pkgrel=1
-pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
-arch=('i686' 'x86_64')
-url='http://nginx.org'
-license=('custom')
-depends=('pcre' 'zlib' 'openssl' 'geoip')
-backup=('etc/nginx/fastcgi.conf'
-'etc/nginx/fastcgi_params'
-'etc/nginx/koi-win'
-'etc/nginx/koi-utf'
-'etc/nginx/mime.types'
-'etc/nginx/nginx.conf'
-'etc/nginx/scgi_params'
-'etc/nginx/uwsgi_params'
-'etc/nginx/win-utf'
-'etc/logrotate.d/nginx')
-install=nginx.install
-provides=('nginx')
-conflicts=('nginx')
-source=($url/download/nginx-$pkgver.tar.gz
-service
-logrotate)
-md5sums=('c184c873d2798c5ba92be95ed1209c02'
- 'ce9a06bcaf66ec4a3c4eb59b636e0dfd'
- '3441ce77cdd1aab6f0ab7e212698a8a7')
-
-_common_flags=(
-  --with-ipv6
-  --with-pcre-jit
-  --with-file-aio
-  --with-http_addition_module
-  --with-http_auth_request_module
-  --with-http_dav_module
-  --with-http_degradation_module
-  --with-http_flv_module
-  --with-http_geoip_module
-  --with-http_gunzip_module
-  --with-http_gzip_static_module
-  --with-http_mp4_module
-  --with-http_realip_module
-  --with-http_secure_link_module
-  --with-http_ssl_module
-  --with-http_stub_status_module
-  --with-http_sub_module
-  --with-http_v2_module
-  --with-mail
-  --with-mail_ssl_module
-  --with-stream
-  --with-stream_ssl_module
-  --with-threads
-)
-
-_mainline_flags=(
-)
-
-build() {
-  cd $provides-$pkgver
-  ./configure \
---prefix=/etc/nginx \
---conf-path=/etc/nginx/nginx.conf \
---sbin-path=/usr/bin/nginx \
---pid-path=/run/nginx.pid \
---lock-path=/run/lock/nginx.lock \
---user=http \
---group=http \
---http-log-path=/var/log/nginx/access.log \
---error-log-path=stderr \
---http-client-body-temp-path=/var/lib/nginx/client-body \
---http-proxy-temp-path=/var/lib/nginx/proxy \
---http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
---http-scgi-temp-path=/var/lib/nginx/scgi \
---http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
-${_common_flags[@]} \
-${_mainline_flags[@]}
-
-  make
-}
-
-package() {
-  cd $provides-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -e 's|\

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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 13:57:02
  Author: bpiotrowski
Revision: 268595

upgpkg: nginx-mainline 1.11.0-1

new upstream release

Modified:
  nginx-mainline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 11:49:54 UTC (rev 268594)
+++ PKGBUILD2016-05-26 11:57:02 UTC (rev 268595)
@@ -4,7 +4,7 @@
 # Contributor: Drew DeVault
 
 pkgname=nginx-mainline
-pkgver=1.10.0
+pkgver=1.11.0
 pkgrel=1
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release'
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
 source=($url/download/nginx-$pkgver.tar.gz
 service
 logrotate)
-md5sums=('c184c873d2798c5ba92be95ed1209c02'
+md5sums=('a9dd047f277710b34e59407117e13bc6'
  'ce9a06bcaf66ec4a3c4eb59b636e0dfd'
  '3441ce77cdd1aab6f0ab7e212698a8a7')
 


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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 13:49:54
  Author: bpiotrowski
Revision: 268594

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

Added:
  mkinitcpio-busybox/repos/testing-i686/
  mkinitcpio-busybox/repos/testing-i686/PKGBUILD
(from rev 268593, mkinitcpio-busybox/trunk/PKGBUILD)
  mkinitcpio-busybox/repos/testing-i686/config
(from rev 268593, mkinitcpio-busybox/trunk/config)
  mkinitcpio-busybox/repos/testing-i686/glibc-2.16.patch
(from rev 268593, mkinitcpio-busybox/trunk/glibc-2.16.patch)
  mkinitcpio-busybox/repos/testing-x86_64/
  mkinitcpio-busybox/repos/testing-x86_64/PKGBUILD
(from rev 268593, mkinitcpio-busybox/trunk/PKGBUILD)
  mkinitcpio-busybox/repos/testing-x86_64/config
(from rev 268593, mkinitcpio-busybox/trunk/config)
  mkinitcpio-busybox/repos/testing-x86_64/glibc-2.16.patch
(from rev 268593, mkinitcpio-busybox/trunk/glibc-2.16.patch)

-+
 testing-i686/PKGBUILD   |   39 +
 testing-i686/config | 1065 ++
 testing-i686/glibc-2.16.patch   |   10 
 testing-x86_64/PKGBUILD |   39 +
 testing-x86_64/config   | 1065 ++
 testing-x86_64/glibc-2.16.patch |   10 
 6 files changed, 2228 insertions(+)

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


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

2016-05-26 Thread Bartłomiej Piotrowski
Date: Thursday, May 26, 2016 @ 13:49:46
  Author: bpiotrowski
Revision: 268593

upgpkg: mkinitcpio-busybox 1.24.2-1

new upstream release

Modified:
  mkinitcpio-busybox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 11:47:13 UTC (rev 268592)
+++ PKGBUILD2016-05-26 11:49:46 UTC (rev 268593)
@@ -3,7 +3,7 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=mkinitcpio-busybox
-pkgver=1.24.1
+pkgver=1.24.2
 pkgrel=1
 pkgdesc="base initramfs tools"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 source=("http://busybox.net/downloads/busybox-$pkgver.tar.bz2;
 'glibc-2.16.patch'
 'config')
-sha256sums=('37d03132cc078937360b392170b7a1d0e5b322eee9f57c0b82292a8b1f0afe3d'
+sha256sums=('e71ef53ec656f31c42633918d301405d40dea1d97eca12f272217ae4a971c855'
 'fb5b6e2a0de4db5401322e5c2474ad8ce6a58615dad45b7109cfe045baf2c88d'
 'fd4e5571d9bdde368e01d601a9e05df05001827bffb2f574187b4f47db4cec55')
 


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

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 12:56:14
  Author: fyan
Revision: 177107

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

Added:
  deepin-wm/repos/community-i686/PKGBUILD
(from rev 177106, deepin-wm/trunk/PKGBUILD)
  deepin-wm/repos/community-x86_64/PKGBUILD
(from rev 177106, deepin-wm/trunk/PKGBUILD)
Deleted:
  deepin-wm/repos/community-i686/PKGBUILD
  deepin-wm/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-26 10:55:42 UTC (rev 177106)
+++ community-i686/PKGBUILD 2016-05-26 10:56:14 UTC (rev 177107)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-wm
-pkgver=1.0.7
-pkgrel=1
-pkgdesc='Deepin Window Manager'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-wm;
-license=('GPL3')
-depends=('bamf' 'clutter-gtk' 'deepin-desktop-schemas'
- 'deepin-mutter' 'gnome-desktop' 'libgee')
-makedepends=('gnome-common' 'intltool' 'vala' 'git')
-source=("git+https://cr.deepin.io/deepin-wm.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd "${pkgname}"
-  export CFLAGS="$CFLAGS -DWNCK_I_KNOW_THIS_IS_UNSTABLE"
-}
-
-build() {
-  cd "${pkgname}"
-  ./autogen.sh \
---prefix='/usr' \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd "${pkgname}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: deepin-wm/repos/community-i686/PKGBUILD (from rev 177106, 
deepin-wm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-26 10:56:14 UTC (rev 177107)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-wm
+pkgver=1.0.8
+pkgrel=1
+pkgdesc='Deepin Window Manager'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-wm;
+license=('GPL3')
+depends=('bamf' 'clutter-gtk' 'deepin-desktop-schemas'
+ 'deepin-mutter' 'gnome-desktop' 'libgee')
+makedepends=('gnome-common' 'intltool' 'vala' 'git')
+source=("git+https://cr.deepin.io/deepin-wm.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  export CFLAGS="$CFLAGS -DWNCK_I_KNOW_THIS_IS_UNSTABLE"
+}
+
+build() {
+  cd "${pkgname}"
+  ./autogen.sh \
+--prefix='/usr' \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd "${pkgname}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-26 10:55:42 UTC (rev 177106)
+++ community-x86_64/PKGBUILD   2016-05-26 10:56:14 UTC (rev 177107)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-wm
-pkgver=1.0.7
-pkgrel=1
-pkgdesc='Deepin Window Manager'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-wm;
-license=('GPL3')
-depends=('bamf' 'clutter-gtk' 'deepin-desktop-schemas'
- 'deepin-mutter' 'gnome-desktop' 'libgee')
-makedepends=('gnome-common' 'intltool' 'vala' 'git')
-source=("git+https://cr.deepin.io/deepin-wm.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd "${pkgname}"
-  export CFLAGS="$CFLAGS -DWNCK_I_KNOW_THIS_IS_UNSTABLE"
-}
-
-build() {
-  cd "${pkgname}"
-  ./autogen.sh \
---prefix='/usr' \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd "${pkgname}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: deepin-wm/repos/community-x86_64/PKGBUILD (from rev 177106, 
deepin-wm/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-05-26 10:56:14 UTC (rev 177107)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-wm
+pkgver=1.0.8
+pkgrel=1
+pkgdesc='Deepin Window Manager'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-wm;
+license=('GPL3')
+depends=('bamf' 'clutter-gtk' 'deepin-desktop-schemas'
+ 'deepin-mutter' 'gnome-desktop' 'libgee')
+makedepends=('gnome-common' 'intltool' 'vala' 'git')
+source=("git+https://cr.deepin.io/deepin-wm.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  export CFLAGS="$CFLAGS 

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

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 12:55:42
  Author: fyan
Revision: 177106

upgpkg: deepin-wm 1.0.8-1

Modified:
  deepin-wm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 10:52:12 UTC (rev 177105)
+++ PKGBUILD2016-05-26 10:55:42 UTC (rev 177106)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-wm
-pkgver=1.0.7
+pkgver=1.0.8
 pkgrel=1
 pkgdesc='Deepin Window Manager'
 arch=('i686' 'x86_64')


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

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 12:52:12
  Author: fyan
Revision: 177105

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

Added:
  deepin-dock/repos/community-i686/PKGBUILD
(from rev 177104, deepin-dock/trunk/PKGBUILD)
  deepin-dock/repos/community-x86_64/PKGBUILD
(from rev 177104, deepin-dock/trunk/PKGBUILD)
Deleted:
  deepin-dock/repos/community-i686/PKGBUILD
  deepin-dock/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-26 10:51:38 UTC (rev 177104)
+++ community-i686/PKGBUILD 2016-05-26 10:52:12 UTC (rev 177105)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=3.0.9
-pkgrel=1
-pkgdesc='Deepin desktop-environment - dock module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-dock;
-license=('GPL3')
-depends=('gtk2' 'deepin-tool-kit' 'qt5-svg' 'deepin-menu' 
'deepin-file-manager-backend' 'deepin-daemon')
-makedepends=('git' 'qt5-tools')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-dock
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-dock
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-dock/repos/community-i686/PKGBUILD (from rev 177104, 
deepin-dock/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-26 10:52:12 UTC (rev 177105)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=3.0.10
+pkgrel=1
+pkgdesc='Deepin desktop-environment - dock module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-dock;
+license=('GPL3')
+depends=('gtk2' 'deepin-tool-kit' 'qt5-svg' 'deepin-menu' 
'deepin-file-manager-backend' 'deepin-daemon')
+makedepends=('git' 'qt5-tools')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dde-dock
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-dock
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-26 10:51:38 UTC (rev 177104)
+++ community-x86_64/PKGBUILD   2016-05-26 10:52:12 UTC (rev 177105)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=3.0.9
-pkgrel=1
-pkgdesc='Deepin desktop-environment - dock module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-dock;
-license=('GPL3')
-depends=('gtk2' 'deepin-tool-kit' 'qt5-svg' 'deepin-menu' 
'deepin-file-manager-backend' 'deepin-daemon')
-makedepends=('git' 'qt5-tools')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-dock
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-dock
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-dock/repos/community-x86_64/PKGBUILD (from rev 177104, 
deepin-dock/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-05-26 10:52:12 UTC (rev 177105)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=3.0.10
+pkgrel=1
+pkgdesc='Deepin desktop-environment - dock module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-dock;
+license=('GPL3')
+depends=('gtk2' 'deepin-tool-kit' 'qt5-svg' 'deepin-menu' 
'deepin-file-manager-backend' 'deepin-daemon')
+makedepends=('git' 'qt5-tools')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dde-dock
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-dock
+  make INSTALL_ROOT="${pkgdir}" install
+}


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

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 12:51:38
  Author: fyan
Revision: 177104

upgpkg: deepin-dock 3.0.10-1

Modified:
  deepin-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 10:49:06 UTC (rev 177103)
+++ PKGBUILD2016-05-26 10:51:38 UTC (rev 177104)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-dock
-pkgver=3.0.9
+pkgver=3.0.10
 pkgrel=1
 pkgdesc='Deepin desktop-environment - dock module'
 arch=('i686' 'x86_64')


[arch-commits] Commit in deepin-file-manager-backend/repos (4 files)

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 12:49:06
  Author: fyan
Revision: 177103

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

Added:
  deepin-file-manager-backend/repos/community-i686/PKGBUILD
(from rev 177102, deepin-file-manager-backend/trunk/PKGBUILD)
  deepin-file-manager-backend/repos/community-x86_64/PKGBUILD
(from rev 177102, deepin-file-manager-backend/trunk/PKGBUILD)
Deleted:
  deepin-file-manager-backend/repos/community-i686/PKGBUILD
  deepin-file-manager-backend/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-26 10:48:33 UTC (rev 177102)
+++ community-i686/PKGBUILD 2016-05-26 10:49:06 UTC (rev 177103)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-file-manager-backend
-pkgver=0.1.13
-_golibver=0.4.10
-_deepinapiver=3.0.8
-_dbusfactoryver=3.0.3
-_girgeneratorver=0.9.3
-pkgrel=1
-pkgdesc='deepin file manager backend'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-file-manager-backend;
-license=('GPL3')
-depends=('deepin-metacity' 'libcanberra' 'poppler-glib' 'gcc-libs>=5.3.0-3')
-makedepends=('git' 'deepin-dbus-generator' 'deepin-gir-generator' 'gcc-go')
-provides=('deepin-file-manager')
-conflicts=('deepin-file-manager')
-replaces=('deepin-file-manager')
-source=("git+https://cr.deepin.io/deepin-file-manager-backend.git#tag=$pkgver;
-"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
-"git+https://cr.deepin.io/dde/dde-api.git#tag=$_deepinapiver;
-"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  sed -i "s|\"\${GOLDFLAGS}\"|\"\${GOLDFLAGS} $CFLAGS $LDFLAGS\"|" 
deepin-file-manager-backend/Makefile
-  sed -i 's| generator$||' go-gir-generator/makefile
-
-  export GOPATH="$srcdir/build"
-  mkdir -p build/src/pkg.deepin.io/{lib,dde/api}
-  cp -a go-lib/* build/src/pkg.deepin.io/lib
-  cp -a dde-api/* build/src/pkg.deepin.io/dde/api/
-
-  go get github.com/howeyc/fsnotify github.com/mattn/go-sqlite3 
gopkg.in/alecthomas/kingpin.v2
-}
-
-build() {
-  cd "$srcdir/dbus-factory"
-  make install-golang
-
-  cd "$srcdir/go-gir-generator"
-  make GENERATOR=gir-generator build
-  make copyfile
-  cp -r out/src/gir "$GOPATH/src"/
-
-  cd "$srcdir/$pkgname"
-  make USE_GCCGO=1
-}
-
-package() {
-  cd "${pkgname}"
-  make DESTDIR="${pkgdir}" do-install
-}

Copied: deepin-file-manager-backend/repos/community-i686/PKGBUILD (from rev 
177102, deepin-file-manager-backend/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-26 10:49:06 UTC (rev 177103)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager-backend
+pkgver=0.1.14
+_golibver=0.4.10
+_deepinapiver=3.0.8
+_dbusfactoryver=3.0.3
+_girgeneratorver=0.9.3
+pkgrel=1
+pkgdesc='deepin file manager backend'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-file-manager-backend;
+license=('GPL3')
+depends=('deepin-metacity' 'libcanberra' 'poppler-glib' 'gcc-libs>=5.3.0-3')
+makedepends=('git' 'deepin-dbus-generator' 'deepin-gir-generator' 'gcc-go')
+provides=('deepin-file-manager')
+conflicts=('deepin-file-manager')
+replaces=('deepin-file-manager')
+source=("git+https://cr.deepin.io/deepin-file-manager-backend.git#tag=$pkgver;
+"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
+"git+https://cr.deepin.io/dde/dde-api.git#tag=$_deepinapiver;
+"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
+"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  sed -i "s|\"\${GOLDFLAGS}\"|\"\${GOLDFLAGS} $CFLAGS $LDFLAGS\"|" 
deepin-file-manager-backend/Makefile
+  sed -i 's| generator$||' go-gir-generator/makefile
+
+  export GOPATH="$srcdir/build"
+  mkdir -p build/src/pkg.deepin.io/{lib,dde/api}
+  cp -a go-lib/* build/src/pkg.deepin.io/lib
+  cp -a dde-api/* build/src/pkg.deepin.io/dde/api/
+
+  go get github.com/howeyc/fsnotify github.com/mattn/go-sqlite3 
gopkg.in/alecthomas/kingpin.v2
+}
+
+build() 

[arch-commits] Commit in deepin-file-manager-backend/trunk (PKGBUILD)

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 12:48:33
  Author: fyan
Revision: 177102

upgpkg: deepin-file-manager-backend 0.1.14-1

Modified:
  deepin-file-manager-backend/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-26 10:47:29 UTC (rev 177101)
+++ PKGBUILD2016-05-26 10:48:33 UTC (rev 177102)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-file-manager-backend
-pkgver=0.1.13
+pkgver=0.1.14
 _golibver=0.4.10
 _deepinapiver=3.0.8
 _dbusfactoryver=3.0.3


[arch-commits] Commit in deepin-control-center/repos (4 files)

2016-05-26 Thread Felix Yan
Date: Thursday, May 26, 2016 @ 12:47:29
  Author: fyan
Revision: 177101

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

Added:
  deepin-control-center/repos/community-i686/PKGBUILD
(from rev 177100, deepin-control-center/trunk/PKGBUILD)
  deepin-control-center/repos/community-x86_64/PKGBUILD
(from rev 177100, deepin-control-center/trunk/PKGBUILD)
Deleted:
  deepin-control-center/repos/community-i686/PKGBUILD
  deepin-control-center/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 2016-05-26 10:46:56 UTC (rev 177100)
+++ community-i686/PKGBUILD 2016-05-26 10:47:29 UTC (rev 177101)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-control-center
-pkgver=3.0.12
-pkgrel=1
-pkgdesc='New control center for linux deepin'
-arch=('i686' 'x86_64')
-url="http://github.com/linuxdeepin/dde-control-center;
-license=('GPL3')
-depends=('desktop-file-utils' 'deepin-tool-kit' 'gtk2' 'deepin-account-faces' 
'deepin-api'
- 'deepin-daemon' 'deepin-dbus-factory' 'startdde')
-makedepends=('deepin-dock' 'qt5-tools' 'git')
-conflicts=('dde-control-center' 'dde-dock-applets')
-replaces=('dde-control-center' 'dde-dock-applets')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-control-center.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-control-center
-  qmake-qt5 QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr WITH_MODULE_GRUB=NO 
WITH_MODULE_REMOTE_ASSIST=NO
-  make
-}
-
-package() {
-  cd dde-control-center
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-control-center/repos/community-i686/PKGBUILD (from rev 177100, 
deepin-control-center/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-26 10:47:29 UTC (rev 177101)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-control-center
+pkgver=3.0.13
+pkgrel=1
+pkgdesc='New control center for linux deepin'
+arch=('i686' 'x86_64')
+url="http://github.com/linuxdeepin/dde-control-center;
+license=('GPL3')
+depends=('desktop-file-utils' 'deepin-tool-kit' 'gtk2' 'deepin-account-faces' 
'deepin-api'
+ 'deepin-daemon' 'deepin-dbus-factory' 'startdde')
+makedepends=('deepin-dock' 'qt5-tools' 'git')
+conflicts=('dde-control-center' 'dde-dock-applets')
+replaces=('dde-control-center' 'dde-dock-applets')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-control-center.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dde-control-center
+  qmake-qt5 QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr WITH_MODULE_GRUB=NO 
WITH_MODULE_REMOTE_ASSIST=NO
+  make
+}
+
+package() {
+  cd dde-control-center
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-26 10:46:56 UTC (rev 177100)
+++ community-x86_64/PKGBUILD   2016-05-26 10:47:29 UTC (rev 177101)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-control-center
-pkgver=3.0.12
-pkgrel=1
-pkgdesc='New control center for linux deepin'
-arch=('i686' 'x86_64')
-url="http://github.com/linuxdeepin/dde-control-center;
-license=('GPL3')
-depends=('desktop-file-utils' 'deepin-tool-kit' 'gtk2' 'deepin-account-faces' 
'deepin-api'
- 'deepin-daemon' 'deepin-dbus-factory' 'startdde')
-makedepends=('deepin-dock' 'qt5-tools' 'git')
-conflicts=('dde-control-center' 'dde-dock-applets')
-replaces=('dde-control-center' 'dde-dock-applets')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-control-center.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-control-center
-  qmake-qt5 QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr WITH_MODULE_GRUB=NO 
WITH_MODULE_REMOTE_ASSIST=NO
-  make
-}
-
-package() {
-  cd dde-control-center
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-control-center/repos/community-x86_64/PKGBUILD (from rev 177100, 
deepin-control-center/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-05-26 10:47:29 UTC (rev 177101)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 

  1   2   >