Compare commits

...
Sign in to create a new pull request.

5 commits

Author SHA1 Message Date
Fedora Release Engineering
f5ed7c551a dist-git conversion 2010-07-29 10:29:11 +00:00
Bill Nottingham
ff2b24a26d Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:52:57 +00:00
Jeffrey C. Ollie
1b6c77f4bf Update to 1.3.3 2007-07-31 11:37:53 +00:00
Jeffrey C. Ollie
205af45f76 Update to 1.1.2 2007-01-24 15:39:34 +00:00
Jeremy Katz
d80b82e4e5 Initialize branch FC-6 for python-lxml 2006-10-23 18:30:39 +00:00
5 changed files with 15 additions and 33 deletions

View file

@ -1 +0,0 @@
lxml-1.0.3.tgz

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
lxml-1.3.3.tgz

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,11 +1,10 @@
%{!?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.0.3
Release: 2%{?dist}
Version: 1.3.3
Release: 1%{?dist}
Summary: ElementTree-like Python bindings for libxml2 and libxslt
Group: Development/Libraries
@ -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
@ -31,6 +29,7 @@ and handles memory management automatically, unlike the default bindings.
%prep
%setup -q -n %{srcname}-%{version}
chmod a-x doc/rest2html.py
%build
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
@ -48,14 +47,18 @@ 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 <jeff@ocjtech.us> - 1.3.3-1
- Update to 1.3.3
* Fri Jan 19 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.2-1
- Update to 1.1.2
* Thu Dec 14 2006 Jason L Tibbitts III <tibbs@math.uh.edu> - 1.0.3-3
- Rebuild for new Python
* Sat Sep 16 2006 Shahms E. King <shahms@shahms.com> 1.0.3-2
- Rebuild for FC6

View file

@ -1 +1 @@
5b01f595b28de9cb75cd2e31ebc37c53 lxml-1.0.3.tgz
2baa9f8ad14aa6dcfb763cfa0ce3bbcb lxml-1.3.3.tgz