2014-11-06 13:20:44 +00:00
|
|
|
Name: dbus-python
|
2022-09-29 15:10:50 +00:00
|
|
|
Version: 1.3.2
|
2024-10-29 15:20:29 +00:00
|
|
|
Release: 8%{?dist}
|
2021-06-13 15:51:09 +00:00
|
|
|
Summary: D-Bus Python Bindings
|
2012-08-08 16:10:12 +00:00
|
|
|
|
|
|
|
License: MIT
|
2014-11-06 13:19:40 +00:00
|
|
|
URL: http://www.freedesktop.org/wiki/Software/DBusBindings/
|
2007-10-20 02:36:38 +00:00
|
|
|
Source0: http://dbus.freedesktop.org/releases/dbus-python/%{name}-%{version}.tar.gz
|
2013-10-28 15:06:48 +00:00
|
|
|
Source1: http://dbus.freedesktop.org/releases/dbus-python/%{name}-%{version}.tar.gz.asc
|
2021-06-13 15:51:09 +00:00
|
|
|
# gpg --keyserver keyring.debian.org --recv-keys 36EC5A6448A4F5EF79BEFE98E05AE1478F814C4F
|
|
|
|
# gpg --export --export-options export-minimal > gpgkey-36EC5A6448A4F5EF79BEFE98E05AE1478F814C4F.gpg
|
|
|
|
Source2: gpgkey-36EC5A6448A4F5EF79BEFE98E05AE1478F814C4F.gpg
|
2007-01-24 18:18:14 +00:00
|
|
|
|
2014-11-06 13:47:02 +00:00
|
|
|
# borrow centos7 patch to use sitearch properly
|
2015-11-16 09:23:43 +00:00
|
|
|
Patch0: 0001-Move-python-modules-to-architecture-specific-directo.patch
|
2014-06-20 18:23:22 +00:00
|
|
|
|
2021-06-13 15:51:09 +00:00
|
|
|
BuildRequires: gnupg2
|
|
|
|
BuildRequires: pkgconfig(dbus-1)
|
|
|
|
BuildRequires: pkgconfig(glib-2.0)
|
2012-08-08 16:10:12 +00:00
|
|
|
# for %%check
|
2016-12-11 16:38:48 +00:00
|
|
|
BuildRequires: dbus-x11
|
2020-08-08 10:00:45 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-gobject
|
2014-05-29 15:28:59 +00:00
|
|
|
# autoreconf and friends
|
2016-02-23 07:46:04 +00:00
|
|
|
BuildRequires: autoconf-archive automake libtool
|
2008-09-16 15:31:02 +00:00
|
|
|
|
2017-08-19 13:38:13 +00:00
|
|
|
%global _description\
|
|
|
|
D-Bus python bindings for use with python programs.
|
|
|
|
|
|
|
|
%description %_description
|
|
|
|
|
2020-08-08 10:00:45 +00:00
|
|
|
%package -n python%{python3_pkgversion}-dbus
|
2013-02-25 15:24:14 +00:00
|
|
|
Summary: D-Bus bindings for python3
|
2020-08-08 10:00:45 +00:00
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-dbus}
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
2019-02-12 01:32:37 +00:00
|
|
|
# for py3_build
|
|
|
|
BuildRequires: python3dist(setuptools)
|
2022-09-29 15:10:50 +00:00
|
|
|
BuildRequires: python3dist(setuptools-scm)
|
|
|
|
BuildRequires: python3dist(wheel)
|
2020-12-17 04:17:04 +00:00
|
|
|
BuildRequires: make
|
2017-08-19 20:06:58 +00:00
|
|
|
|
2020-08-08 10:00:45 +00:00
|
|
|
%description -n python%{python3_pkgversion}-dbus
|
2013-02-25 15:24:14 +00:00
|
|
|
%{summary}.
|
|
|
|
|
2017-11-08 09:11:48 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Libraries and headers for dbus-python
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Headers and static libraries for hooking up custom mainloops to the dbus python
|
|
|
|
bindings.
|
|
|
|
|
2006-07-18 17:11:08 +00:00
|
|
|
%prep
|
2021-06-13 15:51:09 +00:00
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
2017-11-08 09:08:37 +00:00
|
|
|
%autosetup -p1
|
2014-11-06 13:47:02 +00:00
|
|
|
|
2017-11-08 09:08:19 +00:00
|
|
|
# For new arches (aarch64/ppc64le), and patch0
|
|
|
|
autoreconf -vif
|
2013-02-25 15:24:14 +00:00
|
|
|
|
2019-02-12 01:32:37 +00:00
|
|
|
%build
|
2022-09-29 15:10:50 +00:00
|
|
|
export DBUS_PYTHON_USE_AUTOTOOLS=1
|
2019-02-12 01:32:37 +00:00
|
|
|
%set_build_flags
|
|
|
|
%py3_build
|
2017-11-08 09:07:45 +00:00
|
|
|
%configure PYTHON="%{__python3}"
|
2017-11-08 09:07:07 +00:00
|
|
|
%make_build
|
2006-07-18 17:11:08 +00:00
|
|
|
|
|
|
|
%install
|
2022-09-29 15:10:50 +00:00
|
|
|
export DBUS_PYTHON_USE_AUTOTOOLS=1
|
2019-02-12 01:32:37 +00:00
|
|
|
%py3_install
|
|
|
|
%make_install
|
2007-01-24 18:18:14 +00:00
|
|
|
|
2012-08-08 16:10:12 +00:00
|
|
|
# unpackaged files
|
2014-11-06 13:47:02 +00:00
|
|
|
rm -fv $RPM_BUILD_ROOT%{python3_sitearch}/*.la
|
2012-08-08 16:10:12 +00:00
|
|
|
rm -rfv $RPM_BUILD_ROOT%{_datadir}/doc/dbus-python/
|
2007-01-24 18:18:14 +00:00
|
|
|
|
2012-08-08 16:10:12 +00:00
|
|
|
%check
|
2020-01-16 10:17:14 +00:00
|
|
|
make check -k || (cat test-suite.log && false)
|
2007-01-24 18:18:14 +00:00
|
|
|
|
2020-08-08 10:00:45 +00:00
|
|
|
%files -n python%{python3_pkgversion}-dbus
|
2017-11-08 09:12:06 +00:00
|
|
|
%doc NEWS
|
2015-11-16 09:23:43 +00:00
|
|
|
%license COPYING
|
2013-02-25 15:24:14 +00:00
|
|
|
%{python3_sitearch}/*.so
|
2014-11-06 13:47:02 +00:00
|
|
|
%{python3_sitearch}/dbus/
|
2019-02-12 01:32:37 +00:00
|
|
|
%{python3_sitearch}/dbus_python*egg-info
|
2013-02-25 15:24:14 +00:00
|
|
|
|
2017-11-08 09:11:48 +00:00
|
|
|
%files devel
|
2020-02-12 01:28:51 +00:00
|
|
|
%doc README ChangeLog doc/API_CHANGES.txt doc/tutorial.txt
|
2017-11-08 09:11:48 +00:00
|
|
|
%{_includedir}/dbus-1.0/dbus/dbus-python.h
|
|
|
|
%{_libdir}/pkgconfig/dbus-python.pc
|
2012-08-08 16:10:12 +00:00
|
|
|
|
2006-07-18 17:11:08 +00:00
|
|
|
%changelog
|
2024-10-29 15:20:29 +00:00
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.3.2-8
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
2024-06-24 15:39:57 +00:00
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.3.2-7
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
2024-01-24 08:59:41 +00:00
|
|
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-19 16:46:09 +00:00
|
|
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-07-19 17:02:08 +00:00
|
|
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-06-15 15:00:12 +00:00
|
|
|
* Thu Jun 15 2023 Python Maint <python-maint@redhat.com> - 1.3.2-3
|
|
|
|
- Rebuilt for Python 3.12
|
|
|
|
|
2023-01-19 01:02:02 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-09-29 15:10:50 +00:00
|
|
|
* Thu Sep 29 2022 Vojtech Trefny <vtrefny@redhat.com> - 1.3.2-1
|
|
|
|
- Update to 1.3.2 (#2124688)
|
|
|
|
|
2022-07-21 00:05:29 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.18-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-06-13 18:59:16 +00:00
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.2.18-4
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
2022-01-20 00:19:08 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.18-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-21 20:26:26 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.18-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-20 15:57:10 +00:00
|
|
|
* Tue Jul 20 2021 David King <amigadave@amigadave.com> - 1.2.18-1
|
|
|
|
- Update to 1.2.18 (#1984073)
|
|
|
|
|
2021-06-13 15:51:09 +00:00
|
|
|
* Sun Jun 13 2021 David King <amigadave@amigadave.com> - 1.2.16-6
|
|
|
|
- Verify GPG signature of sources
|
|
|
|
- Use pkgconfig for BuildRequires
|
|
|
|
|
2021-06-03 20:24:27 +00:00
|
|
|
* Thu Jun 03 2021 Python Maint <python-maint@redhat.com> - 1.2.16-5
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-01-26 03:02:57 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.16-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-07-27 15:04:04 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.16-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-23 09:40:03 +00:00
|
|
|
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 1.2.16-2
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-02-12 01:28:51 +00:00
|
|
|
* Tue Feb 11 2020 Leigh Scott <leigh123linux@gmail.com> - 1.2.16-1
|
|
|
|
- Update to 1.2.16 (#1788491)
|
|
|
|
|
2020-01-28 15:25:26 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.8-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-16 10:17:14 +00:00
|
|
|
* Thu Jan 16 2020 Miro Hrončok <mhroncok@redhat.com> - 1.2.8-9
|
|
|
|
- Subpackage python2-dbus has been removed
|
|
|
|
See https://fedoraproject.org/wiki/Changes/RetirePython2
|
|
|
|
|
2019-10-03 11:52:17 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.8-8
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-15 22:44:34 +00:00
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.8-7
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-24 21:36:13 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.8-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-12 01:32:37 +00:00
|
|
|
* Mon Feb 11 2019 Neal Gompa <ngompa13@gmail.com> - 1.2.8-5
|
|
|
|
- Run setuptools build to generate pythonXdist() metadata (#1663693)
|
|
|
|
|
2019-01-31 16:51:19 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.8-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-12 22:37:26 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.8-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-16 10:10:56 +00:00
|
|
|
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 1.2.8-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-05-23 12:04:24 +00:00
|
|
|
* Wed May 23 2018 Miro Hrončok <mhroncok@redhat.com> - 1.2.8-1
|
|
|
|
- Update to 1.2.8 (#1539950) (#1578726)
|
|
|
|
- Cat the logs if tests failed
|
|
|
|
|
2018-02-07 06:25:02 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-03 10:23:54 +00:00
|
|
|
* Wed Jan 03 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.2.4-12
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2017-11-08 09:14:43 +00:00
|
|
|
* Wed Nov 08 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.2.4-11
|
|
|
|
- Cleanups in packaging
|
|
|
|
|
2017-08-19 20:06:58 +00:00
|
|
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.2.4-10
|
|
|
|
- Also add Provides for the old name without %%_isa
|
|
|
|
- Use %%python_provide for the python3 subpackage and drop manual Provide which
|
|
|
|
conflicts with %%python_provide in the python2 subpackage.
|
|
|
|
|
2017-08-19 13:38:13 +00:00
|
|
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.2.4-9
|
|
|
|
- Python 2 binary package renamed to python2-dbus
|
|
|
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-08-02 19:29:01 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 06:00:02 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 08:12:28 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-21 22:00:46 +00:00
|
|
|
* Wed Dec 21 2016 Kevin Fenzi <kevin@scrye.com> - 1.2.4-5
|
|
|
|
- Rebuild again for Python 3.6
|
|
|
|
|
2016-12-11 16:38:48 +00:00
|
|
|
* Sun Dec 11 2016 leigh scott <leigh123linux@googlemail.com> - 1.2.4-4
|
|
|
|
- Add missing build requires needed for check
|
|
|
|
|
2016-12-11 12:51:02 +00:00
|
|
|
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.2.4-3
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-07-19 06:54:06 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-03-07 07:50:55 +00:00
|
|
|
* Mon Mar 07 2016 Leigh Scott <leigh123linux@googlemail.com> - 1.2.4-1
|
|
|
|
- Update to 1.2.4 (#1310915)
|
|
|
|
|
2016-02-23 07:16:27 +00:00
|
|
|
* Tue Feb 23 2016 Leigh Scott <leigh123linux@googlemail.com> - 1.2.2-1
|
|
|
|
- Update to 1.2.2 (#1310915)
|
2016-02-23 07:46:04 +00:00
|
|
|
- add build requires autoconf-archive
|
2016-02-23 07:16:27 +00:00
|
|
|
|
2016-02-03 18:30:10 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-16 09:23:43 +00:00
|
|
|
* Mon Nov 16 2015 Leigh Scott <leigh123linux@googlemail.com> - 1.2.0-12
|
|
|
|
- Drop object manager patch
|
|
|
|
|
2015-10-13 07:35:57 +00:00
|
|
|
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 1.2.0-11
|
|
|
|
- Rebuilt for Python3.5 rebuild
|
|
|
|
|
2015-08-19 13:27:07 +00:00
|
|
|
* Wed Aug 19 2015 Leigh Scott <leigh123linux@googlemail.com> - 1.2.0-10
|
|
|
|
- rebuilt
|
|
|
|
|
2015-08-19 13:24:53 +00:00
|
|
|
* Wed Aug 19 2015 Leigh Scott <leigh123linux@googlemail.com> - 1.2.0-9
|
|
|
|
- rebuilt
|
|
|
|
|
2015-06-17 03:46:12 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-11-06 13:19:40 +00:00
|
|
|
* Thu Nov 06 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.0-7
|
2014-11-06 13:47:02 +00:00
|
|
|
- python2_sitelib should be python2_sitearch (#1161121)
|
2014-11-06 13:19:40 +00:00
|
|
|
- update URL, s/python/python2/ a bit
|
|
|
|
|
2014-08-16 02:20:19 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-20 18:23:22 +00:00
|
|
|
* Fri Jun 20 2014 Dan Mashal <dan.mashal@fedoraproject.org> - 1.2.0-5
|
|
|
|
- Add patch needed that adds Object Manager functionality for Fedora server dbus api.
|
|
|
|
|
2014-06-07 06:54:17 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-29 15:28:59 +00:00
|
|
|
* Thu May 29 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.0-3
|
|
|
|
- Drop old python3 conditionals, SPEC cleanups
|
|
|
|
|
2014-05-12 12:35:56 +00:00
|
|
|
* Mon May 12 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.0-2
|
|
|
|
- rebuild (f21-python)
|
|
|
|
|
2013-10-28 15:06:48 +00:00
|
|
|
* Mon Oct 28 2013 Rex Dieter <rdieter@fedoraproject.org> 1.2.0-1
|
|
|
|
- dbus-python-1.2.0 is available (#1021817)
|
|
|
|
|
2013-08-03 06:46:47 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-04-25 12:56:17 +00:00
|
|
|
* Thu Apr 25 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.1-5
|
|
|
|
- Add upstream patch to fix pygobject 3.8
|
|
|
|
|
2013-03-29 09:03:04 +00:00
|
|
|
* Fri Mar 29 2013 Dan Mashal <dan.mashal@fedoraproject.org> - 1.1.1-4
|
|
|
|
- Apply patch to support aarch64 (#925236)
|
|
|
|
- Fix URL
|
|
|
|
|
2013-02-25 15:24:14 +00:00
|
|
|
* Mon Feb 25 2013 Rex Dieter <rdieter@fedoraproject.org> - 1.1.1-3
|
|
|
|
- python3-dbus subpkg (#892474)
|
|
|
|
- (main) Provides: python-dbus
|
|
|
|
- BR: python-docutils
|
|
|
|
- .spec cosmetics
|
|
|
|
- skip failed tests on rawhide (#913936)
|
|
|
|
|
2013-02-13 19:29:38 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-08 16:10:12 +00:00
|
|
|
* Tue Aug 07 2012 Rex Dieter <rdieter@fedoraproject.org> 1.1.1-1
|
|
|
|
- dbus-python-1.1.1 (#800487)
|
|
|
|
|
2012-07-18 20:22:28 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.83.0-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-13 00:21:37 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.83.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-08 13:09:57 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.83.0-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-07-22 01:02:21 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.83.0-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2009-07-24 20:02:50 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.83.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-24 11:03:46 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.83.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-11-29 16:36:48 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.83.0-4
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-09-16 15:31:02 +00:00
|
|
|
* Tue Sep 16 2008 Marco Pesenti Gritti - 0.83.0-3
|
2017-11-08 09:10:00 +00:00
|
|
|
- Add patch for https://bugs.freedesktop.org/show_bug.cgi?id=17551
|
2008-09-16 15:31:02 +00:00
|
|
|
|
2008-08-05 06:10:28 +00:00
|
|
|
* Tue Aug 05 2008 Huang Peng <phuang@redhat.com> - 0.83.0-2
|
2008-08-05 05:36:18 +00:00
|
|
|
- Update to 0.83.0.
|
|
|
|
|
2008-07-16 15:27:39 +00:00
|
|
|
* Wed Jul 16 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.82.4-3
|
|
|
|
- fix license tag
|
|
|
|
|
2008-02-19 00:22:41 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.82.4-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-20 22:20:20 +00:00
|
|
|
* Sun Jan 20 2008 Matthias Clasen <mclasen@redhat.com> - 0.82.4-1
|
|
|
|
- Update to 0.82.4
|
|
|
|
|
2007-10-23 01:38:21 +00:00
|
|
|
* Mon Oct 22 2007 Matthias Clasen <mclasen@redhat.com> - 0.82.0-3
|
|
|
|
- Rebuild against new dbus-glib
|
|
|
|
|
2007-08-29 03:52:15 +00:00
|
|
|
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 0.82.0-2
|
|
|
|
- Rebuild for selinux ppc32 issue.
|
|
|
|
|
2007-06-23 01:03:18 +00:00
|
|
|
* Fri Jun 22 2007 Matthias Clasen <mclasen@redhat.com> - 0.82.0-1
|
|
|
|
- Update to 0.82.0
|
|
|
|
- Put all docs in the usual place
|
|
|
|
|
2007-04-04 02:51:45 +00:00
|
|
|
* Tue Apr 03 2007 David Zeuthen <davidz@redhat.com> - 0.80.2-3
|
|
|
|
- Rebuild
|
|
|
|
|
|
|
|
* Tue Apr 03 2007 David Zeuthen <davidz@redhat.com> - 0.80.2-2
|
2007-04-04 02:47:44 +00:00
|
|
|
- Don't examine args for functions declared METH_NOARGS (#235017)
|
|
|
|
|
2007-02-13 18:17:19 +00:00
|
|
|
* Tue Feb 13 2007 John (J5) Palmieri <johnp@redhat.com> - 0.80.2-1
|
|
|
|
- upgrade to 0.80.2 which fixes some memleaks
|
|
|
|
|
2007-01-24 18:18:14 +00:00
|
|
|
* Wed Jan 24 2007 John (J5) Palmieri <johnp@redhat.com> - 0.80.1-1
|
|
|
|
- upgrade to 0.80.1
|
|
|
|
- remove dependency on Pyrex and libxml2
|
2017-11-08 09:10:00 +00:00
|
|
|
- some API breakage,
|
2007-01-24 18:18:14 +00:00
|
|
|
please see http://dbus.freedesktop.org/doc/dbus-python/NEWS.html
|
2017-11-08 09:10:00 +00:00
|
|
|
for notes on changes
|
2007-01-24 18:18:14 +00:00
|
|
|
|
2007-01-03 21:13:09 +00:00
|
|
|
* Wed Jan 3 2007 David Zeuthen <davidz@redhat.com> - 0.70-9%{?dist}
|
|
|
|
- rebuild against new Pyrex
|
|
|
|
|
2006-12-06 23:09:31 +00:00
|
|
|
* Wed Dec 6 2006 Jeremy Katz <katzj@redhat.com> - 0.70-8
|
|
|
|
- rebuild against python 2.5
|
|
|
|
|
2006-11-07 14:27:33 +00:00
|
|
|
* Tue Nov 7 2006 Matthias Clasen <mclasen@redhat.com> - 0.70-7
|
|
|
|
- Fix a typo in the spec file
|
|
|
|
|
2006-08-18 12:38:33 +00:00
|
|
|
* Fri Aug 18 2006 Karsten Hopp <karsten@redhat.com> - 0.70-6
|
|
|
|
- require libxml2-python for site-packages/dbus/introspect_parser.py
|
|
|
|
|
2006-07-20 17:56:50 +00:00
|
|
|
* Thu Jul 20 2006 Jesse Keating <jkeating@redhat.com> - 0.70-5
|
|
|
|
- Remove unnecessary obsoletes
|
|
|
|
|
2006-07-18 21:28:06 +00:00
|
|
|
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.70-4
|
|
|
|
- Try python_sitearch this time
|
|
|
|
|
2006-07-18 20:16:35 +00:00
|
|
|
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.70-3
|
|
|
|
- Add a BR on dbus-devel
|
|
|
|
|
2006-07-18 17:27:02 +00:00
|
|
|
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.70-2
|
|
|
|
- Spec file cleanups
|
2006-07-18 20:09:22 +00:00
|
|
|
- Add PKG_CONFIG_PATH
|
2006-07-18 17:27:02 +00:00
|
|
|
|
2006-07-18 17:11:08 +00:00
|
|
|
* Mon Jul 17 2006 John (J5) Palmieri <johnp@redhat.com> - 0.70-1
|
|
|
|
- Initial package import
|