commit:     d37d53849196a77f2be0fc699f09da95f8c600d7
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 18 15:13:45 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Jul 18 15:49:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d37d5384

dev-java/netty-buffer: treeclean

Closes: https://bugs.gentoo.org/831191
Bug: https://bugs.gentoo.org/849488
Bug: https://bugs.gentoo.org/826494
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-java/netty-buffer/Manifest                     |  1 -
 dev-java/netty-buffer/metadata.xml                 | 11 ---
 .../netty-buffer/netty-buffer-4.0.36-r1.ebuild     | 85 ----------------------
 dev-java/netty-buffer/netty-buffer-4.0.36.ebuild   | 49 -------------
 profiles/package.mask                              |  1 -
 5 files changed, 147 deletions(-)

diff --git a/dev-java/netty-buffer/Manifest b/dev-java/netty-buffer/Manifest
deleted file mode 100644
index be03553487f6..000000000000
--- a/dev-java/netty-buffer/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST netty-4.0.36.Final.tar.gz 1267617 BLAKE2B 
351b1f73b1a3c60fd843767254ae57e74d74cdfe570828b1a2e7aea55a203866ae4e232bad285c3937d8f2dc7689534ffb180fcd345c8cf10bced7048ec58ec3
 SHA512 
b222205963366d5a0f5539c7029dc47edea8d532fca05d169dfe12dbedf956959ba422a22254b09622db428b517da0fd0e58198d11e66193abdb6050481ccbe6

diff --git a/dev-java/netty-buffer/metadata.xml 
b/dev-java/netty-buffer/metadata.xml
deleted file mode 100644
index d07e708c64f1..000000000000
--- a/dev-java/netty-buffer/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-  <maintainer type="project">
-    <email>[email protected]</email>
-    <name>Java</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">netty/netty</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/dev-java/netty-buffer/netty-buffer-4.0.36-r1.ebuild 
b/dev-java/netty-buffer/netty-buffer-4.0.36-r1.ebuild
deleted file mode 100644
index f69a3ee3a00d..000000000000
--- a/dev-java/netty-buffer/netty-buffer-4.0.36-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri 
https://github.com/netty/netty/archive/refs/tags/netty-4.0.36.Final.tar.gz 
--slot 0 --keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild 
netty-buffer-4.0.36.ebuild
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="io.netty:netty-buffer:4.0.36.Final"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit check-reqs java-pkg-2 java-pkg-simple
-
-DESCRIPTION="Async event-driven framework for high performance network 
applications"
-HOMEPAGE="https://netty.io/";
-SRC_URI="https://github.com/netty/netty/archive/refs/tags/netty-${PV}.Final.tar.gz";
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-# Common dependencies
-# POM: pom.xml
-# io.netty:netty-common:4.0.36.Final -> !!!groupId-not-found!!!
-
-CP_DEPEND="dev-java/netty-common:0"
-
-# Compile dependencies
-# POM: pom.xml
-# test? ch.qos.logback:logback-classic:1.0.13 -> !!!groupId-not-found!!!
-# test? io.netty:netty-build:22 -> !!!groupId-not-found!!!
-# test? junit:junit:4.12 -> >=dev-java/junit-4.13.2:4
-# test? org.easymock:easymock:3.2 -> >=dev-java/easymock-3.3.1:3.2
-# test? org.easymock:easymockclassextension:3.2 -> !!!artifactId-not-found!!!
-# test? org.hamcrest:hamcrest-library:1.3 -> 
>=dev-java/hamcrest-library-1.3:1.3
-# test? org.javassist:javassist:3.19.0-GA -> !!!groupId-not-found!!!
-# test? org.jmock:jmock-junit4:2.6.0 -> !!!groupId-not-found!!!
-# test? org.mockito:mockito-core:1.10.8 -> 
!!!suitable-mavenVersion-not-found!!!
-
-DEPEND="${CP_DEPEND}
-       >=virtual/jdk-1.8:*
-       test? (
-               dev-java/easymock:3.2
-               dev-java/hamcrest-library:1.3
-       )"
-
-RDEPEND="${CP_DEPEND}
-       >=virtual/jre-1.8:*"
-
-DOCS=( ../{CONTRIBUTING,README}.md ../{LICENSE,NOTICE}.txt )
-
-S="${WORKDIR}/netty-netty-${PV}.Final/buffer/"
-
-JAVA_SRC_DIR="src/main/java"
-
-JAVA_TEST_GENTOO_CLASSPATH="junit-4,easymock-3.2,hamcrest-library-1.3"
-JAVA_TEST_SRC_DIR="src/test/java"
-
-check_env() {
-       if use test; then
-               # this is needed only for tests
-               # https://bugs.gentoo.org/829822
-               CHECKREQS_MEMORY="2048M"
-               check-reqs_pkg_pretend
-       fi
-}
-
-pkg_pretend() {
-       check_env
-}
-
-pkg_setup() {
-       check_env
-}
-
-src_test() {
-       JAVA_TEST_EXTRA_ARGS+=" -Xmx${CHECKREQS_MEMORY}"
-       java-pkg-simple_src_test
-}
-
-src_install() {
-       default # https://bugs.gentoo.org/789582
-       java-pkg-simple_src_install
-}

diff --git a/dev-java/netty-buffer/netty-buffer-4.0.36.ebuild 
b/dev-java/netty-buffer/netty-buffer-4.0.36.ebuild
deleted file mode 100644
index dd39ef8af0bf..000000000000
--- a/dev-java/netty-buffer/netty-buffer-4.0.36.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-pkg-simple
-
-MY_PN="netty"
-MY_P="${MY_PN}-${PV}"
-DESCRIPTION="Async event-driven framework for high performance network 
applications"
-HOMEPAGE="https://netty.io/";
-SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_P}.Final.tar.gz";
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm64 ppc64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-CDEPEND="~dev-java/${MY_PN}-common-${PV}:0"
-
-RDEPEND=">=virtual/jre-1.7
-       ${CDEPEND}"
-
-DEPEND=">=virtual/jdk-1.7
-       ${CDEPEND}
-       test? (
-               dev-java/easymock:3.2
-               dev-java/hamcrest-core:1.3
-               dev-java/hamcrest-library:1.3
-               dev-java/junit:4
-       )"
-
-S="${WORKDIR}/${MY_PN}-${MY_P}.Final/${PN/${MY_PN}-}"
-JAVA_SRC_DIR="src/main/java"
-JAVA_GENTOO_CLASSPATH="${MY_PN}-common"
-
-src_test() {
-       cd src/test/java || die
-
-       local CP=".:${S}/${PN}.jar:$(java-pkg_getjars --with-dependencies 
${JAVA_GENTOO_CLASSPATH},easymock-3.2,hamcrest-core-1.3,hamcrest-library-1.3,junit-4)"
-       local TESTS=$(find * -name "*Test.java" ! -name "Abstract*")
-       TESTS="${TESTS//.java}"
-       TESTS="${TESTS//\//.}"
-
-       ejavac -cp "${CP}" -d . $(find * -name "*.java")
-       ejunit4 -classpath "${CP}" ${TESTS}
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 84d5bd2e9555..37e2b3acc466 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -282,7 +282,6 @@ dev-ruby/packetfu
 # Volkmar W. Pogatzki <[email protected]> (2022-06-19)
 # Unused java libraries. Removal on 2022-07-19
 dev-java/netty-transport
-dev-java/netty-buffer
 
 # John Helmert III <[email protected]> (2022-06-19)
 # Untouched by maintainer since Git transition. No reverse dependencies,

Reply via email to