forked from pdfarranger/pdfarranger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdfarranger.spec
198 lines (146 loc) · 6.38 KB
/
pdfarranger.spec
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# If you change this file, please inform @dreua since I most likely have to
# apply these changes to the other pdfarranger spec files I maintain, too.
# Note for future-me: meld ~/fedora-scm/pdfarranger/*.spec ~/git/pdfarranger/*.spec
# These must come from the calling environment
%global repo %{getenv:GITHUB_REPOSITORY}
%global sha %{getenv:GITHUB_SHA}
%global shortcommit %(c=%{sha}; echo ${c:0:7})
%define build_timestamp %(date +"%%Y%%m%%d")
Name: pdfarranger
Version: 0
Release: %{build_timestamp}git%{shortcommit}%{?dist}
Summary: PDF file merging, rearranging, and splitting
License: GPLv3
URL: https://github.com/%{repo}
Source0: %{url}/archive/%{shortcommit}/%{name}-%{shortcommit}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-distutils-extra
BuildRequires: python3-wheel
BuildRequires: python3-pip
# For checks only
BuildRequires: libappstream-glib
BuildRequires: desktop-file-utils
Requires: python3-pikepdf >= 1.15.1
Recommends: python3-img2pdf >= 0.3.4
# These seem to be included in the default desktop install
Requires: python3-gobject
Requires: gtk3
Requires: python3-cairo
Requires: poppler-glib
Requires: python3-dateutil >= 2.4.0
%if 0%{?fedora} > 31
# replace pdfshuffler for Fedora 32+ since it is python2 only (#1738935)
Provides: pdfshuffler = %{version}-%{release}
# Current pdfshuffler is 0.6.0-17. I obsolete everything < 0.6.1 here
# because there might be new releases but they won't add python3 support.
Obsoletes: pdfshuffler < 0.6.1-1
%endif
# The repository changed to pdfarranger/pdfarranger but we leave the app_id
# for now.
%global app_id com.github.jeromerobert.pdfarranger
%global python3_wheelname %{name}-*-py3-none-any.whl
%description
PDF Arranger is a small python-gtk application, which helps the user to merge
or split pdf documents and rotate, crop and rearrange their pages using an
interactive and intuitive graphical interface. It is a frontend for pikepdf.
PDF Arranger is a fork of Konstantinos Poulios’s PDF-Shuffler.
%prep
%autosetup -n %{name}-%{sha}
# py3_build / py3_install do not work with this setup.py but building
# a wheel works just fine
%build
%py3_build_wheel
%install
%py3_install_wheel %{python3_wheelname}
%find_lang %{name}
%if 0%{?fedora} > 31
ln -s %{_bindir}/pdfarranger %{buildroot}%{_bindir}/pdfshuffler
%endif
%check
desktop-file-validate %{buildroot}/%{_datadir}/applications/%{app_id}.desktop
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml
%files -f %{name}.lang
%license COPYING
%doc README.md
%{python3_sitelib}/%{name}/
%{python3_sitelib}/%{name}-*.dist-info/
%{_mandir}/man*/*.*
%{_datadir}/icons/hicolor/*/apps/*
%{_metainfodir}/%{app_id}.metainfo.xml
%{_datadir}/applications/%{app_id}.desktop
%{_datadir}/%{name}/
%{_bindir}/pdfarranger
%if 0%{?fedora} > 31
%{_bindir}/pdfshuffler
%endif
%changelog
* Sat Dec 12 2020 David Auer <[email protected]> - 0-20201212git%{shortcommmit}.0.1
- Modified for pdfarranger-CI: Build given commit.
* Thu Mar 18 2021 David Auer <[email protected]> - 1.7.1-1
- Update to 1.7.1
- Update repository URL (was a redirection anyway)
* Tue Jan 26 2021 Fedora Release Engineering <[email protected]> - 1.7.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Sun Jan 24 2021 David Auer <[email protected]> - 1.7.0-2
- Add dependency: dateutil
* Sun Jan 24 2021 David Auer <[email protected]> - 1.7.0-1
- Update to 1.7.0
* Sat Aug 01 2020 David Auer <[email protected]> - 1.6.2-1
- Update to 1.6.2
* Tue Jul 28 2020 Fedora Release Engineering <[email protected]> - 1.6.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Thu Jul 16 2020 David Auer <[email protected]> - 1.6.0-2
- Recommend img2pdf
* Wed Jul 15 2020 David Auer <[email protected]> - 1.6.0-1
- Update to 1.6.0
- Require pikepdf >= 1.15.1 as suggested in Readme.
* Wed Jun 24 2020 David Auer <[email protected]> - 1.5.3-3
- Explicitly require python3-setuptools
* Tue May 26 2020 Miro Hrončok <[email protected]> - 1.5.3-2
- Rebuilt for Python 3.9
* Sun May 17 2020 David Auer <[email protected]> - 1.5.3-1
- Update to 1.5.3
* Mon Apr 20 2020 David Auer <[email protected]> - 1.5.1-1
- Update to 1.5.1 (#1823971)
- Fixes rhbz#1824017
* Wed Apr 15 2020 David Auer <[email protected]> - 1.5.0-1
- Update to 1.5.0 (#1823971)
* Tue Mar 17 2020 Fabian Affolter <[email protected]> - 1.4.2-1
- Update to new upstream version 1.4.2 (rhbz#1814032)
* Sun Feb 09 2020 Fedora Release Monitoring <[email protected]> - 1.4.1-1
- Update to 1.4.1 (#1800993)
* Sat Feb 01 2020 David Auer <[email protected]> - 1.4.0-1
- New version, see https://github.com/jeromerobert/pdfarranger/releases/tag/1.4.0
- Replace python3-PyPDF2 with python3-pikepdf
* Wed Jan 29 2020 Fedora Release Engineering <[email protected]> - 1.3.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Wed Sep 25 2019 David Auer <[email protected]> - 1.3.1-2
- replace pdfshuffler on f32+
* Sun Sep 22 2019 David Auer <[email protected]> - 1.3.1-1
- New version, see https://github.com/jeromerobert/pdfarranger/releases/tag/1.3.1
* Wed Sep 11 2019 David Auer <[email protected]> - 1.3.0-2
- Add missing dependency
- Remove unnecessary python_provide makro
* Sun Aug 11 2019 David Auer <[email protected]> - 1.3.0-1
- New version, see https://github.com/jeromerobert/pdfarranger/releases/tag/1.3.0
- Remove obsolete downstream fixes
* Tue Jun 11 2019 David Auer <[email protected]> - 1.2.1-8
- Better source URL
* Mon May 20 2019 David Auer <[email protected]> - 1.2.1-7
- Fix directory ownership
- Replace obsolete srcname by name
* Mon May 20 2019 David Auer <[email protected]> - 1.2.1-6
- Name changed from python-pdfarranger to pdfarranger
- Remove shebang in __main__.py
* Sat May 18 2019 David Auer <[email protected]> - 1.2.1-5
- Fix rpmlint errors and warnings
* Sat May 18 2019 David Auer <[email protected]> - 1.2.1-4
- Buiding with wheel to get lang and icons right
* Sat May 18 2019 David Auer <[email protected]> - 1.2.1-3
- Move Requires to the right location
* Sat May 18 2019 David Auer <[email protected]> - 1.2.1-2
- Add missing requires
* Sat May 18 2019 David Auer <[email protected]> - 1.2.1
- Packaging pdfarranger based on pdfshuffler's spec file and https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_example_python_spec_file