2012-10-12 07:06:34 +00:00
|
|
|
%global modname dbusmock
|
|
|
|
|
|
|
|
Name: python-%{modname}
|
2014-08-08 14:51:10 +00:00
|
|
|
Version: 0.11.1
|
2015-11-10 15:32:15 +00:00
|
|
|
Release: 3%{?dist}
|
2012-10-12 07:06:34 +00:00
|
|
|
Summary: Mock D-Bus objects
|
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPLv3+
|
|
|
|
URL: http://pypi.python.org/pypi/python-dbusmock
|
|
|
|
Source0: http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildArch: noarch
|
2014-07-17 14:18:31 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
BuildRequires: python3-nose
|
2012-10-12 07:06:34 +00:00
|
|
|
BuildRequires: python-devel, python-setuptools, dbus-python, python-nose
|
|
|
|
BuildRequires: pygobject3, dbus-x11, upower
|
|
|
|
Requires: dbus-python, pygobject3, dbus-x11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
With this program/Python library you can easily create mock objects on
|
|
|
|
D-Bus. This is useful for writing tests for software which talks to
|
|
|
|
D-Bus services such as upower, systemd, ConsoleKit, gnome-session or
|
|
|
|
others, and it is hard (or impossible without root privileges) to set
|
|
|
|
the state of the real services to what you expect in your tests.
|
|
|
|
|
2014-07-17 14:18:31 +00:00
|
|
|
%package -n python3-dbusmock
|
|
|
|
Summary: Mock D-Bus objects (in Python3)
|
|
|
|
%description -n python3-dbusmock
|
|
|
|
%{summary}.
|
2012-10-12 07:06:34 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{name}-%{version}
|
|
|
|
|
|
|
|
rm -rf python-%{modname}.egg-info
|
|
|
|
|
2014-07-17 14:18:31 +00:00
|
|
|
rm -rf %{py3dir}
|
|
|
|
cp -a . %{py3dir}
|
|
|
|
|
2012-10-12 07:06:34 +00:00
|
|
|
%build
|
2014-07-17 14:18:31 +00:00
|
|
|
%{__python2} setup.py build
|
2012-10-12 07:06:34 +00:00
|
|
|
|
2014-07-17 14:18:31 +00:00
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py build
|
|
|
|
popd
|
2012-10-12 07:06:34 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
|
2014-07-17 14:18:31 +00:00
|
|
|
%{__python2} setup.py install -O1 --skip-build --root=%{buildroot}
|
|
|
|
|
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py install -O1 --skip-build --root=%{buildroot}
|
|
|
|
popd
|
2012-10-12 07:06:34 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
|
2014-07-17 14:18:31 +00:00
|
|
|
# Tests are disabled for now
|
|
|
|
# %{__python2} setup.py test
|
|
|
|
|
|
|
|
pushd %{py3dir}
|
|
|
|
# %{__python3} setup.py test
|
|
|
|
popd
|
2012-10-12 07:06:34 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%doc README.rst COPYING
|
2014-07-17 14:18:31 +00:00
|
|
|
%{python2_sitelib}/*%{modname}*
|
2012-10-12 07:06:34 +00:00
|
|
|
|
2014-07-17 14:18:31 +00:00
|
|
|
%files -n python3-dbusmock
|
|
|
|
%doc README.rst COPYING
|
|
|
|
%{python3_sitelib}/*%{modname}*
|
2012-10-12 07:06:34 +00:00
|
|
|
|
|
|
|
%changelog
|
2015-11-10 15:32:15 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-06-18 18:54:07 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-08-08 14:51:10 +00:00
|
|
|
* Fri Aug 08 2014 Matěj Cepl <mcepl@redhat.com> - 0.11.1-1
|
|
|
|
- Update to 0.11.1
|
|
|
|
|
2014-07-17 14:18:31 +00:00
|
|
|
* Thu Jul 17 2014 Bastien Nocera <bnocera@redhat.com> 0.10.3-2
|
|
|
|
- Add Python3 sub-package
|
|
|
|
|
2014-07-17 14:12:02 +00:00
|
|
|
* Thu Jul 17 2014 Bastien Nocera <bnocera@redhat.com> 0.10.3-1
|
|
|
|
- Update to 0.10.3
|
|
|
|
|
2014-06-07 19:21:59 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-11-12 07:20:44 +00:00
|
|
|
* Tue Nov 12 2013 Bastien Nocera <bnocera@redhat.com> 0.8.1-1
|
|
|
|
- Update to 0.8.1
|
|
|
|
|
2013-11-08 11:08:39 +00:00
|
|
|
* Fri Nov 08 2013 Bastien Nocera <bnocera@redhat.com> 0.8-1
|
|
|
|
- Update to 0.8
|
|
|
|
|
2013-08-04 06:55:32 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-13 12:54:42 +00:00
|
|
|
* Thu Jun 13 2013 Bastien Nocera <bnocera@redhat.com> 0.6.3-1
|
|
|
|
- Update to 0.6.3
|
|
|
|
|
2013-06-13 10:22:43 +00:00
|
|
|
* Thu Jun 13 2013 Bastien Nocera <bnocera@redhat.com> 0.6.2-1
|
|
|
|
- Update to 0.6.2
|
|
|
|
|
2013-06-12 12:27:23 +00:00
|
|
|
* Wed Jun 12 2013 Bastien Nocera <bnocera@redhat.com> 0.6-1
|
2013-06-12 11:51:35 +00:00
|
|
|
- Update to 0.6.0
|
|
|
|
|
2013-02-14 19:12:46 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-21 13:57:24 +00:00
|
|
|
* Mon Jan 21 2013 Bastien Nocera <bnocera@redhat.com> 0.4.0-1
|
|
|
|
- Update to 0.4.0
|
|
|
|
|
2013-01-07 09:27:40 +00:00
|
|
|
* Mon Jan 07 2013 Bastien Nocera <bnocera@redhat.com> 0.3.1-1
|
|
|
|
- Update to 0.3.1
|
|
|
|
|
2012-12-19 19:48:22 +00:00
|
|
|
* Wed Dec 19 2012 Matěj Cepl <mcepl@redhat.com> - 0.3-1
|
|
|
|
- New upstream release.
|
|
|
|
|
2012-10-12 07:06:34 +00:00
|
|
|
* Mon Oct 08 2012 Matěj Cepl <mcepl@redhat.com> - 0.1.1-2
|
|
|
|
- remove the bundled egg-info following the package review.
|
|
|
|
|
|
|
|
* Fri Oct 05 2012 Matěj Cepl <mcepl@redhat.com> - 0.1.1-1
|
|
|
|
- This version should actually work
|
|
|
|
|
|
|
|
* Tue Oct 02 2012 Matěj Cepl <mcepl@redhat.com> 0.0.3-1
|
|
|
|
- initial package for Fedora
|