OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sqlalchemy-migrate?expand=0&rev=afd378dbb38b42b4347fcbba2866112b
114 lines
3.9 KiB
RPMSpec
114 lines
3.9 KiB
RPMSpec
#
|
|
# spec file for package python-sqlalchemy-migrate
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
# Copyright 2011 LISA GmbH, Bingen, 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-sqlalchemy-migrate
|
|
Version: 0.11.0
|
|
Release: 0
|
|
Summary: Database schema migration for SQLAlchemy
|
|
License: MIT
|
|
Group: Development/Libraries/Python
|
|
Url: http://pypi.python.org/pypi/sqlalchemy-migrate
|
|
Source: https://pypi.io/packages/source/s/sqlalchemy-migrate/sqlalchemy-migrate-%{version}.tar.gz
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pbr}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
# Documentation requirements:
|
|
BuildRequires: python3-SQLAlchemy >= 0.7.8
|
|
BuildRequires: python3-Sphinx >= 1.1.2
|
|
# Test requirements:
|
|
#BuildRequires: python-ScriptTest >= 1.0
|
|
BuildRequires: %{python_module Tempita >= 0.4}
|
|
BuildRequires: %{python_module decorator}
|
|
Requires: python-SQLAlchemy >= 0.7.8
|
|
Requires: python-Tempita >= 0.4
|
|
Requires: python-decorator
|
|
Requires: python-six >= 1.7.0
|
|
Requires: python-sqlparse
|
|
Requires(post): update-alternatives
|
|
Requires(preun): update-alternatives
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
Inspired by Ruby on Rails' migrations, Migrate provides a way to deal with
|
|
database schema changes in SQLAlchemy projects.
|
|
|
|
Migrate extends SQLAlchemy to have database changeset handling. It provides a
|
|
database change repository mechanism which can be used from the command line as
|
|
well as from inside python code.
|
|
|
|
%package -n python-sqlalchemy-migrate-doc
|
|
Summary: Documentation for %{name}
|
|
Group: Documentation/Other
|
|
Provides: %{python_module sqlalchemy-migrate-doc = %{version}}
|
|
|
|
%description -n python-sqlalchemy-migrate-doc
|
|
Inspired by Ruby on Rails' migrations, Migrate provides a way to deal with
|
|
database schema changes in SQLAlchemy projects.
|
|
|
|
Migrate extends SQLAlchemy to have database changeset handling. It provides a
|
|
database change repository mechanism which can be used from the command line as
|
|
well as from inside python code.
|
|
|
|
This package contains the documentation.
|
|
|
|
%prep
|
|
%setup -q -n sqlalchemy-migrate-%{version}
|
|
find . -type f -name "*.py" -o -name "*.py_tmpl" | xargs sed -i "/#!/d" # Remove shebang from non-executable scripts
|
|
sed -i "s/, 'sphinxcontrib.issuetracker'//g" doc/source/conf.py # No internet access please
|
|
|
|
%build
|
|
%python_build
|
|
python3 setup.py build_sphinx && rm doc/build/html/.buildinfo # Build HTML documentation
|
|
|
|
%install
|
|
%python_install
|
|
%fdupes %{buildroot}%{python_sitelib}
|
|
%python_clone -a %{buildroot}%{_bindir}/migrate
|
|
%python_clone -a %{buildroot}%{_bindir}/migrate-repository
|
|
|
|
#NOTE(saschpe): enable tests later, there are one or two upstream issues
|
|
#%%check
|
|
#python setup.py test
|
|
|
|
%post
|
|
%python_install_alternative migrate
|
|
%python_install_alternative migrate-repository
|
|
|
|
%postun
|
|
%python_uninstall_alternative migrate
|
|
%python_uninstall_alternative migrate-repository
|
|
|
|
%files %{python_files}
|
|
%defattr(-,root,root)
|
|
%doc COPYING README.rst
|
|
%python_alternative %{_bindir}/migrate
|
|
%python_alternative %{_bindir}/migrate-repository
|
|
%{python_sitelib}/migrate
|
|
%{python_sitelib}/sqlalchemy_migrate-*
|
|
|
|
%files -n python-sqlalchemy-migrate-doc
|
|
%doc COPYING doc/build/html
|
|
|
|
%changelog
|