From b73ba2a7a6e6f528dde8af06198079b919d6405a Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 7 Nov 2008 04:10:22 +0000 Subject: [PATCH 1/6] Initialize branch F-10 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..dc32377 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-10 From f4ed42f0bdddcc7b703705aae7aac6b6cd5df3a0 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 18 Nov 2008 13:41:44 +0000 Subject: [PATCH 2/6] - 2.1.3 (2008-11-17) - Bugs fixed - - * Ref-count leaks when lxml enters a try-except statement while an - outside exception lives in sys.exc_*(). This was due to a problem - in Cython, not lxml itself. - * Parser Unicode decoding errors could get swallowed by other - exceptions. - * Name/import errors in some Python modules. - * Internal DTD subsets that did not specify a system or public ID - were not serialised and did not appear in the docinfo property - of ElementTrees. - * Fix a pre-Py3k warning when parsing from a gzip file in Py2.6. - * Test suite fixes for libxml2 2.7. - * Resolver.resolve_string() did not work for non-ASCII byte strings. - * Resolver.resolve_file() was broken. - * Overriding the parser encoding didn't work for many encodings. --- .cvsignore | 2 +- python-lxml.spec | 21 ++++++++++++++++++++- sources | 2 +- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 15972b5..43be006 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -lxml-2.1.2.tar.gz +lxml-2.1.3.tar.gz diff --git a/python-lxml.spec b/python-lxml.spec index fd197ce..b54750e 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.1.2 +Version: 2.1.3 Release: 1%{?dist} Summary: ElementTree-like Python bindings for libxml2 and libxslt @@ -49,6 +49,25 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Mon Nov 17 2008 Jeffrey C. Ollie - 2.1.3-1 +- 2.1.3 (2008-11-17) +- Bugs fixed +- +- * Ref-count leaks when lxml enters a try-except statement while an +- outside exception lives in sys.exc_*(). This was due to a problem +- in Cython, not lxml itself. +- * Parser Unicode decoding errors could get swallowed by other +- exceptions. +- * Name/import errors in some Python modules. +- * Internal DTD subsets that did not specify a system or public ID +- were not serialised and did not appear in the docinfo property +- of ElementTrees. +- * Fix a pre-Py3k warning when parsing from a gzip file in Py2.6. +- * Test suite fixes for libxml2 2.7. +- * Resolver.resolve_string() did not work for non-ASCII byte strings. +- * Resolver.resolve_file() was broken. +- * Overriding the parser encoding didn't work for many encodings. + * Fri Sep 5 2008 Jeffrey C. Ollie - 2.1.2-1 - 2.1.2 (2008-09-05) - Features added diff --git a/sources b/sources index 3ad8444..86016fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d957423bbd56de25ef636671e7245069 lxml-2.1.2.tar.gz +93a651178c1428e05cff8f058c336425 lxml-2.1.3.tar.gz From c24324406c241d4f7370c74d54c426dafb890de0 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Sat, 13 Dec 2008 01:45:08 +0000 Subject: [PATCH 3/6] - 2.1.4 (2008-12-12) - Bugs fixed - - * Crash when using an XPath evaluator in multiple threads. --- .cvsignore | 2 +- python-lxml.spec | 8 +++++++- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 43be006..8d7a820 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -lxml-2.1.3.tar.gz +lxml-2.1.4.tar.gz diff --git a/python-lxml.spec b/python-lxml.spec index b54750e..f475d96 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.1.3 +Version: 2.1.4 Release: 1%{?dist} Summary: ElementTree-like Python bindings for libxml2 and libxslt @@ -49,6 +49,12 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Fri Dec 12 2008 Jeffrey C. Ollie - 2.1.4-1 +- 2.1.4 (2008-12-12) +- Bugs fixed +- +- * Crash when using an XPath evaluator in multiple threads. + * Mon Nov 17 2008 Jeffrey C. Ollie - 2.1.3-1 - 2.1.3 (2008-11-17) - Bugs fixed diff --git a/sources b/sources index 86016fb..d348da7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -93a651178c1428e05cff8f058c336425 lxml-2.1.3.tar.gz +05f35b81955caf502584b685a5226417 lxml-2.1.4.tar.gz From 6a61b6770c0fedfaf6bc743efb2efbd8f0bf0817 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 6 Jan 2009 21:19:25 +0000 Subject: [PATCH 4/6] - 2.1.5 (2009-01-06) - Bugs fixed - - * Potential memory leak on exception handling. This was due to a - problem in Cython, not lxml itself. - * Failing import on systems that have an io module. --- .cvsignore | 2 +- python-lxml.spec | 10 +++++++++- sources | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 8d7a820..f3c3fc9 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -lxml-2.1.4.tar.gz +lxml-2.1.5.tar.gz diff --git a/python-lxml.spec b/python-lxml.spec index f475d96..76d9539 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.1.4 +Version: 2.1.5 Release: 1%{?dist} Summary: ElementTree-like Python bindings for libxml2 and libxslt @@ -49,6 +49,14 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Tue Jan 6 2009 Jeffrey C. Ollie - 2.1.5-1 +- 2.1.5 (2009-01-06) +- Bugs fixed +- +- * Potential memory leak on exception handling. This was due to a +- problem in Cython, not lxml itself. +- * Failing import on systems that have an io module. + * Fri Dec 12 2008 Jeffrey C. Ollie - 2.1.4-1 - 2.1.4 (2008-12-12) - Bugs fixed diff --git a/sources b/sources index d348da7..e96408e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -05f35b81955caf502584b685a5226417 lxml-2.1.4.tar.gz +22567ccc6ab8ec8c90c335c810cabe11 lxml-2.1.5.tar.gz From 78f688a5a11c04373aa324f17a05e6791c22768b Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:52:56 +0000 Subject: [PATCH 5/6] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2282443..af4fb17 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := python-lxml SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 1c3bf3329941ac85ae6039b9ffe0712765272ef1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 10:29:01 +0000 Subject: [PATCH 6/6] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index af4fb17..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: python-lxml -# $Id$ -NAME := python-lxml -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index dc32377..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-10