From owner-svn-ports-head@freebsd.org Thu Aug 2 10:57:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D99831062D56; Thu, 2 Aug 2018 10:57:24 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 904BB82C6C; Thu, 2 Aug 2018 10:57:24 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7174810B9D; Thu, 2 Aug 2018 10:57:24 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w72AvO6b024105; Thu, 2 Aug 2018 10:57:24 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w72AvNR0024102; Thu, 2 Aug 2018 10:57:23 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201808021057.w72AvNR0024102@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 2 Aug 2018 10:57:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476230 - in head/math/orpie: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/math/orpie: . files X-SVN-Commit-Revision: 476230 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 10:57:25 -0000 Author: danfe Date: Thu Aug 2 10:57:23 2018 New Revision: 476230 URL: https://svnweb.freebsd.org/changeset/ports/476230 Log: Unbreak `math/orpie' against OCaml 4.05.0 and make it fetchable Obtained from: Debian Bug-Debian: https://bugs.debian.org/868849 Added: head/math/orpie/files/patch-gsl_gsl__sf.ml (contents, props changed) head/math/orpie/files/patch-gsl_mlgsl__error.c (contents, props changed) Modified: head/math/orpie/Makefile head/math/orpie/files/patch-Makefile.in Modified: head/math/orpie/Makefile ============================================================================== --- head/math/orpie/Makefile Thu Aug 2 10:22:44 2018 (r476229) +++ head/math/orpie/Makefile Thu Aug 2 10:57:23 2018 (r476230) @@ -5,7 +5,7 @@ PORTNAME= orpie PORTVERSION= 1.5.2 PORTREVISION= 4 CATEGORIES+= math -MASTER_SITES= http://pessimization.com/software/orpie/ +MASTER_SITES= GENTOO http://pessimization.com/software/orpie/ MAINTAINER= ports@FreeBSD.org COMMENT= Fullscreen RPN calculator for the console Modified: head/math/orpie/files/patch-Makefile.in ============================================================================== --- head/math/orpie/files/patch-Makefile.in Thu Aug 2 10:22:44 2018 (r476229) +++ head/math/orpie/files/patch-Makefile.in Thu Aug 2 10:57:23 2018 (r476230) @@ -1,5 +1,14 @@ --- Makefile.in.orig +++ Makefile.in +@@ -81,7 +81,7 @@ CURSES_OOBJS = $(CURSES_CMX) $(CURSES_CO + GSL_CMO = gsl/gsl_error.cmo gsl/gsl_blas.cmo gsl/gsl_complex.cmo gsl/gsl_matrix.cmo gsl/gsl_matrix_complex.cmo \ + gsl/gsl_vector.cmo gsl/gsl_vector_complex.cmo gsl/gsl_vector_flat.cmo gsl/gsl_matrix_flat.cmo \ + gsl/gsl_vector_complex_flat.cmo gsl/gsl_matrix_complex_flat.cmo gsl/gsl_vectmat.cmo \ +- gsl/gsl_permut.cmo gsl/gsl_linalg.cmo gsl/gsl_fun.cmo ++ gsl/gsl_permut.cmo gsl/gsl_linalg.cmo gsl/gsl_fun.cmo gsl/gsl_sf.cmo gsl/gsl_math.cmo + GSL_CMX = $(GSL_CMO:.cmo=.cmx) + GSL_COBJS = gsl/mlgsl_error.o gsl/mlgsl_blas.o gsl/mlgsl_blas_complex.o gsl/mlgsl_complex.o gsl/mlgsl_blas_float.o \ + gsl/mlgsl_blas_complex_float.o gsl/mlgsl_matrix_complex.o gsl/mlgsl_matrix_double.o gsl/mlgsl_matrix_float.o \ @@ -201,7 +201,7 @@ GSL_INCLUDES = -I ./gsl GSL_BFLAGS = -g $(GSL_INCLUDES) -thread Added: head/math/orpie/files/patch-gsl_gsl__sf.ml ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/orpie/files/patch-gsl_gsl__sf.ml Thu Aug 2 10:57:23 2018 (r476230) @@ -0,0 +1,18 @@ +--- gsl/gsl_sf.ml.orig 2014-04-12 01:43:31 UTC ++++ gsl/gsl_sf.ml +@@ -1142,6 +1142,7 @@ external legendre_Ql_e : int -> float -> result + + + ++(* + (* Associated LEGENDRE functions *) + external legendre_Plm : int -> int -> float -> float + = "ml_gsl_sf_legendre_Plm" +@@ -1167,6 +1168,7 @@ external legendre_sphPlm_array : int -> int -> float + + external legendre_array_size : int -> int -> int + = "ml_gsl_sf_legendre_array_size" ++*) + + + Added: head/math/orpie/files/patch-gsl_mlgsl__error.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/orpie/files/patch-gsl_mlgsl__error.c Thu Aug 2 10:57:23 2018 (r476230) @@ -0,0 +1,10 @@ +--- gsl/mlgsl_error.c.orig 2014-04-12 01:43:31 UTC ++++ gsl/mlgsl_error.c +@@ -34,6 +34,7 @@ static value *ml_gsl_exn; + + static void ml_gsl_raise_exn(const char *msg, int gsl_errno) + { ++ CAMLparam0(); + CAMLlocal2(exn_msg, exn_arg); + exn_msg = copy_string(msg); + exn_arg = alloc_small(2, 0);