forked from pool/plexus-archiver
		
	4.10.2
This commit is contained in:
		| @@ -1,4 +1,4 @@ | ||||
| From dc47e7ca10fded81f327cd304c8235e9598509b5 Mon Sep 17 00:00:00 2001 | ||||
| From 35a4229c8b659a92591892014a7def330e4e9a1a Mon Sep 17 00:00:00 2001 | ||||
| From: Mikolaj Izdebski <mizdebsk@redhat.com> | ||||
| Date: Sat, 23 Sep 2017 11:43:45 +0200 | ||||
| Subject: [PATCH 1/2] Remove support for snappy | ||||
| @@ -9,18 +9,18 @@ Subject: [PATCH 1/2] Remove support for snappy | ||||
|  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 ba53a1b9..070849c1 100644 | ||||
| index 6c3eb116..b9c47225 100644 | ||||
| --- a/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java | ||||
| +++ b/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java | ||||
| @@ -25,7 +25,6 @@ | ||||
|  import java.nio.file.Files; | ||||
| @@ -24,7 +24,6 @@ | ||||
|  import java.io.OutputStream; | ||||
|  import java.util.zip.GZIPOutputStream; | ||||
|   | ||||
| -import io.airlift.compress.snappy.SnappyFramedOutputStream; | ||||
|  import org.apache.commons.compress.archivers.tar.TarArchiveEntry; | ||||
|  import org.apache.commons.compress.archivers.tar.TarArchiveOutputStream; | ||||
|  import org.apache.commons.compress.compressors.bzip2.BZip2CompressorOutputStream; | ||||
| @@ -426,7 +425,7 @@ private OutputStream compress(TarCompressionMethod tarCompressionMethod, final O | ||||
| @@ -425,7 +424,7 @@ private OutputStream compress(TarCompressionMethod tarCompressionMethod, final O | ||||
|          } else if (TarCompressionMethod.bzip2.equals(tarCompressionMethod)) { | ||||
|              return new BZip2CompressorOutputStream(bufferedOutputStream(ostream)); | ||||
|          } else if (TarCompressionMethod.snappy.equals(tarCompressionMethod)) { | ||||
| @@ -30,7 +30,7 @@ index ba53a1b9..070849c1 100644 | ||||
|              return new XZCompressorOutputStream(bufferedOutputStream(ostream)); | ||||
|          } else if (TarCompressionMethod.zstd.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 507cb6cb..0ae6e3b4 100644 | ||||
| index 8ff360de..270bf954 100644 | ||||
| --- a/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java | ||||
| +++ b/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java | ||||
| @@ -23,7 +23,6 @@ | ||||
| @@ -51,5 +51,5 @@ index 507cb6cb..0ae6e3b4 100644 | ||||
|              return new XZCompressorInputStream(istream); | ||||
|          } else if (compression == UntarCompressionMethod.ZSTD) { | ||||
| --  | ||||
| 2.46.0 | ||||
| 2.51.0 | ||||
|  | ||||
|   | ||||
							
								
								
									
										
											BIN
										
									
								
								plexus-archiver-4.10.0.tar.gz
									 (Stored with Git LFS)
									
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								plexus-archiver-4.10.0.tar.gz
									 (Stored with Git LFS)
									
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								plexus-archiver-4.10.2.tar.gz
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								plexus-archiver-4.10.2.tar.gz
									 (Stored with Git LFS)
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -10,7 +10,7 @@ | ||||
|  | ||||
|   <property name="project.groupId" value="org.codehaus.plexus"/> | ||||
|   <property name="project.artifactId" value="plexus-archiver"/> | ||||
|   <property name="project.version" value="4.10.0"/> | ||||
|   <property name="project.version" value="4.10.2"/> | ||||
|  | ||||
|   <property name="compiler.release" value="8"/> | ||||
|   <property name="compiler.source" value="1.${compiler.release}"/> | ||||
|   | ||||
| @@ -1,3 +1,20 @@ | ||||
| ------------------------------------------------------------------- | ||||
| Tue Oct  7 11:25:23 UTC 2025 - Fridrich Strba <fstrba@suse.com> | ||||
|  | ||||
| - Upgrade to upstream version 4.10.2 | ||||
|   * New features and improvements | ||||
|     + Utilize VT if possible | ||||
|   * Bug Fixes | ||||
|     + check minimum timestamp: avoid negative Zip 5455 Extended | ||||
|       Timestamp | ||||
|   * Maintenance | ||||
|     + Cleanups of using deprecated methods | ||||
|     + symLinks:Enhance the compatibility of regen.sh | ||||
|     + Apply spotless re-formatting | ||||
| - Modified patch: | ||||
|   * 0001-Remove-support-for-snappy.patch | ||||
|     + rediff | ||||
|  | ||||
| ------------------------------------------------------------------- | ||||
| Tue Jun  3 08:21:50 UTC 2025 - Fridrich Strba <fstrba@suse.com> | ||||
|  | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| # | ||||
| # spec file for package plexus-archiver | ||||
| # | ||||
| # Copyright (c) 2025 SUSE LLC | ||||
| # Copyright (c) 2025 SUSE LLC and contributors | ||||
| # | ||||
| # All modifications and additions to the file contributed by third parties | ||||
| # remain the property of their copyright owners, unless otherwise agreed | ||||
| @@ -17,7 +17,7 @@ | ||||
|  | ||||
|  | ||||
| Name:           plexus-archiver | ||||
| Version:        4.10.0 | ||||
| Version:        4.10.2 | ||||
| Release:        0 | ||||
| Summary:        Plexus Archiver Component | ||||
| License:        Apache-2.0 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user