forked from pool/python-lxml
		
	This commit is contained in:
		
							
								
								
									
										23
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,23 @@ | ||||
| ## Default LFS | ||||
| *.7z filter=lfs diff=lfs merge=lfs -text | ||||
| *.bsp filter=lfs diff=lfs merge=lfs -text | ||||
| *.bz2 filter=lfs diff=lfs merge=lfs -text | ||||
| *.gem filter=lfs diff=lfs merge=lfs -text | ||||
| *.gz filter=lfs diff=lfs merge=lfs -text | ||||
| *.jar filter=lfs diff=lfs merge=lfs -text | ||||
| *.lz filter=lfs diff=lfs merge=lfs -text | ||||
| *.lzma filter=lfs diff=lfs merge=lfs -text | ||||
| *.obscpio filter=lfs diff=lfs merge=lfs -text | ||||
| *.oxt filter=lfs diff=lfs merge=lfs -text | ||||
| *.pdf filter=lfs diff=lfs merge=lfs -text | ||||
| *.png filter=lfs diff=lfs merge=lfs -text | ||||
| *.rpm filter=lfs diff=lfs merge=lfs -text | ||||
| *.tbz filter=lfs diff=lfs merge=lfs -text | ||||
| *.tbz2 filter=lfs diff=lfs merge=lfs -text | ||||
| *.tgz filter=lfs diff=lfs merge=lfs -text | ||||
| *.ttf filter=lfs diff=lfs merge=lfs -text | ||||
| *.txz filter=lfs diff=lfs merge=lfs -text | ||||
| *.whl filter=lfs diff=lfs merge=lfs -text | ||||
| *.xz filter=lfs diff=lfs merge=lfs -text | ||||
| *.zip filter=lfs diff=lfs merge=lfs -text | ||||
| *.zst filter=lfs diff=lfs merge=lfs -text | ||||
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| .osc | ||||
							
								
								
									
										3
									
								
								lxml-1.0.2.tar.bz2
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								lxml-1.0.2.tar.bz2
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | ||||
| version https://git-lfs.github.com/spec/v1 | ||||
| oid sha256:d5fc88aca7111aa6097fe295de493cf9b5810a138032993c2c356d275899a0ef | ||||
| size 283267 | ||||
							
								
								
									
										4
									
								
								python-lxml.changes
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								python-lxml.changes
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| ------------------------------------------------------------------- | ||||
| Fri Dec  1 11:12:37 CET 2006 - toms@suse.de | ||||
|  | ||||
| - New package 1.1.2 moved from openSUSE build server | ||||
							
								
								
									
										64
									
								
								python-lxml.spec
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										64
									
								
								python-lxml.spec
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,64 @@ | ||||
| # | ||||
| # spec file for package python-lxml (Version 1.0.2) | ||||
| # | ||||
| # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. | ||||
| # This file and all modifications and additions to the pristine | ||||
| # package are under the same license as the package itself. | ||||
| # | ||||
| # Please submit bugfixes or comments via http://bugs.opensuse.org/ | ||||
| # | ||||
|  | ||||
|  | ||||
| Name:           python-lxml | ||||
| %define modname lxml | ||||
| URL:            http://codespeak.net/lxml | ||||
| Summary:        A Pythonic binding for the libxml2 and libxslt libraries | ||||
| Version:        1.0.2 | ||||
| Release:        1 | ||||
| License:        BSD License and BSD-like | ||||
| Group:          Development/Libraries/Python | ||||
| Source:         %{modname}-%{version}.tar.bz2 | ||||
| BuildRoot:      %{_tmppath}/%{name}-%{version}-build | ||||
| %{py_requires} | ||||
| Requires:       pyxml | ||||
| BuildRequires:  libxml2-devel libxslt-devel pyrex python-devel pyxml | ||||
|  | ||||
| %description | ||||
| lxml is a Pythonic binding for the libxml2 and libxslt libraries. It | ||||
| follows the ElementTree API as much as possible, building it on top of | ||||
| the native libxml2 tree. It also extends this API to expose libxml2 and | ||||
| libxslt specific functionality, such as XPath, Relax NG, XML Schema, | ||||
| XSLT, and c14n. | ||||
|  | ||||
| Authors: Martijn Faassen <faassen@infrae.com> | ||||
|  | ||||
|  | ||||
|  | ||||
| Authors: | ||||
| -------- | ||||
|     Stefan Behnel - main developer and maintainer | ||||
|     Martijn Faassen - creator of lxml and initial main developer | ||||
|     and others | ||||
|  | ||||
| %prep | ||||
| %setup -q -n %{modname}-%{version} | ||||
|  | ||||
| %build | ||||
| export CFLAGS="$RPM_OPT_FLAGS" | ||||
| python setup.py build | ||||
|  | ||||
| %install | ||||
| rm -rf %{buildroot} | ||||
| python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES | ||||
|  | ||||
| %clean | ||||
| rm -rf %{buildroot} | ||||
|  | ||||
| %files -f INSTALLED_FILES | ||||
| %defattr(-,root,root) | ||||
| %doc doc CHANGES.txt CREDITS.txt LICENSES.txt README.txt TODO.txt | ||||
| %{py_sitedir}/lxml | ||||
|  | ||||
| %changelog -n python-lxml | ||||
| * Fri Dec 01 2006 - toms@suse.de | ||||
| - New package 1.1.2 moved from openSUSE build server | ||||
		Reference in New Issue
	
	Block a user