forked from pool/apache-ivy
This commit is contained in:
parent
62dd5ff665
commit
008d353363
27
apache-ivy-global-settings.patch
Normal file
27
apache-ivy-global-settings.patch
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
From 27cf17a1eea310b8d75efc7fc9d4d733fffcbdc1 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Marian Koncek <mkoncek@redhat.com>
|
||||||
|
Date: Fri, 19 Oct 2018 15:25:30 +0200
|
||||||
|
Subject: [PATCH] Change global settings
|
||||||
|
|
||||||
|
---
|
||||||
|
src/java/org/apache/ivy/ant/IvyAntSettings.java | 4 ++++
|
||||||
|
1 file changed, 4 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/java/org/apache/ivy/ant/IvyAntSettings.java b/src/java/org/apache/ivy/ant/IvyAntSettings.java
|
||||||
|
index 660ebbe..85cf97f 100644
|
||||||
|
--- a/src/java/org/apache/ivy/ant/IvyAntSettings.java
|
||||||
|
+++ b/src/java/org/apache/ivy/ant/IvyAntSettings.java
|
||||||
|
@@ -354,6 +354,10 @@ public class IvyAntSettings extends DataType {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
+ if (!file.exists() && task.getProject().getProperty("ivy.mode") != null) {
|
||||||
|
+ file = new File("/etc/ivy/ivysettings.xml");
|
||||||
|
+ task.log("searching settings file: trying " + file, Project.MSG_VERBOSE);
|
||||||
|
+ }
|
||||||
|
if (!file.exists()) {
|
||||||
|
file = null;
|
||||||
|
if (Boolean.valueOf(getProject().getProperty("ivy.14.compatible")).booleanValue()) {
|
||||||
|
--
|
||||||
|
2.17.2
|
||||||
|
|
@ -5,6 +5,9 @@ Mon Nov 26 10:25:21 UTC 2018 - Fridrich Strba <fstrba@suse.com>
|
|||||||
- Modified patch:
|
- Modified patch:
|
||||||
* apache-ivy-2.3.0-jdk9.patch -> apache-ivy-2.4.0-jdk9.patch
|
* apache-ivy-2.3.0-jdk9.patch -> apache-ivy-2.4.0-jdk9.patch
|
||||||
+ rediff to changed context
|
+ rediff to changed context
|
||||||
|
- Added patch:
|
||||||
|
* apache-ivy-global-settings.patch
|
||||||
|
+ change global settings
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 15 13:26:55 UTC 2018 - fstrba@suse.com
|
Tue May 15 13:26:55 UTC 2018 - fstrba@suse.com
|
||||||
|
@ -27,6 +27,7 @@ Source0: %{name}-%{version}-src.tar.gz
|
|||||||
Source1: ivy.1
|
Source1: ivy.1
|
||||||
Source2: http://repo1.maven.org/maven2/org/apache/ivy/ivy/%{version}/ivy-%{version}.pom
|
Source2: http://repo1.maven.org/maven2/org/apache/ivy/ivy/%{version}/ivy-%{version}.pom
|
||||||
Patch0: apache-ivy-2.4.0-jdk9.patch
|
Patch0: apache-ivy-2.4.0-jdk9.patch
|
||||||
|
Patch1: apache-ivy-global-settings.patch
|
||||||
BuildRequires: ant
|
BuildRequires: ant
|
||||||
BuildRequires: bouncycastle
|
BuildRequires: bouncycastle
|
||||||
BuildRequires: commons-httpclient
|
BuildRequires: commons-httpclient
|
||||||
@ -36,8 +37,8 @@ BuildRequires: javapackages-local
|
|||||||
BuildRequires: javapackages-tools
|
BuildRequires: javapackages-tools
|
||||||
BuildRequires: jsch
|
BuildRequires: jsch
|
||||||
BuildRequires: oro
|
BuildRequires: oro
|
||||||
Provides: ivy = %{version}
|
Provides: ivy = %{version}-%{release}
|
||||||
Obsoletes: ivy < %{version}
|
Obsoletes: ivy < %{version}-%{release}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -59,6 +60,7 @@ JavaDoc documentation for %{name}
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
|
%patch1 -p1
|
||||||
|
|
||||||
#TODO: return back when bouncycastle-pgp will be available
|
#TODO: return back when bouncycastle-pgp will be available
|
||||||
rm -fr src/java/org/apache/ivy/plugins/signer/bouncycastle
|
rm -fr src/java/org/apache/ivy/plugins/signer/bouncycastle
|
||||||
|
Loading…
Reference in New Issue
Block a user