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 =================================================================== --- PKGBUILD 2015-10-30 06:47:43 UTC (rev 145269) +++ PKGBUILD 2015-10-30 06:48:03 UTC (rev 145270) @@ -1,53 +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.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) +++ PKGBUILD 2015-10-30 06:48:03 UTC (rev 145270) @@ -0,0 +1,53 @@ +# $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.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 <felixonm...@archlinux.org> -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): -+ if not isinstance(text, STRING_FUNCTION): -+ text = text.decode('utf-8') - p = Popen(['xclip', '-selection', 'c'], stdin=PIPE, close_fds=True) - p.communicate(input=text.encode('utf-8')) - -@@ -152,6 +154,8 @@ def _pasteXclip(): - - - def _copyXsel(text): -+ if not isinstance(text, STRING_FUNCTION): -+ text = text.decode('utf-8') - p = Popen(['xsel', '-b', '-i'], stdin=PIPE, close_fds=True) - p.communicate(input=text.encode('utf-8')) - -@@ -163,6 +167,8 @@ def _pasteXsel(): - - - def _copyKlipper(text): -+ if not isinstance(text, STRING_FUNCTION): -+ text = text.decode('utf-8') - p = Popen(['qdbus', 'org.kde.klipper', '/klipper', - 'setClipboardContents', text.encode('utf-8')], - stdin=PIPE, close_fds=True) Copied: python-pyperclip/repos/community-any/fix-test_copyUnicode.patch (from rev 145269, python-pyperclip/trunk/fix-test_copyUnicode.patch) =================================================================== --- fix-test_copyUnicode.patch (rev 0) +++ fix-test_copyUnicode.patch 2015-10-30 06:48:03 UTC (rev 145270) @@ -0,0 +1,37 @@ +commit 8da536e515f71a2caf2256b4d936851da0ce2bcf +Author: Felix Yan <felixonm...@archlinux.org> +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): ++ if not isinstance(text, STRING_FUNCTION): ++ text = text.decode('utf-8') + p = Popen(['xclip', '-selection', 'c'], stdin=PIPE, close_fds=True) + p.communicate(input=text.encode('utf-8')) + +@@ -152,6 +154,8 @@ def _pasteXclip(): + + + def _copyXsel(text): ++ if not isinstance(text, STRING_FUNCTION): ++ text = text.decode('utf-8') + p = Popen(['xsel', '-b', '-i'], stdin=PIPE, close_fds=True) + p.communicate(input=text.encode('utf-8')) + +@@ -163,6 +167,8 @@ def _pasteXsel(): + + + def _copyKlipper(text): ++ if not isinstance(text, STRING_FUNCTION): ++ text = text.decode('utf-8') + p = Popen(['qdbus', 'org.kde.klipper', '/klipper', + 'setClipboardContents', text.encode('utf-8')], + stdin=PIPE, close_fds=True)