source: projects/specs/trunk/p/python-six/python-six-vl.spec @ 12372

Revision 12372, 3.3 KB checked in by tomop, 4 years ago (diff)

updated 14 packages

acpica-tools-20190509-1

ethtool-5.4-1

flac-1.3.3-1

iproute-5.6.0-1

libcap-ng-0.7.10-1

libestr-0.1.11-2

libfastjson-0.99.8-4

libproxy-0.4.15-2

libpwquality-1.4.2-1

libunistring-0.9.10-2

mdadm-4.1-1

python-six-1.14.0-1

rsyslog-8.2002.0-1

speexdsp-1.2-0.16.rc3

RevLine 
[8961]1%define pkgname six
2
3# Basic Information
4Name:           python-six
[12372]5Version:        1.14.0
[8961]6Release:        1%{?_dist_release}
7# /usr/share/doc/rpm-4.11.2/GROUPS_for_vine.txt を参照して Group を修正してください。
8Group:          Development/Libraries
9Vendor:         Project Vine
10Distribution:   Vine Linux
11Packager:       yasumichi
12
[12372]13License:        MIT
14URL:            https://pypi.python.org/pypi/six/
15Source0:        https://pypi.python.org/packages/source/s/%{pkgname}/%{pkgname}-%{version}.tar.gz
16BuildRoot:      %{_tmppath}/%{name}-%{version}-root
17
[8961]18Summary:        Python 2 and 3 compatibility utilities
19Summary(ja):    Python 2 および 3 の互換ユーテリティ
20
[11459]21BuildArch:      noarch
[8961]22# Dependency
23Requires:       python
[11459]24BuildRequires:  python-devel
25BuildRequires:  python-setuptools
26BuildRequires:  python-rpm-macros
27BuildRequires:  python3-devel
28BuildRequires:  python3-setuptools
29BuildRequires:  python3-rpm-macros
[8961]30
31%description
32for smoothing over the differences between the Python versions with the goal of
33writing Python code that is compatible on both Python versions.  See the
34documentation for more information on what is provided.
35
36Six supports every Python version since 2.5.  It is contained in only one Python
37file, so it can be easily copied into your project. (The copyright and license
38notice must be retained.)
39
40Online documentation is at http://pythonhosted.org/six/.
41
42Bugs can be reported to http://bitbucket.org/gutworth/six.  The code can also be
43found there.
44
45For questions about six or porting in general, email the python-porting mailing
46list: http://mail.python.org/mailman/listinfo/python-porting
47
[11459]48%package -n python3-six
49Summary:                Python 2 and 3 compatibility utilities
50Summary(ja):    Python 2 および 3 の互換ユーテリティ
51Requires:               python3
[8961]52
[11459]53%description -n python3-six
54for smoothing over the differences between the Python versions with the goal of
55writing Python code that is compatible on both Python versions.  See the
56documentation for more information on what is provided.
[8961]57
[11459]58Six supports every Python version since 2.5.  It is contained in only one Python
59file, so it can be easily copied into your project. (The copyright and license
60notice must be retained.)
61
62Online documentation is at http://pythonhosted.org/six/.
63
64Bugs can be reported to http://bitbucket.org/gutworth/six.  The code can also be
65found there.
66
67For questions about six or porting in general, email the python-porting mailing
68list: http://mail.python.org/mailman/listinfo/python-porting
69
70
[8961]71%prep
72%setup -q -n six-%{version}
73
74%build
[11459]75%py_build
76%py3_build
77
[8961]78
79%install
80%{__rm} -rf ${RPM_BUILD_ROOT}
[11459]81%py_install
82%py3_install
[8961]83
84
85%clean
86%{__rm} -rf ${RPM_BUILD_ROOT}
87
88
89%files
90%defattr(-,root,root)
[12372]91%license LICENSE
92%doc README*
[8961]93%{python_sitelib}/six-%{version}-py*.egg-info
94%{python_sitelib}/six.py*
95
[11459]96%files -n python3-six
97%defattr(-,root,root)
[12372]98%license LICENSE
99%doc README*
[11459]100%{python3_sitelib}/six-%{version}-py*.egg-info
101%{python3_sitelib}/six.py*
102%{python3_sitelib}/__pycache__/six.*
103
[8961]104%changelog
[12372]105* Sun Apr 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.0-1
106- new upstream release.
107
[11459]108* Wed Jan 31 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.11.0-1
109- new upstream release.
110- added a subpackage for python3.
111
[9819]112* Sun Nov 15 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.10.0-1
113- new upstream release.
114
[8961]115* Sat Sep 20 2014 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.8.0-1
116- initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.