2012-08-03 16:37:21 +00:00
|
|
|
%if 0%{?fedora} > 12
|
2010-04-23 17:22:52 +00:00
|
|
|
%global with_python3 1
|
2010-08-25 15:56:53 +00:00
|
|
|
%else
|
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())")}
|
|
|
|
%endif
|
2010-04-23 15:25:43 +00:00
|
|
|
|
2011-09-13 16:40:09 +00:00
|
|
|
%if 0%{?rhel} == 5
|
2011-06-24 14:18:29 +00:00
|
|
|
%global with_python26 1
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if 0%{?with_python26}
|
|
|
|
%global __python26 %{_bindir}/python2.6
|
|
|
|
%global py26dir %{_builddir}/python26-%{name}-%{version}-%{release}
|
2011-09-13 00:43:19 +00:00
|
|
|
%{!?python26_sitelib: %global python26_sitelib %(%{__python26} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())")}
|
2011-09-13 16:40:09 +00:00
|
|
|
# Update rpm byte compilation script so that we get the modules compiled by the
|
|
|
|
# correct inerpreter
|
|
|
|
%global __os_install_post %__multiple_python_os_install_post
|
2011-06-24 14:18:29 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2010-05-12 16:41:17 +00:00
|
|
|
%global upstream_name Pygments
|
2007-07-21 23:14:09 +00:00
|
|
|
|
|
|
|
Name: python-pygments
|
2016-03-04 14:36:04 +00:00
|
|
|
Version: 2.1.3
|
2017-02-11 10:06:04 +00:00
|
|
|
Release: 4%{?dist}
|
2011-09-13 00:43:19 +00:00
|
|
|
Summary: Syntax highlighting engine written in Python
|
2007-07-21 23:14:09 +00:00
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: BSD
|
|
|
|
URL: http://pygments.org/
|
2010-05-12 16:41:17 +00:00
|
|
|
Source0: http://pypi.python.org/packages/source/P/%{upstream_name}/%{upstream_name}-%{version}.tar.gz
|
2007-07-21 23:14:09 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildArch: noarch
|
2015-08-24 14:04:23 +00:00
|
|
|
BuildRequires: python2-devel >= 2.4, python-setuptools, python-nose, python-sphinx
|
2010-04-23 15:25:43 +00:00
|
|
|
%if 0%{?with_python3}
|
2015-10-12 11:58:43 +00:00
|
|
|
BuildRequires: python3-devel, python3-setuptools
|
2011-09-13 00:43:19 +00:00
|
|
|
%if 0%{?fedora} >= 15
|
|
|
|
BuildRequires: python3-nose
|
|
|
|
%endif
|
2010-04-23 15:25:43 +00:00
|
|
|
%endif # if with_python3
|
2016-12-12 20:25:17 +00:00
|
|
|
Requires: python-setuptools
|
2011-06-24 14:18:29 +00:00
|
|
|
%if 0%{?with_python26}
|
|
|
|
BuildRequires: python26-devel, python26-distribute
|
|
|
|
%endif
|
2010-05-12 16:41:17 +00:00
|
|
|
|
2007-07-21 23:14:09 +00:00
|
|
|
|
|
|
|
%description
|
2010-05-12 16:41:17 +00:00
|
|
|
Pygments is a generic syntax highlighter for general use in all kinds
|
|
|
|
of software such as forum systems, wikis or other applications that
|
|
|
|
need to prettify source code. Highlights are:
|
|
|
|
|
|
|
|
* a wide range of common languages and markup formats is supported
|
|
|
|
* special attention is paid to details that increase highlighting
|
|
|
|
quality
|
|
|
|
* support for new languages and formats are added easily; most
|
|
|
|
languages use a simple regex-based lexing mechanism
|
|
|
|
* a number of output formats is available, among them HTML, RTF,
|
|
|
|
LaTeX and ANSI sequences
|
|
|
|
* it is usable as a command-line tool and as a library
|
|
|
|
* ... and it highlights even Brainf*ck!
|
2007-07-21 23:14:09 +00:00
|
|
|
|
2010-04-23 15:25:43 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-pygments
|
2011-09-13 00:43:19 +00:00
|
|
|
Summary: Syntax highlighting engine written in Python 3
|
2010-04-23 15:25:43 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: python3-setuptools
|
|
|
|
|
|
|
|
%description -n python3-pygments
|
2010-05-12 16:41:17 +00:00
|
|
|
Pygments is a generic syntax highlighter for general use in all kinds
|
|
|
|
of software such as forum systems, wikis or other applications that
|
|
|
|
need to prettify source code. Highlights are:
|
|
|
|
|
|
|
|
* a wide range of common languages and markup formats is supported
|
|
|
|
* special attention is paid to details that increase highlighting
|
|
|
|
quality
|
|
|
|
* support for new languages and formats are added easily; most
|
|
|
|
languages use a simple regex-based lexing mechanism
|
|
|
|
* a number of output formats is available, among them HTML, RTF,
|
|
|
|
LaTeX and ANSI sequences
|
|
|
|
* it is usable as a command-line tool and as a library
|
|
|
|
* ... and it highlights even Brainf*ck!
|
2010-04-23 15:25:43 +00:00
|
|
|
%endif # if with_python3
|
|
|
|
|
2011-06-24 14:18:29 +00:00
|
|
|
%if 0%{?with_python26}
|
|
|
|
%package -n python26-pygments
|
|
|
|
Summary: A syntax highlighting engine written in Python 2.6
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: python26-distribute
|
2011-09-13 00:43:19 +00:00
|
|
|
Requires: python26-imaging
|
|
|
|
Requires: python(abi) = 2.6
|
2011-06-24 14:18:29 +00:00
|
|
|
|
|
|
|
%description -n python26-pygments
|
|
|
|
Pygments is a generic syntax highlighter for general use in all kinds
|
|
|
|
of software such as forum systems, wikis or other applications that
|
|
|
|
need to prettify source code. Highlights are:
|
|
|
|
%endif #end of python2.6
|
|
|
|
|
2007-07-21 23:14:09 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n Pygments-%{version}
|
|
|
|
|
2010-04-23 15:25:43 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
rm -rf %{py3dir}
|
|
|
|
cp -a . %{py3dir}
|
|
|
|
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
|
|
|
|
%endif # with_python3
|
2007-07-21 23:14:09 +00:00
|
|
|
|
2011-06-24 14:18:29 +00:00
|
|
|
%if 0%{?with_python26}
|
|
|
|
rm -rf %{py26dir}
|
|
|
|
cp -a . %{py26dir}
|
|
|
|
find %{py26dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python26}|'
|
|
|
|
%endif # with_python26
|
|
|
|
|
2010-05-12 16:41:17 +00:00
|
|
|
|
2007-07-21 23:14:09 +00:00
|
|
|
%build
|
|
|
|
%{__python} setup.py build
|
2007-08-17 20:46:41 +00:00
|
|
|
%{__sed} -i 's/\r//' LICENSE
|
2007-07-21 23:14:09 +00:00
|
|
|
|
2010-04-23 15:25:43 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py build
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
2007-07-21 23:14:09 +00:00
|
|
|
|
2011-06-24 14:18:29 +00:00
|
|
|
%if 0%{?with_python26}
|
|
|
|
pushd %{py26dir}
|
|
|
|
%{__python26} setup.py build
|
|
|
|
popd
|
|
|
|
%endif # with_python26
|
|
|
|
|
2010-05-12 16:41:17 +00:00
|
|
|
|
2007-07-21 23:14:09 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2010-04-23 15:25:43 +00:00
|
|
|
|
|
|
|
# Run the Python 3 build first so that the Python 2 version of
|
|
|
|
# /usr/bin/pygmentize "wins":
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
|
|
|
|
2011-06-24 14:18:29 +00:00
|
|
|
# Run the Python 2.6 build first so that the Python 2 version of
|
|
|
|
# /usr/bin/pygmentize "wins":
|
|
|
|
%if 0%{?with_python26}
|
|
|
|
pushd %{py26dir}
|
|
|
|
%{__python26} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
2015-08-24 13:56:58 +00:00
|
|
|
%{__python26} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
2011-06-24 14:18:29 +00:00
|
|
|
popd
|
|
|
|
%endif # with_python26
|
|
|
|
|
2007-07-21 23:14:09 +00:00
|
|
|
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
2015-08-24 13:56:58 +00:00
|
|
|
%{__python} setup.py build_sphinx
|
|
|
|
pushd doc
|
2010-05-12 16:41:17 +00:00
|
|
|
install -d %{buildroot}%{_mandir}/man1
|
|
|
|
mv pygmentize.1 $RPM_BUILD_ROOT%{_mandir}/man1/pygmentize.1
|
|
|
|
popd
|
2015-08-24 13:56:58 +00:00
|
|
|
cp -r doc/docs doc/reST
|
2007-07-21 23:14:09 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
2010-05-12 16:41:17 +00:00
|
|
|
%check
|
2016-12-12 20:25:17 +00:00
|
|
|
make test || :
|
2010-05-12 16:41:17 +00:00
|
|
|
|
2011-09-13 16:40:09 +00:00
|
|
|
%if 0%{?with_python26}
|
|
|
|
pushd %{py26dir}
|
|
|
|
# There's currently no python26-nose
|
|
|
|
#make test
|
|
|
|
popd
|
|
|
|
%endif # with_python26
|
|
|
|
|
|
|
|
# python3-nose is available from f15 on
|
2010-05-12 16:41:17 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
2011-09-13 16:40:09 +00:00
|
|
|
%if 0%{?fedora} >= 15
|
2016-12-12 20:25:17 +00:00
|
|
|
make test || :
|
2011-09-13 16:40:09 +00:00
|
|
|
%endif
|
2010-05-12 16:41:17 +00:00
|
|
|
popd
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
|
2007-07-21 23:14:09 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2015-08-24 13:56:58 +00:00
|
|
|
%doc AUTHORS CHANGES build/sphinx/html doc/reST LICENSE TODO
|
2007-07-21 23:14:09 +00:00
|
|
|
# For noarch packages: sitelib
|
|
|
|
%{python_sitelib}/*
|
|
|
|
%{_bindir}/pygmentize
|
|
|
|
%lang(en) %{_mandir}/man1/pygmentize.1.gz
|
|
|
|
|
2010-04-23 15:25:43 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-pygments
|
|
|
|
%defattr(-,root,root,-)
|
2015-08-24 13:56:58 +00:00
|
|
|
%doc AUTHORS CHANGES build/sphinx/html doc/reST LICENSE TODO
|
2010-04-23 15:25:43 +00:00
|
|
|
%{python3_sitelib}/*
|
|
|
|
%endif # with_python3
|
2007-07-21 23:14:09 +00:00
|
|
|
|
2011-06-24 14:18:29 +00:00
|
|
|
%if 0%{?with_python26}
|
|
|
|
%files -n python26-pygments
|
|
|
|
%defattr(-,root,root,-)
|
2015-08-24 13:56:58 +00:00
|
|
|
%doc AUTHORS CHANGES doc/ LICENSE TODO
|
2011-06-24 14:18:29 +00:00
|
|
|
%{python26_sitelib}/*
|
|
|
|
%endif # with_python26
|
|
|
|
|
2010-05-12 16:41:17 +00:00
|
|
|
|
2007-07-21 23:14:09 +00:00
|
|
|
%changelog
|
2017-02-11 10:06:04 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-12 20:25:17 +00:00
|
|
|
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.1.3-3
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
- Don't make rpmbuild fail on failed tests for now
|
|
|
|
|
2016-07-19 11:10:06 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.3-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-03-04 14:36:04 +00:00
|
|
|
* Fri Mar 4 2016 Steve Milner <smilner@redhat.com> - 2.1.3-1
|
|
|
|
- Update for upstream release.
|
|
|
|
|
2016-02-04 20:36:53 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-12 12:17:58 +00:00
|
|
|
* Thu Nov 12 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-10-29 14:39:45 +00:00
|
|
|
* Thu Oct 29 2015 Steve Milner <smilner@redhat.com> - 2.0.2-3
|
|
|
|
- Backport patch to fix font manager shell injection for BZ#1276321
|
|
|
|
|
2015-10-12 11:58:43 +00:00
|
|
|
* Mon Oct 12 2015 Robert Kuska <rkuska@redhat.com> - 2.0.2-2
|
|
|
|
- Rebuilt for Python3.5 rebuild
|
2015-10-12 11:59:32 +00:00
|
|
|
- Also remove python3-sphinx from BR as docs are built only with python2-sphinx
|
2015-10-12 11:58:43 +00:00
|
|
|
|
2015-08-24 13:56:58 +00:00
|
|
|
* Mon Aug 24 2015 Steve Milner <smilner@redhat.com> - 2.0.2-1
|
|
|
|
- update for upstream release.
|
2015-08-24 14:04:23 +00:00
|
|
|
- Added python-pygments/python3-pygments to BuildRequires.
|
2015-08-24 13:56:58 +00:00
|
|
|
|
2015-06-18 20:25:41 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-06-07 22:23:49 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-10 03:10:30 +00:00
|
|
|
* Sat May 10 2014 Orion Poplawski <orion@cora.nwra.com> - 1.6-2
|
|
|
|
- Rebuild for Python 3.4
|
|
|
|
|
2013-11-26 13:53:18 +00:00
|
|
|
* Tue Nov 26 2013 Steve Milner <smilner@fedoraproject.org> - 1.6-1
|
|
|
|
- update for upstream release.
|
|
|
|
|
2013-08-04 09:17:32 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 20:11:26 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-05 00:47:26 +00:00
|
|
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 1.4-7
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
|
2012-08-03 16:37:21 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 1.4-6
|
|
|
|
- remove rhel logic from with_python3 conditional
|
|
|
|
|
2012-07-21 07:58:53 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-14 02:02:02 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-09-13 16:40:09 +00:00
|
|
|
* Tue Sep 13 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-3
|
|
|
|
- Really enable the python3 unittests.
|
|
|
|
- Fix python26 byte compilation (thanks to Jeffrey Ness)
|
|
|
|
|
2011-09-13 00:43:19 +00:00
|
|
|
* Sat Sep 10 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-2
|
|
|
|
- Fix python main package having dependencies for the python2.6 subpackage
|
|
|
|
- Fix places that used the default python instead of python26
|
|
|
|
- Attempt to make byte compilation more robust in case we add python3 to EPEL5
|
|
|
|
- Run unittests on python3 in F15+
|
|
|
|
|
2011-06-24 14:18:29 +00:00
|
|
|
* Fri Jun 24 2011 Steve Milner <smilner@fedoraproject.org> - 1.4-1
|
|
|
|
- update for upstream release
|
|
|
|
- Add python2.6 support done by Steve Traylen <steve.traylen@cern.ch>. BZ#662755.
|
|
|
|
|
2011-02-09 05:58:54 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-08-25 15:56:53 +00:00
|
|
|
* Wed Aug 25 2010 Thomas Spura <tomspur@fedoraproject.org> - 1.3.1-7
|
|
|
|
- update to most recent python guidelines
|
|
|
|
- rebuild with python3.2
|
|
|
|
http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
|
|
|
|
|
2010-07-22 05:10:36 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.3.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-05-12 16:41:17 +00:00
|
|
|
* Thu May 6 2010 Gareth Armstrong <gareth.armstrong@hp.com> - 1.3.1-5
|
|
|
|
- Enforce that Pygments requires Python 2.4 or later via an explicit BR
|
|
|
|
- Minor tweaks to spec file
|
|
|
|
- Deliver html and reST doc files to specifically named directories
|
|
|
|
- Align description with that of http://pygments.org/
|
|
|
|
- Add %%check section for Python2 and add BR on python-nose
|
|
|
|
|
2010-04-23 17:22:52 +00:00
|
|
|
* Fri Apr 23 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.1-4
|
|
|
|
- switched with_python3 back to 1
|
|
|
|
|
2010-04-23 15:25:43 +00:00
|
|
|
* Fri Apr 23 2010 David Malcolm <dmalcolm@redhat.com> - 1.3.1-3
|
|
|
|
- add python3 subpackage (BZ#537244), ignoring soft-dep on imaging for now
|
|
|
|
|
2015-08-24 13:56:58 +00:00
|
|
|
* Tue Apr 13 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.1-2
|
2010-04-13 14:04:16 +00:00
|
|
|
- added python-imaging as a dependency per BZ#581663.
|
|
|
|
|
2010-03-06 23:59:33 +00:00
|
|
|
* Sat Mar 6 2010 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.3.1-1
|
|
|
|
- Updated for release.
|
|
|
|
|
2009-09-29 22:49:11 +00:00
|
|
|
* Tue Sep 29 2009 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.1.1-1
|
|
|
|
- Updated for release.
|
|
|
|
|
2009-07-26 20:56:10 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-26 23:09:48 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-22 01:59:24 +00:00
|
|
|
* Sun Dec 21 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.0-3
|
|
|
|
- Updated for release.
|
|
|
|
|
2008-11-29 15:52:20 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0-2
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2015-08-24 13:56:58 +00:00
|
|
|
* Thu Nov 27 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 1.0-1
|
2008-11-28 03:18:51 +00:00
|
|
|
- Updated for upstream 1.0.
|
|
|
|
|
2008-09-14 22:55:59 +00:00
|
|
|
* Sun Sep 14 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 0.11.1-1
|
|
|
|
- Updated for upstream 0.11.
|
|
|
|
|
2008-07-22 01:39:28 +00:00
|
|
|
* Mon Jul 21 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 0.10-1
|
|
|
|
- Updated for upstream 0.10.
|
|
|
|
|
2007-11-29 13:57:09 +00:00
|
|
|
* Thu Nov 29 2007 Steve 'Ashcrow' Milner <me@stevemilner.org> - 0.9-2
|
|
|
|
- Added python-setuptools as a Requires per bz#403601.
|
|
|
|
|
2007-11-13 00:23:16 +00:00
|
|
|
* Mon Nov 12 2007 Steve 'Ashcrow' Milner <me@stevemilner.org> - 0.9-1
|
|
|
|
- Updated for upstream 0.9.
|
|
|
|
|
2015-08-24 13:56:58 +00:00
|
|
|
* Fri Aug 17 2007 Steve 'Ashcrow' Milner <me@stevemilner.org> - 0.8.1-2
|
2007-08-17 20:46:41 +00:00
|
|
|
- Removed the dos2unix build dependency.
|
2007-11-13 00:23:16 +00:00
|
|
|
|
2007-07-21 23:14:09 +00:00
|
|
|
* Thu Jun 28 2007 Steve 'Ashcrow' Milner <me@stevemilner.org> - 0.8.1-1
|
|
|
|
- Initial packaging for Fedora.
|