pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc Use LUA_PKGPREFIX. Many Lua packages already do, but n...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1196e107e01a
branches:  trunk
changeset: 626002:1196e107e01a
user:      dholland <dholland%pkgsrc.org@localhost>
date:      Wed Oct 30 06:03:37 2013 +0000

description:
Use LUA_PKGPREFIX. Many Lua packages already do, but not these.

diffstat:

 databases/lua-sqlite3/Makefile |  3 ++-
 devel/lua-filesystem/Makefile  |  4 ++--
 devel/lua-gi/Makefile          |  4 ++--
 devel/lua-lpeg/Makefile        |  6 +++---
 devel/lua-penlight/Makefile    |  4 ++--
 security/lua-sec/Makefile      |  4 ++--
 www/lua-curl/Makefile          |  3 ++-
 7 files changed, 15 insertions(+), 13 deletions(-)

diffs (108 lines):

diff -r a1d531cce829 -r 1196e107e01a databases/lua-sqlite3/Makefile
--- a/databases/lua-sqlite3/Makefile    Wed Oct 30 02:59:03 2013 +0000
+++ b/databases/lua-sqlite3/Makefile    Wed Oct 30 06:03:37 2013 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2013/10/19 09:07:01 adam Exp $
+# $NetBSD: Makefile,v 1.3 2013/10/30 06:03:38 dholland Exp $
 
 DISTNAME=      lua-sqlite3-0.4.1
+PKGNAME=       ${LUA_PKGPREFIX}-sqlite3-0.4.1
 PKGREVISION=   1
 CATEGORIES=    databases
 MASTER_SITES=  http://www.mroth.net/lua-sqlite3/
diff -r a1d531cce829 -r 1196e107e01a devel/lua-filesystem/Makefile
--- a/devel/lua-filesystem/Makefile     Wed Oct 30 02:59:03 2013 +0000
+++ b/devel/lua-filesystem/Makefile     Wed Oct 30 06:03:37 2013 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2013/09/13 12:09:37 fhajny Exp $
+# $NetBSD: Makefile,v 1.6 2013/10/30 06:03:37 dholland Exp $
 #
 
 DISTNAME=              luafilesystem-1.6.2
-PKGNAME=               ${DISTNAME:S/lua/lua-/}
+PKGNAME=               ${DISTNAME:S/lua/${LUA_PKGPREFIX}-/}
 PKGREVISION=           1
 CATEGORIES=            devel
 MASTER_SITES=          http://github.com/downloads/keplerproject/luafilesystem/
diff -r a1d531cce829 -r 1196e107e01a devel/lua-gi/Makefile
--- a/devel/lua-gi/Makefile     Wed Oct 30 02:59:03 2013 +0000
+++ b/devel/lua-gi/Makefile     Wed Oct 30 06:03:37 2013 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.2 2013/07/25 13:05:18 degroote Exp $
+# $NetBSD: Makefile,v 1.3 2013/10/30 06:03:37 dholland Exp $
 #
 
 DISTNAME=      lgi-${VERSION}
-PKGNAME=       lua-gi-${VERSION}
+PKGNAME=       ${LUA_PKGPREFIX}-gi-${VERSION}
 VERSION=       0.7.1
 CATEGORIES=    devel
 MASTER_SITES=  -https://codeload.github.com/pavouk/lgi/tar.gz/${VERSION}
diff -r a1d531cce829 -r 1196e107e01a devel/lua-lpeg/Makefile
--- a/devel/lua-lpeg/Makefile   Wed Oct 30 02:59:03 2013 +0000
+++ b/devel/lua-lpeg/Makefile   Wed Oct 30 06:03:37 2013 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.3 2013/08/15 06:32:05 obache Exp $
+# $NetBSD: Makefile,v 1.4 2013/10/30 06:03:37 dholland Exp $
 #
 
 DISTNAME=      lpeg-0.12
-PKGNAME=       ${DISTNAME:S/lpeg/lua-lpeg/}
+PKGNAME=       ${DISTNAME:S/lpeg/${LUA_PKGPREFIX}-lpeg/}
 PKGREVISION=   1
 CATEGORIES=    devel
 MASTER_SITES=  http://www.inf.puc-rio.br/~roberto/lpeg/
@@ -30,7 +30,7 @@
 SUBST_FILES.interp=    test.lua
 SUBST_SED.interp=      -e 's|^\#!.*|\#!${PREFIX}/bin/lua|'
 
-LPEG_HTML_DIR=         share/doc/${PKGBASE}
+LPEG_HTML_DIR=         share/doc/lua-lpeg
 INSTALLATION_DIRS+=    ${LUA_CDIR} ${LUA_LDIR} ${LPEG_HTML_DIR}
 
 do-install:
diff -r a1d531cce829 -r 1196e107e01a devel/lua-penlight/Makefile
--- a/devel/lua-penlight/Makefile       Wed Oct 30 02:59:03 2013 +0000
+++ b/devel/lua-penlight/Makefile       Wed Oct 30 06:03:37 2013 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.3 2013/07/14 20:28:19 alnsn Exp $
+# $NetBSD: Makefile,v 1.4 2013/10/30 06:03:37 dholland Exp $
 #
 
 DISTNAME=      ${PL_VERSION}
-PKGNAME=       lua-penlight-${PL_VERSION}
+PKGNAME=       ${LUA_PKGPREFIX}-penlight-${PL_VERSION}
 CATEGORIES=    devel
 MASTER_SITES=  https://github.com/stevedonovan/Penlight/archive/
 
diff -r a1d531cce829 -r 1196e107e01a security/lua-sec/Makefile
--- a/security/lua-sec/Makefile Wed Oct 30 02:59:03 2013 +0000
+++ b/security/lua-sec/Makefile Wed Oct 30 06:03:37 2013 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2013/09/13 12:17:19 fhajny Exp $
+# $NetBSD: Makefile,v 1.6 2013/10/30 06:03:38 dholland Exp $
 #
 
 DISTNAME=              luasec-0.4.1
@@ -14,7 +14,7 @@
 
 .include "../../mk/bsd.prefs.mk"
 
-DEPENDS+=              lua-socket>=2.0:../../net/lua-socket
+DEPENDS+=              ${LUA_PKGPREFIX}-socket>=2.0:../../net/lua-socket
 
 USE_TOOLS+=            gmake
 
diff -r a1d531cce829 -r 1196e107e01a www/lua-curl/Makefile
--- a/www/lua-curl/Makefile     Wed Oct 30 02:59:03 2013 +0000
+++ b/www/lua-curl/Makefile     Wed Oct 30 06:03:37 2013 +0000
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.7 2013/09/17 12:03:42 joerg Exp $
+# $NetBSD: Makefile,v 1.8 2013/10/30 06:03:38 dholland Exp $
 #
 
 DISTNAME=      lua-curl-0.2
+PKGNAME=       ${LUA_PKGPREFIX}-curl-0.2
 PKGREVISION=   5
 CATEGORIES=    www
 MASTER_SITES=  http://luaforge.net/frs/download.php/2634/



Home | Main Index | Thread Index | Old Index