[arch-commits] Commit in python-click-repl/trunk (2 files)

David Runge dvzrv at archlinux.org
Mon May 31 16:44:14 UTC 2021


    Date: Monday, May 31, 2021 @ 16:44:14
  Author: dvzrv
Revision: 952815

upgpkg: python-click-repl 0.2.0-1: Upgrade to 0.2.0.

Remove patch for python-click > 8.0.0.
Use github generated tarball to be able to run tests.

Modified:
  python-click-repl/trunk/PKGBUILD
Deleted:
  python-click-repl/trunk/python-click-repl-0.1.6-click8.patch

--------------------------------------+
 PKGBUILD                             |   32 ++++--------
 python-click-repl-0.1.6-click8.patch |   83 ---------------------------------
 2 files changed, 12 insertions(+), 103 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-05-31 16:39:24 UTC (rev 952814)
+++ PKGBUILD	2021-05-31 16:44:14 UTC (rev 952815)
@@ -2,8 +2,8 @@
 
 _name=click-repl
 pkgname=python-click-repl
-pkgver=0.1.6
-pkgrel=5
+pkgver=0.2.0
+pkgrel=1
 pkgdesc="Subcommand REPL for click apps"
 arch=('any')
 url="https://github.com/click-contrib/click-repl"
@@ -11,20 +11,14 @@
 depends=('python-click' 'python-prompt_toolkit' 'python-six')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"
-        "${pkgname}-0.1.6-click8.patch"
-)
-sha512sums=('50576166e8eb61098b8b4e1c7db43101c226d09785a497539830addfd52a2c35b2fa7865d3cbb20559dcf2fea99801f306dcb05c177886f021a1ada188501ced'
-            'b4ff9f0ffd36d4b332e45d4320844757bf5bde7d4afed7bb12ec49f097261425aa91f00d58a44b4f6c15b15e71b8dd80f6e7dc56605aefbba082af6bf73ea491')
-b2sums=('3729c1d24d9c89a209c5e567e635291dd278dbd0d7f5cd0e0890574652f072e0861744fc33759f92158313c498bc421d8b3805bfb76a959e1036401d5f2f7908'
-        '252914397b6c388f772ba0559199bfb3433ac7d1d47ee9aa9ca6073a50b2000fd5e49f9716452bc021f3406911e1834bcb90697c006e6b0c4a779607cb142351')
+# https://github.com/click-contrib/click-repl/issues/49
+# source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/click-contrib/${_name}/archive/refs/tags/${pkgver}.tar.gz")
+sha512sums=('888ef2d4082cbecbdab70d707296b20d3dcc0a13fe06ef103fbe04a3f29381fe0f3284c2eb38c6d3eb8b026063cba470a519524e98b9eadd06a5946c669ffc3b')
+b2sums=('b02c7d858971f655ba880c6f66ff0a5c1b3c1aeb83782807c04d862430841761caa8a7a72d2d110a9706272cf2cd818b6976db14315c885bea95e8ef991ef9df')
 
 prepare() {
   mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  # fix issues with python-click > 8
-  # https://github.com/click-contrib/click-repl/pull/76
-  patch -Np1 -i "../${pkgname}-0.1.6-click8.patch"
 }
 
 build() {
@@ -32,13 +26,11 @@
   python setup.py build
 }
 
-## no tests in pypi source:
-## https://github.com/click-contrib/click-repl/issues/49
-#check() {
-#  cd "$pkgname-$pkgver"
-#  export PYTHONPATH="${PYTHONPATH}:${PWD}/build/lib/"
-#  py.test
-#}
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
 
 package() {
   cd "$pkgname-$pkgver"

Deleted: python-click-repl-0.1.6-click8.patch
===================================================================
--- python-click-repl-0.1.6-click8.patch	2021-05-31 16:39:24 UTC (rev 952814)
+++ python-click-repl-0.1.6-click8.patch	2021-05-31 16:44:14 UTC (rev 952815)
@@ -1,83 +0,0 @@
-From 7350d3533e97951865da79a0ef2ae1df9e686b9d Mon Sep 17 00:00:00 2001
-From: JM Lopez <jm.lopez at utoronto.ca>
-Date: Thu, 13 May 2021 14:34:48 -0400
-Subject: [PATCH 1/2] support for click 8 changes
-
----
- click_repl/__init__.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/click_repl/__init__.py b/click_repl/__init__.py
-index 5000020..a48f227 100644
---- a/click_repl/__init__.py
-+++ b/click_repl/__init__.py
-@@ -3,7 +3,7 @@
- from prompt_toolkit.history import InMemoryHistory
- from prompt_toolkit.shortcuts import prompt
- import click
--import click._bashcomplete
-+import click.shell_completion
- import click.parser
- import os
- import shlex
-@@ -108,7 +108,7 @@ def get_completions(self, document, complete_event=None):
-             # command, so give all relevant completions for this context.
-             incomplete = ""
- 
--        ctx = click._bashcomplete.resolve_ctx(self.cli, "", args)
-+        ctx = click.shell_completion._resolve_context(self.cli, {}, "", args)
-         if ctx is None:
-             return
- 
-
-From d98c0af5eb51026c8bfe8f47ce4107e04c350448 Mon Sep 17 00:00:00 2001
-From: JM Lopez <jm.lopez at utoronto.ca>
-Date: Mon, 17 May 2021 15:41:05 -0400
-Subject: [PATCH 2/2] Backwards compatibility between click 7 & 8
-
----
- click_repl/__init__.py | 17 ++++++++++++++---
- 1 file changed, 14 insertions(+), 3 deletions(-)
-
-diff --git a/click_repl/__init__.py b/click_repl/__init__.py
-index a48f227..216eec7 100644
---- a/click_repl/__init__.py
-+++ b/click_repl/__init__.py
-@@ -3,7 +3,6 @@
- from prompt_toolkit.history import InMemoryHistory
- from prompt_toolkit.shortcuts import prompt
- import click
--import click.shell_completion
- import click.parser
- import os
- import shlex
-@@ -11,6 +10,14 @@
- import six
- from .exceptions import InternalCommandException, ExitReplException  # noqa
- 
-+# Handle backwards compatibility between Click 7.0 and 8.0
-+try: 
-+    import click.shell_completion
-+    HAS_C8 = True
-+except ImportError:
-+    import click._bashcomplete
-+    HAS_C8 = False
-+
- # Handle click.exceptions.Exit introduced in Click 7.0
- try:
-     from click.exceptions import Exit as ClickExit
-@@ -107,8 +114,12 @@ def get_completions(self, document, complete_event=None):
-             # We've not entered anything, either at all or for the current
-             # command, so give all relevant completions for this context.
-             incomplete = ""
--
--        ctx = click.shell_completion._resolve_context(self.cli, {}, "", args)
-+        # Resolve context based on click version
-+        if HAS_C8:
-+            ctx = click.shell_completion._resolve_context(self.cli, {}, "", args)
-+        else: 
-+            ctx = click._bashcomplete.resolve_ctx(self.cli, "", args)
-+            
-         if ctx is None:
-             return
- 



More information about the arch-commits mailing list