# HG changeset patch # User Markus Bergholz # Date 1381589131 -7200 # Node ID 16321a166cc4067fa6705e31a06d34be1071672a # Parent 33ab5eb4fed67a39269101cec5e3273d31e3590f add dos2unix and wget. diff -r 33ab5eb4fed6 -r 16321a166cc4 Makefile.in --- a/Makefile.in Fri Oct 11 23:17:58 2013 -0400 +++ b/Makefile.in Sat Oct 12 16:45:31 2013 +0200 @@ -274,8 +274,7 @@ MSYS_EXTENSION_VER := 1.0.13 MSYS_BASE_DIR := $(TOP_DIR)/msys-base MSYS_EXTENSION_DIR := $(TOP_DIR)/msys-extension - MSYS_BASE_PACKAGES := $(addprefix msys-,bash coreutils diffutils file findutils gawk grep gzip less libiconv libintl libmagic make msys-core regex sed tar termcap) - MSYS_EXTENTION_PACKAGES := $(addprefix msys-, unzip) + MSYS_BASE_PACKAGES := $(addprefix msys-,bash coreutils diffutils dos2unix file findutils gawk grep gzip less libiconv libintl libmagic make msys-core regex sed tar termcap unzip wget) NOTEPAD_BASE_DIR := $(TOP_DIR)/notepad++ endif diff -r 33ab5eb4fed6 -r 16321a166cc4 index.html --- a/index.html Fri Oct 11 23:17:58 2013 -0400 +++ b/index.html Sat Oct 12 16:45:31 2013 +0200 @@ -1776,6 +1776,11 @@ 2.8.7.20071206cvs-3 MinGW diffutils + + msys-dos2unix + 6.0.3-1 + MinGW dos2unix + msys-file 5.04-1 @@ -1856,6 +1861,11 @@ 0.20050421_1-2 MinGW termcap + + msys-wget + 1.12-1 + MinGW wget + muparser 2.2.2 diff -r 33ab5eb4fed6 -r 16321a166cc4 src/msys-dos2unix.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/msys-dos2unix.mk Sat Oct 12 16:45:31 2013 +0200 @@ -0,0 +1,23 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := msys-dos2unix +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := bab553c740877d02311bfc5d0be3acadbcc375d0 +$(PKG)_REMOTE_SUBDIR := dos2unix/dos2unix-$($(PKG)_VERSION) +$(PKG)_SUBDIR := +$(PKG)_FILE := dos2unix-$($(PKG)_VERSION)-msys-1.0.17-bin.tar.lzma +$(PKG)_URL := $(MSYS_EXTENSION_URL)/$($(PKG)_REMOTE_SUBDIR)/$($(PKG)_FILE)/download +$(PKG)_DEPS := + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; + echo $($(PKG)_VERSION) +endef + +define $(PKG)_BUILD + mkdir -p '$(MSYS_EXTENSION_DIR)' + cd '$(1)' && tar cf - . | ( cd '$(MSYS_EXTENSION_DIR)'; tar xpf - ) + mkdir -p '$(MSYS_INFO_DIR)' + cd '$(1)' && find . > '$(MSYS_INFO_DIR)'/$(PKG).list +endef diff -r 33ab5eb4fed6 -r 16321a166cc4 src/msys-wget.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/msys-wget.mk Sat Oct 12 16:45:31 2013 +0200 @@ -0,0 +1,23 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := msys-wget +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := b13415e735484d82e81bc648fed52a83323ff993 +$(PKG)_REMOTE_SUBDIR := wget/wget-$($(PKG)_VERSION) +$(PKG)_SUBDIR := +$(PKG)_FILE := wget-$($(PKG)_VERSION)-msys-1.0.13-bin.tar.lzma +$(PKG)_URL := $(MSYS_EXTENSION_URL)/$($(PKG)_REMOTE_SUBDIR)/$($(PKG)_FILE)/download +$(PKG)_DEPS := + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; + echo $($(PKG)_VERSION) +endef + +define $(PKG)_BUILD + mkdir -p '$(MSYS_EXTENSION_DIR)' + cd '$(1)' && tar cf - . | ( cd '$(MSYS_EXTENSION_DIR)'; tar xpf - ) + mkdir -p '$(MSYS_INFO_DIR)' + cd '$(1)' && find . > '$(MSYS_INFO_DIR)'/$(PKG).list +endef