blob: 053d43655ede14667a8802840fd8313310be9ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
%global forgeurl https://github.com/cvfosammmm/Setzer
%global uuid org.cvfosammmm.Setzer
Name: setzer
Version: 0.2.8
Release: 1%{?dist}
Summary: LaTeX editor written in Python with Gtk
%forgemeta
License: GPLv3
URL: https://www.cvfosammmm.org/setzer/
Source0: %{forgesource}
BuildArch: noarch
BuildRequires: desktop-file-utils
BuildRequires: gettext
BuildRequires: libappstream-glib
BuildRequires: meson
BuildRequires: python3-devel
BuildRequires: gtk3-devel
BuildRequires: gtksourceview4-devel
BuildRequires: gspell-devel
BuildRequires: poppler-glib-devel
BuildRequires: python3-pyxdg
BuildRequires: python3-gobject
Requires: gtk3
Requires: gtksourceview4
Requires: gspell
Requires: hicolor-icon-theme
Requires: libpoppler-glib.so.8
Requires: python3-pyxdg
Requires: python3-gobject
Requires: texlive
Requires: texlive-synctex
# LaTeX engines
Requires: texlive-xetex
Recommends: latexmk
Recommends: texlive-pdftex
Recommends: texlive-luatex
%description
Write LaTeX documents with an easy to use yet full-featured editor.
- Buttons and shortcuts for many LaTeX elements and special characters.
- Document creation wizard.
- Dark mode.
- Helpful error messages in the build log.
- Looks great on the Gnome desktop.
- Good screen to content ratio.
- Arguably the best .pdf viewer of any LaTeX editor.
%prep
%forgeautosetup -p1
%build
# Removing unnecessary shebangs
find ./setzer -name "*.py" -type f -exec sed -i '1d' {} \;
%meson
%meson_build
%install
%meson_install
%find_lang %{name}
%check
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/%{uuid}.appdata.xml
desktop-file-validate %{buildroot}%{_datadir}/applications/%{uuid}.desktop
%files -f %{name}.lang
%license COPYING
%{_bindir}/%{name}
%{_datadir}/Setzer/
%{_datadir}/applications/%{uuid}.desktop
%{_datadir}/icons/hicolor/scalable/apps/%{uuid}.svg
%{_metainfodir}/%{uuid}.appdata.xml
%{_mandir}/man1/%{name}.1.*
%{python3_sitelib}/%{name}/
%changelog
* Sat May 30 2020 Lyes Saadi <fedora@lyes.eu> - 0.2.8-1
- Updating to 0.2.8
* Tue May 19 2020 Lyes Saadi <fedora@lyes.eu> - 0.2.6-1
- Updating to 0.2.6
* Tue May 05 2020 Lyes Saadi <fedora@lyes.eu> - 0.2.5-1
- Updating to 0.2.5
* Sat Apr 18 2020 Lyes Saadi <fedora@lyes.eu> - 0.2.3-3
- Removing shebangs and changing poppler-glib dependency
* Sat Apr 18 2020 Lyes Saadi <fedora@lyes.eu> - 0.2.3-2
- Adding synctex dependency
* Sat Apr 18 2020 Lyes Saadi <fedora@lyes.eu> - 0.2.3-1
- Initial package
|