- Run the testsuite using pytest. OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:Apps/rednotebook?expand=0&rev=25
85 lines
2.5 KiB
RPMSpec
85 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package rednotebook
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define pythons python3
|
|
Name: rednotebook
|
|
Version: 2.39
|
|
Release: 0
|
|
Summary: Graphical diary and journal
|
|
# See note at the end of README: code is using some LGPL-3.0+ module, so the resulting work is GPL-3.0+.
|
|
License: GPL-3.0-or-later
|
|
Group: Productivity/Office/Other
|
|
URL: http://rednotebook.sourceforge.net/
|
|
Source: https://github.com/jendrikseipp/rednotebook/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: fdupes
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: python3-cairo-devel
|
|
BuildRequires: python3-gobject-devel
|
|
BuildRequires: python3-pip
|
|
BuildRequires: python3-pytest
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: python3-wheel
|
|
BuildRequires: update-desktop-files
|
|
Requires: python3-PyYAML
|
|
Requires: python3-gobject-Gdk
|
|
Recommends: %{name}-lang
|
|
Recommends: python3-chardet
|
|
Recommends: python3-pyenchant
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
RedNotebook is a graphical journal to keep track of notes and thoughts.
|
|
It includes a calendar navigation, customizable templates, export
|
|
functionality and word clouds. You can also format, tag and search your
|
|
entries.
|
|
|
|
%lang_package
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%find_lang %{name} %{?no_lang_C}
|
|
%suse_update_desktop_file %{name} Calendar
|
|
%fdupes %{buildroot}%{_datadir}
|
|
%fdupes %{buildroot}%{python3_sitelib}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc CHANGELOG.md README.md
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/icons/hicolor/*/apps/%{name}.svg
|
|
%{python3_sitelib}/%{name}/
|
|
%{python3_sitelib}/%{name}-%{version}.dist-info
|
|
%dir %{_datadir}/metainfo
|
|
%{_datadir}/metainfo/rednotebook.appdata.xml
|
|
|
|
%files lang -f %{name}.lang
|
|
|
|
%changelog
|