From 2771f79232c273bc2a57d23bf335dd81ccf6af28 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 5 Dec 2021 02:47:11 +0000 Subject: gentoo resync : 05.12.2021 --- dev-db/henplus/Manifest | 5 --- dev-db/henplus/files/0.9.8-build.xml.patch | 23 -------------- dev-db/henplus/files/henplus.pre | 51 ------------------------------ dev-db/henplus/henplus-0.9.8-r1.ebuild | 43 ------------------------- dev-db/henplus/metadata.xml | 11 ------- 5 files changed, 133 deletions(-) delete mode 100644 dev-db/henplus/Manifest delete mode 100644 dev-db/henplus/files/0.9.8-build.xml.patch delete mode 100644 dev-db/henplus/files/henplus.pre delete mode 100644 dev-db/henplus/henplus-0.9.8-r1.ebuild delete mode 100644 dev-db/henplus/metadata.xml (limited to 'dev-db/henplus') diff --git a/dev-db/henplus/Manifest b/dev-db/henplus/Manifest deleted file mode 100644 index 4525949859b5..000000000000 --- a/dev-db/henplus/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX 0.9.8-build.xml.patch 771 BLAKE2B b0fc8433a08fe2321656c8a34190dc19efbc6ed52022824ef74cf55e990c43a5cd48147550c40230843239bddf15fc77d4f0ed1beea872af2df5d1ebfe7f6258 SHA512 b886c7f53bbbb10221b99c3d2ff32513c5388769310714e1c74c69aa662618bc719aa7338ccde92ca2119f9e6fa9591ae260dfe5055fa760f90b5f26ad740190 -AUX henplus.pre 1418 BLAKE2B bedb6cbef3fc1713895716c8af2cc3a70d77a42c7a940e86c57157064177afd59d52369f1aee72ac4e2c7501f219b8da1fe8482424fae62e1ef875fc255cf333 SHA512 331138630336c9f7a2f7cbf343b6ea77277d4ad77d706497545a6ff33cf44572cbe126acb4f0d212a40f652a24190b629f7776dbca08630de66d6f8ac3fae26a -DIST henplus-0.9.8.tar.gz 233035 BLAKE2B 0cfba9cde654103f539ce28508d77169ce3a34ccc9a8805253e9bcd3a731118408c8a241f82eb6da8be2b96d1a4932c95024a158eae48396b045d5b94b0acaa9 SHA512 a22fc847f4441f627c1fa12f4f365c38d0c8ddfc205758d044e797e83f8d37032995666c2ee3dbb68d0a5f563fa5d574886e85757b1faa0acfc055e92b2fad0b -EBUILD henplus-0.9.8-r1.ebuild 1007 BLAKE2B 5e9f6d9a09944b2b03712c031f68dc6ad3c419b93b4bfb821f7956435ff245e1f2f0f7f573a3c3723bc037dc669ec6f38c043b9aa0f58b7cf03f05e1981f1bef SHA512 dca54c7a66b1f159cdb4c37c2a48999bcd396b1fb2981ec00a11186f0eca493417446a0c78ae841daed555aaa8e6e728b6e112e2947dd7bf144e0d59bd534613 -MISC metadata.xml 314 BLAKE2B fc2ff2f4b0b894a140e0a9ad7effa2b8c55cbea5fae9c3b6d4f90cbd88dabc88f3b49b0c75cd2a301b77930dc0d84b5de9211e92cbaedd671aa2fb4b94f3e8e5 SHA512 921b843f2acaafd3ee3e72b0047d4aa373834da3bd165f2b6147cbdaec9f3cfb825f50b409e3fa0c8ae7aae299ea6a7c090967552b8c53b7a589f93dd83fe15a diff --git a/dev-db/henplus/files/0.9.8-build.xml.patch b/dev-db/henplus/files/0.9.8-build.xml.patch deleted file mode 100644 index e2763978080e..000000000000 --- a/dev-db/henplus/files/0.9.8-build.xml.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -ur henplus-0.9.8.old/build.xml henplus-0.9.8/build.xml ---- henplus-0.9.8.old/build.xml 2009-05-01 23:51:41.000000000 +0300 -+++ henplus-0.9.8/build.xml 2009-05-01 23:52:31.000000000 +0300 -@@ -33,13 +33,13 @@ - - - -- -- -- -- -- -- - -+ -+ -+ -+ -+ -+ - - - diff --git a/dev-db/henplus/files/henplus.pre b/dev-db/henplus/files/henplus.pre deleted file mode 100644 index c29585e369fa..000000000000 --- a/dev-db/henplus/files/henplus.pre +++ /dev/null @@ -1,51 +0,0 @@ -# -# Based on the upstream script but parts not relevant to Gentoo -# stripped away. We would not need this at all but better to make -# this behave as the upstream docs say and then also have all the -# Gentoo goodies. -# https://bugs.gentoo.org/show_bug.cgi?id=176185 - -##------------------ -THISDIR=`dirname $0` -# install layout is: script in /usr/bin/henplus and libs in /usr/share/henplus -HENPLUSDIR=$THISDIR/../share/henplus - -# you may just throw your own jar files in this dir. -# (like additional JDBC-drivers, that are not in default -# classpath) -for f in $HENPLUSDIR/*.jar $HENPLUSDIR/*.zip ; do - if [ -r "$f" ] ; then - CLASSPATH=$CLASSPATH:$f - fi -done - -# starting at the current directory we look for additional -# JDBC-drivers in .henplus/lib-directories up the path. -# if no directory like that has been found the one in the -# home directory will be used -DIR=`pwd` -CUSTOM_HENPLUSDIR="" - -while [ $DIR != "/" ] ; do - if [ -d $DIR"/.henplus/lib" ]; then - CUSTOM_HENPLUSDIR=$DIR"/.henplus/lib" - break - fi - DIR=`dirname $DIR` -done - -if [ -z $CUSTOM_HENPLUSDIR ]; then - if [ -d "/.henplus/lib" ]; then - CUSTOM_HENPLUSDIR="/.henplus/lib" - else - CUSTOM_HENPLUSDIR=$HOME/.henplus/lib - fi -fi - -for f in $CUSTOM_HENPLUSDIR/*.jar $CUSTOM_HENPLUSDIR/*.zip ; do - if [ -r "$f" ] ; then - CLASSPATH=$CLASSPATH:$f - fi -done - -export CLASSPATH diff --git a/dev-db/henplus/henplus-0.9.8-r1.ebuild b/dev-db/henplus/henplus-0.9.8-r1.ebuild deleted file mode 100644 index 4d87fb8700b0..000000000000 --- a/dev-db/henplus/henplus-0.9.8-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 epatch java-ant-2 - -DESCRIPTION="Java-based multisession SQL shell for databases with JDBC support" -HOMEPAGE="http://henplus.sf.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -COMMON_DEPEND="dev-java/commons-cli:1 - dev-java/libreadline-java:0" -RDEPEND=">=virtual/jre-1.6 - ${COMMON_DEPEND}" -DEPEND=">=virtual/jdk-1.6 - ${COMMON_DEPEND}" - -java_prepare() { - epatch "${FILESDIR}/0.9.8-build.xml.patch" - rm -v lib/*.jar lib/*/*.jar || die -} - -JAVA_ANT_REWRITE_CLASSPATH="true" -EANT_GENTOO_CLASSPATH="commons-cli-1,libreadline-java" - -src_install() { - java-pkg_dojar "build/${PN}.jar" - - java-pkg_dolauncher ${PN} -pre "${FILESDIR}/${PN}.pre" \ - --main henplus.HenPlus - - dodoc README - dohtml doc/HenPlus.html - - use doc && java-pkg_dojavadoc javadoc/api - use source && java-pkg_dosrc "src/${PN}" -} diff --git a/dev-db/henplus/metadata.xml b/dev-db/henplus/metadata.xml deleted file mode 100644 index ba8234491c12..000000000000 --- a/dev-db/henplus/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - henplus - - -- cgit v1.2.3