source: projects/specs/trunk/p/python-stevedore/python-stevedore-vl.spec @ 8881

Revision 8881, 1.3 KB checked in by yasumichi, 10 years ago (diff)

Initial build for vine

Line 
1%define pkgname stevedore
2
3# Basic Information
4Name:           python-stevedore
5Version:        1.0.0.0a1
6Release:        1%{?_dist_release}
7License:        Apache
8Group:          Development/Libraries
9URL:            https://github.com/dreamhost/stevedore
10Source0:        %{pkgname}-%{version}.tar.gz
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12BuildArch:      noarch
13
14Vendor:         Project Vine
15Distribution:   Vine Linux
16Packager:       yasumichi
17
18Summary:        Manage dynamic plugins for Python applications
19Summary(ja):    Python アプリケーションのための動的プラグイン管理
20
21# Dependency
22Requires:       python
23BuildRequires:  python-setuptools
24
25%description
26=========
27
28Manage dynamic plugins for Python applications
29
30* Free software: Apache license
31* Documentation: http://stevedore.readthedocs.org
32* Source: http://git.openstack.org/cgit/openstack/stevedore
33* Bugs: https://bugs.launchpad.net/python-stevedore
34
35#%%description -l ja
36#ここに日本語で詳細を記述してください。
37
38%prep
39%setup -q -n stevedore-1.0.0.0a1
40
41%build
42%{__python} setup.py build
43
44%install
45%{__rm} -rf ${RPM_BUILD_ROOT}
46%{__python} setup.py install --root=${RPM_BUILD_ROOT}
47
48
49%clean
50%{__rm} -rf ${RPM_BUILD_ROOT}
51
52
53%files
54%defattr(-,root,root)
55%doc AUTHORS ChangeLog LICENSE
56%{python_sitelib}/%{pkgname}*
57
58%changelog
59* Sun Aug 03 2014 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.0.0.0a1-1
60- initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.