Accepting request 1154269 from Application:ERP:GNUHealth:Factory
python 311 for Leap 15.6 OBS-URL: https://build.opensuse.org/request/show/1154269 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnuhealth-thalamus?expand=0&rev=9
This commit is contained in:
commit
72d9661ce1
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 2 09:23:21 UTC 2024 - Axel Braun <axel.braun@gmx.de>
|
||||||
|
|
||||||
|
- limit python build to latest python version
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 22 10:11:10 UTC 2024 - Axel Braun <axel.braun@gmx.de>
|
||||||
|
|
||||||
|
- switch to wheel, enable %{?sle15_python_module_pythons}
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 8 12:34:35 UTC 2021 - Axel Braun <axel.braun@gmx.de>
|
Thu Apr 8 12:34:35 UTC 2021 - Axel Braun <axel.braun@gmx.de>
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gnuhealth-thalamus
|
# spec file for package gnuhealth-thalamus
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
# Copyright (c) 2017-2021 Dr. Axel Braun
|
# Copyright (c) 2017-2024 Dr. Axel Braun
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@ -17,7 +17,17 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%bcond_without test
|
%bcond_without test 1
|
||||||
|
|
||||||
|
%if 0%{?suse_version} >= 1550
|
||||||
|
%define pythons python3
|
||||||
|
%define mypython python3
|
||||||
|
%define mysitelib %python3_sitelib
|
||||||
|
%else
|
||||||
|
%{?sle15_python_module_pythons}
|
||||||
|
%define mypython %pythons
|
||||||
|
%define mysitelib %{expand:%%%{mypython}_sitelib}
|
||||||
|
%endif
|
||||||
|
|
||||||
%define modname thalamus
|
%define modname thalamus
|
||||||
Name: gnuhealth-%{modname}
|
Name: gnuhealth-%{modname}
|
||||||
@ -28,28 +38,36 @@ License: GPL-3.0-or-later
|
|||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: http://health.gnu.org
|
URL: http://health.gnu.org
|
||||||
Source: https://files.pythonhosted.org/packages/source/t/%{modname}/%{modname}-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/t/%{modname}/%{modname}-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module devel}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
|
BuildRequires: fdupes
|
||||||
BuildRequires: postgresql-server
|
BuildRequires: postgresql-server
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildRequires: python3-devel
|
|
||||||
BuildRequires: python3-setuptools
|
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
BuildRequires: python3-Flask
|
BuildRequires: %{python_module Flask-Cors}
|
||||||
BuildRequires: python3-Flask-HTTPAuth
|
BuildRequires: %{python_module Flask-HTTPAuth}
|
||||||
BuildRequires: python3-Flask-RESTful
|
BuildRequires: %{python_module Flask-RESTful}
|
||||||
BuildRequires: python3-Flask-WTF
|
BuildRequires: %{python_module Flask-WTF}
|
||||||
BuildRequires: python3-bcrypt
|
BuildRequires: %{python_module Flask}
|
||||||
BuildRequires: python3-psycopg2
|
BuildRequires: %{python_module bcrypt}
|
||||||
|
BuildRequires: %{python_module psycopg2}
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: fdupes
|
|
||||||
Requires: postgresql-server
|
Requires: %{python_module Flask-HTTPAuth}
|
||||||
Requires: python3-Flask
|
Requires: %{python_module Flask-RESTful}
|
||||||
Requires: python3-Flask-HTTPAuth
|
Requires: %{python_module Flask-WTF}
|
||||||
Requires: python3-Flask-RESTful
|
Requires: %{python_module Flask}
|
||||||
Requires: python3-Flask-WTF
|
Requires: %{python_module bcrypt}
|
||||||
Requires: python3-bcrypt
|
Requires: %{python_module psycopg2}
|
||||||
Requires: python3-psycopg2
|
# postgres may run on own cluster
|
||||||
|
Suggests: postgresql-server
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Thalamus: The GNU Health Federation Message and Authentication Server
|
Thalamus: The GNU Health Federation Message and Authentication Server
|
||||||
=====================================================================
|
=====================================================================
|
||||||
@ -71,19 +89,19 @@ Thalamus is part of the GNU Health project, but it is a self contained,
|
|||||||
independent server that can be used in different health related scenarios.
|
independent server that can be used in different health related scenarios.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{modname}-%{version}
|
%autosetup -n %{modname}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
python3 setup.py build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
python3 setup.py install --prefix="%{_prefix}" --root=%{buildroot}
|
%pyproject_install
|
||||||
%fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{mysitelib}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python3_sitelib}/*
|
%{mysitelib}/thalamus*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user