Blame gnupg1.spec

a44e9b1
# add -fcommon to the flags until upstream fixes 'multiple definition ...' warnings
a44e9b1
%define _legacy_common_support 1
a44e9b1
Brian C. Lane 17fd59f
Summary: A GNU utility for secure communication and data storage
Brian C. Lane 17fd59f
Name: gnupg1
Brian C. Lane 17fd59f
Version: 1.4.23
a6e388d
Release: 14%{?dist}
Brian C. Lane 17fd59f
License: GPLv3+ with exceptions
Brian C. Lane 17fd59f
URL: http://www.gnupg.org/
Brian C. Lane 17fd59f
Source0: https://gnupg.org/ftp/gcrypt/gnupg/gnupg-%{version}.tar.bz2
Brian C. Lane 17fd59f
Source1: https://gnupg.org/ftp/gcrypt/gnupg/gnupg-%{version}.tar.bz2.sig
Brian C. Lane 17fd59f
Source2: gnupg-shm-coprocessing.expect
Brian C. Lane 17fd59f
Patch0000: gnupg-1.4.1-gcc.patch
Brian C. Lane 17fd59f
Patch0001: 0001-Rename-package-to-gnupg1-1656282.patch
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
BuildRequires: gcc
Brian C. Lane 17fd59f
# Requires autoconf >= 2.60 because earlier autoconf didn't define $localedir.
Brian C. Lane 17fd59f
BuildRequires: autoconf >= 2.60
Brian C. Lane 17fd59f
BuildRequires: git-core
Brian C. Lane 17fd59f
BuildRequires: automake, bzip2-devel, expect, ncurses-devel
Brian C. Lane 17fd59f
BuildRequires: openldap-devel, readline-devel, zlib-devel, gettext-devel
Brian C. Lane 17fd59f
BuildRequires: curl-devel
a6e388d
BuildRequires: make
Brian C. Lane 17fd59f
%ifnarch s390 s390x
Brian C. Lane 17fd59f
BuildRequires: libusb-devel
Brian C. Lane 17fd59f
%endif
Brian C. Lane 17fd59f
# pgp-tools, perl-GnuPG-Interface include 'Requires: gpg' -- Rex
Brian C. Lane 17fd59f
Provides: gpg1 = %{version}-%{release}
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
%description
Brian C. Lane 17fd59f
GnuPG (GNU Privacy Guard) is a GNU utility for encrypting data and
Brian C. Lane 17fd59f
creating digital signatures. GnuPG has advanced key management
Brian C. Lane 17fd59f
capabilities and is compliant with the proposed OpenPGP Internet
Brian C. Lane 17fd59f
standard described in RFC2440. Since GnuPG doesn't use any patented
Brian C. Lane 17fd59f
algorithm, it is not compatible with any version of PGP2 (PGP2.x uses
Brian C. Lane 17fd59f
only IDEA for symmetric-key encryption, which is patented worldwide).
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
%prep
Brian C. Lane 17fd59f
%autosetup -S git -n gnupg-%{version}
Brian C. Lane 17fd59f
# Convert these files to UTF-8, per rpmlint.
Brian C. Lane 17fd59f
iconv -f iso-8859-15 -t utf-8 THANKS > THANKS.utf8
Brian C. Lane 17fd59f
mv THANKS.utf8 THANKS
Brian C. Lane 17fd59f
git commit -a -m "run iconv"
Brian C. Lane 17fd59f
git tag -a %{name}-%{version} -m "baseline"
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
autoreconf -vif
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
%build
Brian C. Lane 17fd59f
configure_flags=
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
%ifarch ppc64 sparc64
Brian C. Lane 17fd59f
configure_flags=--disable-asm
Brian C. Lane 17fd59f
%endif
Brian C. Lane 17fd59f
2a15801
export CFLAGS="%{build_cflags} -DPIC"
Brian C. Lane 17fd59f
%configure \
Brian C. Lane 17fd59f
    --disable-rpath \
Brian C. Lane 17fd59f
    --disable-exec \
Brian C. Lane 17fd59f
    --with-zlib --enable-noexecstack \
Brian C. Lane 17fd59f
    $configure_flags
Brian C. Lane 17fd59f
%make_build
Brian C. Lane 17fd59f
env LANG=C expect -f %{SOURCE2}
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
%check
Brian C. Lane 17fd59f
make check
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
%install
Brian C. Lane 17fd59f
%make_install
Brian C. Lane 17fd59f
sed 's^\.\./g[0-9\.]*/^^g' tools/lspgpot > lspgpot
Brian C. Lane 17fd59f
install -pm755 lspgpot %{buildroot}%{_bindir}/lspgpot
Brian C. Lane 17fd59f
rm -f %{buildroot}/%{_infodir}/dir
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
# Rename the binaries
Brian C. Lane 17fd59f
for f in gpg gpgv gpg-zip gpgsplit; do
Brian C. Lane 17fd59f
    mv %{buildroot}%{_bindir}/${f} %{buildroot}%{_bindir}/${f}1
Brian C. Lane 17fd59f
done
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
# Rename the manpages
Brian C. Lane 17fd59f
for f in gpg gpgv gpg-zip; do
Brian C. Lane 17fd59f
    mv %{buildroot}%{_mandir}/man1/${f}.1 %{buildroot}%{_mandir}/man1/${f}1.1
Brian C. Lane 17fd59f
done
Brian C. Lane 17fd59f
%find_lang %{name}
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
%files -f %{name}.lang
Brian C. Lane 17fd59f
%license COPYING
Brian C. Lane 17fd59f
%doc AUTHORS BUGS NEWS PROJECTS README THANKS TODO
Brian C. Lane 17fd59f
%doc doc/DETAILS doc/HACKING doc/OpenPGP doc/samplekeys.asc
Brian C. Lane 17fd59f
%{_bindir}/gpg1
Brian C. Lane 17fd59f
%{_bindir}/gpgv1
Brian C. Lane 17fd59f
%{_bindir}/gpg-zip1
Brian C. Lane 17fd59f
%{_bindir}/gpgsplit1
Brian C. Lane 17fd59f
%{_bindir}/lspgpot
Brian C. Lane 17fd59f
%dir %{_datadir}/%{name}
Brian C. Lane 17fd59f
%{_datadir}/%{name}/FAQ
Brian C. Lane 17fd59f
%{_datadir}/%{name}/options.skel
5eb0df3
%{_infodir}/gnupg1.info.*
Brian C. Lane 17fd59f
%{_mandir}/man1/gpg-zip1.1.gz
Brian C. Lane 17fd59f
%{_mandir}/man1/gpg1.1.gz
Brian C. Lane 17fd59f
%{_mandir}/man1/gpgv1.1.gz
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
%changelog
a6e388d
* Tue Dec 01 2020 Brian C. Lane <bcl@redhat.com> - 1.4.23-14
a6e388d
- Add make to BuildRequires
a6e388d
9713be4
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-13
9713be4
- Second attempt - Rebuilt for
9713be4
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
9713be4
931d132
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-12
931d132
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
931d132
a44e9b1
* Thu Feb 06 2020 Brian C. Lane <bcl@redhat.com> - 1.4.23-11
a44e9b1
- Add -fcommon to the flags to avoid the GCC 10 'multiple definition of ...' warnings
a44e9b1
  Resolves: rhbz#1799431
a44e9b1
880fd43
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-10
880fd43
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
880fd43
5443c21
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-9
5443c21
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
5443c21
5eb0df3
* Wed Apr 24 2019 Björn Esser <besser82@fedoraproject.org> - 1.4.23-8
5eb0df3
- Remove hardcoded gzip suffix from GNU info pages
5eb0df3
a18fbbb
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.23-7
a18fbbb
- Rebuild for readline 8.0
a18fbbb
960c05d
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-6
960c05d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
960c05d
2a15801
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.23-5
2a15801
- Pass -DPIC to CFLAGS
2a15801
ff94e23
* Sat Dec 08 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.23-4
ff94e23
- Use CFLAGS/LDFLAGS provided by RPM
ff94e23
Brian C. Lane 17fd59f
* Wed Dec 05 2018 Brian C. Lane <bcl@redhat.com> - 1.4.23-3
Brian C. Lane 17fd59f
- Rename the package to gnupg1 (#1656282)
Brian C. Lane 17fd59f
- Rename the binarys to gpg1, gpgv1, gpg-zip1, gpgsplit1 (#1656282)
Brian C. Lane 17fd59f
- Remove keyserver support at the suggestion of upstream (#1656282)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-2
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Jun 15 2018 Brian C. Lane <bcl@redhat.com> - 1.4.23-1
Brian C. Lane 17fd59f
- New upstream v1.4.23 (#1589802,#1589620,#1589624)
Brian C. Lane 17fd59f
- Remove patches included in upstream release
Brian C. Lane 17fd59f
- Note that this includes the fix for [CVE-2018-12020]
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Jun 08 2018 Brian C. Lane <bcl@redhat.com> - 1.4.22-7
Brian C. Lane 17fd59f
- doc Remove documentation for future option faked sys
Brian C. Lane 17fd59f
- build Don't use dev srandom on OpenBSD
Brian C. Lane 17fd59f
- Do not use C99 feature
Brian C. Lane 17fd59f
- g10 Fix regexp sanitization
Brian C. Lane 17fd59f
- g10 Push compress filter only if compressed
Brian C. Lane 17fd59f
- gpg Sanitize diagnostic with the original file name [CVE-2018-12020]
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Feb 19 2018 Brian C. Lane <bcl@redhat.com> - 1.4.22-6
Brian C. Lane 17fd59f
- Add gcc BuildRequires for future minimal buildroot support
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.22-5
Brian C. Lane 17fd59f
- Escape macros in %%changelog
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.22-4
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.22-3
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.22-2
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Jul 20 2017 Brian C. Lane <bcl@redhat.com> - 1.4.22-1
Brian C. Lane 17fd59f
- Removed workaround for ARM build problems fixed by upstream.
Brian C. Lane 17fd59f
- Switch to using %%autosetup macro
Brian C. Lane 17fd59f
- Update Source to use https instead of ftp
Brian C. Lane 17fd59f
- New upstream v1.4.22
Brian C. Lane 17fd59f
- build: Avoid check gpg --version during make distcheck. (wk)
Brian C. Lane 17fd59f
- indent: Fix indentation of an if block. (wk)
Brian C. Lane 17fd59f
- gpg: Fix memory leak. (gniibe)
Brian C. Lane 17fd59f
- rsa: Reduce secmem pressure. (gniibe)
Brian C. Lane 17fd59f
- rsa: Allow different build directory. (gniibe)
Brian C. Lane 17fd59f
- rsa: Add exponent blinding. (mb)
Brian C. Lane 17fd59f
- mpi: Minor fix for mpi_pow. (gniibe)
Brian C. Lane 17fd59f
- mpi: Same computation for square and multiply for mpi_pow. (gniibe)
Brian C. Lane 17fd59f
- mpi: Simplify mpi_powm. (gniibe)
Brian C. Lane 17fd59f
- mpi: Fix ARM assembler in longlong.h. (marcus.brinkmann) (#1424619)
Brian C. Lane 17fd59f
- g10: Fix secmem leak. (ineiev)
Brian C. Lane 17fd59f
- gpg: Fix exporting of zero length user ID packets. (wk)
Brian C. Lane 17fd59f
- tools: Fix option parsing for gpg-zip. (neal)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon May 15 2017 Brian C. Lane <bcl@redhat.com> - 1.4.21-4
Brian C. Lane 17fd59f
+ Build with -O1 on arm to work around gcc problems with -O2 in rhbz#1424619
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.21-3
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.4.21-2
Brian C. Lane 17fd59f
- Rebuild for readline 7.x
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Aug 22 2016 Brian C. Lane <bcl@redhat.com> - 1.4.21-1
Brian C. Lane 17fd59f
- New upstream v1.4.21
Brian C. Lane 17fd59f
- Fix critical security bug in the RNG [CVE-2016-6313] (#1366105)
Brian C. Lane 17fd59f
- Tweak default options for gpgv
Brian C. Lane 17fd59f
- By default do not anymore emit the GnuPG version with --armor
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.20-2
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Dec 21 2015 Brian C. Lane <bcl@redhat.com> 1.4.20-1
Brian C. Lane 17fd59f
- New upstream v1.4.20 (#1293112)
Brian C. Lane 17fd59f
- Reject signatures made using the MD5 hash algorithm unless the new option --allow-weak-digest-algos or --pgp2 are given.
Brian C. Lane 17fd59f
- New option --weak-digest to specify hash algorithms which should be considered weak.
Brian C. Lane 17fd59f
- Changed default cipher for symmetric-only encryption to AES-128.
Brian C. Lane 17fd59f
- Fix for DoS when importing certain garbled secret keys.
Brian C. Lane 17fd59f
- Improved error reporting for secret subkey w/o corresponding public subkey.
Brian C. Lane 17fd59f
- Improved error reporting in decryption due to wrong algorithm.
Brian C. Lane 17fd59f
- Fix cluttering of stdout with trustdb info in double verbose mode.
Brian C. Lane 17fd59f
- Pass a DBUS envvar to gpg-agent for use by gnome-keyring.
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.19-3
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jun 15 2015 Brian C. Lane <bcl@redhat.com> 1.4.19-2
Brian C. Lane 17fd59f
- Bump release so f20 version doesn't break upgrade path (#1231428)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb 27 2015 Brian C. Lane <bcl@redhat.com> 1.4.19-1
Brian C. Lane 17fd59f
- New upstream v1.4.19
Brian C. Lane 17fd59f
- Use ciphertext blinding for Elgamal decryption [CVE-2014-3591]
Brian C. Lane 17fd59f
- Fixed data-dependent timing variations in modular exponentiation [related to CVE-2015-0837]
Brian C. Lane 17fd59f
- Drop patches now included upstream
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Oct 17 2014 Brian C. Lane <bcl@redhat.com> 1.4.18-4
Brian C. Lane 17fd59f
- Add kbnode_t needed for import filter patch
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Oct 16 2014 Brian C. Lane <bcl@redhat.com> 1.4.18-3
Brian C. Lane 17fd59f
- Adding patch for rhbz#1127013 / issue1680 - import filter too strict
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.18-2
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jun 30 2014 Brian C. Lane <bcl@redhat.com> 1.4.18-1
Brian C. Lane 17fd59f
- New upstream v1.4.18
Brian C. Lane 17fd59f
- Fix a regression in 1.4.17 if more than one keyid is given to --recv-keys et al.
Brian C. Lane 17fd59f
- Cap RSA and Elgamal keysize at 4096 bit also for unattended key generation.
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jun 23 2014 Brian C. Lane <bcl@redhat.com> 1.4.17-1
Brian C. Lane 17fd59f
- New upstream v1.4.17
Brian C. Lane 17fd59f
- Avoid DoS due to garbled compressed data packets.
Brian C. Lane 17fd59f
- Screen keyserver reponses to avoid import of unwanted keys by rogue servers.
Brian C. Lane 17fd59f
- Add hash algorithms to the "sig" records of the colon output.
Brian C. Lane 17fd59f
- More specific reason codes for INV_RECP status.
Brian C. Lane 17fd59f
- Drop gpg.ru.1
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.16-5
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Feb 27 2014 Brian C. Lane <bcl@redhat.com> 1.4.16-4
Brian C. Lane 17fd59f
- Cleanup some autoreconf complaints
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Sat Dec 21 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.4.16-3
Brian C. Lane 17fd59f
- Drop INSTALL from docs.
Brian C. Lane 17fd59f
- Fix bogus dates in %%changelog.
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Dec 18 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.16-2
Brian C. Lane 17fd59f
- New upstream v1.4.16
Brian C. Lane 17fd59f
  fixes for CVE-2013-4576
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Oct 07 2013 Brian C. Lane <bcl@redhat.com> 1.4.15-1
Brian C. Lane 17fd59f
- New upstream v1.4.15
Brian C. Lane 17fd59f
  fixes for CVE-2013-4402 (#1015967)
Brian C. Lane 17fd59f
  fixes for CVE-2013-4351 (#1010140)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jul 29 2013 Brian C. Lane <bcl@redhat.com> 1.4.14-1
Brian C. Lane 17fd59f
- New upstream v1.4.14
Brian C. Lane 17fd59f
  fixes for CVE-2013-4242 (#988592)
Brian C. Lane 17fd59f
  includes fix for build on big-endian arches
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Sat Jan 26 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.13-3
Brian C. Lane 17fd59f
- Add -vif to autoreconf to fix build failure
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jan 07 2013 Dan Horák <dan[at]danny.cz> 1.4.13-2
Brian C. Lane 17fd59f
- fix build on big-endian arches (gnupg bug #1461)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jan 02 2013 Brian C. Lane <bcl@redhat.com> 1.4.13-1
Brian C. Lane 17fd59f
- New upstream v1.4.13
Brian C. Lane 17fd59f
  fixes for CVE-2012-6085 (#891142)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.12-2
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jan 30 2012 Brian C. Lane <bcl@redhat.com> - 1.4.12-1
Brian C. Lane 17fd59f
- New upstream v1.4.12
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-4
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-3
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Oct 20 2010 Brian C. Lane <bcl@redhat.com> 1.4.11-2
Brian C. Lane 17fd59f
- Added ownership of %%dir %%{_libexecdir}/gnupg (#644576)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Oct 18 2010 Brian C. Lane <bcl@redhat.com> 1.4.11-1
Brian C. Lane 17fd59f
- New upstream v1.4.11
Brian C. Lane 17fd59f
- Dropped patch gnupg-1.4.6-dir.patch, now in upstream
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul 21 2010 Brian C. Lane <bcl@redhat.com> 1.4.10-2
Brian C. Lane 17fd59f
- Reviving gnupg 1.x series for F-13, F-14 and rawhide
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Sep  2 2009 Nalin Dahyabhai <nalin@redhat.com> 1.4.10-1
Brian C. Lane 17fd59f
- update to 1.4.10
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-6
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-5
Brian C. Lane 17fd59f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Feb 19 2009 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- switch from %%{_libdir}/%%{name} as libexecdir to regular old %%{_libexecdir}
Brian C. Lane 17fd59f
  (part of #225847)
Brian C. Lane 17fd59f
- remove explicit configure arguments to use bzip2 and readline, which are
Brian C. Lane 17fd59f
  the default and trigger errors when not present, but continue to explicitly
Brian C. Lane 17fd59f
  request zlib so that we don't fall back to the internal one if something
Brian C. Lane 17fd59f
  ever looks "off" about the system copy (part of #225847)
Brian C. Lane 17fd59f
- convert the ru manual and doc files to UTF-8 (the ones which aren't already,
Brian C. Lane 17fd59f
  rpmlint)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Jul 22 2008 Nalin Dahyabhai <nalin@redhat.com> - 1.4.9-4
Brian C. Lane 17fd59f
- describe license as actually GPLv3+ with exceptions rather than just GPLv3+
Brian C. Lane 17fd59f
  (Todd Zullinger, #447772)
Brian C. Lane 17fd59f
- drop unneeded patch to use gpgkeys_ldap for ldaps: URLs (#447772)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue May 27 2008 Nalin Dahyabhai <nalin@redhat.com> - 1.4.9-3
Brian C. Lane 17fd59f
- note license is actually GPLv3+ rather than just GPLv3 (Todd Zullinger,
Brian C. Lane 17fd59f
  #447772)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Sat May 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.4.9-2
Brian C. Lane 17fd59f
- fix build failure with curl-7.18.1+ and gcc-4.3+ (#447772)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon May 19 2008 Dennis Gilmore <dennis@ausil.us> - 1.4.9-1.1
Brian C. Lane 17fd59f
- rebuild for sparc
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Mar 26 2008 Nalin Dahyabhai <nalin@redhat.com> - 1.4.9-1
Brian C. Lane 17fd59f
- update to 1.4.9 to fix a possible vulnerability in 1.4.8
Brian C. Lane 17fd59f
- add a disttag
Brian C. Lane 17fd59f
- drop patch to let us specify a dependent library for readline, as the
Brian C. Lane 17fd59f
  readline package now links with its dependency
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Mar 26 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.4.8-5
Brian C. Lane 17fd59f
- drop Provides: openpgp
Brian C. Lane 17fd59f
- versioned Provides: gpg
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Mar 26 2008 Dennis Gilmore <dennis@ausil.us> - 1.4.8-4
Brian C. Lane 17fd59f
- disable asm on sparc64 
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com> - 1.4.8-3
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.8-2
Brian C. Lane 17fd59f
- Autorebuild for GCC 4.3
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Dec 20 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.8-1
Brian C. Lane 17fd59f
- update to 1.4.8, noting license change to GPLv3
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Dec 04 2007 Rex Dieter <rdieter[AT]fedoraproject.org> - 1.4.7-8
Brian C. Lane 17fd59f
- respin for openldap
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Aug 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.7-7
Brian C. Lane 17fd59f
- clarify license
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Mar  9 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.7-6
Brian C. Lane 17fd59f
- require autoconf >= 2.60, noting that we need it to define $localedir, to
Brian C. Lane 17fd59f
  avoid cases where using older versions causes gnupg to not be able to find
Brian C. Lane 17fd59f
  locale data (#231595)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Mar  5 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.7-3
Brian C. Lane 17fd59f
- update to 1.4.7, changing the default to not allow multiple plaintexts in
Brian C. Lane 17fd59f
  a single stream
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Feb 27 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.6-4
Brian C. Lane 17fd59f
- flip the switch on libtermcap/ncurses (#230187)
Brian C. Lane 17fd59f
- rpmlint fixups
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Dec  6 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.6-3
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Dec  6 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.6-2
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Dec  6 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.6-1
Brian C. Lane 17fd59f
- update to 1.4.6, incorporating fixes for CVE-2006-6169 and CVE-2006-6235
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Dec  5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-13
Brian C. Lane 17fd59f
- apply the termlib patch again
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Dec  5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-12
Brian C. Lane 17fd59f
- don't apply the non-security termlib patch
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Dec  5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-11
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Dec  5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-10
Brian C. Lane 17fd59f
- incorporate patch from Werner to fix use of stack variable after it goes
Brian C. Lane 17fd59f
  out of scope (CVE-2006-6235, #218483)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Dec  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-9
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
- give configure a --with-termlib option which can be used to force the
Brian C. Lane 17fd59f
  selection of libtermcap or libncurses, but don't flip the switch yet
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Dec  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-8
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Dec  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-7
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Dec  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-6
Brian C. Lane 17fd59f
- add patch for overflow in openfile.c from Werner's mail
Brian C. Lane 17fd59f
  (CVE-2006-6169, #218506)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Oct 31 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-5
Brian C. Lane 17fd59f
- rebuild against current libcurl
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 1.4.5-4
Brian C. Lane 17fd59f
- rebuilt with latest binutils to pick up 64K -z commonpagesize on ppc*
Brian C. Lane 17fd59f
  (#203001)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Aug  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-3
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Aug  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-2
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
- reenable curl support
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Aug  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-1
Brian C. Lane 17fd59f
- update to 1.4.5, fixing additional size overflows in packet parsing (#200904,
Brian C. Lane 17fd59f
  CVE-2006-3746)
Brian C. Lane 17fd59f
- temporarily disable curl support again
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Jul 28 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4.90-1
Brian C. Lane 17fd59f
- update to 1.4.5rc1 to check for build problems, but mark it as 1.4.4.90
Brian C. Lane 17fd59f
  to avoid looking "newer" than the eventual 1.4.5
Brian C. Lane 17fd59f
- because we call aclocal, buildrequire gettext-devel to get AM_GNU_GETTEXT
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Jul 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-7
Brian C. Lane 17fd59f
- add BuildPrereq on curl-devel to get curl's ipv6 support (#198375)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul 12 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-6
Brian C. Lane 17fd59f
- fix a cast in gpgkeys_hkp to avoid tripping stack smashing or buffer overflow
Brian C. Lane 17fd59f
  detection (#198612)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.4.4-5.1
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul  5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-5
Brian C. Lane 17fd59f
- try again using per-platform buildprereq (jkeating)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul  5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-4
Brian C. Lane 17fd59f
- buildprereq libusb-devel, so that we get CCID support back (#197450)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jun 26 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-3
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jun 26 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-2
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jun 26 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-1
Brian C. Lane 17fd59f
- update to 1.4.4
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Jun 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-5
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Jun 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-4
Brian C. Lane 17fd59f
- add patch from upstream to fix CVE-2006-3082 (#195946)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Apr 11 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-3
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Apr 11 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-2
Brian C. Lane 17fd59f
- apply patch from David Shaw to try multiple defaults if the the photo-viewer
Brian C. Lane 17fd59f
  option isn't set (fixes #187880)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Mar 10 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-1
Brian C. Lane 17fd59f
- update to 1.4.3
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Mar 10 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.2-2
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Mar 10 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.2-1
Brian C. Lane 17fd59f
- update to 1.4.2.2 to fix detection of unsigned data (CVE-2006-0049, #185111)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Feb 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.1-4
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Feb 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.1-3
Brian C. Lane 17fd59f
- add patch from David Shaw to fix error reading keyrings created with older
Brian C. Lane 17fd59f
  versions of GnuPG (Enrico Scholz, #182163)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Feb 15 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.1-2
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Feb 15 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.1-1
Brian C. Lane 17fd59f
- update to 1.4.2.1 (fixes CVE-2006-0455)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.4.2-3.2.1
Brian C. Lane 17fd59f
- bump again for double-long bug on ppc(64)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.4.2-3.2
Brian C. Lane 17fd59f
- rebuilt for new gcc4.1 snapshot and glibc changes
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
Brian C. Lane 17fd59f
- rebuilt
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Aug  9 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-3
Brian C. Lane 17fd59f
- don't override libexecdir any more; we don't need to (#165462)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Aug  4 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-2
Brian C. Lane 17fd59f
- pull in David Shaw's fix for key generation in batch mode
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Jul 29 2005 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- change %%post to check if the info files are there before attempting to
Brian C. Lane 17fd59f
  add or remove them from the info index (#91641)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul 27 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-1
Brian C. Lane 17fd59f
- update to 1.4.2
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu May  5 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-3
Brian C. Lane 17fd59f
- fix the execstack problem correctly this time (arjanv)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Apr 28 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-2
Brian C. Lane 17fd59f
- add -Wa,--noexecstack back to CFLAGS when invoking configure, the
Brian C. Lane 17fd59f
  --enable-noexecstack flag only seems to affect asm modules
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-1
Brian C. Lane 17fd59f
- update to 1.4.1
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Mar  8 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.0-2
Brian C. Lane 17fd59f
- build asm modules with -Wa,--noexecstack
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jan 24 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.0-1
Brian C. Lane 17fd59f
- comment out libusb-devel req for now so that we can build
Brian C. Lane 17fd59f
- build the mpi asm modules with gcc, not a cpp/as setup so that we don't end
Brian C. Lane 17fd59f
  up with text relocations in the resulting binaries (#145836)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Dec 22 2004 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- update to 1.4.0
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Nov  1 2004 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- add a pile of buildprereq
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Nov  1 2004 Robert Scheck <redhat@linuxnetz.de> 1.2.6-2
Brian C. Lane 17fd59f
- set LANG=C before running shm coprocessing build-time check (#129873)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Aug 26 2004 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-1
Brian C. Lane 17fd59f
- update to 1.2.6
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Jul 27 2004 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- update to 1.2.5
Brian C. Lane 17fd59f
- reenable optimization on ppc64
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
Brian C. Lane 17fd59f
- rebuilt
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
Brian C. Lane 17fd59f
- rebuilt
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
Brian C. Lane 17fd59f
- rebuilt
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb  6 2004 Nalin Dahyabhai <nalin@redhat.com> 1.2.4-1
Brian C. Lane 17fd59f
- update to 1.2.4, dropping separate ElGamal disabling patch
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Dec 12 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-3
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Dec  1 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-2
Brian C. Lane 17fd59f
- incorporate patch from gnupg-announce which removes the ability to create
Brian C. Lane 17fd59f
  ElGamal encrypt+sign keys or to sign messages with such keys
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Oct 27 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-1
Brian C. Lane 17fd59f
- use -fPIE instead of -fpie because some arches need it
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Oct 27 2003 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- build gnupg as a position-independent executable (Arjan van de Ven)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Aug 25 2003 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- add Werner's key as a source file
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Aug 22 2003 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- update to 1.2.3
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Jun 19 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-3
Brian C. Lane 17fd59f
- disable asm and optimization on ppc64
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Jun 13 2003 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- add a build-time check to ensure that shm coprocessing was enabled
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
Brian C. Lane 17fd59f
- rebuilt
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon May  5 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-1
Brian C. Lane 17fd59f
- update to 1.2.2, fixing CAN-2003-0255
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu May  1 2003 Elliot Lee <sopwith@redhat.com> 1.2.1-5
Brian C. Lane 17fd59f
- Add ppc64 patch to fix up global symbol names in assembly
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb 28 2003 Kevin Sonney <ksonney@redhat.com> 1.2.1-4
Brian C. Lane 17fd59f
- remove autoconf call on sparc
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb  7 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.1-3
Brian C. Lane 17fd59f
- modify g10defs to look for helpers in libexecdir, because that's where they
Brian C. Lane 17fd59f
  get installed, per gnupg-users
Brian C. Lane 17fd59f
- actually drop updates for 1.0.7 which are no longer needed for 1.2.1
Brian C. Lane 17fd59f
  
Brian C. Lane 17fd59f
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
Brian C. Lane 17fd59f
- rebuilt
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Oct 28 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.1-1
Brian C. Lane 17fd59f
- update to 1.2.1
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Sep 24 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.0-1
Brian C. Lane 17fd59f
- update to 1.2.0
Brian C. Lane 17fd59f
- stop stripping files manually, let the buildroot policies handle it
Brian C. Lane 17fd59f
- add translations updates ca and fr
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Aug 27 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.7-6
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul 24 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.7-5
Brian C. Lane 17fd59f
- specify a menu entry when installing info pages
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul 24 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.7-4
Brian C. Lane 17fd59f
- add and install info pages (#67931)
Brian C. Lane 17fd59f
- don't include two copies of the faq, add new doc files (#67931)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
Brian C. Lane 17fd59f
- automated rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Sun May 26 2002 Tim Powers <timp@redhat.com>
Brian C. Lane 17fd59f
- automated rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Apr 30 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.7-1
Brian C. Lane 17fd59f
- update to 1.0.7
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb 22 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.6-5
Brian C. Lane 17fd59f
- rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jan 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.6-4
Brian C. Lane 17fd59f
- make the codeset patch unconditional
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Aug  9 2001 Nalin Dahyabhai <nalin@redhat.com> 1.0.6-3
Brian C. Lane 17fd59f
- set message output encoding to match the message encoding, based on a
Brian C. Lane 17fd59f
  patch by goeran@uddeborg.pp.se (#49182)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com> 1.0.6-2
Brian C. Lane 17fd59f
- Bump release + rebuild.
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed May 30 2001 Nalin Dahyabhai <nalin@redhat.com> 1.0.6-1
Brian C. Lane 17fd59f
- update to 1.0.6, fixes format string exploit
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Apr 30 2001 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- update to 1.0.5, dropping various patches
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Feb 27 2001 Trond Eivind Glomsrød <teg@redhat.com>
Brian C. Lane 17fd59f
- langify
Brian C. Lane 17fd59f
- strip binaries in /usr/lib/gnupg
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Feb 27 2001 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- fix the group
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Dec 18 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- go with this version -- 1.0.4c includes a lot of changes beyond just the
Brian C. Lane 17fd59f
  two security fixes
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Dec 14 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- add the --allow-secret-key-import patch from CVS in case we don't get a 1.0.5
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Dec  8 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- build as an errata for 7
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Dec  1 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- add a security patch for a problem with detached signature verification...
Brian C. Lane 17fd59f
  might hold off for an impending 1.0.5, though
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Oct 19 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- fix a bug preventing creation of .gnupg directories
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Oct 18 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- add patch to recognize AES signatures properly (#19312)
Brian C. Lane 17fd59f
- add gpgv to the package
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Oct 17 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- update to 1.0.4 to get security fix
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- fix man page typos (#18797)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Sep 21 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- update to 1.0.3
Brian C. Lane 17fd59f
- switch to bundled copy of the man page
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Aug 30 2000 Matt Wilson <msw@redhat.com>
Brian C. Lane 17fd59f
- rebuild to cope with glibc locale binary incompatibility, again
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- revert locale patch (#16222)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- set all locale data instead of LC_MESSAGES and LC_TIME (#16222)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Sun Jul 23 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- update to 1.0.2
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
Brian C. Lane 17fd59f
- rebuild to cope with glibc locale binary incompatibility
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
Brian C. Lane 17fd59f
- automatic rebuild
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Wed Jul 12 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- include lspgpot (#13772)
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Mon Jun  5 2000 Nalin Dahyabhai <nalin@redhat.com>
Brian C. Lane 17fd59f
- rebuild in new build environment
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Feb 18 2000 Bill Nottingham <notting@redhat.com>
Brian C. Lane 17fd59f
- build of 1.0.1
Brian C. Lane 17fd59f
Brian C. Lane 17fd59f
* Fri Sep 10 1999 Cristian Gafton <gafton@redhat.com>
Brian C. Lane 17fd59f
- version 1.0.0 build for 6.1us