pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/lua-lpeg



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Fri May  2 11:18:43 UTC 2025

Modified Files:
        pkgsrc/devel/lua-lpeg: Makefile PLIST
Removed Files:
        pkgsrc/devel/lua-lpeg: PLIST.Darwin

Log Message:
lua-lpeg: Stop installing lpeg.so on Darwin.

Having it installed breaks the editors/neovim build on Darwin (the only
package that pulls this package in as a dependency).  With it removed the
correct lpeg.dylib is used instead.  Fixes neovim.  Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/lua-lpeg/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/lua-lpeg/PLIST
cvs rdiff -u -r1.1 -r0 pkgsrc/devel/lua-lpeg/PLIST.Darwin

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

Modified files:

Index: pkgsrc/devel/lua-lpeg/Makefile
diff -u pkgsrc/devel/lua-lpeg/Makefile:1.20 pkgsrc/devel/lua-lpeg/Makefile:1.21
--- pkgsrc/devel/lua-lpeg/Makefile:1.20 Wed Jan 22 18:16:58 2025
+++ pkgsrc/devel/lua-lpeg/Makefile      Fri May  2 11:18:43 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.20 2025/01/22 18:16:58 adam Exp $
+# $NetBSD: Makefile,v 1.21 2025/05/02 11:18:43 jperkin Exp $
 
 DISTNAME=      lpeg-1.1.0
-PKGREVISION=   1
+PKGREVISION=   2
 PKGNAME=       ${DISTNAME:S/lpeg/${LUA_PKGPREFIX}-lpeg/}
 CATEGORIES=    devel lua
 MASTER_SITES=  https://www.inf.puc-rio.br/~roberto/lpeg/
@@ -32,11 +32,7 @@ INSTALLATION_DIRS+=  ${LUA_CDIR} ${LUA_LD
 .include "../../mk/bsd.prefs.mk"
 
 do-install:
-.if ${OPSYS} == "Darwin"
-       ${INSTALL_LIB} ${WRKSRC}/lpeg.dylib \
-               ${DESTDIR}${PREFIX}/${LUA_CDIR}
-.endif
-       ${INSTALL_LIB} ${WRKSRC}/lpeg.so \
+       ${INSTALL_LIB} ${WRKSRC}/lpeg.${SHLIB_EXT} \
                ${DESTDIR}${PREFIX}/${LUA_CDIR}
        ${INSTALL_DATA} ${WRKSRC}/re.lua \
                ${DESTDIR}${PREFIX}/${LUA_LDIR}

Index: pkgsrc/devel/lua-lpeg/PLIST
diff -u pkgsrc/devel/lua-lpeg/PLIST:1.4 pkgsrc/devel/lua-lpeg/PLIST:1.5
--- pkgsrc/devel/lua-lpeg/PLIST:1.4     Sat May  3 13:01:42 2014
+++ pkgsrc/devel/lua-lpeg/PLIST Fri May  2 11:18:43 2025
@@ -1,5 +1,5 @@
-@comment $NetBSD: PLIST,v 1.4 2014/05/03 13:01:42 alnsn Exp $
-${LUA_CDIR}/lpeg.so
+@comment $NetBSD: PLIST,v 1.5 2025/05/02 11:18:43 jperkin Exp $
+${LUA_CDIR}/lpeg.${SHLIB_EXT}
 ${LUA_DOCDIR}/lpeg.html
 ${LUA_DOCDIR}/re.html
 ${LUA_DOCDIR}/lpeg-128.gif



Home | Main Index | Thread Index | Old Index