forked from pool/mygnuhealth
97 lines
3.0 KiB
RPMSpec
97 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package mygnuhealth
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
# Copyright (c) 2020-2021 Dr. Axel Braun
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
%define modname MyGNUHealth
|
|
%define majorver 1
|
|
|
|
#boo#1181905
|
|
%global __requires_exclude qmlimport\\((BloodPressure|FedLogin|GHBio|GHBol|GHPsycho|Glucose|LocalAccountManager|MoodEnergy|NetworkSettings|Osat|ProfileSettings|Weight|PoL|GHLifestyle|GHPhysicalActivity|GHNutrition|GHSleep|GHAbout)
|
|
|
|
Name: mygnuhealth
|
|
Version: %{majorver}.0rc2
|
|
Release: 0
|
|
Summary: The personal health record for the GNU Health system
|
|
License: GPL-3.0-only
|
|
Group: Productivity/Office/Management
|
|
URL: http://health.gnu.org/
|
|
Source: https://files.pythonhosted.org/packages/source/M/%{modname}/%{modname}-%{version}.tar.gz
|
|
Patch0: shebang.diff
|
|
BuildRequires: fdupes
|
|
BuildRequires: python3-pyside2 >= 5.15
|
|
BuildRequires: python3-matplotlib
|
|
BuildRequires: python3-tinydb
|
|
BuildRequires: python3-bcrypt
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: update-desktop-files
|
|
Requires: kirigami2
|
|
Requires: python3-pyside2 >= 5.15
|
|
Requires: python3-matplotlib
|
|
Requires: python3-requests
|
|
Requires: python3-tinydb
|
|
Requires: python3-bcrypt
|
|
|
|
%description
|
|
The Personal Health Information Management System for Desktop and Mobile Devices
|
|
for the GNU Health ecosystem
|
|
|
|
%package -n %{name}-doc
|
|
Summary: Documentation files for MyGNUHealth
|
|
Group: Productivity/Office/Management
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}-doc
|
|
This package includes the documentation for MyGNUHealth Personal Health
|
|
Information Management System for Desktop and Mobile Devices
|
|
|
|
%prep
|
|
%setup -q -n %{modname}-%{version}
|
|
%patch0 -p1
|
|
|
|
%build
|
|
%python3_build
|
|
|
|
%install
|
|
%python3_install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
# menu-entry
|
|
desktop-file-install --dir %{buildroot}%{_datadir}/applications org.kde.mygnuhealth.desktop
|
|
%suse_update_desktop_file org.kde.mygnuhealth
|
|
|
|
%python_expand %fdupes %{buildroot}%{python3_sitelib}
|
|
|
|
%post
|
|
#clean qml cache to avoid issues
|
|
rm -rf /home/*/.cache/mygnuhealth
|
|
|
|
%postun
|
|
#clean qml cache - housekeeping
|
|
rm -rf /home/*/.cache/mygnuhealth
|
|
|
|
%files
|
|
%attr(755,root,root) %{_bindir}/%{name}
|
|
%{_datadir}/applications/org.kde.mygnuhealth.desktop
|
|
%{_datadir}/icons/*
|
|
%{_datadir}/metainfo/*
|
|
%license COPYRIGHT LICENSE
|
|
%{python3_sitelib}/*
|
|
|
|
%files -n %{name}-doc
|
|
%doc README.rst doc/*
|
|
|
|
%changelog
|