changeset 4480:67c0ec94a9eb

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.
author John W. Eaton <jwe@octave.org>
date Fri, 29 Sep 2017 16:30:49 -0400
parents 769b40b4b09e
children 7d6f1fd0d672
files index.html src/build-mako.mk src/build-markupsafe.mk src/build-setuptools.mk
diffstat 4 files changed, 73 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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 @@
         <td class="website"><a href="http://www.nongnu.org/lzip/lzip.html">Lzip</a></td>
     </tr>
     <tr>
+        <td class="package">build-mako</td>
+        <td class="website"><a href="http://pypi.python.org/pypi/Mako">mako</a></td>
+    </tr>
+    <tr>
+        <td class="package">build-markupsafe</td>
+        <td class="website"><a href="http://pypi.python.org/pypi/MarkupSafe">markupsafe</a></td>
+    </tr>
+    <tr>
         <td class="package">build-m4</td>
         <td class="website"><a href="http://www.gnu.org/software/m4">m4</a></td>
     </tr>
@@ -1042,6 +1050,10 @@
         <td class="website"><a href="http://www.scons.org">scons</a></td>
     </tr>
     <tr>
+        <td class="package">build-setuptools</td>
+        <td class="website"><a href="http://pypi.python.org/pypi/setuptools">setuptools</a></td>
+    </tr>
+    <tr>
         <td class="package">build-texinfo</td>
         <td class="website"><a href="http://www.gnu.org/software/texinfo">texinfo</a></td>
     </tr>
--- /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
--- /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
+
--- /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