added dev-php/phpactor-2024.06.30.0 - a PHP language-server.

This commit is contained in:
Micha Glave 2024-09-09 14:39:07 +02:00
parent 85a232a6ef
commit 82aabc3c98
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST phpactor-2024.06.30.0.phar 4578650 BLAKE2B ebd4998d7a7ebcd41adbd57a2b26573718583e6d6a96ad1af147535e5e2b7e22243349df761f5847c01d9fd8bd5caa08d2a775033947e4d6d677c87bd208a767 SHA512 6d6e95d64304a711180a65928ff1f187bc20ab4d3e9b6c832f9549d50a06ce0facc8b0af032c1f422e0f24b5146ac0331b6676cbc4f7c93591bbfeece6449929

View File

@ -0,0 +1,34 @@
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Mainly a PHP Language Server with more features than you can shake a stick at"
HOMEPAGE="https://github.com/phpactor/phpactor"
SRC_URI="https://github.com/phpactor/phpactor/releases/download/${PV}/phpactor.phar -> ${P}.phar"
RESTRICT="mirror strip bindist"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
>=dev-lang/php-8.1
"
RDEPEND="
${DEPEND}
"
DOCS=( )
src_unpack(){
mkdir -p ${S}
cp "${DISTDIR}/${P}.phar" ${S}/${PN}
}
src_install(){
dobin ${PN}
}