1f20c2
%if 0%{?fedora} && 0%{?fedora} < 30
1f20c2
%bcond_with unversioned_gpg
1f20c2
%else
1f20c2
%bcond_without unversioned_gpg
1f20c2
%endif
1f20c2
1f20c2
Summary: Utility for secure communication and data storage
1f20c2
Name:    gnupg2
1f20c2
Version: 2.3.3
1ff962
Release: 2%{?dist}
1f20c2
1f20c2
License: GPLv3+
1f20c2
Source0: https://gnupg.org/ftp/gcrypt/%{?pre:alpha/}gnupg/gnupg-%{version}%{?pre}.tar.bz2
1f20c2
Source1: https://gnupg.org/ftp/gcrypt/%{?pre:alpha/}gnupg/gnupg-%{version}%{?pre}.tar.bz2.sig
1f20c2
# needed for compatibility with system FIPS mode
1f20c2
Patch3:  gnupg-2.1.10-secmem.patch
1f20c2
# non-upstreamable patch adding file-is-digest option needed for Copr
1f20c2
# https://dev.gnupg.org/T1646
1f20c2
Patch4:  gnupg-2.2.20-file-is-digest.patch
1f20c2
Patch6:  gnupg-2.1.1-fips-algo.patch
1f20c2
# allow 8192 bit RSA keys in keygen UI with large RSA
1f20c2
Patch9:  gnupg-2.2.23-large-rsa.patch
1f20c2
# fix missing uid on refresh from keys.openpgp.org
1f20c2
# https://salsa.debian.org/debian/gnupg2/commit/f292beac1171c6c77faf41d1f88c2e0942ed4437
1f20c2
Patch20: gnupg-2.2.18-tests-add-test-cases-for-import-without-uid.patch
1f20c2
Patch21: gnupg-2.2.18-gpg-allow-import-of-previously-known-keys-even-without-UI.patch
1f20c2
Patch22: gnupg-2.2.18-gpg-accept-subkeys-with-a-good-revocation-but-no-self-sig.patch
1f20c2
# Fixes for issues found in Coverity scan - reported upstream
1f20c2
Patch30: gnupg-2.2.21-coverity.patch
1f20c2
# Revert default EdDSA key types
1f20c2
Patch31: gnupg-2.3.1-revert-default-eddsa.patch
1ff962
# Revert default EdDSA key types
1ff962
Patch32: gnupg-2.3.3-CVE-2022-34903.patch
1f20c2
1f20c2
1f20c2
URL:     https://www.gnupg.org/
1f20c2
1f20c2
#BuildRequires: automake libtool texinfo transfig
1f20c2
BuildRequires: gcc
1f20c2
BuildRequires: bzip2-devel
1f20c2
BuildRequires: curl-devel
1f20c2
BuildRequires: docbook-utils
1f20c2
BuildRequires: gettext
1f20c2
BuildRequires: libassuan-devel >= 2.1.0
1f20c2
BuildRequires: libgcrypt-devel >= 1.9.1
1f20c2
BuildRequires: libgpg-error-devel >= 1.38
1f20c2
BuildRequires: libksba-devel >= 1.3.0
1f20c2
BuildRequires: openldap-devel
1f20c2
BuildRequires: libusb-devel
1f20c2
BuildRequires: pcsc-lite-libs
1f20c2
BuildRequires: npth-devel
1f20c2
BuildRequires: readline-devel ncurses-devel
1f20c2
BuildRequires: zlib-devel
1f20c2
BuildRequires: gnutls-devel
1f20c2
BuildRequires: sqlite-devel
1f20c2
BuildRequires: fuse
1f20c2
BuildRequires: make
1f20c2
1f20c2
Requires: libgcrypt >= 1.7.0
1f20c2
Requires: libgpg-error >= 1.38
1f20c2
1f20c2
Suggests: pinentry
1f20c2
1f20c2
Suggests: gnupg2-smime
1f20c2
1f20c2
# for USB smart card support
1f20c2
Suggests: pcsc-lite-ccid
1f20c2
1f20c2
%if %{with unversioned_gpg}
1f20c2
# pgp-tools, perl-GnuPG-Interface requires 'gpg' (not sure why) -- Rex
1f20c2
Provides: gpg = %{version}-%{release}
1f20c2
# Obsolete GnuPG-1 package
1f20c2
Provides: gnupg = %{version}-%{release}
1f20c2
Obsoletes: gnupg < 1.4.24
1f20c2
%endif
1f20c2
1f20c2
Provides: dirmngr = %{version}-%{release}
1f20c2
Obsoletes: dirmngr < 1.2.0-1
1f20c2
1f20c2
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
1f20c2
1f20c2
%package smime
1f20c2
Summary: CMS encryption and signing tool and smart card support for GnuPG
1f20c2
Requires: gnupg2%{?_isa} = %{version}-%{release}
1f20c2
1f20c2
1f20c2
%description
1f20c2
GnuPG is GNU's tool for secure communication and data storage.  It can
1f20c2
be used to encrypt data and to create digital signatures.  It includes
1f20c2
an advanced key management facility and is compliant with the proposed
1f20c2
OpenPGP Internet standard as described in RFC2440 and the S/MIME
1f20c2
standard as described by several RFCs.
1f20c2
1f20c2
GnuPG 2.0 is a newer version of GnuPG with additional support for
1f20c2
S/MIME.  It has a different design philosophy that splits
1f20c2
functionality up into several modules. The S/MIME and smartcard functionality
1f20c2
is provided by the gnupg2-smime package.
1f20c2
1f20c2
%description smime
1f20c2
GnuPG is GNU's tool for secure communication and data storage. This
1f20c2
package adds support for smart cards and S/MIME encryption and signing
1f20c2
to the base GnuPG package 
1f20c2
1f20c2
%prep
1f20c2
%setup -q -n gnupg-%{version}
1f20c2
1f20c2
%patch3 -p1 -b .secmem
1f20c2
%patch4 -p1 -b .file-is-digest
1f20c2
%patch6 -p1 -b .fips
1f20c2
%patch9 -p1 -b .large-rsa
1f20c2
1f20c2
%patch20 -p1 -b .test_missing_uid
1f20c2
%patch21 -p1 -b .prev_known_key
1f20c2
%patch22 -p1 -b .good_revoc
1f20c2
1f20c2
%patch30 -p1 -b .coverity
1f20c2
%patch31 -p1 -R -b .eddsa
1ff962
%patch32 -p1 -b .CVE-2022-34903
1f20c2
1f20c2
# pcsc-lite library major: 0 in 1.2.0, 1 in 1.2.9+ (dlopen()'d in pcsc-wrapper)
1f20c2
# Note: this is just the name of the default shared lib to load in scdaemon,
1f20c2
# it can use other implementations too (including non-pcsc ones).
1f20c2
%global pcsclib %(basename $(ls -1 %{_libdir}/libpcsclite.so.? 2>/dev/null ) 2>/dev/null )
1f20c2
1f20c2
sed -i -e 's/"libpcsclite\.so"/"%{pcsclib}"/' scd/scdaemon.c
1f20c2
1f20c2
1f20c2
%build
1f20c2
# can not regenerate makefiles because of automake-1.16.3 requirement
1f20c2
# ./autogen.sh
1f20c2
%configure \
1f20c2
%if %{without unversioned_gpg}
1f20c2
  --enable-gpg-is-gpg2 \
1f20c2
%endif
1f20c2
  --disable-rpath \
1f20c2
  --enable-g13 \
1f20c2
  --disable-ccid-driver \
1f20c2
  --enable-large-secmem
1f20c2
1f20c2
# need scratch gpg database for tests
1f20c2
mkdir -p $HOME/.gnupg
1f20c2
1f20c2
%make_build
1f20c2
1f20c2
1f20c2
%install
1f20c2
%make_install \
1f20c2
  docdir=%{_pkgdocdir}
1f20c2
1f20c2
%if %{without unversioned_gpg}
1f20c2
# rename file conflicting with gnupg-1.x
1f20c2
rename gnupg.7 gnupg2.7 %{buildroot}%{_mandir}/man7/gnupg.7*
1f20c2
%endif
1f20c2
1f20c2
%find_lang %{name}
1f20c2
1f20c2
# gpgconf.conf
1f20c2
mkdir -p %{buildroot}%{_sysconfdir}/gnupg
1f20c2
touch %{buildroot}%{_sysconfdir}/gnupg/gpgconf.conf
1f20c2
1f20c2
# more docs
1f20c2
install -m644 -p AUTHORS NEWS THANKS TODO \
1f20c2
  %{buildroot}%{_pkgdocdir}
1f20c2
1f20c2
%if %{with unversioned_gpg}
1f20c2
# compat symlinks
1f20c2
ln -sf gpg %{buildroot}%{_bindir}/gpg2
1f20c2
ln -sf gpgv %{buildroot}%{_bindir}/gpgv2
1f20c2
ln -sf gpg.1 %{buildroot}%{_mandir}/man1/gpg2.1
1f20c2
ln -sf gpgv.1 %{buildroot}%{_mandir}/man1/gpgv2.1
1f20c2
ln -sf gnupg.7 %{buildroot}%{_mandir}/man7/gnupg2.7
1f20c2
%endif
1f20c2
1f20c2
# info dir
1f20c2
rm -f %{buildroot}%{_infodir}/dir
1f20c2
1f20c2
# drop the gpg scheme interpreter
1f20c2
rm -f %{buildroot}%{_bindir}/gpgscm
1f20c2
1f20c2
# Move the systemd user units to appropriate directory
1f20c2
install -d -m755 %{buildroot}%{_userunitdir}
1f20c2
mv %{buildroot}%{_pkgdocdir}/examples/systemd-user/*.socket %{buildroot}%{_userunitdir}
1f20c2
mv %{buildroot}%{_pkgdocdir}/examples/systemd-user/*.service %{buildroot}%{_userunitdir}
1f20c2
1f20c2
%check
1f20c2
# need scratch gpg database for tests
1f20c2
mkdir -p $HOME/.gnupg
1f20c2
make -k check
1f20c2
1f20c2
1f20c2
%files -f %{name}.lang
1f20c2
%license COPYING
1f20c2
#doc AUTHORS NEWS README THANKS TODO
1f20c2
%{_pkgdocdir}
1f20c2
%dir %{_sysconfdir}/gnupg
1f20c2
%ghost %config(noreplace) %{_sysconfdir}/gnupg/gpgconf.conf
1f20c2
## docs say to install suid root, but fedora/rh security folk say not to
1f20c2
%{_bindir}/gpg2
1f20c2
%{_bindir}/gpgv2
1f20c2
%{_bindir}/gpg-card
1f20c2
%{_bindir}/gpg-connect-agent
1f20c2
%{_bindir}/gpg-agent
1f20c2
%{_bindir}/gpg-wks-client
1f20c2
%{_bindir}/gpgconf
1f20c2
%{_bindir}/gpgparsemail
1f20c2
%{_bindir}/gpgtar
1f20c2
%{_bindir}/g13
1f20c2
%{_bindir}/dirmngr
1f20c2
%{_bindir}/dirmngr-client
1f20c2
%if %{with unversioned_gpg}
1f20c2
%{_bindir}/gpg
1f20c2
%{_bindir}/gpgv
1f20c2
%{_bindir}/gpgsplit
1f20c2
%endif
1f20c2
%{_bindir}/watchgnupg
1f20c2
%{_bindir}/gpg-wks-server
1f20c2
%{_sbindir}/*
1f20c2
%{_datadir}/gnupg/
1f20c2
%{_libexecdir}/*
1f20c2
%{_infodir}/*.info*
1f20c2
%{_mandir}/man?/*
1f20c2
%{_userunitdir}/*
1f20c2
%exclude %{_mandir}/man?/gpgsm*
1f20c2
1f20c2
%files smime
1f20c2
%{_bindir}/gpgsm*
1f20c2
%{_bindir}/kbxutil
1f20c2
%{_mandir}/man?/gpgsm*
1f20c2
1f20c2
1f20c2
%changelog
1ff962
* Wed Aug 03 2022 Jakub Jelen <jjelen@redhat.com> - 2.3.3-2
1ff962
- Fix CVE-2022-34903 (#2108449)
1ff962
1f20c2
* Fri Nov 19 2021 Jakub Jelen <jjelen@redhat.com> - 2.3.3-1
1f20c2
- Rebase to 2.3.1 to address random tests failures (#1984842)
1f20c2
1f20c2
* Thu Nov 18 2021 Jakub Jelen <jjelen@redhat.com> - 2.3.1-4
1f20c2
- Fix --file-is-digest patch (#2024710)
1f20c2
1f20c2
* Wed Sep 08 2021 Jakub Jelen <jjelen@redhat.com> - 2.3.1-3
1f20c2
- Revernt default key type back to RSA for FIPS compatibility (#2001937)
1f20c2
1f20c2
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.3.1-2
1f20c2
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
1f20c2
  Related: rhbz#1991688
1f20c2
1f20c2
* Wed Apr 21 2021 Jakub Jelen <jjelen@redhat.com> - 2.3.1-1
1f20c2
- New upstream release (#1947159)
1f20c2
1f20c2
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2.2.27-5
1f20c2
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
1f20c2
1f20c2
* Mon Mar 29 2021 Jakub Jelen <jjelen@redhat.com> - 2.2.27-4
1f20c2
- Add a configuration to not require exclusive access to PCSC
1f20c2
1f20c2
* Thu Feb 18 2021 Jakub Jelen <jjelen@redhat.com> - 2.2.27-3
1f20c2
- Bump required libgpg-error version (#1930110)
1f20c2
1f20c2
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.27-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
1f20c2
1f20c2
* Tue Jan 12 2021 Jakub Jelen <jjelen@redhat.com> - 2.2.27-1
1f20c2
- New upstream release (#1909825)
1f20c2
1f20c2
* Mon Jan 04 2021 Jakub Jelen <jjelen@redhat.com> - 2.2.26-1
1f20c2
- New upstream release (#1909825)
1f20c2
1f20c2
* Tue Nov 24 2020 Jakub Jelen <jjelen@redhat.com> - 2.2.25-2
1f20c2
- Enable gpgtar (#1901103)
1f20c2
1f20c2
* Tue Nov 24 2020 Jakub Jelen <jjelen@redhat.com> - 2.2.25-1
1f20c2
- Update to 2.2.25 (#1900815)
1f20c2
1f20c2
* Thu Nov 19 2020 Jakub Jelen <jjelen@redhat.com> - 2.2.24-1
1f20c2
- Update to 2.2.24 (#1898504)
1f20c2
1f20c2
* Fri Sep  4 2020 Tomáš Mráz <tmraz@redhat.com> - 2.2.23-1
1f20c2
- upgrade to 2.2.23
1f20c2
1f20c2
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.21-4
1f20c2
- Second attempt - Rebuilt for
1f20c2
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1f20c2
1f20c2
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.21-3
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1f20c2
1f20c2
* Tue Jul 21 2020 Tom Stellard <tstellar@redhat.com> - 2.2.21-2
1f20c2
- Use make macros
1f20c2
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
1f20c2
1f20c2
* Mon Jul 20 2020 Tomáš Mráz <tmraz@redhat.com> - 2.2.21-1
1f20c2
- upgrade to 2.2.21
1f20c2
1f20c2
* Mon May  4 2020 Tomáš Mráz <tmraz@redhat.com> - 2.2.20-3
1f20c2
- fixes for issues found in Coverity scan
1f20c2
1f20c2
* Thu Apr 30 2020 Tomáš Mráz <tmraz@redhat.com> - 2.2.20-2
1f20c2
- move systemd user units to _userunitdir (no activation by default)
1f20c2
1f20c2
* Tue Apr 14 2020 Tomáš Mráz <tmraz@redhat.com> - 2.2.20-1
1f20c2
- upgrade to 2.2.20
1f20c2
1f20c2
* Wed Jan 29 2020 Tomáš Mráz <tmraz@redhat.com> - 2.2.19-1
1f20c2
- upgrade to 2.2.19
1f20c2
1f20c2
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.18-4
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
1f20c2
1f20c2
* Sat Jan  4 2020 Marcel Härry <mh+fedora@scrit.ch> - 2.2.18-3
1f20c2
- Add patches to be able to deal with keys without uids (#1787708)
1f20c2
1f20c2
* Fri Dec  6 2019 Tomáš Mráz <tmraz@redhat.com> - 2.2.18-2
1f20c2
- fix abort when decrypting data with anonymous recipient (#1780057)
1f20c2
1f20c2
* Tue Dec  3 2019 Tomáš Mráz <tmraz@redhat.com> - 2.2.18-1
1f20c2
- upgrade to 2.2.18
1f20c2
1f20c2
* Wed Nov  6 2019 Tomáš Mráz <tmraz@redhat.com> - 2.2.17-3
1f20c2
- fix the gnupg(7) manual page (#1769072)
1f20c2
1f20c2
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.17-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1f20c2
1f20c2
* Mon Jul 15 2019 Tomáš Mráz <tmraz@redhat.com> - 2.2.17-1
1f20c2
- upgrade to 2.2.17
1f20c2
1f20c2
* Mon Jul  1 2019 Tomáš Mráz <tmraz@redhat.com> - 2.2.16-1
1f20c2
- upgrade to 2.2.16
1f20c2
1f20c2
* Tue Feb 26 2019 Tomáš Mráz <tmraz@redhat.com> - 2.2.13-1
1f20c2
- upgrade to 2.2.13
1f20c2
1f20c2
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.2.12-3
1f20c2
- Rebuild for readline 8.0
1f20c2
1f20c2
* Mon Feb  4 2019 Tomáš Mráz <tmraz@redhat.com> - 2.2.12-2
1f20c2
- make it build with gcc-9
1f20c2
1f20c2
* Tue Jan  8 2019 Tomáš Mráz <tmraz@redhat.com> - 2.2.12-1
1f20c2
- upgrade to 2.2.12
1f20c2
1f20c2
* Sat Dec 08 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.2.11-2
1f20c2
- Provide unversioned GPG on F30+
1f20c2
1f20c2
* Fri Nov 30 2018 Tomáš Mráz <tmraz@redhat.com> - 2.2.11-1
1f20c2
- upgrade to 2.2.11
1f20c2
1f20c2
* Wed Aug  1 2018 Tomáš Mráz <tmraz@redhat.com> - 2.2.9-1
1f20c2
- upgrade to 2.2.9
1f20c2
1f20c2
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.8-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
1f20c2
1f20c2
* Mon Jun 11 2018 Tomáš Mráz <tmraz@redhat.com> - 2.2.8-1
1f20c2
- upgrade to 2.2.8 fixing CVE 2018-12020
1f20c2
1f20c2
* Wed Apr 11 2018 Tomáš Mráz <tmraz@redhat.com> - 2.2.6-1
1f20c2
- upgrade to 2.2.6
1f20c2
1f20c2
* Fri Mar  2 2018 Tomáš Mráz <tmraz@redhat.com> - 2.2.5-1
1f20c2
- upgrade to 2.2.5
1f20c2
1f20c2
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.4-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1f20c2
1f20c2
* Fri Jan 12 2018 Tomáš Mráz <tmraz@redhat.com> - 2.2.4-1
1f20c2
- upgrade to 2.2.4
1f20c2
1f20c2
* Tue Nov 21 2017 Tomáš Mráz <tmraz@redhat.com> - 2.2.3-1
1f20c2
- upgrade to 2.2.3
1f20c2
1f20c2
* Wed Nov  8 2017 Tomáš Mráz <tmraz@redhat.com> - 2.2.2-1
1f20c2
- upgrade to 2.2.2
1f20c2
1f20c2
* Tue Oct  3 2017 Tomáš Mráz <tmraz@redhat.com> - 2.2.1-1
1f20c2
- upgrade to 2.2.1
1f20c2
1f20c2
* Tue Sep  5 2017 Tomáš Mráz <tmraz@redhat.com> - 2.2.0-1
1f20c2
- upgrade to 2.2.0
1f20c2
1f20c2
* Wed Aug  9 2017 Tomáš Mráz <tmraz@redhat.com> - 2.1.22-1
1f20c2
- upgrade to 2.1.22
1f20c2
1f20c2
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.21-5
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1f20c2
1f20c2
* Fri Jul 28 2017 Tomáš Mráz <tmraz@redhat.com> - 2.1.21-4
1f20c2
- explictly remove gpgscm from the buildroot
1f20c2
1f20c2
* Tue Jul 18 2017 Tomáš Mráz <tmraz@redhat.com> - 2.1.21-3
1f20c2
- rebase the insttools patch
1f20c2
- enable large secure memory support
1f20c2
1f20c2
* Tue May 16 2017 Tomáš Mráz <tmraz@redhat.com> - 2.1.21-2
1f20c2
- scdaemon is now needed by gpg
1f20c2
1f20c2
* Tue May 16 2017 Tomáš Mráz <tmraz@redhat.com> - 2.1.21-1
1f20c2
- upgrade to 2.1.21
1f20c2
1f20c2
* Tue Apr 25 2017 Tomáš Mráz <tmraz@redhat.com> - 2.1.20-2
1f20c2
- libdns aliasing issues fixed
1f20c2
1f20c2
* Mon Apr 24 2017 Tomáš Mráz <tmraz@redhat.com> - 2.1.20-1
1f20c2
- upgrade to 2.1.20
1f20c2
- disable bundled libdns for now (#1444352)
1f20c2
1f20c2
* Fri Mar 24 2017 Tomáš Mráz <tmraz@redhat.com> - 2.1.19-1
1f20c2
- upgrade to 2.1.19
1f20c2
- shorten time waiting on gpg-agent/dirmngr to start by exponential
1f20c2
  backoff (#1431749)
1f20c2
1f20c2
* Wed Mar  1 2017 Tomáš Mráz <tmraz@redhat.com> - 2.1.18-2
1f20c2
- upgrade to 2.1.18
1f20c2
1f20c2
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.17-3
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1f20c2
1f20c2
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.1.17-2
1f20c2
- Rebuild for readline 7.x
1f20c2
1f20c2
* Thu Dec 22 2016 Tomáš Mráz <tmraz@redhat.com> - 2.1.17-1
1f20c2
- upgrade to 2.1.17
1f20c2
1f20c2
* Mon Nov 28 2016 Tomáš Mráz <tmraz@redhat.com> - 2.1.16-1
1f20c2
- upgrade to 2.1.16
1f20c2
1f20c2
* Mon Aug 22 2016 Tomáš Mráz <tmraz@redhat.com> - 2.1.13-2
1f20c2
- avoid using libgcrypt without initialization (#1366909)
1f20c2
1f20c2
* Tue Jul 12 2016 Tomáš Mráz <tmraz@redhat.com> - 2.1.13-1
1f20c2
- upgrade to 2.1.13
1f20c2
1f20c2
* Thu May  5 2016 Tomáš Mráz <tmraz@redhat.com> - 2.1.12-1
1f20c2
- upgrade to 2.1.12
1f20c2
1f20c2
* Tue Apr 12 2016 Tomáš Mráz <tmraz@redhat.com> - 2.1.11-4
1f20c2
- make the pinentry dependency weak as for the public-key operations it
1f20c2
  is not needed (#1324595)
1f20c2
1f20c2
* Mon Mar  7 2016 Tomáš Mráz <tmraz@redhat.com> - 2.1.11-3
1f20c2
- add recommends weak dependency for gnupg2-smime
1f20c2
1f20c2
* Sat Mar  5 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2.1.11-2
1f20c2
- Don't ship ChangeLog, core details already covered in NEWS
1f20c2
1f20c2
* Tue Feb 16 2016 Tomáš Mráz <tmraz@redhat.com> - 2.1.11-1
1f20c2
- upgrade to 2.1.11
1f20c2
1f20c2
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.10-4
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1f20c2
1f20c2
* Wed Jan 13 2016 Dan Horák <dan[at]danny.cz> - 2.1.10-3
1f20c2
- fix the insttools patch
1f20c2
1f20c2
* Wed Jan 13 2016 Tomáš Mráz <tmraz@redhat.com> - 2.1.10-2
1f20c2
- rebase the insttools patch needed for full gpgv1 replacement
1f20c2
1f20c2
* Mon Dec  7 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.10-1
1f20c2
- upgrade to 2.1.10
1f20c2
1f20c2
* Mon Oct 12 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.9-1
1f20c2
- upgrade to 2.1.9
1f20c2
1f20c2
* Fri Sep 11 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.8-1
1f20c2
- upgrade to 2.1.8
1f20c2
1f20c2
* Thu Aug 13 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.7-1
1f20c2
- upgrade to 2.1.7
1f20c2
1f20c2
* Tue Aug 11 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.6-1
1f20c2
- upgrade to 2.1.6
1f20c2
1f20c2
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.5-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1f20c2
1f20c2
* Fri Jun 12 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.5-1
1f20c2
- upgrade to 2.1.5
1f20c2
1f20c2
* Tue May 26 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.4-2
1f20c2
- use gnutls for TLS support in dirmngr (#1224816)
1f20c2
1f20c2
* Fri May 15 2015 Robert Scheck <robert@fedoraproject.org> - 2.1.4-1
1f20c2
- upgrade to 2.1.4 (#1192353)
1f20c2
1f20c2
* Thu Apr 16 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.3-1
1f20c2
- new upstream release fixing minor bugs
1f20c2
1f20c2
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.1.2-2
1f20c2
- Rebuilt for Fedora 23 Change
1f20c2
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
1f20c2
1f20c2
* Wed Feb 18 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.2-1
1f20c2
- new upstream release fixing two minor security issues
1f20c2
1f20c2
* Fri Jan 30 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.1-2
1f20c2
- resolve conflict with gnupg by renaming conflicting manual page (#1187472)
1f20c2
1f20c2
* Thu Jan 29 2015 Tomáš Mráz <tmraz@redhat.com> - 2.1.1-1
1f20c2
- new upstream release
1f20c2
- this release now includes the dirmngr which is obsoleted as separate package
1f20c2
1f20c2
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.25-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1f20c2
1f20c2
* Tue Aug  5 2014 Tomáš Mráz <tmraz@redhat.com> - 2.0.25-1
1f20c2
- new upstream release fixing a minor regression introduced by the previous one
1f20c2
- add --file-is-digest option needed for copr
1f20c2
1f20c2
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 2.0.24-2
1f20c2
- fix license handling
1f20c2
1f20c2
* Wed Jun 25 2014 Tomáš Mráz <tmraz@redhat.com> - 2.0.24-1
1f20c2
- new upstream release fixing CVE-2014-4617
1f20c2
1f20c2
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.22-4
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1f20c2
1f20c2
* Wed May  7 2014 Tomáš Mráz <tmraz@redhat.com> - 2.0.22-3
1f20c2
- do not dump core if hash algorithm not available in the FIPS mode
1f20c2
1f20c2
* Tue Mar  4 2014 Tomáš Mráz <tmraz@redhat.com> - 2.0.22-2
1f20c2
- rebuilt against new libgcrypt
1f20c2
1f20c2
* Tue Oct  8 2013 Tomáš Mráz <tmraz@redhat.com> - 2.0.22-1
1f20c2
- new upstream release fixing CVE-2013-4402
1f20c2
1f20c2
* Fri Aug 23 2013 Tomáš Mráz <tmraz@redhat.com> - 2.0.21-1
1f20c2
- new upstream release
1f20c2
1f20c2
* Wed Aug  7 2013 Tomas Mraz <tmraz@redhat.com> - 2.0.20-3
1f20c2
- adjust to the unversioned docdir change (#993785)
1f20c2
1f20c2
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.20-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1f20c2
1f20c2
* Wed May 15 2013 Tomas Mraz <tmraz@redhat.com> - 2.0.20-1
1f20c2
- new upstream release
1f20c2
1f20c2
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.19-8
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1f20c2
1f20c2
* Wed Jan  2 2013 Tomas Mraz <tmraz@redhat.com> - 2.0.19-7
1f20c2
- fix CVE-2012-6085 - skip invalid key packets (#891142)
1f20c2
1f20c2
* Thu Nov 22 2012 Tomas Mraz <tmraz@redhat.com> - 2.0.19-6
1f20c2
- use AES as default crypto algorithm in FIPS mode (#879047)
1f20c2
1f20c2
* Fri Nov 16 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 2.0.19-5
1f20c2
- rebuild for 
1f20c2
1f20c2
* Fri Jul 27 2012 Tomas Mraz <tmraz@redhat.com> - 2.0.19-4
1f20c2
- fix negated condition (#843842)
1f20c2
1f20c2
* Thu Jul 26 2012 Tomas Mraz <tmraz@redhat.com> - 2.0.19-3
1f20c2
- add compat symlinks and provides if built on RHEL
1f20c2
1f20c2
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.19-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1f20c2
1f20c2
* Tue Apr 24 2012 Tomas Mraz <tmraz@redhat.com> - 2.0.19-1
1f20c2
- new upstream release
1f20c2
- set environment in protect-tool (#548528)
1f20c2
- do not reject OCSP signing certs without keyUsage (#720174)
1f20c2
1f20c2
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.18-3
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1f20c2
1f20c2
* Wed Oct 12 2011 Rex Dieter <rdieter@fedoraproject.org> 2.0.18-2
1f20c2
- build with --enable-standard-socket
1f20c2
1f20c2
* Wed Aug 17 2011 Tomas Mraz <tmraz@redhat.com> - 2.0.18-1
1f20c2
- new upstream release (#728481)
1f20c2
1f20c2
* Mon Jul 25 2011 Tomas Mraz <tmraz@redhat.com> - 2.0.17-2
1f20c2
- fix a bug that shows up with the new libgcrypt release (#725369)
1f20c2
1f20c2
* Thu Jan 20 2011 Tomas Mraz <tmraz@redhat.com> - 2.0.17-1
1f20c2
- new upstream release (#669611)
1f20c2
1f20c2
* Tue Aug 17 2010 Tomas Mraz <tmraz@redhat.com> - 2.0.16-3
1f20c2
- drop the provides/obsoletes for gnupg
1f20c2
- drop the man page file conflicting with gnupg-1.x
1f20c2
1f20c2
* Fri Aug 13 2010 Tomas Mraz <tmraz@redhat.com> - 2.0.16-2
1f20c2
- drop the compat symlinks as gnupg-1.x is revived
1f20c2
1f20c2
* Tue Jul 27 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.0.16-1
1f20c2
- gnupg-2.0.16
1f20c2
1f20c2
* Fri Jul 23 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.0.14-4
1f20c2
- gpgsm realloc patch (#617706)
1f20c2
1f20c2
* Fri Jun 18 2010 Tomas Mraz <tmraz@redhat.com> - 2.0.14-3
1f20c2
- initialize small amount of secmem for list of algorithms in help (#598847)
1f20c2
  (necessary in the FIPS mode of libgcrypt)
1f20c2
1f20c2
* Tue Feb  9 2010 Tomas Mraz <tmraz@redhat.com> - 2.0.14-2
1f20c2
- disable selinux support - it is too rudimentary and restrictive (#562982)
1f20c2
1f20c2
* Mon Jan 11 2010 Tomas Mraz <tmraz@redhat.com> - 2.0.14-1
1f20c2
- new upstream version
1f20c2
- fix a few tests so they do not need to execute gpg-agent
1f20c2
1f20c2
* Tue Dec  8 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 2.0.13-4
1f20c2
- Explicitly BR libassuan-static in accordance with the Packaging
1f20c2
  Guidelines (libassuan-devel is still static-only).
1f20c2
1f20c2
* Fri Oct 23 2009 Tomas Mraz <tmraz@redhat.com> - 2.0.13-3
1f20c2
- drop s390 specific ifnarchs as all the previously missing dependencies
1f20c2
  are now there
1f20c2
- split out gpgsm into a smime subpackage to reduce main package dependencies
1f20c2
1f20c2
* Wed Oct 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.0.13-2
1f20c2
- provide/obsolete gnupg-1 and add compat symlinks to be able to drop
1f20c2
  gnupg-1
1f20c2
1f20c2
* Fri Sep 04 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.0.13-1
1f20c2
- gnupg-2.0.13
1f20c2
- Unable to use gpg-agent + input methods (#228953)
1f20c2
1f20c2
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.12-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1f20c2
1f20c2
* Wed Jun 17 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.0.12-1
1f20c2
- gnupg-2.0.12
1f20c2
1f20c2
* Wed Mar 04 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.0.11-1
1f20c2
- gnupg-2.0.11
1f20c2
1f20c2
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-2
1f20c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1f20c2
1f20c2
* Sat Jan 31 2009 Karsten Hopp <karsten@redhat.com> 2.0.10-1
1f20c2
- don't require pcsc-lite-libs and libusb on mainframe where
1f20c2
  we don't have those packages as there's no hardware for that
1f20c2
1f20c2
* Tue Jan 13 2009 Rex Dieter <rdieter@fedoraproject.org> 2.0.10-1
1f20c2
- gnupg-2.0.10
1f20c2
1f20c2
* Mon Aug 04 2008 Rex Dieter <rdieter@fedoraproject.org> 2.0.9-3
1f20c2
- workaround rpm quirks 
1f20c2
1f20c2
* Sat May 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.9-2
1f20c2
- Patch from upstream to fix curl 7.18.1+ and gcc4.3+ compile error
1f20c2
1f20c2
* Mon May 19 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.9-1.1
1f20c2
- minor release bump for sparc rebuild
1f20c2
1f20c2
* Wed Mar 26 2008 Rex Dieter <rdieter@fedoraproject.org> 2.0.9-1
1f20c2
- gnupg2-2.0.9
1f20c2
- drop Provides: openpgp
1f20c2
- versioned Provides: gpg
1f20c2
- own %%_sysconfdir/gnupg
1f20c2
1f20c2
* Fri Feb 08 2008 Rex Dieter <rdieter@fedoraproject.org> 2.0.8-3 
1f20c2
- respin (gcc43)
1f20c2
1f20c2
* Wed Jan 23 2008 Rex Dieter <rdieter@fedoraproject.org> 2.0.8-2
1f20c2
- avoid kde-filesystem dep (#427316)
1f20c2
1f20c2
* Thu Dec 20 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.8-1
1f20c2
- gnupg2-2.0.8
1f20c2
1f20c2
* Mon Dec 17 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.8-0.1.rc1
1f20c2
- gnupg2-2.0.8rc1
1f20c2
1f20c2
* Tue Dec 04 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.7-5
1f20c2
- respin for openldap
1f20c2
1f20c2
* Mon Nov 12 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.7-4
1f20c2
- Requires: kde-filesystem (#377841)
1f20c2
1f20c2
* Wed Oct 03 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.7-3
1f20c2
- %%build: (re)add mkdir -p $HOME/.gnupg
1f20c2
1f20c2
* Wed Oct 03 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.7-2
1f20c2
- Requires: dirmngr (#312831)
1f20c2
1f20c2
* Mon Sep 10 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.7-1
1f20c2
- gnupg-2.0.7
1f20c2
1f20c2
* Fri Aug 24 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.6-2
1f20c2
- respin (libassuan)
1f20c2
1f20c2
* Thu Aug 16 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.6-1
1f20c2
- gnupg-2.0.6
1f20c2
- License: GPLv3+
1f20c2
1f20c2
* Thu Aug 02 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.5-4
1f20c2
- License: GPLv3
1f20c2
1f20c2
* Mon Jul 16 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.5-3
1f20c2
- 2.0.5 too many open files fix
1f20c2
1f20c2
* Fri Jul 06 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.5-2
1f20c2
- gnupg-2.0.5
1f20c2
- gpg-agent not restarted after kde session crash/killed (#196327)
1f20c2
- BR: libassuan-devel > 1.0.2, libksba-devel > 1.0.2
1f20c2
1f20c2
* Fri May 18 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.4-1
1f20c2
- gnupg-2.0.4
1f20c2
1f20c2
* Thu Mar 08 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.3-1
1f20c2
- gnupg-2.0.3
1f20c2
1f20c2
* Fri Feb 02 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.2-1
1f20c2
- gnupg-2.0.2
1f20c2
1f20c2
* Wed Dec 06 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.1-2
1f20c2
- CVE-2006-6235 (#219934)
1f20c2
1f20c2
* Wed Nov 29 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.1-1
1f20c2
- gnupg-2.0.1
1f20c2
- CVE-2006-6169 (#217950)
1f20c2
1f20c2
* Sat Nov 25 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.1-0.3.rc1
1f20c2
- gnupg-2.0.1rc1 
1f20c2
1f20c2
* Thu Nov 16 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.0-4
1f20c2
- update %%description
1f20c2
- drop dearmor patch
1f20c2
1f20c2
* Mon Nov 13 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.0-3
1f20c2
- BR: libassuan-static >= 1.0.0
1f20c2
1f20c2
* Mon Nov 13 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.0-2
1f20c2
- gnupg-2.0.0
1f20c2
1f20c2
* Fri Nov 10 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.95-3
1f20c2
- upstream 64bit patch
1f20c2
1f20c2
* Mon Nov 06 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.95-2
1f20c2
- fix (more) file conflicts with gnupg
1f20c2
1f20c2
* Mon Nov 06 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.95-1
1f20c2
- 1.9.95
1f20c2
1f20c2
* Wed Oct 25 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.94-1
1f20c2
- 1.9.94
1f20c2
1f20c2
* Wed Oct 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.93-1
1f20c2
- 1.9.93
1f20c2
1f20c2
* Wed Oct 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.92-2
1f20c2
- fix file conflicts with gnupg
1f20c2
1f20c2
* Wed Oct 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.92-1
1f20c2
- 1.9.92
1f20c2
1f20c2
* Tue Oct 10 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.91-4
1f20c2
- make check ||: (apparently checks return err even on success?)
1f20c2
1f20c2
* Tue Oct 10 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.91-3
1f20c2
- --enable-selinux-support
1f20c2
- x86_64: --disable-optimization (to avoid gpg2 segfaults), for now
1f20c2
1f20c2
* Thu Oct 05 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.91-1
1f20c2
- 1.9.91
1f20c2
1f20c2
* Wed Oct 04 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-8
1f20c2
- respin
1f20c2
1f20c2
* Tue Sep 26 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.90-1
1f20c2
- 1.9.90 (doesn't build, not released)
1f20c2
1f20c2
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.23-1
1f20c2
- 1.9.23 (doesn't build, not released)
1f20c2
1f20c2
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-7
1f20c2
- gpg-agent-startup.sh: fix case where valid .gpg-agent-info exists
1f20c2
1f20c2
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-6
1f20c2
- fix "syntax error in gpg-agent-startup.sh" (#206887)
1f20c2
1f20c2
* Thu Sep 07 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-3
1f20c2
- fc6 respin (for libksba-1.0)
1f20c2
1f20c2
* Tue Aug 29 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-2
1f20c2
- fc6 respin
1f20c2
1f20c2
* Fri Jul 28 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-1
1f20c2
- 1.9.22
1f20c2
1f20c2
* Thu Jun 22 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.21-3
1f20c2
- fix "gpg-agent not restarted after kde session crash/killed (#196327)
1f20c2
1f20c2
* Thu Jun 22 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.21-2
1f20c2
- 1.9.21
1f20c2
- omit gpg2 binary to address CVS-2006-3082 (#196190)
1f20c2
1f20c2
* Mon Mar  6 2006 Ville Skyttä <ville.skytta at iki.fi>> 1.9.20-3
1f20c2
- Don't hardcode pcsc-lite lib name (#184123)
1f20c2
1f20c2
* Thu Feb 16 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.20-2
1f20c2
- fc4+: use /etc/kde/(env|shutdown) for scripts (#175744)
1f20c2
1f20c2
* Fri Feb 10 2006 Rex Dieter <rexdieter[AT]users.sf.net>
1f20c2
- fc5: gcc/glibc respin
1f20c2
1f20c2
* Tue Dec 20 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.20-1
1f20c2
- 1.9.20
1f20c2
1f20c2
* Thu Dec 01 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.19-8
1f20c2
- include gpg-agent-(startup|shutdown) scripts (#136533)
1f20c2
- BR: libksba-devel >= 1.9.12 
1f20c2
- %%check: be permissive about failures (for now)
1f20c2
1f20c2
* Wed Nov 30 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.19-3
1f20c2
- BR: libksba-devel >= 1.9.13
1f20c2
1f20c2
* Tue Oct 11 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.19-2
1f20c2
- back to BR: libksba-devel = 1.9.11
1f20c2
1f20c2
* Tue Oct 11 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.19-1
1f20c2
- 1.9.19
1f20c2
1f20c2
* Fri Aug 26 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.18-9
1f20c2
- configure: NEED_KSBA_VERSION=0.9.12 -> 0.9.11
1f20c2
1f20c2
* Fri Aug 26 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.18-7
1f20c2
- re-enable 'make check', rebuild against (older) libksba-0.9.11
1f20c2
1f20c2
* Tue Aug  9 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.18-6
1f20c2
- don't 'make check' by default (regular builds pass, but FC4/5+plague fails)
1f20c2
1f20c2
* Mon Aug  8 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.18-5
1f20c2
- 1.9.18
1f20c2
- drop pth patch (--enable-gpg build fixed)
1f20c2
- update description (from README)
1f20c2
1f20c2
* Fri Jul  1 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.9.17-1
1f20c2
- 1.9.17, signal info patch applied upstream (#162264).
1f20c2
- Patch to fix lvalue build error with gcc4 (upstream #485).
1f20c2
- Patch scdaemon and pcsc-wrapper to load the versioned (non-devel)
1f20c2
  pcsc-lite lib by default.
1f20c2
1f20c2
* Fri May 13 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.9.16-3
1f20c2
- Include upstream's patch for signal.c.
1f20c2
1f20c2
* Tue May 10 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.9.16-1
1f20c2
- Merge changes from Rex's 1.9.16-1 (Thu Apr 21):
1f20c2
-   opensc support unconditional
1f20c2
-   remove hard-coded .gz from %%post/%%postun
1f20c2
-   add %%check section
1f20c2
-   add pth patch
1f20c2
- Put back patch modified from 1.9.15-4 to make tests verbose
1f20c2
  and change signal.c to describe received signals better.
1f20c2
1f20c2
* Sun May  8 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
1f20c2
- Drop patch0 again.
1f20c2
1f20c2
* Sun May  8 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.9.15-4
1f20c2
- Add patch0 temporarily to get some output from failing test.
1f20c2
1f20c2
* Sat May  7 2005 David Woodhouse <dwmw2@infradead.org> 1.9.15-3
1f20c2
- Rebuild.
1f20c2
1f20c2
* Thu Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
1f20c2
- rebuilt
1f20c2
1f20c2
* Tue Feb  1 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:1.9.15-1
1f20c2
- Make install-info in scriptlets less noisy.
1f20c2
1f20c2
* Tue Jan 18 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.15-0.fdr.1
1f20c2
- 1.9.15
1f20c2
1f20c2
* Fri Jan 07 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.14-0.fdr.2
1f20c2
- note patch/hack to build against older ( <1.0) libgpg-error-devel
1f20c2
1f20c2
* Thu Jan 06 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.14-0.fdr.1
1f20c2
- 1.9.14
1f20c2
- enable opensc support
1f20c2
- BR: libassuan-devel >= 0.6.9
1f20c2
1f20c2
* Thu Oct 21 2004 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.11-0.fdr.4
1f20c2
- remove suid.
1f20c2
1f20c2
* Thu Oct 21 2004 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.11-0.fdr.3
1f20c2
- remove Provides: newpg
1f20c2
1f20c2
* Wed Oct 20 2004 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.11-0.fdr.2
1f20c2
- Requires: pinentry
1f20c2
- gpg2 suid
1f20c2
- update description
1f20c2
1f20c2
* Tue Oct 19 2004 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.11-0.fdr.1
1f20c2
- first try
1f20c2
- leave out opensc support (for now), enable --with-opensc
1f20c2