forked from pool/python-PyMySQL
4cf09389fc
- Implement single-spec version - update to 0.7.11 OBS-URL: https://build.opensuse.org/request/show/517105 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyMySQL?expand=0&rev=14
67 lines
2.2 KiB
RPMSpec
67 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package python-PyMySQL
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX 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/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-PyMySQL
|
|
Version: 0.7.11
|
|
Release: 0
|
|
Summary: Pure Python MySQL Driver
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/PyMySQL/PyMySQL/
|
|
Source: https://files.pythonhosted.org/packages/source/P/PyMySQL/PyMySQL-%{version}.tar.gz
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
This package contains a pure-Python MySQL client library. Documentation on the
|
|
MySQL client/server protocol can be found here:
|
|
http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol
|
|
|
|
The goal of pymysql is to be a drop-in replacement for MySQLdb and work on
|
|
CPython 2.3+, Jython, IronPython, PyPy and Python 3. We test for compatibility
|
|
by simply changing the import statements in the Django MySQL backend and running
|
|
its unit tests as well as running it against the MySQLdb and myconnpy unit tests.
|
|
|
|
%prep
|
|
%setup -q -n PyMySQL-%{version}
|
|
# remove unwanted shebang
|
|
sed -i '1 { /^#!/ d }' pymysql/tests/thirdparty/test_MySQLdb/*.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
#%%check
|
|
#NOTE(saschpe): Needs mysql server
|
|
|
|
%files %{python_files}
|
|
%defattr(-,root,root,-)
|
|
%doc CHANGELOG LICENSE README.rst
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|