Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f5ed7c551a | ||
|
|
ff2b24a26d | ||
|
|
1b6c77f4bf | ||
|
|
205af45f76 | ||
|
|
d80b82e4e5 |
5 changed files with 15 additions and 33 deletions
|
|
@ -1 +0,0 @@
|
||||||
lxml-1.0.3.tgz
|
|
||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
lxml-1.3.3.tgz
|
||||||
21
Makefile
21
Makefile
|
|
@ -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)
|
|
||||||
|
|
@ -1,11 +1,10 @@
|
||||||
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
%{!?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
|
%define srcname lxml
|
||||||
|
|
||||||
Name: python-%{srcname}
|
Name: python-%{srcname}
|
||||||
Version: 1.0.3
|
Version: 1.3.3
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: ElementTree-like Python bindings for libxml2 and libxslt
|
Summary: ElementTree-like Python bindings for libxml2 and libxslt
|
||||||
|
|
||||||
Group: Development/Libraries
|
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
|
# Upstream now includes the generated .c file and the Pyrex shipped
|
||||||
# with FC (0.9.3.1) is broken for gcc >= 4.0
|
# with FC (0.9.3.1) is broken for gcc >= 4.0
|
||||||
#BuildRequires: Pyrex >= 0.9.4
|
#BuildRequires: Pyrex >= 0.9.4
|
||||||
Requires: python-abi = %{python_version}
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
lxml provides a Python binding to the libxslt and libxml2 libraries. It
|
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
|
%prep
|
||||||
%setup -q -n %{srcname}-%{version}
|
%setup -q -n %{srcname}-%{version}
|
||||||
|
|
||||||
|
chmod a-x doc/rest2html.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
|
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
|
||||||
|
|
@ -48,14 +47,18 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc README.txt LICENSES.txt PKG-INFO CREDITS.txt CHANGES.txt doc/
|
%doc README.txt LICENSES.txt PKG-INFO CREDITS.txt CHANGES.txt doc/
|
||||||
%{python_sitearch}/lxml-%{version}-py%{python_version}.egg-info/
|
%{python_sitearch}/*
|
||||||
%dir %{python_sitearch}/lxml
|
|
||||||
%{python_sitearch}/lxml/*.so
|
|
||||||
%{python_sitearch}/lxml/*.py
|
|
||||||
%{python_sitearch}/lxml/*.pyc
|
|
||||||
%{python_sitearch}/lxml/*.pyo
|
|
||||||
|
|
||||||
%changelog
|
%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
|
* Sat Sep 16 2006 Shahms E. King <shahms@shahms.com> 1.0.3-2
|
||||||
- Rebuild for FC6
|
- Rebuild for FC6
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
5b01f595b28de9cb75cd2e31ebc37c53 lxml-1.0.3.tgz
|
2baa9f8ad14aa6dcfb763cfa0ce3bbcb lxml-1.3.3.tgz
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue