Compare commits
9 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
680f34f8d9 | ||
|
|
f456aade17 | ||
|
|
0593ae468b | ||
|
|
f6e3ab146a | ||
|
|
4bb29e6db0 | ||
|
|
04d62a42a1 | ||
| 3690cd7713 | |||
| c467b882d2 | |||
|
|
d5ad8a3a2f |
4 changed files with 327 additions and 205 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
xml-security-c-*.tar.gz
|
||||
xml-security-c-1.5.1.tar.gz
|
||||
/xml-security-c-1.6.0.tar.gz
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (xml-security-c-2.0.4.tar.gz) = c2a83b0415ec0a83c932bffb709beac5763e20397f3ec4dfb350a3190de878a860b75482c095b9ac1cae3bbfbcc968b2a26ea912816b0dd4456c7ea0e07f3060
|
||||
b66046f074f5483e3b0081c5303e320c xml-security-c-1.6.0.tar.gz
|
||||
|
|
|
|||
261
xml-security-c-1.6.0-CVE-2011-2516.patch
Normal file
261
xml-security-c-1.6.0-CVE-2011-2516.patch
Normal file
|
|
@ -0,0 +1,261 @@
|
|||
Index: xsec/enc/OpenSSL/OpenSSLCryptoKeyRSA.cpp
|
||||
===================================================================
|
||||
--- xsec/enc/OpenSSL/OpenSSLCryptoKeyRSA.cpp (revision 1125751)
|
||||
+++ xsec/enc/OpenSSL/OpenSSLCryptoKeyRSA.cpp (revision 1125752)
|
||||
@@ -189,21 +189,20 @@
|
||||
"OpenSSL:RSA - Attempt to validate signature with empty key");
|
||||
}
|
||||
|
||||
- unsigned char sigVal[1024];
|
||||
- int sigValLen;
|
||||
-
|
||||
- EVP_ENCODE_CTX m_dctx;
|
||||
- int rc;
|
||||
-
|
||||
- char * cleanedBase64Signature;
|
||||
+ char* cleanedBase64Signature;
|
||||
unsigned int cleanedBase64SignatureLen = 0;
|
||||
|
||||
cleanedBase64Signature =
|
||||
XSECCryptoBase64::cleanBuffer(base64Signature, sigLen, cleanedBase64SignatureLen);
|
||||
ArrayJanitor<char> j_cleanedBase64Signature(cleanedBase64Signature);
|
||||
|
||||
+ int sigValLen;
|
||||
+ unsigned char* sigVal = new unsigned char[sigLen + 1];
|
||||
+ ArrayJanitor<unsigned char> j_sigVal(sigVal);
|
||||
+
|
||||
+ EVP_ENCODE_CTX m_dctx;
|
||||
EVP_DecodeInit(&m_dctx);
|
||||
- rc = EVP_DecodeUpdate(&m_dctx,
|
||||
+ int rc = EVP_DecodeUpdate(&m_dctx,
|
||||
sigVal,
|
||||
&sigValLen,
|
||||
(unsigned char *) cleanedBase64Signature,
|
||||
Index: xsec/enc/OpenSSL/OpenSSLCryptoKeyEC.cpp
|
||||
===================================================================
|
||||
--- xsec/enc/OpenSSL/OpenSSLCryptoKeyEC.cpp (revision 1125751)
|
||||
+++ xsec/enc/OpenSSL/OpenSSLCryptoKeyEC.cpp (revision 1125752)
|
||||
@@ -158,8 +158,9 @@
|
||||
XSECCryptoBase64::cleanBuffer(base64Signature, sigLen, cleanedBase64SignatureLen);
|
||||
ArrayJanitor<char> j_cleanedBase64Signature(cleanedBase64Signature);
|
||||
|
||||
- unsigned char sigVal[512];
|
||||
int sigValLen;
|
||||
+ unsigned char* sigVal = new unsigned char[sigLen + 1];
|
||||
+ ArrayJanitor<unsigned char> j_sigVal(sigVal);
|
||||
|
||||
EVP_ENCODE_CTX m_dctx;
|
||||
EVP_DecodeInit(&m_dctx);
|
||||
@@ -237,14 +238,13 @@
|
||||
}
|
||||
|
||||
// Now turn the signature into a base64 string
|
||||
+ unsigned char* rawSigBuf = new unsigned char[(BN_num_bits(dsa_sig->r) + BN_num_bits(dsa_sig->s)) / 8];
|
||||
+ ArrayJanitor<unsigned char> j_sigbuf(rawSigBuf);
|
||||
|
||||
- unsigned char rawSigBuf[256];
|
||||
- unsigned int rawLen;
|
||||
+ unsigned int rawLen = BN_bn2bin(dsa_sig->r, rawSigBuf);
|
||||
|
||||
- rawLen = BN_bn2bin(dsa_sig->r, rawSigBuf);
|
||||
+ if (rawLen <= 0) {
|
||||
|
||||
- if (rawLen <= 0) {
|
||||
-
|
||||
throw XSECCryptoException(XSECCryptoException::ECError,
|
||||
"OpenSSL:EC - Error converting signature to raw buffer");
|
||||
|
||||
@@ -252,7 +252,7 @@
|
||||
|
||||
unsigned int rawLenS = BN_bn2bin(dsa_sig->s, (unsigned char *) &rawSigBuf[rawLen]);
|
||||
|
||||
- if (rawLenS <= 0) {
|
||||
+ if (rawLenS <= 0) {
|
||||
|
||||
throw XSECCryptoException(XSECCryptoException::ECError,
|
||||
"OpenSSL:EC - Error converting signature to raw buffer");
|
||||
Index: xsec/enc/OpenSSL/OpenSSLCryptoKeyDSA.cpp
|
||||
===================================================================
|
||||
--- xsec/enc/OpenSSL/OpenSSLCryptoKeyDSA.cpp (revision 1125751)
|
||||
+++ xsec/enc/OpenSSL/OpenSSLCryptoKeyDSA.cpp (revision 1125752)
|
||||
@@ -164,15 +164,16 @@
|
||||
"OpenSSL:DSA - Attempt to validate signature with empty key");
|
||||
}
|
||||
|
||||
- char * cleanedBase64Signature;
|
||||
+ char* cleanedBase64Signature;
|
||||
unsigned int cleanedBase64SignatureLen = 0;
|
||||
|
||||
cleanedBase64Signature =
|
||||
XSECCryptoBase64::cleanBuffer(base64Signature, sigLen, cleanedBase64SignatureLen);
|
||||
ArrayJanitor<char> j_cleanedBase64Signature(cleanedBase64Signature);
|
||||
|
||||
- unsigned char sigVal[512];
|
||||
int sigValLen;
|
||||
+ unsigned char* sigVal = new unsigned char[sigLen + 1];
|
||||
+ ArrayJanitor<unsigned char> j_sigVal(sigVal);
|
||||
|
||||
EVP_ENCODE_CTX m_dctx;
|
||||
EVP_DecodeInit(&m_dctx);
|
||||
@@ -276,11 +277,11 @@
|
||||
|
||||
// Now turn the signature into a base64 string
|
||||
|
||||
- unsigned char rawSigBuf[256];
|
||||
- unsigned int rawLen;
|
||||
+ unsigned char* rawSigBuf = new unsigned char[(BN_num_bits(dsa_sig->r) + BN_num_bits(dsa_sig->s)) / 8];
|
||||
+ ArrayJanitor<unsigned char> j_sigbuf(rawSigBuf);
|
||||
+
|
||||
+ unsigned int rawLen = BN_bn2bin(dsa_sig->r, rawSigBuf);
|
||||
|
||||
- rawLen = BN_bn2bin(dsa_sig->r, rawSigBuf);
|
||||
-
|
||||
if (rawLen <= 0) {
|
||||
|
||||
throw XSECCryptoException(XSECCryptoException::DSAError,
|
||||
Index: xsec/dsig/DSIGAlgorithmHandlerDefault.cpp
|
||||
===================================================================
|
||||
--- xsec/dsig/DSIGAlgorithmHandlerDefault.cpp (revision 1125751)
|
||||
+++ xsec/dsig/DSIGAlgorithmHandlerDefault.cpp (revision 1125752)
|
||||
@@ -45,6 +45,7 @@
|
||||
|
||||
XERCES_CPP_NAMESPACE_USE
|
||||
|
||||
+#define MAXB64BUFSIZE 2048
|
||||
|
||||
// --------------------------------------------------------------------------------
|
||||
// Some useful utility functions
|
||||
@@ -56,10 +57,10 @@
|
||||
unsigned int rawLen,
|
||||
unsigned int maxCompare = 0) {
|
||||
// Decode a base64 buffer and then compare the result to a raw buffer
|
||||
- // Compare at most maxCompare bits (if maxComare > 0)
|
||||
+ // Compare at most maxCompare bits (if maxCompare > 0)
|
||||
// Note - whilst the other parameters are bytes, maxCompare is bits
|
||||
|
||||
- unsigned char outputStr[1024];
|
||||
+ unsigned char outputStr[MAXB64BUFSIZE];
|
||||
unsigned int outputLen = 0;
|
||||
|
||||
XSECCryptoBase64 * b64 = XSECPlatformUtils::g_cryptoProvider->base64();
|
||||
@@ -74,8 +75,8 @@
|
||||
Janitor<XSECCryptoBase64> j_b64(b64);
|
||||
|
||||
b64->decodeInit();
|
||||
- outputLen = b64->decode((unsigned char *) b64Str, (unsigned int) strlen((char *) b64Str), outputStr, 1024);
|
||||
- outputLen += b64->decodeFinish(&outputStr[outputLen], 1024 - outputLen);
|
||||
+ outputLen = b64->decode((unsigned char *) b64Str, (unsigned int) strlen((char *) b64Str), outputStr, MAXB64BUFSIZE);
|
||||
+ outputLen += b64->decodeFinish(&outputStr[outputLen], MAXB64BUFSIZE - outputLen);
|
||||
|
||||
// Compare
|
||||
|
||||
@@ -147,7 +148,7 @@
|
||||
// Translate the rawbuffer (at most maxBits or rawLen - whichever is smaller)
|
||||
// to a base64 string
|
||||
|
||||
- unsigned char b64Str[1024];
|
||||
+ unsigned char b64Str[MAXB64BUFSIZE];
|
||||
unsigned int outputLen = 0;
|
||||
|
||||
XSECCryptoBase64 * b64 = XSECPlatformUtils::g_cryptoProvider->base64();
|
||||
@@ -178,8 +179,8 @@
|
||||
size = rawLen;
|
||||
|
||||
b64->encodeInit();
|
||||
- outputLen = b64->encode((unsigned char *) raw, rawLen, b64Str, 1024);
|
||||
- outputLen += b64->encodeFinish(&b64Str[outputLen], 1024 - outputLen);
|
||||
+ outputLen = b64->encode((unsigned char *) raw, rawLen, b64Str, MAXB64BUFSIZE - 1);
|
||||
+ outputLen += b64->encodeFinish(&b64Str[outputLen], MAXB64BUFSIZE - outputLen - 1);
|
||||
b64Str[outputLen] = '\0';
|
||||
|
||||
// Copy out
|
||||
@@ -383,7 +384,10 @@
|
||||
|
||||
// Now check the calculated hash
|
||||
|
||||
- char b64Buf[1024];
|
||||
+ // For now, use a fixed length buffer, but expand it,
|
||||
+ // and detect if the signature size exceeds what we can
|
||||
+ // handle.
|
||||
+ char b64Buf[MAXB64BUFSIZE];
|
||||
unsigned int b64Len;
|
||||
safeBuffer b64SB;
|
||||
|
||||
@@ -403,7 +407,7 @@
|
||||
hash,
|
||||
hashLen,
|
||||
(char *) b64Buf,
|
||||
- 1024);
|
||||
+ MAXB64BUFSIZE);
|
||||
|
||||
if (b64Len <= 0) {
|
||||
|
||||
@@ -411,7 +415,13 @@
|
||||
"Unknown error occured during a DSA Signing operation");
|
||||
|
||||
}
|
||||
+ else if (b64Len >= MAXB64BUFSIZE) {
|
||||
|
||||
+ throw XSECException(XSECException::AlgorithmMapperError,
|
||||
+ "DSA Signing operation exceeded size of buffer");
|
||||
+
|
||||
+ }
|
||||
+
|
||||
if (b64Buf[b64Len-1] == '\n')
|
||||
b64Buf[b64Len-1] = '\0';
|
||||
else
|
||||
@@ -433,7 +443,7 @@
|
||||
hash,
|
||||
hashLen,
|
||||
(char *) b64Buf,
|
||||
- 1024,
|
||||
+ MAXB64BUFSIZE,
|
||||
hm);
|
||||
|
||||
if (b64Len <= 0) {
|
||||
@@ -442,7 +452,13 @@
|
||||
"Unknown error occured during a RSA Signing operation");
|
||||
|
||||
}
|
||||
+ else if (b64Len >= MAXB64BUFSIZE) {
|
||||
|
||||
+ throw XSECException(XSECException::AlgorithmMapperError,
|
||||
+ "RSA Signing operation exceeded size of buffer");
|
||||
+
|
||||
+ }
|
||||
+
|
||||
// Clean up some "funnies" and make sure the string is NULL terminated
|
||||
|
||||
if (b64Buf[b64Len-1] == '\n')
|
||||
@@ -466,7 +482,7 @@
|
||||
hash,
|
||||
hashLen,
|
||||
(char *) b64Buf,
|
||||
- 1024);
|
||||
+ MAXB64BUFSIZE);
|
||||
|
||||
if (b64Len <= 0) {
|
||||
|
||||
@@ -474,7 +490,13 @@
|
||||
"Unknown error occured during an ECDSA Signing operation");
|
||||
|
||||
}
|
||||
+ else if (b64Len >= MAXB64BUFSIZE) {
|
||||
|
||||
+ throw XSECException(XSECException::AlgorithmMapperError,
|
||||
+ "ECDSA Signing operation exceeded size of buffer");
|
||||
+
|
||||
+ }
|
||||
+
|
||||
if (b64Buf[b64Len-1] == '\n')
|
||||
b64Buf[b64Len-1] = '\0';
|
||||
else
|
||||
@@ -504,7 +526,7 @@
|
||||
hashLen,
|
||||
outputLength);
|
||||
|
||||
- strncpy(b64Buf, (char *) b64SB.rawBuffer(), 1024);
|
||||
+ strncpy(b64Buf, (char *) b64SB.rawBuffer(), MAXB64BUFSIZE);
|
||||
break;
|
||||
|
||||
default :
|
||||
|
|
@ -1,20 +1,20 @@
|
|||
Summary: C++ Implementation of W3C security standards for XML
|
||||
Name: xml-security-c
|
||||
Version: 2.0.4
|
||||
Release: 11%{?dist}
|
||||
# Automatically converted from old format: ASL 2.0 - review is highly recommended.
|
||||
License: Apache-2.0
|
||||
URL: http://santuario.apache.org/cindex.html
|
||||
Source0: https://www.apache.org/dist/santuario/c-library/%{name}-%{version}.tar.gz
|
||||
BuildRequires: make
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libtool
|
||||
BuildRequires: openssl-devel
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: xalan-c-devel
|
||||
BuildRequires: xerces-c-devel
|
||||
Name: xml-security-c
|
||||
Version: 1.6.0
|
||||
Release: 3%{?dist}
|
||||
Summary: C++ Implementation of W3C security standards for XML
|
||||
|
||||
Group: System Environment/Libraries
|
||||
License: ASL 2.0
|
||||
URL: http://santuario.apache.org/c/
|
||||
Source: http://santuario.apache.org/dist/c-library/%{name}-%{version}.tar.gz
|
||||
Patch0: xml-security-c-1.6.0-CVE-2011-2516.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: xerces-c-devel xalan-c-devel openssl-devel
|
||||
BuildRequires: pkgconfig
|
||||
|
||||
# xerces-c-devel is not available for PPC EL6 (#699707)
|
||||
ExcludeArch: ppc ppc64
|
||||
|
||||
%description
|
||||
The xml-security-c library is a C++ implementation of the XML Digital Signature
|
||||
|
|
@ -22,219 +22,79 @@ specification. The library makes use of the Apache XML project's Xerces-C XML
|
|||
Parser and Xalan-C XSLT processor. The latter is used for processing XPath and
|
||||
XSLT transforms.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for xml-security-c
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: libstdc++-devel
|
||||
Requires: openssl-devel
|
||||
Requires: xalan-c-devel
|
||||
Requires: xerces-c-devel
|
||||
|
||||
%package devel
|
||||
Summary: Development files for xml-security-c
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: xerces-c-devel xalan-c-devel openssl-devel
|
||||
# There are a number of headers that can use NSS if HAVE_NSS is set to 1
|
||||
# Current build does not set it (configure does not even check for NSS)
|
||||
# so we do not include this dependency for now.
|
||||
# Requires: nss-devel
|
||||
|
||||
%description devel
|
||||
This package provides development files for xml-security-c, a C++ library for
|
||||
XML Digital Signatures.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
%setup -q
|
||||
%patch0 -p0
|
||||
# Remove bogus "-O2" from CXXFLAGS to avoid overriding RPM_OPT_FLAGS.
|
||||
sed -i -e 's/-O2 -DNDEBUG/-DNDEBUG/g' configure
|
||||
|
||||
%build
|
||||
autoreconf -fiv
|
||||
%configure \
|
||||
--disable-debug \
|
||||
--disable-static \
|
||||
--without-nss \
|
||||
--with-openssl \
|
||||
--with-xalan \
|
||||
%{nil}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
./xsec/xsec-xtest
|
||||
# Verify that what was compiled actually works.
|
||||
./xsec/xtest
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT CPPROG="cp -p"
|
||||
|
||||
# We do not ship .la files.
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||
|
||||
# Do not ship library test utilities. These are only needed for
|
||||
# xml-security-c developers and they should have the whole source anyway.
|
||||
rm -rf $RPM_BUILD_ROOT%{_bindir}
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files
|
||||
%{_libdir}/libxml-security-c.so.20{,.*}
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/libxml-security-c.so.*
|
||||
|
||||
|
||||
%files devel
|
||||
%license LICENSE.txt
|
||||
%doc CHANGELOG.txt NOTICE.txt
|
||||
%defattr(-,root,root,-)
|
||||
%{_includedir}/xsec
|
||||
%{_libdir}/libxml-security-c.so
|
||||
%{_libdir}/pkgconfig/xml-security-c.pc
|
||||
%exclude %{_bindir}/*
|
||||
|
||||
%doc CHANGELOG.txt LICENSE.txt NOTICE.txt INSTALL
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Fri Jun 12 2026 Yaakov Selkowitz <yselkowi@redhat.com> - 2.0.4-10
|
||||
- Rebuilt for openssl 4.0
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Fri Oct 18 2024 Pete Walter <pwalter@fedoraproject.org> - 2.0.4-6
|
||||
- Rebuild for xerces-c 3.3
|
||||
|
||||
* Wed Jul 24 2024 Miroslav Suchý <msuchy@redhat.com> - 2.0.4-5
|
||||
- convert license to SPDX
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jan 26 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 2.0.4-1
|
||||
- Update to 2.0.4
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 2.0.2-10
|
||||
- Rebuilt with OpenSSL 3.0.0
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Dec 7 18:18:40 EST 2020 Benjamin A. Beasley <code@musicinmybrain.net> - 2.0.2-7
|
||||
- Work around removed XALAN_USING_XALAN compatibility macro in xalan-c 1.12
|
||||
|
||||
* Mon Dec 7 19:42:40 CET 2020 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.0.2-6
|
||||
- Rebuilt for xalan-c 1.12.0
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Jan 30 2019 Tomasz Kłoczko <kloczek@fedoraproject.org> - 2.0.2-1
|
||||
- use %%exclude does not cause include those files into package %%files (revert last commit)
|
||||
- format text to 80 col
|
||||
- use https:// in Source0 url
|
||||
- improved BuildRequires
|
||||
|
||||
* Fri Nov 16 2018 Pete Walter <pwalter@fedoraproject.org> - 2.0.2-1
|
||||
- Update to 2.0.2
|
||||
- Remove explicit attr modes
|
||||
|
||||
* Wed Jul 18 2018 Tomasz Kłoczko <kloczek@fedoraproject.org> - 1.7.3-5
|
||||
- added /usr/bin/c++ to BuildRequires
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.3-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.3-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jan 31 2018 Tomasz Kłoczko <kloczek@fedoraproject.org> - 1.7.3-3
|
||||
- remove ldconfig scriptlets
|
||||
- more cleanups
|
||||
|
||||
* Wed Aug 30 2017 Tomasz Kłoczko <kloczek@fedoraproject.org> - 1.7.3-2
|
||||
- added patch which allows build xml-security-c against openssl 1.1
|
||||
- added ac_fixes patch: do not use sed to remove hardcoded compile
|
||||
options. Use patch because you will never know is such correction
|
||||
still needed (added autoconf, automake and libtool to BuildRequires)
|
||||
- added libstdc++-devel to BuildReqires and to devel Requires
|
||||
- add explicit all %%configure options to prevent build by mistake package
|
||||
against nss and force use openssl
|
||||
- added --disable-debug to %%configure options
|
||||
- added use %%autosetup in %%prep
|
||||
- do not waste IOs on remove not packaged files and add them %%files
|
||||
with %%exclude
|
||||
- indent and clean spec (move patch comments to the patch)
|
||||
|
||||
* Tue Aug 29 2017 Kalev Lember <klember@redhat.com> - 1.7.3-1
|
||||
- Update to 1.7.3
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Feb 02 2016 Jonathan Wakely <jwakely@redhat.com> - 1.6.1-11
|
||||
- Patched for C++11 compatibility
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.6.1-9
|
||||
- Rebuilt for GCC 5 C++11 ABI change
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri Oct 11 2013 Antti Andreimann <Antti.Andreimann@mail.ee> - 1.6.1-6
|
||||
* Wed Oct 23 2013 Antti Andreimann <Antti.Andreimann@mail.ee> - 1.6.0-3
|
||||
- Rebuild for xalan-c 110 to 111 .so bump
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
* Fri Jul 08 2011 Antti Andreimann <Antti.Andreimann@mail.ee> - 1.6.0-2
|
||||
- Backported a patch to fix CVE-2011-2516 (#719698)
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Thu Jul 7 2011 Steve Traylen <steve.traylen@cern.ch> 1.6.1-1
|
||||
- New upstream release, Correct source URL.
|
||||
|
||||
* Wed Mar 16 2011 Antti Andreimann <Antti.Andreimann@mail.ee> 1.6.0-1
|
||||
* Tue Apr 26 2011 Antti Andreimann <Antti.Andreimann@mail.ee> - 1.6.0-1
|
||||
- Do not build on PPC64 due to missing dependencies (#699707)
|
||||
- New upstream release
|
||||
|
||||
* Thu Mar 10 2011 Kalev Lember <kalev@smartlink.ee> - 1.5.1-5
|
||||
- Rebuilt with xerces-c 3.1
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Sat Feb 06 2010 steve.traylen@cern.ch - 1.5.1-3
|
||||
- Rebuild for xerces 2 to 3 .so bump
|
||||
|
||||
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.5.1-2
|
||||
- rebuilt with new openssl
|
||||
|
||||
* Tue Jul 28 2009 Antti Andreimann <Antti.Andreimann@mail.ee> 1.5.1-1
|
||||
- New upstream relase (#513078)
|
||||
- Fixes CVE-2009-0217 (#511915)
|
||||
|
|
@ -246,7 +106,7 @@ autoreconf -fiv
|
|||
- New upstream release
|
||||
|
||||
* Tue Apr 28 2009 Antti Andreimann <Antti.Andreimann@mail.ee> - 1.4.0-2
|
||||
- Execute sed magic against configure instead of configure.ac to
|
||||
- Execute sed magic against configure instead of configure.ac to
|
||||
avoid calling autotools
|
||||
- Removed build dependency on autotools.
|
||||
- Do not ship test binaries (not needed for end-users)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue