Initial import of the package after review.
This commit is contained in:
parent
e2f59fbe2a
commit
16afd26e2a
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/python-dbusmock-0.1.1.tar.gz
|
60
python-dbusmock.spec
Normal file
60
python-dbusmock.spec
Normal file
@ -0,0 +1,60 @@
|
||||
%global modname dbusmock
|
||||
|
||||
Name: python-%{modname}
|
||||
Version: 0.1.1
|
||||
Release: 2%{?dist}
|
||||
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
|
||||
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.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
sed -i -e '/^#!\s*\/.*bin\/.*python/d' %{modname}.py
|
||||
|
||||
rm -rf python-%{modname}.egg-info
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
|
||||
|
||||
%install
|
||||
|
||||
%{__python} setup.py install -O1 --skip-build --root=%{buildroot}
|
||||
|
||||
%check
|
||||
%{__python} setup.py test
|
||||
|
||||
|
||||
%files
|
||||
%doc README.rst COPYING
|
||||
%{python_sitelib}/*%{modname}*
|
||||
|
||||
|
||||
%changelog
|
||||
* 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
|
Loading…
Reference in New Issue
Block a user