forked from pool/python-pyperclip
Accepting request 1207975 from home:mcalabkova:branches:devel:languages:python
- Update to 1.9.0 * Automatically cast the copy() argument to a string for all data types. * _py3_executable_exists and _py2_executable_exists had swapped names; fixed. * Pyperclip now "stringifies" all data types by passing it to str() (or globals()['__builtins__'].unicode on Python 2), so passing [1, 2, 3] would put '[1, 2, 3]' on the clipboard. * shutil.which() replaces the custom code (except in 2.7 and below which doesn't have shutil.which()). * Remove waitForPaste() and waitForNewPaste() functions, these aren't something the core library should have. * Reordered so that xclip is chosen before xsel since xclip is more popular. OBS-URL: https://build.opensuse.org/request/show/1207975 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyperclip?expand=0&rev=25
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pyperclip
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,15 +16,16 @@
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pyperclip
|
||||
Version: 1.8.2
|
||||
Version: 1.9.0
|
||||
Release: 0
|
||||
Summary: A clipboard module for Python
|
||||
License: BSD-3-Clause
|
||||
URL: https://github.com/asweigart/pyperclip
|
||||
Source0: https://files.pythonhosted.org/packages/source/p/pyperclip/pyperclip-%{version}.tar.gz
|
||||
# PATCH-FIX-UPSTREAM tests are broken with 1.9.0 release https://github.com/asweigart/pyperclip/issues/263
|
||||
Patch: tests.patch
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
@@ -41,7 +42,7 @@ BuildRequires: %{python_module pytest}
|
||||
A clipboard module for Python. It only handles plain text.
|
||||
|
||||
%prep
|
||||
%setup -q -n pyperclip-%{version}
|
||||
%autosetup -p1 -n pyperclip-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
Reference in New Issue
Block a user