Blame SPECS/gpgme.spec

c440c0
%bcond_without check
c440c0
c440c0
%if 0%{?rhel} > 7
c440c0
# Disable python2 build by default
c440c0
%bcond_with python2
c440c0
%else
c440c0
%bcond_without python2
c440c0
%endif
c440c0
c440c0
# trim changelog included in binary rpms
c440c0
%global _changelog_trimtime %(date +%s -d "1 year ago")
c440c0
c440c0
# STATUS_KEY_CONSIDERED has been added in 2.1.13
c440c0
%global gnupg2_min_ver 2.1.13
c440c0
%global libgpg_error_min_ver 1.24
c440c0
c440c0
Name:           gpgme
c440c0
Summary:        GnuPG Made Easy - high level crypto API
c440c0
Version:        1.13.1
e5c2f2
Release:        7%{?dist}
c440c0
e5c2f2
License:        LGPLv2+ and MIT
c440c0
URL:            https://gnupg.org/related_software/gpgme/
c440c0
Source0:        https://gnupg.org/ftp/gcrypt/gpgme/gpgme-%{version}.tar.bz2
c440c0
Source2:        gpgme-multilib.h
c440c0
c440c0
## downstream patches
c440c0
# Don't add extra libs/cflags in gpgme-config/cmake equivalent
c440c0
Patch1001:      0001-don-t-add-extra-libraries-for-linking.patch
c440c0
# add -D_FILE_OFFSET_BITS... to gpgme-config, upstreamable
c440c0
Patch1002:      gpgme-1.3.2-largefile.patch
c440c0
# Let's fix stupid AX_PYTHON_DEVEL
c440c0
Patch1003:      0001-fix-stupid-ax_python_devel.patch
c440c0
# Fix resource leaks discovered by static code analyzer
c440c0
Patch1004:      gpgme-1.13.1-fix-resource-leaks.patch
c440c0
# Make the make check work with gnupg-2.2.19 and above
c440c0
Patch1005:      gpgme-build-with-gnupg-2.2.19.patch
e5c2f2
# Fix NULL dereference
e5c2f2
Patch1006:      gpgme-1.13.1-fix-null-deref.patch
c440c0
c440c0
#BuildRequires:  autoconf
c440c0
#BuildRequires:  automake
c440c0
BuildRequires:  gcc
c440c0
BuildRequires:  gcc-c++
c440c0
BuildRequires:  gawk
c440c0
BuildRequires:  gnupg2 >= %{gnupg2_min_ver}
c440c0
BuildRequires:  gnupg2-smime
c440c0
BuildRequires:  libgpg-error-devel >= %{libgpg_error_min_ver}
c440c0
BuildRequires:  libassuan-devel >= 2.4.2
c440c0
c440c0
# For python bindings
c440c0
BuildRequires:  swig
c440c0
c440c0
# to remove RPATH
c440c0
BuildRequires:  chrpath
c440c0
c440c0
# For AutoReq cmake-filesystem
c440c0
BuildRequires:  cmake
c440c0
c440c0
Requires:       gnupg2 >= %{gnupg2_min_ver}
c440c0
c440c0
# On the following architectures workaround multiarch conflict of -devel packages:
c440c0
%define multilib_arches %{ix86} x86_64 ia64 ppc ppc64 s390 s390x %{sparc}
c440c0
c440c0
%description
c440c0
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
c440c0
easier for applications.  It provides a high-level crypto API for
c440c0
encryption, decryption, signing, signature verification and key
c440c0
management.
c440c0
c440c0
%package devel
c440c0
Summary:        Development headers and libraries for %{name}
c440c0
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
Requires:       libgpg-error-devel%{?_isa} >= %{libgpg_error_min_ver}
c440c0
Requires(post): /sbin/install-info
c440c0
Requires(postun): /sbin/install-info
c440c0
c440c0
%description devel
c440c0
%{summary}.
c440c0
c440c0
%package -n %{name}pp
c440c0
Summary:        C++ bindings/wrapper for GPGME
c440c0
Obsoletes:      gpgme-pp < 1.8.0-7
c440c0
Provides:       gpgme-pp = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
Provides:       gpgme-pp%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
c440c0
%description -n %{name}pp
c440c0
%{summary}.
c440c0
c440c0
%package -n %{name}pp-devel
c440c0
Summary:        Development libraries and header files for %{name}-pp
c440c0
Obsoletes:      gpgme-pp-devel < 1.8.0-7
c440c0
Provides:       gpgme-pp-devel = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
Provides:       gpgme-pp-devel%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
Requires:       %{name}pp%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
Requires:       %{name}-devel%{?_isa}
c440c0
# For automatic provides
c440c0
BuildRequires:  cmake
c440c0
c440c0
%description -n %{name}pp-devel
c440c0
%{summary}
c440c0
c440c0
%package -n q%{name}
c440c0
Summary:        Qt API bindings/wrapper for GPGME
c440c0
Requires:       %{name}pp%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
a2b37b
# This is probably redundant, but it satisfies RPMDIFF:
a2b37b
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
BuildRequires:  pkgconfig(Qt5Core)
c440c0
BuildRequires:  pkgconfig(Qt5Test)
c440c0
c440c0
%description -n q%{name}
c440c0
%{summary}.
c440c0
c440c0
%package -n q%{name}-devel
c440c0
Summary:        Development libraries and header files for %{name}
c440c0
# before libqgpgme.so symlink was moved to avoid conflict
c440c0
Conflicts:      kdepimlibs-devel < 4.14.10-17
c440c0
Requires:       q%{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
Requires:       %{name}pp-devel%{?_isa}
c440c0
# For automatic provides
c440c0
BuildRequires:  cmake
c440c0
c440c0
%description -n q%{name}-devel
c440c0
%{summary}.
c440c0
c440c0
%if %{with python2}
c440c0
%package -n python2-gpg
c440c0
Summary:        %{name} bindings for Python 2
c440c0
%{?python_provide:%python_provide python2-gpg}
c440c0
BuildRequires:  python2-devel
c440c0
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
c440c0
%description -n python2-gpg
c440c0
%{summary}.
c440c0
%endif # without python2
c440c0
c440c0
%package -n python3-gpg
c440c0
Summary:        %{name} bindings for Python 3
c440c0
%{?python_provide:%python_provide python3-gpg}
c440c0
BuildRequires:  python3-devel
c440c0
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
c440c0
c440c0
%description -n python3-gpg
c440c0
%{summary}.
c440c0
c440c0
%prep
c440c0
%autosetup -p1
c440c0
c440c0
## HACK ALERT
c440c0
# The config script already suppresses the -L if it's /usr/lib, so cheat and
c440c0
# set it to a value which we know will be suppressed.
c440c0
sed -i -e 's|^libdir=@libdir@$|libdir=@exec_prefix@/lib|g' src/gpgme-config.in
c440c0
c440c0
%build
c440c0
#./autogen.sh
c440c0
%configure --disable-static --disable-silent-rules \
c440c0
 --enable-languages=cpp,qt,python
c440c0
c440c0
%make_build
c440c0
c440c0
%install
c440c0
%make_install
c440c0
c440c0
# unpackaged files
c440c0
rm -fv %{buildroot}%{_infodir}/dir
c440c0
rm -fv %{buildroot}%{_libdir}/lib*.la
c440c0
rm -fv %{buildroot}%{_libdir}/pkgconfig/%{name}*.pc
c440c0
c440c0
# Hack to resolve multiarch conflict (#341351)
c440c0
%ifarch %{multilib_arches}
c440c0
mv %{buildroot}%{_bindir}/gpgme-config{,.%{_target_cpu}}
c440c0
cat > gpgme-config-multilib.sh <<__END__
c440c0
#!/bin/sh
c440c0
exec %{_bindir}/gpgme-config.\$(arch) \$@
c440c0
__END__
c440c0
install -D -p gpgme-config-multilib.sh %{buildroot}%{_bindir}/gpgme-config
c440c0
mv %{buildroot}%{_includedir}/gpgme.h \
c440c0
   %{buildroot}%{_includedir}/gpgme-%{__isa_bits}.h
c440c0
install -m644 -p -D %{SOURCE2} %{buildroot}%{_includedir}/gpgme.h
c440c0
%endif
c440c0
chrpath -d %{buildroot}%{_bindir}/%{name}-tool
c440c0
chrpath -d %{buildroot}%{_libdir}/lib%{name}pp.so*
c440c0
chrpath -d %{buildroot}%{_libdir}/libq%{name}.so*
c440c0
c440c0
# autofoo installs useless stuff for uninstall
c440c0
%if %{with python2}
c440c0
rm -vf %{buildroot}%{python2_sitelib}/gpg/install_files.txt
c440c0
%endif # with python2
c440c0
rm -vf %{buildroot}%{python3_sitelib}/gpg/install_files.txt
c440c0
c440c0
%if %{with check}
c440c0
%check
c440c0
make check
c440c0
%endif
c440c0
c440c0
%ldconfig_scriptlets
c440c0
c440c0
%files
c440c0
%license COPYING*
c440c0
%doc AUTHORS ChangeLog NEWS README* THANKS TODO VERSION
c440c0
%{_libdir}/lib%{name}.so.11*
c440c0
%{_bindir}/%{name}-json
c440c0
c440c0
%post devel
c440c0
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir 2>/dev/null || :
c440c0
c440c0
%preun devel
c440c0
if [ $1 -eq 0 ] ; then
c440c0
  /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir 2>/dev/null || :
c440c0
fi
c440c0
c440c0
%files devel
c440c0
%{_bindir}/%{name}-config
c440c0
%{_bindir}/%{name}-tool
c440c0
%ifarch %{multilib_arches}
c440c0
%{_bindir}/%{name}-config.%{_target_cpu}
c440c0
%{_includedir}/%{name}-%{__isa_bits}.h
c440c0
%endif
c440c0
%{_includedir}/%{name}.h
c440c0
%{_libdir}/lib%{name}.so
c440c0
%{_datadir}/aclocal/%{name}.m4
c440c0
%{_infodir}/%{name}.info*
c440c0
c440c0
%files -n %{name}pp
c440c0
%doc lang/cpp/README
c440c0
%{_libdir}/lib%{name}pp.so.*
c440c0
c440c0
%files -n %{name}pp-devel
c440c0
%{_includedir}/%{name}++/
c440c0
%{_libdir}/lib%{name}pp.so
c440c0
%{_libdir}/cmake/Gpgmepp/
c440c0
c440c0
%files -n q%{name}
c440c0
%doc lang/qt/README
c440c0
%{_libdir}/libq%{name}.so.*
c440c0
c440c0
%files -n q%{name}-devel
c440c0
%{_includedir}/q%{name}/
c440c0
%{_includedir}/QGpgME/
c440c0
%{_libdir}/libq%{name}.so
c440c0
%{_libdir}/cmake/QGpgme/
c440c0
c440c0
%if %{with python2}
c440c0
%files -n python2-gpg
c440c0
%doc lang/python/README
c440c0
%{python2_sitearch}/gpg-*.egg-info
c440c0
%{python2_sitearch}/gpg/
c440c0
%endif # with python2
c440c0
c440c0
%files -n python3-gpg
c440c0
%doc lang/python/README
c440c0
%{python3_sitearch}/gpg-*.egg-info
c440c0
%{python3_sitearch}/gpg/
c440c0
c440c0
%changelog
e5c2f2
* Wed Nov 18 2020 Jiri Kucera <jkucera@redhat.com> - 1.13.1-7
e5c2f2
- Fix null dereference
e5c2f2
  Fix licence tag
e5c2f2
  Related: #1726861
e5c2f2
a2b37b
* Fri Nov 06 2020 Jiri Kucera <jkucera@redhat.com> - 1.13.1-6
a2b37b
- Try to fix RPMDIFF issues
a2b37b
  Related: #1726861
a2b37b
b547a8
* Tue Nov 03 2020 Jiri Kucera <jkucera@redhat.com> - 1.13.1-5
b547a8
- Rebuild
b547a8
  Related: #1726861
b547a8
add6a6
* Tue Sep 29 2020 Jiri Kucera <jkucera@redhat.com> - 1.13.1-4
add6a6
- Rebuild
add6a6
  Resolves: #1726861
add6a6
c440c0
* Tue Jun 02 2020 Jiri Kucera <jkucera@redhat.com> - 1.13.1-3
c440c0
- Fix resource leaks found by static code analysis
c440c0
  Related: #1829822
c440c0
c440c0
* Mon Jun 01 2020 Jiri Kucera <jkucera@redhat.com> - 1.13.1-2
c440c0
- Remove *.pc files due to 'nothing provides pkgconfig(gpg-error)'
c440c0
  and 'nothing provides pkgconfig(libassuan)' dnf errors
c440c0
  Related: #1829822
c440c0
c440c0
* Mon Jun 01 2020 Jiri Kucera <jkucera@redhat.com> - 1.13.1-1
c440c0
- Update to gpgme 1.13.1
c440c0
  Resolves: #1829822
c440c0
c440c0
* Mon Nov 12 2018 Jiri Kucera <jkucera@redhat.com> - 1.10.0-6
c440c0
- Fix important static scanner issues
c440c0
  Resolves: #1602526
c440c0
c440c0
* Mon May 28 2018 Charalampos Stratakis <cstratak@redhat.com> - 1.10.0-5
c440c0
- Conditionalize the python2 subpackage
c440c0
- Build only the python3 bindings
c440c0
c440c0
* Tue Apr 17 2018 Jonathan Lebon <jonathan@jlebon.com> - 1.10.0-4
c440c0
- Backport patch to tweak STATUS_FAILURE handling
c440c0
c440c0
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-3
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c440c0
c440c0
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.10.0-2
c440c0
- Switch to %%ldconfig_scriptlets
c440c0
c440c0
* Wed Dec 13 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.10.0-1
c440c0
- Update to 1.10.0
c440c0
c440c0
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.9.0-8
c440c0
- Use better Obsoletes for platform-python
c440c0
c440c0
* Fri Nov 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.9.0-7
c440c0
- Remove platform-python subpackages
c440c0
c440c0
* Thu Aug 10 2017 Petr Viktorin <pviktori@redhat.com> - 1.9.0-6
c440c0
- Add subpackage for platform-python (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
c440c0
c440c0
* Mon Aug 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.9.0-5
c440c0
- Remove BuildRequires: pth-devel, it is not needed for long time
c440c0
c440c0
* Mon Aug 07 2017 Björn Esser <besser82@fedoraproject.org> - 1.9.0-4
c440c0
- Rebuilt for AutoReq cmake-filesystem
c440c0
c440c0
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-3
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c440c0
c440c0
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c440c0
c440c0
* Wed Mar 29 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.9.0-1
c440c0
- Update to 1.9.0
c440c0
c440c0
* Sat Feb 11 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.8.0-12
c440c0
- Fix FTBFS
c440c0
c440c0
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-11
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c440c0
c440c0
* Wed Jan 18 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.8.0-10
c440c0
- patch out LIBASSUAN_LIBRARIES in cmake too
c440c0
c440c0
* Wed Jan 18 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.8.0-9
c440c0
- gpgmepp-devel: Requires: libassuan-devel
c440c0
c440c0
* Mon Jan 16 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.8.0-8
c440c0
- qgpgme-devel: Conflicts: kdepimlibs-devel < 4.14.10-17
c440c0
c440c0
* Sun Jan 01 2017 Rex Dieter <rdieter@math.unl.edu> - 1.8.0-7
c440c0
- rename gpgme-pp to gpgmepp, simplify -devel deps
c440c0
c440c0
* Sun Jan 01 2017 Rex Dieter <rdieter@math.unl.edu> - 1.8.0-6
c440c0
- backport upstream cmake-related fix
c440c0
c440c0
* Thu Dec 22 2016 Miro Hrončok <mhroncok@redhat.com> - 1.8.0-5
c440c0
- Rebuild for Python 3.6
c440c0
c440c0
* Sun Dec 11 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.8.0-4
c440c0
- Rename pythonX-gpgme into pythonX-gpg
c440c0
c440c0
* Sun Dec 11 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.8.0-3
c440c0
- Add Qt and C++ subpackages
c440c0
c440c0
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.8.0-2
c440c0
- Enable tests
c440c0
c440c0
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.8.0-1
c440c0
- Update to 1.8.0
c440c0
c440c0
* Wed Sep 21 2016 Igor Gnatenko <ignatenko@redhat.com> - 1.7.0-1
c440c0
- Update to 1.7.0
c440c0
c440c0
* Mon Jul 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 1.6.0-3
c440c0
- Set min ver for libgpg-error
c440c0
c440c0
* Mon Jul 25 2016 Igor Gnatenko <ignatenko@redhat.com> - 1.6.0-2
c440c0
- Backport patch for STATUS_KEY_CONSIDERED (RHBZ #1359521)
c440c0
c440c0
* Wed Jul 13 2016 Igor Gnatenko <ignatenko@redhat.com> - 1.6.0-1
c440c0
- Update to 1.6.0 (RHBZ #1167656)
c440c0
c440c0
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.3-7
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c440c0
c440c0
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.3-6
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c440c0
c440c0
* Sat Dec 06 2014 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.4.3-5
c440c0
- CVE-2014-3564, rhbz#1125170, gpgme-1.3.2-bufferoverflow.patch
c440c0
c440c0
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.3-4
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c440c0
c440c0
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 1.4.3-3
c440c0
- fix license handling
c440c0
c440c0
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.3-2
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c440c0
c440c0
* Wed Oct 09 2013 Rex Dieter <rdieter@fedoraproject.org> - 1.4.3-1
c440c0
- gpgme-1.4.3
c440c0
- cleanup .spec, trim changelog
c440c0
c440c0
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-4
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c440c0
c440c0
* Tue Jul 09 2013 Karsten Hopp <karsten@redhat.com> 1.3.2-3
c440c0
- rebuild to fix some f20 dependency issues on PPC
c440c0
c440c0
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-3
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c440c0
c440c0
* Tue Nov 20 2012 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.3.2-2
c440c0
- minor spec cleanup
c440c0
c440c0
* Wed Sep 26 2012 Tomas Mraz <tmraz@redhat.com> - 1.3.2-1
c440c0
- new upstream version
c440c0
- re-enable gpg tests (original patch by John Morris <john@zultron.com>)
c440c0
- quiet configure warning 'could not find g13'
c440c0
- there is no libgpgme-pth anymore
c440c0
c440c0
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-9
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c440c0
c440c0
* Sun Apr 22 2012 Rex Dieter <rdieter@fedoraproject.org> 1.3.0-8
c440c0
- -devel: make Requires: libgpg-error-devel arch'd
c440c0
- ensure gpgme-config wrapper is executable
c440c0
c440c0
* Sun Apr 22 2012 Rex Dieter <rdieter@fedoraproject.org> 1.3.0-7
c440c0
- gpgme.h: fatal error: gpgme-i386.h: No such file or directory compilation terminated (#815116)
c440c0
c440c0
* Wed Feb 15 2012 Simon Lukasik <slukasik@redhat.com> - 1.3.0-6
c440c0
- Resolve multilib conflict of gpgme-config (#341351)
c440c0
- Resolve multilib conflict of gpgme.h (#341351)
c440c0
c440c0
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-5
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c440c0
c440c0
* Thu Mar 17 2011 Rex Dieter <rdieter@fedoraproject.org> - 1.3.0-4
c440c0
- gpgme-config: remove libassuan-related flags as threatened (#676954) 
c440c0
\
c440c0
* Sun Feb 13 2011 Rex Dieter <rdieter@fedoraproject.org> - 1.3.0-3
c440c0
- -devel: fix typo (broken dep)
c440c0
c440c0
* Sat Feb 12 2011 Rex Dieter <rdieter@fedoraproject.org> - 1.3.0-2
c440c0
- BR: libassuan2-devel
c440c0
- gpgme-config outputs -lassuan (#676954)
c440c0
c440c0
* Fri Feb 11 2011 Tomas Mraz <tmraz@redhat.com> - 1.3.0-1
c440c0
- new upstream version
c440c0
c440c0
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-4
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c440c0
c440c0
* Wed Aug 18 2010 Tomas Mraz <tmraz@redhat.com> - 1.2.0-3
c440c0
- fix the condition for adding the -D_FILE_OFFSET_BITS...
c440c0
c440c0
* Wed Aug 11 2010 Tomas Mraz <tmraz@redhat.com> - 1.2.0-2
c440c0
- add -D_FILE_OFFSET_BITS... to gpgme-config as appropriate (#621698)
c440c0
c440c0
* Fri Jul 02 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.2.0-1
c440c0
- gpgme-1.2.0 (#610984)
c440c0
c440c0
* Sun Feb 14 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.1.8-4
c440c0
- FTBFS gpgme-1.1.8-3.fc13: ImplicitDSOLinking (#564605)
c440c0
c440c0
* Thu Nov 19 2009 Tomas Mraz <tmraz@redhat.com> - 1.1.8-3
c440c0
- Add buildrequires gnupg2-smime for the gpgsm
c440c0
c440c0
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.8-2
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c440c0
c440c0
* Sat Jun 20 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.8-1
c440c0
- gpgme-1.1.8
c440c0
- -devel: s/postun/preun/ info scriptlet
c440c0
c440c0
* Wed Mar 11 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.7-3
c440c0
- track shlib sonames closer, to highlight future abi/soname changes
c440c0
- _with_gpg macro, to potentially conditionalize gnupg vs gnupg2 defaults
c440c0
  for various os/releases (ie, fedora vs rhel)
c440c0
c440c0
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.7-2
c440c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c440c0
c440c0
* Sat Oct 18 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.7-1
c440c0
- gpgme-1.1.7
c440c0
c440c0
* Sun Feb 17 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.6-3
c440c0
- --with-gpg=%%_bindir/gpg2 (#432445)
c440c0
- drop Requires: gnupg (#432445)
c440c0
c440c0
* Fri Feb 08 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.6-2 
c440c0
- respin (gcc43)
c440c0
c440c0
* Fri Jan 04 2008 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.6-1
c440c0
- gpgme-1.1.6
c440c0
- multiarch conflicts in gpgme (#341351)
c440c0
c440c0
* Sat Aug 25 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.5-4
c440c0
- BR: gawk
c440c0
c440c0
* Sat Aug 25 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.5-3
c440c0
- respin (BuildID)
c440c0
c440c0
* Thu Aug 09 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.5-2
c440c0
- License: LGPLv2+
c440c0
c440c0
* Mon Jul 09 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.5-1
c440c0
- gpgme-1.1.5
c440c0
c440c0
* Mon Mar 05 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.4-1
c440c0
- gpgme-1.1.4
c440c0
c440c0
* Sat Feb 03 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.3-1
c440c0
- gpgme-1.1.3
c440c0
c440c0
* Tue Oct 03 2006 Rex Dieter <rexdieter[AT]users.sf.net>
c440c0
- respin
c440c0
c440c0
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.2-6
c440c0
- fix gpgme-config --thread=pthread --cflags
c440c0
c440c0
* Tue Aug 29 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.2-5
c440c0
- fc6 respin
c440c0
c440c0
* Mon Mar 6 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.2-4
c440c0
- add back support for gpgme-config --thread=pthread
c440c0
c440c0
* Mon Mar 6 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.2-2
c440c0
- drop extraneous libs from gpgme-config
c440c0
c440c0
* Fri Mar 3 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.2-1
c440c0
- 1.1.2
c440c0
- drop upstreamed gpgme-1.1.0-tests.patch
c440c0
c440c0
* Wed Mar 1 2006 Rex Dieter <rexdieter[AT]users.sf.net>
c440c0
- fc5: gcc/glibc respin
c440c0
c440c0
* Wed Nov 30 2005 Rex Dieter <rexdieter[AT]users.sf.net> - 1.1.0-3
c440c0
- (re)build against (newer) libksba/gnupg2
c440c0
c440c0
* Thu Oct 06 2005 Rex Dieter <rexdieter[AT]users.sf.net> - 1.1.0-2
c440c0
- 1.1.0
c440c0
c440c0
* Mon Aug  8 2005 Rex Dieter <rexdieter[AT]users.sf.net> - 1.0.3-1
c440c0
- 1.0.3
c440c0
- --disable-static
c440c0
c440c0
* Thu May 12 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.0.2-3
c440c0
- rebuilt
c440c0
c440c0
* Fri Mar 18 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.0.2-2
c440c0
- Fix FC4 build.
c440c0
c440c0
* Tue Feb  1 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:1.0.2-1
c440c0
- LGPL used here, and made summary more explicit.
c440c0
- Remove dirmngr dependency (gpgsm interfaces with it).
c440c0
- Obsolete cryptplug as gpgme >= 0.4.5 provides what we used cryptplug for.
c440c0
c440c0
* Thu Jan 06 2005 Rex Dieter <rexdieter[AT]users.sf.net> 0:1.0.2-0.fdr.1
c440c0
- 1.0.2
c440c0
c440c0
* Thu Oct 21 2004 Rex Dieter <rexdieter at sf.net> 0:1.0.0-0.fdr.1
c440c0
- 1.0.0
c440c0
- Requires: dirmngr
c440c0
c440c0
* Tue Oct 19 2004 Rex Dieter <rexdieter at sf.net> 0:0.4.7-0.fdr.1
c440c0
- 0.4.7
c440c0
c440c0
* Sun May  2 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.3-0.fdr.3
c440c0
- Require %%{_bindir}/gpgsm instead of newpg.
c440c0
- Cosmetic spec file improvements.
c440c0
c440c0
* Thu Oct 23 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.3-0.fdr.2
c440c0
- Update description.
c440c0
c440c0
* Tue Oct  7 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.3-0.fdr.1
c440c0
- Update to 0.4.3.
c440c0
c440c0
* Fri Aug 15 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.2-0.fdr.1
c440c0
- Update to 0.4.2.
c440c0
- make check in the %%check section.
c440c0
c440c0
* Thu Jul 10 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.1-0.fdr.1
c440c0
- Update to 0.4.1.
c440c0
- Make -devel cooperate with --excludedocs.
c440c0
c440c0
* Sat Apr 19 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.0-0.fdr.2
c440c0
- BuildRequire pth-devel, fix missing epoch in -devel Requires (#169).
c440c0
- Save .spec in UTF-8.
c440c0
c440c0
* Sat Mar 22 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.0-0.fdr.1
c440c0
- Update to current Fedora guidelines.
c440c0
- Exclude %%{_libdir}/*.la.
c440c0
c440c0
* Tue Feb 12 2003 Warren Togami <warren@togami.com> 0.4.0-1.fedora.3
c440c0
- info/dir temporary workaround
c440c0
c440c0
* Sat Feb  8 2003 Ville Skyttä <ville.skytta at iki.fi> - 0.4.0-1.fedora.1
c440c0
- First Fedora release.