- update to 3.1.6:
* Updates:
- Detect external file modifications by checking the file's last modified time just prior to saving.
- Preserve the choices in the field format when switching between Choice and Combination field types.
* Bug Fixes:
- Fix a bug that prevented child type limits from being set back to all types.
- Preserve the modified status of the config dialog when switching between windows displaying different files.
- Fix problems occurring when the escape key is used to close various non-modal dialogs.
- Avoid a traceback error message when attempting to import a CSV file with a bad header row.
- Fix a bug using child count fields in live HTML exports.
OBS-URL: https://build.opensuse.org/request/show/1111901
OBS-URL: https://build.opensuse.org/package/show/editors/treeline?expand=0&rev=23
113 lines
3.6 KiB
RPMSpec
113 lines
3.6 KiB
RPMSpec
#
|
|
# spec file for package treeline
|
|
#
|
|
# Copyright (c) 2023 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/
|
|
#
|
|
|
|
|
|
Name: treeline
|
|
Version: 3.1.6
|
|
Release: 0
|
|
Summary: Versatile Tree-Style Outliner for Defining Custom Data Schemas
|
|
License: GPL-2.0-or-later
|
|
Group: Productivity/Office/Other
|
|
URL: https://treeline.bellz.org
|
|
Source0: https://github.com/doug-101/TreeLine/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
|
Source1: x-%{name}.desktop
|
|
Source2: x-%{name}-gz.desktop
|
|
Source3: x-treepad.desktop
|
|
BuildRequires: fdupes
|
|
BuildRequires: perl
|
|
BuildRequires: python3-devel
|
|
BuildRequires: update-desktop-files
|
|
Requires: python3-qt5
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
TreeLine is a versatile tool for working with all kinds of information
|
|
that fit into a tree-like structure.
|
|
|
|
It can be used to edit bookmark files, create mini-databases (for
|
|
example, for addresses, tasks, records, or CDs), outline documents, or
|
|
just collect ideas. It can also be used as a generic editor for XML
|
|
files.
|
|
|
|
The data schemas for any node in the data tree can be customized and
|
|
new types of nodes can be defined. The way data is presented on the
|
|
screen, exported to HTML, or printed can be defined with HTML-like
|
|
templates. Plug-ins can be written to load and save data from and to
|
|
custom file formats or external data sources and extend the
|
|
functionality of TreeLine.
|
|
|
|
TreeLine is written in Python and uses the PyQt bindings to the Qt
|
|
toolkit, which makes it very portable.
|
|
|
|
%prep
|
|
%setup -q -n TreeLine
|
|
for i in source/*.py; do
|
|
sed -i "s|#!%{_bindir}/env python|#!%{_bindir}/python|g" "$i"
|
|
done
|
|
|
|
find source/ -type f -name '*.py' | while read f; do
|
|
case $f in
|
|
*/treeline.py) continue;;
|
|
esac
|
|
perl -i -n -e 'print unless m,^#!, and 1..1' "$f"
|
|
done
|
|
|
|
%build
|
|
|
|
%install
|
|
python3 install.py -x \
|
|
-p "%{_prefix}" \
|
|
-i "%{_datadir}/%{name}/icons" \
|
|
-d "%{_docdir}/%{name}" \
|
|
-b %{buildroot}
|
|
|
|
python3 -c "import compileall; compileall.compile_dir('%{buildroot}%{_libexecdir}/treeline',2,ddir='%{_libexecdir}/treeline')"
|
|
|
|
%suse_update_desktop_file -i treeline Office ProjectManagement
|
|
|
|
install -d "%{buildroot}%{_datadir}/mimelnk/application"
|
|
install -m0644 \
|
|
"%{SOURCE1}" \
|
|
"%{SOURCE2}" \
|
|
"%{SOURCE3}" \
|
|
"%{buildroot}%{_datadir}/mimelnk/application/"
|
|
|
|
%fdupes -s "%{buildroot}%{_datadir}"
|
|
|
|
rm -f %{buildroot}%{_docdir}/%{name}/{INSTALL,LICENSE}
|
|
|
|
%files
|
|
%license doc/LICENSE
|
|
%dir %{_datadir}/icons/hicolor
|
|
%dir %{_datadir}/icons/hicolor/48x48
|
|
%dir %{_datadir}/icons/hicolor/48x48/apps
|
|
%dir %{_datadir}/icons/hicolor/scalable
|
|
%dir %{_datadir}/icons/hicolor/scalable/apps
|
|
%dir %{_datadir}/mimelnk
|
|
%dir %{_datadir}/mimelnk/application
|
|
%doc %{_docdir}/%{name}
|
|
%{_bindir}/treeline
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/icons/hicolor/48x48/apps/treeline-icon.png
|
|
%{_datadir}/icons/hicolor/scalable/apps/treeline-icon.svg
|
|
%{_datadir}/mimelnk/application/x-treeline-gz.desktop
|
|
%{_datadir}/mimelnk/application/x-treeline.desktop
|
|
%{_datadir}/mimelnk/application/x-treepad.desktop
|
|
%{_datadir}/treeline/
|
|
|
|
%changelog
|