import plexus-interpolation-1.26-10.el9
This commit is contained in:
		
						commit
						e5fe478f7f
					
				
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| SOURCES/plexus-interpolation-1.26.tar.gz | ||||
							
								
								
									
										1
									
								
								.plexus-interpolation.metadata
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								.plexus-interpolation.metadata
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | ||||
| a790bb4bb94a888c61f696477133c27e7e952b61 SOURCES/plexus-interpolation-1.26.tar.gz | ||||
| @ -0,0 +1,39 @@ | ||||
| From d6623bd636d7f07aa8c73234375bdd11ccd6ee95 Mon Sep 17 00:00:00 2001 | ||||
| From: Mikolaj Izdebski <mizdebsk@redhat.com> | ||||
| Date: Wed, 25 Mar 2020 06:58:13 +0100 | ||||
| Subject: [PATCH] Use PATH env variable instead of JAVA_HOME | ||||
| 
 | ||||
| ---
 | ||||
|  .../plexus/interpolation/EnvarBasedValueSourceTest.java         | 2 +- | ||||
|  .../plexus/interpolation/fixed/EnvarBasedValueSourceTest.java   | 2 +- | ||||
|  2 files changed, 2 insertions(+), 2 deletions(-) | ||||
| 
 | ||||
| diff --git a/src/test/java/org/codehaus/plexus/interpolation/EnvarBasedValueSourceTest.java b/src/test/java/org/codehaus/plexus/interpolation/EnvarBasedValueSourceTest.java
 | ||||
| index bc88e8b..6fc4c13 100644
 | ||||
| --- a/src/test/java/org/codehaus/plexus/interpolation/EnvarBasedValueSourceTest.java
 | ||||
| +++ b/src/test/java/org/codehaus/plexus/interpolation/EnvarBasedValueSourceTest.java
 | ||||
| @@ -87,7 +87,7 @@ public class EnvarBasedValueSourceTest
 | ||||
|   | ||||
|          EnvarBasedValueSource source = new EnvarBasedValueSource(); | ||||
|   | ||||
| -        String realEnvVar = "JAVA_HOME";
 | ||||
| +        String realEnvVar = "PATH";
 | ||||
|   | ||||
|          String realValue = System.getenv().get( realEnvVar ); | ||||
|          assertNotNull( "Can't run this test until " + realEnvVar + " env variable is set", realValue ); | ||||
| diff --git a/src/test/java/org/codehaus/plexus/interpolation/fixed/EnvarBasedValueSourceTest.java b/src/test/java/org/codehaus/plexus/interpolation/fixed/EnvarBasedValueSourceTest.java
 | ||||
| index beaf014..94899d7 100644
 | ||||
| --- a/src/test/java/org/codehaus/plexus/interpolation/fixed/EnvarBasedValueSourceTest.java
 | ||||
| +++ b/src/test/java/org/codehaus/plexus/interpolation/fixed/EnvarBasedValueSourceTest.java
 | ||||
| @@ -87,7 +87,7 @@ public class EnvarBasedValueSourceTest
 | ||||
|   | ||||
|          EnvarBasedValueSource source = new EnvarBasedValueSource(); | ||||
|   | ||||
| -        String realEnvVar = "JAVA_HOME";
 | ||||
| +        String realEnvVar = "PATH";
 | ||||
|   | ||||
|          String realValue = System.getenv().get( realEnvVar ); | ||||
|          assertNotNull( "Can't run this test until " + realEnvVar + " env variable is set", realValue ); | ||||
| -- 
 | ||||
| 2.21.0 | ||||
| 
 | ||||
							
								
								
									
										182
									
								
								SPECS/plexus-interpolation.spec
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										182
									
								
								SPECS/plexus-interpolation.spec
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,182 @@ | ||||
| %bcond_with bootstrap | ||||
| 
 | ||||
| Name:           plexus-interpolation | ||||
| Version:        1.26 | ||||
| Release:        10%{?dist} | ||||
| Summary:        Plexus Interpolation API | ||||
| # Most of the code is ASL 2.0, a few source files are ASL 1.1 and some tests are MIT | ||||
| License:        ASL 2.0 and ASL 1.1 and MIT | ||||
| URL:            https://github.com/codehaus-plexus/plexus-interpolation | ||||
| BuildArch:      noarch | ||||
| 
 | ||||
| Source0:        https://github.com/codehaus-plexus/plexus-interpolation/archive/plexus-interpolation-%{version}.tar.gz | ||||
| 
 | ||||
| Patch0:         0001-Use-PATH-env-variable-instead-of-JAVA_HOME.patch | ||||
| 
 | ||||
| BuildRequires:  maven-local-openjdk8 | ||||
| %if %{with bootstrap} | ||||
| BuildRequires:  javapackages-bootstrap | ||||
| %else | ||||
| BuildRequires:  mvn(junit:junit) | ||||
| BuildRequires:  mvn(org.codehaus.plexus:plexus-components:pom:) | ||||
| BuildRequires:  mvn(org.apache.felix:maven-bundle-plugin) | ||||
| %endif | ||||
| 
 | ||||
| %description | ||||
| Plexus interpolator is the outgrowth of multiple iterations of development | ||||
| focused on providing a more modular, flexible interpolation framework for | ||||
| the expression language style commonly seen in Maven, Plexus, and other | ||||
| related projects. | ||||
| 
 | ||||
| %{?javadoc_package} | ||||
| 
 | ||||
| %prep | ||||
| %setup -q -n plexus-interpolation-plexus-interpolation-%{version} | ||||
| %patch0 -p1 | ||||
| %pom_remove_plugin :maven-release-plugin | ||||
| %pom_remove_plugin :maven-scm-publish-plugin | ||||
| 
 | ||||
| %build | ||||
| %mvn_file : plexus/interpolation | ||||
| %mvn_build | ||||
| 
 | ||||
| %install | ||||
| %mvn_install | ||||
| 
 | ||||
| %files -f .mfiles | ||||
| 
 | ||||
| %changelog | ||||
| * Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.26-10 | ||||
| - Rebuilt for IMA sigs, glibc 2.34, aarch64 flags | ||||
|   Related: rhbz#1991688 | ||||
| 
 | ||||
| * Wed Jun 09 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.26-9 | ||||
| - Rebuild to workaround DistroBaker issue | ||||
| 
 | ||||
| * Tue Jun 08 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.26-8 | ||||
| - Bootstrap Maven for CentOS Stream 9 | ||||
| 
 | ||||
| * Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.26-7 | ||||
| - Bootstrap build | ||||
| - Non-bootstrap build | ||||
| 
 | ||||
| * Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-6 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild | ||||
| 
 | ||||
| * Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-5 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild | ||||
| 
 | ||||
| * Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 1.26-4 | ||||
| - Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 | ||||
| 
 | ||||
| * Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-3 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild | ||||
| 
 | ||||
| * Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.26-3 | ||||
| - Build with OpenJDK 8 | ||||
| 
 | ||||
| * Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.26-2 | ||||
| - Mass rebuild for javapackages-tools 201902 | ||||
| 
 | ||||
| * Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-2 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild | ||||
| 
 | ||||
| * Wed Jul 17 2019 Marian Koncek <mkoncek@redhat.com> - 1.26-1 | ||||
| - Update to upstream version 1.26 | ||||
| 
 | ||||
| * Wed Jul 03 2019 Filipe Rosset <rosset.filipe@gmail.com> - 1.26-1 | ||||
| - Update to version 1.26, fixes rhbz#1724390 | ||||
| 
 | ||||
| * Sat Jun 08 2019 Fabio Valentini <decathorpe@gmail.com> - 1.25-1 | ||||
| - Update to version 1.25. | ||||
| 
 | ||||
| * Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.22-10 | ||||
| - Mass rebuild for javapackages-tools 201901 | ||||
| 
 | ||||
| * Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-11 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild | ||||
| 
 | ||||
| * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-10 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild | ||||
| 
 | ||||
| * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-9 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild | ||||
| 
 | ||||
| * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-8 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild | ||||
| 
 | ||||
| * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-7 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild | ||||
| 
 | ||||
| * Fri Jul 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.22-6 | ||||
| - Remove BR on maven-release-plugin | ||||
| 
 | ||||
| * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-5 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild | ||||
| 
 | ||||
| * Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.22-4 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild | ||||
| 
 | ||||
| * Tue Apr 14 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.22-3 | ||||
| - Cleanup spec file | ||||
| 
 | ||||
| * Wed Apr  1 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.22-2 | ||||
| - Update upstream URL | ||||
| 
 | ||||
| * Fri Nov 21 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.22-1 | ||||
| - Update to upstream version 1.22 | ||||
| 
 | ||||
| * Thu Oct 23 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.21-1 | ||||
| - Update to upstream version 1.21 | ||||
| 
 | ||||
| * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-9 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild | ||||
| 
 | ||||
| * Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.15-8 | ||||
| - Use Requires: java-headless rebuild (#1067528) | ||||
| 
 | ||||
| * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-7 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild | ||||
| 
 | ||||
| * Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-6 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild | ||||
| 
 | ||||
| * Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 1.15-5 | ||||
| - Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild | ||||
| - Replace maven BuildRequires with maven-local | ||||
| 
 | ||||
| * Thu Jan 17 2013 Michal Srb <msrb@redhat.com> - 1.15-4 | ||||
| - Build with xmvn | ||||
| 
 | ||||
| * Mon Nov 19 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.15-3 | ||||
| - Fix source URL to be stable | ||||
| 
 | ||||
| * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-2 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild | ||||
| 
 | ||||
| * Wed Apr 18 2012 Alexander Kurtakov <akurtako@redhat.com> 1.15-1 | ||||
| - Update to latest upstream. | ||||
| 
 | ||||
| * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14-3 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild | ||||
| 
 | ||||
| * Wed Jul 27 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.14-2 | ||||
| - Use add_maven_depmap macro | ||||
| - Use more precise specification of files | ||||
| 
 | ||||
| * Tue Jul 26 2011 Jaromir Capik <jcapik@redhat.com> - 1.14-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> 1.14-1 | ||||
| - Update to upstream 1.14 version. | ||||
| - Adapt to current guidelines. | ||||
| 
 | ||||
| * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13-3 | ||||
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild | ||||
| 
 | ||||
| * Tue Dec 22 2009 Alexander Kurtakov <akurtako@redhat.com> 1.13-2 | ||||
| - Fix review comments. | ||||
| 
 | ||||
| * Tue Dec 22 2009 Alexander Kurtakov <akurtako@redhat.com> 1.13-1 | ||||
| - Initial package. | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user