Package Details: kotlin-language-server 1.3.9-1

Git Clone URL: https://aur.archlinux.org/kotlin-language-server.git (read-only, click to copy)
Package Base: kotlin-language-server
Description: Smart code completion, diagnostics and more for Kotlin using the Language Server Protocol
Upstream URL: https://github.com/fwcd/kotlin-language-server
Keywords: java jvm kotlin language server
Licenses: MIT
Conflicts: kotlin-language-server-git
Provides: kotlin-language-server
Submitter: GrimKriegor
Maintainer: aravance
Last Packager: aravance
Votes: 12
Popularity: 0.99
First Submitted: 2019-05-17 19:57 (UTC)
Last Updated: 2024-02-28 19:26 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

Zarkli commented on 2024-03-20 11:57 (UTC)

==> Starting build()...
Starting a Gradle Daemon (subsequent builds will be faster)

FAILURE: Build failed with an exception.

* Where:
Build file '/home/zarkli/.cache/paru/clone/kotlin-language-server/src/kotlin-language-server-1.3.9/buildSrc/build.gradle.kts' line: 4

* What went wrong:
Plugin [id: 'org.gradle.kotlin.kotlin-dsl', version: '4.2.1'] was not found in any of the following sources:

- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'org.gradle.kotlin.kotlin-dsl:org.gradle.kotlin.kotlin-dsl.gradle.plugin:4.2.1')
  Searched in the following repositories:
    Gradle Central Plugin Repository

BuZZ-dEE commented on 2024-03-18 00:30 (UTC)

==> Quellen sind fertig.
kotlin-language-server-1.3.9-1: Lese pkg Liste…
==> FEHLER: Cannot find the debugedit binary required for including source files in debug packages.
Fehler: ‚kotlin-language-server-1.3.9-1‘ konnte nicht erstellt werden: 
Fehler: Pakete konnten nicht erstellt werden: kotlin-language-server-1.3.9-1

fwcd commented on 2023-11-11 22:40 (UTC)

The upstream URL could be updated to https://github.com/fwcd/kotlin-language-server (same goes for the kotlin-language-server-git package).

wojtekSowinski commented on 2022-12-10 12:09 (UTC)

The package doesn't install if you have the latest version of jdk (19) installed. Java 19 is not yet supported by upstream. I suggest changing build() so that, if jdk19 is installed, JAVA_HOME is set to an earlier version.

GrimKriegor commented on 2022-09-30 20:20 (UTC)

Thank you for the feedback, everyone!

xeruf commented on 2022-09-22 08:29 (UTC) (edited on 2022-09-22 08:49 (UTC) by xeruf)

Little amendment: need to change it to -name "*-1*jdk" to not catch openjfx ;)

btw I'd be open to co-maintain

xeruf commented on 2021-12-02 14:28 (UTC)

I agree, the default jvm version should first be checked from java -version 2>&1 | grep version | cut -d'"' -f2

lyhokia commented on 2021-11-16 12:37 (UTC)

This will not work if you install a newer version of JDK, but use the old one as default, I guess we'd better change the code to find JVM to

    jdk="/usr/lib/jvm/default" &&
      test -n "$jdk" && export JAVA_HOME="$jdk"

xeruf commented on 2021-08-10 12:20 (UTC) (edited on 2021-08-10 12:26 (UTC) by xeruf)

Updated PKGBUILD:

pkgname=kotlin-language-server
pkgver=1.1.2
pkgrel=2
pkgdesc="Smart code completion, diagnostics and more for Kotlin using the Language Server Protocol"
arch=(any)
url="https://github.com/fwcd/kotlin-language-server"
license=('MIT')
conflicts=('kotlin-language-server-git')
provides=('kotlin-language-server')
depends=('java-runtime>=11')
makedepends=('java-environment>=11')
source=("${url}/archive/${pkgver}.tar.gz")
sha256sums=('82d2a1c15d1384ff9fbafef43c54ffe91a17587310980ffb760c4d1ce608f991')

build() {
  jdk="$(find /usr/lib/jvm -maxdepth 1 -name "*1*" | head -1)" &&
    test -n "$jdk" && export JAVA_HOME="$jdk"
  cd "${srcdir}/${pkgname}-${pkgver}"
  ./gradlew server:installDist
}

package() {
  mkdir -p \
    "${pkgdir}/usr/share/kotlin" \
    "${pkgdir}/usr/bin"
  cp -r \
    "${srcdir}/${pkgname}-${pkgver}/server/build/install/server/" \
    "${pkgdir}/usr/share/kotlin/kotlin-language-server"
  ln -srf \
    "${pkgdir}/usr/share/kotlin/kotlin-language-server/bin/kotlin-language-server" \
    "${pkgdir}/usr/bin/kotlin-language-server"
}

poly000 commented on 2021-08-10 04:13 (UTC)

@lightsaber: 1.1.2 will compiles.