Update to 0.34.2
Resolves: jira#RHEL-69880
This commit is contained in:
parent
fe1d553954
commit
174f602013
2
.gitignore
vendored
2
.gitignore
vendored
@ -39,3 +39,5 @@
|
|||||||
/python-dbusmock-0.31.1.tar.gz
|
/python-dbusmock-0.31.1.tar.gz
|
||||||
/python-dbusmock-0.32.1.tar.gz
|
/python-dbusmock-0.32.1.tar.gz
|
||||||
/python-dbusmock-0.32.2.tar.gz
|
/python-dbusmock-0.32.2.tar.gz
|
||||||
|
/python-dbusmock-0.33.0.tar.gz
|
||||||
|
/python_dbusmock-0.34.2.tar.gz
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
This repository is maintained by packit.
|
This repository is maintained by packit.
|
||||||
https://packit.dev/
|
https://packit.dev/
|
||||||
The file was generated using packit 0.101.1.post1.dev8+ge78e9e3b.
|
The file was generated using packit 0.106.0.
|
||||||
|
13
packit.yaml
13
packit.yaml
@ -10,13 +10,14 @@ downstream_package_name: python-dbusmock
|
|||||||
|
|
||||||
actions:
|
actions:
|
||||||
create-archive:
|
create-archive:
|
||||||
- ./setup.py sdist
|
- python3 -m build --sdist
|
||||||
# spec and tarball need to be in the same directory
|
# spec and tarball need to be in the same directory
|
||||||
- sh -c 'mv dist/*.tar.* packaging; ls packaging/python[-_]dbusmock-*.tar.*'
|
- sh -c 'mv dist/*.tar.* packaging; ls packaging/python_dbusmock-*.tar.*'
|
||||||
|
|
||||||
srpm_build_deps:
|
srpm_build_deps:
|
||||||
- python3-setuptools
|
- python3-build
|
||||||
- python3-setuptools_scm
|
- python3-setuptools_scm
|
||||||
|
- python3dist(wheel)
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: copr_build
|
- job: copr_build
|
||||||
@ -24,16 +25,14 @@ jobs:
|
|||||||
targets:
|
targets:
|
||||||
- fedora-all
|
- fedora-all
|
||||||
- centos-stream-9-x86_64
|
- centos-stream-9-x86_64
|
||||||
# FIXME: broken
|
- centos-stream-10-x86_64
|
||||||
# - centos-stream-10-x86_64
|
|
||||||
|
|
||||||
- job: tests
|
- job: tests
|
||||||
trigger: pull_request
|
trigger: pull_request
|
||||||
targets:
|
targets:
|
||||||
- fedora-all
|
- fedora-all
|
||||||
- centos-stream-9-x86_64
|
- centos-stream-9-x86_64
|
||||||
# FIXME: broken rpm build above
|
- centos-stream-10-x86_64
|
||||||
# - centos-stream-10-x86_64
|
|
||||||
|
|
||||||
- job: propose_downstream
|
- job: propose_downstream
|
||||||
trigger: release
|
trigger: release
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
%global modname dbusmock
|
%global modname dbusmock
|
||||||
|
|
||||||
Name: python-%{modname}
|
Name: python-%{modname}
|
||||||
Version: 0.32.2
|
Version: 0.34.2
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Mock D-Bus objects
|
Summary: Mock D-Bus objects
|
||||||
|
|
||||||
License: LGPL-3.0-or-later
|
License: LGPL-3.0-or-later
|
||||||
URL: https://pypi.python.org/pypi/python-dbusmock
|
URL: https://pypi.python.org/pypi/python-dbusmock
|
||||||
Source0: https://files.pythonhosted.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/source/p/%{name}/python_%{modname}-%{version}.tar.gz
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: git
|
BuildRequires: git
|
||||||
@ -34,7 +34,7 @@ Requires: python3-dbus, python3-gobject, dbus-x11
|
|||||||
%description -n python3-dbusmock %_description
|
%description -n python3-dbusmock %_description
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{name}-%{version}
|
%autosetup -n python_%{modname}-%{version}
|
||||||
rm -rf python-%{modname}.egg-info
|
rm -rf python-%{modname}.egg-info
|
||||||
|
|
||||||
|
|
||||||
@ -52,6 +52,17 @@ rm -rf python-%{modname}.egg-info
|
|||||||
%{python3_sitelib}/*%{modname}*
|
%{python3_sitelib}/*%{modname}*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.34.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Dec 27 2024 Packit <hello@packit.dev> - 0.34.2-1
|
||||||
|
- spec: Adjust %%autosetup to PEP-625 tarball top-level directory
|
||||||
|
|
||||||
|
* Wed Dec 11 2024 Packit <hello@packit.dev> - 0.33.0-1
|
||||||
|
- templates: Add gsd-rfkill (thanks Guido Günther)
|
||||||
|
- Allow adding objects derived from DBusMockObject (thanks Sebastian Wick)
|
||||||
|
- Drop Python <= 3.7 support (thanks Tomasz Kłoczko)
|
||||||
|
|
||||||
* Thu Oct 03 2024 Packit <hello@packit.dev> - 0.32.2-1
|
* Thu Oct 03 2024 Packit <hello@packit.dev> - 0.32.2-1
|
||||||
- all templates: Drop wrong variant wrapping from all properties
|
- all templates: Drop wrong variant wrapping from all properties
|
||||||
- tests: Skip TestNetworkManager::test_one_wifi_with_accesspoints with NM ≥ 1.49.3
|
- tests: Skip TestNetworkManager::test_one_wifi_with_accesspoints with NM ≥ 1.49.3
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (python-dbusmock-0.32.2.tar.gz) = 09981dddd49e430093996de78d96293c46867fad7ab24e1badde25cda5f60b05324bd203d5738e8f4315c5744809876ac4afd73aa26bcc6afa05fd631c03ceba
|
SHA512 (python_dbusmock-0.34.2.tar.gz) = 3a4a46afa0ca54004a6891c639c0e1bfd879e575189bdd1bbe031f12333d2358af77456e8b6cb32681010b7c19fb8171f819f67ec8960494408100118b19881d
|
||||||
|
Loading…
Reference in New Issue
Block a user