Compare commits

..

14 commits

Author SHA1 Message Date
Till Maas
c5e4840f95 2014-11-04: Retired because it was orphaned for 6 or more weeks 2014-11-04 08:06:53 +01:00
Dennis Gilmore
8e5b964131 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 2014-06-08 00:31:14 -05:00
Dennis Gilmore
392f789185 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild 2013-08-04 02:52:48 -05:00
Dennis Gilmore
4ff3c02950 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild 2013-02-14 21:33:50 -06:00
Dennis Gilmore
fc72e4a6fd - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 2012-07-21 23:57:55 -05:00
Dennis Gilmore
0700e84928 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild 2012-01-14 02:45:50 -06:00
Dennis Gilmore
58e70259b1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-07 22:07:11 -06:00
Fedora Release Engineering
73caa538e0 dist-git conversion 2010-07-29 15:41:59 +00:00
6ad0a2deef - Rebuilt for
https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
2010-07-22 07:18:12 +00:00
Bill Nottingham
ac0f71d2d8 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:40:56 +00:00
Jesse Keating
9d5b4535fe - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 07:48:33 +00:00
Jesse Keating
0c20e0d74f - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 2009-02-26 08:36:28 +00:00
Ignacio Vazquez-Abrams
5ced4805cd Rebuild for Python 2.6 2008-11-29 17:35:14 +00:00
Deji Akingunola
c6d606111f Initial import 2008-06-28 22:17:14 +00:00
4 changed files with 2 additions and 56 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
xesam-tools-0.6.1.tar.gz

2
dead.package Normal file
View file

@ -0,0 +1,2 @@
2014-11-04: Retired because it was orphaned for 6 or more weeks

View file

@ -1 +0,0 @@
00f2b2b0ed3f5336115a0c029eb1cd38 xesam-tools-0.6.1.tar.gz

View file

@ -1,54 +0,0 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Summary: A toolkit for Xesam compliant services
Name: xesam-tools
Version: 0.6.1
Release: 1%{?dist}
License: LGPLv2
Group: Applications/System
URL: http://xesam.org/main
Source0: http://xesam.org/people/kamstrup/%{name}/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: python-devel
BuildArch: noarch
%description
xesam-tools provides Python packages to interface with Xesam
compliant services as well as a command line tool to use directly.
It also features a framework for easily implementing xesam compliant
servers via the xesam.server package. There are two examples bundled
with this distribution. Namely demo/xesam-yahoo-service and
demo/xesam-dummy-service. Both include a small header describing
their usage.
The implementation uses gobject and the Python dbus bindings for the gobject
mainloop. There's no gui, only a command line application (xesam-tool).
%prep
%setup -q
%build
%{__python} setup.py build
%install
rm -rf %{buildroot}
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
chmod 0644 demo/xesam-yahoo-service demo/xesam-dummy-service
%clean
rm -rf %{buildroot}
%files
%defattr(-, root, root, -)
%doc AUTHORS ChangeLog COPYING README
%doc demo/xesam-yahoo-service demo/xesam-dummy-service
%{_bindir}/xesam-tool
%{python_sitelib}/xesam/
%{python_sitelib}/xesam*.egg-info
%changelog
* Mon May 12 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.1-1
- Initial packaging for Fedora.