changeset 5302:8a3c205357f1

* add of-symbolic package * src/of-symbolic.mk: new file * Makefile.in, dist-files.mk, index.html: add ref to new package
author John Donoghue
date Mon, 10 Feb 2020 15:40:23 -0500
parents 3c10ce089d7c
children 8da894159471
files Makefile.in dist-files.mk index.html src/of-symbolic.mk
diffstat 4 files changed, 34 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Mon Feb 10 15:40:22 2020 -0500
+++ b/Makefile.in	Mon Feb 10 15:40:23 2020 -0500
@@ -513,7 +513,7 @@
 OCTAVE_FORGE_BASE_URL := 'https://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases'
 ## Packages removed from list because build is broken:
 ## None.
-OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim general signal communications image io statistics control geometry windows linear-algebra sockets data-smoothing fuzzy-logic-toolkit quaternion fits tsa netcdf ltfat database instrument-control generate_html nurbs strings financial stk splines dataframe lssa queueing ga odepkg interval nan ocs mapping tisean video zeromq gsl optiminterp dicom sparsersb audio)
+OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim general signal communications image io statistics control geometry windows linear-algebra sockets data-smoothing fuzzy-logic-toolkit quaternion fits tsa netcdf ltfat database instrument-control generate_html nurbs strings financial stk splines dataframe lssa queueing ga odepkg interval nan ocs mapping tisean video zeromq gsl optiminterp dicom sparsersb audio symbolic)
 # get ALL deps for all of- packages, regardless of whether building the actual forge package in the installer
 OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(addprefix $(TOP_DIR)/src/,$(addsuffix .mk,$(OCTAVE_FORGE_PACKAGES))),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p)))
 
--- a/dist-files.mk	Mon Feb 10 15:40:22 2020 -0500
+++ b/dist-files.mk	Mon Feb 10 15:40:23 2020 -0500
@@ -519,6 +519,7 @@
   of-strings-1-fixes.patch \
   of-strings.mk \
   of-struct.mk \
+  of-symbolic.mk \
   of-tisean-1-fixes.patch \
   of-tisean.mk \
   of-tsa.mk \
--- a/index.html	Mon Feb 10 15:40:22 2020 -0500
+++ b/index.html	Mon Feb 10 15:40:23 2020 -0500
@@ -2346,6 +2346,10 @@
         <td class="website"><a href="https://octave.sourceforge.io/">Octave Forge struct package</a></td>
     </tr>
     <tr>
+        <td class="package">of-symbolic</td>
+        <td class="website"><a href="https://octave.sourceforge.io/">Octave Forge symbolic package</a></td>
+    </tr>
+    <tr>
         <td class="package">of-tisean</td>
         <td class="website"><a href="https://octave.sourceforge.io/">Octave Forge tisean package</a></td>
     </tr>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/of-symbolic.mk	Mon Feb 10 15:40:23 2020 -0500
@@ -0,0 +1,28 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := of-symbolic
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 2.8.0
+$(PKG)_CHECKSUM := 85b8aa1e6644f77207ebd9e75e5c416dca09cb1c
+$(PKG)_REMOTE_SUBDIR := 
+$(PKG)_SUBDIR   := symbolic-$($(PKG)_VERSION)
+$(PKG)_FILE     := symbolic-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL      := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download'
+$(PKG)_DEPS     := 
+
+ifeq ($(ENABLE_BINARY_PACKAGES),yes)
+    $(PKG)_DEPS += $(OCTAVE_TARGET)
+endif
+
+ifeq ($(MXE_WINDOWS_BUILD),yes)
+    $(PKG)_DEPS += python-sympy
+endif
+
+define $(PKG)_UPDATE
+    $(OCTAVE_FORGE_PKG_UPDATE)
+endef
+
+define $(PKG)_BUILD
+    $(OCTAVE_FORGE_PKG_BUILD)
+endef