ddf7d0
%global nspr_version 4.21.0
ddf7d0
%global nss_version 3.44.0
1dc743
%global unsupported_tools_directory %{_libdir}/nss/unsupported-tools
1dc743
%global saved_files_dir %{_libdir}/nss/saved
1dc743
%global dracutlibdir %{_prefix}/lib/dracut
1dc743
%global dracut_modules_dir %{dracutlibdir}/modules.d/05nss-softokn/
1dc743
%global dracut_conf_dir %{dracutlibdir}/dracut.conf.d
1dc743
ddf7d0
# The timestamp of our downstream manual pages, e.g., nss-config.1
ddf7d0
%global manual_date "Nov 13 2013"
ddf7d0
1dc743
%bcond_without tests
1dc743
1dc743
# Produce .chk files for the final stripped binaries
1dc743
#
1dc743
# NOTE: The LD_LIBRARY_PATH line guarantees shlibsign links
1dc743
# against the freebl that we just built. This is necessary
1dc743
# because the signing algorithm changed on 3.14 to DSA2 with SHA256
1dc743
# whereas we previously signed with DSA and SHA1. We must Keep this line
1dc743
# until all mock platforms have been updated.
1dc743
# After %%{__os_install_post} we would add
1dc743
# export LD_LIBRARY_PATH=$RPM_BUILD_ROOT/%%{_libdir}
1dc743
%define __spec_install_post \
1dc743
    %{?__debug_package:%{__debug_install_post}} \
1dc743
    %{__arch_install_post} \
1dc743
    %{__os_install_post} \
1dc743
    $RPM_BUILD_ROOT/%{unsupported_tools_directory}/shlibsign -i $RPM_BUILD_ROOT/%{_libdir}/libsoftokn3.so \
1dc743
    $RPM_BUILD_ROOT/%{unsupported_tools_directory}/shlibsign -i $RPM_BUILD_ROOT/%{_libdir}/libfreeblpriv3.so \
1dc743
    $RPM_BUILD_ROOT/%{unsupported_tools_directory}/shlibsign -i $RPM_BUILD_ROOT/%{_libdir}/libfreebl3.so \
1dc743
    $RPM_BUILD_ROOT/%{unsupported_tools_directory}/shlibsign -i $RPM_BUILD_ROOT/%{_libdir}/libnssdbm3.so \
1dc743
%{nil}
1dc743
1dc743
# The upstream omits the trailing ".0", while we need it for
1dc743
# consistency with the pkg-config version:
1dc743
# https://bugzilla.redhat.com/show_bug.cgi?id=1578106
1dc743
%{lua:
1dc743
rpm.define(string.format("nss_archive_version %s",
1dc743
           string.gsub(rpm.expand("%nss_version"), "(.*)%.0$", "%1")))
1dc743
}
1dc743
1dc743
%{lua:
1dc743
rpm.define(string.format("nss_release_tag NSS_%s_RTM",
1dc743
           string.gsub(rpm.expand("%nss_archive_version"), "%.", "_")))
1dc743
}
1dc743
1dc743
Summary:          Network Security Services
1dc743
Name:             nss
1dc743
Version:          %{nss_version}
ddf7d0
Release:          14%{?dist}
1dc743
License:          MPLv2.0
1dc743
URL:              http://www.mozilla.org/projects/security/pki/nss/
1dc743
Requires:         nspr >= %{nspr_version}
1dc743
Requires:         nss-util >= %{nss_version}
1dc743
# TODO: revert to same version as nss once we are done with the merge
1dc743
Requires:         nss-softokn%{_isa} >= %{nss_version}
1dc743
Requires:         nss-system-init
1dc743
Requires:         p11-kit-trust
1dc743
Requires:         crypto-policies
1dc743
BuildRequires:    nspr-devel >= %{nspr_version}
1dc743
# for shlibsign
1dc743
BuildRequires:    nss-softokn
1dc743
BuildRequires:    sqlite-devel
1dc743
BuildRequires:    zlib-devel
1dc743
BuildRequires:    pkgconfig
1dc743
BuildRequires:    gawk
1dc743
BuildRequires:    psmisc
1dc743
BuildRequires:    perl-interpreter
1dc743
BuildRequires:    gcc-c++
1dc743
1dc743
Source0:          https://ftp.mozilla.org/pub/security/nss/releases/%{nss_release_tag}/src/%{name}-%{nss_archive_version}.tar.gz
1dc743
Source1:          nss-util.pc.in
1dc743
Source2:          nss-util-config.in
1dc743
Source3:          nss-softokn.pc.in
1dc743
Source4:          nss-softokn-config.in
1dc743
Source6:          nss-softokn-dracut-module-setup.sh
1dc743
Source7:          nss-softokn-dracut.conf
1dc743
Source8:          nss.pc.in
1dc743
Source9:          nss-config.in
1dc743
Source10:         blank-cert8.db
1dc743
Source11:         blank-key3.db
1dc743
Source12:         blank-secmod.db
1dc743
Source13:         blank-cert9.db
1dc743
Source14:         blank-key4.db
1dc743
Source15:         system-pkcs11.txt
1dc743
Source16:         setup-nsssysinit.sh
1dc743
Source20:         nss-config.xml
1dc743
Source21:         setup-nsssysinit.xml
1dc743
Source22:         pkcs11.txt.xml
1dc743
Source23:         cert8.db.xml
1dc743
Source24:         cert9.db.xml
1dc743
Source25:         key3.db.xml
1dc743
Source26:         key4.db.xml
1dc743
Source27:         secmod.db.xml
1dc743
Source28:         nss-p11-kit.config
ddf7d0
Source29:         nss-softokn-cavs-1.0.tar.gz
1dc743
1dc743
# To inject hardening flags for DSO
1dc743
Patch1:           nss-dso-ldflags.patch
1dc743
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=617723
1dc743
Patch2:           nss-539183.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1549382
ddf7d0
Patch3:           nss-module-leak.patch
1dc743
# This patch uses the GCC -iquote option documented at
1dc743
# http://gcc.gnu.org/onlinedocs/gcc/Directory-Options.html#Directory-Options
1dc743
# to give the in-tree headers a higher priority over the system headers,
1dc743
# when they are included through the quote form (#include "file.h").
1dc743
#
1dc743
# This ensures a build even when system headers are older. Such is the
1dc743
# case when starting an update with API changes or even private export
1dc743
# changes.
1dc743
#
1dc743
# Once the buildroot aha been bootstrapped the patch may be removed
1dc743
# but it doesn't hurt to keep it.
1dc743
Patch4:           iquote.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1552767
ddf7d0
Patch5:           nss-skip-tls13-fips.patch
ddf7d0
# TLS 1.3 currently doesn't work under FIPS mode:
ddf7d0
# https://bugzilla.redhat.com/show_bug.cgi?id=1710372
ddf7d0
Patch6:           nss-fips-disable-tls13.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1552208
ddf7d0
Patch7:           nss-disable-pkcs1-sigalgs-tls13.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1553443
ddf7d0
Patch8:           nss-post-handshake-auth-with-tickets.patch
ddf7d0
# To revert the change in:
ddf7d0
# https://bugzilla.mozilla.org/show_bug.cgi?id=818686
ddf7d0
Patch9:		  nss-sysinit-userdb.patch
ddf7d0
# Disable nss-sysinit test which is sorely to test the above change
ddf7d0
Patch10:	  nss-skip-sysinit-gtests.patch
ddf7d0
# Upstream patch didn't make 3.44
ddf7d0
# https://bugzilla.mozilla.org/show_bug.cgi?id=1546229
ddf7d0
Patch200:         nss-ike-patch.patch
ddf7d0
# https://bugzilla.mozilla.org/show_bug.cgi?id=1546477
ddf7d0
Patch201:         nss-softokn-fips-update.patch
1dc743
# Local patch for TLS_ECDHE_{ECDSA|RSA}_WITH_3DES_EDE_CBC_SHA ciphers
1dc743
Patch58:          rhbz1185708-enable-ecc-3des-ciphers-by-default.patch
ddf7d0
# https://bugzilla.mozilla.org/show_bug.cgi?id=1473806
ddf7d0
Patch202:         nss-8-fix-public-key-from-priv.patch
ddf7d0
Patch204:         nss-8-add-ipsec-usage-to-manpage.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1560329
ddf7d0
Patch205:         nss-drbg-continuous.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1559906
ddf7d0
Patch206:         nss-fipstest-tls12-prf.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1554336
ddf7d0
Patch210:         nss-mpi-loop.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1540541
ddf7d0
Patch211:         nss-leading-zero.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1515342
ddf7d0
Patch212:         nss-input-check.patch
ddf7d0
Patch213:         nss-3.44-missing-softokn-kdf.patch
ddf7d0
Patch214:         nss-3.44-cmac.patch
ddf7d0
# Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1566131
ddf7d0
Patch215:         nss-3.44-ske-policy.patch
ddf7d0
Patch216:         nss-3.44-kbkdf.patch
ddf7d0
Patch217:         nss-3.44-kbkdf-update.patch
ddf7d0
Patch218:         nss-3.44-encrypt-update.patch
ddf7d0
Patch219:         nss-3.44-kbkdf-coverity.patch
ddf7d0
1dc743
1dc743
%description
1dc743
Network Security Services (NSS) is a set of libraries designed to
1dc743
support cross-platform development of security-enabled client and
1dc743
server applications. Applications built with NSS can support SSL v2
1dc743
and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509
1dc743
v3 certificates, and other security standards.
1dc743
1dc743
%package tools
1dc743
Summary:          Tools for the Network Security Services
1dc743
Requires:         %{name}%{?_isa} = %{version}-%{release}
1dc743
1dc743
%description tools
1dc743
Network Security Services (NSS) is a set of libraries designed to
1dc743
support cross-platform development of security-enabled client and
1dc743
server applications. Applications built with NSS can support SSL v2
1dc743
and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509
1dc743
v3 certificates, and other security standards.
1dc743
1dc743
Install the nss-tools package if you need command-line tools to
1dc743
manipulate the NSS certificate and key database.
1dc743
1dc743
%package sysinit
1dc743
Summary:          System NSS Initialization
1dc743
# providing nss-system-init without version so that it can
1dc743
# be replaced by a better one, e.g. supplied by the os vendor
1dc743
Provides:         nss-system-init
1dc743
Requires:         nss = %{version}-%{release}
1dc743
Requires(post):   coreutils, sed
1dc743
1dc743
%description sysinit
1dc743
Default Operating System module that manages applications loading
1dc743
NSS globally on the system. This module loads the system defined
1dc743
PKCS #11 modules for NSS and chains with other NSS modules to load
1dc743
any system or user configured modules.
1dc743
1dc743
%package devel
1dc743
Summary:          Development libraries for Network Security Services
1dc743
Provides:         nss-static = %{version}-%{release}
1dc743
Requires:         nss%{?_isa} = %{version}-%{release}
1dc743
Requires:         nss-util-devel
1dc743
Requires:         nss-softokn-devel
1dc743
Requires:         nspr-devel >= %{nspr_version}
1dc743
Requires:         pkgconfig
1dc743
BuildRequires:    xmlto
1dc743
1dc743
%description devel
1dc743
Header and Library files for doing development with Network Security Services.
1dc743
1dc743
1dc743
%package pkcs11-devel
1dc743
Summary:          Development libraries for PKCS #11 (Cryptoki) using NSS
1dc743
Provides:         nss-pkcs11-devel-static = %{version}-%{release}
1dc743
Requires:         nss-devel = %{version}-%{release}
1dc743
Requires:         nss-softokn-freebl-devel = %{version}-%{release}
1dc743
1dc743
%description pkcs11-devel
1dc743
Library files for developing PKCS #11 modules using basic NSS
1dc743
low level services.
1dc743
1dc743
1dc743
%package util
1dc743
Summary:          Network Security Services Utilities Library
1dc743
Requires:         nspr >= %{nspr_version}
1dc743
1dc743
%description util
1dc743
Utilities for Network Security Services and the Softoken module
1dc743
1dc743
%package util-devel
1dc743
Summary:          Development libraries for Network Security Services Utilities
1dc743
Requires:         nss-util%{?_isa} = %{version}-%{release}
1dc743
Requires:         nspr-devel >= %{nspr_version}
1dc743
Requires:         pkgconfig
1dc743
1dc743
%description util-devel
1dc743
Header and library files for doing development with Network Security Services.
1dc743
1dc743
1dc743
%package softokn
1dc743
Summary:          Network Security Services Softoken Module
1dc743
Requires:         nspr >= %{nspr_version}
1dc743
Requires:         nss-util >= %{version}-%{release}
1dc743
Requires:         nss-softokn-freebl%{_isa} >= %{version}-%{release}
1dc743
1dc743
%description softokn
1dc743
Network Security Services Softoken Cryptographic Module
1dc743
1dc743
%package softokn-freebl
1dc743
Summary:          Freebl library for the Network Security Services
1dc743
# For PR_GetEnvSecure() from nspr >= 4.12
1dc743
Requires:         nspr >= 4.12
1dc743
# For NSS_SecureMemcmpZero() from nss-util >= 3.33
1dc743
Requires:         nss-util >= 3.33
1dc743
Conflicts:        nss < 3.12.2.99.3-5
1dc743
Conflicts:        filesystem < 3
1dc743
1dc743
%description softokn-freebl
1dc743
NSS Softoken Cryptographic Module Freebl Library
1dc743
1dc743
Install the nss-softokn-freebl package if you need the freebl library.
1dc743
1dc743
%package softokn-freebl-devel
1dc743
Summary:          Header and Library files for doing development with the Freebl library for NSS
1dc743
Provides:         nss-softokn-freebl-static = %{version}-%{release}
1dc743
Requires:         nss-softokn-freebl%{?_isa} = %{version}-%{release}
1dc743
1dc743
%description softokn-freebl-devel
1dc743
NSS Softoken Cryptographic Module Freebl Library Development Tools
1dc743
This package supports special needs of some PKCS #11 module developers and
1dc743
is otherwise considered private to NSS. As such, the programming interfaces
1dc743
may change and the usual NSS binary compatibility commitments do not apply.
1dc743
Developers should rely only on the officially supported NSS public API.
1dc743
1dc743
%package softokn-devel
1dc743
Summary:          Development libraries for Network Security Services
1dc743
Requires:         nss-softokn%{?_isa} = %{version}-%{release}
1dc743
Requires:         nss-softokn-freebl-devel%{?_isa} = %{version}-%{release}
1dc743
Requires:         nspr-devel >= %{nspr_version}
1dc743
Requires:         nss-util-devel >= %{version}-%{release}
1dc743
Requires:         pkgconfig
1dc743
BuildRequires:    nspr-devel >= %{nspr_version}
1dc743
1dc743
%description softokn-devel
1dc743
Header and library files for doing development with Network Security Services.
1dc743
1dc743
1dc743
%prep
ddf7d0
#autosetup -N -S quilt -n %{name}-%{nss_archive_version}
ddf7d0
%autosetup -N -n %{name}-%{nss_archive_version} -a 29
1dc743
pushd nss
1dc743
%autopatch -p1
1dc743
popd
1dc743
ddf7d0
# https://bugzilla.redhat.com/show_bug.cgi?id=1247353
ddf7d0
find nss/lib/libpkix -perm /u+x -type f -exec chmod -x {} \;
ddf7d0
1dc743
1dc743
%build
1dc743
1dc743
export FREEBL_NO_DEPEND=1
1dc743
1dc743
# Must export FREEBL_LOWHASH=1 for nsslowhash.h so that it gets
1dc743
# copied to dist and the rpm install phase can find it
1dc743
# This due of the upstream changes to fix
1dc743
# https://bugzilla.mozilla.org/show_bug.cgi?id=717906
1dc743
export FREEBL_LOWHASH=1
1dc743
1dc743
# uncomment if the iquote patch is activated
1dc743
export IN_TREE_FREEBL_HEADERS_FIRST=1
1dc743
1dc743
export NSS_FORCE_FIPS=1
1dc743
1dc743
# Enable compiler optimizations and disable debugging code
1dc743
export BUILD_OPT=1
1dc743
1dc743
# Uncomment to disable optimizations
1dc743
#RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed -e 's/-O2/-O0/g'`
1dc743
#export RPM_OPT_FLAGS
1dc743
1dc743
# Generate symbolic info for debuggers
1dc743
export XCFLAGS=$RPM_OPT_FLAGS
1dc743
1dc743
export LDFLAGS=$RPM_LD_FLAGS
1dc743
1dc743
export DSO_LDFLAGS=$RPM_LD_FLAGS
1dc743
1dc743
export PKG_CONFIG_ALLOW_SYSTEM_LIBS=1
1dc743
export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1
1dc743
1dc743
export NSPR_INCLUDE_DIR=`/usr/bin/pkg-config --cflags-only-I nspr | sed 's/-I//'`
1dc743
export NSPR_LIB_DIR=%{_libdir}
1dc743
1dc743
export NSS_USE_SYSTEM_SQLITE=1
1dc743
1dc743
export NSS_ALLOW_SSLKEYLOGFILE=1
1dc743
ddf7d0
export NSS_SEED_ONLY_DEV_URANDOM=1
ddf7d0
1dc743
%ifnarch noarch
1dc743
%if 0%{__isa_bits} == 64
1dc743
export USE_64=1
1dc743
%endif
1dc743
%endif
1dc743
1dc743
##### phase 2: build the rest of nss
1dc743
make -C ./nss/coreconf
1dc743
make -C ./nss/lib/dbm
1dc743
1dc743
# Set the policy file location
1dc743
# if set NSS will always check for the policy file and load if it exists
1dc743
export POLICY_FILE="nss.config"
1dc743
# location of the policy file
1dc743
export POLICY_PATH="/etc/crypto-policies/back-ends"
1dc743
1dc743
make -C ./nss
1dc743
1dc743
# build the man pages clean
ddf7d0
pushd ./nss/doc
ddf7d0
rm -rf ./nroff
ddf7d0
make clean
ddf7d0
echo -n %{manual_date} > date.xml
ddf7d0
echo -n %{version} > version.xml
ddf7d0
make
1dc743
popd
1dc743
1dc743
# and copy them to the dist directory for %%install to find them
1dc743
mkdir -p ./dist/docs/nroff
1dc743
cp ./nss/doc/nroff/* ./dist/docs/nroff
1dc743
1dc743
# Set up our package files
1dc743
mkdir -p ./dist/pkgconfig
1dc743
1dc743
cat %{SOURCE1} | sed -e "s,%%libdir%%,%{_libdir},g" \
1dc743
                          -e "s,%%prefix%%,%{_prefix},g" \
1dc743
                          -e "s,%%exec_prefix%%,%{_prefix},g" \
1dc743
                          -e "s,%%includedir%%,%{_includedir}/nss3,g" \
1dc743
                          -e "s,%%NSPR_VERSION%%,%{nspr_version},g" \
1dc743
                          -e "s,%%NSSUTIL_VERSION%%,%{version},g" > \
1dc743
                          ./dist/pkgconfig/nss-util.pc
1dc743
1dc743
NSSUTIL_VMAJOR=`cat nss/lib/util/nssutil.h | grep "#define.*NSSUTIL_VMAJOR" | awk '{print $3}'`
1dc743
NSSUTIL_VMINOR=`cat nss/lib/util/nssutil.h | grep "#define.*NSSUTIL_VMINOR" | awk '{print $3}'`
1dc743
NSSUTIL_VPATCH=`cat nss/lib/util/nssutil.h | grep "#define.*NSSUTIL_VPATCH" | awk '{print $3}'`
1dc743
1dc743
cat %{SOURCE2} | sed -e "s,@libdir@,%{_libdir},g" \
1dc743
                          -e "s,@prefix@,%{_prefix},g" \
1dc743
                          -e "s,@exec_prefix@,%{_prefix},g" \
1dc743
                          -e "s,@includedir@,%{_includedir}/nss3,g" \
1dc743
                          -e "s,@MOD_MAJOR_VERSION@,$NSSUTIL_VMAJOR,g" \
1dc743
                          -e "s,@MOD_MINOR_VERSION@,$NSSUTIL_VMINOR,g" \
1dc743
                          -e "s,@MOD_PATCH_VERSION@,$NSSUTIL_VPATCH,g" \
1dc743
                          > ./dist/pkgconfig/nss-util-config
1dc743
1dc743
chmod 755 ./dist/pkgconfig/nss-util-config
1dc743
1dc743
cat %{SOURCE3} | sed -e "s,%%libdir%%,%{_libdir},g" \
1dc743
                          -e "s,%%prefix%%,%{_prefix},g" \
1dc743
                          -e "s,%%exec_prefix%%,%{_prefix},g" \
1dc743
                          -e "s,%%includedir%%,%{_includedir}/nss3,g" \
1dc743
                          -e "s,%%NSPR_VERSION%%,%{nspr_version},g" \
1dc743
                          -e "s,%%NSSUTIL_VERSION%%,%{nss_version},g" \
1dc743
                          -e "s,%%SOFTOKEN_VERSION%%,%{version},g" > \
1dc743
                          ./dist/pkgconfig/nss-softokn.pc
1dc743
1dc743
SOFTOKEN_VMAJOR=`cat nss/lib/softoken/softkver.h | grep "#define.*SOFTOKEN_VMAJOR" | awk '{print $3}'`
1dc743
SOFTOKEN_VMINOR=`cat nss/lib/softoken/softkver.h | grep "#define.*SOFTOKEN_VMINOR" | awk '{print $3}'`
1dc743
SOFTOKEN_VPATCH=`cat nss/lib/softoken/softkver.h | grep "#define.*SOFTOKEN_VPATCH" | awk '{print $3}'`
1dc743
1dc743
cat %{SOURCE4} | sed -e "s,@libdir@,%{_libdir},g" \
1dc743
                          -e "s,@prefix@,%{_prefix},g" \
1dc743
                          -e "s,@exec_prefix@,%{_prefix},g" \
1dc743
                          -e "s,@includedir@,%{_includedir}/nss3,g" \
1dc743
                          -e "s,@MOD_MAJOR_VERSION@,$SOFTOKEN_VMAJOR,g" \
1dc743
                          -e "s,@MOD_MINOR_VERSION@,$SOFTOKEN_VMINOR,g" \
1dc743
                          -e "s,@MOD_PATCH_VERSION@,$SOFTOKEN_VPATCH,g" \
1dc743
                          > ./dist/pkgconfig/nss-softokn-config
1dc743
1dc743
chmod 755 ./dist/pkgconfig/nss-softokn-config
1dc743
1dc743
cat %{SOURCE8} | sed -e "s,%%libdir%%,%{_libdir},g" \
1dc743
                          -e "s,%%prefix%%,%{_prefix},g" \
1dc743
                          -e "s,%%exec_prefix%%,%{_prefix},g" \
1dc743
                          -e "s,%%includedir%%,%{_includedir}/nss3,g" \
1dc743
                          -e "s,%%NSS_VERSION%%,%{version},g" \
1dc743
                          -e "s,%%NSPR_VERSION%%,%{nspr_version},g" \
1dc743
                          -e "s,%%NSSUTIL_VERSION%%,%{nss_version},g" \
1dc743
                          -e "s,%%SOFTOKEN_VERSION%%,%{nss_version},g" > \
1dc743
                          ./dist/pkgconfig/nss.pc
1dc743
1dc743
NSS_VMAJOR=`cat nss/lib/nss/nss.h | grep "#define.*NSS_VMAJOR" | awk '{print $3}'`
1dc743
NSS_VMINOR=`cat nss/lib/nss/nss.h | grep "#define.*NSS_VMINOR" | awk '{print $3}'`
1dc743
NSS_VPATCH=`cat nss/lib/nss/nss.h | grep "#define.*NSS_VPATCH" | awk '{print $3}'`
1dc743
1dc743
cat %{SOURCE9} | sed -e "s,@libdir@,%{_libdir},g" \
1dc743
                          -e "s,@prefix@,%{_prefix},g" \
1dc743
                          -e "s,@exec_prefix@,%{_prefix},g" \
1dc743
                          -e "s,@includedir@,%{_includedir}/nss3,g" \
1dc743
                          -e "s,@MOD_MAJOR_VERSION@,$NSS_VMAJOR,g" \
1dc743
                          -e "s,@MOD_MINOR_VERSION@,$NSS_VMINOR,g" \
1dc743
                          -e "s,@MOD_PATCH_VERSION@,$NSS_VPATCH,g" \
1dc743
                          > ./dist/pkgconfig/nss-config
1dc743
1dc743
chmod 755 ./dist/pkgconfig/nss-config
1dc743
1dc743
cat %{SOURCE16} > ./dist/pkgconfig/setup-nsssysinit.sh
1dc743
chmod 755 ./dist/pkgconfig/setup-nsssysinit.sh
1dc743
1dc743
cp ./nss/lib/ckfw/nssck.api ./dist/private/nss/
1dc743
1dc743
date +"%e %B %Y" | tr -d '\n' > date.xml
1dc743
echo -n %{version} > version.xml
1dc743
1dc743
# configuration files and setup script
1dc743
for m in %{SOURCE20} %{SOURCE21} %{SOURCE22}; do
1dc743
  cp ${m} .
1dc743
done
1dc743
for m in nss-config.xml setup-nsssysinit.xml pkcs11.txt.xml; do
1dc743
  xmlto man ${m}
1dc743
done
1dc743
1dc743
# nss databases considered to be configuration files
1dc743
for m in %{SOURCE23} %{SOURCE24} %{SOURCE25} %{SOURCE26} %{SOURCE27}; do
1dc743
  cp ${m} .
1dc743
done
1dc743
for m in cert8.db.xml cert9.db.xml key3.db.xml key4.db.xml secmod.db.xml; do
1dc743
  xmlto man ${m}
1dc743
done
1dc743
1dc743
1dc743
%check
1dc743
%if %{with tests}
1dc743
# Begin -- copied from the build section
1dc743
1dc743
export FREEBL_NO_DEPEND=1
1dc743
1dc743
export BUILD_OPT=1
1dc743
1dc743
%ifnarch noarch
1dc743
%if 0%{__isa_bits} == 64
1dc743
export USE_64=1
1dc743
%endif
1dc743
%endif
1dc743
1dc743
# End -- copied from the build section
1dc743
1dc743
# This is necessary because the test suite tests algorithms that are
1dc743
# disabled by the system policy.
1dc743
export NSS_IGNORE_SYSTEM_POLICY=1
1dc743
1dc743
# enable the following line to force a test failure
1dc743
# find ./nss -name \*.chk | xargs rm -f
1dc743
1dc743
# Run test suite.
1dc743
# In order to support multiple concurrent executions of the test suite
1dc743
# (caused by concurrent RPM builds) on a single host,
1dc743
# we'll use a random port. Also, we want to clean up any stuck
1dc743
# selfserv processes. If process name "selfserv" is used everywhere,
1dc743
# we can't simply do a "killall selfserv", because it could disturb
1dc743
# concurrent builds. Therefore we'll do a search and replace and use
1dc743
# a different process name.
1dc743
# Using xargs doesn't mix well with spaces in filenames, in order to
1dc743
# avoid weird quoting we'll require that no spaces are being used.
1dc743
1dc743
SPACEISBAD=`find ./nss/tests | grep -c ' '` ||:
1dc743
if [ $SPACEISBAD -ne 0 ]; then
1dc743
  echo "error: filenames containing space are not supported (xargs)"
1dc743
  exit 1
1dc743
fi
1dc743
MYRAND=`perl -e 'print 9000 + int rand 1000'`; echo $MYRAND ||:
1dc743
RANDSERV=selfserv_${MYRAND}; echo $RANDSERV ||:
1dc743
DISTBINDIR=`ls -d ./dist/*.OBJ/bin`; echo $DISTBINDIR ||:
1dc743
pushd "$DISTBINDIR"
1dc743
ln -s selfserv $RANDSERV
1dc743
popd
1dc743
# man perlrun, man perlrequick
1dc743
# replace word-occurrences of selfserv with selfserv_$MYRAND
1dc743
find ./nss/tests -type f |\
1dc743
  grep -v "\.db$" |grep -v "\.crl$" | grep -v "\.crt$" |\
1dc743
  grep -vw CVS  |xargs grep -lw selfserv |\
1dc743
  xargs -l perl -pi -e "s/\bselfserv\b/$RANDSERV/g" ||:
1dc743
1dc743
killall $RANDSERV || :
1dc743
1dc743
rm -rf ./tests_results
1dc743
pushd nss/tests
1dc743
# all.sh is the test suite script
1dc743
1dc743
#  don't need to run all the tests when testing packaging
1dc743
#  nss_cycles: standard pkix upgradedb sharedb
1dc743
#  the full list from all.sh is:
1dc743
#  "cipher lowhash libpkix cert dbtests tools fips sdr crmf smime ssl ocsp merge pkits chains ec gtests ssl_gtests"
1dc743
%define nss_tests "libpkix cert dbtests tools fips sdr crmf smime ssl ocsp merge pkits chains ec gtests ssl_gtests"
1dc743
#  nss_ssl_tests: crl bypass_normal normal_bypass normal_fips fips_normal iopr policy
1dc743
#  nss_ssl_run: cov auth stapling stress
1dc743
#
1dc743
# Uncomment these lines if you need to temporarily
1dc743
# disable some test suites for faster test builds
1dc743
# % define nss_ssl_tests "normal_fips"
1dc743
# % define nss_ssl_run "cov"
1dc743
1dc743
HOST=localhost DOMSUF=localdomain PORT=$MYRAND NSS_CYCLES=%{?nss_cycles} NSS_TESTS=%{?nss_tests} NSS_SSL_TESTS=%{?nss_ssl_tests} NSS_SSL_RUN=%{?nss_ssl_run} ./all.sh
1dc743
popd
1dc743
1dc743
%endif
1dc743
1dc743
%install
1dc743
1dc743
# There is no make install target so we'll do it ourselves.
1dc743
1dc743
mkdir -p $RPM_BUILD_ROOT/%{_includedir}/nss3
1dc743
mkdir -p $RPM_BUILD_ROOT/%{_includedir}/nss3/templates
1dc743
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
1dc743
mkdir -p $RPM_BUILD_ROOT/%{_libdir}
1dc743
mkdir -p $RPM_BUILD_ROOT/%{unsupported_tools_directory}
1dc743
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
1dc743
mkdir -p $RPM_BUILD_ROOT/%{saved_files_dir}
1dc743
mkdir -p $RPM_BUILD_ROOT/%{dracut_modules_dir}
1dc743
mkdir -p $RPM_BUILD_ROOT/%{dracut_conf_dir}
1dc743
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/crypto-policies/local.d
1dc743
%if %{defined rhel}
1dc743
# not needed for rhel and its derivatives only fedora
1dc743
%else
1dc743
# because of the pp.1 conflict with perl-PAR-Packer
1dc743
mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/nss-tools
1dc743
%endif
1dc743
1dc743
install -m 755 %{SOURCE6} $RPM_BUILD_ROOT/%{dracut_modules_dir}/module-setup.sh
1dc743
install -m 644 %{SOURCE7} $RPM_BUILD_ROOT/%{dracut_conf_dir}/50-nss-softokn.conf
1dc743
1dc743
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
1dc743
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man5
1dc743
1dc743
# Copy the binary libraries we want
1dc743
for file in libnssutil3.so libsoftokn3.so libnssdbm3.so libfreebl3.so libfreeblpriv3.so libnss3.so libnsssysinit.so libsmime3.so libssl3.so
1dc743
do
1dc743
  install -p -m 755 dist/*.OBJ/lib/$file $RPM_BUILD_ROOT/%{_libdir}
1dc743
done
1dc743
1dc743
# Install the empty NSS db files
1dc743
# Legacy db
1dc743
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/pki/nssdb
1dc743
install -p -m 644 %{SOURCE10} $RPM_BUILD_ROOT/%{_sysconfdir}/pki/nssdb/cert8.db
1dc743
install -p -m 644 %{SOURCE11} $RPM_BUILD_ROOT/%{_sysconfdir}/pki/nssdb/key3.db
1dc743
install -p -m 644 %{SOURCE12} $RPM_BUILD_ROOT/%{_sysconfdir}/pki/nssdb/secmod.db
1dc743
# Shared db
1dc743
install -p -m 644 %{SOURCE13} $RPM_BUILD_ROOT/%{_sysconfdir}/pki/nssdb/cert9.db
1dc743
install -p -m 644 %{SOURCE14} $RPM_BUILD_ROOT/%{_sysconfdir}/pki/nssdb/key4.db
1dc743
install -p -m 644 %{SOURCE15} $RPM_BUILD_ROOT/%{_sysconfdir}/pki/nssdb/pkcs11.txt
1dc743
1dc743
# Copy the development libraries we want
1dc743
for file in libcrmf.a libnssb.a libnssckfw.a
1dc743
do
1dc743
  install -p -m 644 dist/*.OBJ/lib/$file $RPM_BUILD_ROOT/%{_libdir}
1dc743
done
1dc743
1dc743
# Copy the binaries we want
1dc743
for file in certutil cmsutil crlutil modutil nss-policy-check pk12util signver ssltap
1dc743
do
1dc743
  install -p -m 755 dist/*.OBJ/bin/$file $RPM_BUILD_ROOT/%{_bindir}
1dc743
done
1dc743
1dc743
# Copy the binaries we ship as unsupported
1dc743
for file in bltest ecperf fbectest fipstest shlibsign atob btoa derdump listsuites ocspclnt pp selfserv signtool strsclnt symkeyutil tstclnt vfyserv vfychain
1dc743
do
1dc743
  install -p -m 755 dist/*.OBJ/bin/$file $RPM_BUILD_ROOT/%{unsupported_tools_directory}
1dc743
done
1dc743
1dc743
# Copy the include files we want
1dc743
for file in dist/public/nss/*.h
1dc743
do
1dc743
  install -p -m 644 $file $RPM_BUILD_ROOT/%{_includedir}/nss3
1dc743
done
1dc743
1dc743
# Copy some freebl include files we also want
ddf7d0
for file in blapi.h alghmac.h cmac.h
1dc743
do
1dc743
  install -p -m 644 dist/private/nss/$file $RPM_BUILD_ROOT/%{_includedir}/nss3
1dc743
done
1dc743
1dc743
# Copy the static freebl library
1dc743
for file in libfreebl.a
1dc743
do
1dc743
install -p -m 644 dist/*.OBJ/lib/$file $RPM_BUILD_ROOT/%{_libdir}
1dc743
done
1dc743
1dc743
# Copy the template files we want
1dc743
for file in dist/private/nss/templates.c dist/private/nss/nssck.api
1dc743
do
1dc743
  install -p -m 644 $file $RPM_BUILD_ROOT/%{_includedir}/nss3/templates
1dc743
done
1dc743
1dc743
# Copy the package configuration files
1dc743
install -p -m 644 ./dist/pkgconfig/nss-util.pc $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/nss-util.pc
1dc743
install -p -m 755 ./dist/pkgconfig/nss-util-config $RPM_BUILD_ROOT/%{_bindir}/nss-util-config
1dc743
install -p -m 644 ./dist/pkgconfig/nss-softokn.pc $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/nss-softokn.pc
1dc743
install -p -m 755 ./dist/pkgconfig/nss-softokn-config $RPM_BUILD_ROOT/%{_bindir}/nss-softokn-config
1dc743
install -p -m 644 ./dist/pkgconfig/nss.pc $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/nss.pc
1dc743
install -p -m 755 ./dist/pkgconfig/nss-config $RPM_BUILD_ROOT/%{_bindir}/nss-config
1dc743
# Copy the pkcs #11 configuration script
1dc743
install -p -m 755 ./dist/pkgconfig/setup-nsssysinit.sh $RPM_BUILD_ROOT/%{_bindir}/setup-nsssysinit.sh
1dc743
# install a symbolic link to it, without the ".sh" suffix,
1dc743
# that matches the man page documentation
1dc743
ln -r -s -f $RPM_BUILD_ROOT/%{_bindir}/setup-nsssysinit.sh $RPM_BUILD_ROOT/%{_bindir}/setup-nsssysinit
1dc743
1dc743
# Copy the man pages for scripts
1dc743
for f in nss-config setup-nsssysinit; do
1dc743
   install -c -m 644 ${f}.1 $RPM_BUILD_ROOT%{_mandir}/man1/${f}.1
1dc743
done
1dc743
# Copy the man pages for the nss tools
1dc743
for f in certutil cmsutil crlutil derdump modutil nss-policy-check pk12util signtool signver ssltap vfychain vfyserv; do
1dc743
  install -c -m 644 ./dist/docs/nroff/${f}.1 $RPM_BUILD_ROOT%{_mandir}/man1/${f}.1
1dc743
done
1dc743
%if %{defined rhel}
1dc743
install -c -m 644 ./dist/docs/nroff/pp.1 $RPM_BUILD_ROOT%{_mandir}/man1/pp.1
1dc743
%else
1dc743
install -c -m 644 ./dist/docs/nroff/pp.1 $RPM_BUILD_ROOT%{_datadir}/doc/nss-tools/pp.1
1dc743
%endif
1dc743
1dc743
# Copy the man pages for the configuration files
1dc743
for f in pkcs11.txt; do
1dc743
   install -c -m 644 ${f}.5 $RPM_BUILD_ROOT%{_mandir}/man5/${f}.5
1dc743
done
1dc743
# Copy the man pages for the nss databases
1dc743
for f in cert8.db cert9.db key3.db key4.db secmod.db; do
1dc743
   install -c -m 644 ${f}.5 $RPM_BUILD_ROOT%{_mandir}/man5/${f}.5
1dc743
done
1dc743
1dc743
# Copy the crypto-policies configuration file
1dc743
install -p -m 644 %{SOURCE28} $RPM_BUILD_ROOT/%{_sysconfdir}/crypto-policies/local.d
1dc743
1dc743
%triggerpostun -n nss-sysinit -- nss-sysinit < 3.12.8-3
1dc743
# Reverse unwanted disabling of sysinit by faulty preun sysinit scriplet
1dc743
# from previous versions of nss.spec
1dc743
/usr/bin/setup-nsssysinit.sh on
1dc743
1dc743
%post
ddf7d0
update-crypto-policies --no-reload &> /dev/null || :
1dc743
1dc743
%postun
ddf7d0
update-crypto-policies --no-reload &> /dev/null || :
1dc743
1dc743
1dc743
%files
1dc743
%{!?_licensedir:%global license %%doc}
1dc743
%license nss/COPYING
1dc743
%{_libdir}/libnss3.so
1dc743
%{_libdir}/libssl3.so
1dc743
%{_libdir}/libsmime3.so
1dc743
%dir %{_sysconfdir}/pki/nssdb
1dc743
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/pki/nssdb/cert8.db
1dc743
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/pki/nssdb/key3.db
1dc743
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/pki/nssdb/secmod.db
1dc743
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/pki/nssdb/cert9.db
1dc743
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/pki/nssdb/key4.db
1dc743
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/pki/nssdb/pkcs11.txt
1dc743
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/crypto-policies/local.d/nss-p11-kit.config
1dc743
%doc %{_mandir}/man5/cert8.db.5*
1dc743
%doc %{_mandir}/man5/key3.db.5*
1dc743
%doc %{_mandir}/man5/secmod.db.5*
1dc743
%doc %{_mandir}/man5/cert9.db.5*
1dc743
%doc %{_mandir}/man5/key4.db.5*
1dc743
%doc %{_mandir}/man5/pkcs11.txt.5*
1dc743
1dc743
%files sysinit
1dc743
%{_libdir}/libnsssysinit.so
1dc743
%{_bindir}/setup-nsssysinit.sh
1dc743
# symbolic link to setup-nsssysinit.sh
1dc743
%{_bindir}/setup-nsssysinit
1dc743
%doc %{_mandir}/man1/setup-nsssysinit.1*
1dc743
1dc743
%files tools
1dc743
%{_bindir}/certutil
1dc743
%{_bindir}/cmsutil
1dc743
%{_bindir}/crlutil
1dc743
%{_bindir}/modutil
1dc743
%{_bindir}/nss-policy-check
1dc743
%{_bindir}/pk12util
1dc743
%{_bindir}/signver
1dc743
%{_bindir}/ssltap
1dc743
%{unsupported_tools_directory}/atob
1dc743
%{unsupported_tools_directory}/btoa
1dc743
%{unsupported_tools_directory}/derdump
1dc743
%{unsupported_tools_directory}/listsuites
1dc743
%{unsupported_tools_directory}/ocspclnt
1dc743
%{unsupported_tools_directory}/pp
1dc743
%{unsupported_tools_directory}/selfserv
1dc743
%{unsupported_tools_directory}/signtool
1dc743
%{unsupported_tools_directory}/strsclnt
1dc743
%{unsupported_tools_directory}/symkeyutil
1dc743
%{unsupported_tools_directory}/tstclnt
1dc743
%{unsupported_tools_directory}/vfyserv
1dc743
%{unsupported_tools_directory}/vfychain
1dc743
# instead of %%{_mandir}/man*/* let's list them explicitly
1dc743
# supported tools
1dc743
%doc %{_mandir}/man1/certutil.1*
1dc743
%doc %{_mandir}/man1/cmsutil.1*
1dc743
%doc %{_mandir}/man1/crlutil.1*
1dc743
%doc %{_mandir}/man1/modutil.1*
1dc743
%doc %{_mandir}/man1/nss-policy-check.1*
1dc743
%doc %{_mandir}/man1/pk12util.1*
1dc743
%doc %{_mandir}/man1/signver.1*
1dc743
# unsupported tools
1dc743
%doc %{_mandir}/man1/derdump.1*
1dc743
%doc %{_mandir}/man1/signtool.1*
1dc743
%if %{defined rhel}
1dc743
%doc %{_mandir}/man1/pp.1*
1dc743
%else
1dc743
%dir %{_datadir}/doc/nss-tools
1dc743
%doc %{_datadir}/doc/nss-tools/pp.1
1dc743
%endif
1dc743
%doc %{_mandir}/man1/ssltap.1*
1dc743
%doc %{_mandir}/man1/vfychain.1*
1dc743
%doc %{_mandir}/man1/vfyserv.1*
1dc743
1dc743
%files devel
1dc743
%{_libdir}/libcrmf.a
1dc743
%{_libdir}/pkgconfig/nss.pc
1dc743
%{_bindir}/nss-config
1dc743
%doc %{_mandir}/man1/nss-config.1*
1dc743
1dc743
%dir %{_includedir}/nss3
1dc743
%{_includedir}/nss3/cert.h
1dc743
%{_includedir}/nss3/certdb.h
1dc743
%{_includedir}/nss3/certt.h
1dc743
%{_includedir}/nss3/cmmf.h
1dc743
%{_includedir}/nss3/cmmft.h
1dc743
%{_includedir}/nss3/cms.h
1dc743
%{_includedir}/nss3/cmsreclist.h
1dc743
%{_includedir}/nss3/cmst.h
1dc743
%{_includedir}/nss3/crmf.h
1dc743
%{_includedir}/nss3/crmft.h
1dc743
%{_includedir}/nss3/cryptohi.h
1dc743
%{_includedir}/nss3/cryptoht.h
1dc743
%{_includedir}/nss3/sechash.h
1dc743
%{_includedir}/nss3/jar-ds.h
1dc743
%{_includedir}/nss3/jar.h
1dc743
%{_includedir}/nss3/jarfile.h
1dc743
%{_includedir}/nss3/key.h
1dc743
%{_includedir}/nss3/keyhi.h
1dc743
%{_includedir}/nss3/keyt.h
1dc743
%{_includedir}/nss3/keythi.h
1dc743
%{_includedir}/nss3/nss.h
1dc743
%{_includedir}/nss3/nssckbi.h
1dc743
%{_includedir}/nss3/ocsp.h
1dc743
%{_includedir}/nss3/ocspt.h
1dc743
%{_includedir}/nss3/p12.h
1dc743
%{_includedir}/nss3/p12plcy.h
1dc743
%{_includedir}/nss3/p12t.h
1dc743
%{_includedir}/nss3/pk11func.h
1dc743
%{_includedir}/nss3/pk11pqg.h
1dc743
%{_includedir}/nss3/pk11priv.h
1dc743
%{_includedir}/nss3/pk11pub.h
1dc743
%{_includedir}/nss3/pk11sdr.h
1dc743
%{_includedir}/nss3/pkcs12.h
1dc743
%{_includedir}/nss3/pkcs12t.h
1dc743
%{_includedir}/nss3/pkcs7t.h
1dc743
%{_includedir}/nss3/preenc.h
1dc743
%{_includedir}/nss3/secmime.h
1dc743
%{_includedir}/nss3/secmod.h
1dc743
%{_includedir}/nss3/secmodt.h
1dc743
%{_includedir}/nss3/secpkcs5.h
1dc743
%{_includedir}/nss3/secpkcs7.h
1dc743
%{_includedir}/nss3/smime.h
1dc743
%{_includedir}/nss3/ssl.h
1dc743
%{_includedir}/nss3/sslerr.h
1dc743
%{_includedir}/nss3/sslexp.h
1dc743
%{_includedir}/nss3/sslproto.h
1dc743
%{_includedir}/nss3/sslt.h
1dc743
1dc743
%files pkcs11-devel
1dc743
%{_includedir}/nss3/nssbase.h
1dc743
%{_includedir}/nss3/nssbaset.h
1dc743
%{_includedir}/nss3/nssckepv.h
1dc743
%{_includedir}/nss3/nssckft.h
1dc743
%{_includedir}/nss3/nssckfw.h
1dc743
%{_includedir}/nss3/nssckfwc.h
1dc743
%{_includedir}/nss3/nssckfwt.h
1dc743
%{_includedir}/nss3/nssckg.h
1dc743
%{_includedir}/nss3/nssckmdt.h
1dc743
%{_includedir}/nss3/nssckt.h
1dc743
%{_includedir}/nss3/templates/nssck.api
1dc743
%{_libdir}/libnssb.a
1dc743
%{_libdir}/libnssckfw.a
1dc743
1dc743
%files util
1dc743
%{!?_licensedir:%global license %%doc}
1dc743
%license nss/COPYING
1dc743
%{_libdir}/libnssutil3.so
1dc743
1dc743
%files util-devel
1dc743
# package configuration files
1dc743
%{_libdir}/pkgconfig/nss-util.pc
1dc743
%{_bindir}/nss-util-config
1dc743
1dc743
# co-owned with nss
1dc743
%dir %{_includedir}/nss3
1dc743
# these are marked as public export in nss/lib/util/manifest.mk
1dc743
%{_includedir}/nss3/base64.h
1dc743
%{_includedir}/nss3/ciferfam.h
1dc743
%{_includedir}/nss3/eccutil.h
1dc743
%{_includedir}/nss3/hasht.h
1dc743
%{_includedir}/nss3/nssb64.h
1dc743
%{_includedir}/nss3/nssb64t.h
1dc743
%{_includedir}/nss3/nsslocks.h
1dc743
%{_includedir}/nss3/nssilock.h
1dc743
%{_includedir}/nss3/nssilckt.h
1dc743
%{_includedir}/nss3/nssrwlk.h
1dc743
%{_includedir}/nss3/nssrwlkt.h
1dc743
%{_includedir}/nss3/nssutil.h
1dc743
%{_includedir}/nss3/pkcs1sig.h
1dc743
%{_includedir}/nss3/pkcs11.h
1dc743
%{_includedir}/nss3/pkcs11f.h
1dc743
%{_includedir}/nss3/pkcs11n.h
1dc743
%{_includedir}/nss3/pkcs11p.h
1dc743
%{_includedir}/nss3/pkcs11t.h
1dc743
%{_includedir}/nss3/pkcs11u.h
1dc743
%{_includedir}/nss3/pkcs11uri.h
1dc743
%{_includedir}/nss3/portreg.h
1dc743
%{_includedir}/nss3/secasn1.h
1dc743
%{_includedir}/nss3/secasn1t.h
1dc743
%{_includedir}/nss3/seccomon.h
1dc743
%{_includedir}/nss3/secder.h
1dc743
%{_includedir}/nss3/secdert.h
1dc743
%{_includedir}/nss3/secdig.h
1dc743
%{_includedir}/nss3/secdigt.h
1dc743
%{_includedir}/nss3/secerr.h
1dc743
%{_includedir}/nss3/secitem.h
1dc743
%{_includedir}/nss3/secoid.h
1dc743
%{_includedir}/nss3/secoidt.h
1dc743
%{_includedir}/nss3/secport.h
1dc743
%{_includedir}/nss3/utilmodt.h
1dc743
%{_includedir}/nss3/utilpars.h
1dc743
%{_includedir}/nss3/utilparst.h
1dc743
%{_includedir}/nss3/utilrename.h
1dc743
%{_includedir}/nss3/templates/templates.c
1dc743
1dc743
%files softokn
1dc743
%{_libdir}/libnssdbm3.so
1dc743
%{_libdir}/libnssdbm3.chk
1dc743
%{_libdir}/libsoftokn3.so
1dc743
%{_libdir}/libsoftokn3.chk
1dc743
# shared with nss-tools
1dc743
%dir %{_libdir}/nss
1dc743
%dir %{saved_files_dir}
1dc743
%dir %{unsupported_tools_directory}
1dc743
%{unsupported_tools_directory}/bltest
1dc743
%{unsupported_tools_directory}/ecperf
1dc743
%{unsupported_tools_directory}/fbectest
1dc743
%{unsupported_tools_directory}/fipstest
1dc743
%{unsupported_tools_directory}/shlibsign
1dc743
1dc743
%files softokn-freebl
1dc743
%{!?_licensedir:%global license %%doc}
1dc743
%license nss/COPYING
1dc743
%{_libdir}/libfreebl3.so
1dc743
%{_libdir}/libfreebl3.chk
1dc743
%{_libdir}/libfreeblpriv3.so
1dc743
%{_libdir}/libfreeblpriv3.chk
1dc743
#shared
1dc743
%dir %{dracut_modules_dir}
1dc743
%{dracut_modules_dir}/module-setup.sh
1dc743
%{dracut_conf_dir}/50-nss-softokn.conf
1dc743
1dc743
%files softokn-freebl-devel
1dc743
%{_libdir}/libfreebl.a
1dc743
%{_includedir}/nss3/blapi.h
1dc743
%{_includedir}/nss3/blapit.h
1dc743
%{_includedir}/nss3/alghmac.h
ddf7d0
%{_includedir}/nss3/cmac.h
1dc743
%{_includedir}/nss3/lowkeyi.h
1dc743
%{_includedir}/nss3/lowkeyti.h
1dc743
1dc743
%files softokn-devel
1dc743
%{_libdir}/pkgconfig/nss-softokn.pc
1dc743
%{_bindir}/nss-softokn-config
1dc743
1dc743
# co-owned with nss
1dc743
%dir %{_includedir}/nss3
1dc743
#
1dc743
# The following headers are those exported public in
1dc743
# nss/lib/freebl/manifest.mn and
1dc743
# nss/lib/softoken/manifest.mn
1dc743
#
1dc743
# The following list is short because many headers, such as
1dc743
# the pkcs #11 ones, have been provided by nss-util-devel
1dc743
# which installed them before us.
1dc743
#
1dc743
%{_includedir}/nss3/ecl-exp.h
1dc743
%{_includedir}/nss3/nsslowhash.h
1dc743
%{_includedir}/nss3/shsign.h
1dc743
1dc743
1dc743
%changelog
ddf7d0
* Tue Dec 3 2019 Bob Relyea <rrelyea@redhat.com> - 3.44.0-14
ddf7d0
- Fix coverify scan issue
ddf7d0
ddf7d0
* Mon Dec 2 2019 Bob Relyea <rrelyea@redhat.com> - 3.44.0-13
ddf7d0
- Fix endian problem in SP-800 108 code.
ddf7d0
ddf7d0
* Thu Nov 28 2019 Daiki Ueno <dueno@redhat.com> - 3.44.0-12
ddf7d0
- Install cmac.h required by blapi.h (#1764513)
ddf7d0
- Fix out-of-bounds write in NSC_EncryptUpdate (#1775913)
ddf7d0
ddf7d0
* Wed Nov 27 2019 Bob Relyea <rrelyea@redhat.com> - 3.44.0-11
ddf7d0
- Add SP-800 108 Generalized kdf
ddf7d0
ddf7d0
* Mon Nov 11 2019 Daiki Ueno <dueno@redhat.com> - 3.44.0-10
ddf7d0
- Check policy against hash algorithms used for ServerKeyExchange (#1730039)
ddf7d0
ddf7d0
* Wed Nov  6 2019 Bob Relyea <rrelyea@redhat.com> - 3.44.0-9
ddf7d0
- Add CMAC
ddf7d0
ddf7d0
* Thu Aug  8 2019 Bob Relyea <rrelyea@redhat.com> - 3.44.0-8
ddf7d0
- CKM_NSS_IKE1_APP_B_PRF_DERIVE was missing from the mechanism list, preventing
ddf7d0
  PK11_Derive*() from using it. Add gtests for the PK11_Derive interface for
ddf7d0
  all the CKM_NSS_IKE*_DERIVE mechanism.
ddf7d0
ddf7d0
* Wed Jul  3 2019 Daiki Ueno <dueno@redhat.com> - 3.44.0-7
ddf7d0
- Backport fixes from 3.44.1
ddf7d0
ddf7d0
* Wed Jun 26 2019 Daiki Ueno <dueno@redhat.com> - 3.44.0-6
ddf7d0
- Add continuous RNG test required by FIPS
ddf7d0
- fipstest: use CKM_TLS12_MASTER_KEY_DERIVE instead of vendor specific mechanism
ddf7d0
ddf7d0
* Mon Jun 10 2019 Daiki Ueno <dueno@redhat.com> - 3.44.0-5
ddf7d0
- Rebuild with the correct build target
ddf7d0
ddf7d0
*Fri Jun 7 2019 Bob Relyea <rrelyea@redhat.com> - 3.44.0-4.1
ddf7d0
- rebuild to try to retrigger CI tests
ddf7d0
ddf7d0
*Wed Jun 5 2019 Bob Relyea <rrelyea@redhat.com> - 3.44.0-4
ddf7d0
- Fix certutil man page
ddf7d0
- Fix extracting a public key from a private key for dh, ec, and dsa
ddf7d0
ddf7d0
* Thu May 30 2019 Daiki Ueno <dueno@redhat.com> - 3.44.0-3
ddf7d0
- Disable TLS 1.3 under FIPS mode
ddf7d0
- Disable RSASSA-PKCS1-v1_5 in TLS 1.3
ddf7d0
- Fix post-handshake auth transcript calculation if
ddf7d0
  SSL_ENABLE_SESSION_TICKETS is set
ddf7d0
- Revert the change to use XDG basedirs (mozilla#818686)
ddf7d0
ddf7d0
* Fri May 24 2019 Bob Relyea <rrelyea@redhat.com> - 3.44.0-2
ddf7d0
- Add ike mechanisms in softokn
ddf7d0
- Add FIPS checks in softoken
ddf7d0
ddf7d0
* Fri May 24 2019 Daiki Ueno <dueno@redhat.com> - 3.44.0-1
ddf7d0
- Update to NSS 3.44
ddf7d0
- Define NSS_SEED_ONLY_DEV_URANDOM=1 to exclusively use getentropy
ddf7d0
- Use %%autosetup
ddf7d0
- Clean up manual pages generation
ddf7d0
- Clean up %%check
ddf7d0
- Remove prelink dependency, which is not available in RHEL-8
ddf7d0
- Remove upstreamed patches
ddf7d0
1dc743
* Mon Dec 17 2018 Daiki Ueno <dueno@redhat.com> - 3.41.0-5
1dc743
- Update manual pages to reflect recent changes in commands
1dc743
1dc743
* Fri Dec 14 2018 Bob Relyea <rrelyea@redhat.com> - 3.41.0-4
1dc743
- Make sure corresponding public keys are created when importing private keys.
1dc743
1dc743
* Thu Dec 13 2018 Daiki Ueno <dueno@redhat.com> - 3.41.0-3
1dc743
- Fix the last change
1dc743
- Add --no-reload option to update-crypto-policies to avoid
1dc743
  unnecessary restart of daemons
1dc743
1dc743
* Thu Dec 13 2018 Daiki Ueno <dueno@redhat.com> - 3.41.0-2
1dc743
- Restore LDFLAGS injection when linking DSO
1dc743
1dc743
* Mon Dec 10 2018 Daiki Ueno <dueno@redhat.com> - 3.41.0-1
1dc743
- Update to NSS 3.41
1dc743
- Consolidate nss-util, nss-softokn, and nss into a single source package
1dc743
1dc743
* Fri Dec  7 2018 Daiki Ueno <dueno@redhat.com> - 3.39.0-1.5
1dc743
- Fix the last commit
1dc743
1dc743
* Tue Dec 4 2018 Bob Relyea <rrelyea@redhat.com> - 3.39.0-1.4
1dc743
- Support for IKE/IPsec typical PKIX usage so libreswan can use nss
1dc743
  without rejecting certs based on EKU
1dc743
1dc743
* Thu Nov 29 2018 Daiki Ueno <dueno@redhat.com> - 3.39.0-1.3
1dc743
- Backport upstream fixes for rhbz#1649026, rhbz#1608895, rhbz#1644854
1dc743
- Document PKCS #11 URI
1dc743
- Add warning when adding module with modutil while p11-kit is enabled
1dc743
1dc743
* Tue Nov 13 2018 Daiki Ueno <dueno@redhat.com> - 3.39.0-1.2
1dc743
- Update nss-dsa.patch to not advertise DSA signature algorithm
1dc743
- Update PayPal test certs for testing
1dc743
1dc743
* Thu Oct 18 2018 Daiki Ueno <dueno@redhat.com> - 3.39.0-1.1
1dc743
- Backport "DSA" keyword in crypto-policies
1dc743
1dc743
* Tue Sep 25 2018 Daiki Ueno <dueno@redhat.com> - 3.39.0-1.0
1dc743
- Update to NSS 3.39
1dc743
1dc743
* Fri Sep 14 2018 Daiki Ueno <dueno@redhat.com> - 3.38.0-1.2
1dc743
- Fix LDFLAGS injection when linking DSO
1dc743
1dc743
* Tue Jul 24 2018 Daiki Ueno <dueno@redhat.com> - 3.38.0-1.1
1dc743
- Install crypto-policies configuration file for
1dc743
  https://fedoraproject.org/wiki/Changes/NSSLoadP11KitModules
1dc743
- Port enable-fips-when-system-is-in-fips-mode.patch from RHEL-7
1dc743
- Use %%ldconfig_scriptlets
1dc743
- Remove needless use of %defattr, by Jason Tibbitts
1dc743
1dc743
* Wed Jul 18 2018 Daiki Ueno <dueno@redhat.com> - 3.38.0-1.0
1dc743
- Update to NSS 3.38
1dc743
1dc743
* Tue Jul 17 2018 Kai Engert <kaie@redhat.com> - 3.36.1-1.2
1dc743
- Backport upstream addition of nss-policy-check utility, rhbz#1428746,
1dc743
  includes required fixes for mozbz#1296263 and mozbz#1474875
1dc743
1dc743
* Fri May 25 2018 Daiki Ueno <dueno@redhat.com> - 3.36.1-1.1
1dc743
- Switch the default DB type to SQL
1dc743
- Enable SSLKEYLOGFILE
1dc743
1dc743
* Wed Apr 11 2018 Daiki Ueno <dueno@redhat.com> - 3.36.1-1.0
1dc743
- Update to NSS 3.36.1
1dc743
- Remove nss-3.14.0.0-disble-ocsp-test.patch
1dc743
- Fix partial injection of LDFLAGS
1dc743
- Remove NSS_NO_PKCS11_BYPASS, which is no-op in upstream
1dc743
1dc743
* Fri Mar  9 2018 Daiki Ueno <dueno@redhat.com> - 3.36.0-1.0
1dc743
- Update to NSS 3.36.0
1dc743
- Add gcc-c++ to BuildRequires (C++ is needed for gtests)
1dc743
- Make test failure detection robuster
1dc743
1dc743
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.35.0-5
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1dc743
1dc743
* Mon Jan 29 2018 Kai Engert <kaie@redhat.com> - 3.35.0-4
1dc743
- Fix a compiler error with gcc 8, mozbz#1434070
1dc743
- Set NSS_FORCE_FIPS=1 at %%build time, and remove from %%check.
1dc743
1dc743
* Mon Jan 29 2018 Kai Engert <kaie@redhat.com> - 3.35.0-3
1dc743
- Stop pulling in nss-pem automatically, packages that need it should
1dc743
  depend on it, rhbz#1539401
1dc743
1dc743
* Tue Jan 23 2018 Daiki Ueno <dueno@redhat.com> - 3.35.0-2
1dc743
- Update to NSS 3.35.0
1dc743
1dc743
* Tue Nov 14 2017 Daiki Ueno <dueno@redhat.com> - 3.34.0-2
1dc743
- Update to NSS 3.34.0
1dc743
1dc743
* Fri Nov 10 2017 Daiki Ueno <dueno@redhat.com> - 3.33.0-6
1dc743
- Make sure 32bit nss-pem always be installed with 32bit nss in
1dc743
  multlib environment, patch by Kamil Dudka
1dc743
1dc743
* Wed Nov  8 2017 Kai Engert <kaie@redhat.com> - 3.33.0-5
1dc743
- Fix test script
1dc743
1dc743
* Tue Nov  7 2017 Kai Engert <kaie@redhat.com> - 3.33.0-4
1dc743
- Update tests to be compatible with default NSS DB changed to sql
1dc743
  (the default was changed in the nss-util package).
1dc743
1dc743
* Tue Oct 24 2017 Kai Engert <kaie@redhat.com> - 3.33.0-3
1dc743
- rhbz#1505487, backport upstream fixes required for rhbz#1496560
1dc743
1dc743
* Tue Oct  3 2017 Daiki Ueno <dueno@redhat.com> - 3.33.0-2
1dc743
- Update to NSS 3.33.0
1dc743
1dc743
* Fri Sep 15 2017 Daiki Ueno <dueno@redhat.com> - 3.32.1-2
1dc743
- Update to NSS 3.32.1
1dc743
1dc743
* Wed Sep  6 2017 Daiki Ueno <dueno@redhat.com> - 3.32.0-4
1dc743
- Update iquote.patch to really prefer in-tree headers over system headers
1dc743
1dc743
* Wed Aug 23 2017 Kai Engert <kaie@redhat.com> - 3.32.0-3
1dc743
- NSS libnssckbi.so has already been obsoleted by p11-kit-trust, rhbz#1484449
1dc743
1dc743
* Mon Aug  7 2017 Daiki Ueno <dueno@redhat.com> - 3.32.0-2
1dc743
- Update to NSS 3.32.0
1dc743
1dc743
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.31.0-6
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1dc743
1dc743
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.31.0-5
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1dc743
1dc743
* Tue Jul 18 2017 Daiki Ueno <dueno@redhat.com> - 3.31.0-4
1dc743
- Backport mozbz#1381784 to avoid deadlock in dnf
1dc743
1dc743
* Thu Jul 13 2017 Daiki Ueno <dueno@redhat.com> - 3.31.0-3
1dc743
- Move signtool to %%_libdir/nss/unsupported-tools, for:
1dc743
  https://fedoraproject.org/wiki/Changes/NSSSigntoolDeprecation
1dc743
1dc743
* Wed Jun 21 2017 Daiki Ueno <dueno@redhat.com> - 3.31.0-2
1dc743
- Rebase to NSS 3.31.0
1dc743
1dc743
* Fri Jun  2 2017 Daiki Ueno <dueno@redhat.com> - 3.30.2-3
1dc743
- Enable gtests
1dc743
1dc743
* Mon Apr 24 2017 Daiki Ueno <dueno@redhat.com> - 3.30.2-2
1dc743
- Rebase to NSS 3.30.2
1dc743
- Enable TLS 1.3
1dc743
1dc743
* Thu Mar 30 2017 Kai Engert <kaie@redhat.com> - 3.30.0-3
1dc743
- Backport upstream mozbz#1328318 to support crypto policy FUTURE.
1dc743
1dc743
* Tue Mar 21 2017 Daiki Ueno <dueno@redhat.com> - 3.30.0-2
1dc743
- Rebase to NSS 3.30.0
1dc743
- Remove upstreamed patches
1dc743
1dc743
* Thu Mar 02 2017 Kai Engert <kaie@redhat.com> - 3.29.1-3
1dc743
- Backport mozbz#1334976 and mozbz#1336487.
1dc743
1dc743
* Fri Feb 17 2017 Daiki Ueno <dueno@redhat.com> - 3.29.1-2
1dc743
- Rebase to NSS 3.29.1
1dc743
1dc743
* Thu Feb  9 2017 Daiki Ueno <dueno@redhat.com> - 3.29.0-3
1dc743
- Disable TLS 1.3, following the upstream change
1dc743
1dc743
* Wed Feb  8 2017 Daiki Ueno <dueno@redhat.com> - 3.29.0-2
1dc743
- Rebase to NSS 3.29.0
1dc743
- Suppress -Werror=int-in-bool-context warnings with GCC7
1dc743
1dc743
* Mon Jan 23 2017 Daiki Ueno <dueno@redhat.com> - 3.28.1-6
1dc743
- Work around pkgconfig -> pkgconf transition issue (releng#6597)
1dc743
1dc743
* Fri Jan 20 2017 Daiki Ueno <dueno@redhat.com> - 3.28.1-5
1dc743
- Disable TLS 1.3
1dc743
- Add "Conflicts" with packages using older Mozilla codebase, which is
1dc743
  not compatible with NSS 3.28.1
1dc743
- Remove NSS_ECC_MORE_THAN_SUITE_B setting, as it was removed in upstream
1dc743
1dc743
* Tue Jan 17 2017 Daiki Ueno <dueno@redhat.com> - 3.28.1-4
1dc743
- Add "Conflicts" with older firefox packages which don't have support
1dc743
  for smaller curves added in NSS 3.28.1
1dc743
1dc743
* Fri Jan 13 2017 Daiki Ueno <dueno@redhat.com> - 3.28.1-3
1dc743
- Fix incorrect version specification in %%nss_{util,softokn}_version,
1dc743
  pointed by Elio Maldonado
1dc743
1dc743
* Fri Jan  6 2017 Daiki Ueno <dueno@redhat.com> - 3.28.1-2
1dc743
- Rebase to NSS 3.28.1
1dc743
- Remove upstreamed patch for disabling RSA-PSS
1dc743
- Re-enable TLS 1.3
1dc743
1dc743
* Wed Nov 30 2016 Daiki Ueno <dueno@redhat.com> - 3.27.2-2
1dc743
- Rebase to NSS 3.27.2
1dc743
1dc743
* Tue Nov 15 2016 Daiki Ueno <dueno@redhat.com> - 3.27.0-5
1dc743
- Revert the previous fix for RSA-PSS and use the upstream fix instead
1dc743
1dc743
* Wed Nov 02 2016 Kai Engert <kaie@redhat.com> - 3.27.0-4
1dc743
- Disable the use of RSA-PSS with SSL/TLS. #1383809
1dc743
1dc743
* Sun Oct  2 2016 Daiki Ueno <dueno@redhat.com> - 3.27.0-3
1dc743
- Disable TLS 1.3 for now, to avoid reported regression with TLS to
1dc743
  version intolerant servers
1dc743
1dc743
* Thu Sep 29 2016 Daiki Ueno <dueno@redhat.com> - 3.27.0-2
1dc743
- Rebase to NSS 3.27.0
1dc743
- Remove upstreamed ectest patch
1dc743
1dc743
* Mon Aug  8 2016 Daiki Ueno <dueno@redhat.com> - 3.26.0-2
1dc743
- Rebase to NSS 3.26.0
1dc743
- Update check policy file patch to better match what was upstreamed
1dc743
- Remove conditionally ignore system policy patch as it has been upstreamed
1dc743
- Skip ectest as well as ecperf, which are built as part of nss-softokn
1dc743
- Fix rpmlint error regarding %%define usage
1dc743
1dc743
* Thu Jul 14 2016 Elio Maldonado <emaldona@redhat.com> - 3.25.0-6
1dc743
- Incorporate some changes requested in upstream review and commited upstream (#1157720)
1dc743
1dc743
* Fri Jul 01 2016 Elio Maldonado <emaldona@redhat.com> - 3.25.0-5
1dc743
- Add support for conditionally ignoring the system policy (#1157720)
1dc743
- Remove unneeded test scripts patches in order to run more tests
1dc743
- Remove unneeded test data modifications from the spec file
1dc743
1dc743
* Tue Jun 28 2016 Elio Maldonado <emaldona@redhat.com> - 3.25.0-4
1dc743
- Remove obsolete patch and spurious lines from the spec file (#1347336)
1dc743
1dc743
* Sun Jun 26 2016 Elio Maldonado <emaldona@redhat.com> - 3.25.0-3
1dc743
- Cleanup spec file and patches and add references to bugs filed upstream
1dc743
1dc743
* Fri Jun 24 2016 Elio Maldonado <emaldona@redhat.com> - 3.25.0-2
1dc743
- Rebase to nss 3.25
1dc743
1dc743
* Thu Jun 16 2016 Kamil Dudka <kdudka@redhat.com> - 3.24.0-3
1dc743
- decouple nss-pem from the nss package (#1347336)
1dc743
1dc743
* Fri Jun 03 2016 Elio Maldonado <emaldona@redhat.com> - 3.24.0-2.3
1dc743
- Apply the patch that was last introduced
1dc743
- Renumber and reorder some of the patches
1dc743
- Resolves: Bug 1342158
1dc743
1dc743
* Thu Jun 02 2016 Elio Maldonado <emaldona@redhat.com> - 3.24.0-2.2
1dc743
- Allow application requests to disable SSL v2 to succeed
1dc743
- Resolves: Bug 1342158 - nss-3.24 does no longer support ssl V2, installation of IPA fails because nss init fails
1dc743
1dc743
* Sun May 29 2016 Elio Maldonado <emaldona@redhat.com> - 3.24.0-2.1
1dc743
- Rebase to NSS 3.24.0
1dc743
- Restore setting the policy file location
1dc743
- Make ssl tests scripts aware of policy
1dc743
- Ajust tests data expected result for policy
1dc743
1dc743
* Tue May 24 2016 Elio Maldonado <emaldona@redhat.com> - 3.24.0-2.0
1dc743
- Bootstrap build to rebase to NSS 3.24.0
1dc743
- Temporarily not setting the policy file location
1dc743
1dc743
* Thu May 12 2016 Elio Maldonado <emaldona@redhat.com> - 3.23.0-9
1dc743
- Change POLICY_FILE to "nss.config"
1dc743
1dc743
* Fri Apr 22 2016 Elio Maldonado <emaldona@redhat.com> - 3.23.0-8
1dc743
- Change POLICY_FILE to "nss.cfg"
1dc743
1dc743
* Wed Apr 20 2016 Elio Maldonado <emaldona@redhat.com> - 3.23.0-7
1dc743
- Change the POLICY_PATH to "/etc/crypto-policies/back-ends"
1dc743
- Regenerate the check policy patch with hg to provide more context
1dc743
1dc743
* Thu Apr 14 2016 Elio Maldonado <emaldona@redhat.com> - 3.23.0-6
1dc743
- Fix typo in the last %%changelog entry
1dc743
1dc743
* Thu Mar 24 2016 Elio Maldonado <emaldona@redhat.com> - 3.23.0-5
1dc743
- Load policy file if /etc/pki/nssdb/policy.cfg exists
1dc743
- Resolves: Bug 1157720 - NSS should enforce the system-wide crypto policy
1dc743
1dc743
* Tue Mar 08 2016 Elio Maldonado <emaldona@redhat.com> - 3.23.0-4
1dc743
- Remove unused patch rendered obsolete by pem update
1dc743
1dc743
* Tue Mar 08 2016 Elio Maldonado <emaldona@redhat.com> - 3.23.0-3
1dc743
- Update pem sources to latest from nss-pem upstream
1dc743
- Resolves: Bug 1300652 - [PEM] insufficient input validity checking while loading a private key
1dc743
1dc743
* Sat Mar 05 2016 Elio Maldonado <emaldona@redhat.com> - 3.23.0-2
1dc743
- Rebase to NSS 3.23
1dc743
1dc743
* Sat Feb 27 2016 Elio Maldonado <emaldona@redhat.com> - 3.22.2-2
1dc743
- Rebase to NSS 3.22.2
1dc743
1dc743
* Tue Feb 23 2016 Elio Maldonado <emaldona@redhat.com> - 3.22.1-3
1dc743
- Fix ssl2/exp test disabling to run all the required tests
1dc743
1dc743
* Sun Feb 21 2016 Elio Maldonado <emaldona@redhat.com> - 3.22.1-1
1dc743
- Rebase to NSS 3.22.1
1dc743
1dc743
* Mon Feb 08 2016 Elio Maldonado <emaldona@redhat.com> - 3.22.0-3
1dc743
- Update .gitignore as part of updating to nss 3.22
1dc743
1dc743
* Mon Feb 08 2016 Elio Maldonado <emaldona@redhat.com> - 3.22.0-2
1dc743
- Update to NSS 3.22
1dc743
1dc743
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.21.0-7
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1dc743
1dc743
* Fri Jan 15 2016 Elio Maldonado <emaldona@redhat.com> - 3.21.0-6
1dc743
- Resolves: Bug 1299040 - Enable ssl_gtests upstream test suite
1dc743
- Remove 'export NSS_DISABLE_GTESTS=1' go ssl_gtests are built
1dc743
- Use %%define when specifying the nss_tests to run
1dc743
1dc743
* Wed Dec 30 2015 Michal Toman <mtoman@fedoraproject.org> - 3.21.0-5
1dc743
- Add 64-bit MIPS to multilib arches
1dc743
1dc743
* Fri Nov 20 2015 Elio Maldonado <emaldona@redhat.com> - 3.21.0-4
1dc743
- Update %%{nss_util_version} and %%{nss_softokn_version} to 3.21.0
1dc743
- Resolves: Bug 1284095 - all https fails with sec_error_no_token
1dc743
1dc743
* Sun Nov 15 2015 Elio Maldonado <emaldona@redhat.com> - 3.21.0-3
1dc743
- Add references to bugs filed upstream
1dc743
1dc743
* Fri Nov 13 2015 Elio Maldonado Batiz <emaldona@redhat.com> - 3.21.1-2
1dc743
- Update to NSS 3.21
1dc743
- Package listsuites as part of the unsupported tools set
1dc743
- Resolves: Bug 1279912 - nss-3.21 is available
1dc743
- Resolves: Bug 1258425 - Use __isa_bits macro instead of list of 64-bit
1dc743
- Resolves: Bug 1280032 - Package listsuites as part of the nss unsupported tools set
1dc743
1dc743
* Fri Oct 30 2015 Elio Maldonado <emaldona@redhat.com> - 3.20.1-2
1dc743
- Update to NSS 3.20.1
1dc743
1dc743
* Wed Sep 30 2015 Elio Maldonado <emaldona@redhat.com> - 3.20.0-6
1dc743
- Enable ECC cipher-suites by default [hrbz#1185708]
1dc743
- Split the enabling patch in two for easier maintenance
1dc743
- Remove unused patches rendered obsolete by prior rebase
1dc743
1dc743
* Wed Sep 16 2015 Elio Maldonado <emaldona@redhat.com> - 3.20.0-5
1dc743
- Enable ECC cipher-suites by default [hrbz#1185708]
1dc743
- Implement corrections requested in code review
1dc743
1dc743
* Tue Sep 15 2015 Elio Maldonado <emaldona@redhat.com> - 3.20.0-4
1dc743
- Enable ECC cipher-suites by default [hrbz#1185708]
1dc743
1dc743
* Mon Sep 14 2015 Elio Maldonado <emaldona@redhat.com> - 3.20.0-3
1dc743
- Fix patches that disable ssl2 and export cipher suites support
1dc743
- Fix libssl patch that disable ssl2 & export cipher suites to not disable RSA_WITH_NULL ciphers
1dc743
- Fix syntax errors in patch to skip ssl2 and export cipher suite tests
1dc743
- Turn ssl2 off by default in the tstclnt tool
1dc743
- Disable ssl stress tests containing TLS RC4 128 with MD5
1dc743
1dc743
* Thu Aug 20 2015 Elio Maldonado <emaldona@redhat.com> - 3.20.0-2
1dc743
- Update to NSS 3.20
1dc743
1dc743
* Sat Aug 08 2015 Elio Maldonado <emaldona@redhat.com> - 3.19.3-2
1dc743
- Update to NSS 3.19.3
1dc743
1dc743
* Fri Jun 26 2015 Elio Maldonado <emaldona@redhat.com> - 3.19.2-3
1dc743
- Create on the fly versions of sslcov.txt and sslstress.txt that disable tests for SSL2 and EXPORT ciphers
1dc743
1dc743
* Wed Jun 17 2015 Kai Engert <kaie@redhat.com> - 3.19.2-2
1dc743
- Update to NSS 3.19.2
1dc743
1dc743
* Thu May 28 2015 Kai Engert <kaie@redhat.com> - 3.19.1-2
1dc743
- Update to NSS 3.19.1
1dc743
1dc743
* Tue May 19 2015 Kai Engert <kaie@redhat.com> - 3.19.0-2
1dc743
- Update to NSS 3.19
1dc743
1dc743
* Fri May 15 2015 Kai Engert <kaie@redhat.com> - 3.18.0-2
1dc743
- Replace expired test certificates, upstream bug 1151037
1dc743
1dc743
* Thu Mar 19 2015 Elio Maldonado <emaldona@redhat.com> - 3.18.0-1
1dc743
- Update to nss-3.18.0
1dc743
- Resolves: Bug 1203689 - nss-3.18 is available
1dc743
1dc743
* Tue Mar 03 2015 Elio Maldonado <emaldona@redhat.com> - 3.17.4-5
1dc743
- Disable export suites and SSL2 support at build time
1dc743
- Fix syntax errors in various shell scripts
1dc743
- Resolves: Bug 1189952 - Disable SSL2 and the export cipher suites
1dc743
1dc743
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 3.17.4-4
1dc743
- Rebuilt for Fedora 23 Change
1dc743
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
1dc743
1dc743
* Tue Feb 10 2015 Elio Maldonado <emaldona@redhat.com> - 3.17.4-3
1dc743
- Commented out the export NSS_NO_SSL2=1 line to not disable ssl2
1dc743
- Backing out from disabling ssl2 until the patches are fixed
1dc743
1dc743
* Mon Feb 09 2015 Elio Maldonado <emaldona@redhat.com> - 3.17.4-2
1dc743
- Disable SSL2 support at build time
1dc743
- Fix syntax errors in various shell scripts
1dc743
- Resolves: Bug 1189952 - Disable SSL2 and the export cipher suites
1dc743
1dc743
* Wed Jan 28 2015 Elio Maldonado <emaldona@redhat.com> - 3.17.4-1
1dc743
- Update to nss-3.17.4
1dc743
1dc743
* Sat Jan 24 2015 Ville Skyttä <ville.skytta@iki.fi> - 3.17.3-4
1dc743
- Own the %%{_datadir}/doc/nss-tools dir
1dc743
1dc743
* Tue Dec 16 2014 Elio Maldonado <emaldona@redhat.com> - 3.17.3-3
1dc743
- Resolves: Bug 987189 - nss-tools RPM conflicts with perl-PAR-Packer
1dc743
- Install pp man page in %%{_datadir}/doc/nss-tools/pp.1
1dc743
- Use %%{_mandir} instead of /usr/share/man as more generic
1dc743
1dc743
* Mon Dec 15 2014 Elio Maldonado <emaldona@redhat.com> - 3.17.3-2
1dc743
- Install pp man page in alternative location
1dc743
- Resolves: Bug 987189 - nss-tools RPM conflicts with perl-PAR-Packer
1dc743
1dc743
* Fri Dec 05 2014 Elio Maldonado <emaldona@redhat.com> - 3.17.3-1
1dc743
- Update to nss-3.17.3
1dc743
- Resolves: Bug 1171012 - nss-3.17.3 is available
1dc743
1dc743
* Thu Oct 16 2014 Elio Maldonado <emaldona@redhat.com> - 3.17.2-2
1dc743
- Resolves: Bug 994599 - Enable TLS 1.2 by default
1dc743
1dc743
* Sun Oct 12 2014 Elio Maldonado <emaldona@redhat.com> - 3.17.2-1
1dc743
- Update to nss-3.17.2
1dc743
1dc743
* Wed Sep 24 2014 Kai Engert <kaie@redhat.com> - 3.17.1-1
1dc743
- Update to nss-3.17.1
1dc743
- Add a mechanism to skip test suite execution during development work
1dc743
1dc743
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 3.17.0-2
1dc743
- Rebuild for rpm bug 1131960
1dc743
1dc743
* Tue Aug 19 2014 Elio Maldonado <emaldona@redhat.com> - 3.17.0-1
1dc743
- Update to nss-3.17.0
1dc743
1dc743
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.16.2-4
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1dc743
1dc743
* Wed Jul 30 2014 Elio Maldonado <emaldona@redhat.com> - 3.16.2-3
1dc743
- Replace expired PayPal test cert with current one to prevent build failure
1dc743
1dc743
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 3.16.2-2
1dc743
- fix license handling
1dc743
1dc743
* Sun Jun 29 2014 Elio Maldonado <emaldona@redhat.com> - 3.16.2-1
1dc743
- Update to nss-3.16.2
1dc743
1dc743
* Sun Jun 15 2014 Elio Maldonado <emaldona@redhat.com> - 3.16.1-4
1dc743
- Remove unwanted source directories at end of %%prep so it truly does it
1dc743
- Skip the cipher suite already run as part of the nss-softokn build
1dc743
1dc743
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.16.1-3
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1dc743
1dc743
* Mon May 12 2014 Jaromir Capik <jcapik@redhat.com> - 3.16.1-2
1dc743
- Replacing ppc64 and ppc64le with the power64 macro
1dc743
- Related: Bug 1052545 - Trivial change for ppc64le in nss spec
1dc743
1dc743
* Tue May 06 2014 Elio Maldonado <emaldona@redhat.com> - 3.16.1-1
1dc743
- Update to nss-3.16.1
1dc743
- Update the iquote patch on account of the rebase
1dc743
- Improve error detection in the %%section
1dc743
- Resolves: Bug 1094702 - nss-3.16.1 is available
1dc743
1dc743
* Tue Mar 18 2014 Elio Maldonado <emaldona@redhat.com> - 3.16.0-1
1dc743
- Update to nss-3.16.0
1dc743
- Cleanup the copying of the tools man pages
1dc743
- Update the iquote.patch on account of the rebase
1dc743
1dc743
* Tue Mar 04 2014 Elio Maldonado <emaldona@redhat.com> - 3.15.5-2
1dc743
- Restore requiring nss_softokn_version >= 3.15.5
1dc743
1dc743
* Wed Feb 19 2014 Elio Maldonado <emaldona@redhat.com> - 3.15.5-1
1dc743
- Update to nss-3.15.5
1dc743
- Temporarily requiring only nss_softokn_version >= 3.15.4
1dc743
- Fix location of sharedb files and their manpages
1dc743
- Move cert9.db, key4.db, and pkcs11.txt to the main package
1dc743
- Move nss-sysinit manpages tar archives to the main package
1dc743
- Resolves: Bug 1066877 - nss-3.15.5 is available
1dc743
- Resolves: Bug 1067091 - Move sharedb files to the %%files section
1dc743
1dc743
* Thu Feb 06 2014 Elio Maldonado <emaldona@redhat.com> - 3.15.4-5
1dc743
- Revert previous change that moved some sysinit manpages
1dc743
- Restore nss-sysinit manpages tar archives to %%files sysinit
1dc743
- Removing spurious wildcard entry was the only change needed
1dc743
1dc743
* Mon Jan 27 2014 Elio Maldonado <emaldona@redhat.com> - 3.15.4-4
1dc743
- Add explanatory comments for iquote.patch as was done on f20
1dc743
1dc743
* Sat Jan 25 2014 Elio Maldonado <emaldona@redhat.com> - 3.15.4-3
1dc743
- Update pem sources to latest from nss-pem upstream
1dc743
- Pick up pem fixes verified on RHEL and applied upstream
1dc743
- Fix a problem where same files in two rpms created rpm conflict
1dc743
- Move some nss-sysinit manpages tar archives to the %%files the
1dc743
- All man pages are listed by name so there shouldn't be wildcard inclusion
1dc743
- Add support for ppc64le, Resolves: Bug 1052545
1dc743
1dc743
* Mon Jan 20 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.15.4-2
1dc743
- ARM tests pass so remove ARM conditional
1dc743
1dc743
* Tue Jan 07 2014 Elio Maldonado <emaldona@redhat.com> - 3.15.4-1
1dc743
- Update to nss-3.15.4 (hg tag NSS_3_15_4_RTM)
1dc743
- Resolves: Bug 1049229 - nss-3.15.4 is available
1dc743
- Update pem sources to latest from the interim upstream for pem
1dc743
- Remove no longer needed patches
1dc743
- Update pem/rsawrapr.c patch on account of upstream changes to freebl/softoken
1dc743
- Update iquote.patch on account of upstream changes
1dc743
1dc743
* Wed Dec 11 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.3.1-1
1dc743
- Update to nss-3.15.3.1 (hg tag NSS_3_15_3_1_RTM)
1dc743
- Resolves: Bug 1040282 - nss: Mis-issued ANSSI/DCSSI certificate (MFSA 2013-117)
1dc743
- Resolves: Bug 1040192 - nss-3.15.3.1 is available
1dc743
1dc743
* Tue Dec 03 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.3-2
1dc743
- Bump the release tag
1dc743
1dc743
* Sun Nov 24 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.3-1
1dc743
- Update to NSS_3_15_3_RTM
1dc743
- Resolves: Bug 1031897 - CVE-2013-5605 CVE-2013-5606 CVE-2013-1741 nss: various flaws
1dc743
- Fix option descriptions for setup-nsssysinit manpage
1dc743
- Fix man page of nss-sysinit wrong path and other flaws
1dc743
- Document email option for certutil manpage
1dc743
- Remove unused patches
1dc743
1dc743
* Sun Oct 27 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.2-3
1dc743
- Revert one change from last commit to preserve full nss pluggable ecc supprt [1019245]
1dc743
1dc743
* Wed Oct 23 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.2-2
1dc743
- Use the full sources from upstream
1dc743
- Bug 1019245 - ECDHE in openssl available -> NSS needs too for Firefox/Thunderbird
1dc743
1dc743
* Thu Sep 26 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.2-1
1dc743
- Update to NSS_3_15_2_RTM
1dc743
- Update iquote.patch on account of modified prototype on cert.h installed by nss-devel
1dc743
1dc743
* Wed Aug 28 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.1-7
1dc743
- Update pem sources to pick up a patch applied upstream which a faulty merge had missed
1dc743
- The pem module should not require unique file basenames
1dc743
1dc743
* Tue Aug 27 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.1-6
1dc743
- Update pem sources to the latest from interim upstream
1dc743
1dc743
* Mon Aug 19 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.1-5
1dc743
- Resolves: rhbz#996639 - Minor bugs in nss man pages
1dc743
- Fix some typos and improve description and see also sections
1dc743
1dc743
* Sun Aug 11 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.1-4
1dc743
- Cleanup spec file to address most rpmlint errors and warnings
1dc743
- Using double percent symbols to fix macro-in-comment warnings
1dc743
- Ignore unversioned-explicit-provides nss-system-init per spec comments
1dc743
- Ignore invalid-url Source0 as it comes from the git lookaside cache
1dc743
- Ignore invalid-url Source12 as it comes from the git lookaside cache
1dc743
1dc743
* Thu Jul 25 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.1-3
1dc743
- Add man page for pkcs11.txt configuration file and cert and key databases
1dc743
- Resolves: rhbz#985114 - Provide man pages for the nss configuration files
1dc743
1dc743
* Fri Jul 19 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.1-2
1dc743
- Fix errors in the man pages
1dc743
- Resolves: rhbz#984106 - Add missing option descriptions to man pages for {cert|cms|crl}util
1dc743
- Resolves: rhbz#982856 - Fix path to script in man page for nss-sysinit
1dc743
1dc743
* Tue Jul 02 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.1-1
1dc743
- Update to NSS_3_15_1_RTM
1dc743
- Enable the iquote.patch to access newly introduced types
1dc743
1dc743
* Wed Jun 19 2013 Elio Maldonado <emaldona@redhat.com> - 3.15-5
1dc743
- Install man pages for nss-tools and the nss-config and setup-nsssysinit scripts
1dc743
- Resolves: rhbz#606020 - nss security tools lack man pages
1dc743
1dc743
* Tue Jun 18 2013 emaldona <emaldona@redhat.com> - 3.15-4
1dc743
- Build nss without softoken or util sources in the tree
1dc743
- Resolves: rhbz#689918
1dc743
1dc743
* Mon Jun 17 2013 emaldona <emaldona@redhat.com> - 3.15-3
1dc743
- Update ssl-cbc-random-iv-by-default.patch
1dc743
1dc743
* Sun Jun 16 2013 Elio Maldonado <emaldona@redhat.com> - 3.15-2
1dc743
- Fix generation of NSS_VMAJOR, NSS_VMINOR, and NSS_VPATCH for nss-config
1dc743
1dc743
* Sat Jun 15 2013 Elio Maldonado <emaldona@redhat.com> - 3.15-1
1dc743
- Update to NSS_3_15_RTM
1dc743
1dc743
* Wed Apr 24 2013 Elio Maldonado <emaldona@redhat.com> - 3.15-0.1.beta1.2
1dc743
- Fix incorrect path that hid failed test from view
1dc743
- Add ocsp to the test suites to run but ...
1dc743
- Temporarily disable the ocsp stapling tests
1dc743
- Do not treat failed attempts at ssl pkcs11 bypass as fatal errors
1dc743
1dc743
* Thu Apr 04 2013 Elio Maldonado <emaldona@redhat.com> - 3.15-0.1.beta1.1
1dc743
- Update to NSS_3_15_BETA1
1dc743
- Update spec file, patches, and helper scripts on account of a shallower source tree
1dc743
1dc743
* Sun Mar 24 2013 Kai Engert <kaie@redhat.com> - 3.14.3-12
1dc743
- Update expired test certificates (fixed in upstream bug 852781)
1dc743
1dc743
* Fri Mar 08 2013 Kai Engert <kaie@redhat.com> - 3.14.3-10
1dc743
- Fix incorrect post/postun scripts. Fix broken links in posttrans.
1dc743
1dc743
* Wed Mar 06 2013 Kai Engert <kaie@redhat.com> - 3.14.3-9
1dc743
- Configure libnssckbi.so to use the alternatives system
1dc743
  in order to prepare for a drop in replacement.
1dc743
1dc743
* Fri Feb 15 2013 Elio Maldonado <emaldona@redhat.com> - 3.14.3-1
1dc743
- Update to NSS_3_14_3_RTM
1dc743
- sync up pem rsawrapr.c with softoken upstream changes for nss-3.14.3
1dc743
- Resolves: rhbz#908257 - CVE-2013-1620 nss: TLS CBC padding timing attack
1dc743
- Resolves: rhbz#896651 - PEM module trashes private keys if login fails
1dc743
- Resolves: rhbz#909775 - specfile support for AArch64
1dc743
- Resolves: rhbz#910584 - certutil -a does not produce ASCII output
1dc743
1dc743
* Mon Feb 04 2013 Elio Maldonado <emaldona@redhat.com> - 3.14.2-2
1dc743
- Allow building nss against older system sqlite
1dc743
1dc743
* Fri Feb 01 2013 Elio Maldonado <emaldona@redhat.com> - 3.14.2-1
1dc743
- Update to NSS_3_14_2_RTM
1dc743
1dc743
* Wed Jan 02 2013 Kai Engert <kaie@redhat.com> - 3.14.1-3
1dc743
- Update to NSS_3_14_1_WITH_CKBI_1_93_RTM
1dc743
1dc743
* Sat Dec 22 2012 Elio Maldonado <emaldona@redhat.com> - 3.14.1-2
1dc743
- Require nspr >= 4.9.4
1dc743
- Fix changelog invalid dates
1dc743
1dc743
* Mon Dec 17 2012 Elio Maldonado <emaldona@redhat.com> - 3.14.1-1
1dc743
- Update to NSS_3_14_1_RTM
1dc743
1dc743
* Wed Dec 12 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-12
1dc743
- Bug 879978 - Install the nssck.api header template where mod_revocator can access it
1dc743
- Install nssck.api in /usr/includes/nss3/templates
1dc743
1dc743
* Tue Nov 27 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-11
1dc743
- Bug 879978 - Install the nssck.api header template in a place where mod_revocator can access it
1dc743
- Install nssck.api in /usr/includes/nss3
1dc743
1dc743
* Mon Nov 19 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-10
1dc743
- Bug 870864 - Add support in NSS for Secure Boot
1dc743
1dc743
* Sat Nov 10 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-9
1dc743
- Disable bypass code at build time and return failure on attempts to enable at runtime
1dc743
- Bug 806588 - Disable SSL PKCS #11 bypass at build time
1dc743
1dc743
* Sun Nov 04 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-8
1dc743
- Fix pk11wrap locking which fixes 'fedpkg new-sources' and 'fedpkg update' hangs
1dc743
- Bug 872124 - nss-3.14 breaks fedpkg new-sources
1dc743
- Fix should be considered preliminary since the patch may change upon upstream approval
1dc743
1dc743
* Thu Nov 01 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-7
1dc743
- Add a dummy source file for testing /preventing fedpkg breakage
1dc743
- Helps test the fedpkg new-sources and upload commands for breakage by nss updates
1dc743
- Related to Bug 872124 - nss 3.14 breaks fedpkg new-sources
1dc743
1dc743
* Thu Nov 01 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-6
1dc743
- Fix a previous unwanted merge from f18
1dc743
- Update the SS_SSL_CBC_RANDOM_IV patch to match new sources while
1dc743
- Keeping the patch disabled while we are still in rawhide and
1dc743
- State in comment that patch is needed for both stable and beta branches
1dc743
- Update .gitignore to download only the new sources
1dc743
1dc743
* Wed Oct 31 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-5
1dc743
- Fix the spec file so sechash.h gets installed
1dc743
- Resolves: rhbz#871882 - missing header: sechash.h in nss 3.14
1dc743
1dc743
* Sat Oct 27 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-4
1dc743
- Update the license to MPLv2.0
1dc743
1dc743
* Wed Oct 24 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-3
1dc743
- Use only -f when removing unwanted headers
1dc743
1dc743
* Tue Oct 23 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-2
1dc743
- Add secmodt.h to the headers installed by nss-devel
1dc743
- nss-devel must install secmodt.h which moved from softoken to pk11wrap with nss-3.14
1dc743
1dc743
* Mon Oct 22 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-1
1dc743
- Update to NSS_3_14_RTM
1dc743
1dc743
* Sun Oct 21 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-0.1.rc.1
1dc743
- Update to NSS_3_14_RC1
1dc743
- update nss-589636.patch to apply to httpdserv
1dc743
- turn off ocsp tests for now
1dc743
- remove no longer needed patches
1dc743
- remove headers shipped by nss-util
1dc743
1dc743
* Fri Oct 05 2012 Kai Engert <kaie@redhat.com> - 3.13.6-1
1dc743
- Update to NSS_3_13_6_RTM
1dc743
1dc743
* Mon Aug 27 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-8
1dc743
- Rebase pem sources to fedora-hosted upstream to pick up two fixes from rhel-6.3
1dc743
- Resolves: rhbz#847460 - Fix invalid read and free on invalid cert load
1dc743
- Resolves: rhbz#847462 - PEM module may attempt to free uninitialized pointer
1dc743
- Remove unneeded fix gcc 4.7 c++ issue in secmodt.h that actually undoes the upstream fix
1dc743
1dc743
* Mon Aug 13 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-7
1dc743
- Fix pluggable ecc support
1dc743
1dc743
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.5-6
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1dc743
1dc743
* Sun Jul 01 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-5
1dc743
- Fix checkin comment to prevent unwanted expansions of percents
1dc743
1dc743
* Sun Jul 01 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-4
1dc743
- Resolves: Bug 830410 - Missing Requires %%{?_isa}
1dc743
- Use Requires: %%{name}%%{?_isa} = %%{version}-%%{release} on tools
1dc743
- Drop zlib requires which rpmlint reports as error E: explicit-lib-dependency zlib
1dc743
- Enable sha224 portion of powerup selftest when running test suites
1dc743
- Require nspr 4.9.1
1dc743
1dc743
* Wed Jun 20 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-3
1dc743
- Resolves: rhbz#833529 - revert unwanted change to nss.pc.in
1dc743
1dc743
* Tue Jun 19 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-2
1dc743
- Resolves: rhbz#833529 - Remove unwanted space from the Libs: line on nss.pc.in
1dc743
1dc743
* Mon Jun 18 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-1
1dc743
- Update to NSS_3_13_5_RTM
1dc743
1dc743
* Fri Apr 13 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.4-3
1dc743
- Resolves: Bug 812423 - nss_Init leaks memory, fix from RHEL 6.3
1dc743
1dc743
* Sun Apr 08 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.4-2
1dc743
- Resolves: Bug 805723 - Library needs partial RELRO support added
1dc743
- Patch coreconf/Linux.mk as done on RHEL 6.2
1dc743
1dc743
* Fri Apr 06 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.4-1
1dc743
- Update to NSS_3_13_4_RTM
1dc743
- Update the nss-pem source archive to the latest version
1dc743
- Remove no longer needed patches
1dc743
- Resolves: Bug 806043 - use pem files interchangeably in a single process
1dc743
- Resolves: Bug 806051 - PEM various flaws detected by Coverity
1dc743
- Resolves: Bug 806058 - PEM pem_CreateObject leaks memory given a non-existing file name
1dc743
1dc743
* Wed Mar 21 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.3-4
1dc743
- Resolves: Bug 805723 - Library needs partial RELRO support added
1dc743
1dc743
* Fri Mar 09 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.3-3
1dc743
- Cleanup of the spec file
1dc743
- Add references to the upstream bugs
1dc743
- Fix typo in Summary for sysinit
1dc743
1dc743
* Thu Mar 08 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.3-2
1dc743
- Pick up fixes from RHEL
1dc743
- Resolves: rhbz#800674 - Unable to contact LDAP Server during winsync
1dc743
- Resolves: rhbz#800682 - Qpid AMQP daemon fails to load after nss update
1dc743
- Resolves: rhbz#800676 - NSS workaround for freebl bug that causes openswan to drop connections
1dc743
1dc743
* Thu Mar 01 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.3-1
1dc743
- Update to NSS_3_13_3_RTM
1dc743
1dc743
* Mon Jan 30 2012 Tom Callaway <spot@fedoraproject.org> - 3.13.1-13
1dc743
- fix issue with gcc 4.7 in secmodt.h and C++11 user-defined literals
1dc743
1dc743
* Thu Jan 26 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.1-12
1dc743
- Resolves: Bug 784672 - nss should protect against being called before nss_Init
1dc743
1dc743
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.1-11
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1dc743
1dc743
* Fri Jan 06 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.1-11
1dc743
- Deactivate a patch currently meant for stable branches only
1dc743
1dc743
* Fri Jan 06 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.1-10
1dc743
- Resolves: Bug 770682 - nss update breaks pidgin-sipe connectivity
1dc743
- NSS_SSL_CBC_RANDOM_IV set to 0 by default and changed to 1 on user request
1dc743
1dc743
* Tue Dec 13 2011 elio maldonado <emaldona@redhat.com> - 3.13.1-9
1dc743
- Revert to using current nss_softokn_version
1dc743
- Patch to deal with lack of sha224 is no longer needed
1dc743
1dc743
* Tue Dec 13 2011 Elio Maldonado <emaldona@redhat.com> - 3.13.1-8
1dc743
- Resolves: Bug 754771 - [PEM] an unregistered callback causes a SIGSEGV
1dc743
1dc743
* Mon Dec 12 2011 Elio Maldonado <emaldona@redhat.com> - 3.13.1-7
1dc743
- Resolves: Bug 750376 - nss 3.13 breaks sssd TLS
1dc743
- Fix how pem is built so that nss-3.13.x works with nss-softokn-3.12.y
1dc743
- Only patch blapitest for the lack of sha224 on system freebl
1dc743
- Completed the patch to make pem link against system freebl
1dc743
1dc743
* Mon Dec 05 2011 Elio Maldonado <emaldona@redhat.com> - 3.13.1-6
1dc743
- Removed unwanted /usr/include/nss3 in front of the normal cflags include path
1dc743
- Removed unnecessary patch dealing with CERTDB_TERMINAL_RECORD, it's visible
1dc743
1dc743
* Sun Dec 04 2011 Elio Maldonado <emaldona@redhat.com> - 3.13.1-5
1dc743
- Statically link the pem module against system freebl found in buildroot
1dc743
- Disabling sha224-related powerup selftest until we update softokn
1dc743
- Disable sha224 and pss tests which nss-softokn 3.12.x doesn't support
1dc743
1dc743
* Fri Dec 02 2011 Elio Maldonado Batiz <emaldona@redhat.com> - 3.13.1-4
1dc743
- Rebuild with nss-softokn from 3.12 in the buildroot
1dc743
- Allows the pem module to statically link against 3.12.x freebl
1dc743
- Required for using nss-3.13.x with nss-softokn-3.12.y for a merge inrto rhel git repo
1dc743
- Build will be temprarily placed on buildroot override but not pushed in bodhi
1dc743
1dc743
* Fri Nov 04 2011 Elio Maldonado <emaldona@redhat.com> - 3.13.1-2
1dc743
- Fix broken dependencies by updating the nss-util and nss-softokn versions
1dc743
1dc743
* Thu Nov 03 2011 Elio Maldonado <emaldona@redhat.com> - 3.13.1-1
1dc743
- Update to NSS_3_13_1_RTM
1dc743
- Update builtin certs to those from NSSCKBI_1_88_RTM
1dc743
1dc743
* Sat Oct 15 2011 Elio Maldonado <emaldona@redhat.com> - 3.13-1
1dc743
- Update to NSS_3_13_RTM
1dc743
1dc743
* Sat Oct 08 2011 Elio Maldonado <emaldona@redhat.com> - 3.13-0.1.rc0.1
1dc743
- Update to NSS_3_13_RC0
1dc743
1dc743
* Wed Sep 14 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.11-3
1dc743
- Fix attempt to free initilized pointer (#717338)
1dc743
- Fix leak on pem_CreateObject when given non-existing file name (#734760)
1dc743
- Fix pem_Initialize to return CKR_CANT_LOCK on multi-treaded calls (#736410)
1dc743
1dc743
* Tue Sep 06 2011 Kai Engert <kaie@redhat.com> - 3.12.11-2
1dc743
- Update builtins certs to those from NSSCKBI_1_87_RTM
1dc743
1dc743
* Tue Aug 09 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.11-1
1dc743
- Update to NSS_3_12_11_RTM
1dc743
1dc743
* Sat Jul 23 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.10-6
1dc743
- Indicate the provenance of stripped source tarball (#688015)
1dc743
1dc743
* Mon Jun 27 2011 Michael Schwendt <mschwendt@fedoraproject.org> - 3.12.10-5
1dc743
- Provide virtual -static package to meet guidelines (#609612).
1dc743
1dc743
* Fri Jun 10 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.10-4
1dc743
- Enable pluggable ecc support (#712556)
1dc743
- Disable the nssdb write-access-on-read-only-dir tests when user is root (#646045)
1dc743
1dc743
* Fri May 20 2011 Dennis Gilmore <dennis@ausil.us> - 3.12.10-3
1dc743
- make the testsuite non fatal on arm arches
1dc743
1dc743
* Tue May 17 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.10-2
1dc743
- Fix crmf hard-coded maximum size for wrapped private keys (#703656)
1dc743
1dc743
* Fri May 06 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.10-1
1dc743
- Update to NSS_3_12_10_RTM
1dc743
1dc743
* Wed Apr 27 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.10-0.1.beta1
1dc743
- Update to NSS_3_12_10_BETA1
1dc743
1dc743
* Mon Apr 11 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-15
1dc743
- Implement PEM logging using NSPR's own (#695011)
1dc743
1dc743
* Wed Mar 23 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-14
1dc743
- Update to NSS_3.12.9_WITH_CKBI_1_82_RTM
1dc743
1dc743
* Thu Feb 24 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-13
1dc743
- Short-term fix for ssl test suites hangs on ipv6 type connections (#539183)
1dc743
1dc743
* Fri Feb 18 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-12
1dc743
- Add a missing requires for pkcs11-devel (#675196)
1dc743
1dc743
* Tue Feb 15 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-11
1dc743
- Run the test suites in the check section (#677809)
1dc743
1dc743
* Thu Feb 10 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-10
1dc743
- Fix cms headers to not use c++ reserved words (#676036)
1dc743
- Reenabling Bug 499444 patches
1dc743
- Fix to swap internal key slot on fips mode switches
1dc743
1dc743
* Tue Feb 08 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-9
1dc743
- Revert patches for 499444 until all c++ reserved words are found and extirpated
1dc743
1dc743
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12.9-8
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1dc743
1dc743
* Tue Feb 08 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-7
1dc743
- Fix cms header to not use c++ reserved word (#676036)
1dc743
- Reenable patches for bug 499444
1dc743
1dc743
* Tue Feb 08 2011 Christopher Aillon <caillon@redhat.com> - 3.12.9-6
1dc743
- Revert patches for 499444 as they use a C++ reserved word and
1dc743
  cause compilation of Firefox to fail
1dc743
1dc743
* Fri Feb 04 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-5
1dc743
- Fix the earlier infinite recursion patch (#499444)
1dc743
- Remove a header that now nss-softokn-freebl-devel ships
1dc743
1dc743
* Tue Feb 01 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-4
1dc743
- Fix infinite recursion when encoding NSS enveloped/digested data (#499444)
1dc743
1dc743
* Mon Jan 31 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-3
1dc743
- Update the cacert trust patch per upstream review requests (#633043)
1dc743
1dc743
* Wed Jan 19 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-2
1dc743
- Fix to honor the user's cert trust preferences (#633043)
1dc743
- Remove obsoleted patch
1dc743
1dc743
* Wed Jan 12 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-1
1dc743
- Update to 3.12.9
1dc743
1dc743
* Mon Dec 27 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.9-0.1.beta2
1dc743
- Rebuilt according to fedora pre-release package naming guidelines
1dc743
1dc743
* Fri Dec 10 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8.99.2-1
1dc743
- Update to NSS_3_12_9_BETA2
1dc743
- Fix libpnsspem crash when cacert dir contains other directories (#642433)
1dc743
1dc743
* Wed Dec 08 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8.99.1-1
1dc743
- Update to NSS_3_12_9_BETA1
1dc743
1dc743
* Thu Nov 25 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-9
1dc743
- Update pem source tar with fixes for 614532 and 596674
1dc743
- Remove no longer needed patches
1dc743
1dc743
* Fri Nov 05 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-8
1dc743
- Update PayPalEE.cert test certificate which had expired
1dc743
1dc743
* Sun Oct 31 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-7
1dc743
- Tell rpm not to verify md5, size, and modtime of configurations file
1dc743
1dc743
* Mon Oct 18 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-6
1dc743
- Fix certificates trust order (#643134)
1dc743
- Apply nss-sysinit-userdb-first.patch last
1dc743
1dc743
* Wed Oct 06 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-5
1dc743
- Move triggerpostun -n nss-sysinit script ahead of the other ones (#639248)
1dc743
1dc743
* Tue Oct 05 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-4
1dc743
- Fix invalid %%postun scriptlet (#639248)
1dc743
1dc743
* Wed Sep 29 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-3
1dc743
- Replace posttrans sysinit scriptlet with a triggerpostun one (#636787)
1dc743
- Fix and cleanup the setup-nsssysinit.sh script (#636792, #636801)
1dc743
1dc743
* Mon Sep 27 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-2
1dc743
- Add posttrans scriptlet (#636787)
1dc743
1dc743
* Thu Sep 23 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-1
1dc743
- Update to 3.12.8
1dc743
- Prevent disabling of nss-sysinit on package upgrade (#636787)
1dc743
- Create pkcs11.txt with correct permissions regardless of umask (#636792)
1dc743
- Setup-nsssysinit.sh reports whether nss-sysinit is turned on or off (#636801)
1dc743
- Added provides pkcs11-devel-static to comply with packaging guidelines (#609612)
1dc743
1dc743
* Sat Sep 18 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7.99.4-1
1dc743
- NSS 3.12.8 RC0
1dc743
1dc743
* Sun Sep 05 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7.99.3-2
1dc743
- Fix nss-util_version and nss_softokn_version required to be 3.12.7.99.3
1dc743
1dc743
* Sat Sep 04 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7.99.3-1
1dc743
- NSS 3.12.8 Beta3
1dc743
- Fix unclosed comment in renegotiate-transitional.patch
1dc743
1dc743
* Sat Aug 28 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7-3
1dc743
- Change BuildRequries to available version of nss-util-devel
1dc743
1dc743
* Sat Aug 28 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7-2
1dc743
- Define NSS_USE_SYSTEM_SQLITE and remove unneeded patch
1dc743
- Add comments regarding an unversioned provides which triggers rpmlint warning
1dc743
- Build requires nss-softokn-devel >= 3.12.7
1dc743
1dc743
* Mon Aug 16 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7-1
1dc743
- Update to 3.12.7
1dc743
1dc743
* Sat Aug 14 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-12
1dc743
- Apply the patches to fix rhbz#614532
1dc743
1dc743
* Mon Aug 09 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-11
1dc743
- Removed pem sourecs as they are in the cache
1dc743
1dc743
* Mon Aug 09 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-10
1dc743
- Add support for PKCS#8 encoded PEM RSA private key files (#614532)
1dc743
1dc743
* Sat Jul 31 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-9
1dc743
- Fix nsssysinit to return userdb ahead of systemdb (#603313)
1dc743
1dc743
* Tue Jun 08 2010 Dennis Gilmore <dennis@ausil.us> - 3.12.6-8
1dc743
- Require and BuildRequire >= the listed version not =
1dc743
1dc743
* Tue Jun 08 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-7
1dc743
- Require nss-softoken 3.12.6
1dc743
1dc743
* Sun Jun 06 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-6
1dc743
- Fix SIGSEGV within CreateObject (#596674)
1dc743
1dc743
* Mon Apr 12 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-5
1dc743
- Update pem source tar to pick up the following bug fixes:
1dc743
- PEM - Allow collect objects to search through all objects
1dc743
- PEM - Make CopyObject return a new shallow copy
1dc743
- PEM - Fix memory leak in pem_mdCryptoOperationRSAPriv
1dc743
1dc743
* Wed Apr 07 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-4
1dc743
- Update the test cert in the setup phase
1dc743
1dc743
* Wed Apr 07 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-3
1dc743
- Add sed to sysinit requires as setup-nsssysinit.sh requires it (#576071)
1dc743
- Update PayPalEE test cert with unexpired one (#580207)
1dc743
1dc743
* Thu Mar 18 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-2
1dc743
- Fix ns.spec to not require nss-softokn (#575001)
1dc743
1dc743
* Sat Mar 06 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-1.2
1dc743
- rebuilt with all tests enabled
1dc743
1dc743
* Sat Mar 06 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-1.1
1dc743
- Using SSL_RENEGOTIATE_TRANSITIONAL as default while on transition period
1dc743
- Disabling ssl tests suites until bug 539183 is resolved
1dc743
1dc743
* Sat Mar 06 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-1
1dc743
- Update to 3.12.6
1dc743
- Reactivate all tests
1dc743
- Patch tools to validate command line options arguments
1dc743
1dc743
* Mon Jan 25 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.5-8
1dc743
- Fix curl related regression and general patch code clean up
1dc743
1dc743
* Wed Jan 13 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.5-5
1dc743
-  retagging
1dc743
1dc743
* Tue Jan 12 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.5-1.1
1dc743
- Fix SIGSEGV on call of NSS_Initialize (#553638)
1dc743
1dc743
* Wed Jan 06 2010 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1.13.2
1dc743
- New version of patch to allow root to modify ystem database (#547860)
1dc743
1dc743
* Thu Dec 31 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1.13.1
1dc743
- Temporarily disabling the ssl tests
1dc743
1dc743
* Sat Dec 26 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1.13
1dc743
- Fix nsssysinit to allow root to modify the nss system database (#547860)
1dc743
1dc743
* Fri Dec 25 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1.11
1dc743
- Fix an error introduced when adapting the patch for rhbz #546211
1dc743
1dc743
* Sat Dec 19 2009 Elio maldonado<emaldona@redhat.com> - 3.12.5-1.9
1dc743
- Remove left over trace statements from nsssysinit patching
1dc743
1dc743
* Fri Dec 18 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-2.7
1dc743
- Fix a misconstructed patch
1dc743
1dc743
* Thu Dec 17 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1.6
1dc743
- Fix nsssysinit to enable apps to use system cert store, patch contributed by David Woodhouse (#546221)
1dc743
- Fix spec so sysinit requires coreutils for post install scriplet (#547067)
1dc743
- Fix segmentation fault when listing keys or certs in the database, patch contributed by Kamil Dudka (#540387)
1dc743
1dc743
* Thu Dec 10 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1.5
1dc743
- Fix nsssysinit to set the default flags on the crypto module (#545779)
1dc743
- Remove redundant header from the pem module
1dc743
1dc743
* Wed Dec 09 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1.1
1dc743
- Remove unneeded patch
1dc743
1dc743
* Thu Dec 03 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1.1
1dc743
- Retagging to include missing patch
1dc743
1dc743
* Thu Dec 03 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1
1dc743
- Update to 3.12.5
1dc743
- Patch to allow ssl/tls clients to interoperate with servers that require renogiation
1dc743
1dc743
* Fri Nov 20 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-14.1
1dc743
- Retagging
1dc743
1dc743
* Tue Oct 20 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-13.1
1dc743
- Require nss-softoken of same architecture as nss (#527867)
1dc743
- Merge setup-nsssysinit.sh improvements from F-12 (#527051)
1dc743
1dc743
* Sat Oct 03 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-13
1dc743
- User no longer prompted for a password when listing keys an empty system db (#527048)
1dc743
- Fix setup-nsssysinit to handle more general formats (#527051)
1dc743
1dc743
* Sun Sep 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-12
1dc743
- Fix syntax error in setup-nsssysinit.sh
1dc743
1dc743
* Sun Sep 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-11
1dc743
- Fix sysinit to be under mozilla/security/nss/lib
1dc743
1dc743
* Sat Sep 26 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-10
1dc743
- Add nss-sysinit activation/deactivation script
1dc743
1dc743
* Fri Sep 18 2009 Elio Maldonado
1dc743
- Install blank databases and configuration file for system shared database
1dc743
- nsssysinit queries system for fips mode before relying on environment variable
1dc743
1dc743
* Thu Sep 10 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-8
1dc743
- Restoring nssutil and -rpath-link to nss-config for now - 522477
1dc743
1dc743
* Tue Sep 08 2009 Elio Maldonado
1dc743
- Add the nss-sysinit subpackage
1dc743
1dc743
* Tue Sep 08 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-6
1dc743
- Installing shared libraries to %%{_libdir}
1dc743
1dc743
* Mon Sep 07 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-5
1dc743
- Retagging to pick up new sources
1dc743
1dc743
* Mon Sep 07 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-4
1dc743
- Update pem enabling source tar with latest fixes (509705, 51209)
1dc743
1dc743
* Sun Sep 06 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-3
1dc743
- PEM module implements memory management for internal objects - 509705
1dc743
- PEM module doesn't crash when processing malformed key files - 512019
1dc743
1dc743
* Sat Sep 05 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-2
1dc743
- Remove symbolic links to shared libraries from devel - 521155
1dc743
- No rpath-link in nss-softokn-config
1dc743
1dc743
* Tue Sep 01 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-1
1dc743
- Update to 3.12.4
1dc743
1dc743
* Mon Aug 31 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-30
1dc743
- Fix FORTIFY_SOURCE buffer overflows in test suite on ppc and ppc64 - bug 519766
1dc743
- Fixed requires and buildrequires as per recommendations in spec file review
1dc743
1dc743
* Sun Aug 30 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-29
1dc743
- Restoring patches 2 and 7 as we still compile all sources
1dc743
- Applying the nss-nolocalsql.patch solves nss-tools sqlite dependency problems
1dc743
1dc743
* Sun Aug 30 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-28
1dc743
- restore require sqlite
1dc743
1dc743
* Sat Aug 29 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-27
1dc743
- Don't require sqlite for nss
1dc743
1dc743
* Sat Aug 29 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-26
1dc743
- Ensure versions in the requires match those used when creating nss.pc
1dc743
1dc743
* Fri Aug 28 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-25
1dc743
- Remove nss-prelink.conf as signed all shared libraries moved to nss-softokn
1dc743
- Add a temprary hack to nss.pc.in to unblock builds
1dc743
1dc743
* Fri Aug 28 2009 Warren Togami <wtogami@redhat.com> - 3.12.3.99.3-24
1dc743
- caolan's nss.pc patch
1dc743
1dc743
* Thu Aug 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-23
1dc743
- Bump the release number for a chained build of nss-util, nss-softokn and nss
1dc743
1dc743
* Thu Aug 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-22
1dc743
- Fix nss-config not to include nssutil
1dc743
- Add BuildRequires on nss-softokn and nss-util since build also runs the test suite
1dc743
1dc743
* Thu Aug 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-21
1dc743
- disabling all tests while we investigate a buffer overflow bug
1dc743
1dc743
* Thu Aug 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-20
1dc743
- disabling some tests while we investigate a buffer overflow bug - 519766
1dc743
1dc743
* Thu Aug 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-19
1dc743
- remove patches that are now in nss-softokn and
1dc743
- remove spurious exec-permissions for nss.pc per rpmlint
1dc743
- single requires line in nss.pc.in
1dc743
1dc743
* Wed Aug 26 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-18
1dc743
- Fix BuildRequires: nss-softokn-devel release number
1dc743
1dc743
* Wed Aug 26 2009 Elio Maldonado
1dc743
- fix nss.pc.in to have one single requires line
1dc743
1dc743
* Tue Aug 25 2009 Dennis Gilmore <dennis@ausil.us> - 3.12.3.99.3-16
1dc743
- cleanups for softokn
1dc743
1dc743
* Tue Aug 25 2009 Dennis Gilmore <dennis@ausil.us> - 3.12.3.99.3-15
1dc743
- remove the softokn subpackages
1dc743
1dc743
* Mon Aug 24 2009 Dennis Gilmore <dennis@ausil.us> - 3.12.3.99.3-14
1dc743
- don install the nss-util pkgconfig bits
1dc743
1dc743
* Mon Aug 24 2009 Dennis Gilmore <dennis@ausil.us> - 3.12.3.99.3-13
1dc743
- remove from -devel the 3 headers that ship in nss-util-devel
1dc743
1dc743
* Mon Aug 24 2009 Dennis Gilmore <dennis@ausil.us> - 3.12.3.99.3-12
1dc743
- kill off the nss-util nss-util-devel subpackages
1dc743
1dc743
* Sun Aug 23 2009 Elio Maldonado+emaldona@redhat.com - 3.12.3.99.3-11
1dc743
- split off nss-softokn and nss-util as subpackages with their own rpms
1dc743
- first phase of splitting nss-softokn and nss-util as their own packages
1dc743
1dc743
* Thu Aug 20 2009 Elio Maldonado <emaldona@redhat.com> - 3.12.3.99.3-10
1dc743
- must install libnssutil3.since nss-util is untagged at the moment
1dc743
- preserve time stamps when installing various files
1dc743
1dc743
* Thu Aug 20 2009 Dennis Gilmore <dennis@ausil.us> - 3.12.3.99.3-9
1dc743
- dont install libnssutil3.so since its now in nss-util
1dc743
1dc743
* Thu Aug 06 2009 Elio Maldonado <emaldona@redhat.com> - 3.12.3.99.3-7.1
1dc743
- Fix spec file problems uncovered by Fedora_12_Mass_Rebuild
1dc743
1dc743
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12.3.99.3-7
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1dc743
1dc743
* Mon Jun 22 2009 Elio Maldonado <emaldona@redhat.com> - 3.12.3.99.3-6
1dc743
- removed two patch files which are no longer needed and fixed previous change log number
1dc743
* Mon Jun 22 2009 Elio Maldonado <emaldona@redhat.com> - 3.12.3.99.3-5
1dc743
- updated pem module incorporates various patches
1dc743
- fix off-by-one error when computing size to reduce memory leak. (483855)
1dc743
- fix data type to work on x86_64 systems. (429175)
1dc743
- fix various memory leaks and free internal objects on module unload. (501080)
1dc743
- fix to not clone internal objects in collect_objects().  (501118)
1dc743
- fix to not bypass initialization if module arguments are omitted. (501058)
1dc743
- fix numerous gcc warnings. (500815)
1dc743
- fix to support arbitrarily long password while loading a private key. (500180)
1dc743
- fix memory leak in make_key and memory leaks and return values in pem_mdSession_Login (501191)
1dc743
* Mon Jun 08 2009 Elio Maldonado <emaldona@redhat.com> - 3.12.3.99.3-4
1dc743
- add patch for bug 502133 upstream bug 496997
1dc743
* Fri Jun 05 2009 Kai Engert <kaie@redhat.com> - 3.12.3.99.3-3
1dc743
- rebuild with higher release number for upgrade sanity
1dc743
* Fri Jun 05 2009 Kai Engert <kaie@redhat.com> - 3.12.3.99.3-2
1dc743
- updated to NSS_3_12_4_FIPS1_WITH_CKBI_1_75
1dc743
* Thu May 07 2009 Kai Engert <kaie@redhat.com> - 3.12.3-7
1dc743
- re-enable test suite
1dc743
- add patch for upstream bug 488646 and add newer paypal
1dc743
  certs in order to make the test suite pass
1dc743
* Wed May 06 2009 Kai Engert <kaie@redhat.com> - 3.12.3-4
1dc743
- add conflicts info in order to fix bug 499436
1dc743
* Tue Apr 14 2009 Kai Engert <kaie@redhat.com> - 3.12.3-3
1dc743
- ship .chk files instead of running shlibsign at install time
1dc743
- include .chk file in softokn-freebl subpackage
1dc743
- add patch for upstream nss bug 488350
1dc743
* Tue Apr 14 2009 Kai Engert <kaie@redhat.com> - 3.12.3-2
1dc743
- Update to NSS 3.12.3
1dc743
* Mon Apr 06 2009 Kai Engert <kaie@redhat.com> - 3.12.2.99.3-7
1dc743
- temporarily disable the test suite because of bug 494266
1dc743
* Mon Apr 06 2009 Kai Engert <kaie@redhat.com> - 3.12.2.99.3-6
1dc743
- fix softokn-freebl dependency for multilib (bug 494122)
1dc743
* Thu Apr 02 2009 Kai Engert <kaie@redhat.com> - 3.12.2.99.3-5
1dc743
- introduce separate nss-softokn-freebl package
1dc743
* Thu Apr 02 2009 Kai Engert <kaie@redhat.com> - 3.12.2.99.3-4
1dc743
- disable execstack when building freebl
1dc743
* Tue Mar 31 2009 Kai Engert <kaie@redhat.com> - 3.12.2.99.3-3
1dc743
- add upstream patch to fix bug 483855
1dc743
* Tue Mar 31 2009 Kai Engert <kaie@redhat.com> - 3.12.2.99.3-2
1dc743
- build nspr-less freebl library
1dc743
* Tue Mar 31 2009 Kai Engert <kaie@redhat.com> - 3.12.2.99.3-1
1dc743
- Update to NSS_3_12_3_BETA4
1dc743
1dc743
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12.2.0-4
1dc743
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1dc743
1dc743
* Wed Oct 22 2008 Kai Engert <kaie@redhat.com> - 3.12.2.0-3
1dc743
- update to NSS_3_12_2_RC1
1dc743
- use system zlib
1dc743
* Tue Sep 30 2008 Dennis Gilmore <dennis@ausil.us> - 3.12.1.1-4
1dc743
- add sparc64 to the list of 64 bit arches
1dc743
1dc743
* Wed Sep 24 2008 Kai Engert <kaie@redhat.com> - 3.12.1.1-3
1dc743
- bug 456847, move pkgconfig requirement to devel package
1dc743
* Fri Sep 05 2008 Kai Engert <kengert@redhat.com> - 3.12.1.1-2
1dc743
- Update to NSS_3_12_1_RC2
1dc743
* Fri Aug 22 2008 Kai Engert <kaie@redhat.com> - 3.12.1.0-2
1dc743
- NSS 3.12.1 RC1
1dc743
* Fri Aug 15 2008 Kai Engert <kaie@redhat.com> - 3.12.0.3-7
1dc743
- fix bug bug 429175 in libpem module
1dc743
* Tue Aug 05 2008 Kai Engert <kengert@redhat.com> - 3.12.0.3-6
1dc743
- bug 456847, add Requires: pkgconfig
1dc743
* Tue Jun 24 2008 Kai Engert <kengert@redhat.com> - 3.12.0.3-3
1dc743
- nss package should own /etc/prelink.conf.d folder, rhbz#452062
1dc743
- use upstream patch to fix test suite abort
1dc743
* Mon Jun 02 2008 Kai Engert <kengert@redhat.com> - 3.12.0.3-2
1dc743
- Update to NSS_3_12_RC4
1dc743
* Mon Apr 14 2008 Kai Engert <kengert@redhat.com> - 3.12.0.1-1
1dc743
- Update to NSS_3_12_RC2
1dc743
* Thu Mar 20 2008 Jesse Keating <jkeating@redhat.com> - 3.11.99.5-2
1dc743
- Zapping old Obsoletes/Provides.  No longer needed, causes multilib headache.
1dc743
* Mon Mar 17 2008 Kai Engert <kengert@redhat.com> - 3.11.99.5-1
1dc743
- Update to NSS_3_12_BETA3
1dc743
* Fri Feb 22 2008 Kai Engert <kengert@redhat.com> - 3.11.99.4-1
1dc743
- NSS 3.12 Beta 2
1dc743
- Use /usr/lib{64} as devel libdir, create symbolic links.
1dc743
* Sat Feb 16 2008 Kai Engert <kengert@redhat.com> - 3.11.99.3-6
1dc743
- Apply upstream patch for bug 417664, enable test suite on pcc.
1dc743
* Fri Feb 15 2008 Kai Engert <kengert@redhat.com> - 3.11.99.3-5
1dc743
- Support concurrent runs of the test suite on a single build host.
1dc743
* Thu Feb 14 2008 Kai Engert <kengert@redhat.com> - 3.11.99.3-4
1dc743
- disable test suite on ppc
1dc743
* Thu Feb 14 2008 Kai Engert <kengert@redhat.com> - 3.11.99.3-3
1dc743
- disable test suite on ppc64
1dc743
1dc743
* Thu Feb 14 2008 Kai Engert <kengert@redhat.com> - 3.11.99.3-2
1dc743
- Build against gcc 4.3.0, use workaround for bug 432146
1dc743
- Run the test suite after the build and abort on failures.
1dc743
1dc743
* Thu Jan 24 2008 Kai Engert <kengert@redhat.com> - 3.11.99.3-1
1dc743
* NSS 3.12 Beta 1
1dc743
1dc743
* Mon Jan 07 2008 Kai Engert <kengert@redhat.com> - 3.11.99.2b-3
1dc743
- move .so files to /lib
1dc743
1dc743
* Wed Dec 12 2007 Kai Engert <kengert@redhat.com> - 3.11.99.2b-2
1dc743
- NSS 3.12 alpha 2b
1dc743
1dc743
* Mon Dec 03 2007 Kai Engert <kengert@redhat.com> - 3.11.99.2-2
1dc743
- upstream patches to avoid calling netstat for random data
1dc743
1dc743
* Wed Nov 07 2007 Kai Engert <kengert@redhat.com> - 3.11.99.2-1
1dc743
- NSS 3.12 alpha 2
1dc743
1dc743
* Wed Oct 10 2007 Kai Engert <kengert@redhat.com> - 3.11.7-10
1dc743
- Add /etc/prelink.conf.d/nss-prelink.conf in order to blacklist
1dc743
  our signed libraries and protect them from modification.
1dc743
1dc743
* Thu Sep 06 2007 Rob Crittenden <rcritten@redhat.com> - 3.11.7-9
1dc743
- Fix off-by-one error in the PEM module
1dc743
1dc743
* Thu Sep 06 2007 Kai Engert <kengert@redhat.com> - 3.11.7-8
1dc743
- fix a C++ mode compilation error
1dc743
1dc743
* Wed Sep 05 2007 Bob Relyea <rrelyea@redhat.com> - 3.11.7-7
1dc743
- Add 3.12 ckfw and libnsspem
1dc743
1dc743
* Tue Aug 28 2007 Kai Engert <kengert@redhat.com> - 3.11.7-6
1dc743
- Updated license tag
1dc743
1dc743
* Wed Jul 11 2007 Kai Engert <kengert@redhat.com> - 3.11.7-5
1dc743
- Ensure the workaround for mozilla bug 51429 really get's built.
1dc743
1dc743
* Mon Jun 18 2007 Kai Engert <kengert@redhat.com> - 3.11.7-4
1dc743
- Better approach to ship freebl/softokn based on 3.11.5
1dc743
- Remove link time dependency on softokn
1dc743
1dc743
* Sun Jun 10 2007 Kai Engert <kengert@redhat.com> - 3.11.7-3
1dc743
- Fix unowned directories, rhbz#233890
1dc743
1dc743
* Fri Jun 01 2007 Kai Engert <kengert@redhat.com> - 3.11.7-2
1dc743
- Update to 3.11.7, but freebl/softokn remain at 3.11.5.
1dc743
- Use a workaround to avoid mozilla bug 51429.
1dc743
1dc743
* Fri Mar 02 2007 Kai Engert <kengert@redhat.com> - 3.11.5-2
1dc743
- Fix rhbz#230545, failure to enable FIPS mode
1dc743
- Fix rhbz#220542, make NSS more tolerant of resets when in the
1dc743
  middle of prompting for a user password.
1dc743
1dc743
* Sat Feb 24 2007 Kai Engert <kengert@redhat.com> - 3.11.5-1
1dc743
- Update to 3.11.5
1dc743
- This update fixes two security vulnerabilities with SSL 2
1dc743
- Do not use -rpath link option
1dc743
- Added several unsupported tools to tools package
1dc743
1dc743
* Tue Jan  9 2007 Bob Relyea <rrelyea@redhat.com> - 3.11.4-4
1dc743
- disable ECC, cleanout dead code
1dc743
1dc743
* Tue Nov 28 2006 Kai Engert <kengert@redhat.com> - 3.11.4-1
1dc743
- Update to 3.11.4
1dc743
1dc743
* Thu Sep 14 2006 Kai Engert <kengert@redhat.com> - 3.11.3-2
1dc743
- Revert the attempt to require latest NSPR, as it is not yet available
1dc743
  in the build infrastructure.
1dc743
1dc743
* Thu Sep 14 2006 Kai Engert <kengert@redhat.com> - 3.11.3-1
1dc743
- Update to 3.11.3
1dc743
1dc743
* Thu Aug 03 2006 Kai Engert <kengert@redhat.com> - 3.11.2-2
1dc743
- Add /etc/pki/nssdb
1dc743
1dc743
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.11.2-1.1
1dc743
- rebuild
1dc743
1dc743
* Fri Jun 30 2006 Kai Engert <kengert@redhat.com> - 3.11.2-1
1dc743
- Update to 3.11.2
1dc743
- Enable executable bit on shared libs, also fixes debug info.
1dc743
1dc743
* Wed Jun 14 2006 Kai Engert <kengert@redhat.com> - 3.11.1-2
1dc743
- Enable Elliptic Curve Cryptography (ECC)
1dc743
1dc743
* Fri May 26 2006 Kai Engert <kengert@redhat.com> - 3.11.1-1
1dc743
- Update to 3.11.1
1dc743
- Include upstream patch to limit curves
1dc743
1dc743
* Wed Feb 15 2006 Kai Engert <kengert@redhat.com> - 3.11-4
1dc743
- add --noexecstack when compiling assembler on x86_64
1dc743
1dc743
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.11-3.2
1dc743
- bump again for double-long bug on ppc(64)
1dc743
1dc743
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.11-3.1
1dc743
- rebuilt for new gcc4.1 snapshot and glibc changes
1dc743
1dc743
* Thu Jan 19 2006 Ray Strode <rstrode@redhat.com> 3.11-3
1dc743
- rebuild
1dc743
1dc743
* Fri Dec 16 2005 Christopher Aillon <caillon@redhat.com> 3.11-2
1dc743
- Update file list for the devel packages
1dc743
1dc743
* Thu Dec 15 2005 Christopher Aillon <caillon@redhat.com> 3.11-1
1dc743
- Update to 3.11
1dc743
1dc743
* Thu Dec 15 2005 Christopher Aillon <caillon@redhat.com> 3.11-0.cvs.2
1dc743
- Add patch to allow building on ppc*
1dc743
- Update the pkgconfig file to Require nspr
1dc743
1dc743
* Thu Dec 15 2005 Christopher Aillon <caillon@redhat.com> 3.11-0.cvs
1dc743
- Initial import into Fedora Core, based on a CVS snapshot of
1dc743
  the NSS_3_11_RTM tag
1dc743
- Fix up the pkcs11-devel subpackage to contain the proper headers
1dc743
- Build with RPM_OPT_FLAGS
1dc743
- No need to have rpath of /usr/lib in the pc file
1dc743
1dc743
* Thu Dec 15 2005 Kai Engert <kengert@redhat.com>
1dc743
- Adressed review comments by Wan-Teh Chang, Bob Relyea,
1dc743
  Christopher Aillon.
1dc743
1dc743
* Sat Jul  9 2005 Rob Crittenden <rcritten@redhat.com> 3.10-1
1dc743
- Initial build