|
|
1dbc8c |
%global nspr_version 4.10.8
|
|
|
f75352 |
|
|
|
f75352 |
Summary: Network Security Services Utilities Library
|
|
|
f75352 |
Name: nss-util
|
|
|
74b2a2 |
Version: 3.19.1
|
|
|
1dbc8c |
Release: 1%{?dist}
|
|
|
f75352 |
License: MPLv2.0
|
|
|
f75352 |
URL: http://www.mozilla.org/projects/security/pki/nss/
|
|
|
f75352 |
Group: System Environment/Libraries
|
|
|
f75352 |
Requires: nspr >= %{nspr_version}
|
|
|
f75352 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
f75352 |
BuildRequires: nspr-devel >= %{nspr_version}
|
|
|
f75352 |
BuildRequires: zlib-devel
|
|
|
f75352 |
BuildRequires: pkgconfig
|
|
|
f75352 |
BuildRequires: gawk
|
|
|
f75352 |
BuildRequires: psmisc
|
|
|
f75352 |
BuildRequires: perl
|
|
|
f75352 |
|
|
|
9adeb8 |
Source0: %{name}-%{version}.tar.gz
|
|
|
9adeb8 |
# The nss-util tar ball is a subset of nss-{version}.tar.gz.
|
|
|
9adeb8 |
# We use the nss-split-util.sh script for keeping only what we need
|
|
|
9adeb8 |
# nss-util is produced via via nss-split-util.sh {version}
|
|
|
f75352 |
# Detailed Steps:
|
|
|
e03525 |
# rhpkg clone nss-util
|
|
|
f75352 |
# cd nss-util
|
|
|
f75352 |
# Make the source tarball for nss-util out of the nss one:
|
|
|
f75352 |
# sh ./nss-split-util.sh ${version}
|
|
|
9adeb8 |
# A file named ${name}-${version}.tar.gz should appear
|
|
|
f75352 |
# ready to upload to the lookaside cache.
|
|
|
f75352 |
Source1: nss-split-util.sh
|
|
|
f75352 |
Source2: nss-util.pc.in
|
|
|
f75352 |
Source3: nss-util-config.in
|
|
|
f75352 |
|
|
|
f75352 |
Patch1: build-nss-util-only.patch
|
|
|
f75352 |
Patch2: hasht-dont-include-prtypes.patch
|
|
|
90d3a5 |
Patch7: pkcs1sig-include-prtypes.patch
|
|
|
f75352 |
|
|
|
f75352 |
%description
|
|
|
f75352 |
Utilities for Network Security Services and the Softoken module
|
|
|
f75352 |
|
|
|
f75352 |
# We shouln't need to have a devel subpackage as util will be used in the
|
|
|
f75352 |
# context of nss or nss-softoken. keeping to please rpmlint.
|
|
|
f75352 |
#
|
|
|
f75352 |
%package devel
|
|
|
f75352 |
Summary: Development libraries for Network Security Services Utilities
|
|
|
f75352 |
Group: Development/Libraries
|
|
|
f75352 |
Requires: nss-util = %{version}-%{release}
|
|
|
f75352 |
Requires: nspr-devel >= %{nspr_version}
|
|
|
f75352 |
Requires: pkgconfig
|
|
|
f75352 |
|
|
|
f75352 |
%description devel
|
|
|
f75352 |
Header and library files for doing development with Network Security Services.
|
|
|
f75352 |
|
|
|
f75352 |
|
|
|
f75352 |
%prep
|
|
|
f75352 |
%setup -q
|
|
|
f75352 |
%patch1 -p0 -b .utilonly
|
|
|
f75352 |
%patch2 -p0 -b .prtypes
|
|
|
90d3a5 |
%patch7 -p0 -b .include_prtypes
|
|
|
f75352 |
|
|
|
f75352 |
|
|
|
f75352 |
%build
|
|
|
f75352 |
|
|
|
f75352 |
# Enable compiler optimizations and disable debugging code
|
|
|
f75352 |
BUILD_OPT=1
|
|
|
f75352 |
export BUILD_OPT
|
|
|
f75352 |
|
|
|
f75352 |
# Uncomment to disable optimizations
|
|
|
f75352 |
#RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed -e 's/-O2/-O0/g'`
|
|
|
f75352 |
#export RPM_OPT_FLAGS
|
|
|
f75352 |
|
|
|
f75352 |
# Generate symbolic info for debuggers
|
|
|
f75352 |
XCFLAGS=$RPM_OPT_FLAGS
|
|
|
f75352 |
export XCFLAGS
|
|
|
f75352 |
|
|
|
f75352 |
PKG_CONFIG_ALLOW_SYSTEM_LIBS=1
|
|
|
f75352 |
PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1
|
|
|
f75352 |
|
|
|
f75352 |
export PKG_CONFIG_ALLOW_SYSTEM_LIBS
|
|
|
f75352 |
export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS
|
|
|
f75352 |
|
|
|
f75352 |
NSPR_INCLUDE_DIR=`/usr/bin/pkg-config --cflags-only-I nspr | sed 's/-I//'`
|
|
|
f75352 |
NSPR_LIB_DIR=`/usr/bin/pkg-config --libs-only-L nspr | sed 's/-L//'`
|
|
|
f75352 |
|
|
|
f75352 |
export NSPR_INCLUDE_DIR
|
|
|
f75352 |
export NSPR_LIB_DIR
|
|
|
f75352 |
|
|
|
f75352 |
NSS_USE_SYSTEM_SQLITE=1
|
|
|
f75352 |
export NSS_USE_SYSTEM_SQLITE
|
|
|
f75352 |
|
|
|
f75352 |
NSS_BUILD_NSSUTIL_ONLY=1
|
|
|
f75352 |
export NSS_BUILD_NSSUTIL_ONLY
|
|
|
f75352 |
|
|
|
4bcc4b |
%if %{__isa_bits} == 64
|
|
|
f75352 |
USE_64=1
|
|
|
f75352 |
export USE_64
|
|
|
f75352 |
%endif
|
|
|
f75352 |
|
|
|
f75352 |
# make util
|
|
|
f75352 |
%{__make} -C ./nss/coreconf
|
|
|
f75352 |
%{__make} -C ./nss
|
|
|
f75352 |
|
|
|
f75352 |
# Set up our package file
|
|
|
f75352 |
%{__mkdir_p} ./dist/pkgconfig
|
|
|
f75352 |
%{__cat} %{SOURCE2} | sed -e "s,%%libdir%%,%{_libdir},g" \
|
|
|
f75352 |
-e "s,%%prefix%%,%{_prefix},g" \
|
|
|
f75352 |
-e "s,%%exec_prefix%%,%{_prefix},g" \
|
|
|
f75352 |
-e "s,%%includedir%%,%{_includedir}/nss3,g" \
|
|
|
f75352 |
-e "s,%%NSPR_VERSION%%,%{nspr_version},g" \
|
|
|
f75352 |
-e "s,%%NSSUTIL_VERSION%%,%{version},g" > \
|
|
|
f75352 |
./dist/pkgconfig/nss-util.pc
|
|
|
f75352 |
|
|
|
f75352 |
NSSUTIL_VMAJOR=`cat nss/lib/util/nssutil.h | grep "#define.*NSSUTIL_VMAJOR" | awk '{print $3}'`
|
|
|
f75352 |
NSSUTIL_VMINOR=`cat nss/lib/util/nssutil.h | grep "#define.*NSSUTIL_VMINOR" | awk '{print $3}'`
|
|
|
f75352 |
NSSUTIL_VPATCH=`cat nss/lib/util/nssutil.h | grep "#define.*NSSUTIL_VPATCH" | awk '{print $3}'`
|
|
|
f75352 |
|
|
|
9adeb8 |
export NSSUTIL_VMAJOR
|
|
|
9adeb8 |
export NSSUTIL_VMINOR
|
|
|
f75352 |
export NSSUTIL_VPATCH
|
|
|
f75352 |
|
|
|
f75352 |
%{__cat} %{SOURCE3} | sed -e "s,@libdir@,%{_libdir},g" \
|
|
|
f75352 |
-e "s,@prefix@,%{_prefix},g" \
|
|
|
f75352 |
-e "s,@exec_prefix@,%{_prefix},g" \
|
|
|
f75352 |
-e "s,@includedir@,%{_includedir}/nss3,g" \
|
|
|
f75352 |
-e "s,@MOD_MAJOR_VERSION@,$NSSUTIL_VMAJOR,g" \
|
|
|
f75352 |
-e "s,@MOD_MINOR_VERSION@,$NSSUTIL_VMINOR,g" \
|
|
|
f75352 |
-e "s,@MOD_PATCH_VERSION@,$NSSUTIL_VPATCH,g" \
|
|
|
f75352 |
> ./dist/pkgconfig/nss-util-config
|
|
|
f75352 |
|
|
|
f75352 |
chmod 755 ./dist/pkgconfig/nss-util-config
|
|
|
f75352 |
|
|
|
f75352 |
|
|
|
f75352 |
%install
|
|
|
f75352 |
|
|
|
f75352 |
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
f75352 |
|
|
|
f75352 |
# There is no make install target so we'll do it ourselves.
|
|
|
f75352 |
|
|
|
f75352 |
%{__mkdir_p} $RPM_BUILD_ROOT/%{_includedir}/nss3
|
|
|
f75352 |
%{__mkdir_p} $RPM_BUILD_ROOT/%{_includedir}/nss3/templates
|
|
|
f75352 |
%{__mkdir_p} $RPM_BUILD_ROOT/%{_libdir}
|
|
|
f75352 |
%{__mkdir_p} $RPM_BUILD_ROOT/%{_libdir}/nss3
|
|
|
f75352 |
%{__mkdir_p} $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
|
|
|
f75352 |
%{__mkdir_p} $RPM_BUILD_ROOT/%{_bindir}
|
|
|
f75352 |
|
|
|
f75352 |
for file in libnssutil3.so
|
|
|
f75352 |
do
|
|
|
f75352 |
%{__install} -p -m 755 dist/*.OBJ/lib/$file $RPM_BUILD_ROOT/%{_libdir}
|
|
|
f75352 |
done
|
|
|
f75352 |
|
|
|
f75352 |
# Copy the include files we want
|
|
|
f75352 |
# The util headers, the rest come from softokn and nss
|
|
|
f75352 |
for file in dist/public/nss/*.h
|
|
|
f75352 |
do
|
|
|
f75352 |
%{__install} -p -m 644 $file $RPM_BUILD_ROOT/%{_includedir}/nss3
|
|
|
f75352 |
done
|
|
|
f75352 |
|
|
|
f75352 |
# Copy the template files we want
|
|
|
f75352 |
for file in dist/private/nss/templates.c
|
|
|
f75352 |
do
|
|
|
f75352 |
%{__install} -p -m 644 $file $RPM_BUILD_ROOT/%{_includedir}/nss3/templates
|
|
|
f75352 |
done
|
|
|
f75352 |
|
|
|
f75352 |
# Copy the package configuration files
|
|
|
f75352 |
%{__install} -p -m 644 ./dist/pkgconfig/nss-util.pc $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/nss-util.pc
|
|
|
f75352 |
%{__install} -p -m 755 ./dist/pkgconfig/nss-util-config $RPM_BUILD_ROOT/%{_bindir}/nss-util-config
|
|
|
f75352 |
|
|
|
f75352 |
%clean
|
|
|
f75352 |
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
f75352 |
|
|
|
f75352 |
%post -p /sbin/ldconfig
|
|
|
f75352 |
|
|
|
f75352 |
%postun -p /sbin/ldconfig
|
|
|
f75352 |
|
|
|
f75352 |
%files
|
|
|
f75352 |
%defattr(-,root,root)
|
|
|
f75352 |
%{_libdir}/libnssutil3.so
|
|
|
f75352 |
|
|
|
f75352 |
%files devel
|
|
|
f75352 |
%defattr(-,root,root)
|
|
|
f75352 |
# package configuration files
|
|
|
f75352 |
%{_libdir}/pkgconfig/nss-util.pc
|
|
|
f75352 |
%{_bindir}/nss-util-config
|
|
|
f75352 |
|
|
|
f75352 |
# co-owned with nss
|
|
|
f75352 |
%dir %{_includedir}/nss3
|
|
|
f75352 |
# these are marked as public export in nss/lib/util/manifest.mk
|
|
|
f75352 |
%{_includedir}/nss3/base64.h
|
|
|
f75352 |
%{_includedir}/nss3/ciferfam.h
|
|
|
f75352 |
%{_includedir}/nss3/hasht.h
|
|
|
f75352 |
%{_includedir}/nss3/nssb64.h
|
|
|
f75352 |
%{_includedir}/nss3/nssb64t.h
|
|
|
f75352 |
%{_includedir}/nss3/nsslocks.h
|
|
|
f75352 |
%{_includedir}/nss3/nssilock.h
|
|
|
f75352 |
%{_includedir}/nss3/nssilckt.h
|
|
|
f75352 |
%{_includedir}/nss3/nssrwlk.h
|
|
|
f75352 |
%{_includedir}/nss3/nssrwlkt.h
|
|
|
f75352 |
%{_includedir}/nss3/nssutil.h
|
|
|
f75352 |
%{_includedir}/nss3/pkcs11.h
|
|
|
f75352 |
%{_includedir}/nss3/pkcs11f.h
|
|
|
f75352 |
%{_includedir}/nss3/pkcs11n.h
|
|
|
f75352 |
%{_includedir}/nss3/pkcs11p.h
|
|
|
f75352 |
%{_includedir}/nss3/pkcs11t.h
|
|
|
f75352 |
%{_includedir}/nss3/pkcs11u.h
|
|
|
90d3a5 |
%{_includedir}/nss3/pkcs1sig.h
|
|
|
f75352 |
%{_includedir}/nss3/portreg.h
|
|
|
f75352 |
%{_includedir}/nss3/secasn1.h
|
|
|
f75352 |
%{_includedir}/nss3/secasn1t.h
|
|
|
f75352 |
%{_includedir}/nss3/seccomon.h
|
|
|
f75352 |
%{_includedir}/nss3/secder.h
|
|
|
f75352 |
%{_includedir}/nss3/secdert.h
|
|
|
f75352 |
%{_includedir}/nss3/secdig.h
|
|
|
f75352 |
%{_includedir}/nss3/secdigt.h
|
|
|
f75352 |
%{_includedir}/nss3/secerr.h
|
|
|
f75352 |
%{_includedir}/nss3/secitem.h
|
|
|
f75352 |
%{_includedir}/nss3/secoid.h
|
|
|
f75352 |
%{_includedir}/nss3/secoidt.h
|
|
|
f75352 |
%{_includedir}/nss3/secport.h
|
|
|
f75352 |
%{_includedir}/nss3/utilmodt.h
|
|
|
f75352 |
%{_includedir}/nss3/utilpars.h
|
|
|
f75352 |
%{_includedir}/nss3/utilparst.h
|
|
|
f75352 |
%{_includedir}/nss3/utilrename.h
|
|
|
f75352 |
%{_includedir}/nss3/templates/templates.c
|
|
|
f75352 |
|
|
|
f75352 |
%changelog
|
|
|
74b2a2 |
* Fri Jun 05 2015 Elio Maldonado <emaldona@redhat.com> - 3.19.1-1
|
|
|
74b2a2 |
- Rebase to nss-3.19.1
|
|
|
74b2a2 |
- Resolves: Bug 1224451
|
|
|
74b2a2 |
|
|
|
1dbc8c |
* Mon Apr 13 2015 Elio Maldonado <emaldona@redhat.com> - 3.18.0-1
|
|
|
1dbc8c |
- Resolves: Bug 1211373 - [RHEL7.1] nss-util 3.18 rebase required for firefox 38 ESR
|
|
|
1dbc8c |
|
|
|
4bcc4b |
* Thu Jan 22 2015 Elio Maldonado <emaldona@redhat.com> - 3.16.2.3-2
|
|
|
4bcc4b |
- Bump the release number to be higher than the one for rhel-7.0
|
|
|
4bcc4b |
- Resolves: Bug 1158161 - Upgrade to NSS 3.16.2.3 for Firefox 31.3
|
|
|
f3356d |
|
|
|
4bcc4b |
* Thu Nov 13 2014 Elio Maldonado <emaldona@redhat.com> - 3.16.2.3-1
|
|
|
4bcc4b |
- Resolves: Bug 1158161 - Upgrade to NSS 3.16.2.3 for Firefox 31.3
|
|
|
90d3a5 |
|
|
|
4bcc4b |
* Tue Sep 23 2014 Elio Maldonado <emaldona@redhat.com> - 3.16.2-3
|
|
|
4bcc4b |
- Resolves: bug 1145434 - CVE-2014-1568
|
|
|
4bcc4b |
|
|
|
4bcc4b |
* Tue Aug 05 2014 Peter Robinson <pbrobinson@redhat.com> 3.16.2-2
|
|
|
4bcc4b |
- Generic 32/64 bit platform detection (fix ppc64le build)
|
|
|
4bcc4b |
- Resolves: Bug 1126244 - Ensure nss-util is built for 64 bit on ppc64le
|
|
|
4bcc4b |
- Fix contributed by Peter Robinson <pbrobinson@redhat.com>
|
|
|
4bcc4b |
|
|
|
4bcc4b |
* Tue Jul 08 2014 Elio Maldonado <emaldona@redhat.com> - 3.16.2-1
|
|
|
e03525 |
- Update to nss-3.16.2
|
|
|
4bcc4b |
- Resolves: Bug 1103251
|
|
|
e03525 |
|
|
|
9adeb8 |
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.15.4-2
|
|
|
9adeb8 |
- Mass rebuild 2014-01-24
|
|
|
9adeb8 |
|
|
|
9adeb8 |
* Sun Jan 19 2014 Elio Maldonado <emaldona@redhat.com> - 3.15.3-4
|
|
|
9adeb8 |
- Update to nss-3.15.4
|
|
|
9adeb8 |
- Modified the nss-split-util script to use the nss upstream pristine sources
|
|
|
9adeb8 |
- Resolves: Bug 1054457 - CVE-2013-1740 nss: false start PR_Recv information disclosure security issue [rhel-7.0]
|
|
|
9adeb8 |
|
|
|
9adeb8 |
* Thu Jan 09 2014 Elio Maldonado <emaldona@redhat.com> - 3.15.3-3
|
|
|
9adeb8 |
- Add the nss-util portion of a fix for a bug in nss and nss-util
|
|
|
9adeb8 |
- Resolves: Bug 752980 - Support ECDSA via pluggable ECC in the nss package
|
|
|
9adeb8 |
|
|
|
9adeb8 |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.15.3-2
|
|
|
9adeb8 |
- Mass rebuild 2013-12-27
|
|
|
9adeb8 |
|
|
|
9adeb8 |
* Mon Nov 25 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.3-1
|
|
|
9adeb8 |
- Update to NSS_3_15_3_RTM
|
|
|
9adeb8 |
- Resolves: Bug 1031463 - CVE-2013-5605 CVE-2013-5606 CVE-2013-1741
|
|
|
f75352 |
|
|
|
f75352 |
* Tue Aug 06 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.1-2
|
|
|
f75352 |
- Remove an obsolete script and adjust sources numbering accordingly.
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Jul 26 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.1-1
|
|
|
f75352 |
- Update to NSS_3_15_1_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Tue Jul 02 2013 Elio Maldonado <emaldona@redhat.com> - 3.15-2
|
|
|
f75352 |
- Produce source tar ball from the unstripped nss source tar ball
|
|
|
f75352 |
|
|
|
f75352 |
* Wed May 29 2013 Elio Maldonado <emaldona@redhat.com> - 3.15-1
|
|
|
f75352 |
- Update to NSS_3_15_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Apr 19 2013 Elio Maldonado <emaldona@redhat.com> - 3.15-0.1.beta1.2
|
|
|
f75352 |
- Don't include prtypes.h from hasht.t
|
|
|
f75352 |
- Resolves: rhbz#953277 - rawhide build of glibc fails due to fatal error from nss3/hasht.h
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Apr 05 2013 Elio Maldonado <emaldona@redhat.com> - 3.15.beta1-0.1.beta.1
|
|
|
f75352 |
- Update to NSS_3_15_BETA1
|
|
|
f75352 |
- Update spec file, patches, and helper scripts on account of a shallower source tree
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Feb 15 2013 Elio Maldonado <emaldona@redhat.com> - 3.14.3-1
|
|
|
f75352 |
- Update to NSS_3_14_3_RTM
|
|
|
f75352 |
- Resolves: rhbz#909782 - specfile support for AArch64
|
|
|
f75352 |
|
|
|
f75352 |
* Sat Feb 02 2013 Elio Maldonado <emaldona@redhat.com> - 3.14.2-2
|
|
|
f75352 |
- Retagging to prevent nvr update problems with f18
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Feb 01 2013 Elio Maldonado <emaldona@redhat.com> - 3.14.2-1
|
|
|
f75352 |
- Update to NSS_3_14_2_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Dec 27 2012 Elio Maldonado <emaldona@redhat.com> - 3.14.1-2
|
|
|
f75352 |
- Install templates.c in /usr/includes/nss3/templates
|
|
|
f75352 |
- Fix bogus date warnings
|
|
|
f75352 |
|
|
|
f75352 |
* Mon Dec 17 2012 Elio Maldonado <emaldona@redhat.com> - 3.14.1-1
|
|
|
f75352 |
- Update to NSS_3_14_1_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Sat Oct 27 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-2
|
|
|
f75352 |
- Update the license to MPLv2.0
|
|
|
f75352 |
|
|
|
f75352 |
* Mon Oct 22 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-1
|
|
|
f75352 |
- Update to NSS_3_14_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Oct 19 2012 Elio Maldonado <emaldona@redhat.com> - 3.14-0.1.rc1.1
|
|
|
f75352 |
- Update to NSS_3_14_RC1
|
|
|
f75352 |
- The hasht.h from now on is provided by nss-util-devel
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.5-4
|
|
|
f75352 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
f75352 |
|
|
|
f75352 |
* Wed Jun 20 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-3
|
|
|
f75352 |
- Resolves: rhbz#833529 - revert unwanted change to nss-util.pc.in
|
|
|
f75352 |
|
|
|
f75352 |
* Tue Jun 19 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-2
|
|
|
f75352 |
- Resolves: rhbz#833529 - Remove space from Libs: line in nss-util.pc.in
|
|
|
f75352 |
|
|
|
f75352 |
* Sat Jun 16 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.5-1
|
|
|
f75352 |
- Update to NSS_3_13_5_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Sun Apr 08 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.4-2
|
|
|
f75352 |
- Resolves: Bug 805716 - Library needs partial RELRO support added
|
|
|
f75352 |
- Patch coreconf/Linux.mk as done on RHEL 6.2
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Apr 06 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.4-1
|
|
|
f75352 |
- Update to NSS_3_13_4
|
|
|
f75352 |
|
|
|
f75352 |
* Sun Apr 01 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.4-0.1.beta.1
|
|
|
f75352 |
- Update to NSS_3_13_4_BETA1
|
|
|
f75352 |
- Improve steps to splitting off util from the nss
|
|
|
f75352 |
- Add executable attribute to the splitting script
|
|
|
f75352 |
|
|
|
f75352 |
* Tue Mar 27 2012 Elio Maldonado <emaldona@redhat.com> - 3.13.3-4
|
|
|
f75352 |
- Resolves: Bug 805716 - Library needs partial RELRO support added
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Mar 16 2012 Elio Maldonado Batiz <emaldona@redhat.com> - 3.13.3-3
|
|
|
f75352 |
- Update the release tag to be higher than in f16
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Mar 09 2012 Elio Maldonado Batiz <emaldona@redhat.com> - 3.13.3-2
|
|
|
f75352 |
- Require nspr 4.9
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Mar 01 2012 Elio Maldonado Batiz <emaldona@redhat.com> - 3.13.1-4
|
|
|
f75352 |
- Update to NSS_3_13_3_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.1-3
|
|
|
f75352 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
f75352 |
|
|
|
f75352 |
* Mon Nov 28 2011 Elio Maldonado <emaldona@redhat.com> - 3.13.1-2
|
|
|
f75352 |
- Fix a gnuc def typo
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Nov 03 2011 Elio Maldonado <emaldona@redhat.com> - 3.13.1-1
|
|
|
f75352 |
- Update to NSS_3_13_1_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Sat Oct 15 2011 Elio Maldonado <emaldona@redhat.com> - 3.13-1
|
|
|
f75352 |
- Update to NSS_3_13_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Oct 07 2011 Elio Maldonado <emaldona@redhat.com> - 3.13-0.1.rc0.1
|
|
|
f75352 |
- Update to NSS_3_13_RC0
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Sep 8 2011 Ville Skyttä <ville.skytta@iki.fi> - 3.12.11-2
|
|
|
f75352 |
- Avoid %%post/un shell invocations and dependencies.
|
|
|
f75352 |
|
|
|
f75352 |
* Tue Aug 09 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.11-1
|
|
|
f75352 |
- Update to NSS_3_12_11_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Fri May 06 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.10-1
|
|
|
f75352 |
- Update to NSS_3_12_10_RTM
|
|
|
f75352 |
|
|
|
f75352 |
* Mon Apr 25 2011 Elio Maldonado Batiz <emaldona@redhat.com> - 3.12.10-0.1.beta1
|
|
|
f75352 |
- Update to NSS_3_12_10_BETA1
|
|
|
f75352 |
|
|
|
f75352 |
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12.9-2
|
|
|
f75352 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
f75352 |
|
|
|
f75352 |
* Wed Jan 12 2011 Elio Maldonado <emaldona@redhat.com> - 3.12.9-1
|
|
|
f75352 |
- Update to 3.12.9
|
|
|
f75352 |
|
|
|
f75352 |
* Mon Dec 27 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.9-0.1beta2
|
|
|
f75352 |
- Rebuilt according to fedora pre-release package naming guidelines
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Dec 10 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8.99.2-1
|
|
|
f75352 |
- Update to NSS_3_12_9_BETA2
|
|
|
f75352 |
|
|
|
f75352 |
* Wed Dec 08 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8.99.1-1
|
|
|
f75352 |
- Update to NSS_3_12_9_BETA1
|
|
|
f75352 |
|
|
|
f75352 |
* Wed Sep 29 2010 jkeating - 3.12.8-2
|
|
|
f75352 |
- Rebuilt for gcc bug 634757
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Sep 23 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.8-1
|
|
|
f75352 |
- Update to 3.12.8
|
|
|
f75352 |
|
|
|
f75352 |
* Sat Sep 18 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7.99.4-1
|
|
|
f75352 |
- NSS 3.12.8 RC0
|
|
|
f75352 |
|
|
|
f75352 |
* Sat Sep 04 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7.99.3-1
|
|
|
f75352 |
- NSS 3.12.8 Beta 3
|
|
|
f75352 |
|
|
|
f75352 |
* Sun Aug 29 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7-2
|
|
|
f75352 |
- Define NSS_USE_SYSTEM_SQLITE and remove nolocalsql patch
|
|
|
f75352 |
|
|
|
f75352 |
* Mon Aug 16 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.7-1
|
|
|
f75352 |
- Update to 3.12.7
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Mar 05 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.6-1
|
|
|
f75352 |
- Update to 3.12.6
|
|
|
f75352 |
|
|
|
f75352 |
* Mon Jan 18 2010 Elio Maldonado <emaldona@redhat.com> - 3.12.5-2
|
|
|
f75352 |
- Fix in nss-util-config.in
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Dec 03 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.5-1
|
|
|
f75352 |
- Update to 3.12.5
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Sep 10 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-8
|
|
|
f75352 |
- Retagging for a chained build with nss-softokn and nss
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Sep 10 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-5
|
|
|
f75352 |
- Restoring -rpath-link to nss-util-config
|
|
|
f75352 |
|
|
|
f75352 |
* Tue Sep 08 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-4
|
|
|
f75352 |
- Installing shared libraries to %%{_libdir}
|
|
|
f75352 |
|
|
|
f75352 |
* Sat Sep 05 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-3
|
|
|
f75352 |
- Remove symbolic links to shared libraries from devel - 521155
|
|
|
f75352 |
- Apply nss-nolocalsql patch subset for nss-util
|
|
|
f75352 |
- No rpath-link in nss-util-config
|
|
|
f75352 |
|
|
|
f75352 |
* Fri Sep 04 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-2
|
|
|
f75352 |
- Retagging for a chained build
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Sep 03 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.4-1
|
|
|
f75352 |
- Update to 3.12.4
|
|
|
f75352 |
- Don't require sqlite
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Aug 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-15
|
|
|
f75352 |
- Bump the release number for a chained build of nss-util, nss-softokn and nss
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Aug 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-14
|
|
|
f75352 |
- Cleanup nss-util-config.in
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Aug 27 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-13
|
|
|
f75352 |
- nss-util-devel doesn't require nss-devel
|
|
|
f75352 |
|
|
|
f75352 |
* Wed Aug 26 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-12
|
|
|
f75352 |
- bump to unique nvr
|
|
|
f75352 |
|
|
|
f75352 |
* Wed Aug 26 2009 Elio Maldonado<emaldona@redhat.com> - 3.12.3.99.3-11
|
|
|
f75352 |
- Remove spurious executable permissions from nss-util-config
|
|
|
f75352 |
- Shorten some descriptions to keep rpmlint happy
|
|
|
f75352 |
|
|
|
f75352 |
* Mon Aug 24 2009 Dennis Gilmore <dennis@ausil.us> 3.12.3.99.3-10
|
|
|
f75352 |
- dont include the headers in nss-util only in the -devel package
|
|
|
f75352 |
- nss-util-devel Requires nss-devel since its only providing a subset of the headers.
|
|
|
f75352 |
|
|
|
f75352 |
* Thu Aug 20 2009 Dennis Gilmore <dennis@ausil.us> 3.12.3.99.3-9
|
|
|
f75352 |
- Provide nss-devel since we obsolete it
|
|
|
f75352 |
|
|
|
f75352 |
* Wed Aug 19 2009 Elio Maldonado <emaldona@redhat.com> 3.12.3.99.3-8.1
|
|
|
f75352 |
- nss-util-devel obsoletes nss-devel < 3.12.3.99.3-8
|
|
|
f75352 |
|
|
|
f75352 |
* Wed Aug 19 2009 Elio Maldonado <emaldona@redhat.com> 3.12.3.99.3-8
|
|
|
f75352 |
- Initial build
|