Compare commits

...
Sign in to create a new pull request.

24 commits

Author SHA1 Message Date
Miro Hrončok
479021e915 Orphaned for 6+ weeks 2019-09-11 12:54:46 +02:00
Fedora Release Engineering
e8569087a2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-07-27 04:19:09 +00:00
Fedora Release Engineering
48f9a25385 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-02-03 12:31:33 +00:00
Fedora Release Engineering
2826c11a49 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-07-14 09:22:27 +00:00
Fedora Release Engineering
883fb79f3b - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-02-09 21:45:33 +00:00
Fedora Release Engineering
3f86546a22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild 2017-07-27 22:12:14 +00:00
Fedora Release Engineering
31996fbb5c - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild 2017-02-11 17:56:18 +00:00
gil
e2ffd59794 rebuilt with bouncycastle 1.54 2016-04-08 19:29:03 +02:00
gil
2f31edc2cb Update to 2.0.6 2016-03-26 18:50:14 +01:00
gil
dd3ae590df disable test suite 2016-02-05 18:33:58 +01:00
Fedora Release Engineering
352e1d70e1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild 2016-02-05 03:34:54 +00:00
Dennis Gilmore
d705b1ccdd - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild 2015-06-19 04:07:22 +00:00
gil
4293eddf0f fix setup 2015-04-22 11:58:41 +02:00
gil
850ec3617f fix Source0 archive 2015-04-22 11:54:02 +02:00
gil
9c23586ec7 Update to 2.0.4 2015-04-22 11:46:13 +02:00
gil
f60f7fd8d1 update to 1.5.8 2015-02-14 17:19:33 +01:00
gil
1db11755c3 update to 1.5.7 (rhbz#1045257,1157992. security fix for CVE-2013-4517) 2014-10-28 10:39:00 +01:00
gil
2e416cee0e update to 1.5.7 (rhbz#1045257,1157992. security fix for CVE-2013-4517) 2014-10-28 10:38:03 +01:00
gil
39d887553d update to 1.5.7 (rhbz#1045257,1157992. security fix for CVE-2013-4517) 2014-10-28 10:31:54 +01:00
gil
bfac093024 update to 1.5.7 (rhbz#1045257,1157992. security fix for CVE-2013-4517) 2014-10-28 10:29:46 +01:00
gil
c6e4f11f91 fix test failures 2014-06-10 04:26:46 +02:00
gil
f808c95ed6 fix test failures 2014-06-10 04:18:35 +02:00
gil
738f6b1717 fix BR list 2014-06-10 02:41:42 +02:00
Dennis Gilmore
fe250e1b22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 2014-06-08 01:03:22 -05:00
5 changed files with 1 additions and 256 deletions

8
.gitignore vendored
View file

@ -1,8 +0,0 @@
/xml-security-src-1_4_5.zip
/xml-security-build_xml.patch
/xml-security-disable-test-fail.patch
/xml-security-notest.patch
/xmlsec-1.4.5.pom
/xml-security-component-info.xml
/xml-security-src-1_5_3.zip
/xml-security-src-1_5_5.zip

1
dead.package Normal file
View file

@ -0,0 +1 @@
Orphaned for 6+ weeks

View file

@ -1 +0,0 @@
70dffa3931029f155fc7be69aaec5cb7 xml-security-src-1_5_5.zip

View file

@ -1,35 +0,0 @@
diff --git a/src/test/java/org/apache/xml/security/test/utils/OldApiTest.java b/src/test/java/org/apache/xml/security/test/utils/OldApiTest.java
index 2499a28..84ff7ab 100644
--- a/src/test/java/org/apache/xml/security/test/utils/OldApiTest.java
+++ b/src/test/java/org/apache/xml/security/test/utils/OldApiTest.java
@@ -149,30 +149,4 @@ public class OldApiTest extends org.junit.Assert {
resolver1.resolve(uri1, "test1");
}
- @org.junit.Test
- public void testOldKeyResolverSpi() throws Exception {
- KeyResolver.register(OldKeyResolverSpi.class.getName(), true);
- Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
- Element el = ((Element)doc.createElement("test"));
- PublicKey pk = KeyResolver.getPublicKey(el, "!!!testUri", null);
- assertNotNull(pk);
- assertTrue(pk instanceof PublicKeyMock);
- assertEquals(2, OldKeyResolverSpi.number);
- PublicKey pk1 = KeyResolver.getPublicKey(el, "!!!testUri", null);
- assertNotSame(pk, pk1);
- assertEquals(3, OldKeyResolverSpi.number);
- }
-
- @org.junit.Test
- public void testOldKeyResolverSpiInKeyInfo() throws Exception {
- Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
- Element el = (Element)doc.createElementNS("http://www.w3.org/2000/09/xmldsig#","KeyInfo");
- el.appendChild((Element)doc.createElementNS("http://www.w3.org/2000/09/xmldsig#","KeyInfo"));
- KeyInfo ki = new KeyInfo(el,"!!!testUri");
- PublicKey pk = new PublicKeyMock();
- ki.registerInternalKeyResolver(new OldKeyResolverNoPublicConsSpi(pk));
- assertNotNull(ki.getPublicKey());
-
- }
-
}

View file

@ -1,212 +0,0 @@
# Copyright (c) 2000-2009, JPackage Project
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the
# distribution.
# 3. Neither the name of the JPackage Project nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
%global oname xmlsec
Name: xml-security
Version: 1.5.5
Release: 1%{?dist}
Epoch: 0
Summary: Implementation of W3C security standards for XML
License: ASL 2.0
URL: http://santuario.apache.org/
Source0: http://archive.apache.org/dist/santuario/java-library/1_5_5/xml-security-src-1_5_5.zip
# Certain tests fail with new JUnit
Patch0: %{name}-removed-tests.patch
BuildRequires: java-devel
BuildRequires: maven-local
BuildRequires: maven-shared
BuildRequires: maven-release-plugin
BuildRequires: maven-surefire-provider-junit4
BuildRequires: junit
BuildRequires: apache-commons-logging
BuildRequires: log4j
BuildRequires: xalan-j2
BuildRequires: xerces-j2
BuildRequires: xml-commons-apis
BuildRequires: bouncycastle
BuildArch: noarch
%description
The XML Security project is aimed at providing implementation
of security standards for XML. Currently the focus is on the
W3C standards :
- XML-Signature Syntax and Processing; and
- XML Encryption Syntax and Processing.
%package javadoc
Summary: Javadoc for %{name}
%description javadoc
Javadoc for %{name}.
%package demo
Summary: Samples for %{name}
%description demo
Samples for %{name}.
%prep
%setup -q -n xml-security-1_5_5
%patch0 -p1
sed -i "s|bcprov-jdk15on|bcprov-jdk16|" pom.xml
%build
%mvn_file :%{oname} %{name} %{oname}
%mvn_build
%install
%mvn_install
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}
cp -pr samples/* $RPM_BUILD_ROOT%{_datadir}/%{name}
%files -f .mfiles
%doc LICENSE NOTICE
%files javadoc -f .mfiles-javadoc
%doc LICENSE NOTICE
%files demo
%doc LICENSE NOTICE
%{_datadir}/%{name}
%changelog
* Sun Oct 27 2013 gil cattaneo <puntogil@libero.it> 0:1.5.5-1
- update to 1.5.5
* Sun Aug 18 2013 gil cattaneo <puntogil@libero.it> 0:1.5.3-7
- built with XMvn
- fix BR list
- adapt to current guideline
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.5.3-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Fri Apr 05 2013 Tomas Radej <tradej@redhat.com> - 0:1.5.3-5
- Removed failing tests due to new JUnit
* Fri Feb 22 2013 Andy Grimm <agrimm@gmail.com> 0:1.5.3-4
- Add maven-shared to BuildRequires (RHBZ#914587)
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.5.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 0:1.5.3-2
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
- Replace maven BuildRequires with maven-local
* Thu Oct 18 2012 Marek Goldmann <mgoldman@redhat.com> - 0:1.5.3-1
- Upstream release 1.5.3
- Change build system to Maven
- Cleanups
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.4.5-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.4.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Tue Sep 20 2011 Andy Grimm <agrimm@gmail.com> 0:1.4.5-2
- Fixes for package review
* Wed Sep 07 2011 Andy Grimm <agrimm@gmail.com> 0:1.4.5-1
- Follow Fedora guidelines
* Sat Jan 09 2010 Will Tatam <will.tatam@red61.com> 1.4.2-5
- Auto rebuild for JPackage 6 in centos5 mock
* Mon Aug 17 2009 David Walluck <dwalluck@redhat.com> 0:1.4.2-4
- remove unneeded bouncycastle
* Sat Aug 15 2009 Ralph Apel <r.apel@r-apel.de> 0:1.4.2-3
- Add pom and depmap frag
* Tue May 26 2009 David Walluck <dwalluck@redhat.com> 0:1.4.2-2
- fix log4j location in patch
* Tue May 26 2009 David Walluck <dwalluck@redhat.com> 0:1.4.2-1
- 1.4.2
* Mon Jan 12 2009 David Walluck <dwalluck@redhat.com> 0:1.3.0-3
- add compiled samples jar to demo subpackage
- specify xml-commons-jaxp-1.3-apis explicitly
- rename repolib directory for AS5
- fix repolib permissions
- fix repolib file ownership
* Wed May 28 2008 David Walluck <dwalluck@redhat.com> 0:1.3.0-2.jpp5
- don't remove buildroot in %%prep
- don't use absolute path for %%doc
- fix License
* Mon Apr 21 2008 David Walluck <dwalluck@redhat.com> 0:1.3.0-1jpp.ep1.3
- unpatched version requires ant-nodeps
- fix tests
- remove javadoc scriptlets
- remove %%{buildroot} in %%install
- rename BuildRoot
* Tue Mar 13 2007 Vivek Lakshmanan <vivekl@redhat.com> 0:1.3.0-1jpp.ep1.2
- Fix repolib location
* Tue Mar 13 2007 Fernando nasser <fnasser@redhat.com> 0:1.3.0-1jpp.ep1.1
- Remove duplicate macros
* Tue Feb 20 2007 Vivek Lakshmanan <vivekl@redhat.com> 0:1.3.0-1jpp.el4ep1.2
- Install jar with name as used upstream
- Add -brew suffix
* Sun Feb 18 2007 Vivek Lakshmanan <vivekl@redhat.com> 0:1.3.0-1jpp.el4ep1.1
- Add repolib support
- Add missing BR on ant-junit
* Tue Aug 01 2006 Fernando nasser <fnasser@redhat.com> 0:1.3.0-1jpp_1rh
- Merge with upstream
* Tue Jan 17 2006 Deepak Bhole <dbhole@redhat.com> 0:1.3.0-1jpp
- Upgrade to version 1.3.0.
- Removed com.sun dependencies.
- Removed bouncycastle dependency.
* Thu Oct 20 2005 Fernando nasser <fnasser@redhat.com> 0:1.2.1-1jpp_1rh
- First Red Hat build
- Remove bouncycastle
- Lower Xalan-j2 requires to 2.6.0
* Mon Oct 10 2005 Ralph Apel <r.apel at r-apel.de> 0:1.2.97-1jpp
- Upgrade to build/run with JAXP-1.3
* Mon Apr 04 2005 Ralph Apel <r.apel at r-apel.de> 0:1.2.1-1jpp
- First JPackage release