Accepting request 509611 from home:tbechtold:branches:devel:languages:python
- update to 0.2.3: * New command line option "--encoding" (by twang2218, pr317). * Support CONCURRENTLY keyword (issue322, by rowanseymour). * Fix some edge-cases when parsing invalid SQL statements. * Fix indentation of LIMIT (by romainr, issue320). * Fix parsing of INTO keyword (issue324). * Several improvements regarding encodings. * Add comma_first option: When splitting list "comma first" notation is used (issue141). * Fix parsing of incomplete AS (issue284, by vmuriart). * Fix parsing of Oracle names containing dollars (issue291). * Fix parsing of UNION ALL (issue294). * Fix grouping of identifiers containing typecasts (issue297). * Add Changelog to sdist again (issue302). * `is_whitespace` and `is_group` changed into properties - convert to singlespec OBS-URL: https://build.opensuse.org/request/show/509611 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sqlparse?expand=0&rev=9
This commit is contained in:
parent
5655d6c609
commit
e58a4f694d
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 12 05:40:09 UTC 2017 - tbechtold@suse.com
|
||||||
|
|
||||||
|
- update to 0.2.3:
|
||||||
|
* New command line option "--encoding" (by twang2218, pr317).
|
||||||
|
* Support CONCURRENTLY keyword (issue322, by rowanseymour).
|
||||||
|
* Fix some edge-cases when parsing invalid SQL statements.
|
||||||
|
* Fix indentation of LIMIT (by romainr, issue320).
|
||||||
|
* Fix parsing of INTO keyword (issue324).
|
||||||
|
* Several improvements regarding encodings.
|
||||||
|
* Add comma_first option: When splitting list "comma first" notation
|
||||||
|
is used (issue141).
|
||||||
|
* Fix parsing of incomplete AS (issue284, by vmuriart).
|
||||||
|
* Fix parsing of Oracle names containing dollars (issue291).
|
||||||
|
* Fix parsing of UNION ALL (issue294).
|
||||||
|
* Fix grouping of identifiers containing typecasts (issue297).
|
||||||
|
* Add Changelog to sdist again (issue302).
|
||||||
|
* `is_whitespace` and `is_group` changed into properties
|
||||||
|
- convert to singlespec
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 15 10:13:47 UTC 2016 - dmueller@suse.com
|
Tue Nov 15 10:13:47 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-sqlparse
|
# spec file for package python-sqlparse
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,26 +16,25 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-sqlparse
|
Name: python-sqlparse
|
||||||
Version: 0.2.1
|
Version: 0.2.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Non-validating SQL parser
|
Summary: Non-validating SQL parser
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: https://github.com/andialbrecht/sqlparse
|
Url: https://github.com/andialbrecht/sqlparse
|
||||||
Source: https://pypi.io/packages/source/s/sqlparse/sqlparse-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/s/sqlparse/sqlparse-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: python-devel
|
BuildRequires: %{python_module devel}
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: %{python_module pytest}
|
||||||
# Test requirements:
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: python-pytest
|
BuildRequires: python-rpm-macros
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
|
||||||
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
||||||
%else
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%endif
|
|
||||||
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
sqlparse is a non-validating SQL parser module. It provides support for
|
sqlparse is a non-validating SQL parser module. It provides support for
|
||||||
@ -45,21 +44,25 @@ parsing, splitting and formatting SQL statements.
|
|||||||
%setup -q -n sqlparse-%{version}
|
%setup -q -n sqlparse-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
python setup.py build
|
%python_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
%python_install
|
||||||
|
%python_clone -a %{buildroot}%{_bindir}/sqlformat
|
||||||
|
|
||||||
|
%post
|
||||||
|
%python_install_alternative sqlformat
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%python_uninstall_alternative sqlformat
|
||||||
|
|
||||||
%check
|
%check
|
||||||
py.test tests
|
%python_exec %{_bindir}/py.test tests
|
||||||
|
|
||||||
%files
|
%files %{python_files}
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc AUTHORS README.rst
|
%doc AUTHORS README.rst
|
||||||
%ghost %{_bindir}/sqlformat
|
%python_alternative %{_bindir}/sqlformat
|
||||||
%if 0%{?suse_version} >= 1230
|
|
||||||
%ghost %{_sysconfdir}/alternatives/sqlformat
|
|
||||||
%endif
|
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1c98a2bdffe67f1bb817b72a7ba4d38be592e0f07c5acea4adebcec12c4377d1
|
|
||||||
size 53463
|
|
3
sqlparse-0.2.3.tar.gz
Normal file
3
sqlparse-0.2.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:becd7cc7cebbdf311de8ceedfcf2bd2403297024418801947f8c953025beeff8
|
||||||
|
size 60742
|
Loading…
x
Reference in New Issue
Block a user