forked from pool/python-cinemagoer
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cinemagoer?expand=0&rev=7
94 lines
3.4 KiB
RPMSpec
94 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package python-cinemagoer
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-cinemagoer
|
|
Version: 2023.5.1
|
|
Release: 0
|
|
Summary: Python package to access the IMDb's database
|
|
License: GPL-2.0-or-later
|
|
URL: https://cinemagoer.sourceforge.io/
|
|
Source: https://files.pythonhosted.org/packages/source/c/cinemagoer/cinemagoer-%{version}.tar.gz
|
|
Patch0: do_not_install_scripts.patch
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-SQLAlchemy
|
|
Requires: python-lxml
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
Provides: python-IMDbPY = %version-%release
|
|
Obsoletes: python-IMDbPY < %version-%release
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
cinemagoer is a Python package useful to retrieve and manage the data
|
|
of the IMDb movie database about movies, people, characters and companies.
|
|
|
|
cinemagoer can retrieve data from both the IMDb's web server and a local
|
|
copy of the whole database.
|
|
|
|
%prep
|
|
%autosetup -p1 -n cinemagoer-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
# Do not install python scripts under locale/, they are only used at build time
|
|
# for the translations
|
|
%python_expand rm %{buildroot}/%{$python_sitelib}/imdb/locale/*.py
|
|
%python_expand rm -rf %{buildroot}/%{$python_sitelib}/imdb/locale/__pycache__/
|
|
%python_expand rm %{buildroot}/%{$python_sitelib}/imdb/locale/*.po
|
|
%python_clone -a %{buildroot}%{_bindir}/imdbpy
|
|
|
|
%check
|
|
# The just about the entire testsuite wants network access
|
|
%pytest -k "test_series_full_cast_has_ids"
|
|
|
|
%post
|
|
%python_install_alternative imdbpy
|
|
|
|
%postun
|
|
%python_uninstall_alternative imdbpy
|
|
|
|
%files %{python_files}
|
|
%doc README.rst CHANGELOG.txt
|
|
%license LICENSE.txt
|
|
%python_alternative %{_bindir}/imdbpy
|
|
%{python_sitelib}/cinemagoer-%{version}.dist-info
|
|
%{python_sitelib}/imdb
|
|
%lang(ar) %{python_sitelib}/imdb/locale/ar/LC_MESSAGES/imdbpy.mo
|
|
%lang(bg) %{python_sitelib}/imdb/locale/bg/LC_MESSAGES/imdbpy.mo
|
|
%lang(de) %{python_sitelib}/imdb/locale/de/LC_MESSAGES/imdbpy.mo
|
|
%lang(en) %{python_sitelib}/imdb/locale/en/LC_MESSAGES/imdbpy.mo
|
|
%lang(es) %{python_sitelib}/imdb/locale/es/LC_MESSAGES/imdbpy.mo
|
|
%lang(fr) %{python_sitelib}/imdb/locale/fr/LC_MESSAGES/imdbpy.mo
|
|
%lang(it) %{python_sitelib}/imdb/locale/it/LC_MESSAGES/imdbpy.mo
|
|
%lang(pt_BR) %{python_sitelib}/imdb/locale/pt_BR/LC_MESSAGES/imdbpy.mo
|
|
%lang(sr) %{python_sitelib}/imdb/locale/sr/LC_MESSAGES/imdbpy.mo
|
|
%lang(tr) %{python_sitelib}/imdb/locale/tr/LC_MESSAGES/imdbpy.mo
|
|
|
|
%changelog
|