Port details |
- py-ndindex Python library for manipulating indices of ndarrays
- 1.7 math
=0 1.6Version of this port present on the latest quarterly branch. - Maintainer: sunpoet@FreeBSD.org
 - Port Added: 2021-11-01 13:48:40
- Last Update: 2023-04-27 15:46:45
- Commit Hash: ae2c26c
- Also Listed In: python
- License: MIT
- Description:
- ndindex is a library that allows representing and manipulating objects that can
be valid indices to numpy arrays, i.e., slices, integers, ellipses, None,
integer and boolean arrays, and tuples thereof. The goals of the library are:
- Provide a uniform API to manipulate these objects. Unlike the standard index
objects themselves like slice, int, and tuple, which do not share any methods
in common related to being indices, ndindex classes can all be manipulated
uniformly. For example, idx.args always gives the arguments used to construct
idx.
- Give 100% correct semantics as defined by numpy's ndarray. This means that
ndindex will not make a transformation on an index object unless it is correct
for all possible input array shapes. The only exception to this rule is that
ndindex assumes that any given index will not raise IndexError (for instance,
from an out of bounds integer index or from too few dimensions). For those
operations where the array shape is known, there is a reduce() method to
reduce an index to a simpler index that is equivalent for the given shape.
- Enable useful transformation and manipulation functions on index objects.
¦ ¦ ¦ ¦ 
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- ${PYTHON_PKGNAMEPREFIX}ndindex>0:math/py-ndindex@${PY_FLAVOR}
- To install the port:
- cd /usr/ports/math/py-ndindex/ && make install clean
- To add the package, run one of these commands:
- pkg install math/py-ndindex
- pkg install py39-ndindex
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above. NOTE: This is a Python port. Instead of py39-ndindex listed in the above command, you can pick from the names under the Packages section.- PKGNAME: py39-ndindex
- Package flavors (<flavor>: <package>)
- distinfo:
- TIMESTAMP = 1682354538
SHA256 (ndindex-1.7.tar.gz) = bf9bd0b76eeada1c8275e04091f8291869ed2b373b7af48e56faf7579fd2efd2
SIZE (ndindex-1.7.tar.gz) = 85371
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- py39-setuptools>=63.1.0 : devel/py-setuptools@py39
- python3.9 : lang/python39
- Test dependencies:
-
- python3.9 : lang/python39
- Runtime dependencies:
-
- py39-setuptools>=63.1.0 : devel/py-setuptools@py39
- python3.9 : lang/python39
- This port is required by:
- for Run
-
- archivers/py-blosc2
- databases/py-caterva
Configuration Options:
- ===> The following configuration options are available for py39-ndindex-1.7:
ARRAYS=off: Array support
===> Use 'make config' to modify these settings
- Options name:
- math_py-ndindex
- USES:
- python:3.7+
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Number of commits found: 7
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.7 27 Apr 2023 15:46:45
    |
Po-Chuan Hsieh (sunpoet)  |
math/py-ndindex: Update to 1.7
Changes: https://github.com/Quansight-Labs/ndindex/blob/master/docs/changelog.md |
1.6 11 Jan 2023 15:58:34
    |
Dmitry Marakasov (amdmi3)  |
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR: 267994
Differential revision: D37518
Approved by: bapt |
07 Sep 2022 21:58:51
    |
Stefan Eßer (se)  |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.6 07 Sep 2022 21:10:59
    |
Stefan Eßer (se)  |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.6 20 Jul 2022 14:22:24
    |
Tobias C. Berner (tcberner)  |
math: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Alessando Sagratini <ale_sagra@hotmail.com>
* Alex Dupre <ale@FreeBSD.org>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Amarendra Godbole <amarendra.godbole@gmail.com>
* Anders Nordby <anders@FreeBSD.org>
* Andreas Fehlner (fehlner@gmx.de)
* Andrew L. Neporada <andrew@chg.ru>
* Andrey <gugu@zoo.rambler.ru>
* Andrey Zakhvatov (Only the first 15 lines of the commit message are shown above ) |
1.6 28 Feb 2022 12:46:21
    |
Po-Chuan Hsieh (sunpoet)  |
math/py-ndindex: Update to 1.6
- Add ARRAYS option
Changes: https://github.com/Quansight-Labs/ndindex/blob/master/docs/changelog.md |
1.5.2 01 Nov 2021 13:41:21
    |
Po-Chuan Hsieh (sunpoet)  |
math/py-ndindex: Add 1.5.2
ndindex is a library that allows representing and manipulating objects that can
be valid indices to numpy arrays, i.e., slices, integers, ellipses, None,
integer and boolean arrays, and tuples thereof. The goals of the library are:
- Provide a uniform API to manipulate these objects. Unlike the standard index
objects themselves like slice, int, and tuple, which do not share any methods
in common related to being indices, ndindex classes can all be manipulated
uniformly. For example, idx.args always gives the arguments used to construct
idx.
- Give 100% correct semantics as defined by numpy's ndarray. This means that
ndindex will not make a transformation on an index object unless it is correct
for all possible input array shapes. The only exception to this rule is that
ndindex assumes that any given index will not raise IndexError (for instance,
from an out of bounds integer index or from too few dimensions). For those
operations where the array shape is known, there is a reduce() method to
reduce an index to a simpler index that is equivalent for the given shape.
- Enable useful transformation and manipulation functions on index objects.
WWW: https://github.com/Quansight-Labs/ndindex |
Number of commits found: 7
|