# HG changeset patch # User John W. Eaton # Date 1506717049 14400 # Node ID 67c0ec94a9ebfee825a0a4e39ab5d9e5c0feed85 # Parent 769b40b4b09e2c2a739d8a46b1d8aabc35c91513 New packages: build-setuptools, build-markupsafe, and build-mako * src/build-mako.mk, src/build-markupsafe.mk, src/build-setuptools.mk: New files. * index.html: Update. diff -r 769b40b4b09e -r 67c0ec94a9eb index.html --- a/index.html Fri Sep 29 16:29:17 2017 -0400 +++ b/index.html Fri Sep 29 16:30:49 2017 -0400 @@ -1022,6 +1022,14 @@ Lzip + build-mako + mako + + + build-markupsafe + markupsafe + + build-m4 m4 @@ -1042,6 +1050,10 @@ scons + build-setuptools + setuptools + + build-texinfo texinfo diff -r 769b40b4b09e -r 67c0ec94a9eb src/build-mako.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/build-mako.mk Fri Sep 29 16:30:49 2017 -0400 @@ -0,0 +1,20 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := build-mako +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.0.7 +$(PKG)_CHECKSUM := bf0c1f4cdfca4dd37bc0c9f83e984a0558268b42 +$(PKG)_SUBDIR := Mako-$($(PKG)_VERSION) +$(PKG)_FILE := Mako-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := http://pypi.python.org/packages/eb/f3/67579bb486517c0d49547f9697e36582cd19dafb5df9e687ed8e22de57fa/$($(PKG)_FILE) +$(PKG)_DEPS := build-python build-markupsafe build-setuptools + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; + echo $($(PKG)_VERSION) +endef + +define $(PKG)_BUILD + cd '$(1)' && python setup.py install +endef diff -r 769b40b4b09e -r 67c0ec94a9eb src/build-markupsafe.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/build-markupsafe.mk Fri Sep 29 16:30:49 2017 -0400 @@ -0,0 +1,21 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := build-markupsafe +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.0 +$(PKG)_CHECKSUM := 9072e80a7faa0f49805737a48f3d871eb1c48728 +$(PKG)_SUBDIR := MarkupSafe-$($(PKG)_VERSION) +$(PKG)_FILE := MarkupSafe-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := http://pypi.python.org/packages/4d/de/32d741db316d8fdb7680822dd37001ef7a448255de9699ab4bfcbdf4172b/$($(PKG)_FILE) +$(PKG)_DEPS := build-python build-setuptools + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; + echo $($(PKG)_VERSION) +endef + +define $(PKG)_BUILD + cd '$(1)' && python setup.py install +endef + diff -r 769b40b4b09e -r 67c0ec94a9eb src/build-setuptools.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/build-setuptools.mk Fri Sep 29 16:30:49 2017 -0400 @@ -0,0 +1,20 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := build-setuptools +$(PKG)_IGNORE := +$(PKG)_VERSION := 36.5.0 +$(PKG)_CHECKSUM := 4edca327d0666d6956d05cef8fd6dfcce6e701db +$(PKG)_SUBDIR := setuptools-$($(PKG)_VERSION) +$(PKG)_FILE := setuptools-$($(PKG)_VERSION).zip +$(PKG)_URL := https://pypi.python.org/packages/a4/c8/9a7a47f683d54d83f648d37c3e180317f80dc126a304c45dc6663246233a/$($(PKG)_FILE) +$(PKG)_DEPS := build-python + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2; + echo $($(PKG)_VERSION) +endef + +define $(PKG)_BUILD + cd '$(1)' && python setup.py install +endef