Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 1e808cd426 | |||
| 62283b74dd | |||
| 25e5be9fb5 | |||
| 3f797403ec | |||
| 2a6c78500a | |||
| b5990c4403 |
3
pyperclip-1.11.0.tar.gz
Normal file
3
pyperclip-1.11.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:244035963e4428530d9e3a6101a1ef97209c6825edab1567beac148ccc1db1b6
|
||||
size 12185
|
||||
BIN
pyperclip-1.9.0.tar.gz
LFS
BIN
pyperclip-1.9.0.tar.gz
LFS
Binary file not shown.
@@ -1,3 +1,38 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 10 20:59:21 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.11.0:
|
||||
* Fix pyproject
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 23 09:10:49 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 1.10.0
|
||||
* docs: fix simple typo, deteremine -> determine
|
||||
* Remove PyGtk references
|
||||
* Remove PyQt4 references
|
||||
* Update docs to remove references to pygtk, PyQt4
|
||||
* Remove try-except ladder
|
||||
* Update index.rst
|
||||
* wayland: request text type to wl-paste This fixes UnicodeDecodeError
|
||||
while the clipboards contains images or other types of content
|
||||
* Fixed wsl encoding
|
||||
* Fixed wsl encoding
|
||||
* Add instructions for Wayland
|
||||
* Updated pytest and dependencies
|
||||
* Removing detox dependency (I'm rethinking the testing setup.)
|
||||
* Removing references to gtk module since we dropped it.
|
||||
* make wayland work without DISPLAY variable
|
||||
* Adding new authors.
|
||||
* Mention Wayland in error message
|
||||
* Update __init__.py
|
||||
- Refresh tests.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 11 05:49:30 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Switch to pyproject macros.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 14 15:27:29 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pyperclip
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pyperclip
|
||||
Version: 1.9.0
|
||||
Version: 1.11.0
|
||||
Release: 0
|
||||
Summary: A clipboard module for Python
|
||||
License: BSD-3-Clause
|
||||
@@ -26,7 +26,9 @@ 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 pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: unzip
|
||||
@@ -45,10 +47,10 @@ A clipboard module for Python. It only handles plain text.
|
||||
%autosetup -p1 -n pyperclip-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
@@ -57,6 +59,6 @@ A clipboard module for Python. It only handles plain text.
|
||||
%files %{python_files}
|
||||
%license LICENSE.txt
|
||||
%{python_sitelib}/pyperclip
|
||||
%{python_sitelib}/pyperclip-%{version}-py*.egg-info
|
||||
%{python_sitelib}/pyperclip-%{version}.dist-info
|
||||
|
||||
%changelog
|
||||
|
||||
11
tests.patch
11
tests.patch
@@ -1,8 +1,7 @@
|
||||
Index: pyperclip-1.9.0/tests/test_pyperclip.py
|
||||
===================================================================
|
||||
--- pyperclip-1.9.0.orig/tests/test_pyperclip.py
|
||||
+++ pyperclip-1.9.0/tests/test_pyperclip.py
|
||||
@@ -8,7 +8,7 @@ import platform
|
||||
diff -Nru pyperclip-1.10.0.orig/tests/test_pyperclip.py pyperclip-1.10.0/tests/test_pyperclip.py
|
||||
--- pyperclip-1.10.0.orig/tests/test_pyperclip.py 2025-09-18 02:38:44.000000000 +0200
|
||||
+++ pyperclip-1.10.0/tests/test_pyperclip.py 2025-09-23 11:10:26.440769794 +0200
|
||||
@@ -8,7 +8,7 @@
|
||||
#import sys
|
||||
#sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
|
||||
|
||||
@@ -11,7 +10,7 @@ Index: pyperclip-1.9.0/tests/test_pyperclip.py
|
||||
from pyperclip import (init_osx_pbcopy_clipboard, init_osx_pyobjc_clipboard,
|
||||
init_dev_clipboard_clipboard,
|
||||
init_qt_clipboard,
|
||||
@@ -134,16 +134,6 @@ class TestOSX(_TestClipboard):
|
||||
@@ -134,16 +134,6 @@
|
||||
clipboard = init_osx_pyobjc_clipboard()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user