# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif Summary: Library for error values used by GnuPG components Name: libgpg-error Version: 1.51 Release: 2.0.cf.%{__distinit}%{__distvers} URL: https://www.gnupg.org/related_software/libgpg-error/ Source0: https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-%{version}.tar.bz2 Source1: https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-%{version}.tar.bz2.sig Patch1: libgpg-error-1.48-multilib.patch License: LGPL-2.1-or-later BuildRequires: coreutils BuildRequires: gawk BuildRequires: gcc BuildRequires: gettext %if (0%{?rhel} && 0%{?rhel} <= 7) || (0%{?fedora} && 0%{?fedora} <= 20) BuildRequires: /bin/hostname %else BuildRequires: hostname %endif BuildRequires: make BuildRequires: pkgconfig BuildRequires: sed %description This is a library that defines common error values for all GnuPG components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt, pinentry, SmartCard Daemon and possibly more in the future. %package devel Summary: Development files for the libgpg-error package Requires: %{name} = %{version}-%{release} Requires: pkgconfig %if (0%{?rhel} && 0%{?rhel} <= 7) || (0%{?fedora} && 0%{?fedora} <= 27) Requires(post): /sbin/install-info Requires(preun):/sbin/install-info %endif %description devel This is a library that defines common error values for all GnuPG components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt, pinentry, SmartCard Daemon and possibly more in the future. This package contains files necessary to develop applications using libgpg-error. %prep %setup -q # Do not conflict on header file between architectures (#1180857) %patch -P 1 -p1 -b .multlib # The config script already suppresses the -L if it's /usr/lib, so cheat and # set it to a value that we know will be suppressed. sed -i -e 's|^libdir=@libdir@$|libdir=@exec_prefix@/lib|g' src/gpg-error-config.in sed -i -e '/--variable=host/d' src/gpg-error-config-test.sh.in %build %configure --disable-static --disable-rpath --disable-languages --enable-install-gpg-error-config # Kill bogus RPATHs sed -i 's|^sys_lib_dlsearch_path_spec="/lib /usr/lib|sys_lib_dlsearch_path_spec="/%{_lib} %{_libdir}|' libtool make %{?_smp_mflags} %install make install DESTDIR=%{buildroot} INSTALL="install -p" # Remove files we don't want packaged rm -f %{buildroot}%{_libdir}/*.la rm -f %{buildroot}%{_infodir}/dir %find_lang %{name} %check make check %if (0%{?rhel} && 0%{?rhel} <= 7) || (0%{?fedora} && 0%{?fedora} <= 27) # ldconfig scriptlets replaced by RPM File Triggers from Fedora 28 %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %post devel [ -f %{_infodir}/gpgrt.info.gz ] && \ /sbin/install-info %{_infodir}/gpgrt.info.gz %{_infodir}/dir exit 0 %preun devel if [ $1 = 0 -a -f %{_infodir}/gpgrt.info.gz ]; then /sbin/install-info --delete %{_infodir}/gpgrt.info.gz %{_infodir}/dir fi exit 0 %endif %files -f %{name}.lang %license COPYING COPYING.LIB %doc AUTHORS README NEWS ChangeLog %{_bindir}/gpg-error %{_datadir}/libgpg-error/ %{_libdir}/libgpg-error.so.0 %{_libdir}/libgpg-error.so.0.* %files devel %{_bindir}/gpg-error-config %{_bindir}/gpgrt-config %{_bindir}/yat2m %{_libdir}/libgpg-error.so %{_libdir}/pkgconfig/gpg-error.pc %{_includedir}/gpg-error.h %{_includedir}/gpgrt.h %{_datadir}/aclocal/gpg-error.m4 %{_datadir}/aclocal/gpgrt.m4 %{_infodir}/gpgrt.info* %{_mandir}/man1/gpg-error-config.* %{_mandir}/man1/gpgrt-config.* %changelog * Fri Jan 17 2025 Paul Howarth - 1.51-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild * Fri Nov 29 2024 Paul Howarth - 1.51-1.0.cf - Update to 1.51 - Allow initialization of new Windows threads to utf8 mode (https://dev.gnupg.org/T7185) - Add GPGRT_PROCESS_ALLOW_SET_FG for gpgrt_process_spawn - Add new spawn function to modify the environment (https://dev.gnupg.org/T7307) - Fix missing environ var for macOS and others (https://dev.gnupg.org/T7169, https://dev.gnupg.org/T7307) - Fix forgotten _gpgrt_post_syscall on create pipe failure - Let gpgrt_poll return an error for a closed fd - Fix build error introduced by C-committee stupidity (https://dev.gnupg.org/T7344) * Fri Jul 19 2024 Paul Howarth - 1.50-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild * Thu Jun 20 2024 Paul Howarth - 1.50-1.0.cf - Update to 1.50 (https://dev.gnupg.org/T7102) - New set of process spawn functions (https://dev.gnupg.org/T6249) - Fixed return type for gpgrt_b64dec_proc and gpgrt_b64dec_finish to gpg_err_code_t; this enum return type is in almost all cases compatible with the formerly used gpg_error_t (i.e. unsigned int) - Changed symbol gpgrt_process_t (never used) - New symbols: gpgrt_spawn_actions_t, gpgrt_process_requests, gpgrt_process_spawn, gpgrt_process_terminate, gpgrt_process_get_streams, gpgrt_process_ctl, gpgrt_process_wait, gpgrt_process_release, gpgrt_spawn_actions_new, gpgrt_spawn_actions_release, gpgrt_spawn_actions_set_redirect, gpgrt_spawn_actions_set_environ, gpgrt_spawn_actions_set_inherit_fds, gpgrt_spawn_actions_set_atfork, gpgrt_spawn_actions_set_envvars, gpgrt_spawn_actions_set_inherit_handles, GPGRT_PROCESS_DETACHED, GPGRT_PROCESS_NO_CONSOLE, GPGRT_PROCESS_NO_EUID_CHECK, GPGRT_PROCESS_STDIN_PIPE, GPGRT_PROCESS_STDOUT_PIPE, GPGRT_PROCESS_STDERR_PIPE, GPGRT_PROCESS_STDINOUT_SOCKETPAIR, GPGRT_PROCESS_STDIN_KEEP, GPGRT_PROCESS_STDOUT_KEEP, GPGRT_PROCESS_STDERR_KEEP, GPGRT_PROCESS_STDFDS_SETTING - Removed (never used) symbols: GPGRT_SPAWN_INHERIT_FILE, GPGRT_SPAWN_NONBLOCK, GPGRT_SPAWN_RUN_ASFW, GPGRT_SPAWN_DETACHED, GPGRT_SPAWN_KEEP_STDIN, GPGRT_SPAWN_KEEP_STDOUT, GPGRT_SPAWN_KEEP_STDERR * Fri Apr 26 2024 Paul Howarth - 1.49-1.0.cf - Update to 1.49 (https://dev.gnupg.org/T7012) - Two new functions to improve the logging interface - The gpgrt_logv_domain is currently the same as gpgrt_logv_prefix but allows to pass a domain string so that in future we will be able to select log output by domain; it also provides a not-yet-functional feature to include a hex dump - Add a "trunc" keyword to gpgrt_log_printhex - Avoid an endless loop in the argparser due to a conf file read error - New symbols: gpgrt_add_post_log_func, gpgrt_logv_domain * Mon Feb 26 2024 Paul Howarth - 1.48-1.0.cf - Update to 1.48 (https://dev.gnupg.org/T6441) - New configure option --with-libtool-modification (https://dev.gnupg.org/T6619) - New option parser flag to detect commands given without a double dash; there is also the new meta command "command-mode" to set this flag via a config file (https://dev.gnupg.org/T6978) - Added an es_fopen mode flag "sequential" with support on Windows - Added an es_fopen mode flag "wipe" to clean up internal buffers at close time (https://dev.gnupg.org/T6954) - New function gpgrt_wipememory (https://dev.gnupg.org/T6964) - Improvements to setenv on Windows - Fixed call to estream-printf string filters (https://dev.gnupg.org/T6737) - Many improvements to the yat2m tool - Updates to the build system - New symbols: ARGPARSE_FLAG_COMMAND, gpgrt_wipememory * Thu Jan 25 2024 Paul Howarth - 1.47-4.0.cf - Re-rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild (see https://pagure.io/releng/issue/11888) * Sat Jan 20 2024 Paul Howarth - 1.47-3.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Thu Jul 20 2023 Paul Howarth - 1.47-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Wed Apr 12 2023 Paul Howarth - 1.47-1.0.cf - Update to 1.47 (https://dev.gnupg.org/T6231) - New error codes for PUKs and reset codes (https://dev.gnupg.org/T6421) - Avoid segv in logging with improper use of the "socket://" - Fixed translation of argparse's internal option --help - New symbols: GPG_ERR_SOURCE_TKD, GPG_ERR_BAD_PUK, GPG_ERR_NO_RESET_CODE, GPG_ERR_BAD_RESET_CODE, GPGRT_SPAWN_KEEP_STDIN, GPGRT_SPAWN_KEEP_STDOUT, GPGRT_SPAWN_KEEP_STDERR, GPGRT_SPAWN_INHERIT_FILE - Use SPDX-format license tag - Avoid use of deprecated patch syntax * Fri Jan 20 2023 Paul Howarth - 1.46-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild * Mon Oct 10 2022 Paul Howarth - 1.46-1.0.cf - Update to 1.46 (https://dev.gnupg.org/T5923) - Support for bidirectional pipes under Windows (https://dev.gnupg.org/T6112) - REG_DWORD types are now supported in the Windows Registry - Added ES_SYSHD_SOCK support for gpgrt_sysopen under Windows - Fixed gpgrt_log_get_fd for the file case (https://dev.gnupg.org/T5922) - Avoid header problem with C11 and "noreturn" (https://dev.gnupg.org/T4002) - The gpg-error-config command is not installed by default, because it is now replaced by use of pkg-config/gpgrt-config with gpg-error.pc; supply --enable-install-gpg-error-config configure option, if it's really needed - Fixed support of posix-lock for FreeBSD - Build fixes for some Mingw tool chain versions (https://dev.gnupg.org/T5890, https://dev.gnupg.org/T4656) - Removed remaining support for WindowsCE (https://dev.gnupg.org/T5912) - Updated config.guess, config.sub, and config.rpath (https://dev.gnupg.org/T6078) - gpg-error-config is now only installed when enabled (https://dev.gnupg.org/T5683) - System paths are now stripped from --cflags --and --libs (https://dev.gnupg.org/T6136) - Use SPDX-format license tag * Sun Jul 24 2022 Paul Howarth - 1.45-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild * Fri Apr 8 2022 Paul Howarth - 1.45-1.0.cf - Update to 1.45 (https://dev.gnupg.org/T5802) - Support the "sysopen" mode parameter for gpgrt_fopen so that file names longer than MAX_PATH can be supported under Windows - gpgrt_access and gpgrt_mkdir now support file names longer than MAX_PATH - gpgrt_fopen now maps "/dev/null" to "nul" on Windows - Published some internal helper functions for Windows - New symbols: gpgrt_free_wchar, gpgrt_fname_to_wchar, gpgrt_utf8_to_wchar, gpgrt_wchar_to_utf8 * Sun Jan 30 2022 Paul Howarth - 1.44-1.0.cf - Update to 1.44 (https://dev.gnupg.org/T5676) - Fix dependency to gpg-error-config-test.sh (https://dev.gnupg.org/T5696) - Run the posix locking test only on supported platforms (https://dev.gnupg.org/T5699) - Detect Linux systems using musl (https://dev.gnupg.org/T5762) - Fix gpg-error-config-test for PKG_CONFIG_LIBDIR (https://dev.gnupg.org/T5740) - Fix returning of option attributes for options with args (https://dev.gnupg.org/T5799) - Add Turkish translations * Sun Jan 23 2022 Paul Howarth - 1.43-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Sun Nov 7 2021 Paul Howarth - 1.43-1.0.cf - Update to 1.43 (https://dev.gnupg.org/T5352) - Fix for building against GNU libc 2.34 (https://dev.gnupg.org/T5547) - Fix build problems on macOS (https://dev.gnupg.org/T5440, https://dev.gnupg.org/T5610) - Fix gpgrt-config problems (https://dev.gnupg.org/T5381, https://dev.gnupg.org/T5595) - Fix gpgrt_free for legacy platforms - Fix truncation of error message in the middle of a character (https://dev.gnupg.org/T5048) - Fix the --disable-threads configure options (https://dev.gnupg.org/T5495) - Improve lock-obj generation for cross-builds - Improve cross-builds (https://dev.gnupg.org/T5365) - Improve gpgrt_wait_processes (https://dev.gnupg.org/T5381) - Allow config files to read values from the Windows Registry and from envvars - Update the Russian and Czech translations * Thu Jul 22 2021 Paul Howarth - 1.42-3.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - Fix dist tags for Alma and Rocky Linux * Wed Apr 14 2021 Paul Howarth - 1.42-2.0.cf - Address coverity reported issues * Tue Mar 23 2021 Paul Howarth - 1.42-1.0.cf - Update to 1.42 (https://dev.gnupg.org/T5194) - Allow Unicode file names under Windows for the gettext domain - Improve cross-compiling support (https://dev.gnupg.org/T5289) - Improve $libdir determination by gpgrt-config (https://dev.gnupg.org/T5293) - Support --disable-thread by gen-lock-obj.sh (https://dev.gnupg.org/T5296) - New symbol: GPG_ERR_SOURCE_TPM2D * Thu Jan 28 2021 Paul Howarth - 1.41-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Mon Jan 4 2021 Paul Howarth - 1.41-1.0.cf - Update to 1.41 (https://dev.gnupg.org/T5192) - New function gpgrt_access - Make "ignore" meta command work correctly in the option parser - On Windows gpgrt_getcwd and the internal getusername now handle Unicode values (https://dev.gnupg.org/T5098) - Update the build system - Fix another glitch in the "ignore" meta command - Fix two typos in the German translation - Drop support for EOL distributions prior to Fedora 19, EL-7: - UsrMove is always true - Use %%license unconditionally - Drop workaround for ancient pkg-config in %%check * Thu Dec 3 2020 Paul Howarth - 1.39-1.0.cf - Update to 1.39 (https://dev.gnupg.org/T5031) - New option parser with features to implement system wide configuration files - New functions to build file names - New function to help reallocating arrays - Protect gpgrt_inc_errorcount against counter overflow - Improve cross-building for new platforms (https://dev.gnupg.org/T4774) - Support 64-bit big-endian MIPS architecture (https://dev.gnupg.org/T4952) - Support static link for Windows with -lws2_32 (https://dev.gnupg.org/T4623) - On Windows gpgrt_fopen, gpgrt_chdir, and gpgrt_mkdir now handle UTF-8 names (https://dev.gnupg.org/T4083) - Make timeout of gpgrt_poll work correctly on Windows if no file descriptors are active - New function gpgrt_fcancel as alternative to gpgrt_close; this function avoids flushing out buffered data and also tries to delete a newly-created file - Changes to ease cross-building (https://dev.gnupg.org/T4973) - "gpg-error --lib-version" works again - New symbols (in 1.38): gpgrt_fnameconcat, gpgrt_absfnameconcat, gpgrt_reallocarray, gpgrt_set_confdir, gpgrt_argparser, ARGPARSE_FLAG_SYS, ARGPARSE_FLAG_USER, ARGPARSE_FLAG_VERBOSE, ARGPARSE_FLAG_USERVERS, ARGPARSE_FLAG_WITHATTR, ARGPARSE_NO_CONFFILE, ARGPARSE_CONFFILE, ARGPARSE_OPT_CONFFILE, ARGPARSE_ATTR_FORCE, ARGPARSE_ATTR_IGNORE, ARGPARSE_TYPE_MASK, ARGPARSE_PERMISSION_ERROR, ARGPARSE_INVALID_META, ARGPARSE_UNKNOWN_META, ARGPARSE_UNEXPECTED_META, ARGPARSE_conffile, ARGPARSE_noconffile, ARGPARSE_verbatim, ARGPARSE_header, GPGRT_CONFDIR_USER, GPGRT_CONFDIR_SYS - New symbols (in 1.39): gpgrt_fcancel * Wed Jul 29 2020 Paul Howarth - 1.37-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Fri Feb 28 2020 Paul Howarth - 1.37-1.0.cf - Update to 1.37 (https://dev.gnupg.org/T4772) - Fix a build problem when using Gawk 5.0 (https://dev.gnupg.org/T4459) - Fix Bourne shell incompatibilities on Solaris (https://dev.gnupg.org/T4574) - Improve cross-compiling support (https://dev.gnupg.org/T4643) - On Windows, strerror_s is now used to emulate strerror_r (https://dev.gnupg.org/T4539) - New error codes to map SQLite primary error codes - Now uses poll(2) instead of select(2) in gpgrt_poll if possible - Fix a bug in gpgrt_close (https://dev.gnupg.org/T4698) - Fix build problem under Cygwin (https://dev.gnupg.org/T4474) - Fix a few minor portability bugs - New symbols: GPG_ERR_NO_KEYBOXD, GPG_ERR_KEYBOXD, GPG_ERR_NO_SERVICE, GPG_ERR_SERVICE, GPG_ERR_SQL_OK, GPG_ERR_SQL_ERROR, GPG_ERR_SQL_INTERNAL, GPG_ERR_SQL_PERM, GPG_ERR_SQL_ABORT, GPG_ERR_SQL_BUSY, GPG_ERR_SQL_LOCKED, GPG_ERR_SQL_NOMEM, GPG_ERR_SQL_READONLY, GPG_ERR_SQL_INTERRUPT, GPG_ERR_SQL_IOERR, GPG_ERR_SQL_CORRUPT, GPG_ERR_SQL_NOTFOUND, GPG_ERR_SQL_FULL, GPG_ERR_SQL_CANTOPEN, GPG_ERR_SQL_PROTOCOL, GPG_ERR_SQL_EMPTY, GPG_ERR_SQL_SCHEMA, GPG_ERR_SQL_TOOBIG, GPG_ERR_SQL_CONSTRAINT, GPG_ERR_SQL_MISMATCH, GPG_ERR_SQL_MISUSE, GPG_ERR_SQL_NOLFS, GPG_ERR_SQL_AUTH, GPG_ERR_SQL_FORMAT, GPG_ERR_SQL_RANGE, GPG_ERR_SQL_NOTADB, GPG_ERR_SQL_NOTICE, GPG_ERR_SQL_WARNING, GPG_ERR_SQL_ROW, GPG_ERR_SQL_DONE - Ignore difference in --host output in gpgrt-config * Thu Jan 30 2020 Paul Howarth - 1.36-3.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Mon Aug 19 2019 Paul Howarth - 1.36-2.0.cf - Update to 1.36 (https://dev.gnupg.org/T4413) - Support for riscv32 - Support armv7a-unknown-linux-gnueabihf - Increased estream buffer sizes for Windows - New API to allow emergency clean-up after internal fatal errors - Two new error codes to better support PIV cards - Minor bug and portability fixes - https://dev.gnupg.org/T4286 - https://dev.gnupg.org/T4298 - New symbols (in 1.34): gpgrt_abort, gpgrt_add_emergency_cleanup - New symbols (in 1.36): GPG_ERR_NO_AUTH, GPG_ERR_BAD_AUTH * Thu Jul 25 2019 Paul Howarth - 1.33-3.0.cf - Fix for compatibility with gawk 5 (https://dev.gnupg.org/T4459) * Tue Feb 5 2019 Paul Howarth - 1.33-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Sun Jan 13 2019 Paul Howarth - 1.33-1.0.cf - Update to 1.33 - Release-info: https://dev.gnupg.org/T4205 - Fixes a problem with gpgrt_fflush and gpgrt_fopencookie (https://dev.gnupg.org/T4069) - Fixes a problem with the C11 header stdnoreturn.h (https://dev.gnupg.org/T4002) - The yat2m tool can now also be build on Windows - Updates translations for Spanish, Russian and Ukrainian - New unified config script gpgrt-config which can now be used by all GnuPG related packages - Support for ARC and arm64ilp32 - The log functions now sanitize strings printed with the "%%s" format specifier; all control characters are C-escaped in the output, so users of that function may want to remove their own escaping to avoid doubling of backslashes - New fprintf style function to apply a custom filter for string arguments - New function to compare version strings - New symbols relative to the 1.28 release: gpgrt_cmp_version, gpgrt_string_filter_t, gpgrt_fprintf_sf, gpgrt_fprintf_sf_unlocked, gpgrt_ftruncate, gpgrt_w32_override_locale - Don't run install-info scriptlets from Fedora 28 onwards * Mon Jul 16 2018 Paul Howarth - 1.31-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Sun Jun 17 2018 Paul Howarth - 1.31-1.0.cf - Update to 1.31 - Fix a hang on Windows when using gpgrt_poll under nPth - Build fix for Solaris (https://dev.gnupg.org/T3869) - Fix another problem with gpgrt_poll under Windows (https://dev.gnupg.org/T3937) - New translation for Spanish * Fri Apr 13 2018 Paul Howarth - 1.29-1.0.cf - Update to 1.29 - The formerly internal yat2m tool is now installed - The new files gpgrt.m4 and gpgrt-config are now installed; they can be used instead of gpg-error.m4 and gpg-error-config - New logging functions similar to those used by GnuPG - New option parser and associated functions similar to the one used by GnuPG - New helper functions for platform abstraction - New Base-64 encoder - New symbols (in 1.28): gpgrt_get_errorcount, gpgrt_inc_errorcount, gpgrt_log_set_sink, gpgrt_log_set_socket_dir_cb, gpgrt_log_set_pid_suffix_cb, gpgrt_log_set_prefix, gpgrt_log_get_prefix, gpgrt_log_test_fd, gpgrt_log_get_fd, gpgrt_log_get_stream, gpgrt_log, gpgrt_logv, gpgrt_logv_prefix, gpgrt_log_string, gpgrt_log_info, gpgrt_log_error, gpgrt_log_fatal, gpgrt_log_bug, gpgrt_log_debug, gpgrt_log_debug_string, gpgrt_log_printf, gpgrt_log_flush, gpgrt_log_printhex, gpgrt_log_clock, gpgrt_assert, _gpgrt_log_assert, GPGRT_LOGLVL_BEGIN, GPGRT_LOGLVL_CONT, GPGRT_LOGLVL_INFO, GPGRT_LOGLVL_WARN, GPGRT_LOGLVL_ERROR, GPGRT_LOGLVL_FATAL, GPGRT_LOGLVL_BUG, GPGRT_LOGLVL_DEBUG, gpgrt_realloc, gpgrt_malloc, gpgrt_calloc, gpgrt_strdup, gpgrt_strconcat, gpgrt_w32_reg_query_string, gpgrt_getenv, gpgrt_setenv, gpgrt_mkdir, gpgrt_chdir, gpgrt_getcwd - New symbols (in 1.29): gpgrt_argparse, gpgrt_usage, gpgrt_strusage, gpgrt_set_strusage, gpgrt_set_usage_outfnc, gpgrt_set_fixed_string_mapper, GPGRT_ENABLE_ARGPARSE_MACROS, gpgrt_b64enc_start, gpgrt_b64enc_write, gpgrt_b64enc_finish * Fri Feb 9 2018 Paul Howarth - 1.27-5.0.cf - ldconfig scriptlets replaced by RPM File Triggers from Fedora 28 - Use forward-looking conditionals * Mon Aug 14 2017 Paul Howarth - 1.27-3.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Thu Jul 27 2017 Paul Howarth - 1.27-2.0.cf - Update to 1.27 - New option --desc for gpg-error - Added a Base64 decoder - Added support for the sh3 architecture - Added header gpgrt.h as an alias for gpg-error.h - Fixed macro GPGRT_GCC_VERSION - Fixed a race in non-blocking I/O on Windows - New symbols (in 1.26): GPG_ERR_UNKNOWN_FLAG, GPG_ERR_INV_ORDER, GPG_ERR_ALREADY_FETCHED, GPG_ERR_TRY_LATER, GPG_ERR_SYSTEM_BUG, GPG_ERR_DNS_UNKNOWN, GPG_ERR_DNS_SECTION, GPG_ERR_DNS_ADDRESS, GPG_ERR_DNS_NO_QUERY, GPG_ERR_DNS_NO_ANSWER, GPG_ERR_DNS_CLOSED, GPG_ERR_DNS_VERIFY, GPG_ERR_DNS_TIMEOUT - New symbols (in 1.27): gpgrt_b64dec_start, gpgrt_b64dec_proc, gpgrt_b64dec_finish, GPG_ERR_WRONG_NAME - New type: gpgrt_b64state_t - New header: gpgrt.h - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section * Fri Feb 10 2017 Paul Howarth - 1.25-2.0.cf - Update to 1.25 - New interface gpgrt_get_syscall_clamp to allow libraries to make use of libgpg-error's system call wrapper functions - gpgrt_poll now works under Windows - Fixed bug in the locking code when used with the nPth threading library - Added support for {i686,x86_64}-apple-darwin - Added new error codes - New symbols: gpgrt_get_syscall_clamp, GPG_ERR_ENGINE_TOO_OLD, GPG_ERR_WINDOW_TOO_SMALL, GPG_ERR_WINDOW_TOO_LARGE, GPG_ERR_MISSING_ENVVAR, GPG_ERR_USER_ID_EXISTS, GPG_ERR_NAME_EXISTS, GPG_ERR_DUP_NAME, GPG_ERR_TOO_OLD, GPG_ERR_TOO_YOUNG * Sat Jul 16 2016 Paul Howarth - 1.24-1.0.cf - Update to 1.24 - New functions and macros to provide iconv(3) on Windows - Support for LeakSanitizer with the gpgrt_annotate_leaked_object inline function - Fixes an assertion failure due to es_flush on read/write streams - Fixes a bug with a too short memory limit in es_fopenmen - Cross-build support for powerpc-unknown-linux-gnuspe and tilegx-unknown-linux-gnu architectures - Fixes a bug in es_fclose_snatch when used used after es_fseek - Fixes building without thread support - New configure option --disable-tests - Interface changes: - New inline function gpgrt_annotate_leaked_object - Other new symbols: GPGRT_ENABLE_W32_ICONV_MACROS, GPG_ERR_DB_CORRUPTED, GPG_ERR_SUBKEYS_EXP_OR_REV, gpgrt_w32_iconv_open, gpgrt_w32_iconv_close, gpgrt_w32_iconv * Sun Mar 20 2016 Paul Howarth - 1.21-3.0.cf - Drop explicit /sbin/ldconfig scriptlet deps (#1319144) * Thu Feb 4 2016 Paul Howarth - 1.21-2.0.cf - Update to 1.21 - New functions gpgrt_poll and gpgrt_set_nonblock; for now only pipes and sockets on Unix are supported - Fixes gettext output encoding problems on Windows - New interfaces: gpgrt_set_nonblock, gpgrt_get_nonblock, gpgrt_poll, gpgrt_poll_t, es_poll_t, es_set_nonblock, es_get_nonblock, es_poll, GPG_ERR_TRUE, GPG_ERR_FALSE, GPG_ERR_NO_NAME, GPG_ERR_NO_KEY, GPG_ERR_SERVER_FAILED * Fri Sep 4 2015 Paul Howarth - 1.20-1.0.cf - Update to 1.20 - New macros for GCC attributes - Make es_set_binary actually work for Windows - Allow building without thread support - Build without a build timestamp by default - New macros GPGRT_VERSION, GPGRT_VERSION_NUMBER, GPGRT_INLINE, GPGRT_GCC_VERSION, GPGRT_ATTR_NORETURN, GPGRT_ATTR_PRINTF, GPGRT_ATTR_NR_PRINTF, GPGRT_ATTR_FORMAT_ARG, GPGRT_ATTR_SENTINEL, GPGRT_ATTR_USED, GPGRT_ATTR_UNUSED, GPGRT_ATTR_DEPRECATED, GPGRT_ATTR_PURE, GPGRT_ATTR_MALLOC, GPGRT_HAVE_MACRO_FUNCTION and GPGRT_HAVE_PRAGMA_GCC_PUSH * Sat Jun 20 2015 Paul Howarth - 1.19-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Tue Apr 14 2015 Paul Howarth - 1.19-1.0.cf - Update to 1.19 - New translations for Hungarian, Portuguese, Russian, and Traditional Chinese - Updated other translations - New error codes: GPG_ERR_FORBIDDEN, GPG_ERR_OBJ_TERM_STATE, GPG_ERR_REQUEST_TOO_SHORT, GPG_ERR_REQUEST_TOO_LONG, GPG_ERR_LEGACY_KEY - New set of error codes for use with LDAP: GPG_ERR_LDAP_* - New options --help and --defines for gpg-error - Allow building with gcc 5 * Sat Jan 31 2015 Paul Howarth - 1.17-2.0.cf - Update to 1.17 - New error codes for TLS protocol libraries - New configure option --enable-build-timestamp - New man page for gpg-error-config - Lots of new symbols - see NEWS for details - Do not conflict on header file between architectures (#1180857) * Sun Sep 21 2014 Paul Howarth - 1.16-1.0.cf - Update to 1.16 - Added gpgrt_lock_trylock - Added the estream library under the name gpgrt and a set of macros to use them with their "es_" names - Lots of new symbols - see NEWS for details - Add type gpgrt_off_t, which is guaranteed to be 64 bit - Add type gpgrt_ssize_t to make use on Windows easier; on Unix platforms this is an alias for ssize_t - Support building for iOS - Fixed a prototype mismatch - Fix es_fclose for streams opened with "samethread" * Mon Aug 18 2014 Paul Howarth - 1.13-3.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild * Mon Jul 21 2014 Paul Howarth - 1.13-2.0.cf - Use %%license where possible * Thu Jun 26 2014 Paul Howarth - 1.13-1.0.cf - Update to 1.13 - Added a portable mutex API - The AM_PATH_GPG_ERROR macro now defines GPG_ERROR_MT_CFLAGS and GPG_ERROR_MT_LIBS autoconf output variables for use by programs that need gpgrt based thread support; gpg-error-config has a new option --mt - New symbols: GPG_ERR_KEY_ON_CARD, GPG_ERR_MAC_ALGO, GPG_ERR_INV_LOCK_OBJ, gpgrt_lock_t, GPGRT_LOCK_INITIALIZER, GPGRT_LOCK_DEFINE, gpgrt_lock_init, gpgrt_lock_lock, gpgrt_lock_unlock, gpgrt_lock_destroy, gpgrt_yield * Mon Apr 28 2014 Paul Howarth - 1.12-3.0.cf - BR: hostname package rather than /bin/hostname from F-21 as the latter is no longer provided in rawhide - Drop %%defattr, redundant since rpm 4.4 * Sat Aug 31 2013 Paul Howarth - 1.12-1.0.cf - Update to 1.12 - Added support for 64-bit Windows (use ./autogen.sh --build-w64) - Fixed parsing and installing of the Windows .def file - New symbols: GPG_ERR_NO_CRYPT_CTX, GPG_ERR_WRONG_CRYPT_CTX, GPG_ERR_BAD_CRYPT_CTX, GPG_ERR_CRYPT_CTX_CONFLICT, GPG_ERR_BROKEN_PUBKEY, GPG_ERR_BROKEN_SECKEY * Sat Aug 3 2013 Paul Howarth - 1.11-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Sat Apr 6 2013 Paul Howarth - 1.11-1.0.cf - Update to 1.11 - New error source GPG_ERR_SOURCE_ASSUAN for Libassuan related errors - New macros GPG_ERROR_VERSION and GPG_ERROR_VERSION_NUMBER - New function gpg_error_check_version - New symbols: GPG_ERR_NO_KEYSERVER, GPG_ERR_INV_CURVE, GPG_ERR_UNKNOWN_CURVE, GPG_ERR_DUP_KEY, GPG_ERR_AMBIGUOUS, GPG_ERR_SOURCE_ASSUAN, gpg_error_check_version, GPG_ERROR_VERSION, GPG_ERROR_VERSION_NUMBER * Sat Feb 23 2013 Paul Howarth - 1.10-4.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Mon Apr 2 2012 Paul Howarth - 1.10-3.0.cf - From F-17/RHEL-7 onwards, install to %%{_libdir} rather than /%%{_lib} (https://fedoraproject.org/wiki/Features/UsrMove) - Upstream ChangeLog is already UTF-8 so no need to re-code it * Wed Jan 18 2012 Paul Howarth - 1.10-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Sun Jul 17 2011 Paul Howarth - 1.10-1.0.cf - Update to 1.10 - New symbols: GPG_ERR_NOT_INITIALIZED, GPG_ERR_MISSING_ISSUER_CERT, GPG_ERR_FULLY_CANCELED - Using a static library on W32 now works - Fix dist tag for CentOS 6 and Scientific Linux - Nobody else likes macros for commands * Fri Feb 11 2011 Paul Howarth - 1.9-2.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Mon Aug 16 2010 Paul Howarth - 1.9-1.0.cf - Update to 1.9 - New symbols: GPG_ERR_MISSING_KEY, GPG_ERR_TOO_MANY, GPG_ERR_LIMIT_REACHED - New function: gpg_err_deinit - Fix building of static lib under W32 * Mon Aug 16 2010 Paul Howarth - 1.8-1.0.cf - Update to 1.8 - Support for WindowsCE - New option --list for gpg-error - New symbols: GPG_ERR_NOT_ENABLED, GPG_ERR_SOURCE_G13, GPG_ERR_NO_ENGINE - New function: gpg_err_set_errno - BR: /bin/hostname * Fri May 14 2010 Paul Howarth - 1.7-4.0.cf - Fix dist tag for RHEL-6 Beta * Fri Feb 26 2010 Paul Howarth - 1.7-3.0.cf - Turn off common lisp bindings the right way - Build with --disable-rpath - Drop unused finger output - Retain timestamps where possible * Mon Nov 16 2009 Paul Howarth - 1.7-1.0.cf - Long-overdue update to 1.7 - Dist tag for Rawhide no longer needs special-casing * Sat Oct 3 2009 Paul Howarth - 1.6-4.0.cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue Mar 3 2009 Paul Howarth - 1.6-3.0.cf - Import from Fedora - Simplify library relocation to /%%{_lib} by using the symlinks program - Recode ChangeLog as UTF-8 - Kill rpaths to /usr/lib64 * Wed Feb 25 2009 Fedora Release Engineering - 1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Tue Feb 19 2008 Fedora Release Engineering - 1.6-2 - Autorebuild for GCC 4.3 * Fri Dec 7 2007 Nalin Dahyabhai - Remove the generic install docs (#226021) * Fri Dec 7 2007 Nalin Dahyabhai - 1.6-1 - Update to 1.6 - Add suggested summary, buildrequires, and modify install call as suggested by package review (#226021) * Mon Oct 15 2007 Nalin Dahyabhai - 1.5-6 - Use ldconfig to make the soname symlink so that it gets packaged (#331241) * Wed Aug 22 2007 Nalin Dahyabhai - 1.5-5 - Add missing gawk buildrequirement * Thu Aug 16 2007 Nalin Dahyabhai - 1.5-4 - Clarify license * Mon Jul 30 2007 Nalin Dahyabhai - 1.5-3 - Disable static libraries (part of #249815) * Fri Jul 27 2007 Nalin Dahyabhai - 1.5-2 - Move libgpg-error shared library to /%%{_lib} (#249816) * Thu Jul 19 2007 Nalin Dahyabhai - 1.5-1 - Update to 1.5 * Sun Oct 01 2006 Jesse Keating - 1.4-2 - Rebuilt for unwind info generation, broken in gcc-4.1.1-21 * Mon Sep 18 2006 Bill Nottngham - 1.4-1 - Update to 1.4 - Don't ship lisp bindings * Wed Jul 12 2006 Jesse Keating - 1.3-3.1 - Rebuild * Mon Jun 5 2006 Nalin Dahyabhai 1.3-3 - Give gpg-error-config libdir=@exec_prefix@/lib instead of @libdir@, so that it agrees on 32- and 64-bit arches (it suppresses the -L argument if @libdir@ is /usr/lib, so this should be cleaner than adding a non-standard .pc file which upstream developers might inadvertently think they can depend to be on every system which provides this library) * Mon May 15 2006 Karsten Hopp 1.3-2 - Switch to pkgconfig so that gpg-error-config can be the same on 32bit and 64bit archs * Tue May 2 2006 Nalin Dahyabhai - 1.3-1 - Update to version 1.3 * Fri Feb 10 2006 Jesse Keating - 1.1-1.2.1 - Bump again for double-long bug on ppc(64) * Tue Feb 07 2006 Jesse Keating - 1.1-1.2 - Rebuilt for new gcc4.1 snapshot and glibc changes * Fri Dec 09 2005 Jesse Keating - Rebuilt * Wed Nov 30 2005 Karsten Hopp 1.1-1 - Update * Wed Mar 2 2005 Bill Nottingham - 1.0-2 - We can rebuild it - we have the technology * Tue Aug 31 2004 Bill Nottingham - 1.0-1 - Update to 1.0 * Tue Jun 15 2004 Elliot Lee - Rebuilt * Fri Apr 16 2004 Bill Nottingham - 0.7-1 - Adapt upstream specfile