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