7ae6e5
%global srcname Babel
7ae6e5
%global sum Library for internationalizing Python applications
7ae6e5
7ae6e5
# There is some bootstrapping involved when upgrading Python 3
7ae6e5
# First of all we need babel (this package) to use sphinx
7ae6e5
# And pytest is at this point not yet ready
7ae6e5
%bcond_without bootstrap
7ae6e5
7ae6e5
%bcond_with python2
7ae6e5
7ae6e5
Name:           babel
7ae6e5
Version:        2.7.0
7ae6e5
Release:        10%{?dist}
7ae6e5
Summary:        Tools for internationalizing Python applications
7ae6e5
7ae6e5
License:        BSD
7ae6e5
URL:            http://babel.pocoo.org/
7ae6e5
Source0:        https://files.pythonhosted.org/packages/source/B/%{srcname}/%{srcname}-%{version}.tar.gz
7ae6e5
7ae6e5
BuildArch:      noarch
7ae6e5
# Exclude i686 arch. Due to a modularity issue it's being added to the
7ae6e5
# x86_64 compose of CRB, but we don't want to ship it at all.
7ae6e5
# See: https://projects.engineering.redhat.com/browse/RCM-72605
7ae6e5
ExcludeArch:    i686
7ae6e5
7ae6e5
%if %{with python2}
7ae6e5
BuildRequires:  python2-devel
7ae6e5
BuildRequires:  python2-setuptools
7ae6e5
%if %{with python2_pytest}
7ae6e5
BuildRequires:  python2-pytz
7ae6e5
BuildRequires:  python2-pytest
7ae6e5
BuildRequires:  python2-freezegun
7ae6e5
%endif
7ae6e5
%endif
7ae6e5
BuildRequires:  python%{python3_pkgversion}-devel
7ae6e5
BuildRequires:  python%{python3_pkgversion}-setuptools
7ae6e5
BuildRequires:  python%{python3_pkgversion}-rpm-macros
7ae6e5
%if !%{with bootstrap}
7ae6e5
BuildRequires:  python%{python3_pkgversion}-pytz
7ae6e5
BuildRequires:  python%{python3_pkgversion}-pytest
7ae6e5
BuildRequires:  python%{python3_pkgversion}-freezegun
7ae6e5
%endif
7ae6e5
7ae6e5
# build the documentation
7ae6e5
BuildRequires:  make
7ae6e5
7ae6e5
%if !%{with bootstrap}
7ae6e5
BuildRequires:  python%{python3_pkgversion}-sphinx
7ae6e5
%endif
7ae6e5
7ae6e5
7ae6e5
%description
7ae6e5
Babel is composed of two major parts:
7ae6e5
7ae6e5
* tools to build and work with gettext message catalogs
7ae6e5
7ae6e5
* a Python interface to the CLDR (Common Locale Data Repository),
7ae6e5
  providing access to various locale display names, localized number
7ae6e5
  and date formatting, etc.
7ae6e5
7ae6e5
7ae6e5
%if %{with python2}
7ae6e5
%package -n python2-babel
7ae6e5
Summary:        %sum
7ae6e5
7ae6e5
Requires:       python2-setuptools
7ae6e5
Requires:       python2-pytz
7ae6e5
7ae6e5
%{?python_provide:%python_provide python2-babel}
7ae6e5
7ae6e5
%description -n python2-babel
7ae6e5
Babel is composed of two major parts:
7ae6e5
7ae6e5
* tools to build and work with gettext message catalogs
7ae6e5
7ae6e5
* a Python interface to the CLDR (Common Locale Data Repository),
7ae6e5
  providing access to various locale display names, localized number
7ae6e5
  and date formatting, etc.
7ae6e5
%endif
7ae6e5
7ae6e5
7ae6e5
%package -n python%{python3_pkgversion}-babel
7ae6e5
Summary:        %sum
7ae6e5
7ae6e5
Requires:       python%{python3_pkgversion}-setuptools
7ae6e5
Requires:       python%{python3_pkgversion}-pytz
7ae6e5
7ae6e5
%{?python_provide:%python_provide python%{python3_pkgversion}-babel}
7ae6e5
7ae6e5
%description -n python%{python3_pkgversion}-babel
7ae6e5
Babel is composed of two major parts:
7ae6e5
7ae6e5
* tools to build and work with gettext message catalogs
7ae6e5
7ae6e5
* a Python interface to the CLDR (Common Locale Data Repository),
7ae6e5
  providing access to various locale display names, localized number
7ae6e5
  and date formatting, etc.
7ae6e5
7ae6e5
%if !%{with bootstrap}
7ae6e5
%package doc
7ae6e5
Summary:        Documentation for Babel
7ae6e5
Provides:       python-babel-doc = %{version}-%{release}
7ae6e5
Provides:       python2-babel-doc = %{version}-%{release}
7ae6e5
Provides:       python3-babel-doc = %{version}-%{release}
7ae6e5
7ae6e5
%description doc
7ae6e5
Documentation for Babel
7ae6e5
%endif
7ae6e5
7ae6e5
%prep
7ae6e5
%autosetup -n %{srcname}-%{version}
7ae6e5
7ae6e5
%build
7ae6e5
%if %{with python2}
7ae6e5
%py2_build
7ae6e5
%endif
7ae6e5
%py3_build
7ae6e5
7ae6e5
BUILDDIR="$PWD/built-docs"
7ae6e5
rm -rf "$BUILDDIR"
7ae6e5
7ae6e5
%if !%{with bootstrap}
7ae6e5
pushd docs
7ae6e5
make \
7ae6e5
    SPHINXBUILD=sphinx-build-3 \
7ae6e5
    BUILDDIR="$BUILDDIR" \
7ae6e5
    html
7ae6e5
popd
7ae6e5
rm -f "$BUILDDIR/html/.buildinfo"
7ae6e5
%endif
7ae6e5
7ae6e5
%install
7ae6e5
%if %{with python2}
7ae6e5
%py2_install
7ae6e5
%endif
7ae6e5
%py3_install
7ae6e5
7ae6e5
mv %{buildroot}%{_bindir}/pybabel %{buildroot}%{_bindir}/pybabel-%{python3_version}
7ae6e5
7ae6e5
%check
7ae6e5
export TZ=America/New_York
7ae6e5
%if %{with python2} && %{with python2_pytest}
7ae6e5
%{__python2} -m pytest
7ae6e5
%endif
7ae6e5
%if !%{with bootstrap}
7ae6e5
%{__python3} -m pytest
7ae6e5
%endif
7ae6e5
7ae6e5
%if %{with python2}
7ae6e5
%files -n python2-babel
7ae6e5
%doc CHANGES AUTHORS
7ae6e5
%license LICENSE
7ae6e5
%{python2_sitelib}/Babel-%{version}-py*.egg-info
7ae6e5
%{python2_sitelib}/babel
7ae6e5
%endif
7ae6e5
7ae6e5
%files -n python%{python3_pkgversion}-babel
7ae6e5
%doc CHANGES AUTHORS
7ae6e5
%license LICENSE
7ae6e5
%{python3_sitelib}/Babel-%{version}-py*.egg-info
7ae6e5
%{python3_sitelib}/babel
7ae6e5
%{_bindir}/pybabel-%{python3_version}
7ae6e5
7ae6e5
%if !%{with bootstrap}
7ae6e5
%files doc
7ae6e5
%doc built-docs/html/*
7ae6e5
%endif
7ae6e5
7ae6e5
%changelog
7ae6e5
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 2.7.0-10
7ae6e5
- Exclude unsupported i686 arch
7ae6e5
7ae6e5
* Tue Dec 03 2019 Tomas Orsava <torsava@redhat.com> - 2.7.0-9
7ae6e5
- Rename the pybabel executable to pybabel-3.8 and move it to the
7ae6e5
  python38-babel package
7ae6e5
7ae6e5
* Wed Nov 20 2019 Lumír Balhar <lbalhar@redhat.com> - 2.7.0-8
7ae6e5
- Adjusted for Python 3.8 module in RHEL 8
7ae6e5
7ae6e5
* Thu Oct 31 2019 Nils Philippsen <nils@tiptoe.de> - 2.7.0-7
7ae6e5
- drop python2-babel only from F33 on as it is needed for trac (for the time
7ae6e5
  being, #1737930)
7ae6e5
7ae6e5
* Thu Oct 31 2019 Nils Philippsen <nils@tiptoe.de> - 2.7.0-6
7ae6e5
- drop python2-babel from F32 on
7ae6e5
7ae6e5
* Fri Sep 13 2019 Miro Hrončok <mhroncok@redhat.com> - 2.7.0-5
7ae6e5
- Reduce Python 2 build dependencies on Fedora 32
7ae6e5
7ae6e5
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 2.7.0-4
7ae6e5
- Rebuilt for Python 3.8
7ae6e5
7ae6e5
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 2.7.0-3
7ae6e5
- Bootstrap for Python 3.8
7ae6e5
7ae6e5
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.0-2
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
7ae6e5
7ae6e5
* Mon May 27 2019 Felix Schwarz <fschwarz@fedoraproject.org> - 2.7.0-1
7ae6e5
- update to upstream version 2.7.0
7ae6e5
7ae6e5
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-6
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
7ae6e5
7ae6e5
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-5
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
7ae6e5
7ae6e5
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 2.6.0-4
7ae6e5
- Rebuilt for Python 3.7
7ae6e5
7ae6e5
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 2.6.0-3
7ae6e5
- Rebuilt for Python 3.7
7ae6e5
7ae6e5
* Fri Jun 29 2018 Felix Schwarz <fschwarz@fedoraproject.org> - 2.6.0-2
7ae6e5
- add setting to build without Python 2 support
7ae6e5
7ae6e5
* Fri Jun 29 2018 Felix Schwarz <fschwarz@fedoraproject.org> - 2.6.0-1
7ae6e5
- update to upstream version 2.6.0
7ae6e5
7ae6e5
* Mon Jun 18 2018 Tomas Orsava <torsava@redhat.com> - 2.5.1-5
7ae6e5
- Run tests in pytest (as declared in BuildRequires)
7ae6e5
7ae6e5
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 2.5.1-4
7ae6e5
- Rebuilt for Python 3.7
7ae6e5
7ae6e5
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 2.5.1-3
7ae6e5
- Bootstrap for Python 3.7
7ae6e5
7ae6e5
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-2
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
7ae6e5
7ae6e5
* Fri Dec 15 2017 Felix Schwarz <fschwarz@fedoraproject.org> - 2.5.1-1
7ae6e5
- update to upstream version 2.5.1
7ae6e5
7ae6e5
* Fri Dec 15 2017 Iryna Shcherbina <ishcherb@redhat.com> - 2.3.4-7
7ae6e5
- Update Python 2 dependency declarations to new packaging standards
7ae6e5
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
7ae6e5
7ae6e5
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.4-6
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
7ae6e5
7ae6e5
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.4-5
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7ae6e5
7ae6e5
* Tue Dec 13 2016 Miro Hrončok <mhroncok@redhat.com> - 2.3.4-4
7ae6e5
- Finish bootstrapping for Python 3.6
7ae6e5
7ae6e5
* Tue Dec 13 2016 Miro Hrončok <mhroncok@redhat.com> - 2.3.4-3
7ae6e5
- Rebuild for Python 3.6
7ae6e5
- Add "bootstrap" conditions
7ae6e5
7ae6e5
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-2
7ae6e5
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
7ae6e5
7ae6e5
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
7ae6e5
- fix source URL
7ae6e5
7ae6e5
* Mon Apr 25 2016 Nils Philippsen <nils@redhat.com> - 2.3.4-1
7ae6e5
- version 2.3.4
7ae6e5
- always build Python3 subpackages
7ae6e5
- remove obsolete packaging constructs
7ae6e5
- update to current Python packaging guidelines
7ae6e5
- build docs non-destructively
7ae6e5
- tag license file as %%license
7ae6e5
- use %%python_provide macro only if present
7ae6e5
- update remove-pytz-version patch
7ae6e5
- fix build dependencies
7ae6e5
- set TZ in %%check
7ae6e5
7ae6e5
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-12
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
7ae6e5
7ae6e5
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-11
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
7ae6e5
7ae6e5
* Fri Nov  6 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3-10
7ae6e5
- Also make sure that the babel package that has pybabel depends on the correct
7ae6e5
  packages (python2 packages on F23 or less and python3 packages on F24 and
7ae6e5
  greater.)
7ae6e5
7ae6e5
* Wed Nov  4 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3-9
7ae6e5
- Install the python3 version of pybabel on Fedora 24+ to match with Fedora's
7ae6e5
  default python version
7ae6e5
7ae6e5
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-8
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
7ae6e5
7ae6e5
* Wed Dec 17 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3-7
7ae6e5
- Remove pytz version requirement in egginfo as it confuses newer setuptools
7ae6e5
7ae6e5
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3-6
7ae6e5
- Change python-setuptools-devel BR into python-setuptools
7ae6e5
7ae6e5
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-5
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
7ae6e5
7ae6e5
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 1.3-4
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
7ae6e5
7ae6e5
* Wed Apr 02 2014 Nils Philippsen <nils@redhat.com> - 1.3-3
7ae6e5
- fix dependencies (#1083470)
7ae6e5
7ae6e5
* Sun Oct 06 2013 Felix Schwarz <fschwarz@fedoraproject.org> - 1.3-2
7ae6e5
- enable python3 subpackage
7ae6e5
7ae6e5
* Wed Oct 02 2013 Felix Schwarz <fschwarz@fedoraproject.org> - 1.3-1
7ae6e5
- update to Babel 1.3
7ae6e5
- disabled %%check as it tries to download the CLDR
7ae6e5
7ae6e5
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-9
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
7ae6e5
7ae6e5
* Wed Jun 26 2013 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.9.6-8
7ae6e5
- split documentation off to a separate subpackage
7ae6e5
7ae6e5
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-7
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
7ae6e5
7ae6e5
* Thu Oct 18 2012 Nils Philippsen <nils@redhat.com> - 0.9.6-6
7ae6e5
- run tests in %%check
7ae6e5
- add pytz build requirement for tests
7ae6e5
7ae6e5
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 0.9.6-5
7ae6e5
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
7ae6e5
7ae6e5
* Wed Aug 01 2012 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 0.9.6-4
7ae6e5
- disable building of non-functional python3 subpackage (#761583)
7ae6e5
7ae6e5
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-3
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7ae6e5
7ae6e5
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-2
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
7ae6e5
7ae6e5
* Tue Jun 07 2011 Nils Philippsen <nils@redhat.com> - 0.9.6-1
7ae6e5
- version 0.9.6:
7ae6e5
  * Backport r493-494: documentation typo fixes.
7ae6e5
  * Make the CLDR import script work with Python 2.7.
7ae6e5
  * Fix various typos.
7ae6e5
  * Fixed Python 2.3 compatibility (ticket #146, #233).
7ae6e5
  * Sort output of list-locales.
7ae6e5
  * Make the POT-Creation-Date of the catalog being updated equal to
7ae6e5
    POT-Creation-Date of the template used to update (ticket #148).
7ae6e5
  * Use a more explicit error message if no option or argument (command) is
7ae6e5
    passed to pybabel (ticket #81).
7ae6e5
  * Keep the PO-Revision-Date if it is not the default value (ticket #148).
7ae6e5
  * Make --no-wrap work by reworking --width's default and mimic xgettext's
7ae6e5
    behaviour of always wrapping comments (ticket #145).
7ae6e5
  * Fixed negative offset handling of Catalog._set_mime_headers (ticket #165).
7ae6e5
  * Add --project and --version options for commandline (ticket #173).
7ae6e5
  * Add a __ne__() method to the Local class.
7ae6e5
  * Explicitly sort instead of using sorted() and don't assume ordering
7ae6e5
    (Python 2.3 and Jython compatibility).
7ae6e5
  * Removed ValueError raising for string formatting message checkers if the
7ae6e5
    string does not contain any string formattings (ticket #150).
7ae6e5
  * Fix Serbian plural forms (ticket #213).
7ae6e5
  * Small speed improvement in format_date() (ticket #216).
7ae6e5
  * Fix number formatting for locales where CLDR specifies alt or draft
7ae6e5
    items (ticket #217)
7ae6e5
  * Fix bad check in format_time (ticket #257, reported with patch and tests by
7ae6e5
    jomae)
7ae6e5
  * Fix so frontend.CommandLineInterface.run does not accumulate logging
7ae6e5
    handlers (#227, reported with initial patch by dfraser)
7ae6e5
  * Fix exception if environment contains an invalid locale setting (#200)
7ae6e5
- install python2 rather than python3 executable (#710880)
7ae6e5
7ae6e5
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.5-4
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
7ae6e5
7ae6e5
* Thu Aug 26 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.9.5-3
7ae6e5
- Add python3 subpackage
7ae6e5
7ae6e5
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.9.5-2
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
7ae6e5
7ae6e5
* Wed Apr  7 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.9.5-1
7ae6e5
- This release contains a small number of bugfixes over the 0.9.4
7ae6e5
- release.
7ae6e5
-
7ae6e5
- What's New:
7ae6e5
- -----------
7ae6e5
- * Fixed the case where messages containing square brackets would break
7ae6e5
-  with an unpack error
7ae6e5
- * Fuzzy matching regarding plurals should *NOT* be checked against
7ae6e5
-  len(message.id) because this is always 2, instead, it's should be
7ae6e5
-  checked against catalog.num_plurals (ticket #212).
7ae6e5
7ae6e5
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-5
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
7ae6e5
7ae6e5
* Sat Mar 28 2009 Robert Scheck <robert@fedoraproject.org> - 0.9.4-4
7ae6e5
- Added missing requires to python-setuptools for pkg_resources
7ae6e5
7ae6e5
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-3
7ae6e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
7ae6e5
7ae6e5
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.9.4-2
7ae6e5
- Rebuild for Python 2.6
7ae6e5
7ae6e5
* Mon Aug 25 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.9.4-1
7ae6e5
- Update to 0.9.4
7ae6e5
7ae6e5
* Thu Jul 10 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.9.3-1
7ae6e5
- Update to 0.9.3
7ae6e5
7ae6e5
* Sun Dec 16 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.9.1-1
7ae6e5
- Update to 0.9.1
7ae6e5
7ae6e5
* Tue Aug 28 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.9-2
7ae6e5
- BR python-setuptools-devel
7ae6e5
7ae6e5
* Mon Aug 27 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.9-1
7ae6e5
- Update to 0.9
7ae6e5
7ae6e5
* Mon Jul  2 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.8.1-1
7ae6e5
- Update to 0.8.1
7ae6e5
- Remove upstreamed patch.
7ae6e5
7ae6e5
* Fri Jun 29 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.8-3
7ae6e5
- Replace patch with one that actually applies.
7ae6e5
7ae6e5
* Fri Jun 29 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.8-2
7ae6e5
- Apply upstream patch to rename command line script to "pybabel" - BZ#246208
7ae6e5
7ae6e5
* Thu Jun 21 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.8-1
7ae6e5
- First version for Fedora
7ae6e5