705 lines
25 KiB
RPMSpec
705 lines
25 KiB
RPMSpec
%define srcver %(echo %version | tr . _)
|
|
%define ver1 %(echo %version | cut -d. -f1)
|
|
%define ver2 %(echo %version | cut -d. -f2)
|
|
%define ver3 %(echo %version | cut -d. -f3)
|
|
%define nspr_version %(%{_bindir}/nspr-config --version)
|
|
%define with_test 0
|
|
%define with_nsspem 0
|
|
Name: libnss
|
|
Version: 3.101.1
|
|
Release: 1mamba
|
|
Summary: Network Security Services
|
|
Group: System/Libraries
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: https://firefox-source-docs.mozilla.org/security/nss/index.html
|
|
Source0: https://ftp.mozilla.org/pub/security/nss/releases/NSS_%{srcver}_RTM/src/nss-%{version}.tar.gz
|
|
Source1: nss.pc.in
|
|
Source2: nss-config.in
|
|
Source3: blank-cert8.db
|
|
Source4: blank-key3.db
|
|
Source5: blank-secmod.db
|
|
Source6: blank-cert9.db
|
|
Source7: blank-key4.db
|
|
Source8: nss-pkcs11.txt
|
|
Source9: setup-nsssysinit.sh
|
|
# from fedora
|
|
# git clone https://git.fedorahosted.org/git/nss-pem.git
|
|
# tar cjf ../SOURCES/libnss-pem-20140218.tar.bz2 nss-pem/
|
|
#%if %with_nsspem
|
|
#Source10: https://git.fedorahosted.org/git/nss-pem.git/master/nss-pem-%{version}.tar.bz2
|
|
#%endif
|
|
Patch4: libnss-3.12.9-enable-pem.patch
|
|
Patch10: libnss-3.15.1-opt_flags.patch
|
|
Patch15: libnss-3.57-standalone-1.patch
|
|
License: GPL, MPL 1.1, LGPL
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: libnspr-devel
|
|
BuildRequires: libsqlite-devel
|
|
BuildRequires: libz-devel
|
|
## AUTOBUILDREQ-END
|
|
BuildRequires: libnspr-devel >= 4.13
|
|
BuildRequires: glibc-devel >= 2.34
|
|
BuildRequires: gawk
|
|
BuildRequires: perl
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: psmisc
|
|
BuildRequires: libsqlite-devel >= 3.14.2.0
|
|
Requires: libnspr >= 4.13
|
|
Obsoletes: libmozilla-nss < 3.63
|
|
Provides: libmozilla-nss = %{?epoch:%epoch:}%{version}-%{release}
|
|
Obsoletes: libmozilla < 3.63
|
|
Conflicts: libmozilla <= 1.7.13-1
|
|
#Requires: %{name}-sysinit = %{?epoch:%epoch:}%{version}-%{release}
|
|
Provides: libnss-sysinit
|
|
Obsoletes: libnss-sysinit < 3.63
|
|
|
|
%description
|
|
Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications.
|
|
Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards.
|
|
|
|
%package tools
|
|
Summary: Tools for the Network Security Services
|
|
Group: Applications/Security
|
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|
|
|
%description tools
|
|
Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications.
|
|
Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards.
|
|
|
|
Install the nss-tools package if you need command-line tools to manipulate the NSS certificate and key database.
|
|
|
|
%package devel
|
|
Group: Development/Libraries
|
|
Summary: Static libraries and headers for %{name}
|
|
Obsoletes: libmozilla-nss-devel < 3.63
|
|
Provides: libmozilla-nss-devel = %{?epoch:%epoch:}%{version}-%{release}
|
|
Conflicts: libmozilla-devel <= 1.7.13-1
|
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|
|
|
%description devel
|
|
Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications.
|
|
Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards.
|
|
|
|
This package contains static libraries and header files need for development.
|
|
|
|
%package sysinit
|
|
Summary: System NSS Initilization
|
|
Group: System/Tools
|
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|
Requires: coreutils
|
|
Requires: sed
|
|
|
|
%description sysinit
|
|
Default Operating System module that manages applications loading NSS globally on the system. This module loads the system defined PKCS #11 modules for NSS and chains with other NSS modules to load any system or user configured modules.
|
|
|
|
%debug_package
|
|
|
|
%prep
|
|
%setup -q -n nss-%{version}
|
|
#-D -T
|
|
#:<< __EOF
|
|
%define _default_patch_fuzz 2
|
|
%if %with_nsspem
|
|
tar -xf %{SOURCE10}
|
|
mv nss-pem-%{version}/nss/lib/ckfw/pem/ nss/lib/ckfw/
|
|
%patch 4 -p3
|
|
%endif
|
|
%patch 10 -p0
|
|
%patch 15 -p1
|
|
|
|
%build
|
|
#:<< __EOF
|
|
export BUILD_OPT=1
|
|
export XCFLAGS="%{optflags}"
|
|
export PKG_CONFIG_ALLOW_SYSTEM_LIBS=1
|
|
export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1
|
|
NSPR_INCLUDE_DIR=`/usr/bin/pkg-config --cflags-only-I nspr | sed 's/-I//'`
|
|
NSPR_LIB_DIR=`/usr/bin/pkg-config --libs-only-L nspr | sed 's/-L//'`
|
|
export NSPR_INCLUDE_DIR
|
|
export NSPR_LIB_DIR
|
|
export NSS_USE_SYSTEM_SQLITE=1
|
|
export OPT_FLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
|
|
|
%make -j1 -C nss \
|
|
BUILD_OPT=1 \
|
|
NSPR_INCLUDE_DIR=%{_includedir}/nspr \
|
|
USE_SYSTEM_ZLIB=1 \
|
|
NSS_ENABLE_WERROR=0 \
|
|
ZLIB_LIBS=-lz \
|
|
%ifarch x86_64 aarch64
|
|
USE_64=1 \
|
|
%endif
|
|
%ifarch arm
|
|
OS_TEST=arm \
|
|
%endif
|
|
NSS_USE_SYSTEM_SQLITE=1
|
|
|
|
#make -C ./nss/coreconf
|
|
#make -C ./nss/lib/dbm
|
|
#make -C ./nss CORE_DEPTH=`pwd`/nss
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
sed nss/pkg/pkg-config/nss.pc.in \
|
|
-e "s,%libdir%,%{_libdir},g" \
|
|
-e "s,%prefix%,%{_prefix},g" \
|
|
-e "s,%exec_prefix%,%{_bindir},g" \
|
|
-e "s,%includedir%,%{_includedir}/nss,g" \
|
|
-e "s,%NSPR_VERSION%,%{nspr_version},g" \
|
|
-e "s,%NSS_VERSION%,%{version},g" |
|
|
install -Dm644 /dev/stdin %{buildroot}%{_libdir}/pkgconfig/nss.pc
|
|
ln -s nss.pc %{buildroot}%{_libdir}/pkgconfig/mozilla-nss.pc
|
|
|
|
sed nss/pkg/pkg-config/nss-config.in \
|
|
-e "s,%libdir%,%{_libdir},g" \
|
|
-e "s,%prefix%,%{_prefix},g" \
|
|
-e "s,%exec_prefix%,%{_bindir},g" \
|
|
-e "s,%includedir%,%{_includedir}/nss,g" \
|
|
-e "s,@MOD_MAJOR_VERSION@,%{ver1},g" \
|
|
-e "s,@MOD_MINOR_VERSION@,%{ver2},g" \
|
|
-e "s,@MOD_PATCH_VERSION@,%{ver3},g" |
|
|
install -D /dev/stdin %{buildroot}%{_bindir}/nss-config
|
|
|
|
#install -D -m644 dist/Linux*/lib/pkgconfig/nss.pc %{buildroot}%{_libdir}/pkgconfig/nss.pc
|
|
#install -D -m 644 custom_nss.pc %{buildroot}%{_libdir}/pkgconfig/nss.pc
|
|
#install -D -m 755 custom_nss-config %{buildroot}%{_bindir}/nss-config
|
|
|
|
# copy all the binary libraries
|
|
install -d -m0755 %{buildroot}%{_bindir}
|
|
for file in dist/*.OBJ/lib/*.so; do
|
|
install -m 755 $file %{buildroot}%{_libdir}
|
|
done
|
|
|
|
#% if %with_nsspem
|
|
#install -m 755 dist/*.OBJ/lib/libnsspem.so %{buildroot}%{_libdir}
|
|
#% endif
|
|
|
|
# copy alle the chk files
|
|
for file in dist/*.OBJ/lib/*.chk; do
|
|
install -m 644 $file %{buildroot}%{_libdir}
|
|
done
|
|
|
|
## install the empty NSS db files
|
|
## legacy db
|
|
#install -d %{buildroot}%{_sysconfdir}/pki/nssdb
|
|
#install -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/pki/nssdb/cert8.db
|
|
#install -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/pki/nssdb/key3.db
|
|
#install -m 644 %{SOURCE5} %{buildroot}%{_sysconfdir}/pki/nssdb/secmod.db
|
|
## shared db
|
|
#install -m 644 %{SOURCE6} %{buildroot}%{_sysconfdir}/pki/nssdb/cert9.db
|
|
#install -m 644 %{SOURCE7} %{buildroot}%{_sysconfdir}/pki/nssdb/key4.db
|
|
#install -m 644 %{SOURCE8} %{buildroot}%{_sysconfdir}/pki/nssdb/pkcs11.txt
|
|
|
|
# copy the development libraries we want
|
|
for file in libcrmf.a libnssb.a libnssckfw.a; do
|
|
install -m 644 dist/*.OBJ/lib/$file %{buildroot}%{_libdir}
|
|
done
|
|
|
|
# copy the binaries we want
|
|
for file in certutil cmsutil crlutil modutil pk12util signtool signver ssltap; do
|
|
install -m 755 dist/*.OBJ/bin/$file %{buildroot}%{_bindir}
|
|
done
|
|
|
|
# copy unsupported tools
|
|
mkdir -p %{buildroot}%{_libexecdir}/nss
|
|
for file in atob btoa derdump ocspclnt pp selfserv shlibsign strsclnt symkeyutil tstclnt vfyserv vfychain; do
|
|
install -m 755 dist/*.OBJ/bin/$file %{buildroot}%{_libexecdir}/nss
|
|
done
|
|
|
|
## pkcs11 configuration script
|
|
#mkdir -p %{buildroot}%{_sbindir}
|
|
#install -pm 755 %{SOURCE9} %{buildroot}%{_sbindir}/setup-nsssysinit.sh
|
|
|
|
# copy the include files
|
|
install -d %{buildroot}%{_includedir}/nss3
|
|
for file in dist/public/nss/*.h dist/private/nss/*.h; do
|
|
install -m 644 $file %{buildroot}%{_includedir}/nss3
|
|
done
|
|
|
|
ln -s nss3 %{buildroot}%{_includedir}/nss
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libfreebl3.so
|
|
%{_libdir}/libfreebl3.chk
|
|
%{_libdir}/libfreeblpriv3.chk
|
|
%{_libdir}/libfreeblpriv3.so
|
|
#%{_libdir}/libgtest1.so
|
|
#%{_libdir}/libgtestutil.so
|
|
%{_libdir}/libnss3.so
|
|
%{_libdir}/libnssckbi.so
|
|
%{_libdir}/libnssdbm3.so
|
|
%{_libdir}/libnssdbm3.chk
|
|
%{_libdir}/libnsssysinit.so
|
|
%{_libdir}/libnssutil3.so
|
|
%{_libdir}/libnssckbi-testlib.so
|
|
%{_libdir}/libpkcs11testmodule.so
|
|
%{_libdir}/libssl3.so
|
|
%{_libdir}/libsmime3.so
|
|
%{_libdir}/libsoftokn3.so
|
|
%{_libdir}/libsoftokn3.chk
|
|
%if %with_nsspem
|
|
%{_libdir}/libnsspem.so
|
|
%endif
|
|
|
|
%files tools
|
|
%defattr(-,root,root)
|
|
%{_bindir}/certutil
|
|
%{_bindir}/cmsutil
|
|
%{_bindir}/crlutil
|
|
%{_bindir}/modutil
|
|
%{_bindir}/pk12util
|
|
%{_bindir}/signtool
|
|
%{_bindir}/signver
|
|
%{_bindir}/ssltap
|
|
%dir %{_libexecdir}/nss
|
|
%{_libexecdir}/nss/*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_bindir}/nss-config
|
|
%{_libdir}/libcrmf.a
|
|
%{_libdir}/libnssb.a
|
|
%{_libdir}/libnssckfw.a
|
|
%{_libdir}/pkgconfig/nss.pc
|
|
%{_libdir}/pkgconfig/mozilla-nss.pc
|
|
%{_includedir}/nss
|
|
%dir %{_includedir}/nss3
|
|
%{_includedir}/nss3/*
|
|
|
|
%changelog
|
|
* Sat Jun 29 2024 Automatic Build System <autodist@openmamba.org> 3.101.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Jun 08 2024 Automatic Build System <autodist@openmamba.org> 3.101-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu May 09 2024 Automatic Build System <autodist@openmamba.org> 3.100-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Mar 17 2024 Automatic Build System <autodist@openmamba.org> 3.99-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Feb 17 2024 Automatic Build System <autodist@openmamba.org> 3.98-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Jan 22 2024 Automatic Build System <autodist@openmamba.org> 3.97-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Dec 19 2023 Automatic Build System <autodist@mambasoft.it> 3.96.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Dec 16 2023 Automatic Build System <autodist@mambasoft.it> 3.96-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Nov 27 2023 Automatic Build System <autodist@mambasoft.it> 3.95-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Oct 03 2023 Automatic Build System <autodist@mambasoft.it> 3.94-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Aug 31 2023 Automatic Build System <autodist@mambasoft.it> 3.93-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Jul 28 2023 Automatic Build System <autodist@mambasoft.it> 3.92-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Jun 30 2023 Automatic Build System <autodist@mambasoft.it> 3.91-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Jun 05 2023 Automatic Build System <autodist@mambasoft.it> 3.90-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat May 06 2023 Automatic Build System <autodist@mambasoft.it> 3.89.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Mar 10 2023 Automatic Build System <autodist@mambasoft.it> 3.89-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Feb 10 2023 Automatic Build System <autodist@mambasoft.it> 3.88.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Jan 06 2023 Automatic Build System <autodist@mambasoft.it> 3.87-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Dec 09 2022 Automatic Build System <autodist@mambasoft.it> 3.86-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Nov 11 2022 Automatic Build System <autodist@mambasoft.it> 3.85-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Oct 14 2022 Automatic Build System <autodist@mambasoft.it> 3.84-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Sep 16 2022 Automatic Build System <autodist@mambasoft.it> 3.83-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Aug 20 2022 Automatic Build System <autodist@mambasoft.it> 3.82-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Jul 22 2022 Automatic Build System <autodist@mambasoft.it> 3.81-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Jun 24 2022 Automatic Build System <autodist@mambasoft.it> 3.80-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Jun 01 2022 Automatic Build System <autodist@mambasoft.it> 3.79-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Apr 29 2022 Automatic Build System <autodist@mambasoft.it> 3.78-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Apr 01 2022 Automatic Build System <autodist@mambasoft.it> 3.77-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Mar 29 2022 Automatic Build System <autodist@mambasoft.it> 3.76.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Mar 04 2022 Automatic Build System <autodist@mambasoft.it> 3.76-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Feb 05 2022 Automatic Build System <autodist@mambasoft.it> 3.75-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Jan 07 2022 Automatic Build System <autodist@mambasoft.it> 3.74-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Dec 16 2021 Automatic Build System <autodist@mambasoft.it> 3.73.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Dec 01 2021 Automatic Build System <autodist@mambasoft.it> 3.73-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Oct 28 2021 Automatic Build System <autodist@mambasoft.it> 3.72-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Oct 01 2021 Automatic Build System <autodist@mambasoft.it> 3.71-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Sep 06 2021 Automatic Build System <autodist@mambasoft.it> 3.70-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Aug 31 2021 Automatic Build System <autodist@mambasoft.it> 3.69.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Aug 16 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 3.69-2mamba
|
|
- rebuilt with glibc 2.34
|
|
|
|
* Fri Aug 06 2021 Automatic Build System <autodist@mambasoft.it> 3.69-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Jul 12 2021 Automatic Build System <autodist@mambasoft.it> 3.68-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Jun 15 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 3.67-1mamba
|
|
- update to 3.67
|
|
|
|
* Fri May 28 2021 Automatic Build System <autodist@mambasoft.it> 3.66-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat May 15 2021 Automatic Build System <autodist@mambasoft.it> 3.65-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Apr 16 2021 Automatic Build System <autodist@mambasoft.it> 3.64-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Mar 22 2021 Automatic Build System <autodist@mambasoft.it> 3.63-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Feb 20 2021 Automatic Build System <autodist@mambasoft.it> 3.62-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Jan 24 2021 Automatic Build System <autodist@mambasoft.it> 3.61-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Jan 08 2021 Automatic Build System <autodist@mambasoft.it> 3.60.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Dec 14 2020 Automatic Build System <autodist@mambasoft.it> 3.60-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Nov 16 2020 Automatic Build System <autodist@mambasoft.it> 3.59-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Oct 20 2020 Automatic Build System <autodist@mambasoft.it> 3.58-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Oct 10 2020 Automatic Build System <autodist@mambasoft.it> 3.57-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Aug 06 2020 Automatic Build System <autodist@mambasoft.it> 3.55-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed May 20 2020 Automatic Build System <autodist@mambasoft.it> 3.52.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon May 04 2020 Automatic Build System <autodist@mambasoft.it> 3.52-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Apr 13 2020 Automatic Build System <autodist@mambasoft.it> 3.51.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Mar 08 2020 Automatic Build System <autodist@mambasoft.it> 3.51-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Feb 09 2020 Automatic Build System <autodist@mambasoft.it> 3.50-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Jan 25 2020 Automatic Build System <autodist@mambasoft.it> 3.49.2-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Jan 18 2020 Automatic Build System <autodist@mambasoft.it> 3.49.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Jan 08 2020 Automatic Build System <autodist@mambasoft.it> 3.49-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Dec 11 2019 Automatic Build System <autodist@mambasoft.it> 3.48-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Nov 21 2019 Automatic Build System <autodist@mambasoft.it> 3.47.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Oct 27 2019 Automatic Build System <autodist@mambasoft.it> 3.47-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Oct 04 2019 Automatic Build System <autodist@mambasoft.it> 3.46.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Sep 10 2019 Automatic Build System <autodist@mambasoft.it> 3.46-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Jul 11 2019 Automatic Build System <autodist@mambasoft.it> 3.45-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Jun 24 2019 Automatic Build System <autodist@mambasoft.it> 3.44.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed May 15 2019 Automatic Build System <autodist@mambasoft.it> 3.44-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Mar 25 2019 Automatic Build System <autodist@mambasoft.it> 3.43-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Feb 03 2019 Automatic Build System <autodist@mambasoft.it> 3.42.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Jan 30 2019 Automatic Build System <autodist@mambasoft.it> 3.42-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Jan 29 2019 Automatic Build System <autodist@mambasoft.it> 3.41.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Dec 12 2018 Automatic Build System <autodist@mambasoft.it> 3.41-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Dec 07 2018 Automatic Build System <autodist@mambasoft.it> 3.40.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Oct 31 2018 Automatic Build System <autodist@mambasoft.it> 3.40-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Sep 06 2018 Automatic Build System <autodist@mambasoft.it> 3.39-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Jun 27 2018 Automatic Build System <autodist@mambasoft.it> 3.38-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Jun 11 2018 Automatic Build System <autodist@mambasoft.it> 3.37.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri May 25 2018 Automatic Build System <autodist@mambasoft.it> 3.37.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri May 18 2018 Automatic Build System <autodist@mambasoft.it> 3.37-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Apr 19 2018 Automatic Build System <autodist@mambasoft.it> 3.36.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Mar 12 2018 Automatic Build System <autodist@mambasoft.it> 3.36-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Jan 22 2018 Automatic Build System <autodist@mambasoft.it> 3.35-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Dec 17 2017 Silvan Calarco <silvan.calarco@mambasoft.it> 3.34.1-1mamba
|
|
- update to 3.34.1
|
|
|
|
* Tue Dec 06 2016 Automatic Build System <autodist@mambasoft.it> 3.27.2-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Oct 08 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 3.27.1-3mamba
|
|
- remove redhat coming possibly obsolete libnss-sysinit; install all libraries
|
|
|
|
* Sat Oct 08 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 3.27.1-2mamba
|
|
- rebuilt with libsqlite 3.14.2.0
|
|
|
|
* Fri Oct 07 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 3.27.1-1mamba
|
|
- update to 3.27.1
|
|
|
|
* Fri Oct 07 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 3.26-2mamba
|
|
- rebuilt with libnspr 4.13
|
|
|
|
* Fri Oct 07 2016 Automatic Build System <autodist@mambasoft.it> 3.26-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Jul 06 2016 Automatic Build System <autodist@mambasoft.it> 3.25-2mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Jul 05 2016 Automatic Build System <autodist@mambasoft.it> 3.25-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Jun 08 2016 Automatic Build System <autodist@mambasoft.it> 3.24-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu May 05 2016 Automatic Build System <autodist@mambasoft.it> 3.23-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Feb 28 2016 Automatic Build System <autodist@mambasoft.it> 3.22.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Feb 19 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 3.22-1mamba
|
|
- update to 3.22
|
|
|
|
* Wed Nov 04 2015 Automatic Build System <autodist@mambasoft.it> 3.20.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Oct 10 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 3.20-1mamba
|
|
- update to 3.20
|
|
|
|
* Fri Jun 26 2015 Automatic Build System <autodist@mambasoft.it> 3.19.2-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Jun 11 2015 Automatic Build System <autodist@mambasoft.it> 3.19.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun May 17 2015 Automatic Build System <autodist@mambasoft.it> 3.18.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Mar 21 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 3.18-1mamba
|
|
- update to 3.18
|
|
- fix version in /usr/bin/nss-config
|
|
|
|
* Tue Feb 17 2015 Automatic Build System <autodist@mambasoft.it> 3.17.4-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Dec 11 2014 Automatic Build System <autodist@mambasoft.it> 3.17.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Nov 14 2014 Automatic Build System <autodist@mambasoft.it> 3.17.2-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Oct 02 2014 Automatic Build System <autodist@mambasoft.it> 3.17.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Sep 23 2014 Automatic Build System <autodist@mambasoft.it> 3.17-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Jul 22 2014 Automatic Build System <autodist@mambasoft.it> 3.16.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat May 10 2014 Automatic Build System <autodist@mambasoft.it> 3.16.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Apr 09 2014 Automatic Build System <autodist@mambasoft.it> 3.16-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Mar 30 2014 Automatic Build System <autodist@mambasoft.it> 3.15.5-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Feb 18 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.15.4-1mamba
|
|
- update to 3.15.4
|
|
|
|
* Tue Dec 10 2013 Automatic Build System <autodist@mambasoft.it> 3.15.3.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Nov 14 2013 Automatic Build System <autodist@mambasoft.it> 3.15.3-2mamba
|
|
- rebuilt after breaking and fixing rpm
|
|
|
|
* Wed Nov 13 2013 Automatic Build System <autodist@mambasoft.it> 3.15.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Oct 07 2013 Automatic Build System <autodist@mambasoft.it> 3.15.2-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Aug 30 2013 Automatic Build System <autodist@mambasoft.it> 3.15.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Apr 07 2013 Automatic Build System <autodist@mambasoft.it> 3.14.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Dec 28 2012 Automatic Build System <autodist@mambasoft.it> 3.14.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Dec 01 2012 Automatic Build System <autodist@mambasoft.it> 3.14-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Oct 10 2012 Automatic Build System <autodist@mambasoft.it> 3.13.6-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Mar 12 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 3.13.3-1mamba
|
|
- update to 3.13.3
|
|
|
|
* Fri Jan 06 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 3.13.1-1mamba
|
|
- update to 3.13.1
|
|
|
|
* Tue Aug 02 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 3.12.10-1mamba
|
|
- update to 3.12.10
|
|
|
|
* Sat Apr 09 2011 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 3.12.9-3mamba
|
|
- rebuilt with libsqlite 3.7.3-2
|
|
|
|
* Sun Mar 20 2011 gil <puntogil@libero.it> 3.12.9-2mamba
|
|
- ... add a changelog entry
|
|
|
|
* Tue Jan 25 2011 gil <puntogil@libero.it> 3.12.9-1mamba
|
|
- update to 3.12.9
|
|
|
|
* Mon Nov 29 2010 gil <puntogil@libero.it> 3.12.8-1mamba
|
|
- update to 3.12.8
|
|
|
|
* Tue Sep 14 2010 gil <puntogil@libero.it> 3.12.7-1mamba
|
|
- update to 3.12.7
|
|
|
|
* Thu Jul 22 2010 gil <puntogil@libero.it> 3.12.6-2mamba
|
|
- rebuil with libnspr 4.8.6; libsqlite 3.7.0
|
|
|
|
* Fri Apr 02 2010 gil <puntogil@libero.it> 3.12.6-1mamba
|
|
- update to 3.12.6
|
|
|
|
* Sat Dec 12 2009 gil <puntogil@libero.it> 3.12.4-1mamba
|
|
- update to 3.12.4
|
|
|
|
* Wed Jul 01 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 3.12.3-1mamba
|
|
- update to 3.12.3
|
|
|
|
* Mon Jun 23 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 3.12-2mamba
|
|
- add patch to use system libsqlite
|
|
- development nss-config and nss.pc files updated for linking with libnssutil3
|
|
|
|
* Sat Jun 21 2008 gil <puntogil@libero.it> 3.12-1mamba
|
|
- update to 3.12
|
|
|
|
* Sat May 31 2008 gil <puntogil@libero.it> 3.11.9-1mamba
|
|
- update to 3.11.9
|
|
|
|
* Wed Jan 31 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 3.11.4-3qilnx
|
|
- obsolete libmozilla
|
|
|
|
* Wed Jan 24 2007 Davide Madrisan <davide.madrisan@qilinux.it> 3.11.4-2qilnx
|
|
- conflicts libmozilla
|
|
|
|
* Tue Jan 16 2007 Davide Madrisan <davide.madrisan@qilinux.it> 3.11.4-1qilnx
|
|
- package created by autospec
|