luci-base: luasrcdiet: switch to scm clone and fix tarball name
authorJo-Philipp Wich <jo@mein.io>
Mon, 8 Apr 2019 07:04:35 +0000 (09:04 +0200)
committerJo-Philipp Wich <jo@mein.io>
Mon, 8 Apr 2019 07:04:35 +0000 (09:04 +0200)
Switch the LuaSrcDiet download to direct cached SCM clones and
fix the tarball name while we're at it.

Supersedes: #2522
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-base/Makefile

index 9bc8ec17a173fb5d574aea10abce595e558a4b51..d94804529cbc7cd3bbb3b5b3e64927508e65ced7 100644 (file)
@@ -14,13 +14,17 @@ LUCI_BASENAME:=base
 LUCI_TITLE:=LuCI core libraries
 LUCI_DEPENDS:=+lua +luci-lib-nixio +luci-lib-ip +rpcd +libubus-lua +luci-lib-jsonc +liblucihttp-lua
 
-
-PKG_SOURCE:=v1.0.0.tar.gz
-PKG_SOURCE_URL:=https://github.com/jirutka/luasrcdiet/archive/
-PKG_HASH:=48162e63e77d009f5848f18a5cabffbdfc867d0e5e73c6d407f6af5d6880151b
+LUCI_LUASRCDIET_VERSION:=1.0.0
+
+PKG_SOURCE_URL:=https://github.com/jirutka/luasrcdiet.git
+PKG_SOURCE_VERSION:=f138fc9359821d9201cd6b57cfa2fcbed5b9af97
+PKG_SOURCE_SUBDIR:=luasrcdiet-$(LUCI_LUASRCDIET_VERSION)
+PKG_SOURCE_PROTO:=git
+PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
+PKG_MIRROR_HASH:=a5c9d098549fbef618e6022b701e66c8c6fb16c910e63219adad3a4e71341f72
 PKG_LICENSE:=MIT
 
-HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/luasrcdiet-1.0.0
+HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_SOURCE_SUBDIR)
 
 include $(INCLUDE_DIR)/host-build.mk