source: projects/specs/trunk/p/pinentry/pinentry-vl.spec @ 12331

Revision 12331, 12.9 KB checked in by tomop, 4 years ago (diff)

updated 10 packages

fuse-2.9.9-1

gmp-6.2.0-1

gnupg2-2.2.19-1

libassuan-2.5.3-2

libgcrypt-1.8.5-1

libgpg-error-1.37-1

libksba-1.3.5-2

npth-1.6-1

pinentry-1.1.0-2

strongswan-5.8.2-1

Line 
1
2Name:    pinentry
3Version: 1.1.0
4Release: 2%{?_dist_release}
5Summary: Collection of simple PIN or passphrase entry dialogs
6
7Vendor: Project Vine
8Distribution: Vine Linux
9
10# qt & qt4 subpackage have different license, see subpackage definitions
11License: GPLv2+
12URL:     http://www.gnupg.org/aegypten/
13Source0: https://gnupg.org/ftp/gcrypt/pinentry/pinentry-%{version}.tar.bz2
14Source1: https://gnupg.org/ftp/gcrypt/pinentry/pinentry-%{version}.tar.bz2.sig
15
16# borrowed from opensuse
17Source10: pinentry-wrapper
18
19BuildRequires: gcr-devel
20BuildRequires: gtk2-devel
21BuildRequires: libcap-devel
22BuildRequires: ncurses-devel
23BuildRequires: libgpg-error-devel
24BuildRequires: libassuan-devel
25BuildRequires: libsecret-devel
26BuildRequires: pkgconfig(Qt5Core) pkgconfig(Qt5Gui) pkgconfig(Qt5Widgets)
27
28Requires(pre): %{_sbindir}/update-alternatives
29Requires(post): /sbin/install-info
30Requires(preun): /sbin/install-info
31
32Provides: %{name}-curses = %{version}-%{release}
33
34%description
35Pinentry is a collection of simple PIN or passphrase entry dialogs which
36utilize the Assuan protocol as described by the aegypten project; see
37http://www.gnupg.org/aegypten/ for details.
38This package contains the curses (text) based version of the PIN entry dialog.
39
40%package gnome3
41Summary: Passphrase/PIN entry dialog for GNOME 3
42Requires: %{name} = %{version}-%{release}
43Provides: %{name}-gui = %{version}-%{release}
44%description gnome3
45Pinentry is a collection of simple PIN or passphrase entry dialogs which
46utilize the Assuan protocol as described by the aegypten project; see
47http://www.gnupg.org/aegypten/ for details.
48This package contains the GNOME 3 version of the PIN entry dialog.
49
50%package gtk
51Summary: Passphrase/PIN entry dialog based on GTK+
52Requires: %{name} = %{version}-%{release}
53Provides: %{name}-gui = %{version}-%{release}
54Provides: pinentry-gtk2 = %{version}-%{release}
55%description gtk
56Pinentry is a collection of simple PIN or passphrase entry dialogs which
57utilize the Assuan protocol as described by the aegypten project; see
58http://www.gnupg.org/aegypten/ for details.
59This package contains the GTK GUI based version of the PIN entry dialog.
60
61%package qt
62Summary: Passphrase/PIN entry dialog based on Qt5
63Requires: %{name} = %{version}-%{release}
64Provides: %{name}-gui = %{version}-%{release}
65Obsoletes: pinentry-qt4 < 0.8.0-2
66Provides:  pinentry-qt5 = %{version}-%{release}
67%description qt
68Pinentry is a collection of simple PIN or passphrase entry dialogs which
69utilize the Assuan protocol as described by the aegypten project; see
70http://www.gnupg.org/aegypten/ for details.
71This package contains the Qt5 GUI based version of the PIN entry dialog.
72
73%package emacs
74Summary: Passphrase/PIN entry dialog based on emacs
75Requires: %{name} = %{version}-%{release}
76%description emacs
77Pinentry is a collection of simple PIN or passphrase entry dialogs which
78utilize the Assuan protocol as described by the aegypten project; see
79http://www.gnupg.org/aegypten/ for details.
80This package contains the emacs based version of the PIN entry dialog.
81
82%prep
83%setup -q
84
85%build
86
87%if 0%{?fedora} > 22
88# FTBFS on f23/gcc5 without this
89CXXFLAGS="%{optflags} -std=c++11"
90%endif
91
92%configure \
93  --disable-rpath \
94  --disable-dependency-tracking \
95  --without-libcap \
96  --enable-pinentry-gnome3 \
97  --enable-pinentry-gtk2 \
98  --enable-pinentry-qt5 \
99  --enable-pinentry-emacs \
100  --enable-libsecret
101
102make %{?_smp_mflags}
103
104
105%install
106make install DESTDIR=$RPM_BUILD_ROOT
107
108# Symlink for Backward compatibility
109ln -s pinentry-gtk-2 $RPM_BUILD_ROOT%{_bindir}/pinentry-gtk
110ln -s pinentry-qt $RPM_BUILD_ROOT%{_bindir}/pinentry-qt4
111
112install -p -m755 -D %{SOURCE10} $RPM_BUILD_ROOT%{_bindir}/pinentry
113
114# unpackaged files
115rm -fv $RPM_BUILD_ROOT%{_infodir}/dir
116
117
118%post
119if [ -f %{_infodir}/pinentry.info* ]; then
120/sbin/install-info %{_infodir}/pinentry.info %{_infodir}/dir ||:
121fi
122
123%preun
124if [ $1 -eq 0 -a -f %{_infodir}/pinentry.info* ] ; then
125  /sbin/install-info --delete %{_infodir}/pinentry.info %{_infodir}/dir ||:
126fi
127
128%files
129%{!?_licensedir:%global license %%doc}
130%license COPYING
131%doc AUTHORS ChangeLog NEWS README THANKS TODO
132%{_bindir}/pinentry-curses
133%{_bindir}/pinentry
134%{_infodir}/pinentry.info*
135
136%files gnome3
137%{_bindir}/pinentry-gnome3
138
139%files gtk
140%{_bindir}/pinentry-gtk
141%{_bindir}/pinentry-gtk-2
142
143%files qt
144%{_bindir}/pinentry-qt
145# symlink for backward compatibility
146%{_bindir}/pinentry-qt4
147
148%files emacs
149%{_bindir}/pinentry-emacs
150
151%changelog
152* Sun Mar 15 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.1.0-2
153- updated Source10.
154
155* Thu Mar 01 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.1.0-1
156- new upstream release.
157
158* Fri Sep 02 2016 Toshiaki Ara <ara_t@384.jp> - 0.9.7-4
159- rebuild with gcc-5.4.0
160
161* Sun May 22 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.9.7-3
162- initial build for Vine Linux.
163
164* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-2
165- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
166
167* Mon Dec 07 2015 Boris Ranto <branto@redhat.com> - 0.9.7-1
168- Rebase to latest upstream version
169
170* Tue Oct 27 2015 Stef Walter <stefw@redhat.com> - 0.9.6-4
171- Enable libsecret, which enables password caching in pinentry-gnome3
172- Resolves rhbz#1275567
173
174* Thu Oct 15 2015 Kalev Lember <klember@redhat.com> - 0.9.6-3
175- Add pinentry-gnome3 support to pinentry wrapper
176
177* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 0.9.6-2
178- Build pinentry-gnome3
179
180* Fri Sep 11 2015 Boris Ranto <branto@redhat.com> - 0.9.6-1
181- Rebase to latest upstream version
182- Modify backwards compatible symlink for qt(4)
183- Enable pinentry-emacs since it was enabled by default in 0.9.5
184
185* Thu Jul 02 2015 Boris Ranto <branto@redhat.com> - 0.9.5-1
186- Rebase to latest upstream version
187- Removing qt4 pinentry patch -- got merged upstream
188- New package pinentry-emacs that hosts pinentry-emacs
189- New dependencies on libassuan and libgpg-error (de-bundling)
190
191* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-2
192- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
193
194* Thu May 14 2015 Boris Ranto <branto@redhat.com> - 0.9.2-1
195- Rebase to latest upstream version
196
197* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.9.1-2
198- Rebuilt for GCC 5 C++11 ABI change
199
200* Wed Mar 25 2015 Boris Ranto <branto@redhat.com> - 0.9.1-1
201- Rebase to latest upstream version
202- There are no longer any moc files so there is no need to patch them
203
204* Fri Mar 13 2015 Rex Dieter <rdieter@fedoraproject.org> - 0.9.0-3
205- fix FTBFS on f23/gcc5
206- drop deprecated configure flags
207
208* Sat Feb 21 2015 Till Maas <opensource@till.name> - 0.9.0-2
209- Rebuilt for Fedora 23 Change
210  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
211
212* Wed Nov 12 2014 Boris Ranto <branto@redhat.com> - 0.9.0-1
213- Rebase to latest upstream version
214
215* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.3-7
216- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
217
218* Tue Aug 12 2014 Boris Ranto <branto@redhat.com> - 0.8.3-6
219- fix bogus dates
220- upgrade pinentry-wrapper to handle corner cases better
221
222* Wed Jul 30 2014 Tom Callaway <spot@fedoraproject.org> - 0.8.3-5
223- fix license handling
224
225* Sat Jul 19 2014 Rex Dieter <rdieter@fedoraproject.org> 0.8.3-4
226- /usr/bin/pinentry should not check if stderr is opened (#787775)
227
228* Sat Jul 19 2014 Rex Dieter <rdieter@fedoraproject.org> - 0.8.3-3
229- .spec cleanup (drop support for old releases)
230- -gtk: Provides: pinentry-gtk2
231
232* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.3-2
233- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
234
235* Thu Jan 30 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.8.3-1
236- Update to latest upstream version (0.8.3)
237
238* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-11
239- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
240
241* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-10
242- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
243
244* Wed Nov 14 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.8.1-9
245- Fix macros expansions so that conditionals work
246
247* Mon Nov 12 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.8.1-8
248- Fix up licenses for qt and qt4 subpackages (#875875)
249
250* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-7
251- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
252
253* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-6
254- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
255
256* Mon Nov 14 2011 Adam Jackson <ajax@redhat.com> 0.8.1-5
257- Rebuild for new libpng
258
259* Tue Jul 26 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.8.1-4
260- Improve wrapper to fallback to curses even with DISPLAY set (#622077)
261
262* Fri Feb 18 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.8.1-3
263- Fix pinentry-curses running as root by disabling capabilities (#677670)
264
265* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-2
266- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
267
268* Tue Feb  1 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.8.1-1
269- Updated to latest upstream version (0.8.1)
270
271* Fri May  7 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.8.0-3
272- Fix X11 even race with gtk (#589998)
273- Fix qt4 problems with creating window in the background (#589532)
274
275* Thu Apr 29 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.8.0-2
276- -qt: build as qt4 version, and drop qt3 support (f13+ only)
277
278* Tue Apr 27 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.8.0-1
279- pinentry-0.8.0
280- pinentry-gtk keyboard grab fail results in SIGABRT (#585422)
281
282* Sun Apr 18 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.7.6-5
283- pinentry-gtk -g segfaults on focus change (#520236)
284
285* Sun Sep 13 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.7.6-4
286- Errors installing with --excludedocs (#515925)
287
288* Sun Sep 13 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.7.6-3
289- drop alternatives, use app-wrapper instead (borrowed from opensuse)
290- -qt4 experimental subpkg, -qt includes qt3 version again  (#523488)
291
292* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.6-2
293- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
294
295* Mon Jun 22 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.7.6-1
296- pinentry-0.7.6
297- -qt switched qt4 version, where applicable (f9+, rhel6+)
298- fixup scriptlets
299
300* Sat Apr 25 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.7.5-1
301- pinentry-0.7.5
302
303* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.4-6
304- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
305
306* Tue Mar 25 2008 Rex Dieter <rdieter@fedoraproject.org> - 0.7.4-5
307- pinentry failed massrebuild attempt for GCC 4.3 (#434400)
308
309* Tue Mar 25 2008 Rex Dieter <rdieter@fedoraproject.org> - 0.7.4-4
310- s/qt-devel/qt3-devel/ (f9+)
311
312* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.7.4-3
313- Autorebuild for GCC 4.3
314
315* Sun Feb 17 2008 Adam Tkac <atkac redhat com> - 0.7.4-2
316- rebuild against new libcap
317
318* Sun Dec 09 2007 Rex Dieter <rdieter[AT]fedoraproject.org> - 0.7.4-1
319- pinentry-0.7.4
320- BR: libcap-devel
321
322* Sat Aug 25 2007 Rex Dieter <rdieter[AT]fedoraproject.org> - 0.7.3-2
323- respin (BuildID)
324
325* Sat Aug 11 2007 Rex Dieter <rdieter[AT]fedoraproject.org> - 0.7.3-1
326- pinentry-0.7.3
327- License: GPLv2+
328
329* Thu May 10 2007 Rex Dieter <rdieter[AT]fedoraproject.org> - 0.7.2-15
330- respin (for ppc64)
331
332* Mon Dec 04 2006 Rex Dieter <rexdieter[AT]users.sf.net> - 0.7.2-14
333- -14 respin (to help retire ATrpms pinentry pkg)
334
335* Mon Aug 28 2006 Rex Dieter <rexdieter[AT]users.sf.net> - 0.7.2-3
336- fc6 respin
337
338* Wed Aug 09 2006 Rex Dieter <rexdieter[AT]users.sf.net> - 0.7.2-2
339- fc6 respin
340
341* Wed Mar 01 2006 Rex Dieter <rexdieter[AT]users.sf.net>
342- fc5: gcc/glibc respin
343
344* Tue Oct 18 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.2-1
345- 0.7.2, docs patch applied upstream.
346- Switch to GTK2 in -gtk.
347- Fine tune dependencies.
348- Build with dependency tracking disabled.
349- Clean up obsolete pre-FC2 support.
350
351* Thu Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.7.1-4
352- rebuilt
353
354* Wed Jun 30 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.7.1-0.fdr.3
355- BuildRequires qt-devel >= 3.2.
356
357* Sat May 22 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.7.1-0.fdr.2
358- Spec cleanups.
359
360* Sat Apr 24 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.7.1-0.fdr.1
361- Update to 0.7.1.
362
363* Fri Dec 26 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.7.0-0.fdr.1
364- Update to 0.7.0.
365- Split GTK+ and QT dialogs into subpackages.
366
367* Thu Jul 10 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.6.9-0.fdr.1
368- Update to 0.6.9.
369- Smoother experience with --excludedocs.
370- Don't change alternative priorities on upgrade.
371
372* Sat Mar 22 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.6.8-0.fdr.1
373- Update to current Fedora guidelines.
374
375* Wed Feb 12 2003 Warren Togami <warren@togami.com> 0.6.8-1.fedora.3
376- info/dir temporary workaround
377
378* Sat Feb  8 2003 Ville Skyttä <ville.skytta at iki.fi> - 0.6.8-1.fedora.1
379- First Fedora release.
Note: See TracBrowser for help on using the repository browser.