Python3 moved to devel:languages:python3

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyquery?expand=0&rev=12
This commit is contained in:
Sascha Peilicke 2013-06-17 12:53:16 +00:00 committed by Git OBS Bridge
parent 3911042471
commit 1ddde2a1d2
2 changed files with 0 additions and 122 deletions

View File

@ -1,66 +0,0 @@
-------------------------------------------------------------------
Tue Apr 30 12:34:43 UTC 2013 - dmueller@suse.com
- add buildroot
-------------------------------------------------------------------
Wed Apr 3 04:12:47 UTC 2013 - arun@gmx.de
- fixed build error: "ImportError: cannot import name sha512"
seems to be a missing dependency to python3 during build
-------------------------------------------------------------------
Tue Mar 26 00:59:46 UTC 2013 - arun@gmx.de
- added spec file and changelog for python3
-------------------------------------------------------------------
Tue Mar 26 00:51:38 UTC 2013 - arun@gmx.de
- updated copyright year in spec file
-------------------------------------------------------------------
Tue Mar 26 00:49:40 UTC 2013 - arun@gmx.de
- updated to 1.2.4
changes as listed on https://pypi.python.org/pypi/pyquery:
1.2.4
Moved to github. So a few files are renamed from .txt to .rst
Added .xhtml_to_html() and .remove_namespaces()
Use requests to fetch urls (if available)
Use restkit's proxy instead of Paste (which will die with py3)
Allow to open https urls
python2.5 is no longer supported (may work, but tests are broken)
1.2.3
Allow to pass this in .filter() callback
Add .contents() .items()
Add tox.ini
Bug fixes: fix #35 #55 #64 #66
1.2.2
Fix cssselectpatch to match the newer implementation of cssselect. Fixes issue #62, #52 and #59 (Haoyu Bai)
Fix issue #37 (Caleb Burns)
1.2.1
Allow to use a custom css translator.
Fix issue 44: case problem with xml documents
1.2
PyQuery now use cssselect. See issue 43.
Fix issue 40: forward .html() extra arguments to lxml.etree.tostring
-------------------------------------------------------------------
Tue Jan 31 10:54:06 UTC 2012 - saschpe@suse.de
- Simplified macro usage
- Buildrequire python-distribute instead of (outdated) setuptools
- Set license to SDPX style (BSD-3-Clause)
-------------------------------------------------------------------
Sun Oct 9 09:57:45 UTC 2011 - prusnak@opensuse.org
- updated to version 1.0
-------------------------------------------------------------------
Sat Mar 05 07:02:11 CET 2011 - pascal.bleser@opensuse.org
- initial version (0.7)

View File

@ -1,56 +0,0 @@
#
# spec file for package python3-pyquery
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python3-pyquery
Version: 1.2.4
Release: 0
Summary: A jQuery-like library for python
License: BSD-3-Clause
Group: Development/Languages/Python
Url: http://pypi.python.org/pypi/pyquery
Source: http://pypi.python.org/packages/source/p/pyquery/pyquery-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python3-2to3
BuildRequires: python3-devel
BuildRequires: python3-distribute
BuildRequires: python3-lxml
Requires: python3-lxml
BuildRequires: python3
Requires: python3
BuildArch: noarch
%description
Pyquery allows you to make jQuery queries on XML documents. The API is
as much as possible the similar to jQuery. Pyquery uses lxml for fast
XML and HTML manipulation.
%prep
%setup -q -n pyquery-%{version}
%build
python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root,-)
%doc CHANGES.rst README.rst
%{python3_sitelib}/*
%changelog