2007-08-01 07:52:12 +00:00
|
|
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
|
|
|
|
Name: python-iniparse
|
2009-11-07 10:41:24 +00:00
|
|
|
Version: 0.3.1
|
|
|
|
Release: 1%{?dist}
|
2007-08-01 07:52:12 +00:00
|
|
|
Summary: Python Module for Accessing and Modifying Configuration Data in INI files
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: MIT
|
|
|
|
URL: http://code.google.com/p/iniparse/
|
|
|
|
Source0: http://iniparse.googlecode.com/files/iniparse-%{version}.tar.gz
|
2009-03-02 12:15:26 +00:00
|
|
|
|
2007-08-01 07:52:12 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
2007-09-12 09:48:37 +00:00
|
|
|
%if 0%{?fedora} >= 8
|
2007-08-28 14:45:28 +00:00
|
|
|
BuildRequires: python-setuptools-devel
|
2007-09-12 09:48:37 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: python-setuptools
|
|
|
|
%endif
|
2007-08-01 07:52:12 +00:00
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
iniparse is an INI parser for Python which is API compatible
|
|
|
|
with the standard library's ConfigParser, preserves structure of INI
|
|
|
|
files (order of sections & options, indentation, comments, and blank
|
|
|
|
lines are preserved when data is updated), and is more convenient to
|
|
|
|
use.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n iniparse-%{version}
|
2009-03-02 12:15:26 +00:00
|
|
|
%patch0
|
|
|
|
|
2007-08-01 07:52:12 +00:00
|
|
|
%build
|
|
|
|
%{__python} setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
|
|
|
# fixes
|
|
|
|
chmod 644 $RPM_BUILD_ROOT//usr/share/doc/iniparse-%{version}/index.html
|
|
|
|
mv $RPM_BUILD_ROOT/usr/share/doc/iniparse-%{version} $RPM_BUILD_ROOT/usr/share/doc/python-iniparse-%{version}
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2008-01-08 09:39:04 +00:00
|
|
|
%dir %{_docdir}/python-iniparse-%{version}
|
|
|
|
%doc %{_docdir}/python-iniparse-%{version}/*
|
2007-12-11 11:32:19 +00:00
|
|
|
%{python_sitelib}/*
|
2007-08-01 07:52:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2009-11-07 10:41:24 +00:00
|
|
|
* Sat Nov 7 2009 Tim Lauridsen <timlau@fedoraproject.org> - 0.3.1-1
|
|
|
|
- Release 0.3.1
|
|
|
|
- Fix empty-line handling bugs introduced in 0.3.0
|
|
|
|
|
2009-07-26 20:28:15 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-02 12:15:26 +00:00
|
|
|
* Mon Mar 2 2009 Tim Lauridsen <timlau@fedoraproject.org> - 0.3.0-2
|
|
|
|
- added patch from upstream to fix regrestion :
|
|
|
|
|
2009-02-28 11:06:51 +00:00
|
|
|
* Sat Feb 28 2009 Tim Lauridsen <timlau@fedoraproject.org> - 0.3.0-1
|
|
|
|
- Release 0.3.0
|
|
|
|
- Fix handling of continuation lines
|
|
|
|
- Fix DEFAULT handling
|
|
|
|
- Fix picking/unpickling
|
|
|
|
|
2009-02-26 21:48:06 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-07 06:55:38 +00:00
|
|
|
* Sun Dec 7 2008 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.4-1
|
|
|
|
- Release 0.2.4:
|
|
|
|
- Updated to work with Python-2.6 (Python-2.4 and 2.5 are still supported)
|
|
|
|
- Support for files opened in unicode mode
|
|
|
|
- Fixed Python-3.0 compatibility warnings
|
|
|
|
- Minor API cleanup
|
2008-11-29 04:40:43 +00:00
|
|
|
* Fri Nov 28 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.2.3-5
|
|
|
|
- Rebuild for Python 2.6
|
2008-01-08 09:39:04 +00:00
|
|
|
* Tue Jan 8 2008 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.3-4
|
|
|
|
- own the %%{_docdir}/python-iniparse-%{version} directory
|
2007-12-11 11:32:19 +00:00
|
|
|
* Tue Dec 11 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.3-3
|
|
|
|
- handle egg-info too
|
2007-12-11 10:53:42 +00:00
|
|
|
* Tue Dec 11 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.3-2
|
|
|
|
- removed patch source line
|
2007-12-11 10:44:56 +00:00
|
|
|
* Tue Dec 11 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.3-1
|
|
|
|
- Updates to release 0.2.3
|
|
|
|
- removed empty ini file patch, it is included in 0.2.3
|
2007-11-19 10:24:50 +00:00
|
|
|
* Mon Nov 19 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.2-2
|
|
|
|
- Added upstream patch to fix problems with empty ini files.
|
2007-09-25 06:32:39 +00:00
|
|
|
* Tue Sep 25 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.2-1
|
|
|
|
- Updated to release 0.2.2
|
|
|
|
- removed patch to to fix problems with out commented lines, included in upstream source
|
2007-09-12 09:48:37 +00:00
|
|
|
* Wed Sep 12 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.1-4
|
|
|
|
- Added some logic to get the right python-setuptools buildrequeres
|
|
|
|
- based on the fedora version, to make the same spec file useful in
|
|
|
|
- all fedora releases.
|
2007-09-10 10:38:07 +00:00
|
|
|
* Mon Sep 10 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.1-3
|
|
|
|
- Added patch from upstream svn to fix problems with out commented lines.
|
2007-08-28 14:45:28 +00:00
|
|
|
* Tue Aug 28 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2.1-2
|
|
|
|
- Changed BuildRequires python-setuptools to python-setuptools-devel
|
2007-08-11 11:18:51 +00:00
|
|
|
* Tue Aug 7 2007 Paramjit Oberoi <param@cs.wisc.edu> - 0.2.1-1
|
|
|
|
- Release 0.2.1
|
2007-08-01 07:52:12 +00:00
|
|
|
* Fri Jul 27 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2-3
|
|
|
|
- relocated doc to %{_docdir}/python-iniparse-%{version}
|
|
|
|
* Thu Jul 26 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2-2
|
|
|
|
- changed name from iniparse to python-iniparse
|
|
|
|
* Tue Jul 17 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.2-1
|
|
|
|
- Release 0.2
|
|
|
|
- Added html/* to %%doc
|
|
|
|
* Fri Jul 13 2007 Tim Lauridsen <timlau@fedoraproject.org> - 0.1-1
|
|
|
|
- Initial build.
|