mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-07 02:06:57 +00:00
f60a6a56d1
bitmath simplifies many facets of interacting with file sizes in various units. Functionality includes: - Converting between SI and NIST prefix units (kB to GiB) - Converting between units of the same type (SI to SI, or NIST to NIST) - Automatic human-readable prefix selection (like in hurry.filesize) - Basic arithmetic operations (subtracting 42KiB from 50GiB) - Rich comparison operations (1024 Bytes == 1KiB) - bitwise operations (<<, >>, &, |, ^) - argparse integration - progressbar integration - String parsing - Sorting WWW: https://github.com/tbielawa/bitmath
24 lines
537 B
Makefile
24 lines
537 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bitmath
|
|
PORTVERSION= 1.2.3
|
|
CATEGORIES= math python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}-4.tar.gz
|
|
|
|
MAINTAINER= wg@FreeBSD.org
|
|
COMMENT= Represent and manipulate file sizes with different prefix notations
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= python:2
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-4
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}progressbar231>0:${PORTSDIR}/misc/py-progressbar231
|
|
|
|
.include <bsd.port.mk>
|