# HG changeset patch # User John Donoghue # Date 1581367223 18000 # Node ID 8a3c205357f17c5cdc222658b0accb2607314eb2 # Parent 3c10ce089d7cf25a77e81e1b0c0ba7b97a453e07 * add of-symbolic package * src/of-symbolic.mk: new file * Makefile.in, dist-files.mk, index.html: add ref to new package diff -r 3c10ce089d7c -r 8a3c205357f1 Makefile.in --- 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))) diff -r 3c10ce089d7c -r 8a3c205357f1 dist-files.mk --- 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 \ diff -r 3c10ce089d7c -r 8a3c205357f1 index.html --- 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 @@ Octave Forge struct package + of-symbolic + Octave Forge symbolic package + + of-tisean Octave Forge tisean package diff -r 3c10ce089d7c -r 8a3c205357f1 src/of-symbolic.mk --- /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