summaryrefslogtreecommitdiff
path: root/dev-java/jdtls-bin
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-java/jdtls-bin
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-java/jdtls-bin')
-rw-r--r--dev-java/jdtls-bin/Manifest3
-rw-r--r--dev-java/jdtls-bin/files/wrapper31
-rw-r--r--dev-java/jdtls-bin/jdtls-bin-1.54.0_p202511211413.ebuild52
-rw-r--r--dev-java/jdtls-bin/jdtls-bin-1.55.0_p202601060902.ebuild52
-rw-r--r--dev-java/jdtls-bin/jdtls-bin-1.56.0_p202601201639.ebuild52
-rw-r--r--dev-java/jdtls-bin/metadata.xml14
6 files changed, 0 insertions, 204 deletions
diff --git a/dev-java/jdtls-bin/Manifest b/dev-java/jdtls-bin/Manifest
deleted file mode 100644
index b5e409db2ce1..000000000000
--- a/dev-java/jdtls-bin/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST jdtls-1.54.0_p202511211413.tar.gz 49501244 BLAKE2B 9729a4840a878d010fb4273422b8c7bc9ec43a2bfd33b4b4bb68897c5e6ec80afbf1a6b16b2321d5e6f4c296fbfbc102e10a8145ca08a89ecd3dda65caac949c SHA512 5da8890f326551ec60bee8731c0eed3c3e3869c9d73068a30db280d5767aa9ce9dd205596b1ead170c00595eddfe2e5facead66b37c92e9e4cc32b9f764ea849
-DIST jdtls-1.55.0_p202601060902.tar.gz 50923994 BLAKE2B a1a5d1c65345cb23dafcf032f386ec05fae0bd7a0d57dc0bc859a27553667a8db0aaa157f906cdd4ce453b2062fe6d7e68f50c2cd9b0cbb8a8d0530c630f5146 SHA512 161571ffd169ad695e49127581fe48db308fdc0e05f89384f5e4bdca70e9abc6c14cb18adfb4897b4748fabfe75a68a7392f5c3b2da58727d556b630664bc420
-DIST jdtls-1.56.0_p202601201639.tar.gz 50950692 BLAKE2B 05ff1aa77148db125f0038fde74cc85ed3731f685ebbd09ba499a58f6dcf02fcef6bdef02c24db45e25a86e53bea1f1e6a6fc140a32c2ca47f520e885c7df0a1 SHA512 11b6ff53f30dc4e76725b9419f1bee945444b9b07ce767e53dd95007f22eadc39ed9d14a65bbd7f7c2bf9fe740c3253346e8a7022357900fe7cea664a94ee47d
diff --git a/dev-java/jdtls-bin/files/wrapper b/dev-java/jdtls-bin/files/wrapper
deleted file mode 100644
index 152f48520bba..000000000000
--- a/dev-java/jdtls-bin/files/wrapper
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-share_dir="${XDG_DATA_HOME:-${HOME}/.local/share}/@PKGNAME@"
-state_dir="${XDG_STATE_HOME:-${HOME}/.local/state}/@PKGNAME@"
-
-workspace_dir="${state_dir}/$(pwd | sha1sum | cut -d' ' -f1)"
-
-mkdir -p "${workspace_dir}"
-
-if [ ! -d "${share_dir}" ]; then
- cp -R /usr/share/@PKGNAME@/config_linux "${share_dir}"
-fi
-
-cd "/usr/libexec/@PKGNAME@"
-
-exec java \
- -Declipse.application=org.eclipse.jdt.ls.core.id1 \
- -Dosgi.bundles.defaultStartLevel=4 \
- -Declipse.product=org.eclipse.jdt.ls.core.product \
- -Dlog.protocol=true \
- -Dlog.level=ALL \
- -Dfile.encoding=utf-8 \
- -Xmx1G \
- --add-modules=ALL-SYSTEM \
- --add-opens java.base/java.util=ALL-UNNAMED \
- --add-opens java.base/java.lang=ALL-UNNAMED \
- -jar ./plugins/org.eclipse.equinox.launcher_*.jar \
- -configuration ${share_dir} \
- -data "${workspace_dir}" \
- "$@"
-
diff --git a/dev-java/jdtls-bin/jdtls-bin-1.54.0_p202511211413.ebuild b/dev-java/jdtls-bin/jdtls-bin-1.54.0_p202511211413.ebuild
deleted file mode 100644
index 45a8f20d62e6..000000000000
--- a/dev-java/jdtls-bin/jdtls-bin-1.54.0_p202511211413.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2023-2025 Gabriel Sanches
-# Distributed under the terms of the Zero-Clause BSD License
-
-EAPI=8
-
-inherit java-pkg-2
-
-MY_PV=${PV/_p/-}
-MY_PN=${PN%%-bin}
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Java language server"
-HOMEPAGE="https://github.com/eclipse/eclipse.jdt.ls"
-SRC_URI="https://download.eclipse.org/jdtls/snapshots/jdt-language-server-${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
-
-S="${WORKDIR}"
-
-LICENSE="EPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND=">=virtual/jre-1.8:*"
-RDEPEND="${DEPEND}"
-
-JDTLS_LIBEXEC="/usr/libexec/${MY_PN}"
-JDTLS_SHARE="/usr/share/${MY_PN}"
-
-JDTLS_WRAPPER="${FILESDIR}/wrapper"
-
-src_install() {
- dodir "${JDTLS_LIBEXEC}/bin"
- dodir "${JDTLS_SHARE}"
-
- cp -Rp plugins features "${ED}/${JDTLS_LIBEXEC}" || die "failed to copy"
- cp -Rp bin/${MY_PN} "${ED}/${JDTLS_LIBEXEC}/bin" || die "failed to copy"
- cp -Rp config_linux "${ED}/${JDTLS_SHARE}" || die "failed to copy"
-
- sed ${JDTLS_WRAPPER} -e "s;@PKGNAME@;${MY_PN};g" > wrapper
- dodir /usr/bin
- newbin wrapper ${MY_PN}
-}
-
-pkg_postinst() {
- elog "If the JDT Language Server fails to start (e.g. ClassNotFoundException),"
- elog "you may be running into stale Eclipse OSGi cache issues."
- elog
- elog "To fix this, remove the following directories:"
- elog " rm -rf \"\${XDG_DATA_HOME}/jdtls\" or rm -rf \"~/.local/share/jdtls\""
- elog " rm -rf \"\${XDG_STATE_HOME}/jdtls\" or rm -rf \"~/.local/state/jdtls\""
- elog
- elog "They will be recreated cleanly on the next launch."
-}
diff --git a/dev-java/jdtls-bin/jdtls-bin-1.55.0_p202601060902.ebuild b/dev-java/jdtls-bin/jdtls-bin-1.55.0_p202601060902.ebuild
deleted file mode 100644
index 29a066411019..000000000000
--- a/dev-java/jdtls-bin/jdtls-bin-1.55.0_p202601060902.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2023-2026 Gabriel Sanches
-# Distributed under the terms of the Zero-Clause BSD License
-
-EAPI=8
-
-inherit java-pkg-2
-
-MY_PV=${PV/_p/-}
-MY_PN=${PN%%-bin}
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Java language server"
-HOMEPAGE="https://github.com/eclipse/eclipse.jdt.ls"
-SRC_URI="https://download.eclipse.org/jdtls/snapshots/jdt-language-server-${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
-
-S="${WORKDIR}"
-
-LICENSE="EPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND=">=virtual/jre-1.8:*"
-RDEPEND="${DEPEND}"
-
-JDTLS_LIBEXEC="/usr/libexec/${MY_PN}"
-JDTLS_SHARE="/usr/share/${MY_PN}"
-
-JDTLS_WRAPPER="${FILESDIR}/wrapper"
-
-src_install() {
- dodir "${JDTLS_LIBEXEC}/bin"
- dodir "${JDTLS_SHARE}"
-
- cp -Rp plugins features "${ED}/${JDTLS_LIBEXEC}" || die "failed to copy"
- cp -Rp bin/${MY_PN} "${ED}/${JDTLS_LIBEXEC}/bin" || die "failed to copy"
- cp -Rp config_linux "${ED}/${JDTLS_SHARE}" || die "failed to copy"
-
- sed ${JDTLS_WRAPPER} -e "s;@PKGNAME@;${MY_PN};g" > wrapper
- dodir /usr/bin
- newbin wrapper ${MY_PN}
-}
-
-pkg_postinst() {
- elog "If the JDT Language Server fails to start (e.g. ClassNotFoundException),"
- elog "you may be running into stale Eclipse OSGi cache issues."
- elog
- elog "To fix this, remove the following directories:"
- elog " rm -rf \"\${XDG_DATA_HOME}/jdtls\" or rm -rf \"~/.local/share/jdtls\""
- elog " rm -rf \"\${XDG_STATE_HOME}/jdtls\" or rm -rf \"~/.local/state/jdtls\""
- elog
- elog "They will be recreated cleanly on the next launch."
-}
diff --git a/dev-java/jdtls-bin/jdtls-bin-1.56.0_p202601201639.ebuild b/dev-java/jdtls-bin/jdtls-bin-1.56.0_p202601201639.ebuild
deleted file mode 100644
index 29a066411019..000000000000
--- a/dev-java/jdtls-bin/jdtls-bin-1.56.0_p202601201639.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2023-2026 Gabriel Sanches
-# Distributed under the terms of the Zero-Clause BSD License
-
-EAPI=8
-
-inherit java-pkg-2
-
-MY_PV=${PV/_p/-}
-MY_PN=${PN%%-bin}
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Java language server"
-HOMEPAGE="https://github.com/eclipse/eclipse.jdt.ls"
-SRC_URI="https://download.eclipse.org/jdtls/snapshots/jdt-language-server-${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
-
-S="${WORKDIR}"
-
-LICENSE="EPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND=">=virtual/jre-1.8:*"
-RDEPEND="${DEPEND}"
-
-JDTLS_LIBEXEC="/usr/libexec/${MY_PN}"
-JDTLS_SHARE="/usr/share/${MY_PN}"
-
-JDTLS_WRAPPER="${FILESDIR}/wrapper"
-
-src_install() {
- dodir "${JDTLS_LIBEXEC}/bin"
- dodir "${JDTLS_SHARE}"
-
- cp -Rp plugins features "${ED}/${JDTLS_LIBEXEC}" || die "failed to copy"
- cp -Rp bin/${MY_PN} "${ED}/${JDTLS_LIBEXEC}/bin" || die "failed to copy"
- cp -Rp config_linux "${ED}/${JDTLS_SHARE}" || die "failed to copy"
-
- sed ${JDTLS_WRAPPER} -e "s;@PKGNAME@;${MY_PN};g" > wrapper
- dodir /usr/bin
- newbin wrapper ${MY_PN}
-}
-
-pkg_postinst() {
- elog "If the JDT Language Server fails to start (e.g. ClassNotFoundException),"
- elog "you may be running into stale Eclipse OSGi cache issues."
- elog
- elog "To fix this, remove the following directories:"
- elog " rm -rf \"\${XDG_DATA_HOME}/jdtls\" or rm -rf \"~/.local/share/jdtls\""
- elog " rm -rf \"\${XDG_STATE_HOME}/jdtls\" or rm -rf \"~/.local/state/jdtls\""
- elog
- elog "They will be recreated cleanly on the next launch."
-}
diff --git a/dev-java/jdtls-bin/metadata.xml b/dev-java/jdtls-bin/metadata.xml
deleted file mode 100644
index df01c82fc8ea..000000000000
--- a/dev-java/jdtls-bin/metadata.xml
+++ /dev/null
@@ -1,14 +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>
- </maintainer>
- <maintainer type="person">
- <email>dangduong31205@gmail.com</email>
- <name>Nguyen Dinh Dang Duong</name>
- </maintainer>
- <upstream>
- <remote-id type="github">eclipse/eclipse.jdt.ls</remote-id>
- </upstream>
-</pkgmetadata>