This commit is contained in:
parent
a93de495c1
commit
61d945dfc5
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 2 09:41:34 CEST 2009 - wr@rosenauer.org
|
||||||
|
|
||||||
|
- updated builtin root certs by updating to
|
||||||
|
NSS_3_12_3_WITH_CKBI_1_75_RTM tag which is supposed to be the
|
||||||
|
base for Firefox 3.5.0
|
||||||
|
- PreReq coreutils in the main package already as "rm" is used
|
||||||
|
in its %post script
|
||||||
|
- disable testsuite for this moment as it crashes on Factory
|
||||||
|
currently for an unknown reason
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 21 09:03:17 CEST 2009 - wr@rosenauer.org
|
Thu May 21 09:03:17 CEST 2009 - wr@rosenauer.org
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package mozilla-nss (Version 3.12.3)
|
# spec file for package mozilla-nss (Version 3.12.3)
|
||||||
#
|
#
|
||||||
|
# Copyright (c) 2006-2009 Wolfgang Rosenauer
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -28,7 +29,7 @@ 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.3
|
Version: 3.12.3
|
||||||
Release: 2
|
Release: 3
|
||||||
# bug437293
|
# bug437293
|
||||||
%ifarch ppc64
|
%ifarch ppc64
|
||||||
Obsoletes: mozilla-nss-64bit
|
Obsoletes: mozilla-nss-64bit
|
||||||
@ -58,8 +59,10 @@ Obsoletes: libnss3 <= %{version}-%{release}
|
|||||||
%define nspr_ver %(rpm -q --queryformat '%{VERSION}' mozilla-nspr)
|
%define nspr_ver %(rpm -q --queryformat '%{VERSION}' mozilla-nspr)
|
||||||
PreReq: mozilla-nspr >= %nspr_ver
|
PreReq: mozilla-nspr >= %nspr_ver
|
||||||
PreReq: libfreebl3 >= %{version}
|
PreReq: libfreebl3 >= %{version}
|
||||||
|
Requires(post): coreutils
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%define nssdbdir %{_sysconfdir}/pki/nssdb
|
%define nssdbdir %{_sysconfdir}/pki/nssdb
|
||||||
|
%define run_testsuite 0
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Network Security Services (NSS) is a set of libraries designed to
|
Network Security Services (NSS) is a set of libraries designed to
|
||||||
@ -101,10 +104,9 @@ Authors:
|
|||||||
|
|
||||||
%package tools
|
%package tools
|
||||||
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)
|
||||||
Summary: Tools for developing, debugging, and managing applications that use NSS.
|
Summary: Tools for developing, debugging, and managing applications that use NSS
|
||||||
Group: System/Management
|
Group: System/Management
|
||||||
PreReq: mozilla-nss >= %{version}
|
PreReq: mozilla-nss >= %{version}
|
||||||
Requires(post): coreutils
|
|
||||||
|
|
||||||
%description tools
|
%description tools
|
||||||
The NSS Security Tools allow developers to test, debug, and manage
|
The NSS Security Tools allow developers to test, debug, and manage
|
||||||
@ -168,6 +170,7 @@ export NSS_USE_SYSTEM_SQLITE=1
|
|||||||
MAKE_FLAGS="BUILD_OPT=1 NSS_ENABLE_ECC=1"
|
MAKE_FLAGS="BUILD_OPT=1 NSS_ENABLE_ECC=1"
|
||||||
make nss_build_all $MAKE_FLAGS
|
make nss_build_all $MAKE_FLAGS
|
||||||
# run testsuite
|
# run testsuite
|
||||||
|
%if %run_testsuite
|
||||||
export BUILD_OPT=1
|
export BUILD_OPT=1
|
||||||
export HOST="localhost"
|
export HOST="localhost"
|
||||||
export DOMSUF=" "
|
export DOMSUF=" "
|
||||||
@ -181,6 +184,7 @@ if grep "FAILED" ../../../tests_results/security/localhost.1/output.log ; then
|
|||||||
echo "Testsuite FAILED"
|
echo "Testsuite FAILED"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_libdir}/nss
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/nss
|
||||||
@ -333,6 +337,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/%{_lib}/libfreebl3.so
|
/%{_lib}/libfreebl3.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 02 2009 wr@rosenauer.org
|
||||||
|
- updated builtin root certs by updating to
|
||||||
|
NSS_3_12_3_WITH_CKBI_1_75_RTM tag which is supposed to be the
|
||||||
|
base for Firefox 3.5.0
|
||||||
|
- PreReq coreutils in the main package already as "rm" is used
|
||||||
|
in its %%post script
|
||||||
|
- disable testsuite for this moment as it crashes on Factory
|
||||||
|
currently for an unknown reason
|
||||||
* Thu May 21 2009 wr@rosenauer.org
|
* Thu May 21 2009 wr@rosenauer.org
|
||||||
- renew Paypal certs to fix testsuite errors (bmo#491163)
|
- renew Paypal certs to fix testsuite errors (bmo#491163)
|
||||||
* Mon Apr 20 2009 wr@rosenauer.org
|
* Mon Apr 20 2009 wr@rosenauer.org
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:12522e8826a93ab0a75ae8cd2371d14a442c29b508c0cbfd9bbbb9d12a5a0d8b
|
oid sha256:099ca570ae165fa5aff69fee665931a529f3a2992d7e749dfa863cce90ecae12
|
||||||
size 4057203
|
size 4100493
|
||||||
|
Loading…
Reference in New Issue
Block a user