2018-10-01 17:27:08 +00:00
|
|
|
|
# Build with new api?
|
2019-01-14 17:50:02 +00:00
|
|
|
|
%if 0%{?fedora} >= 30 || 0%{?rhel} >= 9
|
|
|
|
|
%bcond_without new_api
|
|
|
|
|
%else
|
2019-01-14 18:29:12 +00:00
|
|
|
|
%bcond_with new_api
|
2019-01-14 17:50:02 +00:00
|
|
|
|
%endif
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
2019-01-14 18:29:09 +00:00
|
|
|
|
# Build the compat package?
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if !(0%{?fedora} >= 999 || 0%{?rhel} >= 99 || %{without new_api})
|
2019-01-14 18:29:09 +00:00
|
|
|
|
%bcond_without compat_pkg
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%else
|
|
|
|
|
%bcond_with compat_pkg
|
2019-01-14 18:29:09 +00:00
|
|
|
|
%endif
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
2019-01-24 20:11:54 +00:00
|
|
|
|
# Replace obsolete functions with a stub?
|
2019-01-30 09:55:59 +00:00
|
|
|
|
%if (0%{?fedora} >= 30 || 0%{?rhel} >= 9) && %{with compat_pkg}
|
2019-01-24 20:11:54 +00:00
|
|
|
|
%bcond_without enosys_stubs
|
|
|
|
|
%else
|
|
|
|
|
%bcond_with enosys_stubs
|
|
|
|
|
%endif
|
|
|
|
|
|
2018-10-25 14:34:44 +00:00
|
|
|
|
# Run memcheck?
|
2019-01-25 09:46:20 +00:00
|
|
|
|
%ifarch %{valgrind_arches}
|
2018-10-25 14:34:44 +00:00
|
|
|
|
# Valgrind does not work well on %%{power64} arches.
|
2019-01-25 09:46:20 +00:00
|
|
|
|
%ifarch %{power64}
|
2019-01-14 18:29:12 +00:00
|
|
|
|
%bcond_with memcheck
|
2019-01-25 09:46:20 +00:00
|
|
|
|
%else
|
|
|
|
|
%bcond_without memcheck
|
|
|
|
|
%endif
|
2018-10-25 14:34:44 +00:00
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
2018-01-12 19:49:45 +00:00
|
|
|
|
# Shared object version of libcrypt.
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%if %{with new_api}
|
2019-01-14 18:29:12 +00:00
|
|
|
|
%global soc 2
|
|
|
|
|
%global sol 0
|
|
|
|
|
%global sof 0
|
|
|
|
|
%global sov %{soc}.%{sol}.%{sof}
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%else
|
2019-01-14 18:29:12 +00:00
|
|
|
|
%global soc 1
|
|
|
|
|
%global sol 1
|
|
|
|
|
%global sof 0
|
|
|
|
|
%global sov %{soc}.%{sol}.%{sof}
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%endif
|
|
|
|
|
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if %{with compat_pkg}
|
|
|
|
|
%global csoc 1
|
|
|
|
|
%global csol 1
|
|
|
|
|
%global csof 0
|
|
|
|
|
%global csov %{csoc}.%{csol}.%{csof}
|
|
|
|
|
%endif
|
|
|
|
|
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
2018-10-03 09:56:56 +00:00
|
|
|
|
# Hash methods and API supported by libcrypt.
|
|
|
|
|
# NEVER EVER touch this, if you do NOT know what you are doing!
|
|
|
|
|
%if %{with new_api}
|
2018-11-14 18:36:20 +00:00
|
|
|
|
%global hash_methods fedora,glibc,strong
|
2018-10-03 09:56:56 +00:00
|
|
|
|
%global obsolete_api no
|
|
|
|
|
%else
|
|
|
|
|
%global hash_methods all
|
|
|
|
|
%global obsolete_api glibc
|
|
|
|
|
%endif
|
|
|
|
|
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if %{with compat_pkg}
|
|
|
|
|
%global compat_methods glibc
|
|
|
|
|
%global compat_api glibc
|
|
|
|
|
%endif
|
|
|
|
|
|
2019-01-24 20:11:54 +00:00
|
|
|
|
%if %{with enosys_stubs}
|
|
|
|
|
%global enosys_stubs yes
|
|
|
|
|
%else
|
|
|
|
|
%global enosys_stubs no
|
|
|
|
|
%endif
|
|
|
|
|
|
2018-10-03 09:56:56 +00:00
|
|
|
|
|
2019-01-14 17:50:05 +00:00
|
|
|
|
# Needed for the distribution README file.
|
|
|
|
|
%if 0%{?fedora}
|
|
|
|
|
%global distname .fedora
|
|
|
|
|
%else
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
%global distname .rhel
|
|
|
|
|
%else
|
|
|
|
|
%global distname .distribution
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
|
2018-10-01 17:27:08 +00:00
|
|
|
|
# Needed for out-of-tree builds.
|
2018-11-14 13:14:23 +00:00
|
|
|
|
%global _configure ../"configure"
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
2018-10-03 09:56:56 +00:00
|
|
|
|
# Common configure options.
|
|
|
|
|
%global common_configure_options \\\
|
|
|
|
|
--libdir=/%{_lib} \\\
|
2018-11-14 13:14:23 +00:00
|
|
|
|
--disable-failure-tokens \\\
|
2018-10-03 09:56:56 +00:00
|
|
|
|
--disable-silent-rules \\\
|
|
|
|
|
--enable-shared \\\
|
|
|
|
|
--enable-static \\\
|
2018-10-25 14:34:44 +00:00
|
|
|
|
%if %{with memcheck} \
|
|
|
|
|
--enable-valgrind \\\
|
|
|
|
|
%else \
|
|
|
|
|
--disable-valgrind \\\
|
|
|
|
|
%endif \
|
2018-10-03 09:56:56 +00:00
|
|
|
|
--srcdir=.. \\\
|
|
|
|
|
--with-pkgconfigdir=%{_libdir}/pkgconfig
|
|
|
|
|
|
|
|
|
|
|
2018-01-12 19:49:45 +00:00
|
|
|
|
# Add generation of HMAC checksums of the final stripped
|
|
|
|
|
# binaries. %%define with lazy globbing is used here
|
|
|
|
|
# intentionally, because using %%global does not work.
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%define __spec_install_post \
|
|
|
|
|
%{?__debug_package:%{__debug_install_post}} \
|
|
|
|
|
%{__arch_install_post} \
|
|
|
|
|
%{__os_install_post} \
|
2018-11-14 12:58:24 +00:00
|
|
|
|
%{_bindir}/fipshmac %{buildroot}/%{_lib}/libcrypt.a \
|
2018-11-14 18:36:20 +00:00
|
|
|
|
%{__ln_s} .libcrypt.a.hmac \\\
|
|
|
|
|
%{buildroot}/%{_lib}/.libxcrypt.a.hmac \
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%{_bindir}/fipshmac %{buildroot}/%{_lib}/libcrypt.so.%{sov} \
|
|
|
|
|
%{__ln_s} .libcrypt.so.%{sov}.hmac \\\
|
|
|
|
|
%{buildroot}/%{_lib}/.libcrypt.so.%{soc}.hmac \
|
2019-01-24 19:53:14 +00:00
|
|
|
|
if [[ %{with compat_pkg} == 1 ]]; then \
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%{_bindir}/fipshmac %{buildroot}/%{_lib}/libcrypt.so.%{csov} \
|
|
|
|
|
%{__ln_s} .libcrypt.so.%{csov}.hmac \\\
|
|
|
|
|
%{buildroot}/%{_lib}/.libcrypt.so.%{csoc}.hmac \
|
|
|
|
|
fi \
|
2018-01-12 19:49:45 +00:00
|
|
|
|
%{nil}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name: libxcrypt
|
2019-01-24 19:40:43 +00:00
|
|
|
|
Version: 4.4.3
|
2019-01-30 10:50:40 +00:00
|
|
|
|
Release: 4%{?dist}
|
2018-12-23 13:09:08 +00:00
|
|
|
|
Summary: Extended crypt library for descrypt, md5crypt, bcrypt, and others
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
# For explicit license breakdown, see the
|
|
|
|
|
# LICENSING file in the source tarball.
|
2018-06-29 13:39:52 +00:00
|
|
|
|
License: LGPLv2+ and BSD and Public Domain
|
2018-01-12 19:49:45 +00:00
|
|
|
|
URL: https://github.com/besser82/%{name}
|
2018-11-09 15:31:07 +00:00
|
|
|
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
2018-07-13 10:02:19 +00:00
|
|
|
|
|
2018-11-14 13:14:23 +00:00
|
|
|
|
# Patch 0000 - 2999: Backported patches from upstream.
|
2019-01-24 21:34:52 +00:00
|
|
|
|
Patch0000: %{url}/commit/2e4135284e7aaeac2218878041de31d8e724dc8f.patch#/%{name}-4.4.3-test-alg-hmac-sha1_Fix_format-overflow.patch
|
2018-11-11 16:29:22 +00:00
|
|
|
|
|
2018-11-14 13:14:23 +00:00
|
|
|
|
# Patch 3000 - 5999: Backported patches from pull requests.
|
2018-11-11 16:29:22 +00:00
|
|
|
|
|
2018-11-14 13:14:23 +00:00
|
|
|
|
# Patch 6000 - 9999: Downstream patches.
|
2018-11-11 11:56:35 +00:00
|
|
|
|
|
2018-01-12 19:49:45 +00:00
|
|
|
|
BuildRequires: fipscheck
|
|
|
|
|
BuildRequires: libtool
|
2018-10-25 14:34:44 +00:00
|
|
|
|
%if %{with memcheck}
|
|
|
|
|
BuildRequires: valgrind
|
|
|
|
|
%endif
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
2018-01-20 11:22:19 +00:00
|
|
|
|
# We do not need to keep this forever.
|
2018-11-14 13:14:23 +00:00
|
|
|
|
%if (0%{?fedora} && 0%{?fedora} <= 31) || (0%{?rhel} && 0%{?rhel} <= 10)
|
2018-01-20 11:22:19 +00:00
|
|
|
|
# Inherited from former libcrypt package.
|
2018-11-14 13:14:23 +00:00
|
|
|
|
Obsoletes: libcrypt-nss <= 2.26.9000-33
|
|
|
|
|
Provides: libcrypt-nss == 2.26.9000-34
|
2018-01-19 21:34:00 +00:00
|
|
|
|
|
2018-11-14 13:14:23 +00:00
|
|
|
|
# Obsolete former libcrypt properly and provide a virtual libcrypt
|
|
|
|
|
# package as it has been done by the former packages, which were
|
|
|
|
|
# built by glibc before.
|
|
|
|
|
Obsoletes: libcrypt <= 2.26.9000-46
|
|
|
|
|
Provides: libcrypt == 2.26.9000-47
|
|
|
|
|
Provides: libcrypt%{?_isa} == 2.26.9000-47
|
2018-01-19 21:34:00 +00:00
|
|
|
|
|
2018-11-14 13:04:54 +00:00
|
|
|
|
# Obsolete former libxcrypt-common properly.
|
2019-01-24 19:38:42 +00:00
|
|
|
|
Obsoletes: %{name}-common < 4.3.3-4
|
2018-11-14 13:14:23 +00:00
|
|
|
|
Provides: %{name}-common == %{version}-%{release}
|
2018-11-14 13:04:54 +00:00
|
|
|
|
|
2018-11-14 13:14:23 +00:00
|
|
|
|
# We need a version of glibc, that doesn't build libcrypt anymore.
|
2019-01-24 21:48:10 +00:00
|
|
|
|
Requires: glibc%{?_isa} >= 2.26.9000-46
|
2018-11-14 13:14:23 +00:00
|
|
|
|
%endif
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if %{with new_api} && %{without compat_pkg}
|
|
|
|
|
Obsoletes: %{name}-compat <= %{version}-%{release}
|
|
|
|
|
%endif
|
|
|
|
|
|
2018-11-26 10:44:40 +00:00
|
|
|
|
%if 0%{?fedora} >= 30
|
2018-12-23 13:19:59 +00:00
|
|
|
|
Recommends: mkpasswd
|
2018-11-26 10:44:40 +00:00
|
|
|
|
%endif
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
2018-01-12 19:49:45 +00:00
|
|
|
|
%description
|
|
|
|
|
libxcrypt is a modern library for one-way hashing of passwords. It
|
2018-10-01 17:27:08 +00:00
|
|
|
|
supports a wide variety of both modern and historical hashing methods:
|
2018-11-09 15:30:26 +00:00
|
|
|
|
yescrypt, gost-yescrypt, scrypt, bcrypt, sha512crypt, sha256crypt,
|
2019-01-14 17:50:09 +00:00
|
|
|
|
%if %{with new_api}
|
|
|
|
|
md5crypt, and descrypt.
|
|
|
|
|
%else
|
2018-11-09 15:30:26 +00:00
|
|
|
|
md5crypt, SunMD5, sha1crypt, NT, bsdicrypt, bigcrypt, and descrypt.
|
2019-01-14 17:50:09 +00:00
|
|
|
|
%endif
|
2018-11-09 15:30:26 +00:00
|
|
|
|
It provides the traditional Unix crypt and crypt_r interfaces, as well
|
|
|
|
|
as a set of extended interfaces pioneered by Openwall Linux, crypt_rn,
|
|
|
|
|
crypt_ra, crypt_gensalt, crypt_gensalt_rn, and crypt_gensalt_ra.
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
libxcrypt is intended to be used by login(1), passwd(1), and other
|
2018-11-09 15:30:26 +00:00
|
|
|
|
similar programs; that is, to hash a small number of passwords during
|
|
|
|
|
an interactive authentication dialogue with a human. It is not suitable
|
|
|
|
|
for use in bulk password-cracking applications, or in any other situation
|
|
|
|
|
where speed is more important than careful handling of sensitive data.
|
|
|
|
|
However, it is intended to be fast and lightweight enough for use in
|
|
|
|
|
servers that must field thousands of login attempts per minute.
|
|
|
|
|
%if %{with new_api}
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
|
|
|
|
This version of the library does not provide the legacy API functions
|
|
|
|
|
that have been provided by glibc's libcrypt.so.1.
|
2018-11-09 15:30:26 +00:00
|
|
|
|
%endif
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
|
|
|
|
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if %{with compat_pkg}
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%package compat
|
|
|
|
|
Summary: Compatibility library providing legacy API functions
|
|
|
|
|
|
2019-01-24 21:48:10 +00:00
|
|
|
|
Requires: %{name}%{?_isa} == %{version}-%{release}
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
|
|
|
|
%description compat
|
2019-01-14 17:50:07 +00:00
|
|
|
|
This package contains the library providing the compatibility API
|
|
|
|
|
for applications that are linked against glibc's libxcrypt, or that
|
|
|
|
|
are still using the unsafe and deprecated, encrypt, encrypt_r,
|
|
|
|
|
setkey, setkey_r, and fcrypt functions, which are still required by
|
|
|
|
|
recent versions of POSIX, the Single UNIX Specification, and various
|
|
|
|
|
other standards.
|
2018-10-01 17:27:08 +00:00
|
|
|
|
|
|
|
|
|
All existing binary executables linked against glibc's libcrypt should
|
2019-01-14 17:50:07 +00:00
|
|
|
|
work unmodified with the library supplied by this package.
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%endif
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
|
|
2018-11-14 13:14:23 +00:00
|
|
|
|
Conflicts: man-pages < 4.15-3
|
2018-08-08 10:31:00 +00:00
|
|
|
|
|
2018-11-14 13:14:23 +00:00
|
|
|
|
Requires: %{name}%{?_isa} == %{version}-%{release}
|
|
|
|
|
Requires: glibc-devel%{?_isa}
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package static
|
|
|
|
|
Summary: Static library for -static linking with %{name}
|
|
|
|
|
|
2018-11-14 13:14:23 +00:00
|
|
|
|
Requires: %{name}-devel%{?_isa} == %{version}-%{release}
|
|
|
|
|
Requires: glibc-static%{?_isa}
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
%description static
|
2018-10-01 19:54:03 +00:00
|
|
|
|
This package contains the libxcrypt static library for -static
|
2018-10-01 17:27:08 +00:00
|
|
|
|
linking.
|
|
|
|
|
|
|
|
|
|
You don't need this, unless you link statically, which is highly
|
|
|
|
|
discouraged.
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2018-01-27 16:14:06 +00:00
|
|
|
|
%autosetup -p 1
|
2018-10-25 14:40:55 +00:00
|
|
|
|
./bootstrap
|
2019-01-14 17:50:05 +00:00
|
|
|
|
%if %{with new_api}
|
|
|
|
|
%{__cat} << EOF >> README%{distname}
|
2019-01-30 10:52:36 +00:00
|
|
|
|
This version of the %{name} package ships the libcrypt.so.2
|
2019-01-14 17:50:05 +00:00
|
|
|
|
library and does not provide the legacy API functions that have
|
|
|
|
|
been provided by glibc's libcrypt.so.1. The removed functions
|
|
|
|
|
by name are encrypt, encrypt_r, setkey, setkey_r, and fcrypt.
|
2019-01-14 18:29:09 +00:00
|
|
|
|
%if %{with compat_pkg}
|
2019-01-14 17:50:05 +00:00
|
|
|
|
|
|
|
|
|
If you are using a third-party application that links against
|
|
|
|
|
those functions, or that is linked against glibc's libcrypt,
|
|
|
|
|
you may need to install the %{name}-compat package manually.
|
|
|
|
|
|
|
|
|
|
All existing binary executables linked against glibc's libcrypt
|
|
|
|
|
should work unmodified with the libcrypt.so.1 library supplied
|
|
|
|
|
by the %{name}-compat package.
|
2019-01-14 18:29:09 +00:00
|
|
|
|
%endif
|
2019-01-14 17:50:05 +00:00
|
|
|
|
EOF
|
|
|
|
|
%endif
|
2019-01-30 10:50:40 +00:00
|
|
|
|
%if %{with enosys_stubs}
|
|
|
|
|
%{__cat} << EOF >> README-POSIX
|
|
|
|
|
This version of the libcrypt.so.1 library has entirely removed
|
|
|
|
|
the functionality of the encrypt, encrypt_r, setkey, setkey_r,
|
|
|
|
|
and fcrypt functions, while keeping fully binary compatibility
|
|
|
|
|
with existing (third-party) applications possibly still using
|
|
|
|
|
those funtions. If such an application attemps to call one of
|
|
|
|
|
these functions, the corresponding function will indicate that
|
|
|
|
|
it is not supported by the system in a POSIX-compliant way.
|
|
|
|
|
|
|
|
|
|
For security reasons, the encrypt and encrypt_r functions will
|
|
|
|
|
also overwrite their data-block argument with random bits.
|
|
|
|
|
|
|
|
|
|
All existing binary executables linked against glibc's libcrypt
|
|
|
|
|
should work unmodified with the provided version of the
|
|
|
|
|
libcrypt.so.1 library in place.
|
|
|
|
|
EOF
|
|
|
|
|
%endif
|
2019-01-30 11:24:01 +00:00
|
|
|
|
%{__cat} << EOF >> README-STATIC
|
|
|
|
|
Applications that use certain legacy APIs supplied by glibc’s
|
|
|
|
|
libcrypt (encrypt, encrypt_r, setkey, setkey_r, and fcrypt)
|
|
|
|
|
cannot be compiled nor linked against the supplied build of
|
|
|
|
|
the object files provided in the static library libcrypt.a.
|
|
|
|
|
EOF
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%{__mkdir_p} %{_vpath_builddir}{,-compat}
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2018-11-14 18:36:20 +00:00
|
|
|
|
# Build the default system library.
|
2018-10-01 17:27:08 +00:00
|
|
|
|
pushd %{_vpath_builddir}
|
2019-01-24 20:11:54 +00:00
|
|
|
|
%configure \
|
|
|
|
|
%{common_configure_options} \
|
|
|
|
|
--enable-hashes=%{hash_methods} \
|
|
|
|
|
--enable-obsolete-api=%{obsolete_api} \
|
|
|
|
|
%if %{with new_api}
|
|
|
|
|
--enable-obsolete-api-enosys=%{obsolete_api}
|
|
|
|
|
%else
|
|
|
|
|
--enable-obsolete-api-enosys=%{enosys_stubs}
|
|
|
|
|
%endif
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%make_build
|
|
|
|
|
popd
|
2018-11-14 18:36:20 +00:00
|
|
|
|
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if %{with compat_pkg}
|
2018-11-14 18:36:20 +00:00
|
|
|
|
# Build the compatibility library.
|
2018-10-01 17:27:08 +00:00
|
|
|
|
pushd %{_vpath_builddir}-compat
|
2019-01-24 20:11:54 +00:00
|
|
|
|
%configure \
|
|
|
|
|
%{common_configure_options} \
|
|
|
|
|
--enable-hashes=%{compat_methods} \
|
|
|
|
|
--enable-obsolete-api=%{compat_api} \
|
|
|
|
|
--enable-obsolete-api-enosys=%{enosys_stubs}
|
2018-01-12 19:49:45 +00:00
|
|
|
|
%make_build
|
2018-10-01 17:27:08 +00:00
|
|
|
|
popd
|
2018-10-03 09:56:56 +00:00
|
|
|
|
%endif
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if %{with compat_pkg}
|
2018-11-14 18:36:20 +00:00
|
|
|
|
# Install the compatibility library.
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%make_install -C %{_vpath_builddir}-compat
|
2018-11-14 18:36:20 +00:00
|
|
|
|
|
|
|
|
|
# Cleanup everything we do not need from the compatibility library.
|
2019-01-24 08:29:52 +00:00
|
|
|
|
%{_bindir}/find %{buildroot} -xtype f -not -name 'libcrypt.so.%{csoc}*' \
|
|
|
|
|
-delete -print
|
|
|
|
|
%{_bindir}/find %{buildroot} -type l -not -name 'libcrypt.so.%{csoc}*' \
|
|
|
|
|
-delete -print
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%endif
|
2018-11-14 18:36:20 +00:00
|
|
|
|
|
|
|
|
|
# Install the default system library.
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%make_install -C %{_vpath_builddir}
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
# Get rid of libtool crap.
|
2019-01-24 08:29:52 +00:00
|
|
|
|
%{_bindir}/find %{buildroot} -name '*.la' -delete -print
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
# Install documentation to shared %%_pkgdocdir.
|
|
|
|
|
%{__install} -Dpm 0644 -t %{buildroot}%{_pkgdocdir} \
|
2019-01-30 11:24:01 +00:00
|
|
|
|
ChangeLog NEWS README README-STATIC THANKS TODO
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
2019-01-14 17:50:05 +00:00
|
|
|
|
# Install distribution README file, if existing, to shared %%_pkgdocdir.
|
|
|
|
|
if [ -f README%{distname} ]; then
|
2018-11-10 12:53:57 +00:00
|
|
|
|
%{__install} -Dpm 0644 -t %{buildroot}%{_pkgdocdir} \
|
2019-01-14 17:50:05 +00:00
|
|
|
|
README%{distname}
|
2018-11-10 12:53:57 +00:00
|
|
|
|
fi
|
|
|
|
|
|
2019-01-30 10:50:40 +00:00
|
|
|
|
# Install README-POSIX file, if existing, to shared %%_pkgdocdir.
|
|
|
|
|
if [ -f README-POSIX ]; then
|
|
|
|
|
%{__install} -Dpm 0644 -t %{buildroot}%{_pkgdocdir} \
|
|
|
|
|
README-POSIX
|
|
|
|
|
fi
|
|
|
|
|
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
%check
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if %{with compat_pkg}
|
2018-10-01 17:27:08 +00:00
|
|
|
|
for dir in %{_vpath_builddir} %{_vpath_builddir}-compat; do
|
|
|
|
|
%else
|
|
|
|
|
for dir in %{_vpath_builddir}; do
|
|
|
|
|
%endif
|
|
|
|
|
%make_build -C ${dir} check || \
|
|
|
|
|
{
|
|
|
|
|
rc=$?;
|
|
|
|
|
echo "-----BEGIN TESTLOG: ${dir}-----";
|
|
|
|
|
%{__cat} ${dir}/test-suite.log;
|
|
|
|
|
echo "-----END TESTLOG: ${dir}-----";
|
|
|
|
|
exit $rc;
|
|
|
|
|
}
|
2018-10-25 14:34:44 +00:00
|
|
|
|
%if %{with memcheck}
|
|
|
|
|
%make_build -C ${dir} check-valgrind-memcheck || \
|
|
|
|
|
{
|
|
|
|
|
rc=$?;
|
|
|
|
|
echo "-----BEGIN TESTLOG: ${dir}-----";
|
|
|
|
|
%{__cat} ${dir}/test-suite-memcheck.log;
|
|
|
|
|
echo "-----END TESTLOG: ${dir}-----";
|
|
|
|
|
exit $rc;
|
|
|
|
|
}
|
|
|
|
|
%endif
|
2018-10-01 17:27:08 +00:00
|
|
|
|
done
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
2019-01-29 19:51:04 +00:00
|
|
|
|
# Run a full check with all hash methods enabled at the very end.
|
|
|
|
|
%make_build -C %{_vpath_builddir} distcheck
|
|
|
|
|
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
2018-02-17 08:45:54 +00:00
|
|
|
|
%ldconfig_scriptlets
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if %{with compat_pkg}
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%ldconfig_scriptlets compat
|
|
|
|
|
%endif
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%doc %dir %{_pkgdocdir}
|
|
|
|
|
%doc %{_pkgdocdir}/NEWS
|
2019-01-30 10:50:40 +00:00
|
|
|
|
%doc %{_pkgdocdir}/README
|
|
|
|
|
%if %{with new_api}
|
|
|
|
|
%doc %{_pkgdocdir}/README%{distname}
|
|
|
|
|
%endif
|
|
|
|
|
%if %{with enosys_stubs} && %{without compat_pkg}
|
|
|
|
|
%doc %{_pkgdocdir}/README-POSIX
|
|
|
|
|
%endif
|
2018-01-12 19:49:45 +00:00
|
|
|
|
%doc %{_pkgdocdir}/THANKS
|
2018-11-14 13:04:54 +00:00
|
|
|
|
%license AUTHORS COPYING.LIB LICENSING
|
|
|
|
|
/%{_lib}/.libcrypt.so.{%{soc},%{sov}}.hmac
|
|
|
|
|
/%{_lib}/libcrypt.so.{%{soc},%{sov}}
|
2018-01-12 19:49:45 +00:00
|
|
|
|
%{_mandir}/man5/crypt.5.*
|
|
|
|
|
|
|
|
|
|
|
2019-01-24 19:53:14 +00:00
|
|
|
|
%if %{with compat_pkg}
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%files compat
|
2019-01-30 10:50:40 +00:00
|
|
|
|
%if %{with enosys_stubs}
|
|
|
|
|
%doc %{_pkgdocdir}/README-POSIX
|
|
|
|
|
%endif
|
2018-10-01 17:27:08 +00:00
|
|
|
|
/%{_lib}/.libcrypt.so.{%{csoc},%{csov}}.hmac
|
|
|
|
|
/%{_lib}/libcrypt.so.{%{csoc},%{csov}}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
2018-01-12 19:49:45 +00:00
|
|
|
|
%files devel
|
|
|
|
|
%doc %{_pkgdocdir}/ChangeLog
|
|
|
|
|
%doc %{_pkgdocdir}/TODO
|
2018-11-14 18:36:20 +00:00
|
|
|
|
/%{_lib}/lib{,x}crypt.so
|
|
|
|
|
%{_includedir}/{,x}crypt.h
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%{_libdir}/pkgconfig/{libcrypt,%{name}}.pc
|
|
|
|
|
%{_mandir}/man3/crypt{,_r,_ra,_rn}.3.*
|
2018-11-09 15:31:07 +00:00
|
|
|
|
%{_mandir}/man3/crypt_checksalt.3.*
|
2018-10-01 17:27:08 +00:00
|
|
|
|
%{_mandir}/man3/crypt_gensalt{,_ra,_rn}.3.*
|
2018-11-20 09:37:02 +00:00
|
|
|
|
%{_mandir}/man3/crypt_preferred_method.3.*
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files static
|
2019-01-30 11:24:01 +00:00
|
|
|
|
%doc %{_pkgdocdir}/README-STATIC
|
2018-11-14 18:36:20 +00:00
|
|
|
|
/%{_lib}/.lib{,x}crypt.a.hmac
|
|
|
|
|
/%{_lib}/lib{,x}crypt.a
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2019-01-30 10:50:40 +00:00
|
|
|
|
* Wed Jan 30 2019 Björn Esser <besser82@fedoraproject.org> - 4.4.3-4
|
|
|
|
|
- Add a README-POSIX file with information about the stub functions
|
2019-01-30 11:24:01 +00:00
|
|
|
|
- Add a README-STATIC file with information about the static library
|
2019-01-30 10:50:40 +00:00
|
|
|
|
|
2019-01-30 09:55:59 +00:00
|
|
|
|
* Wed Jan 30 2019 Björn Esser <besser82@fedoraproject.org> - 4.4.3-3
|
|
|
|
|
- Replace unsafe functions in libxcrypt-compat with stubs (#1670735)
|
|
|
|
|
|
2019-01-24 19:53:14 +00:00
|
|
|
|
* Thu Jan 24 2019 Björn Esser <besser82@fedoraproject.org> - 4.4.3-2
|
|
|
|
|
- Fix and simplify the conditionals for the compat package
|
2019-01-24 20:11:54 +00:00
|
|
|
|
- Add an option to replace unsafe functions in the compat lib with a stub
|
2019-01-24 21:34:52 +00:00
|
|
|
|
- Add patch to fix another possible format-overflow
|
2019-01-24 19:53:14 +00:00
|
|
|
|
|
2019-01-24 19:40:43 +00:00
|
|
|
|
* Thu Jan 24 2019 Björn Esser <besser82@fedoraproject.org> - 4.4.3-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2019-01-24 08:29:52 +00:00
|
|
|
|
* Thu Jan 24 2019 Björn Esser <besser82@fedoraproject.org> - 4.4.2-8
|
|
|
|
|
- Optimize file removal for compatibility library
|
|
|
|
|
|
2019-01-21 16:05:48 +00:00
|
|
|
|
* Mon Jan 21 2019 Björn Esser <besser82@fedoraproject.org> - 4.4.2-7
|
|
|
|
|
- Add two upstream patches to fix build with GCC 9
|
|
|
|
|
|
2019-01-21 15:50:36 +00:00
|
|
|
|
* Mon Jan 21 2019 Björn Esser <besser82@fedoraproject.org> - 4.4.2-6
|
|
|
|
|
- Add upstream patch to add proper C++-guards in <xcrypt.h>
|
|
|
|
|
|
2019-01-14 18:29:06 +00:00
|
|
|
|
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 4.4.2-5
|
|
|
|
|
- Build the compat package with glibc hashing methods only
|
2019-01-14 18:29:09 +00:00
|
|
|
|
- Add an option to disable the compat-package for future use
|
2019-01-14 18:29:06 +00:00
|
|
|
|
|
2019-01-14 17:50:02 +00:00
|
|
|
|
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 4.4.2-4
|
|
|
|
|
- Bump SO-name for Fedora >= 30 and enable compat package (#1666033)
|
2019-01-14 17:50:05 +00:00
|
|
|
|
- Add distribution README file
|
2019-01-14 17:50:07 +00:00
|
|
|
|
- Update description of the compat package
|
2019-01-14 17:50:09 +00:00
|
|
|
|
- Conditionally remove non-built hashing methods from description
|
2019-01-14 17:50:02 +00:00
|
|
|
|
|
2018-12-23 13:19:59 +00:00
|
|
|
|
* Sun Dec 23 2018 Björn Esser <besser82@fedoraproject.org> - 4.4.2-3
|
|
|
|
|
- Remove architecture bits from Recommends
|
|
|
|
|
|
2018-12-23 13:09:08 +00:00
|
|
|
|
* Sun Dec 23 2018 Björn Esser <besser82@fedoraproject.org> - 4.4.2-2
|
|
|
|
|
- Update summary
|
|
|
|
|
|
2018-12-22 10:44:42 +00:00
|
|
|
|
* Sat Dec 22 2018 Björn Esser <besser82@fedoraproject.org> - 4.4.2-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-12-06 23:18:22 +00:00
|
|
|
|
* Thu Dec 06 2018 Björn Esser <besser82@fedoraproject.org> - 4.4.1-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-12-04 17:46:16 +00:00
|
|
|
|
* Tue Dec 04 2018 Björn Esser <besser82@fedoraproject.org> - 4.4.0-5
|
|
|
|
|
- Sync -fno-plt patch with upstream commit
|
|
|
|
|
|
2018-12-04 14:38:31 +00:00
|
|
|
|
* Tue Dec 04 2018 Björn Esser <besser82@fedoraproject.org> - 4.4.0-4
|
|
|
|
|
- Backport upstream commit to fix a memory leak from a static pointer
|
|
|
|
|
|
2018-12-04 12:54:42 +00:00
|
|
|
|
* Tue Dec 04 2018 Björn Esser <besser82@fedoraproject.org> - 4.4.0-3
|
|
|
|
|
- Backport upstream PR to build with -fno-plt optimization
|
|
|
|
|
|
2018-11-26 10:26:50 +00:00
|
|
|
|
* Mon Nov 26 2018 Björn Esser <besser82@fedoraproject.org> - 4.4.0-2
|
|
|
|
|
- Backport upstream commit to use a safer strcpy for the NT method
|
2018-11-26 10:29:53 +00:00
|
|
|
|
- Backport upstream generating base64 encoded output for NT gensalt
|
2018-11-26 10:32:40 +00:00
|
|
|
|
- Backport upstream commit to require less rbytes for NT gensalt
|
2018-11-26 10:34:49 +00:00
|
|
|
|
- Backport upstream commit to test incremental hmac-sha256 computation
|
2018-11-26 10:44:40 +00:00
|
|
|
|
- Add Recommends: mkpasswd for Fedora >= 30
|
2018-11-26 10:26:50 +00:00
|
|
|
|
|
2018-11-20 09:37:02 +00:00
|
|
|
|
* Tue Nov 20 2018 Björn Esser <besser82@fedoraproject.org> - 4.4.0-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-11-14 18:36:20 +00:00
|
|
|
|
* Wed Nov 14 2018 Björn Esser <besser82@fedoraproject.org> - 4.3.4-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-11-14 13:25:35 +00:00
|
|
|
|
* Wed Nov 14 2018 Björn Esser <besser82@fedoraproject.org> - 4.3.3-4
|
|
|
|
|
- Bump release for proper obsoletion of former common sub-package
|
|
|
|
|
|
2018-11-14 12:55:52 +00:00
|
|
|
|
* Wed Nov 14 2018 Björn Esser <besser82@fedoraproject.org> - 4.3.3-3
|
|
|
|
|
- Add two upstream patches with minor fixes
|
2018-11-14 12:58:24 +00:00
|
|
|
|
- Add HMAC checksum file for the static library
|
2018-11-14 13:04:54 +00:00
|
|
|
|
- Drop the common sub-package
|
2018-11-14 13:14:23 +00:00
|
|
|
|
- Some spec-file optimizations
|
2018-11-14 12:55:52 +00:00
|
|
|
|
|
2018-11-13 11:32:44 +00:00
|
|
|
|
* Tue Nov 13 2018 Björn Esser <besser82@fedoraproject.org> - 4.3.3-2
|
|
|
|
|
- Add a patch to define crypt_gensalt_r as macro, so applications
|
|
|
|
|
link the identical crypt_gensalt_rn directly
|
|
|
|
|
|
2018-11-11 21:50:23 +00:00
|
|
|
|
* Sun Nov 11 2018 Björn Esser <besser82@fedoraproject.org> - 4.3.3-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-11-11 16:29:22 +00:00
|
|
|
|
* Sun Nov 11 2018 Björn Esser <besser82@fedoraproject.org> - 4.3.2-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-11-11 11:56:35 +00:00
|
|
|
|
* Sun Nov 11 2018 Björn Esser <besser82@fedoraproject.org> - 4.3.1-2
|
|
|
|
|
- Backport two patches from upstream fixing the gensalt function for
|
|
|
|
|
NT to properly terminate its returned output
|
|
|
|
|
|
2018-11-10 22:41:49 +00:00
|
|
|
|
* Sat Nov 10 2018 Björn Esser <besser82@fedoraproject.org> - 4.3.1-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
|
|
|
|
* Sat Nov 10 2018 Björn Esser <besser82@fedoraproject.org> - 4.3.0-1
|
2018-11-09 15:31:07 +00:00
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-10-26 17:33:06 +00:00
|
|
|
|
* Fri Oct 26 2018 Björn Esser <besser82@fedoraproject.org> - 4.2.3-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-10-25 14:28:21 +00:00
|
|
|
|
* Thu Oct 25 2018 Björn Esser <besser82@fedoraproject.org> - 4.2.2-2
|
|
|
|
|
- Add patch updating to recent development version
|
2018-10-25 14:34:44 +00:00
|
|
|
|
- Run valgrind-memcheck
|
2018-10-25 14:40:55 +00:00
|
|
|
|
- Use bootstrap script
|
2018-10-25 14:28:21 +00:00
|
|
|
|
|
2018-10-18 19:27:28 +00:00
|
|
|
|
* Thu Oct 18 2018 Björn Esser <besser82@fedoraproject.org> - 4.2.2-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-10-01 19:54:03 +00:00
|
|
|
|
* Mon Oct 01 2018 Björn Esser <besser82@fedoraproject.org> - 4.2.1-3
|
|
|
|
|
- Drop compat-devel package
|
2018-10-03 09:56:56 +00:00
|
|
|
|
- Set configure options from globals
|
2018-10-01 19:54:03 +00:00
|
|
|
|
|
2018-10-01 17:27:08 +00:00
|
|
|
|
* Sun Sep 30 2018 Björn Esser <besser82@fedoraproject.org> - 4.2.1-2
|
|
|
|
|
- Build out-of-tree
|
|
|
|
|
- Split off noarch-bits into common sub-package
|
|
|
|
|
- Update %%description
|
|
|
|
|
- Prepare to remove legacy API from library and to provide a compatibilty
|
|
|
|
|
package for the legacy API
|
|
|
|
|
|
2018-09-29 14:59:00 +00:00
|
|
|
|
* Sat Sep 29 2018 Björn Esser <besser82@fedoraproject.org> - 4.2.1-1
|
|
|
|
|
- New upstream release
|
2018-09-29 15:05:25 +00:00
|
|
|
|
- Add new manpages
|
2018-09-29 14:59:00 +00:00
|
|
|
|
|
2018-09-29 14:24:38 +00:00
|
|
|
|
* Sat Sep 29 2018 Björn Esser <besser82@fedoraproject.org> - 4.2.0-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-08-24 10:26:54 +00:00
|
|
|
|
* Fri Aug 24 2018 Björn Esser <besser82@fedoraproject.org> - 4.1.2-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-08-08 10:31:00 +00:00
|
|
|
|
* Wed Aug 08 2018 Björn Esser <besser82@fedoraproject.org> - 4.1.1-4
|
|
|
|
|
- Move *.3 manpages to devel subpackage (#1613762)
|
|
|
|
|
- Add needed Conflicts: man-pages < 4.15-3
|
|
|
|
|
|
2018-08-08 05:50:39 +00:00
|
|
|
|
* Wed Aug 08 2018 Björn Esser <besser82@fedoraproject.org> - 4.1.1-3
|
|
|
|
|
- Make crypt{,_r} return NULL on failure (#1611784)
|
|
|
|
|
|
2018-08-04 11:18:38 +00:00
|
|
|
|
* Sat Aug 04 2018 Björn Esser <besser82@fedoraproject.org> - 4.1.1-2
|
2018-08-08 05:50:39 +00:00
|
|
|
|
- Add manpages for crypt{,_r,_ra}.3 (#1610307)
|
2018-08-04 11:18:38 +00:00
|
|
|
|
|
2018-08-01 09:54:10 +00:00
|
|
|
|
* Wed Aug 01 2018 Björn Esser <besser82@fedoraproject.org> - 4.1.1-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-07-13 18:59:08 +00:00
|
|
|
|
* Fri Jul 13 2018 Björn Esser <besser82@fedoraproject.org> - 4.1.0-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-07-13 10:37:38 +00:00
|
|
|
|
* Fri Jul 13 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.1-6
|
|
|
|
|
- Make testsuite fail on error again
|
|
|
|
|
- Update patch0 with more upstream fixes
|
|
|
|
|
|
2018-07-13 10:02:19 +00:00
|
|
|
|
* Fri Jul 13 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.1-5
|
|
|
|
|
- Add patch to update to recent development branch
|
|
|
|
|
- Re-enable SUNMD5 support as it is BSD licensed now
|
|
|
|
|
- Build compatibility symbols for glibc only
|
2018-07-13 10:07:18 +00:00
|
|
|
|
- Skip failing testsuite once
|
2018-07-13 10:02:19 +00:00
|
|
|
|
|
2018-07-13 09:05:37 +00:00
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
2018-06-29 13:39:52 +00:00
|
|
|
|
* Fri Jun 29 2018 Florian Weimer <fweimer@redhat.com> - 4.0.1-3
|
|
|
|
|
- Remove CDDL from license list (#1592445)
|
|
|
|
|
|
2018-06-29 12:45:29 +00:00
|
|
|
|
* Fri Jun 29 2018 Florian Weimer <fweimer@redhat.com> - 4.0.1-2
|
|
|
|
|
- Remove SUNMD5 support (#1592445)
|
|
|
|
|
|
2018-05-16 11:19:53 +00:00
|
|
|
|
* Wed May 16 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.1-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-02-17 08:45:54 +00:00
|
|
|
|
* Sat Feb 17 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-5
|
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
|
2018-02-07 23:44:52 +00:00
|
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.0-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
2018-02-01 13:23:06 +00:00
|
|
|
|
* Thu Feb 01 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-3
|
|
|
|
|
- Add patch to fix unintialize value in badsalt test
|
|
|
|
|
|
2018-01-31 00:24:17 +00:00
|
|
|
|
* Wed Jan 31 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-2
|
|
|
|
|
- Add patch to fix bcrypt test with GCC8
|
|
|
|
|
|
2018-01-27 15:46:57 +00:00
|
|
|
|
* Sat Jan 27 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-1
|
|
|
|
|
- New upstream release
|
|
|
|
|
|
2018-01-22 16:43:21 +00:00
|
|
|
|
* Mon Jan 22 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0.0-0.204.20180120git3436e7b
|
|
|
|
|
- Fix Obsoletes
|
|
|
|
|
|
2018-01-20 20:41:55 +00:00
|
|
|
|
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-0.203.20180120git3436e7b
|
|
|
|
|
- Update to new snapshot fixing cast-align
|
|
|
|
|
|
2018-01-20 20:21:31 +00:00
|
|
|
|
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-0.202.20180120gitde99d27
|
|
|
|
|
- Update to new snapshot (rhbz#1536752)
|
|
|
|
|
|
2018-01-20 11:22:19 +00:00
|
|
|
|
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-0.201.20171109git15447aa
|
|
|
|
|
- Use archful Obsoletes for libcrypt
|
|
|
|
|
- Add versioned Requires on glibc packages not shipping libcrypt
|
|
|
|
|
- Add comments about the packaging logic for replacing former libcrypt
|
|
|
|
|
|
2018-01-12 19:49:45 +00:00
|
|
|
|
* Fri Jan 12 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-0.200.20171109git15447aa
|
|
|
|
|
- Initial import (rhbz#1532794)
|
2018-01-19 21:34:00 +00:00
|
|
|
|
- Add Obsoletes/Provides for libcrypt
|
2018-01-12 19:49:45 +00:00
|
|
|
|
|
|
|
|
|
* Wed Jan 10 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-0.101.20171109git15447aa
|
|
|
|
|
- Fix style of %%git_{rel,ver}
|
|
|
|
|
|
|
|
|
|
* Tue Jan 09 2018 Björn Esser <besser82@fedoraproject.org> - 4.0.0-0.100.git20171109.15447aa
|
|
|
|
|
- Initial rpm release (rhbz#1532794)
|
|
|
|
|
- Start revision at 0.100 to superseed builds from COPR
|