diff options
author | V3n3RiX <venerix@koprulu.sector> | 2021-12-22 14:08:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2021-12-22 14:08:05 +0000 |
commit | 93a93e9a3b53c1a73142a305ea1f8136846942ee (patch) | |
tree | b9791a06ab3284e27b568412c59316c66240c682 /dev-java/jsoup | |
parent | 2771f79232c273bc2a57d23bf335dd81ccf6af28 (diff) |
gentoo resync : 22.12.2021
Diffstat (limited to 'dev-java/jsoup')
-rw-r--r-- | dev-java/jsoup/Manifest | 3 | ||||
-rw-r--r-- | dev-java/jsoup/jsoup-1.8.3.ebuild | 48 | ||||
-rw-r--r-- | dev-java/jsoup/metadata.xml | 20 |
3 files changed, 0 insertions, 71 deletions
diff --git a/dev-java/jsoup/Manifest b/dev-java/jsoup/Manifest deleted file mode 100644 index 1f4354f332b7..000000000000 --- a/dev-java/jsoup/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST jsoup-1.8.3a.zip 370626 BLAKE2B 9ba471a8e161ef4ad5f0abd54feb29075400a53622dcd1a9934307a123bfad087bea9fc17f3cf020929aadbf51a47b0df1aa1ad5201487394faaaf4c44a793a9 SHA512 d044231fc70ff6d5428707d56853db77feedbb29a4ea1a501e6fcbaaecb2743bdeeaa8dcf4c76f7d278905b31e83707ad2644e7876a44c9d2325537d647aab85 -EBUILD jsoup-1.8.3.ebuild 1186 BLAKE2B 449200eb4701d4a2214eeadfbbdf9f77393ef203bbb3bb3a42392cae184655e49d219728e146941fbf14d480b73d6c1ee4d7cf1d9e60c34187be74c2a6ff7ab1 SHA512 31ba7a27aaee5707d38d2a8b47f91d082cadcba8137e5163036858be8508b7af6a7a9df4e1e0dd17740ecb8e85529c5473b8a64222f04f22975185276e54a234 -MISC metadata.xml 833 BLAKE2B 1b5f90c7895c48dd280b13d57ac5e88402174b0ec56c13a6dd82a189f9f7522a130c075d3f65e6d14bb507873fc2af681ee8eebb3725b3abac91fd1e21971492 SHA512 4ae6d4fbb3b66342123f7508b417e342af8039fc45eaee70586557e5fb634e2a099ce494a4dbe8cdb64ff20c13d43a9efcb8791afbc424288967844da4798bd1 diff --git a/dev-java/jsoup/jsoup-1.8.3.ebuild b/dev-java/jsoup/jsoup-1.8.3.ebuild deleted file mode 100644 index 103a8ed904c7..000000000000 --- a/dev-java/jsoup/jsoup-1.8.3.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-pkg-simple - -MY_PV="${PV}a" -MY_P="${PN}-${PN}-${MY_PV}" - -DESCRIPTION="Java HTML parser that makes sense of real-world HTML soup" -HOMEPAGE="https://jsoup.org/" -SRC_URI="https://github.com/jhy/${PN}/archive/${PN}-${MY_PV}.zip" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux" - -IUSE="" - -RDEPEND=">=virtual/jre-1.6" -DEPEND=">=virtual/jdk-1.6 - test? ( dev-java/junit:4 )" - -S="${WORKDIR}/${MY_P}" - -JAVA_SRC_DIR="src/main/java" - -java_prepare() { - rm pom.xml || die - mkdir -p target/classes/org/jsoup/nodes/ || die - cp src/main/java/org/jsoup/nodes/*.properties target/classes/org/jsoup/nodes/ || die -} - -src_test() { - testcp="${S}/${PN}.jar:$(java-pkg_getjars junit-4):target/tests" - - mkdir target/tests || die - ejavac -cp "${testcp}" -d target/tests $(find src/test/java -name "*.java") - cp -r src/test/resources/* target/tests || die - - tests=$(find target/tests -name "*Test.class" \ - | sed -e 's/target\/tests\///g' -e "s/\.class//" -e "s/\//./g" \ - | grep -vP '\$'); - ejunit4 -cp "${testcp}" ${tests} -} diff --git a/dev-java/jsoup/metadata.xml b/dev-java/jsoup/metadata.xml deleted file mode 100644 index de1e1a4fcf8e..000000000000 --- a/dev-java/jsoup/metadata.xml +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>java@gentoo.org</email> - <name>Java</name> - </maintainer> - <upstream> - <remote-id type="github">jhy/jsoup</remote-id> - </upstream> - <longdescription> - jsoup is a Java library for working with real-world HTML. It provides a - very convenient API for extracting and manipulating data, using the best - of DOM, CSS, and jquery-like methods. - It implements the WHATWG HTML5 specification (http://whatwg.org/html), - and parses HTML to the same DOM as modern browsers do. It's designed to - deal with all varieties of HTML found in the wild; from pristine and - validating, to invalid tag-soup; jsoup will create a sensible parse tree. - </longdescription> -</pkgmetadata> |