# HG changeset patch # User John Donoghue # Date 1432230676 14400 # Node ID 1fea617cdf1303caa40360960cc26eb0aa1ed2b3 # Parent be1eba084cae3a198052a8374220e2cf9fef5fb6 of-odepkg: update to v0.8.5 * src/of-odepkg.mk: update version, checksum, compile if binary package * build_packages.m: add odepkg back to install script * Makefile.am: add of-odepkg back to installed of packages diff -r be1eba084cae -r 1fea617cdf13 Makefile.in --- a/Makefile.in Thu May 21 07:45:16 2015 -0400 +++ b/Makefile.in Thu May 21 13:51:16 2015 -0400 @@ -419,7 +419,7 @@ endif OCTAVE_FORGE_BASE_URL := 'http://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases' -OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows linear-algebra sockets zenity data-smoothing fuzzy-logic-toolkit quaternion fits fl-core tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings octcdf financial stk splines dataframe lssa queueing ga) +OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows linear-algebra sockets zenity data-smoothing fuzzy-logic-toolkit quaternion fits fl-core tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings octcdf financial stk splines dataframe lssa queueing ga odepkg) # get ALL deps for all of- packages, regardless of whethe building the actual forge package in the installer OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(wildcard $(TOP_DIR)/src/of-*.mk),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p))) diff -r be1eba084cae -r 1fea617cdf13 build_packages.m --- a/build_packages.m Thu May 21 07:45:16 2015 -0400 +++ b/build_packages.m Thu May 21 13:51:16 2015 -0400 @@ -33,6 +33,7 @@ try_install statistics-1.2.4.tar.gz try_install geometry-2.0.0.tar.gz try_install windows-1.2.1.tar.gz +try_install odepkg-0.8.5.tar.gz try_install linear-algebra-2.2.2.tar.gz try_install sockets-1.2.0.tar.gz try_install zenity-0.5.7.tar.gz diff -r be1eba084cae -r 1fea617cdf13 src/of-odepkg.mk --- a/src/of-odepkg.mk Thu May 21 07:45:16 2015 -0400 +++ b/src/of-odepkg.mk Thu May 21 13:51:16 2015 -0400 @@ -3,10 +3,10 @@ PKG := of-odepkg $(PKG)_IGNORE := -$(PKG)_VERSION := 0.8.4 -$(PKG)_CHECKSUM := 74b7e88ad5a104e064c413f077a5e5327741efb4 +$(PKG)_VERSION := 0.8.5 +$(PKG)_CHECKSUM := f8fcaae85b6a132be15ca4683cd2b60d5d028bc7 $(PKG)_REMOTE_SUBDIR := -$(PKG)_SUBDIR := odepkg +$(PKG)_SUBDIR := odepkg-$($(PKG)_VERSION) $(PKG)_FILE := odepkg-$($(PKG)_VERSION).tar.gz $(PKG)_URL := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download' $(PKG)_DEPS := @@ -18,5 +18,5 @@ endef define $(PKG)_BUILD - $(OCTAVE_FORGE_PKG_BUILD_NOCOMPILE) + $(OCTAVE_FORGE_PKG_BUILD) endef