17
0

5 Commits

Author SHA256 Message Date
1357318fb3 Accepting request 1284642 from devel:languages:python
- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/request/show/1284642
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyperclip?expand=0&rev=13
2025-06-11 14:19:10 +00:00
90b31092c0 - Switch to pyproject macros.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyperclip?expand=0&rev=28
2025-06-11 06:20:45 +00:00
572dcb32e5 Accepting request 1208665 from devel:languages:python
Forwarded request #1207975 from mcalabkova

- 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.
- 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.
- Add tests.patch to fix tests

OBS-URL: https://build.opensuse.org/request/show/1208665
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyperclip?expand=0&rev=12
2024-10-18 13:53:00 +00:00
42a51be9be - Add tests.patch to fix tests
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyperclip?expand=0&rev=26
2024-10-17 14:54:04 +00:00
f56f8e99b0 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
2024-10-17 08:05:39 +00:00
5 changed files with 42 additions and 71 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:244035963e4428530d9e3a6101a1ef97209c6825edab1567beac148ccc1db1b6
size 12185

BIN
pyperclip-1.9.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,33 +1,3 @@
-------------------------------------------------------------------
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> Wed Jun 11 05:49:30 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
@@ -39,12 +9,12 @@ Mon Oct 14 15:27:29 UTC 2024 - Markéta Machová <mmachova@suse.com>
- Update to 1.9.0 - Update to 1.9.0
* Automatically cast the copy() argument to a string for all data types. * Automatically cast the copy() argument to a string for all data types.
* _py3_executable_exists and _py2_executable_exists had swapped names; fixed. * _py3_executable_exists and _py2_executable_exists had swapped names; fixed.
* Pyperclip now "stringifies" all data types by passing it to str() (or * Pyperclip now "stringifies" all data types by passing it to str() (or
globals()['__builtins__'].unicode on Python 2), so passing [1, 2, 3] would globals()['__builtins__'].unicode on Python 2), so passing [1, 2, 3] would
put '[1, 2, 3]' on the clipboard. put '[1, 2, 3]' on the clipboard.
* shutil.which() replaces the custom code (except in 2.7 and below which doesn't * shutil.which() replaces the custom code (except in 2.7 and below which doesn't
have shutil.which()). have shutil.which()).
* Remove waitForPaste() and waitForNewPaste() functions, these aren't something * Remove waitForPaste() and waitForNewPaste() functions, these aren't something
the core library should have. the core library should have.
* Reordered so that xclip is chosen before xsel since xclip is more popular. * Reordered so that xclip is chosen before xsel since xclip is more popular.
- Add tests.patch to fix tests - Add tests.patch to fix tests
@@ -69,7 +39,7 @@ Mon Mar 8 09:05:06 UTC 2021 - Dirk Müller <dmueller@suse.com>
Sat Dec 19 10:32:51 UTC 2020 - Dirk Müller <dmueller@suse.com> Sat Dec 19 10:32:51 UTC 2020 - Dirk Müller <dmueller@suse.com>
- update to 1.8.1: - update to 1.8.1:
+ no changes available + no changes available
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Apr 29 10:32:41 UTC 2020 - Dirk Mueller <dmueller@suse.com> Wed Apr 29 10:32:41 UTC 2020 - Dirk Mueller <dmueller@suse.com>
@@ -134,10 +104,10 @@ Mon Mar 6 19:28:45 UTC 2017 - aloisio@gmx.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jan 3 21:36:53 UTC 2016 - freitag@opensuse.org Sun Jan 3 21:36:53 UTC 2016 - freitag@opensuse.org
- Update to upstream version 1.5.24 - Update to upstream version 1.5.24
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Aug 24 19:00:22 UTC 2015 - freitag@opensuse.org Mon Aug 24 19:00:22 UTC 2015 - freitag@opensuse.org
- First initial package of version 1.5.11 - First initial package of version 1.5.11

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-pyperclip # spec file for package python-pyperclip
# #
# Copyright (c) 2025 SUSE LLC and contributors # Copyright (c) 2025 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-pyperclip Name: python-pyperclip
Version: 1.11.0 Version: 1.9.0
Release: 0 Release: 0
Summary: A clipboard module for Python Summary: A clipboard module for Python
License: BSD-3-Clause License: BSD-3-Clause

View File

@@ -1,29 +1,30 @@
diff -Nru pyperclip-1.10.0.orig/tests/test_pyperclip.py pyperclip-1.10.0/tests/test_pyperclip.py Index: pyperclip-1.9.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 --- pyperclip-1.9.0.orig/tests/test_pyperclip.py
@@ -8,7 +8,7 @@ +++ pyperclip-1.9.0/tests/test_pyperclip.py
#import sys @@ -8,7 +8,7 @@ import platform
#sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) #import sys
#sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
-from pyperclip import _executable_exists, HAS_DISPLAY
+from pyperclip import _executable_exists -from pyperclip import _executable_exists, HAS_DISPLAY
from pyperclip import (init_osx_pbcopy_clipboard, init_osx_pyobjc_clipboard, +from pyperclip import _executable_exists
init_dev_clipboard_clipboard, from pyperclip import (init_osx_pbcopy_clipboard, init_osx_pyobjc_clipboard,
init_qt_clipboard, init_dev_clipboard_clipboard,
@@ -134,16 +134,6 @@ init_qt_clipboard,
clipboard = init_osx_pyobjc_clipboard() @@ -134,16 +134,6 @@ class TestOSX(_TestClipboard):
clipboard = init_osx_pyobjc_clipboard()
-class TestQt(_TestClipboard):
- if HAS_DISPLAY: -class TestQt(_TestClipboard):
- try: - if HAS_DISPLAY:
- import PyQt5.QtWidgets - try:
- except ImportError: - import PyQt5.QtWidgets
- pass - except ImportError:
- else: - pass
- clipboard = init_qt_clipboard() - else:
- - clipboard = init_qt_clipboard()
- -
class TestXClip(_TestClipboard): -
if _executable_exists("xclip"): class TestXClip(_TestClipboard):
clipboard = init_xclip_clipboard() if _executable_exists("xclip"):
clipboard = init_xclip_clipboard()