pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/hs-lsp



Module Name:    pkgsrc
Committed By:   pho
Date:           Tue Oct 31 04:21:35 UTC 2023

Modified Files:
        pkgsrc/devel/hs-lsp: Makefile PLIST buildlink3.mk distinfo

Log Message:
devel/hs-lsp: Update to 2.2.0.0

2.2.0.0
* Many changes relating to client configuration
  - lsp now sends workspace/configuration requests in response to
    intialized and workspace/didChangeConfiguration requests. It still
    attempts to parse configuration from intializationOptions and
    workspace/didChangeConfiguration as a fallback.
  - Servers must provide a configuration section for use in
    workspace/configuration.
  - parseConfig will now be called on the object corresponding to the
    configuration section, not the whole object.
  - New callback for when configuration changes, to allow servers to react.
* The logging of messages sent by the protocol has been disabled, as this
  can prove troublesome for servers that log these to the client:
  https://github.com/haskell/lsp/issues/447

2.1.0.0
* Fix handling of optional methods.
* staticHandlers now takes the client capabilities as an argument. These
  are static across the lifecycle of the server, so this allows a server to
  decide at construction e.g. whether to provide handlers for resolve
  methods depending on whether the client supports it.

2.0.0.0
* Support lsp-types-2.0.0.0.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/hs-lsp/Makefile \
    pkgsrc/devel/hs-lsp/buildlink3.mk
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/hs-lsp/PLIST \
    pkgsrc/devel/hs-lsp/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/hs-lsp/Makefile
diff -u pkgsrc/devel/hs-lsp/Makefile:1.6 pkgsrc/devel/hs-lsp/Makefile:1.7
--- pkgsrc/devel/hs-lsp/Makefile:1.6    Mon Oct  9 04:54:22 2023
+++ pkgsrc/devel/hs-lsp/Makefile        Tue Oct 31 04:21:35 2023
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2023/10/09 04:54:22 pho Exp $
+# $NetBSD: Makefile,v 1.7 2023/10/31 04:21:35 pho Exp $
 
-DISTNAME=      lsp-1.6.0.0
-PKGREVISION=   2
+DISTNAME=      lsp-2.2.0.0
 CATEGORIES=    devel
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -15,9 +14,11 @@ LICENSE=     mit
 .include "../../devel/hs-data-default/buildlink3.mk"
 .include "../../devel/hs-hashable/buildlink3.mk"
 .include "../../devel/hs-lens/buildlink3.mk"
+.include "../../converters/hs-lens-aeson/buildlink3.mk"
 .include "../../devel/hs-lsp-types/buildlink3.mk"
 .include "../../textproc/hs-prettyprinter/buildlink3.mk"
 .include "../../devel/hs-random/buildlink3.mk"
+.include "../../devel/hs-row-types/buildlink3.mk"
 .include "../../devel/hs-sorted-list/buildlink3.mk"
 .include "../../sysutils/hs-temporary/buildlink3.mk"
 .include "../../textproc/hs-text-rope/buildlink3.mk"
Index: pkgsrc/devel/hs-lsp/buildlink3.mk
diff -u pkgsrc/devel/hs-lsp/buildlink3.mk:1.6 pkgsrc/devel/hs-lsp/buildlink3.mk:1.7
--- pkgsrc/devel/hs-lsp/buildlink3.mk:1.6       Mon Oct  9 04:54:22 2023
+++ pkgsrc/devel/hs-lsp/buildlink3.mk   Tue Oct 31 04:21:35 2023
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.6 2023/10/09 04:54:22 pho Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2023/10/31 04:21:35 pho Exp $
 
 BUILDLINK_TREE+=       hs-lsp
 
 .if !defined(HS_LSP_BUILDLINK3_MK)
 HS_LSP_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.hs-lsp+= hs-lsp>=1.6.0
-BUILDLINK_ABI_DEPENDS.hs-lsp+= hs-lsp>=1.6.0.0nb2
+BUILDLINK_API_DEPENDS.hs-lsp+= hs-lsp>=2.2.0
+BUILDLINK_ABI_DEPENDS.hs-lsp+= hs-lsp>=2.2.0.0
 BUILDLINK_PKGSRCDIR.hs-lsp?=   ../../devel/hs-lsp
 
 .include "../../converters/hs-aeson/buildlink3.mk"
@@ -16,9 +16,11 @@ BUILDLINK_PKGSRCDIR.hs-lsp?= ../../devel
 .include "../../devel/hs-data-default/buildlink3.mk"
 .include "../../devel/hs-hashable/buildlink3.mk"
 .include "../../devel/hs-lens/buildlink3.mk"
+.include "../../converters/hs-lens-aeson/buildlink3.mk"
 .include "../../devel/hs-lsp-types/buildlink3.mk"
 .include "../../textproc/hs-prettyprinter/buildlink3.mk"
 .include "../../devel/hs-random/buildlink3.mk"
+.include "../../devel/hs-row-types/buildlink3.mk"
 .include "../../devel/hs-sorted-list/buildlink3.mk"
 .include "../../sysutils/hs-temporary/buildlink3.mk"
 .include "../../textproc/hs-text-rope/buildlink3.mk"

Index: pkgsrc/devel/hs-lsp/PLIST
diff -u pkgsrc/devel/hs-lsp/PLIST:1.2 pkgsrc/devel/hs-lsp/PLIST:1.3
--- pkgsrc/devel/hs-lsp/PLIST:1.2       Mon Jan 30 03:56:55 2023
+++ pkgsrc/devel/hs-lsp/PLIST   Tue Oct 31 04:21:35 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2023/01/30 03:56:55 pho Exp $
+@comment $NetBSD: PLIST,v 1.3 2023/10/31 04:21:35 pho Exp $
 lib/lsp-${PKGVERSION}/${HS_VERSION}/package-description
 lib/lsp-${PKGVERSION}/${HS_VERSION}/package-id
 ${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so
@@ -25,13 +25,14 @@ lib/${HS_PLATFORM}/${HS_PKGID}/Language/
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID}/Language/LSP/VFS.p_hi
 lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}.a
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}_p.a
-${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/LICENSE
+share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/LICENSE
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/Language-LSP-Diagnostics.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/Language-LSP-Logging.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/Language-LSP-Server.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/Language-LSP-VFS.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index-124.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index-36.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index-46.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index-60.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index-95.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index-A.html
@@ -60,10 +61,12 @@ ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index-W.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index-X.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/doc-index.json
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/haddock-bundle.min.js
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/index.html
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/linuwial.css
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/lsp.haddock
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/meta.json
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/quick-jump.css
+${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/quick-jump.min.js
 ${PLIST.doc}share/doc/${HS_PLATFORM}/lsp-${PKGVERSION}/html/synopsis.png
Index: pkgsrc/devel/hs-lsp/distinfo
diff -u pkgsrc/devel/hs-lsp/distinfo:1.2 pkgsrc/devel/hs-lsp/distinfo:1.3
--- pkgsrc/devel/hs-lsp/distinfo:1.2    Mon Jan 30 03:56:55 2023
+++ pkgsrc/devel/hs-lsp/distinfo        Tue Oct 31 04:21:35 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2023/01/30 03:56:55 pho Exp $
+$NetBSD: distinfo,v 1.3 2023/10/31 04:21:35 pho Exp $
 
-BLAKE2s (lsp-1.6.0.0.tar.gz) = 92e75b81fcf2b50f43281f23edf50c857d878e7b0ddbc2102cc378bcccaf386d
-SHA512 (lsp-1.6.0.0.tar.gz) = e943409c6321d87178b8ac2e331ee67e259df9661a7ad4e0d30238ea79b29e79129b45bdb25d420e633e7e74c632ce6f1a1ba6e6a3ead2e0c47db5a3418cf476
-Size (lsp-1.6.0.0.tar.gz) = 38071 bytes
+BLAKE2s (lsp-2.2.0.0.tar.gz) = dbbea38a4638e0ec146f64ea10088c682826d5890ce3678673c2982332c034ad
+SHA512 (lsp-2.2.0.0.tar.gz) = ce29342a0db433b7dd73dc057b016ec45f6e4f21a3b16c023c5ced68651d8469d2cf853854ff447c3650efa3d6febce3d3ad1d4de42e65fd697e82980fd3a6f5
+Size (lsp-2.2.0.0.tar.gz) = 41494 bytes



Home | Main Index | Thread Index | Old Index