Compare commits

...

6 Commits
rawhide ... f10

Author SHA1 Message Date
Fedora Release Engineering 1c3bf33299 dist-git conversion 2010-07-29 10:29:01 +00:00
Bill Nottingham 78f688a5a1 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:52:56 +00:00
Jeffrey C. Ollie 6a61b6770c - 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.
2009-01-06 21:19:25 +00:00
Jeffrey C. Ollie c24324406c - 2.1.4 (2008-12-12)
- Bugs fixed
-
- * Crash when using an XPath evaluator in multiple threads.
2008-12-13 01:45:08 +00:00
Jeffrey C. Ollie f4ed42f0bd - 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.
2008-11-18 13:41:44 +00:00
Jesse Keating b73ba2a7a6 Initialize branch F-10 for python-lxml 2008-11-07 04:10:22 +00:00
5 changed files with 36 additions and 24 deletions

View File

@ -1 +0,0 @@
lxml-2.1.2.tar.gz

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
lxml-2.1.5.tar.gz

View File

@ -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 $$/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)

View File

@ -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.5
Release: 1%{?dist}
Summary: ElementTree-like Python bindings for libxml2 and libxslt
@ -49,6 +49,39 @@ rm -rf %{buildroot}
%{python_sitearch}/*
%changelog
* Tue Jan 6 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 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 <jeff@ocjtech.us> - 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 <jeff@ocjtech.us> - 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 <jeff@ocjtech.us> - 2.1.2-1
- 2.1.2 (2008-09-05)
- Features added

View File

@ -1 +1 @@
d957423bbd56de25ef636671e7245069 lxml-2.1.2.tar.gz
22567ccc6ab8ec8c90c335c810cabe11 lxml-2.1.5.tar.gz