From cd52f35335e95daf846743a441289564daae195d Mon Sep 17 00:00:00 2001 From: 0xACE <0xACE@users.noreply.github.com> Date: Mon, 9 Mar 2015 21:52:35 +0100 Subject: Updated mman-win32 This updates the the checksum and version to the latest commit... If you're not willing to change to the latest commit, you could change the URL to: https://github.com/witwall/mman-win32/archive/3421c28e753c38d24a2e27c111b1c9b4601ebe7d.zip Rather than keeping: https://github.com/witwall/mman-win32/archive/master.tar.gz That master.tar.gz is probably always pointing at the latest commit. --- src/mman-win32.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mman-win32.mk b/src/mman-win32.mk index ef722b4..aa88aa9 100644 --- a/src/mman-win32.mk +++ b/src/mman-win32.mk @@ -3,8 +3,8 @@ PKG := mman-win32 $(PKG)_IGNORE := -$(PKG)_VERSION := 3421c28e753c38d24a2e27c111b1c9b4601ebe7d -$(PKG)_CHECKSUM := c33e84043d49d0e33bc434bda3a16ce60432e789 +$(PKG)_VERSION := 378ed6b69bb7220511dd9cd0973c22b3f6773ce7 +$(PKG)_CHECKSUM := f2e54393f530b35d1736fa98a5a29d7d3a0ce76b $(PKG)_SUBDIR := mman-win32-master $(PKG)_FILE := mman-win32-$($(PKG)_VERSION).tar.gz $(PKG)_URL := https://github.com/witwall/mman-win32/archive/master.tar.gz -- cgit v0.12 From ad0e46aa82b3bbccea15a5c0de95a2d71434775e Mon Sep 17 00:00:00 2001 From: 0xACE <0xACE@users.noreply.github.com> Date: Tue, 10 Mar 2015 01:19:16 +0100 Subject: Update mman-win32.mk Rather than always downloading the latest commit, this will cause it to download a specific commit. --- src/mman-win32.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mman-win32.mk b/src/mman-win32.mk index aa88aa9..36b4262 100644 --- a/src/mman-win32.mk +++ b/src/mman-win32.mk @@ -3,11 +3,11 @@ PKG := mman-win32 $(PKG)_IGNORE := -$(PKG)_VERSION := 378ed6b69bb7220511dd9cd0973c22b3f6773ce7 -$(PKG)_CHECKSUM := f2e54393f530b35d1736fa98a5a29d7d3a0ce76b +$(PKG)_VERSION := 3421c28e753c38d24a2e27c111b1c9b4601ebe7d +$(PKG)_CHECKSUM := c33e84043d49d0e33bc434bda3a16ce60432e789 $(PKG)_SUBDIR := mman-win32-master $(PKG)_FILE := mman-win32-$($(PKG)_VERSION).tar.gz -$(PKG)_URL := https://github.com/witwall/mman-win32/archive/master.tar.gz +$(PKG)_URL := https://github.com/witwall/mman-win32/archive/3421c28e753c38d24a2e27c111b1c9b4601ebe7d.zip $(PKG)_DEPS := gcc define $(PKG)_UPDATE -- cgit v0.12 From dced1f10b67e9a97e1d301146723daffa5d30ed6 Mon Sep 17 00:00:00 2001 From: 0xACE <0xACE@users.noreply.github.com> Date: Tue, 10 Mar 2015 02:28:45 +0100 Subject: Updated to the latest mman-win32 Updated to the latest mman-win32. Improved the method of resolving the URL and UPDATE variables. --- src/mman-win32.mk | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/mman-win32.mk b/src/mman-win32.mk index 36b4262..7695ab2 100644 --- a/src/mman-win32.mk +++ b/src/mman-win32.mk @@ -3,17 +3,14 @@ PKG := mman-win32 $(PKG)_IGNORE := -$(PKG)_VERSION := 3421c28e753c38d24a2e27c111b1c9b4601ebe7d -$(PKG)_CHECKSUM := c33e84043d49d0e33bc434bda3a16ce60432e789 +$(PKG)_VERSION := 378ed6b69bb7220511dd9cd0973c22b3f6773ce7 +$(PKG)_CHECKSUM := f2e54393f530b35d1736fa98a5a29d7d3a0ce76b $(PKG)_SUBDIR := mman-win32-master $(PKG)_FILE := mman-win32-$($(PKG)_VERSION).tar.gz -$(PKG)_URL := https://github.com/witwall/mman-win32/archive/3421c28e753c38d24a2e27c111b1c9b4601ebe7d.zip +$(PKG)_URL := https://github.com/witwall/mman-win32/archive/$($(PKG)_VERSION).zip $(PKG)_DEPS := gcc -define $(PKG)_UPDATE - echo 'TODO: Updates for package mman-win32 need to be written.' >&2; - echo $(mman-win32_VERSION) -endef +$(PKG)_UPDATE = $(call MXE_GET_GITHUB_SHA, witwall/mman-win32, master) define $(PKG)_BUILD cd '$(1)' && chmod +x configure -- cgit v0.12