c8-stream-201902
imports/c8-stream-201902/plexus-archiver-4.2.0-2.module_el8.2.0+363+9996591c
commit
26cecf8cd3
@ -0,0 +1 @@
|
||||
SOURCES/plexus-archiver-4.2.0.tar.gz
|
@ -0,0 +1 @@
|
||||
b86b30a0888dc9348e5c79a10a5e0f7e9aeaa159 SOURCES/plexus-archiver-4.2.0.tar.gz
|
@ -0,0 +1,55 @@
|
||||
From 6e2004d90deab2f59af01629187006e320444e34 Mon Sep 17 00:00:00 2001
|
||||
From: Mikolaj Izdebski <mizdebsk@redhat.com>
|
||||
Date: Sat, 23 Sep 2017 11:43:45 +0200
|
||||
Subject: [PATCH] Remove support for snappy
|
||||
|
||||
---
|
||||
.../java/org/codehaus/plexus/archiver/tar/TarArchiver.java | 3 +--
|
||||
.../java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java | 3 +--
|
||||
2 files changed, 2 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java b/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java
|
||||
index 8eec881..be8e7a3 100644
|
||||
--- a/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java
|
||||
+++ b/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java
|
||||
@@ -38,7 +38,6 @@
|
||||
import org.codehaus.plexus.components.io.resources.PlexusIoResource;
|
||||
import org.codehaus.plexus.util.IOUtil;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
-import org.iq80.snappy.SnappyOutputStream;
|
||||
import static org.codehaus.plexus.archiver.util.Streams.bufferedOutputStream;
|
||||
|
||||
/**
|
||||
@@ -489,7 +488,7 @@ else if ( TarCompressionMethod.bzip2.equals( tarCompressionMethod ) )
|
||||
}
|
||||
else if ( TarCompressionMethod.snappy.equals( tarCompressionMethod ) )
|
||||
{
|
||||
- return new SnappyOutputStream( bufferedOutputStream( ostream ) );
|
||||
+ throw new UnsupportedOperationException( "This version of plexus-archiver does not upport snappy compression" );
|
||||
}
|
||||
else if ( TarCompressionMethod.xz.equals( tarCompressionMethod ) )
|
||||
{
|
||||
diff --git a/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java b/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java
|
||||
index 2316d4e..c2e2b83 100644
|
||||
--- a/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java
|
||||
+++ b/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java
|
||||
@@ -31,7 +31,6 @@
|
||||
import org.codehaus.plexus.archiver.util.Streams;
|
||||
import org.codehaus.plexus.components.io.filemappers.FileMapper;
|
||||
import org.codehaus.plexus.util.IOUtil;
|
||||
-import org.iq80.snappy.SnappyInputStream;
|
||||
|
||||
/**
|
||||
* @author <a href="mailto:evenisse@codehaus.org">Emmanuel Venisse</a>
|
||||
@@ -154,7 +153,7 @@ else if ( compression == UntarCompressionMethod.BZIP2 )
|
||||
}
|
||||
else if ( compression == UntarCompressionMethod.SNAPPY )
|
||||
{
|
||||
- return new SnappyInputStream( istream, true );
|
||||
+ throw new UnsupportedOperationException( "This version of plexus-archiver does not upport snappy compression" );
|
||||
}
|
||||
else if ( compression == UntarCompressionMethod.XZ )
|
||||
{
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,273 @@
|
||||
Name: plexus-archiver
|
||||
Version: 4.2.0
|
||||
Release: 2%{?dist}
|
||||
Summary: Plexus Archiver Component
|
||||
License: ASL 2.0
|
||||
URL: http://codehaus-plexus.github.io/plexus-archiver
|
||||
BuildArch: noarch
|
||||
|
||||
Source0: https://github.com/codehaus-plexus/plexus-archiver/archive/plexus-archiver-%{version}.tar.gz
|
||||
|
||||
Patch0: 0001-Remove-support-for-snappy.patch
|
||||
|
||||
BuildRequires: maven-local
|
||||
BuildRequires: mvn(com.google.code.findbugs:jsr305)
|
||||
BuildRequires: mvn(junit:junit)
|
||||
BuildRequires: mvn(org.apache.commons:commons-compress)
|
||||
BuildRequires: mvn(org.apache.maven.plugins:maven-enforcer-plugin)
|
||||
BuildRequires: mvn(org.codehaus.plexus:plexus-component-metadata)
|
||||
BuildRequires: mvn(org.codehaus.plexus:plexus-container-default)
|
||||
BuildRequires: mvn(org.codehaus.plexus:plexus-io)
|
||||
BuildRequires: mvn(org.codehaus.plexus:plexus:pom:)
|
||||
BuildRequires: mvn(org.codehaus.plexus:plexus-utils)
|
||||
BuildRequires: mvn(org.tukaani:xz)
|
||||
|
||||
%description
|
||||
The Plexus project seeks to create end-to-end developer tools for
|
||||
writing applications. At the core is the container, which can be
|
||||
embedded or for a full scale application server. There are many
|
||||
reusable components for hibernate, form processing, jndi, i18n,
|
||||
velocity, etc. Plexus also includes an application server which
|
||||
is like a J2EE application server, without all the baggage.
|
||||
|
||||
%package javadoc
|
||||
Summary: Javadoc for %{name}
|
||||
|
||||
%description javadoc
|
||||
Javadoc for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{name}-%{version}
|
||||
%mvn_file :%{name} plexus/archiver
|
||||
|
||||
%patch0 -p1
|
||||
%pom_remove_dep org.iq80.snappy:snappy
|
||||
rm -rf src/main/java/org/codehaus/plexus/archiver/snappy
|
||||
rm -f src/main/java/org/codehaus/plexus/archiver/tar/SnappyTarFile.java
|
||||
rm -f src/main/java/org/codehaus/plexus/archiver/tar/PlexusIoTarSnappyFileResourceCollection.java
|
||||
rm src/test/java/org/codehaus/plexus/archiver/snappy/SnappyArchiverTest.java
|
||||
rm src/test/java/org/codehaus/plexus/archiver/tar/TarSnappyUnArchiverTest.java
|
||||
|
||||
# Tests use old plexus-containers-default
|
||||
sed -i '/getLoggerManager/d' src/test/java/org/codehaus/plexus/archiver/DuplicateFilesTest.java
|
||||
|
||||
%build
|
||||
%mvn_build
|
||||
|
||||
%install
|
||||
%mvn_install
|
||||
|
||||
%files -f .mfiles
|
||||
%license LICENSE
|
||||
|
||||
%files javadoc -f .mfiles-javadoc
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-2
|
||||
- Mass rebuild for javapackages-tools 201902
|
||||
|
||||
* Wed Oct 23 2019 Marian Koncek <mkoncek@redhat.com> - 4.2.0-1
|
||||
- Update to upstream version 4.2.0
|
||||
|
||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.1.0-2
|
||||
- Mass rebuild for javapackages-tools 201901
|
||||
|
||||
* Wed Feb 27 2019 Marian Koncek <mkoncek@redhat.com> - 0:4.1.0-1
|
||||
- Update to upstream version 4.1.0
|
||||
|
||||
* Wed May 09 2018 Michael Simacek <msimacek@redhat.com> - 0:3.6.0-1
|
||||
- Update to upstream version 3.6.0
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.5-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.5-4
|
||||
- Add conditional patch for removing snappy support
|
||||
|
||||
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.5-3
|
||||
- Remove dependency on snappy when building without it
|
||||
|
||||
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.5-2
|
||||
- Conditionally allow building without snappy
|
||||
|
||||
* Mon Sep 11 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.5-1
|
||||
- Update to upstream version 3.5
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Mon Jun 20 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.4-1
|
||||
- Update to upstream version 3.4
|
||||
|
||||
* Mon May 30 2016 Michael Simacek <msimacek@redhat.com> - 0:3.3-1
|
||||
- Update to upstream version 3.3
|
||||
|
||||
* Tue Apr 19 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.1-1
|
||||
- Update to upstream version 3.1.1
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.0.1-0.3.gitdc873a4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Jun 16 2015 Mat Booth <mat.booth@redhat.com> - 0:3.0.1-0.2.gitdc873a4
|
||||
- Patch out use of ParallelScatterZipCreator
|
||||
|
||||
* Tue Jun 9 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.0.1-0.1.gitdc873a4
|
||||
- Update to latest 3.0.1 upstream snapshot
|
||||
|
||||
* Tue Jun 9 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.0-4
|
||||
- Backport overloaded Charset methods from 2.x
|
||||
|
||||
* Wed Apr 1 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.0-3
|
||||
- Update upstream URL
|
||||
|
||||
* Thu Mar 26 2015 Michael Simacek <msimacek@redhat.com> - 0:3.0-2
|
||||
- Remove temporary bootstrap part
|
||||
|
||||
* Tue Feb 17 2015 Michael Simacek <msimacek@redhat.com> - 0:3.0-1
|
||||
- Update to upstream version 3.0
|
||||
|
||||
* Mon Nov 3 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.8.2-1
|
||||
- Update to upstream version 2.8.2
|
||||
|
||||
* Fri Oct 24 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.8-1
|
||||
- Update to upstream version 2.8
|
||||
|
||||
* Fri Oct 24 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.1-1
|
||||
- Update to upstream version 2.7.1
|
||||
|
||||
* Mon Oct 13 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7-1
|
||||
- Update to upstream version 2.7
|
||||
|
||||
* Fri Oct 3 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.6.3-1
|
||||
- Update to upstream version 2.6.3
|
||||
|
||||
* Wed Oct 1 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.6.2-1
|
||||
- Update to upstream version 2.6.2
|
||||
|
||||
* Mon Sep 29 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.6.1-1
|
||||
- Update to upstream version 2.6.1
|
||||
- Remove patch for PLXCOMP-64 and PLXCOMP-113
|
||||
|
||||
* Tue Sep 2 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.4-4
|
||||
- Add patch for extracting symbolic links
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.4.4-2
|
||||
- Use Requires: java-headless rebuild (#1067528)
|
||||
|
||||
* Tue Dec 3 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.4-1
|
||||
- Update to upstream version 2.4.4
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Jun 13 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.4.2-2
|
||||
- Update to latest packaging guidelines
|
||||
- Remove MIT license (only applies to test cases not binary rpm)
|
||||
|
||||
* Fri May 24 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.2-1
|
||||
- Update to upstream version 2.4.2
|
||||
- Remove patch for CVE-2012-2098 (accepted upstream)
|
||||
|
||||
* Thu Apr 11 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.3-1
|
||||
- Update to upstream version 2.3
|
||||
- Use apache-commons-compress for bzip2 (de)compression
|
||||
- Resolves: CVE-2012-2098
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 0:2.2-5
|
||||
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
||||
- Replace maven BuildRequires with maven-local
|
||||
|
||||
* Fri Nov 23 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.2-4
|
||||
- Add ASL 2.0 license text to packages
|
||||
|
||||
* Thu Nov 22 2012 Jaromir Capik <jcapik@redhat.com> - 0:2.2-3
|
||||
- Migration to plexus-containers-container-default
|
||||
|
||||
* Mon Nov 19 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.2-2
|
||||
- Fix source URL to be stable
|
||||
|
||||
* Wed Oct 10 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.2-1
|
||||
- Update to upstream 2.2.
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.1.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Wed Apr 18 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.1.1-1
|
||||
- Update to latest upstream release.
|
||||
|
||||
* Wed Feb 15 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.1-1
|
||||
- Update to latest upstream release.
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.0.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Thu Sep 8 2011 Alexander Kurtakov <akurtako@redhat.com> 0:2.0.1-2
|
||||
- BR maven-surefire-provider-junit4.
|
||||
|
||||
* Thu Sep 8 2011 Alexander Kurtakov <akurtako@redhat.com> 0:2.0.1-1
|
||||
- Update to 2.0.1 version.
|
||||
|
||||
* Wed Jul 27 2011 Jaromir Capik <jcapik@redhat.com> - 0:1.2-2
|
||||
- Removal of plexus-maven-plugin dependency (not needed)
|
||||
- Minor spec file changes according to the latest guidelines
|
||||
|
||||
* Tue May 17 2011 Alexander Kurtakov <akurtako@redhat.com> 0:1.2-1
|
||||
- Update to 1.2.
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Oct 6 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-1
|
||||
- Update to 1.1.
|
||||
|
||||
* Mon Dec 28 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.4.a12.4
|
||||
- Install depmap and pom to override common poms.
|
||||
|
||||
* Thu Dec 24 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.4.a12.3
|
||||
- Really ignore test failures.
|
||||
|
||||
* Thu Dec 24 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.4.a12.2
|
||||
- Ignore test failures.
|
||||
|
||||
* Wed Dec 23 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.4.a12.1
|
||||
- Update to alpha 12.
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.0-0.4.a7.1.2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.0-0.3.a7.1.2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:1.0-0.2.a7.1.2
|
||||
- drop repotag
|
||||
- fix license tag
|
||||
|
||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:1.0-0.2.a7.1jpp.1
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Fri Jan 04 2008 Deepak Bhole <dbhole@redhat.com> 1.0-0.1.a7.1jpp.1
|
||||
- Update to alpha 7
|
||||
|
||||
* Thu Feb 15 2007 Matt Wrigne <mwringe@redhat.com> - 0:1.0-0.1.a6.1jpp.1
|
||||
- Fix rpmlint issues
|
||||
- Version package to new jpp versioning standards
|
||||
- Remove javadoc post and postun sections
|
||||
|
||||
* Mon Jun 19 2006 Deepak Bhole <dbhole@redhat.com> - 0:1.0-0.a6.1jpp
|
||||
- Upgrade to 1.0-alpha-6
|
||||
|
||||
* Wed May 31 2006 Ralph Apel <r.apel at r-apel.de> - 0:1.0-0.a3.2jpp
|
||||
- First JPP-1.7 release
|
||||
|
||||
* Mon Nov 07 2005 Ralph Apel <r.apel at r-apel.de> - 0:1.0-0.a3.1jpp
|
||||
- First JPackage build
|
Loading…
Reference in new issue