forked from pool/python-ptyprocess
Compare commits
21 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| d29395122e | |||
| 407610229e | |||
| 63f696e5fa | |||
| 37a84bc40f | |||
| 717b405c7b | |||
| 5963da70db | |||
| 3d012c9f0b | |||
| dbf6831c1a | |||
|
|
e906f127f0 | ||
| 364d246132 | |||
| 01492543c5 | |||
| 0479a65e53 | |||
|
|
bbc41c76b7 | ||
| 57635fab6b | |||
| a6f00dfbf5 | |||
| 8276ccf154 | |||
|
|
b1658352f4 | ||
| 6149a6da37 | |||
| dee9dd9b41 | |||
| 2ccac0880a | |||
|
|
d84a909687 |
@@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 24 12:20:37 UTC 2024 - ecsos <ecsos@opensuse.org>
|
||||
|
||||
- Fix build error under Leap.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 30 12:03:04 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ Group: Development/Languages/Python
|
||||
URL: https://github.com/pexpect/ptyprocess
|
||||
Source: https://files.pythonhosted.org/packages/source/p/ptyprocess/ptyprocess-%{version}.tar.gz
|
||||
# PATCH-FIX-UPSTREAM - gh/pexpect/ptyprocess#75 - Remove unittest.makeSuite, gone from Python 3.13
|
||||
Patch: https://github.com/pexpect/ptyprocess/pull/75.patch#/remove-old-unittest-functions.patch
|
||||
Patch1: https://github.com/pexpect/ptyprocess/pull/75.patch#/remove-old-unittest-functions.patch
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
@@ -46,13 +46,18 @@ If you need to automate these things, running the process in a pseudo terminal
|
||||
|
||||
%prep
|
||||
%setup -q -n ptyprocess-%{version}
|
||||
%patch -P0 -p1
|
||||
%patch -P 1 -p1
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
%install
|
||||
%python_install
|
||||
# Fix python-bytecode-inconsistent-mtime
|
||||
pushd %{buildroot}%{python_sitelib}
|
||||
find . -name '*.pyc' -exec rm -f '{}' ';'
|
||||
python%python_bin_suffix -m compileall *.py ';'
|
||||
popd
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
|
||||
Reference in New Issue
Block a user