This commit is contained in:
parent
fa20f4487f
commit
86a56ce0ce
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 4 08:46:15 CET 2009 - wr@rosenauer.org
|
||||||
|
|
||||||
|
- update to version 3.12.2 RTM (with CKBI 1.73) as in FF 3.0.6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 13 09:10:29 CET 2009 - wr@rosenauer.org
|
||||||
|
|
||||||
|
- update to version 3.12.2rc1 (as used by FF 3.0.5)
|
||||||
|
* NSS is now using system zlib (bmo#302670)
|
||||||
|
- create a system wide, sql based NSS database in /etc/pki/nssdb
|
||||||
|
(let previously created /etc/ssl/nssdb untouched)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 7 12:34:56 CET 2009 - olh@suse.de
|
Wed Jan 7 12:34:56 CET 2009 - olh@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package mozilla-nss (Version 3.12.0)
|
# spec file for package mozilla-nss (Version 3.12.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: mozilla-nss
|
Name: mozilla-nss
|
||||||
BuildRequires: gcc-c++ mozilla-nspr-devel
|
BuildRequires: gcc-c++ mozilla-nspr-devel zlib-devel
|
||||||
%if %suse_version == 1030
|
%if %suse_version == 1030
|
||||||
BuildRequires: sqlite-devel
|
BuildRequires: sqlite-devel
|
||||||
%endif
|
%endif
|
||||||
@ -27,8 +27,8 @@ BuildRequires: sqlite-devel
|
|||||||
BuildRequires: sqlite3-devel
|
BuildRequires: sqlite3-devel
|
||||||
%endif
|
%endif
|
||||||
License: GPL v2 or later; LGPL v2.1 or later; MOZILLA PUBLIC LICENSE (MPL/NPL)
|
License: GPL v2 or later; LGPL v2.1 or later; MOZILLA PUBLIC LICENSE (MPL/NPL)
|
||||||
Version: 3.12.0
|
Version: 3.12.2
|
||||||
Release: 55
|
Release: 1
|
||||||
# bug437293
|
# bug437293
|
||||||
%ifarch ppc64
|
%ifarch ppc64
|
||||||
Obsoletes: mozilla-nss-64bit
|
Obsoletes: mozilla-nss-64bit
|
||||||
@ -51,7 +51,7 @@ Provides: libnss3 = %{version}-%{release}
|
|||||||
Obsoletes: libnss3 <= %{version}-%{release}
|
Obsoletes: libnss3 <= %{version}-%{release}
|
||||||
PreReq: mozilla-nspr >= %(rpm -q --queryformat '%{VERSION}' mozilla-nspr)
|
PreReq: mozilla-nspr >= %(rpm -q --queryformat '%{VERSION}' mozilla-nspr)
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%define nssdbdir %{_sysconfdir}/ssl/nssdb
|
%define nssdbdir %{_sysconfdir}/pki/nssdb
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Network Security Services (NSS) is a set of libraries designed to
|
Network Security Services (NSS) is a set of libraries designed to
|
||||||
@ -125,7 +125,7 @@ cd mozilla
|
|||||||
cd mozilla/security/nss
|
cd mozilla/security/nss
|
||||||
export NSPR_INCLUDE_DIR=`nspr-config --includedir`
|
export NSPR_INCLUDE_DIR=`nspr-config --includedir`
|
||||||
export NSPR_LIB_DIR=`nspr-config --libdir`
|
export NSPR_LIB_DIR=`nspr-config --libdir`
|
||||||
export OPT_FLAGS="$RPM_OPT_FLAGS -g -fno-strict-aliasing"
|
export OPT_FLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
||||||
export LIBDIR=%{_libdir}
|
export LIBDIR=%{_libdir}
|
||||||
%ifarch x86_64 s390x ppc64 ia64
|
%ifarch x86_64 s390x ppc64 ia64
|
||||||
export USE_64=1
|
export USE_64=1
|
||||||
@ -143,7 +143,7 @@ export USE_IP=TRUE
|
|||||||
export IP_ADDRESS="127.0.0.1"
|
export IP_ADDRESS="127.0.0.1"
|
||||||
cd tests
|
cd tests
|
||||||
./all.sh
|
./all.sh
|
||||||
if grep "FAILED" ../../../tests_results/security/localhost.1/output.log /dev/null 2>&1 ; then
|
if grep "FAILED" ../../../tests_results/security/localhost.1/output.log ; then
|
||||||
echo "Testsuite FAILED"
|
echo "Testsuite FAILED"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@ -228,8 +228,8 @@ chmod 755 $RPM_BUILD_ROOT/%{_bindir}/nss-config
|
|||||||
if [ ! -d "%{nssdbdir}" ] ; then
|
if [ ! -d "%{nssdbdir}" ] ; then
|
||||||
mkdir -p "%{nssdbdir}"
|
mkdir -p "%{nssdbdir}"
|
||||||
fi
|
fi
|
||||||
if [ ! -f "%{nssdbdir}/secmod.db" ] ; then
|
if [ ! -f "%{nssdbdir}/pkcs11.txt" ] ; then
|
||||||
modutil -force -dbdir "%{nssdbdir}" -create
|
modutil -force -dbdir "sql:%{nssdbdir}" -create
|
||||||
chmod 644 "%{nssdbdir}"/*
|
chmod 644 "%{nssdbdir}"/*
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -253,8 +253,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_libdir}/nss/
|
%{_libdir}/nss/
|
||||||
%exclude %{_bindir}/nss-config
|
%exclude %{_bindir}/nss-config
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 04 2009 wr@rosenauer.org
|
||||||
|
- update to version 3.12.2 RTM (with CKBI 1.73) as in FF 3.0.6
|
||||||
|
* Tue Jan 13 2009 wr@rosenauer.org
|
||||||
|
- update to version 3.12.2rc1 (as used by FF 3.0.5)
|
||||||
|
* NSS is now using system zlib (bmo#302670)
|
||||||
|
- create a system wide, sql based NSS database in /etc/pki/nssdb
|
||||||
|
(let previously created /etc/ssl/nssdb untouched)
|
||||||
* Wed Jan 07 2009 olh@suse.de
|
* Wed Jan 07 2009 olh@suse.de
|
||||||
- obsolete old -XXbit packages (bnc#437293)
|
- obsolete old -XXbit packages (bnc#437293)
|
||||||
* Thu Oct 23 2008 maw@suse.de
|
* Thu Oct 23 2008 maw@suse.de
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:38994a11af935b0955ab672b50f6dbe260188762e273f31b67a355f66546e8fb
|
|
||||||
size 3972235
|
|
3
nss-3.12.2.tar.bz2
Normal file
3
nss-3.12.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0d65867cde61e7ec6ed4dcde366acf96d39bdc408e7bd81dd5bba916297595ae
|
||||||
|
size 3976689
|
@ -6,6 +6,6 @@ includedir=${prefix}/include/nss3
|
|||||||
Name: NSS
|
Name: NSS
|
||||||
Description: Network Security Services
|
Description: Network Security Services
|
||||||
Version: %VERSION%
|
Version: %VERSION%
|
||||||
Requires: nspr >= 4.7.1
|
Requires: nspr >= 4.7.2
|
||||||
Libs: -Wl,-rpath-link,${libdir} -L${libdir} -lssl3 -lsmime3 -lnss3 -lnssutil3
|
Libs: -Wl,-rpath-link,${libdir} -L${libdir} -lssl3 -lsmime3 -lnss3 -lnssutil3
|
||||||
Cflags: -I${includedir}
|
Cflags: -I${includedir}
|
||||||
|
Loading…
Reference in New Issue
Block a user