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

2015-10-30 Thread Felix Yan
Date: Friday, October 30, 2015 @ 07:48:03
  Author: fyan
Revision: 145270

archrelease: copy trunk to community-any

Added:
  python-pyperclip/repos/community-any/PKGBUILD
(from rev 145269, python-pyperclip/trunk/PKGBUILD)
  python-pyperclip/repos/community-any/fix-test_copyUnicode.patch
(from rev 145269, python-pyperclip/trunk/fix-test_copyUnicode.patch)
Deleted:
  python-pyperclip/repos/community-any/PKGBUILD
  python-pyperclip/repos/community-any/fix-test_copyUnicode.patch

+
 PKGBUILD   |  106 +--
 fix-test_copyUnicode.patch |   74 +++---
 2 files changed, 90 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-30 06:47:43 UTC (rev 145269)
+++ PKGBUILD2015-10-30 06:48:03 UTC (rev 145270)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jim Bridgewater 
-# Contributor: delta48  
-
-pkgbase=python-pyperclip
-pkgname=('python-pyperclip' 'python2-pyperclip')
-_pypiname=pyperclip
-pkgver=1.5.17.20151029
-_commit=07b90a4e082b46d868c3297188e7ad664fbc6e1e
-pkgrel=1
-pkgdesc="A cross-platform clipboard module for Python"
-arch=('any')
-url="https://github.com/asweigart/pyperclip;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'xclip' 'git')
-checkdepends=('xorg-server-xvfb')
-source=("git+https://github.com/asweigart/pyperclip.git#commit=$_commit;
-fix-test_copyUnicode.patch)
-md5sums=('SKIP'
- '40675a4461359c8e2c22ee4bd240d76c')
-
-prepare() {
-  # https://github.com/asweigart/pyperclip/pull/28
-  (cd $_pypiname; patch -p1 -i ../fix-test_copyUnicode.patch)
-  cp -a $_pypiname{,-py2}
-}
-
-check() {
-  cd "$srcdir/$_pypiname"
-  xvfb-run python tests/basicTests.py
-
-  cd "$srcdir/$_pypiname-py2"
-  xvfb-run python2 tests/basicTests.py
-}
-
-package_python-pyperclip() {
-  depends=('python' 'xclip')
-
-  cd "$srcdir/$_pypiname"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_python2-pyperclip() {
-  depends=('python2' 'xclip')
-
-  cd "$srcdir/$_pypiname-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyperclip/repos/community-any/PKGBUILD (from rev 145269, 
python-pyperclip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-30 06:48:03 UTC (rev 145270)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jim Bridgewater 
+# Contributor: delta48  
+
+pkgbase=python-pyperclip
+pkgname=('python-pyperclip' 'python2-pyperclip')
+_pypiname=pyperclip
+pkgver=1.5.19
+_commit=74ebe1f0bf8f05add1590ebe58e60e27b620461d
+pkgrel=1
+pkgdesc="A cross-platform clipboard module for Python"
+arch=('any')
+url="https://github.com/asweigart/pyperclip;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'xclip' 'git')
+checkdepends=('xorg-server-xvfb')
+source=("git+https://github.com/asweigart/pyperclip.git#commit=$_commit;
+fix-test_copyUnicode.patch)
+md5sums=('SKIP'
+ '40675a4461359c8e2c22ee4bd240d76c')
+
+prepare() {
+  # https://github.com/asweigart/pyperclip/pull/28
+  (cd $_pypiname; patch -p1 -i ../fix-test_copyUnicode.patch)
+  cp -a $_pypiname{,-py2}
+}
+
+check() {
+  cd "$srcdir/$_pypiname"
+  xvfb-run python tests/basicTests.py
+
+  cd "$srcdir/$_pypiname-py2"
+  xvfb-run python2 tests/basicTests.py
+}
+
+package_python-pyperclip() {
+  depends=('python' 'xclip')
+
+  cd "$srcdir/$_pypiname"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-pyperclip() {
+  depends=('python2' 'xclip')
+
+  cd "$srcdir/$_pypiname-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-test_copyUnicode.patch
===
--- fix-test_copyUnicode.patch  2015-10-30 06:47:43 UTC (rev 145269)
+++ fix-test_copyUnicode.patch  2015-10-30 06:48:03 UTC (rev 145270)
@@ -1,37 +0,0 @@
-commit 8da536e515f71a2caf2256b4d936851da0ce2bcf
-Author: Felix Yan 
-Date:   Sat Oct 10 09:34:35 2015 +0800
-
-Fix test_copyUnicode under PyPy
-
-diff --git a/pyperclip/__init__.py b/pyperclip/__init__.py
-index 9c12381..e475b95 100644
 a/pyperclip/__init__.py
-+++ b/pyperclip/__init__.py
-@@ -141,6 +141,8 @@ def _copyQt(text):
- 
- 
- def _copyXclip(text):
-+

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

2015-10-28 Thread Felix Yan
Date: Thursday, October 29, 2015 @ 03:21:46
  Author: fyan
Revision: 145210

archrelease: copy trunk to community-any

Added:
  python-pyperclip/repos/community-any/PKGBUILD
(from rev 145209, python-pyperclip/trunk/PKGBUILD)
  python-pyperclip/repos/community-any/fix-test_copyUnicode.patch
(from rev 145209, python-pyperclip/trunk/fix-test_copyUnicode.patch)
Deleted:
  python-pyperclip/repos/community-any/PKGBUILD
  python-pyperclip/repos/community-any/fix-test_copyUnicode.patch

+
 PKGBUILD   |  105 +--
 fix-test_copyUnicode.patch |   74 +++---
 2 files changed, 90 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-29 02:21:17 UTC (rev 145209)
+++ PKGBUILD2015-10-29 02:21:46 UTC (rev 145210)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jim Bridgewater 
-# Contributor: delta48  
-
-pkgbase=python-pyperclip
-pkgname=('python-pyperclip' 'python2-pyperclip')
-_pypiname=pyperclip
-pkgver=1.5.15
-_commit=c57ed8ea81d5658b88f5e4dbe35938bb8be1da53
-pkgrel=1
-pkgdesc="A cross-platform clipboard module for Python"
-arch=('any')
-url="https://github.com/asweigart/pyperclip;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'xclip' 'git')
-checkdepends=('xorg-server-xvfb')
-source=("git+https://github.com/asweigart/pyperclip.git#commit=$_commit;
-fix-test_copyUnicode.patch)
-md5sums=('SKIP'
- '473ee868530cc1d6e579f9df63085588')
-
-prepare() {
-  (cd $_pypiname; git apply ../fix-test_copyUnicode.patch)
-  cp -a $_pypiname{,-py2}
-}
-
-check() {
-  cd "$srcdir/$_pypiname"
-  xvfb-run python tests/basicTests.py
-
-  cd "$srcdir/$_pypiname-py2"
-  xvfb-run python2 tests/basicTests.py
-}
-
-package_python-pyperclip() {
-  depends=('python' 'xclip')
-
-  cd "$srcdir/$_pypiname"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_python2-pyperclip() {
-  depends=('python2' 'xclip')
-
-  cd "$srcdir/$_pypiname-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyperclip/repos/community-any/PKGBUILD (from rev 145209, 
python-pyperclip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-29 02:21:46 UTC (rev 145210)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jim Bridgewater 
+# Contributor: delta48  
+
+pkgbase=python-pyperclip
+pkgname=('python-pyperclip' 'python2-pyperclip')
+_pypiname=pyperclip
+pkgver=1.5.17.20151029
+_commit=07b90a4e082b46d868c3297188e7ad664fbc6e1e
+pkgrel=1
+pkgdesc="A cross-platform clipboard module for Python"
+arch=('any')
+url="https://github.com/asweigart/pyperclip;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'xclip' 'git')
+checkdepends=('xorg-server-xvfb')
+source=("git+https://github.com/asweigart/pyperclip.git#commit=$_commit;
+fix-test_copyUnicode.patch)
+md5sums=('SKIP'
+ '40675a4461359c8e2c22ee4bd240d76c')
+
+prepare() {
+  # https://github.com/asweigart/pyperclip/pull/28
+  (cd $_pypiname; patch -p1 -i ../fix-test_copyUnicode.patch)
+  cp -a $_pypiname{,-py2}
+}
+
+check() {
+  cd "$srcdir/$_pypiname"
+  xvfb-run python tests/basicTests.py
+
+  cd "$srcdir/$_pypiname-py2"
+  xvfb-run python2 tests/basicTests.py
+}
+
+package_python-pyperclip() {
+  depends=('python' 'xclip')
+
+  cd "$srcdir/$_pypiname"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-pyperclip() {
+  depends=('python2' 'xclip')
+
+  cd "$srcdir/$_pypiname-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-test_copyUnicode.patch
===
--- fix-test_copyUnicode.patch  2015-10-29 02:21:17 UTC (rev 145209)
+++ fix-test_copyUnicode.patch  2015-10-29 02:21:46 UTC (rev 145210)
@@ -1,37 +0,0 @@
-commit dbd1d58ba6c350db3aa7d154e9a940d835ee52a4
-Author: Felix Yan 
-Date:   Sat Oct 10 09:34:35 2015 +0800
-
-Fix test_copyUnicode under PyPy
-
-diff --git a/pyperclip/__init__.py b/pyperclip/__init__.py
-index ab2b6df..1c3ec66 100644
 a/pyperclip/__init__.py
-+++ b/pyperclip/__init__.py
-@@ -113,6 +113,8 @@ def _copyQt(text):
- 
- 
- def _copyXclip(text):
-+if not isinstance(text, text_type):
-+text = 

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

2015-10-13 Thread Felix Yan
Date: Tuesday, October 13, 2015 @ 12:24:12
  Author: fyan
Revision: 143901

archrelease: copy trunk to community-any

Added:
  python-pyperclip/repos/community-any/PKGBUILD
(from rev 143900, python-pyperclip/trunk/PKGBUILD)
  python-pyperclip/repos/community-any/fix-test_copyUnicode.patch
(from rev 143900, python-pyperclip/trunk/fix-test_copyUnicode.patch)
Deleted:
  python-pyperclip/repos/community-any/PKGBUILD
  python-pyperclip/repos/community-any/fix-test_copyUnicode.patch

+
 PKGBUILD   |  104 +--
 fix-test_copyUnicode.patch |   74 +++---
 2 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-13 10:23:51 UTC (rev 143900)
+++ PKGBUILD2015-10-13 10:24:12 UTC (rev 143901)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jim Bridgewater 
-# Contributor: delta48  
-
-pkgbase=python-pyperclip
-pkgname=('python-pyperclip' 'python2-pyperclip')
-_pypiname=pyperclip
-pkgver=1.5.14
-_commit=43a8668987165f82d95c95ed57adf7c59f94a92c
-pkgrel=1
-pkgdesc="A cross-platform clipboard module for Python"
-arch=('any')
-url="https://github.com/asweigart/pyperclip;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'xclip' 'git')
-checkdepends=('xorg-server-xvfb')
-source=("git+https://github.com/asweigart/pyperclip.git#commit=$_commit;
-fix-test_copyUnicode.patch)
-md5sums=('SKIP'
- '473ee868530cc1d6e579f9df63085588')
-
-prepare() {
-  (cd $_pypiname; git apply ../fix-test_copyUnicode.patch)
-  cp -a $_pypiname{,-py2}
-}
-
-check() {
-  cd "$srcdir/$_pypiname"
-  xvfb-run python tests/basicTests.py
-
-  cd "$srcdir/$_pypiname-py2"
-  xvfb-run python2 tests/basicTests.py
-}
-
-package_python-pyperclip() {
-  depends=('python' 'xclip')
-
-  cd "$srcdir/$_pypiname"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_python2-pyperclip() {
-  depends=('python2' 'xclip')
-
-  cd "$srcdir/$_pypiname-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyperclip/repos/community-any/PKGBUILD (from rev 143900, 
python-pyperclip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-13 10:24:12 UTC (rev 143901)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jim Bridgewater 
+# Contributor: delta48  
+
+pkgbase=python-pyperclip
+pkgname=('python-pyperclip' 'python2-pyperclip')
+_pypiname=pyperclip
+pkgver=1.5.15
+_commit=c57ed8ea81d5658b88f5e4dbe35938bb8be1da53
+pkgrel=1
+pkgdesc="A cross-platform clipboard module for Python"
+arch=('any')
+url="https://github.com/asweigart/pyperclip;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'xclip' 'git')
+checkdepends=('xorg-server-xvfb')
+source=("git+https://github.com/asweigart/pyperclip.git#commit=$_commit;
+fix-test_copyUnicode.patch)
+md5sums=('SKIP'
+ '473ee868530cc1d6e579f9df63085588')
+
+prepare() {
+  (cd $_pypiname; git apply ../fix-test_copyUnicode.patch)
+  cp -a $_pypiname{,-py2}
+}
+
+check() {
+  cd "$srcdir/$_pypiname"
+  xvfb-run python tests/basicTests.py
+
+  cd "$srcdir/$_pypiname-py2"
+  xvfb-run python2 tests/basicTests.py
+}
+
+package_python-pyperclip() {
+  depends=('python' 'xclip')
+
+  cd "$srcdir/$_pypiname"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-pyperclip() {
+  depends=('python2' 'xclip')
+
+  cd "$srcdir/$_pypiname-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-test_copyUnicode.patch
===
--- fix-test_copyUnicode.patch  2015-10-13 10:23:51 UTC (rev 143900)
+++ fix-test_copyUnicode.patch  2015-10-13 10:24:12 UTC (rev 143901)
@@ -1,37 +0,0 @@
-commit dbd1d58ba6c350db3aa7d154e9a940d835ee52a4
-Author: Felix Yan 
-Date:   Sat Oct 10 09:34:35 2015 +0800
-
-Fix test_copyUnicode under PyPy
-
-diff --git a/pyperclip/__init__.py b/pyperclip/__init__.py
-index ab2b6df..1c3ec66 100644
 a/pyperclip/__init__.py
-+++ b/pyperclip/__init__.py
-@@ -113,6 +113,8 @@ def _copyQt(text):
- 
- 
- def _copyXclip(text):
-+if not isinstance(text, text_type):
-+text = text.decode('utf-8')
- p = Popen(['xclip', '-selection', 

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

2015-10-09 Thread Felix Yan
Date: Saturday, October 10, 2015 @ 03:51:39
  Author: fyan
Revision: 143522

archrelease: copy trunk to community-any

Added:
  python-pyperclip/repos/community-any/PKGBUILD
(from rev 143521, python-pyperclip/trunk/PKGBUILD)
  python-pyperclip/repos/community-any/fix-test_copyUnicode.patch
(from rev 143521, python-pyperclip/trunk/fix-test_copyUnicode.patch)
Deleted:
  python-pyperclip/repos/community-any/LICENSE.txt
  python-pyperclip/repos/community-any/PKGBUILD

+
 LICENSE.txt|   27 ---
 PKGBUILD   |  102 +--
 fix-test_copyUnicode.patch |   37 +++
 3 files changed, 89 insertions(+), 77 deletions(-)

Deleted: LICENSE.txt
===
--- LICENSE.txt 2015-10-10 01:51:18 UTC (rev 143521)
+++ LICENSE.txt 2015-10-10 01:51:39 UTC (rev 143522)
@@ -1,27 +0,0 @@
-Copyright (c) 2014, Al Sweigart
-All rights reserved.
-
-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 the {organization} nor the names of its
-  contributors 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 HOLDER 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
===
--- PKGBUILD2015-10-10 01:51:18 UTC (rev 143521)
+++ PKGBUILD2015-10-10 01:51:39 UTC (rev 143522)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jim Bridgewater 
-# Contributor: delta48  
-
-pkgbase=python-pyperclip
-pkgname=('python-pyperclip' 'python2-pyperclip')
-_pypiname=pyperclip
-pkgver=1.5.13
-pkgrel=1
-pkgdesc="A cross-platform clipboard module for Python"
-arch=('any')
-url="http://coffeeghost.net/2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'xclip')
-checkdepends=('xorg-server-xvfb')
-source=("https://pypi.python.org/packages/source/p/$_pypiname/$_pypiname-$pkgver.zip;
-LICENSE.txt)
-md5sums=('ad66fbf747e9ccf68d7fb14390744242'
- 'b6cd06fd72984ac1f8428337aec8cff7')
-
-prepare() {
-  cp -a $_pypiname-$pkgver{,-py2}
-}
-
-check() {
-  cd "$srcdir/$_pypiname-$pkgver"
-  xvfb-run python tests/basicTests.py
-
-  cd "$srcdir/$_pypiname-$pkgver-py2"
-  xvfb-run python2 tests/basicTests.py
-}
-
-package_python-pyperclip() {
-  depends=('python' 'xclip')
-
-  cd "$srcdir/$_pypiname-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 ../LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_python2-pyperclip() {
-  depends=('python2' 'xclip')
-
-  cd "$srcdir/$_pypiname-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 ../LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyperclip/repos/community-any/PKGBUILD (from rev 143521, 
python-pyperclip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-10 01:51:39 UTC (rev 143522)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jim Bridgewater 
+# Contributor: delta48  
+
+pkgbase=python-pyperclip
+pkgname=('python-pyperclip' 'python2-pyperclip')
+_pypiname=pyperclip
+pkgver=1.5.14
+_commit=43a8668987165f82d95c95ed57adf7c59f94a92c
+pkgrel=1
+pkgdesc="A cross-platform clipboard module for Python"
+arch=('any')
+url="https://github.com/asweigart/pyperclip;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 

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

2015-07-10 Thread Felix Yan
Date: Friday, July 10, 2015 @ 18:22:06
  Author: fyan
Revision: 136626

archrelease: copy trunk to community-any

Added:
  python-pyperclip/repos/community-any/LICENSE.txt
(from rev 136625, python-pyperclip/trunk/LICENSE.txt)
  python-pyperclip/repos/community-any/PKGBUILD
(from rev 136625, python-pyperclip/trunk/PKGBUILD)
Deleted:
  python-pyperclip/repos/community-any/LICENSE.txt
  python-pyperclip/repos/community-any/PKGBUILD

-+
 LICENSE.txt |   54 +++
 PKGBUILD|  100 +-
 2 files changed, 77 insertions(+), 77 deletions(-)

Deleted: LICENSE.txt
===
--- LICENSE.txt 2015-07-10 16:21:52 UTC (rev 136625)
+++ LICENSE.txt 2015-07-10 16:22:06 UTC (rev 136626)
@@ -1,27 +0,0 @@
-Copyright (c) 2014, Al Sweigart
-All rights reserved.
-
-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 the {organization} nor the names of its
-  contributors 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 HOLDER 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: python-pyperclip/repos/community-any/LICENSE.txt (from rev 136625, 
python-pyperclip/trunk/LICENSE.txt)
===
--- LICENSE.txt (rev 0)
+++ LICENSE.txt 2015-07-10 16:22:06 UTC (rev 136626)
@@ -0,0 +1,27 @@
+Copyright (c) 2014, Al Sweigart
+All rights reserved.
+
+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 the {organization} nor the names of its
+  contributors 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 HOLDER 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
===
--- PKGBUILD2015-07-10 16:21:52 UTC (rev 136625)
+++ PKGBUILD2015-07-10 16:22:06 UTC (rev 136626)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Jim Bridgewater jwbwater at gmail dot com
-# Contributor: delta48 dark.magician.48[at]gmail[dot]com 
-
-pkgbase=python-pyperclip
-pkgname=('python-pyperclip' 'python2-pyperclip')
-_pypiname=pyperclip
-pkgver=1.5.9
-pkgrel=2
-pkgdesc=A cross-platform clipboard module for Python
-arch=('any')
-url=http://coffeeghost.net/2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'xclip')
-checkdepends=('xorg-server-xvfb')