Update to gsl 1.16.0.6
This commit is contained in:
parent
7848fec2ab
commit
6bdf98fd85
@ -1,10 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.8 2015/07/18 21:07:40 jeremy Exp $
|
||||
# $OpenBSD: Makefile,v 1.9 2015/07/26 03:50:04 jeremy Exp $
|
||||
|
||||
COMMENT = Ruby interface to GSL
|
||||
|
||||
DISTNAME = rb-gsl-1.16.0.4
|
||||
PKGNAME = ${DISTNAME:S/rb-//}
|
||||
REVISION = 0
|
||||
DISTNAME = gsl-1.16.0.6
|
||||
CATEGORIES = devel
|
||||
|
||||
# GPLv2
|
||||
@ -20,4 +18,9 @@ LIB_DEPENDS = devel/gsl
|
||||
|
||||
CONFIGURE_STYLE =ruby gem ext
|
||||
|
||||
MODRUBY_TEST = ruby
|
||||
MODRUBY_TEST_TARGET = -I test \
|
||||
-e 'ARGV.each{|f| require f}' \
|
||||
test/gsl_test.rb test/gsl/*
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (rb-gsl-1.16.0.4.gem) = vGVzzDZBDS7IhnLUsS4skIaEeWsnaodDwZNFu7RL75Q=
|
||||
SIZE (rb-gsl-1.16.0.4.gem) = 588288
|
||||
SHA256 (gsl-1.16.0.6.gem) = P6NUJ31opyniOajJ6zQI8peKREt9o3CM/xIKnLac3P8=
|
||||
SIZE (gsl-1.16.0.6.gem) = 594944
|
||||
|
@ -1,19 +1,19 @@
|
||||
$OpenBSD: patch-ext_gsl_matrix_complex_c,v 1.1 2014/09/24 22:17:39 jasper Exp $
|
||||
$OpenBSD: patch-ext_gsl_matrix_complex_c,v 1.2 2015/07/26 03:50:04 jeremy Exp $
|
||||
|
||||
Fix conflicting types.
|
||||
|
||||
--- ext/gsl/matrix_complex.c.orig Wed Sep 24 23:35:23 2014
|
||||
+++ ext/gsl/matrix_complex.c Wed Sep 24 23:36:15 2014
|
||||
@@ -1524,7 +1524,7 @@ static VALUE rb_gsl_matrix_complex_indgen_singleton(in
|
||||
--- ext/gsl_native/matrix_complex.c.orig Fri Jul 3 11:19:42 2015
|
||||
+++ ext/gsl_native/matrix_complex.c Sun Jul 19 19:03:38 2015
|
||||
@@ -1521,7 +1521,7 @@ static VALUE rb_gsl_matrix_complex_indgen_singleton(in
|
||||
// Starting with version 1.15, GSL provides a gsl_matrix_complex_equal
|
||||
// function, but it only determines absolute equality (i.e. is has no epsilon
|
||||
// argument).
|
||||
-static int gsl_matrix_complex_equal_eps(const gsl_matrix_complex *m1,
|
||||
+static int gsl_matrix_complex_equal_with_eps(const gsl_matrix_complex *m1,
|
||||
const gsl_matrix_complex *m2, double eps)
|
||||
const gsl_matrix_complex *m2, double eps)
|
||||
{
|
||||
gsl_complex z1, z2;
|
||||
@@ -1559,7 +1559,7 @@ static VALUE rb_gsl_matrix_complex_equal(int argc, VAL
|
||||
@@ -1556,7 +1556,7 @@ static VALUE rb_gsl_matrix_complex_equal(int argc, VAL
|
||||
Data_Get_Struct(obj, gsl_matrix_complex, m1);
|
||||
CHECK_MATRIX_COMPLEX(argv[0]);
|
||||
Data_Get_Struct(argv[0], gsl_matrix_complex, m2);
|
||||
|
@ -1,19 +1,19 @@
|
||||
$OpenBSD: patch-ext_gsl_vector_complex_c,v 1.1 2014/09/24 22:17:39 jasper Exp $
|
||||
$OpenBSD: patch-ext_gsl_vector_complex_c,v 1.2 2015/07/26 03:50:04 jeremy Exp $
|
||||
|
||||
Fix conflicting types.
|
||||
|
||||
--- ext/gsl/vector_complex.c.orig Wed Sep 24 23:37:48 2014
|
||||
+++ ext/gsl/vector_complex.c Wed Sep 24 23:38:35 2014
|
||||
@@ -1990,7 +1990,7 @@ static VALUE rb_gsl_vector_complex_zip(int argc, VALUE
|
||||
--- ext/gsl_native/vector_complex.c.orig Fri Jul 3 11:19:42 2015
|
||||
+++ ext/gsl_native/vector_complex.c Sun Jul 19 19:03:38 2015
|
||||
@@ -1984,7 +1984,7 @@ static VALUE rb_gsl_vector_complex_zip(int argc, VALUE
|
||||
// Starting with version 1.15, GSL provides a gsl_vector_complex_equal
|
||||
// function, but it only determines absolute equality (i.e. is has no epsilon
|
||||
// argument).
|
||||
-static int gsl_vector_complex_equal_eps(const gsl_vector_complex *v1,
|
||||
+static int gsl_vector_complex_equal_with_eps(const gsl_vector_complex *v1,
|
||||
const gsl_vector_complex *v2, double eps)
|
||||
const gsl_vector_complex *v2, double eps)
|
||||
{
|
||||
gsl_complex z1, z2;
|
||||
@@ -2023,7 +2023,7 @@ static VALUE rb_gsl_vector_complex_equal(int argc, VAL
|
||||
@@ -2017,7 +2017,7 @@ static VALUE rb_gsl_vector_complex_equal(int argc, VAL
|
||||
Data_Get_Struct(obj, gsl_vector_complex, v1);
|
||||
CHECK_VECTOR_COMPLEX(argv[0]);
|
||||
Data_Get_Struct(argv[0], gsl_vector_complex, v2);
|
||||
|
@ -1,16 +1,13 @@
|
||||
@comment $OpenBSD: PLIST,v 1.4 2015/06/23 07:52:11 jasper Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.5 2015/07/26 03:50:04 jeremy Exp $
|
||||
${GEM_LIB}/cache/${DISTNAME}.gem
|
||||
@comment ${GEM_EXTENSIONS_DIR}/
|
||||
@comment ${GEM_EXTENSIONS_DIR}/gem.build_complete
|
||||
@comment ${GEM_EXTENSIONS_DIR}/gem_make.out
|
||||
@comment ${GEM_EXTENSIONS_DIR}/gsl/
|
||||
@comment ${GEM_EXTENSIONS_DIR}/gsl/gsl_native.so
|
||||
@comment ${GEM_EXTENSIONS_DIR}/mkmf.log
|
||||
${GEM_LIB}/gems/${DISTNAME}/
|
||||
${GEM_LIB}/gems/${DISTNAME}/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/.travis.yml
|
||||
${GEM_LIB}/gems/${DISTNAME}/AUTHORS
|
||||
${GEM_LIB}/gems/${DISTNAME}/COPYING
|
||||
${GEM_LIB}/gems/${DISTNAME}/ChangeLog
|
||||
${GEM_LIB}/gems/${DISTNAME}/README
|
||||
${GEM_LIB}/gems/${DISTNAME}/Gemfile
|
||||
${GEM_LIB}/gems/${DISTNAME}/README.md
|
||||
${GEM_LIB}/gems/${DISTNAME}/Rakefile
|
||||
${GEM_LIB}/gems/${DISTNAME}/THANKS
|
||||
${GEM_LIB}/gems/${DISTNAME}/examples/
|
||||
@ -396,284 +393,14 @@ ${GEM_LIB}/gems/${DISTNAME}/examples/vector/zip.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/examples/wavelet/
|
||||
${GEM_LIB}/gems/${DISTNAME}/examples/wavelet/ecg.dat
|
||||
${GEM_LIB}/gems/${DISTNAME}/examples/wavelet/wavelet1.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/
|
||||
@comment ${GEM_LIB}/gems/${DISTNAME}/ext/gsl/.RUBYARCHDIR.-.gsl.time
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/Makefile
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/alf.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/alf.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/array.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/array.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/array_complex.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/array_complex.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/blas.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/blas.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/blas1.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/blas1.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/blas2.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/blas2.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/blas3.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/blas3.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/block.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/block.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/block_source.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/bspline.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/bspline.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/bundle.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/bundle.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/cdf.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/cdf.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/cheb.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/cheb.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/combination.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/combination.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/common.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/common.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/complex.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/complex.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/const.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/const.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/const_additional.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/const_additional.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/cqp.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/cqp.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/deriv.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/deriv.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/dht.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/dht.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/diff.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/diff.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/dirac.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/dirac.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/eigen.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/eigen.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/error.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/error.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/extconf.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/fcmp.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/fcmp.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/fft.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/fft.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/fit.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/fit.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/fresnel.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/fresnel.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/function.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/function.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/geometry.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/geometry.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/graph.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/graph.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/gsl.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/gsl.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/gsl_narray.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/gsl_narray.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/gsl_native.so
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram2d.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram2d.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram3d.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram3d.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram3d_source.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram3d_source.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram_find.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram_find.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram_oper.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/histogram_oper.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/ieee.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/ieee.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_array.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_cheb.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_common.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_complex.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_const.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_dirac.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_eigen.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_fft.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_fit.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_function.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_graph.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_histogram.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_histogram3d.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_integration.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_interp.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_linalg.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_math.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_odeiv.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_poly.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_rational.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_rng.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_root.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_sf.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_statistics.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_tensor.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/rb_gsl_with_narray.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/templates_off.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/include/templates_on.h
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/integration.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/integration.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/interp.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/interp.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/jacobi.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/jacobi.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/linalg.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/linalg.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/linalg_complex.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/linalg_complex.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/math.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/math.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/matrix.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/matrix.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/matrix_complex.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/matrix_complex.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/matrix_double.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/matrix_double.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/matrix_int.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/matrix_int.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/matrix_source.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/min.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/min.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/monte.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/monte.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multifit.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multifit.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multimin.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multimin.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multimin_fsdf.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multimin_fsdf.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multiroots.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multiroots.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multiset.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/multiset.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/ndlinear.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/ndlinear.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/nmf.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/nmf.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/nmf_wrap.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/nmf_wrap.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/ntuple.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/ntuple.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/odeiv.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/odeiv.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/ool.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/ool.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/oper_complex_source.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/oper_complex_source.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/permutation.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/permutation.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/poly.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/poly.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/poly2.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/poly2.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/poly_source.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/qrng.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/qrng.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/randist.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/randist.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/rational.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/rational.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/rng.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/rng.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/root.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/root.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_airy.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_airy.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_bessel.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_bessel.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_clausen.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_clausen.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_coulomb.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_coulomb.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_coupling.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_coupling.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_dawson.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_dawson.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_debye.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_debye.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_dilog.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_dilog.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_elementary.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_elementary.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_ellint.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_ellint.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_elljac.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_elljac.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_erfc.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_erfc.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_exp.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_exp.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_expint.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_expint.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_fermi_dirac.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_fermi_dirac.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_gamma.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_gamma.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_gegenbauer.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_gegenbauer.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_hyperg.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_hyperg.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_laguerre.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_laguerre.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_lambert.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_lambert.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_legendre.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_legendre.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_log.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_log.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_mathieu.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_mathieu.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_power.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_power.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_psi.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_psi.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_synchrotron.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_synchrotron.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_transport.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_transport.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_trigonometric.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_trigonometric.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_zeta.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sf_zeta.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/signal.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/signal.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/siman.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/siman.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sort.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sort.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/spline.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/spline.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/stats.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/stats.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sum.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/sum.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/tamu_anova.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/tamu_anova.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/tensor.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/tensor.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/tensor_source.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/vector.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/vector.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/vector_complex.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/vector_complex.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/vector_double.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/vector_double.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/vector_int.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/vector_int.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/vector_source.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/wavelet.c
|
||||
${GEM_LIB}/gems/${DISTNAME}/ext/gsl/wavelet.o
|
||||
${GEM_LIB}/gems/${DISTNAME}/gsl.gemspec
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/gsl/
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/gsl.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/gsl/gnuplot.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/gsl/gsl_native.so
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/gsl/oper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/gsl/version.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/gsl_native.so
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/ool/
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/ool.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/ool/conmin.rb
|
||||
@ -699,7 +426,6 @@ ${GEM_LIB}/gems/${DISTNAME}/rdoc/graph.rdoc
|
||||
${GEM_LIB}/gems/${DISTNAME}/rdoc/hist.rdoc
|
||||
${GEM_LIB}/gems/${DISTNAME}/rdoc/hist2d.rdoc
|
||||
${GEM_LIB}/gems/${DISTNAME}/rdoc/hist3d.rdoc
|
||||
${GEM_LIB}/gems/${DISTNAME}/rdoc/index.rdoc
|
||||
${GEM_LIB}/gems/${DISTNAME}/rdoc/integration.rdoc
|
||||
${GEM_LIB}/gems/${DISTNAME}/rdoc/interp.rdoc
|
||||
${GEM_LIB}/gems/${DISTNAME}/rdoc/intro.rdoc
|
||||
@ -751,6 +477,7 @@ ${GEM_LIB}/gems/${DISTNAME}/test/gsl/eigen_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/gsl/err_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/gsl/fit_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/gsl/histo_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/gsl/index_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/gsl/integration_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/gsl/interp_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/gsl/linalg_test.rb
|
||||
@ -778,4 +505,5 @@ ${GEM_LIB}/gems/${DISTNAME}/test/gsl/vector_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/gsl/wavelet_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/gsl_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/test_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/uncrustify.cfg
|
||||
${GEM_LIB}/specifications/${DISTNAME}.gemspec
|
||||
|
Loading…
Reference in New Issue
Block a user