Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/netty-transport/files/
Date: Sat, 04 Dec 2021 08:46:57
Message-Id: 1638607608.1c65beb483d126a2c8cb917516b3333fca006762.fordfrog@gentoo
1 commit: 1c65beb483d126a2c8cb917516b3333fca006762
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Fri Dec 3 16:35:58 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 4 08:46:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c65beb4
7
8 dev-java/netty-transport: remove unused patch(es)
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://github.com/gentoo/gentoo/pull/23168
13 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
14
15 .../files/netty-transport-4.0.21-build.xml | 229 ---------------------
16 1 file changed, 229 deletions(-)
17
18 diff --git a/dev-java/netty-transport/files/netty-transport-4.0.21-build.xml b/dev-java/netty-transport/files/netty-transport-4.0.21-build.xml
19 deleted file mode 100644
20 index 4f033f48124a..000000000000
21 --- a/dev-java/netty-transport/files/netty-transport-4.0.21-build.xml
22 +++ /dev/null
23 @@ -1,229 +0,0 @@
24 -<?xml version="1.0" encoding="UTF-8"?>
25 -
26 -<!-- ====================================================================== -->
27 -<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above. -->
28 -<!-- ====================================================================== -->
29 -
30 -<!-- ====================================================================== -->
31 -<!-- ===================== - DO NOT EDIT THIS FILE! - ===================== -->
32 -<!-- ====================================================================== -->
33 -<!-- -->
34 -<!-- Any modifications will be overwritten. -->
35 -<!-- -->
36 -<!-- Generated by Maven Ant Plugin on 5/15/14 7:12 PM -->
37 -<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/ -->
38 -<!-- -->
39 -<!-- ====================================================================== -->
40 -
41 -<project name="netty-transport-from-maven" default="package" basedir=".">
42 -
43 - <!-- ====================================================================== -->
44 - <!-- Build environment properties -->
45 - <!-- ====================================================================== -->
46 -
47 - <property file="${user.home}/.m2/maven.properties"/>
48 - <property file="maven-build.properties"/>
49 -
50 - <property name="maven.build.finalName" value="netty-transport-4.0.21.Final"/>
51 - <property name="maven.build.dir" value="target"/>
52 - <property name="maven.build.outputDir" value="${maven.build.dir}/classes"/>
53 - <property name="maven.build.srcDir.0" value="src/main/java"/>
54 - <property name="maven.build.resourceDir.0" value="src/main/resources"/>
55 - <property name="maven.build.testOutputDir" value="${maven.build.dir}/test-classes"/>
56 - <property name="maven.build.testDir.0" value="src/test/java"/>
57 - <property name="maven.build.testResourceDir.0" value="src/test/resources"/>
58 - <property name="maven.test.reports" value="${maven.build.dir}/test-reports"/>
59 - <property name="maven.reporting.outputDirectory" value="${maven.build.dir}/site"/>
60 -
61 - <property name="maven.repo.local" value="${user.home}/.m2/repository"/>
62 - <property name="maven.settings.offline" value="false"/>
63 - <property name="maven.settings.interactiveMode" value="true"/>
64 -
65 - <!-- ====================================================================== -->
66 - <!-- Defining classpaths -->
67 - <!-- ====================================================================== -->
68 -
69 - <path id="build.classpath">
70 - </path>
71 - <path id="build.test.classpath">
72 - </path>
73 -
74 - <!-- ====================================================================== -->
75 - <!-- Cleaning up target -->
76 - <!-- ====================================================================== -->
77 -
78 - <target name="clean" description="Clean the output directory">
79 - <delete dir="${maven.build.dir}"/>
80 - </target>
81 -
82 - <!-- ====================================================================== -->
83 - <!-- Compilation target -->
84 - <!-- ====================================================================== -->
85 -
86 - <target name="compile" description="Compile the code">
87 - <mkdir dir="${maven.build.outputDir}"/>
88 - <javac destdir="${maven.build.outputDir}"
89 - nowarn="true"
90 - debug="true"
91 - optimize="true"
92 - deprecation="true"
93 - target="1.6"
94 - verbose="false"
95 - fork="true"
96 - memoryInitialSize="1024m"
97 - source="1.6">
98 - <src>
99 - <pathelement location="${maven.build.srcDir.0}"/>
100 - </src>
101 - <classpath refid="build.classpath"/>
102 - </javac>
103 - </target>
104 -
105 - <!-- ====================================================================== -->
106 - <!-- Test-compilation target -->
107 - <!-- ====================================================================== -->
108 -
109 - <target name="compile-tests"
110 - depends="compile"
111 - description="Compile the test code"
112 - unless="maven.test.skip">
113 - <mkdir dir="${maven.build.testOutputDir}"/>
114 - <javac destdir="${maven.build.testOutputDir}"
115 - nowarn="true"
116 - debug="true"
117 - optimize="true"
118 - deprecation="true"
119 - target="1.6"
120 - verbose="false"
121 - fork="true"
122 - memoryInitialSize="1024m"
123 - source="1.6">
124 - <src>
125 - <pathelement location="${maven.build.testDir.0}"/>
126 - </src>
127 - <classpath>
128 - <path refid="build.test.classpath"/>
129 - <pathelement location="${maven.build.outputDir}"/>
130 - </classpath>
131 - </javac>
132 - </target>
133 -
134 - <!-- ====================================================================== -->
135 - <!-- Run all tests -->
136 - <!-- ====================================================================== -->
137 -
138 - <target name="test"
139 - depends="compile-tests, junit-missing"
140 - unless="junit.skipped"
141 - description="Run the test cases">
142 - <mkdir dir="${maven.test.reports}"/>
143 - <junit printSummary="yes" haltonerror="true" haltonfailure="true" fork="true" dir=".">
144 - <sysproperty key="basedir" value="."/>
145 - <formatter type="xml"/>
146 - <formatter type="plain" usefile="false"/>
147 - <classpath>
148 - <path refid="build.test.classpath"/>
149 - <pathelement location="${maven.build.outputDir}"/>
150 - <pathelement location="${maven.build.testOutputDir}"/>
151 - </classpath>
152 - <batchtest todir="${maven.test.reports}" unless="test">
153 - <fileset dir="${maven.build.testDir.0}">
154 - <include name="**/*Test*.java"/>
155 - <include name="**/*Benchmark*.java"/>
156 - <exclude name="**/Abstract*"/>
157 - <exclude name="**/TestUtil*"/>
158 - </fileset>
159 - </batchtest>
160 - <batchtest todir="${maven.test.reports}" if="test">
161 - <fileset dir="${maven.build.testDir.0}">
162 - <include name="**/${test}.java"/>
163 - <exclude name="**/Abstract*"/>
164 - <exclude name="**/TestUtil*"/>
165 - </fileset>
166 - </batchtest>
167 - </junit>
168 - </target>
169 -
170 - <target name="test-junit-present">
171 - <available classname="junit.framework.Test" property="junit.present"/>
172 - </target>
173 -
174 - <target name="test-junit-status"
175 - depends="test-junit-present">
176 - <condition property="junit.missing">
177 - <and>
178 - <isfalse value="${junit.present}"/>
179 - <isfalse value="${maven.test.skip}"/>
180 - </and>
181 - </condition>
182 - <condition property="junit.skipped">
183 - <or>
184 - <isfalse value="${junit.present}"/>
185 - <istrue value="${maven.test.skip}"/>
186 - </or>
187 - </condition>
188 - </target>
189 -
190 - <target name="junit-missing"
191 - depends="test-junit-status"
192 - if="junit.missing">
193 - <echo>=================================== WARNING ===================================</echo>
194 - <echo> JUnit is not present in your $ANT_HOME/lib directory. Tests not executed.</echo>
195 - <echo>===============================================================================</echo>
196 - </target>
197 -
198 - <!-- ====================================================================== -->
199 - <!-- Javadoc target -->
200 - <!-- ====================================================================== -->
201 -
202 - <target name="javadoc" description="Generates the Javadoc of the application">
203 - <javadoc sourcepath="${maven.build.srcDir.0}"
204 - packagenames="*"
205 - destdir="${maven.reporting.outputDirectory}/apidocs"
206 - access="protected"
207 - old="false"
208 - verbose="false"
209 - version="false"
210 - use="true"
211 - author="false"
212 - splitindex="false"
213 - nodeprecated="false"
214 - nodeprecatedlist="false"
215 - notree="false"
216 - noindex="false"
217 - nohelp="false"
218 - nonavbar="false"
219 - serialwarn="false"
220 - charset="ISO-8859-1"
221 - linksource="false"
222 - breakiterator="true"/>
223 - </target>
224 -
225 - <!-- ====================================================================== -->
226 - <!-- Package target -->
227 - <!-- ====================================================================== -->
228 -
229 - <target name="package" depends="compile,test" description="Package the application">
230 - <jar jarfile="${maven.build.dir}/${maven.build.finalName}.jar"
231 - compress="true"
232 - index="false"
233 - basedir="${maven.build.outputDir}"
234 - excludes="**/package.html"/>
235 - </target>
236 -
237 - <!-- ====================================================================== -->
238 - <!-- A dummy target for the package named after the type it creates -->
239 - <!-- ====================================================================== -->
240 -
241 - <target name="jar" depends="package" description="Builds the jar for the application"/>
242 -
243 - <!-- ====================================================================== -->
244 - <!-- Download dependencies target -->
245 - <!-- ====================================================================== -->
246 -
247 - <target name="test-offline">
248 - <condition property="maven.mode.offline">
249 - <equals arg1="${maven.settings.offline}" arg2="true"/>
250 - </condition>
251 - </target>
252 -</project>