2015-09-01 11:03:52 +00:00
|
|
|
#
|
|
|
|
# spec file for package libheimdal
|
|
|
|
#
|
2022-05-25 16:23:12 +00:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2015-09-01 11:03:52 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2022-05-25 16:23:12 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-09-01 11:03:52 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: libheimdal
|
2017-02-02 08:34:18 +00:00
|
|
|
Summary: The Heimdal implementation of the Kerberos 5 protocol
|
2015-09-01 12:36:24 +00:00
|
|
|
License: BSD-3-Clause
|
2017-02-02 08:34:18 +00:00
|
|
|
Group: Productivity/Networking/Security
|
Accepting request 711480 from home:enzokiel:branches:network
- Update to version 7.7.0
+ Bug fixes:
- PKCS#11 hcrypto back-end:
+ initialize the p11_module_load function list
+ verify that not only is a mechanism present but that its
mechanism info states that it offers the required
encryption, decryption or digest services
- krb5:
+ Starting with 7.6, Heimdal permitted requesting
authenticated anonymous tickets. However, it did not
verify that a KDC in fact returned an anonymous ticket
when one was requested.
+ Cease setting the KDCOption reaquest_anonymous flag when
issuing S4UProxy (constrained delegation) TGS requests.
+ when the Win2K PKINIT compatibility option is set, do not
require krbtgt otherName to match when validating KDC
certificate.
+ set PKINIT_BTMM flag per Apple implementation
+ use memset_s() instead of memset()
- kdc:
+ When generating KRB5SignedPath in the AS, use the reply
client name rather than the one from the request, so
validation will work correctly in the TGS.
+ allow checksum of PA-FOR-USER to be HMAC_MD5. Even if TGT
used an enctype with a different checksum. Per [MS-SFU]
2.2.1 PA-FOR-USER the checksum is always HMAC_MD5, and
that's what Windows and MIT clients send.
In Heimdal both the client and kdc use instead the
checksum of the TGT, and therefore work with each other
but Windows and MIT clients fail against Heimdal KDC.
Both Windows and MIT KDC would allow any keyed checksum
to be used so Heimdal client work fine against it.
Change Heimdal KDC to allow HMAC_MD5 even for non RC4
based TGT in order to support per-spec clients.
+ use memset_s() instead of memset()
+ Detect Heimdal 1.0 through 7.6 clients that issue
S4UProxy (constrained delegation) TGS Requests with the
request anonymous flag set. These requests will be
treated as S4UProxy requests and not anonymous requests.
- HDB:
+ Set SQLite3 backend default page size to 8KB.
+ Add hdb_set_sync() method
- kadmind:
+ disable HDB sync during database load avoiding
unnecessary disk i/o.
- ipropd:
+ disable HDB sync during receive_everything. Doing an
fsync per-record when receiving the complete HDB is a
performance disaster. Among other things, if the HDB is
very large, then one slave receving a full HDB can cause
other slaves to timeout and, if HDB write activity is
high enough to cause iprop log truncation, then also need
full syncs, which leads to a cycle of full syncs for all
slaves until HDB write activity drops.
Allowing the iprop log to be larger helps, but improving
receive_everything() performance helps even more.
- kinit:
+ Anonymous PKINIT tickets discard the realm information
used to locate the issuing AS. Store the issuing realm in
the credentials cache in order to locate a KDC which can
renew them.
+ Do not leak the result of krb5_cc_get_config() when
determining anonymous PKINIT start realm.
- klist:
+ Show transited-policy-checked, ok-as-delegate and
anonymous flags when listing credentials.
- tests:
+ Regenerate certs so that they expire before the 2038
armageddon so the test suite will pass on 32-bit
operating systems until the underlying issues can be
resolved.
- Solaris:
+ Define _STDC_C11_BCI for memset_s prototype
- build tooling:
+ Convert from python 2 to python 3
- documentation:
+ rename verify-password to verify-password-quality
+ hprop default mode is encrypt
+ kadmind "all" permission does not include "get-keys"
+ verify-password-quality might not be stateless
- Version 7.6.0
+ Security (#555):
- CVE-2018-16860 Heimdal KDC: Reject PA-S4U2Self with unkeyed
checksum
When the Heimdal KDC checks the checksum that is placed on
the S4U2Self packet by the server to protect the requested
principal against modification, it does not confirm that
the checksum algorithm that protects the user name
(principal) in the request is keyed. This allows a
man-in-the-middle attacker who can intercept the request to
the KDC to modify the packet by replacing the user name
(principal) in the request with any desired user name
(principal) that exists in the KDC and replace the checksum
protecting that name with a CRC32 checksum (which requires
no prior knowledge to compute).
This would allow a S4U2Self ticket requested on behalf of
user name (principal) user@EXAMPLE.COM to any service to be
changed to a S4U2Self ticket with a user name (principal) of
Administrator@EXAMPLE.COM. This ticket would then contain
the PAC of the modified user name (principal).
- CVE-2019-12098, client-only:
RFC8062 Section 7 requires verification of the PA-PKINIT-KX
key exchange when anonymous PKINIT is used. Failure to do
so can permit an active attacker to become a
man-in-the-middle.
+ Bug fixes:
- Happy eyeballs: Don't wait for responses from
known-unreachable KDCs.
- kdc:
+ check return copy_Realm, copy_PrincipalName,
copy_EncryptionKey
- kinit:
+ cleanup temporary ccaches
+ see man page for "kinit --anonymous" command line syntax
change
- kdc:
+ Make anonymous AS-requests more RFC8062-compliant.
Updated expired test certificates
- Solaris:
+ PKCS#11 hcrypto backend broken since 7.0.1
+ Building with Sun Pro C
+ Features:
- kuser: support authenticated anonymous AS-REQs in kinit
- kdc: support for anonymous TGS-REQs
- kgetcred support for anonymous service tickets
- Support builds with OpenSSL 1.1.1
- fixed heimdal-patched.diff and reproducible.patch
OBS-URL: https://build.opensuse.org/request/show/711480
OBS-URL: https://build.opensuse.org/package/show/network/libheimdal?expand=0&rev=23
2019-06-23 01:01:11 +00:00
|
|
|
Version: 7.7.0
|
2015-09-01 12:36:24 +00:00
|
|
|
Release: 0
|
2022-05-25 16:23:12 +00:00
|
|
|
URL: http://www.h5l.org
|
2015-09-05 11:04:36 +00:00
|
|
|
# patched source can be created with script heimdal-patch-source.sh:
|
|
|
|
# ./heimdal-patch-source.sh heimdal-%{version}.tar.gz
|
|
|
|
Source0: heimdal-%{version}-patched.tar.bz2
|
|
|
|
Source2: heimdal-patch-source.sh
|
2017-01-07 23:58:55 +00:00
|
|
|
Patch0: heimdal-patched.diff
|
2018-08-07 19:30:16 +00:00
|
|
|
# PATCH-FIX-UPSTREAM bmwiedemann -- make build reproducible (boo#1047218)
|
|
|
|
Patch1: reproducible.patch
|
2022-06-29 07:23:29 +00:00
|
|
|
# PATCH-FIX-UPSTREAM heimdal-7.7.0-autoconf-2.70.patch -- fix build with autoconf 2.70 (gh#heimdal/heimdal#856)
|
|
|
|
Patch2: heimdal-7.7.0-autoconf-2.70.patch
|
2015-09-01 21:47:16 +00:00
|
|
|
%if 0%{?sles_version} == 11
|
2015-09-05 11:04:36 +00:00
|
|
|
BuildRequires: libcom_err-devel
|
2015-09-01 21:47:16 +00:00
|
|
|
BuildRequires: sqlite3-devel
|
|
|
|
%else
|
2015-09-05 11:04:36 +00:00
|
|
|
BuildRequires: pkgconfig(com_err)
|
2015-09-01 21:47:16 +00:00
|
|
|
BuildRequires: pkgconfig(sqlite3)
|
|
|
|
%endif
|
|
|
|
%if 0%{suse_version} > 1315
|
2015-09-01 11:03:52 +00:00
|
|
|
BuildRequires: pkgconfig(ncurses) >= 5.3
|
|
|
|
%else
|
|
|
|
BuildRequires: ncurses-devel >= 5.3
|
|
|
|
%endif
|
2015-09-05 11:04:36 +00:00
|
|
|
BuildRequires: automake >= 1.11
|
|
|
|
BuildRequires: bison
|
2017-02-02 08:34:18 +00:00
|
|
|
BuildRequires: db-devel >= 4.8
|
2015-09-01 11:03:52 +00:00
|
|
|
BuildRequires: flex
|
|
|
|
BuildRequires: libtool
|
2015-09-01 12:36:24 +00:00
|
|
|
BuildRequires: pam-devel
|
2015-09-01 11:03:52 +00:00
|
|
|
BuildRequires: pkg-config
|
2017-02-02 08:34:18 +00:00
|
|
|
BuildRequires: readline-devel
|
2015-09-01 11:03:52 +00:00
|
|
|
BuildRequires: texinfo
|
2017-12-07 15:44:48 +00:00
|
|
|
BuildRequires: perl(JSON)
|
2015-09-01 11:03:52 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Heimdal is an implementation of Kerberos 5 (and some more stuff) largely written
|
|
|
|
in Sweden (which was important when we started writing it, less so now).
|
|
|
|
It is freely available under a three clause BSD style license.
|
|
|
|
|
|
|
|
Other free implementations include the one from MIT, and Shishi.
|
|
|
|
Also Microsoft Windows and Sun's Java come with implementations of Kerberos.
|
|
|
|
|
|
|
|
This package only provides libraries and devel files (binaries have been removed),
|
2017-02-02 08:34:18 +00:00
|
|
|
libraries are required by 64-bit package of ICAClient version 13.2.
|
2015-09-01 11:03:52 +00:00
|
|
|
|
2022-05-25 16:23:12 +00:00
|
|
|
%package -n libasn1-8
|
|
|
|
Summary: ASN.1 implementation from Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libasn1-8
|
|
|
|
This package contains the ASN.1 parser required for Heimdal.
|
|
|
|
|
|
|
|
%package -n libgssapi3
|
|
|
|
Summary: GSSAPI implementation from Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libgssapi3
|
|
|
|
GSSAPI implementation from Heimdal.
|
|
|
|
|
|
|
|
%package -n libhcrypto4
|
|
|
|
Summary: Cryptographic library from Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libhcrypto4
|
|
|
|
This package contains the cryptographic library required for Heimdal.
|
|
|
|
|
|
|
|
%package -n libhdb9
|
|
|
|
Summary: Heimdal database backend library
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libhdb9
|
|
|
|
libhdb provides the backend support for Heimdal kdc and kadmind. Its
|
|
|
|
here where plugins for diffrent database engines can be pluged in and
|
|
|
|
extend support for here Heimdal get the principal and policy data
|
|
|
|
from.
|
|
|
|
|
|
|
|
Example of Heimdal backend are: Berkeley DB (BDB), NDB, LDAP.
|
|
|
|
|
|
|
|
%package -n libheimbase1
|
|
|
|
Summary: Base library for Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libheimbase1
|
|
|
|
This package contains the base library for Heimdal Kerberos.
|
|
|
|
|
|
|
|
%package -n libheimedit0
|
|
|
|
Summary: libedit fork of the Heimdal Kerberos project
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libheimedit0
|
|
|
|
libedit is a command line editing and history library. It is
|
|
|
|
designed to be used by interactive programs that allow the user
|
|
|
|
to type commands at a terminal prompt.
|
|
|
|
|
|
|
|
%package -n libheimntlm0
|
|
|
|
Summary: NTLM implementation from Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libheimntlm0
|
|
|
|
This package contains the NTLM support library from and for Heimdal Kerberos.
|
|
|
|
|
|
|
|
%package -n libhx509-5
|
|
|
|
Summary: X.509 implementation from Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libhx509-5
|
|
|
|
This package contains the X.509 support library from and for Heimdal Kerberos.
|
|
|
|
|
|
|
|
%package -n libkadm5clnt7
|
|
|
|
Summary: Client library for Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libkadm5clnt7
|
|
|
|
This package contains the client library for Heimdal's kadmin program.
|
|
|
|
|
|
|
|
%package -n libkadm5srv8
|
|
|
|
Summary: Server library for Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libkadm5srv8
|
|
|
|
This package contains the server library for Heimdal's kadmin program.
|
|
|
|
|
|
|
|
%package -n libkafs0
|
|
|
|
Summary: KAFS support for Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libkafs0
|
|
|
|
This package contains the library for supporting the in-kernel Andrew File System.
|
|
|
|
|
|
|
|
%package -n libkdc2
|
|
|
|
Summary: Key Distribution Center library for Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libkdc2
|
|
|
|
This package contains the KDC support library.
|
|
|
|
|
|
|
|
%package -n libkrb5-26
|
|
|
|
Summary: Kerberos 5 API for Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libkrb5-26
|
|
|
|
This package contains the Kerberos 5 library.
|
|
|
|
|
|
|
|
%package -n libotp0
|
|
|
|
Summary: One Time Password library for Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libotp0
|
|
|
|
This package contains the library for One Time Password support.
|
|
|
|
|
|
|
|
%package -n libroken18
|
|
|
|
Summary: OS abstraction library for Heimdal Kerberos
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libroken18
|
|
|
|
This package contains a library that wraps or adds utility functions
|
|
|
|
missing from certain operating systems.
|
|
|
|
|
|
|
|
%package -n libsl0
|
|
|
|
Summary: Implementation of a suggestion lister
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libsl0
|
|
|
|
This package contains a library that suggests commands in a "did you
|
|
|
|
mean" fashion.
|
|
|
|
|
|
|
|
%package -n libwind0
|
|
|
|
Summary: An implementation of RFC 3454 (stringprep)
|
|
|
|
Group: System/Libraries
|
|
|
|
Conflicts: heimdal < %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libwind0
|
|
|
|
This package contains an implementation of the stringprep library.
|
|
|
|
|
2015-09-01 11:03:52 +00:00
|
|
|
%package devel
|
2017-02-02 08:34:18 +00:00
|
|
|
Summary: The Heimdal implementation of the Kerberos 5 protocol
|
2015-09-01 11:03:52 +00:00
|
|
|
Group: Development/Libraries/C and C++
|
2022-05-25 16:23:12 +00:00
|
|
|
Requires: libasn1-8 = %{version}-%{release}
|
|
|
|
Requires: libgssapi3 = %{version}-%{release}
|
|
|
|
Requires: libhcrypto4 = %{version}-%{release}
|
|
|
|
Requires: libhdb9 = %{version}-%{release}
|
|
|
|
Requires: libheimbase1 = %{version}-%{release}
|
|
|
|
Requires: libheimedit0 = %{version}-%{release}
|
|
|
|
Requires: libheimntlm0 = %{version}-%{release}
|
|
|
|
Requires: libhx509-5 = %{version}-%{release}
|
|
|
|
Requires: libkadm5clnt7 = %{version}-%{release}
|
|
|
|
Requires: libkadm5srv8 = %{version}-%{release}
|
|
|
|
Requires: libkafs0 = %{version}-%{release}
|
|
|
|
Requires: libkdc2 = %{version}-%{release}
|
|
|
|
Requires: libkrb5-26 = %{version}-%{release}
|
|
|
|
Requires: libotp0 = %{version}-%{release}
|
|
|
|
Requires: libroken18 = %{version}-%{release}
|
|
|
|
Requires: libsl0 = %{version}-%{release}
|
|
|
|
Requires: libwind0 = %{version}-%{release}
|
2015-09-05 11:04:36 +00:00
|
|
|
%if 0%{?sles_version} == 11
|
|
|
|
Requires: libcom_err-devel
|
|
|
|
Requires: sqlite3-devel
|
|
|
|
%else
|
|
|
|
Requires: pkgconfig(com_err)
|
|
|
|
Requires: pkgconfig(sqlite3)
|
|
|
|
%endif
|
|
|
|
%if 0%{suse_version} > 1315
|
|
|
|
Requires: pkgconfig(ncurses) >= 5.3
|
|
|
|
%else
|
|
|
|
Requires: ncurses-devel >= 5.3
|
|
|
|
%endif
|
|
|
|
Requires: db-devel >= 4.8
|
|
|
|
Requires: glibc-devel
|
2015-09-02 08:52:27 +00:00
|
|
|
Conflicts: krb5-devel
|
|
|
|
Conflicts: krb5-mini-devel
|
2015-09-01 11:03:52 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Heimdal is an implementation of Kerberos 5 (and some more stuff) largely written
|
|
|
|
in Sweden (which was important when we started writing it, less so now).
|
|
|
|
It is freely available under a three clause BSD style license.
|
|
|
|
|
|
|
|
Other free implementations include the one from MIT, and Shishi.
|
|
|
|
Also Microsoft Windows and Sun's Java come with implementations of Kerberos.
|
|
|
|
|
|
|
|
This package only provides libraries and devel files (binaries have been removed),
|
2017-02-02 08:34:18 +00:00
|
|
|
libraries are required by 64-bit package of ICAClient version 13.2.
|
2015-09-01 11:03:52 +00:00
|
|
|
|
|
|
|
%prep
|
2022-05-25 16:23:12 +00:00
|
|
|
%autosetup -p1 -n heimdal-%{version}
|
2015-09-01 11:03:52 +00:00
|
|
|
|
|
|
|
%build
|
2018-08-07 19:30:16 +00:00
|
|
|
export SOURCE_HOST=OBS # for reproducible builds (boo#1084909)
|
2015-09-05 11:04:36 +00:00
|
|
|
autoreconf -fi
|
2015-09-01 21:47:16 +00:00
|
|
|
%configure \
|
|
|
|
--with-sqlite3=%{_prefix}
|
2022-05-25 16:23:12 +00:00
|
|
|
%make_build
|
2015-09-01 11:03:52 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%make_install
|
|
|
|
|
|
|
|
rm -rf %{buildroot}%{_libdir}/*.a
|
|
|
|
rm -rf %{buildroot}%{_libdir}/*.la
|
|
|
|
|
|
|
|
%post
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/heimdal.info.gz
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/hx509.info.gz
|
|
|
|
|
2015-09-01 12:35:39 +00:00
|
|
|
%preun
|
2015-09-01 11:03:52 +00:00
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/heimdal.info.gz
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/hx509.info.gz
|
|
|
|
|
2022-05-25 16:23:12 +00:00
|
|
|
%files -n libasn1-8
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libasn1.so.8*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libgssapi3
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libgssapi.so.3*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libhcrypto4
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libhcrypto.so.4*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libhdb9
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libhdb.so.9*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libheimbase1
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libheimbase.so.1*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libheimedit0
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libheimedit.so.0*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libheimntlm0
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libheimntlm.so.0*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libhx509-5
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libhx509.so.5*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libkadm5clnt7
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libkadm5clnt.so.7*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libkadm5srv8
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libkadm5srv.so.8*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libkafs0
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libkafs.so.0*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libkdc2
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libkdc.so.2*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libkrb5-26
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libkrb5.so.26*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libotp0
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libotp.so.0*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libroken18
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libroken.so.18*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libsl0
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libsl.so.0*
|
2022-05-25 16:23:12 +00:00
|
|
|
|
|
|
|
%files -n libwind0
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_libdir}/libwind.so.0*
|
|
|
|
|
|
|
|
%files devel
|
2022-05-25 16:23:12 +00:00
|
|
|
%license LICENSE
|
|
|
|
%doc NEWS README TODO
|
2015-09-01 11:03:52 +00:00
|
|
|
%{_includedir}/*.h
|
|
|
|
%dir %{_includedir}/gssapi
|
|
|
|
%{_includedir}/gssapi/*.h
|
|
|
|
%dir %{_includedir}/hcrypto
|
|
|
|
%{_includedir}/hcrypto/*.h
|
|
|
|
%dir %{_includedir}/kadm5
|
|
|
|
%{_includedir}/kadm5/*.h
|
|
|
|
%dir %{_includedir}/krb5
|
|
|
|
%{_includedir}/krb5/*.h
|
|
|
|
%dir %{_includedir}/roken
|
|
|
|
%{_includedir}/roken/*.h
|
|
|
|
%{_libdir}/*.so
|
2022-05-25 16:23:12 +00:00
|
|
|
%{_infodir}/*.info.gz
|
2015-09-01 12:36:24 +00:00
|
|
|
|
|
|
|
%changelog
|