From 3f54d9f4b74de2011fa40d4006904f31444f7421 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 18 May 2007 09:06:32 +0000 Subject: [PATCH 1/6] Initialize branch F-7 for python-lxml --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..c48525c --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-7 From 7e56c2c10aec802f671a0834ca0ca0f22db958a6 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 31 Jul 2007 05:09:07 +0000 Subject: [PATCH 2/6] Update to 1.3.3 --- .cvsignore | 2 +- python-lxml.spec | 14 +++++--------- sources | 2 +- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/.cvsignore b/.cvsignore index f130c7d..531984d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -lxml-1.1.2.tgz +lxml-1.3.3.tgz diff --git a/python-lxml.spec b/python-lxml.spec index acb928e..9a95ed8 100644 --- a/python-lxml.spec +++ b/python-lxml.spec @@ -1,10 +1,9 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%{!?python_version: %define python_version %(%{__python} -c "import sys ; print sys.version[:3]")} %define srcname lxml Name: python-%{srcname} -Version: 1.1.2 +Version: 1.3.3 Release: 1%{?dist} Summary: ElementTree-like Python bindings for libxml2 and libxslt @@ -18,7 +17,6 @@ BuildRequires: python-devel libxslt-devel python-setuptools # Upstream now includes the generated .c file and the Pyrex shipped # with FC (0.9.3.1) is broken for gcc >= 4.0 #BuildRequires: Pyrex >= 0.9.4 -Requires: python-abi = %{python_version} %description lxml provides a Python binding to the libxslt and libxml2 libraries. It @@ -49,14 +47,12 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt LICENSES.txt PKG-INFO CREDITS.txt CHANGES.txt doc/ -%{python_sitearch}/lxml-%{version}-py%{python_version}.egg-info/ -%dir %{python_sitearch}/lxml -%{python_sitearch}/lxml/*.so -%{python_sitearch}/lxml/*.py -%{python_sitearch}/lxml/*.pyc -%{python_sitearch}/lxml/*.pyo +%{python_sitearch}/* %changelog +* Mon Jul 30 2007 Jeffrey C. Ollie - 1.3.3-1 +- Update to 1.3.3 + * Fri Jan 19 2007 Jeffrey C. Ollie - 1.1.2-1 - Update to 1.1.2 diff --git a/sources b/sources index 677d420..0346a9b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d18ecaacdecf7c9f02a6e9aecb16c720 lxml-1.1.2.tgz +2baa9f8ad14aa6dcfb763cfa0ce3bbcb lxml-1.3.3.tgz From 6681ed5ee7339b5dbffb923d1308dfcdd9ff44bc Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Sun, 16 Dec 2007 00:02:56 +0000 Subject: [PATCH 3/6] Update to 1.3.6 --- .cvsignore | 2 +- python-lxml.spec | 55 ++++++++++++++++++++++++++++-------------------- sources | 2 +- 3 files changed, 34 insertions(+), 25 deletions(-) diff --git a/.cvsignore b/.cvsignore index 531984d..52f7707 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -lxml-1.3.3.tgz +lxml-1.3.6.tgz diff --git a/python-lxml.spec b/python-lxml.spec index 9a95ed8..7cf1c2f 100644 --- a/python-lxml.spec +++ b/python-lxml.spec @@ -1,48 +1,42 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%define srcname lxml - -Name: python-%{srcname} -Version: 1.3.3 +Name: python-lxml +Version: 1.3.6 Release: 1%{?dist} Summary: ElementTree-like Python bindings for libxml2 and libxslt Group: Development/Libraries License: BSD URL: http://codespeak.net/lxml/ -Source0: http://codespeak.net/lxml/%{srcname}-%{version}.tgz +Source0: http://codespeak.net/lxml/lxml-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: python-devel libxslt-devel python-setuptools -# Upstream now includes the generated .c file and the Pyrex shipped -# with FC (0.9.3.1) is broken for gcc >= 4.0 -#BuildRequires: Pyrex >= 0.9.4 +BuildRequires: python-devel +BuildRequires: libxslt-devel +BuildRequires: python-setuptools-devel %description -lxml provides a Python binding to the libxslt and libxml2 libraries. It -follows the ElementTree API as much as possible in order to provide a more -Pythonic interface to libxml2 and libxslt than the default bindings. In -particular, lxml deals with Python Unicode strings rather than encoded UTF-8 -and handles memory management automatically, unlike the default bindings. - +lxml provides a Python binding to the libxslt and libxml2 libraries. +It follows the ElementTree API as much as possible in order to provide +a more Pythonic interface to libxml2 and libxslt than the default +bindings. In particular, lxml deals with Python Unicode strings +rather than encoded UTF-8 and handles memory management automatically, +unlike the default bindings. %prep -%setup -q -n %{srcname}-%{version} +%setup -q -n lxml-%{version} chmod a-x doc/rest2html.py %build -CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build - +CFLAGS="%{optflags}" %{__python} setup.py build %install -rm -rf $RPM_BUILD_ROOT -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT --single-version-externally-managed - +rm -rf %{buildroot} +%{__python} setup.py install --skip-build --root %{buildroot} %clean -rm -rf $RPM_BUILD_ROOT - +rm -rf %{buildroot} %files %defattr(-,root,root,-) @@ -50,6 +44,21 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Mon Nov 4 2007 Jeffrey C. Ollie - 1.3.6-1 +- Update to 1.3.6. + +* Mon Oct 22 2007 Jeffrey C. Ollie - 1.3.5-1 +- Update to 1.3.5. + +* Thu Aug 30 2007 Jeffrey C. Ollie - 1.3.4-1 +- Update to 1.3.4. + +* Wed Aug 29 2007 Fedora Release Engineering - 1.3.3-3 +- Rebuild for selinux ppc32 issue. + +* Tue Aug 28 2007 Jeffrey C. Ollie - 1.3.3-2 +- BR python-setuptools-devel + * Mon Jul 30 2007 Jeffrey C. Ollie - 1.3.3-1 - Update to 1.3.3 diff --git a/sources b/sources index 0346a9b..69fc08a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2baa9f8ad14aa6dcfb763cfa0ce3bbcb lxml-1.3.3.tgz +a66f3b9669ee4fd2f98b6be920ac583c lxml-1.3.6.tgz From ed8f3bf900d86952d518e725fa1c5d6771e9db79 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 4 Mar 2008 15:03:48 +0000 Subject: [PATCH 4/6] Update to 2.0.2 --- .cvsignore | 2 +- python-lxml.spec | 23 ++++++++++++++++++----- sources | 2 +- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/.cvsignore b/.cvsignore index 52f7707..2f446de 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -lxml-1.3.6.tgz +lxml-2.0.2.tgz diff --git a/python-lxml.spec b/python-lxml.spec index 7cf1c2f..fe07625 100644 --- a/python-lxml.spec +++ b/python-lxml.spec @@ -1,7 +1,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-lxml -Version: 1.3.6 +Version: 2.0.2 Release: 1%{?dist} Summary: ElementTree-like Python bindings for libxml2 and libxslt @@ -11,9 +11,13 @@ URL: http://codespeak.net/lxml/ Source0: http://codespeak.net/lxml/lxml-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: python-devel BuildRequires: libxslt-devel -BuildRequires: python-setuptools-devel + +%if 0%{?fedora} >= 8 +BuildRequires: python-setuptools-devel +%else +BuildRequires: python-setuptools +%endif %description lxml provides a Python binding to the libxslt and libxml2 libraries. @@ -29,11 +33,11 @@ unlike the default bindings. chmod a-x doc/rest2html.py %build -CFLAGS="%{optflags}" %{__python} setup.py build +CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build %install rm -rf %{buildroot} -%{__python} setup.py install --skip-build --root %{buildroot} +%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot} %clean rm -rf %{buildroot} @@ -44,6 +48,15 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Sat Feb 23 2008 Jeffrey C. Ollie - 2.0.2-1 +- Update to 2.0.2 + +* Tue Feb 19 2008 Jeffrey C. Ollie - 2.0.1-1 +- Update to 2.0.1 + +* Tue Feb 19 2008 Fedora Release Engineering - 1.3.6-2 +- Autorebuild for GCC 4.3 + * Mon Nov 4 2007 Jeffrey C. Ollie - 1.3.6-1 - Update to 1.3.6. diff --git a/sources b/sources index 69fc08a..7c8b04e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a66f3b9669ee4fd2f98b6be920ac583c lxml-1.3.6.tgz +ddfa5354726d4bb5de54a8685bdc87a2 lxml-2.0.2.tgz From 76f8aeb61915edfc61b82bfe8f808f47c16f7c27 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Thu, 27 Mar 2008 04:31:25 +0000 Subject: [PATCH 5/6] - Update to 2.0.3 --- .cvsignore | 2 +- python-lxml.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 2f446de..0db85f8 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -lxml-2.0.2.tgz +lxml-2.0.3.tgz diff --git a/python-lxml.spec b/python-lxml.spec index fe07625..b3616f4 100644 --- a/python-lxml.spec +++ b/python-lxml.spec @@ -1,7 +1,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-lxml -Version: 2.0.2 +Version: 2.0.3 Release: 1%{?dist} Summary: ElementTree-like Python bindings for libxml2 and libxslt @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Wed Mar 26 2008 Jeffrey C. Ollie - 2.0.3-1 +- Update to 2.0.3 + * Sat Feb 23 2008 Jeffrey C. Ollie - 2.0.2-1 - Update to 2.0.2 diff --git a/sources b/sources index 7c8b04e..bcbd2cf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ddfa5354726d4bb5de54a8685bdc87a2 lxml-2.0.2.tgz +cdef802a5543571c167140efaf788b69 lxml-2.0.3.tgz From 78e97768e8f5472e675cbbd4591c1d84e2e4ac5e Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Thu, 8 May 2008 18:11:16 +0000 Subject: [PATCH 6/6] - Update to 2.0.5 --- .cvsignore | 2 +- python-lxml.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 0db85f8..de4c023 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -lxml-2.0.3.tgz +lxml-2.0.5.tgz diff --git a/python-lxml.spec b/python-lxml.spec index b3616f4..b00df90 100644 --- a/python-lxml.spec +++ b/python-lxml.spec @@ -1,7 +1,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-lxml -Version: 2.0.3 +Version: 2.0.5 Release: 1%{?dist} Summary: ElementTree-like Python bindings for libxml2 and libxslt @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Thu May 8 2008 Jeffrey C. Ollie - 2.0.5-1 +- Update to 2.0.5 + * Wed Mar 26 2008 Jeffrey C. Ollie - 2.0.3-1 - Update to 2.0.3 diff --git a/sources b/sources index bcbd2cf..3e5806b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cdef802a5543571c167140efaf788b69 lxml-2.0.3.tgz +2cc8caf84c3b55353d5513c6d668c090 lxml-2.0.5.tgz