Commit graph

64 commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
7e45ae3c23 - Cleanup Makefile
- Bump PORTREVISION for dependency changes in r383198 and r383223
2015-04-04 19:37:30 +00:00
Dmitry Sivachenko
97806177ea As noted by thierry@ in D2086, scipy inherits blas library to use from numpy
(via site.cfg).  So remove unused OPTIONs from here.
Remove check for static ATLAS lib because now ATLAS always builds
static version.
Remove obsoleted malloc.h --> stdlib.h conversion.
2015-04-04 13:30:20 +00:00
Dmitry Sivachenko
e60a0b8f09 Remove unused deps:
I see no reference for djbfft in the code; I assume it is obsoleted.

fftw3: according to http://www.scipy.org/scipylib/building/linux.html
---------
Because of license, configuration, and maintenance issues support for FFTW was removed in versions of SciPy >= 0.7 and NumPy >= 1.2
---------
2015-04-04 11:45:46 +00:00
Olivier Duchateau
dc913654a5 - Update to 0.15.1
- Switch to USES= blaslapack

Differential Revision:	https://reviews.freebsd.org/D1579
Reviewed by:	thierry
2015-02-07 20:11:53 +00:00
Dmitry Sivachenko
c2fe293b67 Fix build after r369447
Patch by Thierry Thomas <thierry@FreeBSD.org>
2014-09-30 08:39:34 +00:00
Gerald Pfeifer
15945f8122 Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
2014-09-10 20:50:31 +00:00
Sunpoet Po-Chuan Hsieh
36f3519eeb - Pass maintainership to python@ 2014-09-07 14:58:55 +00:00
Wen Heping
ba70f88a20 - Use version-coded PDF docs [1]
- Reset maintainer to port@

PR:		193204 [1]
Submitted by:	John W. O'Brien <john@saltant.com> [1]
2014-09-07 07:26:43 +00:00
Marcus von Appen
0788687a96 - Enable concurrent installation support for different python versions
- Remove LATEST_LINK and the usage of math/py-numpy's options - both do not
  seem to have any value for the port

PR:		192893
Submitted by:	myself
Approved by:	wen@ (maintainer)
2014-09-02 19:00:27 +00:00
Tijl Coosemans
4bdd97e324 math/fftw3:
- Add USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Remove PTHREAD_CFLAGS and PTHREAD_LIBS
- Use MAKE_CMD
2014-08-31 16:36:22 +00:00
Baptiste Daroussin
5c477f571d Modernize python 2014-08-29 14:43:10 +00:00
Antoine Brodin
330002caa4 Fix packaging with pkg-install 2014-06-17 19:39:23 +00:00
Wen Heping
ba9e9c8947 - Fix plist when define DOCS=off
PR:		190642
Reported by:	john@saltant.com
2014-06-09 07:51:28 +00:00
Wen Heping
59a724115d - Stage support
- Update to 0.14.0

PR:		190338
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2014-05-28 15:14:02 +00:00
Sunpoet Po-Chuan Hsieh
695bd611e5 - Update LICENSE
Approved by:	portmgr (blanket)
2014-04-26 18:15:14 +00:00
Gerald Pfeifer
1cd277bdce Update the default version of GCC used in the Ports Collection from
GCC 4.6.4 to GCC 4.7.3.  This entails updating the lang/gcc port as
well as changing the default in Mk/bsd.default-versions.mk.

Part II, Bump PORTREVISIONs.

PR:		182136
Supported by:	Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by:	bdrewery (two -exp runs)
2014-03-10 20:55:20 +00:00
Dmitry Sivachenko
9dfec7f3ab Update to version 0.13.3.
maintainer timeout.
2014-02-18 10:38:22 +00:00
Tijl Coosemans
564a799c71 Convert all USE_FORTRAN=yes to "USES=fortran, USE_GCC=yes". In most cases
USE_GCC=yes has been omitted though.

Remove USE_FORTRAN handling from bsd.port.mk and bsd.gcc.mk.

Minor cleanups in some ports like USE_GMAKE, NOPORTDOCS,...

Exp-run:	bdrewery
Approved by:	portmgr (bdrewery)
2014-02-16 17:15:31 +00:00
Wen Heping
ffaebb7755 - Fix distinfo
Spotted by:	olgeni@ (Thanks!)
2013-11-18 15:36:42 +00:00
Wen Heping
fa9b8c0688 - Update to 0.13.1 2013-11-17 15:54:51 +00:00
Gerald Pfeifer
3be3e90f93 Update to libmpc version 1.0.1 which brings the following fixes:
- Switched to automake 1.11.6, see CVE-2012-3386.
 - #14669: Fixed extraction of CC from gmp.h.
 - Fixed case of intermediate zero real or imaginary part in mpc_fma,
   found by hydra with GMP_CHECK_RANDOMIZE=1346362345.

This is on top of the following changes from version 1.0

 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no
   invariant sections) for the documentation.
 - 100% of all lines are covered by tests
 - Renamed functions
   . mpc_mul_2exp to mpc_mul_2ui
   . mpc_div_2exp to mpc_div_2ui
 - 0^0, which returned (NaN,NaN) previously, now returns (1,+0).
 - Removed compatibility with K&R compilers, which was untestable due
   to lack of such compilers.
 - New functions
   . mpc_log10
   . mpc_mul_2si, mpc_div_2si
 - Speed-ups
   . mpc_fma
 - Bug fixes
   . mpc_div and mpc_norm now return a value indicating the effective
     rounding direction, as the other functions.
   . mpc_mul, mpc_sqr and mpc_norm now return correct results even if
     there are over- or underflows during the computation.
   . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has
     infinite part and equals output variable is corrected.
   . mpc_fr_sub: Wrong return value for imaginary part is corrected.

Convert to the new LIB_DEPENDS standard and remove hard-coded
.so versions from a couple of dependent ports.

Bump PORTREVISIONS of all dependent ports.

PR:		183141
Approved by:	portmgr (bdrewery)
2013-10-26 00:52:33 +00:00
Wen Heping
774d7079e3 - Update to 0.12.1 2013-10-16 23:42:55 +00:00
Baptiste Daroussin
1dd0d087e7 Add NO_STAGE all over the place in preparation for the staging support (cat: science) 2013-09-20 22:48:30 +00:00
Wen Heping
7518a5169f - Take maintainership 2013-08-21 01:03:00 +00:00
Dryice Dong Liu
ec9133b75e - update to 0.12.0 2013-08-17 15:17:00 +00:00
Ruslan Makhmatkhanov
0fcab5e7a9 - let it build with python3 too
Both python2 and python3 are supported according to official
documentation and setup.py

PR:		180465
Submitted by:	nwhitehorn
2013-07-22 12:44:32 +00:00
Boris Samorodov
052e333f6a NOPORTDOCS -> PORT_OPTIONS:MDOCS. 2013-06-20 13:40:22 +00:00
Ryan Steinmetz
7e8fe2b65f - Reset maintainer due to fatal email bounce
Reported by:	portscout
2013-06-18 13:52:06 +00:00
Ruslan Makhmatkhanov
f7f5299fce - update to 0.11.0
- trim Makefile header

while here:
- add license (BSD)
- limit python version to 2.x (doesn't builds with 3.x)
- remove shlib versions to fix some of porlint warnings
- update distinfo for user reference

PR:		172179
Submitted by:	wen
Approved by:	maintainer timeout (2 weeks+)
Feature safe:	yes
2012-10-17 06:15:16 +00:00
Marcus von Appen
cc0538bca8 - Remove automatic dependency to SuiteSparse; use OPTIONS instead
- Change to new OPTIONS style
- Add RUN_DEPENDS on py-nose

PR:		ports/171349
Submitted by:	Li-Lun Wang <llwang@infor.org> (maintainer)
Reported by:	A.J. Kehoe IV (Nanoman)
2012-10-07 10:26:43 +00:00
Wen Heping
75ba3d4ca1 - Update to 0.10.1
PR:		167223
Submitted by:	wen@ (myself)
Approved by:	maintainer(timeout, >=30 days)
2012-05-23 07:48:47 +00:00
Wen Heping
9f0e2c2b69 - Update to 0.10.0
PR:		162893
Submitted by:	Gereon Kaiping <kta1c10!gereon@linta.de>
Reviewed by:	"Li-Lun Leland Wang" <llwang@infor.org> (maintainer)
Feature safe:	yes
2011-12-09 08:05:48 +00:00
Brendan Fabeny
004a7c5ac2 adjust linking and comments in dependent ports after the math/atlas update;
math/atlas-devel will be updated to use the same constructs at a later date

PR:		162706
Approved by:	miwi (portmgr)
Feature safe:	yes
2011-11-22 11:14:10 +00:00
Eitan Adler
db82e16930 - add run time dependency on py-scipy
PR:		ports/161472
Submitted by:	Sergey Svishchev <svs@ropnet.ru>
Approved by:	"Li-Lun \"Leland\" Wang" <llwang@infor.org>
Approved by:	bapt,sahil (mentors, implicit)
2011-10-20 02:16:09 +00:00
Brendan Fabeny
ac39d25cb1 - update fftw3* to 3.3 [1], and adjust dependent ports
- make use of optimizations by default, where possible
(quad flavor to follow shortly, and mpi at a later date)

Suggestions and patches from:	ache, C. Burns, wen
2011-10-17 10:08:33 +00:00
Martin Wilke
1b8254d567 - Move to py25 or above
- While here kick md5 support
2011-02-25 00:47:51 +00:00
Philip M. Gollucci
8e8e8b0327 - Update to 0.8.0
PR:             ports/151233
Submitted by:   Li-Lun Wang (Leland Wang) <llwang@infor.org> (maintainer)
2010-10-10 05:30:49 +00:00
Wen Heping
22e59832ec - Update to 0.7.2
PR:		ports/146008
Submitted by:	Wen Heping (myself)
Approved by:	maintainer
2010-04-26 07:17:47 +00:00
Wen Heping
fef6a3ff34 - Update to 0.7.1
- Change the dependence to fftw3 from fftw2
- Remove the unnecessary dependence

PR:	ports/138630
Submitted by:	Wen Heping<wenheping@gmail.com>
Approved by:	maintainer,	miwi(mentor)
Feature safe:	yes
2009-09-19 13:34:45 +00:00
Gerald Pfeifer
27ab5137ce Bump PORTREVISION for everything that sets USE_FORTRAN=yes which now
implies lang/gcc44 up from lang/gcc43.

Approved by:	portmgr
2009-09-13 00:08:01 +00:00
Li-Wen Hsu
76649be0b1 * Fix build of science/py-scipy when math/suitesparse is installed, by
correctly detect and depend on it in math/py-numpy
* Replace the old numpy documentation with the new numpy book
* Explicitly tell the distutil to use gnu95 fortran compiler
* Use ${PYTHONPREFIX_SITELIBDIR} rather than ${PYTHON_SITELIBDIR} when
  generating the packing list for science/py-scipy
* Bump PORTREVISIONs, for packing lists are changed

PR:		ports/136058
Submitted by:	Li-Lun Wang (Leland Wang) <llwang AT infor.org> (maintainer)
2009-07-13 09:44:48 +00:00
Martin Wilke
dad52be8e5 - Update to 0.7.0
PR:		131636
Submitted by:	Wen Heping <wenheping@gmail.com>
Approved by:	maintainer
2009-02-28 19:54:59 +00:00
Gerald Pfeifer
05a2cbc2b4 Bump PORTREVISION due to change of USE_FORTRAN=yes to GCC 4.3. 2009-01-07 16:34:27 +00:00
Edwin Groothuis
090059a210 Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
2008-06-06 14:17:21 +00:00
Rong-En Fan
ed574e17b9 - Update to 0.6.0
PR:		ports/122494
Submitted by:	dikshie <dikshie at lapi.itb.ac.id>
Approved by:	Li-Lun "Leland" Wang <llwang at infor.org> (maintainer)
2008-04-09 02:10:10 +00:00
Diane Bruce
aa1087b410 - Fix build of dfftpack. [1]
- Reassign maintainership to llwang@infor.org

PR:		ports/112429 [1]
Submitted by:	Li-Lun "Leland" Wang <llwang@infor.org> (new maintainer)
2007-09-02 20:04:45 +00:00
Diane Bruce
080db7c1d2 - USE_FORTRAN=yes to use FORTRAN compiler.
Notified by:	maho
Approved by:	ehaupt (mentor)
2007-07-27 18:55:31 +00:00
Florent Thoumie
d4f0d0048a - Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
2007-05-19 20:36:56 +00:00
Diane Bruce
767b7dd8c4 - Fix my MAINTAINER e-mail
- Stop portlint whining on Atlas
- integrated changes from maho
- maho wants WANT_FORTRAN knob in gfortran ports

Submitted by:   maho
Approved:       ehaupt (mentor)
2007-02-27 15:33:24 +00:00
Rong-En Fan
8f54ba0123 - Chase blas/lapack/atlas library version 2007-01-18 16:52:31 +00:00