15
0

Compare commits

6 Commits

Author SHA256 Message Date
3243e87690 Accepting request 1321800 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1321800
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-check-manifest?expand=0&rev=23
2025-12-10 14:32:58 +00:00
28902591a7 - Update to 0.51
* Add Python 3.14 support.
  * Drop Python 3.7 support.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-check-manifest?expand=0&rev=47
2025-12-09 14:49:28 +00:00
5ce60a3d2d Accepting request 1288542 from devel:languages:python
- Convert to libalternatives

OBS-URL: https://build.opensuse.org/request/show/1288542
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-check-manifest?expand=0&rev=22
2025-06-26 09:39:26 +00:00
f7d3310c7a - Convert to libalternatives
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-check-manifest?expand=0&rev=45
2025-06-25 12:55:29 +00:00
2163117195 Accepting request 1230088 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1230088
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-check-manifest?expand=0&rev=21
2024-12-11 20:04:49 +00:00
953ce0930e - Update to 0.50
* Add Python 3.12 and 3.13 support.
- Adjust upstream source name in spec file

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-check-manifest?expand=0&rev=43
2024-12-11 12:04:50 +00:00
4 changed files with 34 additions and 17 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:64a640445542cf226919657c7b78d02d9c1ca5b1c25d7e66e0e1ff325060f416
size 40272

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9801c7637675755a563f33e3c48ee59a59b37a7677297c05c910c16c5b9b6d67
size 36302

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Tue Dec 9 14:23:54 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.51
* Add Python 3.14 support.
* Drop Python 3.7 support.
-------------------------------------------------------------------
Wed Jun 25 12:54:54 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Convert to libalternatives
-------------------------------------------------------------------
Wed Dec 11 10:46:24 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.50
* Add Python 3.12 and 3.13 support.
- Adjust upstream source name in spec file
-------------------------------------------------------------------
Wed Feb 28 05:56:23 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-check-manifest
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,28 +24,26 @@
%define psuffix %{nil}
%bcond_with test
%endif
%bcond_without libalternatives
%{?sle15_python_module_pythons}
Name: python-check-manifest%{psuffix}
Version: 0.49
Version: 0.51
Release: 0
Summary: Tool to check Python source package MANIFEST.in for completeness
License: MIT
URL: https://github.com/mgedmin/check-manifest
Source: https://files.pythonhosted.org/packages/source/c/check-manifest/check-manifest-%{version}.tar.gz
Source: https://files.pythonhosted.org/packages/source/c/check_manifest/check_manifest-%{version}.tar.gz
Patch0: use-current-interpreter.patch
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: alts
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: alts
Requires: python-build >= 0.1
Requires: python-setuptools
%if 0%{?python_version_nodots} < 311
Requires: python-tomli
%endif
Requires(post): update-alternatives
Requires(postun): update-alternatives
Recommends: git-core > 2.11
Recommends: python-pip
Recommends: python-wheel
@@ -53,6 +51,9 @@ Suggests: breezy
Suggests: mercurial
Suggests: subversion
BuildArch: noarch
%if 0%{?python_version_nodots} < 311
Requires: python-tomli
%endif
%if %{with test}
BuildRequires: %{python_module check-manifest = %{version}}
BuildRequires: %{python_module pytest}
@@ -68,7 +69,7 @@ check-manifest is a tool for python developers to check for broken packages
and missing files in MANIFEST.
%prep
%setup -q -n check-manifest-%{version}
%setup -q -n check_manifest-%{version}
%if 0%{?suse_version} == 1500
%patch -P 0 -p1
%endif
@@ -96,11 +97,8 @@ git config --global --add protocol.file.allow always
%endif
%if !%{with test}
%post
%python_install_alternative check-manifest
%postun
%python_uninstall_alternative check-manifest
%pre
%python_libalternatives_reset_alternative check-manifest
%files %{python_files}
%doc CHANGES.rst README.rst