Commit graph

51 commits

Author SHA1 Message Date
Antoine Brodin
5f7a5d7445 Revert r511603, removal of py27 flavor was untested
Reported by:	pkg-fallout
With hat:	portmgr
2019-09-10 05:49:37 +00:00
Wen Heping
09bb9ed87c - Update to 0.25.1
- Update DEPENDS

PR:		240084
Submitted by:	john@saltant.com(maintainer)
2019-09-09 01:28:17 +00:00
Mathieu Arnold
558224994b onvert to UCL & cleanup pkg-message (categories l-m) 2019-08-13 22:29:42 +00:00
Gerald Pfeifer
ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
2019-07-26 20:46:53 +00:00
Koichiro Iwao
11d0d387a6 math/py-pandas: Update to 0.24.2
Add OPTION for databases/py-sqlalchemy13

PR:		236645
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2019-03-20 06:04:25 +00:00
Steve Wills
a32f86e63c math/py-pandas: Update to 0.24.1
PR:		236453
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2019-03-18 22:16:55 +00:00
Steve Wills
2fd6a932d8 math/py-pandas: update to 0.24.0
PR:		235335
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2019-01-31 01:16:02 +00:00
Gerald Pfeifer
a9f015d155 Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
2018-12-12 01:35:33 +00:00
Steve Wills
5a9c01db67 math/py-pandas: Update to 0.23.4
PR:		232252
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2018-10-14 18:46:09 +00:00
Sunpoet Po-Chuan Hsieh
b6d2ea378f Update to 0.23.3
PR:		230161
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2018-07-31 00:05:44 +00:00
Mathieu Arnold
4376dbbb58 Use PY_FLAVOR for dependencies.
FLAVOR is the current port's flavor, it should not be used outside of
this scope.

Sponsored by:	Absolight
2018-06-20 17:05:41 +00:00
Sunpoet Po-Chuan Hsieh
ed557fde7b Update to 0.23.0
- Add ALCHEMY12 option
- While I'm here:
  - Use >= instead of > for some *_DEPENDS
  - Update WWW

Changes:	https://github.com/pandas-dev/pandas/releases
		https://pandas.pydata.org/pandas-docs/version/0.23.0/whatsnew.html
PR:		228545
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2018-06-03 18:17:23 +00:00
Sunpoet Po-Chuan Hsieh
24a2854d39 Convert to options dependency helper
Approved by:	portmgr (blanket)
2018-05-19 11:08:26 +00:00
Gerald Pfeifer
c2a92a1aea Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
2018-03-10 17:46:04 +00:00
Steve Wills
5ad9370d00 math/py-pandas: Update to 0.22.0
PR:		225205
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2018-01-16 15:08:08 +00:00
Wen Heping
44f4ca605b - Upgrade to 0.21.1
- Remove stale testing bits

PR:		224598
Submitted by:	john@saltant.com(maintainer)
2017-12-27 12:29:16 +00:00
Mathieu Arnold
551be3c723 Convert Python ports to FLAVORS.
Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
2017-11-30 15:50:30 +00:00
Tobias C. Berner
dd0658d1b5 Update math/py-pandas to 0.21.0
PR:		223849
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2017-11-25 18:39:42 +00:00
Sunpoet Po-Chuan Hsieh
788b305b1f Update to 0.20.1
Changes:	https://github.com/pandas-dev/pandas/releases
PR:		219620
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2017-05-29 15:28:52 +00:00
Rene Ladan
ecf8dab16c math/py-pandas: remove support for expired SQL Alchemy 0.8 and 0.9, use
SQL Alchemy 1.0 for test dependencies.

PR:		217593
Submitted by:	rene
Approved by:	maintainer (john@saltant.com)
2017-03-12 19:42:20 +00:00
Wen Heping
0451ec87d3 - Update to 0.19.2
- Expand optional dependency on SQLAlchemy to v1.1
- Strip binary modules

PR:		215876
Submitted by:	john@saltant.com(maintainer)
2017-01-09 10:50:20 +00:00
Wen Heping
51300b0009 - Update to 0.19.1
PR:		214301
Submitted by:	john@saltant.com(maintainer)
2016-11-08 01:57:49 +00:00
Matthew Seaman
d91eb811d5 Reorganise and modernise the py-sqlalchemy ports.
- Introduce new ports for the sqlalchemy 0.9 and 1.0 release branches.
 - Deprecate the ports for the 0.6 and 0.7 release branches, as these
   have been declared EoL and are no longer supported by upstream.
 - Update to the latest available version in each branch.

In detail:

   Port                 Version Maintainer
   ----------------------------------------------
   py-sqlalchemy06      0.6.9   nivit@FreeBSD.org (Deprecate 2016-08-20) [1]
   py-sqlalchemy07      0.7.10  nivit@FreeBSD.org (renamed py-sqlalchemy, Deprecate 2016-08-20) [1]
   py-sqlalchemy08      0.8.7   nivit@FreeBSD.org (renamed py-sqlalchemy-devel) [1]
   py-sqlalchemy09      0.9.10  m.tsatsenko@gmail.com (new, repocopy from py-sqlalchemy-devel) [2]
   py-sqlalchemy10      1.0.13  m.tsatsenko@gmail.com (new, repocopy from py-sqlalchemy-devel) [2]

 - Use options-helpers and option dependent make targets.
 - Use autoplist for documents as well as python code
 - Add all the docments to the packages: previously an arbitrary
   subset was added in a way that excluded CSS, images and other HTML
   assets.
 - Use TEST_DEPENDS and add a TEST_TARGET instead of having a 'TEST'
   option.
 - Use py-pytest for 0.9.x and later, rather than py-nose.
 - Add CONFLICTS_INSTALL between all of the py-sqlalchemyXY ports.

PR:		191442
Submitted by:	robak
Reviewed by:	robak
Reviewed by:	pi
Approved by:	nivit (maintainer timeout, ~300days) [1]
Approved by:    m.tsatsenko@gmail.com (maintainer) [2]
Sponsored by:	https://reviews.freebsd.org/D908
2016-05-22 10:52:44 +00:00
Kurt Jaeger
247c9f9c23 math/py-pandas: 0.17.0 -> 0.18.1
Changes:
  http://pandas.pydata.org/pandas-docs/version/0.18.1/
- Add optional dependencies on devel/py-Jinja2 and textproc/py-xlsxwriter

PR:		209521
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2016-05-15 19:56:51 +00:00
Mathieu Arnold
8d6597e0bb Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 14:16:16 +00:00
Antoine Brodin
1eff39459f - Remove OPENPYXL1 option from py-pandas
- Set an EXPIRATION_DATE for py-openpyxl1 (deprecated since May 2014)
2016-03-09 19:34:03 +00:00
Wen Heping
253aa61a00 - Update to 0.17.0
PR:		204183
Submitted by:	john@saltant.com(maintainer)
2015-11-01 13:12:39 +00:00
Bartek Rutkowski
d773b24aa7 math/py-pandas: update 0.16.1 -> 0.16.2
PR:		201363
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2015-07-07 09:36:02 +00:00
Johannes Jost Meixner
5d8bd8b3f5 math/py-pandas: update to 0.16.1
- update to 0.16.1
- add SQL storage option, and SQLalchemy dependency
- enable Bottleneck and Numexpr options by default

PR:		200451
Submitted by:	John W. O'Brien <john@saltant.com>
2015-05-26 04:56:43 +00:00
Vanilla I. Shu
d189843f6c Upgrade to 0.16.0.
PR:		199011
Submitted by:	maintainer
2015-03-30 05:55:10 +00:00
Pawel Pekala
6588e7f54e Update to version 0.15.2
PR:		195948
Submitted by:	maintainer
2014-12-16 23:39:45 +00:00
Dmitry Marakasov
c0636fc6c3 - Update to 0.15.1
PR:		195535
Submitted by:	john@saltant.com (maintainer)
2014-12-03 13:34:48 +00:00
Pawel Pekala
cae6212aec - Update to version 0.15.0
- Offer experimental Openpyxl2 support
- epend on minimum versions of optional ports per upstream docs

PR:		194504
Submitted by:	maintainer
2014-11-04 16:11:57 +00:00
Bartek Rutkowski
7eca8dff0c math/py-pandas: convert to USES=python format
PR:		193205
Submitted by:	John W. O'Brien <john@saltant.com>
Approved by:	mentors (implicit)
2014-09-22 13:42:16 +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
Frederic Culot
7a9ab3fd2f - Update to 0.14.1
PR:		ports/191857
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2014-07-24 16:47:21 +00:00
Antoine Brodin
02f1958821 Fix 2 DEPENDS lines 2014-06-15 16:47:38 +00:00
Martin Wilke
85ef09be66 - Update to 0.14.0
PR:		190850
2014-06-15 08:37:03 +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
Ruslan Makhmatkhanov
bedee53426 math/py-pandas: update to 0.13.1
- update to 0.13.1
- remove lang/cython from BUILD_DEPENDS now that distfile is fixed
- include RUN_DEPENDS in TEST_DEPENDS
- add devel/py-boto to TEST_DEPENDS for completeness with pkg-message
- remove math/py-statsmodels from TEST_DEPENDS to break circular dependency
- Fix regression-test target to work with non-GitHub distfile which omits
  the ci/ directory. Borrow the print_skipped.py script to do this.

PR:		186802
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2014-03-04 10:17:29 +00:00
Ruslan Makhmatkhanov
2a8d43474f - update to 0.13.0
- remove patches, included upstream
- abandon easy_install and use auto-generated packing list
- update pkg-message and TEST_DEPENDS to reflect current recommendations and
  port availability
- add erroneously-omitted lang/cython to TEST_DEPENDS (for 'build_ext -i')
- conform regression-test target to upstream test procedure

while here:
- add lang/cpython as build dependency - C-extension will not be build w/o it
  and the whole build procedure failing.
- update LICENSE (BSD3CLAUSE)

PR:		185803
Submitted by:	"John W. O'Brien" <john@saltant.com> (maintainer)
2014-02-09 15:21:24 +00:00
William Grzybowski
14b67ba33b math/py-pandas: stagify and add a run dependency
PR:		ports/184096
Submitted by:	maintainer
2013-11-22 12:54:56 +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
Baptiste Daroussin
ce5e457020 Add NO_STAGE all over the place in preparation for the staging support (cat: math) 2013-09-20 20:55:04 +00:00
Kubilay Kocak
611351f696 math/py-pandas: Update to 0.12.0
- Update to 0.12.0
- Two BUILD_DEPENDS are only RUN_DEPENDS, move them
- Patch some files out of MANIFEST.in
- Cherry pick upstream issue/commit [1]
- Define regression-test target and TEST_DEPENDS
- Document USES=display in support of unit tests

[1] https://github.com/pydata/pandas/issues/4353

PR:		ports/180889
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2013-09-20 13:04:02 +00:00
Ruslan Makhmatkhanov
15014d2937 - update to 0.11.0
- add explicit runtime dependency on databases/py-sqlite3

PR:		178067
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2013-05-08 23:02:33 +00:00
Frederic Culot
5fede813d8 - Update to 0.10.1
PR:		ports/175554
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2013-01-25 09:43:30 +00:00
Ruslan Makhmatkhanov
aa56844930 - update to 0.10.0
PR:		174544
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2012-12-20 06:10:01 +00:00
Ruslan Makhmatkhanov
707ae29d4b - update to 0.9.1
PR:		173691
Submitted by:	John W. O'Brien <john at saltant dot com> (maintainer)
Feature safe:	yes
2012-11-20 07:23:57 +00:00
Ruslan Makhmatkhanov
f40430ac78 - update to 0.9.0
- trim Makefile header

while here:
- change DISTVERSION with PORTVERSION (I missed this when this port was added)

PR:		172528
Submitted by:	John W. O'Brien <john at saltant dot com> (maintainer)
Feature safe:   yes
2012-10-11 12:52:38 +00:00