pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc
Module Name: pkgsrc
Committed By: wiz
Date: Fri Jan 20 11:15:00 UTC 2023
Modified Files:
pkgsrc/textproc/tree-sitter: grammar.mk
pkgsrc/textproc/tree-sitter-c: Makefile PLIST
pkgsrc/textproc/tree-sitter-cmake: Makefile PLIST
pkgsrc/textproc/tree-sitter-cpp: Makefile PLIST
pkgsrc/textproc/tree-sitter-dockerfile: Makefile PLIST
pkgsrc/textproc/tree-sitter-go: Makefile PLIST
pkgsrc/textproc/tree-sitter-java: Makefile PLIST
pkgsrc/textproc/tree-sitter-json: Makefile PLIST
pkgsrc/textproc/tree-sitter-python: Makefile PLIST
pkgsrc/textproc/tree-sitter-ruby: Makefile PLIST
pkgsrc/textproc/tree-sitter-rust: Makefile PLIST
pkgsrc/textproc/tree-sitter-toml: Makefile PLIST
pkgsrc/textproc/tree-sitter-typescript: Makefile PLIST
pkgsrc/textproc/tree-sitter-yaml: Makefile PLIST
Log Message:
treesitter: use libtool for generating grammars
Hopefully fixes use on macOS
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/tree-sitter/grammar.mk
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-c/Makefile \
pkgsrc/textproc/tree-sitter-c/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-cmake/Makefile \
pkgsrc/textproc/tree-sitter-cmake/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-cpp/Makefile \
pkgsrc/textproc/tree-sitter-cpp/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-dockerfile/Makefile \
pkgsrc/textproc/tree-sitter-dockerfile/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-go/Makefile \
pkgsrc/textproc/tree-sitter-go/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-java/Makefile \
pkgsrc/textproc/tree-sitter-java/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-json/Makefile \
pkgsrc/textproc/tree-sitter-json/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-python/Makefile \
pkgsrc/textproc/tree-sitter-python/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-ruby/Makefile \
pkgsrc/textproc/tree-sitter-ruby/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-rust/Makefile \
pkgsrc/textproc/tree-sitter-rust/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-toml/Makefile \
pkgsrc/textproc/tree-sitter-toml/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-typescript/Makefile \
pkgsrc/textproc/tree-sitter-typescript/PLIST
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/tree-sitter-yaml/Makefile \
pkgsrc/textproc/tree-sitter-yaml/PLIST
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/tree-sitter/grammar.mk
diff -u pkgsrc/textproc/tree-sitter/grammar.mk:1.4 pkgsrc/textproc/tree-sitter/grammar.mk:1.5
--- pkgsrc/textproc/tree-sitter/grammar.mk:1.4 Wed Jan 18 16:32:26 2023
+++ pkgsrc/textproc/tree-sitter/grammar.mk Fri Jan 20 11:14:58 2023
@@ -1,4 +1,4 @@
-# $NetBSD: grammar.mk,v 1.4 2023/01/18 16:32:26 wiz Exp $
+# $NetBSD: grammar.mk,v 1.5 2023/01/20 11:14:58 wiz Exp $
#
# Common logic to build and install tree-sitter grammars.
#
@@ -10,18 +10,19 @@ GRAMMAR_LIBRARY_NAME?= lib${PKGBASE}
GRAMMAR_SOURCE_DIR?= src
USE_LANGUAGES+= c c++
+USE_LIBTOOL= yes
do-build:
cd ${WRKSRC}/${GRAMMAR_SOURCE_DIR} && \
- ${CC} ${CFLAGS} -std=c99 -I. -c -fPIC parser.c
+ libtool --mode=compile ${CC} ${CFLAGS} -std=c99 -I. -c -fPIC parser.c
cd ${WRKSRC}/${GRAMMAR_SOURCE_DIR} && \
- if [ -f scanner.c ]; then ${CC} ${CFLAGS} -std=c99 -I. -c -fPIC scanner.c; fi
+ if [ -f scanner.c ]; then libtool --mode=compile ${CC} ${CFLAGS} -std=c99 -I. -c -fPIC scanner.c; fi
cd ${WRKSRC}/${GRAMMAR_SOURCE_DIR} && \
- if [ -f scanner.cc ]; then ${CXX} ${CXXFLAGS} -I. -c -fPIC scanner.cc; fi
+ if [ -f scanner.cc ]; then libtool --mode=compile ${CXX} ${CXXFLAGS} -I. -c -fPIC scanner.cc; fi
cd ${WRKSRC}/${GRAMMAR_SOURCE_DIR} && \
- ${CXX} -shared -o ${GRAMMAR_LIBRARY_NAME}.so *.o
+ libtool --mode=link ${CXX} ${LDFLAGS} -module -rpath ${PREFIX}/lib -shared -avoid-version -o ${GRAMMAR_LIBRARY_NAME}.la *.lo
INSTALLATION_DIRS+= lib
do-install:
- ${INSTALL_LIB} ${WRKSRC}/${GRAMMAR_SOURCE_DIR}/${GRAMMAR_LIBRARY_NAME}.so ${DESTDIR}${PREFIX}/lib
+ libtool --mode=install ${INSTALL_LIB} ${WRKSRC}/${GRAMMAR_SOURCE_DIR}/${GRAMMAR_LIBRARY_NAME}.la ${DESTDIR}${PREFIX}/lib
Index: pkgsrc/textproc/tree-sitter-c/Makefile
diff -u pkgsrc/textproc/tree-sitter-c/Makefile:1.1 pkgsrc/textproc/tree-sitter-c/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-c/Makefile:1.1 Wed Jan 18 13:28:34 2023
+++ pkgsrc/textproc/tree-sitter-c/Makefile Fri Jan 20 11:14:58 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 13:28:34 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:58 wiz Exp $
DISTNAME= tree-sitter-c-0.20.2
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=tree-sitter/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-c/PLIST
diff -u pkgsrc/textproc/tree-sitter-c/PLIST:1.1 pkgsrc/textproc/tree-sitter-c/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-c/PLIST:1.1 Wed Jan 18 13:28:34 2023
+++ pkgsrc/textproc/tree-sitter-c/PLIST Fri Jan 20 11:14:58 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 13:28:34 wiz Exp $
-lib/libtree-sitter-c.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:58 wiz Exp $
+lib/libtree-sitter-c.la
Index: pkgsrc/textproc/tree-sitter-cmake/Makefile
diff -u pkgsrc/textproc/tree-sitter-cmake/Makefile:1.1 pkgsrc/textproc/tree-sitter-cmake/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-cmake/Makefile:1.1 Wed Jan 18 13:54:59 2023
+++ pkgsrc/textproc/tree-sitter-cmake/Makefile Fri Jan 20 11:14:58 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 13:54:59 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:58 wiz Exp $
DISTNAME= tree-sitter-cmake-0.1.0
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=uyha/}
#GITHUB_TAG= ${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-cmake/PLIST
diff -u pkgsrc/textproc/tree-sitter-cmake/PLIST:1.1 pkgsrc/textproc/tree-sitter-cmake/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-cmake/PLIST:1.1 Wed Jan 18 13:54:59 2023
+++ pkgsrc/textproc/tree-sitter-cmake/PLIST Fri Jan 20 11:14:58 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 13:54:59 wiz Exp $
-lib/libtree-sitter-cmake.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:58 wiz Exp $
+lib/libtree-sitter-cmake.la
Index: pkgsrc/textproc/tree-sitter-cpp/Makefile
diff -u pkgsrc/textproc/tree-sitter-cpp/Makefile:1.1 pkgsrc/textproc/tree-sitter-cpp/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-cpp/Makefile:1.1 Wed Jan 18 13:34:27 2023
+++ pkgsrc/textproc/tree-sitter-cpp/Makefile Fri Jan 20 11:14:58 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 13:34:27 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:58 wiz Exp $
DISTNAME= tree-sitter-cpp-0.20.0
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=tree-sitter/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-cpp/PLIST
diff -u pkgsrc/textproc/tree-sitter-cpp/PLIST:1.1 pkgsrc/textproc/tree-sitter-cpp/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-cpp/PLIST:1.1 Wed Jan 18 13:34:27 2023
+++ pkgsrc/textproc/tree-sitter-cpp/PLIST Fri Jan 20 11:14:58 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 13:34:27 wiz Exp $
-lib/libtree-sitter-cpp.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:58 wiz Exp $
+lib/libtree-sitter-cpp.la
Index: pkgsrc/textproc/tree-sitter-dockerfile/Makefile
diff -u pkgsrc/textproc/tree-sitter-dockerfile/Makefile:1.1 pkgsrc/textproc/tree-sitter-dockerfile/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-dockerfile/Makefile:1.1 Wed Jan 18 16:38:22 2023
+++ pkgsrc/textproc/tree-sitter-dockerfile/Makefile Fri Jan 20 11:14:58 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 16:38:22 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:58 wiz Exp $
DISTNAME= tree-sitter-dockerfile-0.1.2
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=camdencheek/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-dockerfile/PLIST
diff -u pkgsrc/textproc/tree-sitter-dockerfile/PLIST:1.1 pkgsrc/textproc/tree-sitter-dockerfile/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-dockerfile/PLIST:1.1 Wed Jan 18 16:38:22 2023
+++ pkgsrc/textproc/tree-sitter-dockerfile/PLIST Fri Jan 20 11:14:58 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 16:38:22 wiz Exp $
-lib/libtree-sitter-dockerfile.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:58 wiz Exp $
+lib/libtree-sitter-dockerfile.la
Index: pkgsrc/textproc/tree-sitter-go/Makefile
diff -u pkgsrc/textproc/tree-sitter-go/Makefile:1.1 pkgsrc/textproc/tree-sitter-go/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-go/Makefile:1.1 Wed Jan 18 16:21:23 2023
+++ pkgsrc/textproc/tree-sitter-go/Makefile Fri Jan 20 11:14:59 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 16:21:23 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:59 wiz Exp $
DISTNAME= tree-sitter-go-0.19.1
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=tree-sitter/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-go/PLIST
diff -u pkgsrc/textproc/tree-sitter-go/PLIST:1.1 pkgsrc/textproc/tree-sitter-go/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-go/PLIST:1.1 Wed Jan 18 16:21:23 2023
+++ pkgsrc/textproc/tree-sitter-go/PLIST Fri Jan 20 11:14:59 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 16:21:23 wiz Exp $
-lib/libtree-sitter-go.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:59 wiz Exp $
+lib/libtree-sitter-go.la
Index: pkgsrc/textproc/tree-sitter-java/Makefile
diff -u pkgsrc/textproc/tree-sitter-java/Makefile:1.1 pkgsrc/textproc/tree-sitter-java/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-java/Makefile:1.1 Wed Jan 18 16:24:20 2023
+++ pkgsrc/textproc/tree-sitter-java/Makefile Fri Jan 20 11:14:59 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 16:24:20 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:59 wiz Exp $
DISTNAME= tree-sitter-java-0.20.1
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=tree-sitter/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-java/PLIST
diff -u pkgsrc/textproc/tree-sitter-java/PLIST:1.1 pkgsrc/textproc/tree-sitter-java/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-java/PLIST:1.1 Wed Jan 18 16:24:20 2023
+++ pkgsrc/textproc/tree-sitter-java/PLIST Fri Jan 20 11:14:59 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 16:24:20 wiz Exp $
-lib/libtree-sitter-java.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:59 wiz Exp $
+lib/libtree-sitter-java.la
Index: pkgsrc/textproc/tree-sitter-json/Makefile
diff -u pkgsrc/textproc/tree-sitter-json/Makefile:1.1 pkgsrc/textproc/tree-sitter-json/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-json/Makefile:1.1 Wed Jan 18 13:37:22 2023
+++ pkgsrc/textproc/tree-sitter-json/Makefile Fri Jan 20 11:14:59 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 13:37:22 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:59 wiz Exp $
DISTNAME= tree-sitter-json-0.19.0
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=tree-sitter/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-json/PLIST
diff -u pkgsrc/textproc/tree-sitter-json/PLIST:1.1 pkgsrc/textproc/tree-sitter-json/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-json/PLIST:1.1 Wed Jan 18 13:37:22 2023
+++ pkgsrc/textproc/tree-sitter-json/PLIST Fri Jan 20 11:14:59 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 13:37:22 wiz Exp $
-lib/libtree-sitter-json.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:59 wiz Exp $
+lib/libtree-sitter-json.la
Index: pkgsrc/textproc/tree-sitter-python/Makefile
diff -u pkgsrc/textproc/tree-sitter-python/Makefile:1.1 pkgsrc/textproc/tree-sitter-python/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-python/Makefile:1.1 Wed Jan 18 10:18:35 2023
+++ pkgsrc/textproc/tree-sitter-python/Makefile Fri Jan 20 11:14:59 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 10:18:35 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:59 wiz Exp $
DISTNAME= tree-sitter-python-0.20.0
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=tree-sitter/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-python/PLIST
diff -u pkgsrc/textproc/tree-sitter-python/PLIST:1.1 pkgsrc/textproc/tree-sitter-python/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-python/PLIST:1.1 Wed Jan 18 10:18:35 2023
+++ pkgsrc/textproc/tree-sitter-python/PLIST Fri Jan 20 11:14:59 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 10:18:35 wiz Exp $
-lib/libtree-sitter-python.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:59 wiz Exp $
+lib/libtree-sitter-python.la
Index: pkgsrc/textproc/tree-sitter-ruby/Makefile
diff -u pkgsrc/textproc/tree-sitter-ruby/Makefile:1.1 pkgsrc/textproc/tree-sitter-ruby/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-ruby/Makefile:1.1 Wed Jan 18 16:26:49 2023
+++ pkgsrc/textproc/tree-sitter-ruby/Makefile Fri Jan 20 11:14:59 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 16:26:49 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:59 wiz Exp $
DISTNAME= tree-sitter-ruby-0.19.0
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=tree-sitter/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-ruby/PLIST
diff -u pkgsrc/textproc/tree-sitter-ruby/PLIST:1.1 pkgsrc/textproc/tree-sitter-ruby/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-ruby/PLIST:1.1 Wed Jan 18 16:26:49 2023
+++ pkgsrc/textproc/tree-sitter-ruby/PLIST Fri Jan 20 11:14:59 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 16:26:49 wiz Exp $
-lib/libtree-sitter-ruby.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:59 wiz Exp $
+lib/libtree-sitter-ruby.la
Index: pkgsrc/textproc/tree-sitter-rust/Makefile
diff -u pkgsrc/textproc/tree-sitter-rust/Makefile:1.1 pkgsrc/textproc/tree-sitter-rust/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-rust/Makefile:1.1 Wed Jan 18 13:20:44 2023
+++ pkgsrc/textproc/tree-sitter-rust/Makefile Fri Jan 20 11:14:59 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 13:20:44 pin Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:59 wiz Exp $
DISTNAME= tree-sitter-rust-0.20.3
+PKGREVISION= 2
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=tree-sitter/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-rust/PLIST
diff -u pkgsrc/textproc/tree-sitter-rust/PLIST:1.1 pkgsrc/textproc/tree-sitter-rust/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-rust/PLIST:1.1 Wed Jan 18 13:20:44 2023
+++ pkgsrc/textproc/tree-sitter-rust/PLIST Fri Jan 20 11:14:59 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 13:20:44 pin Exp $
-lib/libtree-sitter-rust.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:59 wiz Exp $
+lib/libtree-sitter-rust.la
Index: pkgsrc/textproc/tree-sitter-toml/Makefile
diff -u pkgsrc/textproc/tree-sitter-toml/Makefile:1.1 pkgsrc/textproc/tree-sitter-toml/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-toml/Makefile:1.1 Wed Jan 18 13:40:47 2023
+++ pkgsrc/textproc/tree-sitter-toml/Makefile Fri Jan 20 11:14:59 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 13:40:47 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:59 wiz Exp $
DISTNAME= tree-sitter-toml-0.5.1
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=ikatyang/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-toml/PLIST
diff -u pkgsrc/textproc/tree-sitter-toml/PLIST:1.1 pkgsrc/textproc/tree-sitter-toml/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-toml/PLIST:1.1 Wed Jan 18 13:40:47 2023
+++ pkgsrc/textproc/tree-sitter-toml/PLIST Fri Jan 20 11:14:59 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 13:40:47 wiz Exp $
-lib/libtree-sitter-toml.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:59 wiz Exp $
+lib/libtree-sitter-toml.la
Index: pkgsrc/textproc/tree-sitter-typescript/Makefile
diff -u pkgsrc/textproc/tree-sitter-typescript/Makefile:1.1 pkgsrc/textproc/tree-sitter-typescript/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-typescript/Makefile:1.1 Wed Jan 18 16:33:14 2023
+++ pkgsrc/textproc/tree-sitter-typescript/Makefile Fri Jan 20 11:14:59 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 16:33:14 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:59 wiz Exp $
DISTNAME= tree-sitter-typescript-0.20.1
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=tree-sitter/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-typescript/PLIST
diff -u pkgsrc/textproc/tree-sitter-typescript/PLIST:1.1 pkgsrc/textproc/tree-sitter-typescript/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-typescript/PLIST:1.1 Wed Jan 18 16:33:14 2023
+++ pkgsrc/textproc/tree-sitter-typescript/PLIST Fri Jan 20 11:14:59 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 16:33:14 wiz Exp $
-lib/libtree-sitter-typescript.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:59 wiz Exp $
+lib/libtree-sitter-typescript.la
Index: pkgsrc/textproc/tree-sitter-yaml/Makefile
diff -u pkgsrc/textproc/tree-sitter-yaml/Makefile:1.1 pkgsrc/textproc/tree-sitter-yaml/Makefile:1.2
--- pkgsrc/textproc/tree-sitter-yaml/Makefile:1.1 Wed Jan 18 13:45:08 2023
+++ pkgsrc/textproc/tree-sitter-yaml/Makefile Fri Jan 20 11:14:59 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2023/01/18 13:45:08 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2023/01/20 11:14:59 wiz Exp $
DISTNAME= tree-sitter-yaml-0.5.0
+PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=ikatyang/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/textproc/tree-sitter-yaml/PLIST
diff -u pkgsrc/textproc/tree-sitter-yaml/PLIST:1.1 pkgsrc/textproc/tree-sitter-yaml/PLIST:1.2
--- pkgsrc/textproc/tree-sitter-yaml/PLIST:1.1 Wed Jan 18 13:45:08 2023
+++ pkgsrc/textproc/tree-sitter-yaml/PLIST Fri Jan 20 11:14:59 2023
@@ -1,2 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2023/01/18 13:45:08 wiz Exp $
-lib/libtree-sitter-yaml.so
+@comment $NetBSD: PLIST,v 1.2 2023/01/20 11:14:59 wiz Exp $
+lib/libtree-sitter-yaml.la
Home |
Main Index |
Thread Index |
Old Index