Version 2.8.0 Improvements * CLDR: Upgrade to CLDR 36.0 * Messages: Don't even open files with the "ignore" extraction method Bugfixes * Numbers: Fix formatting very small decimals when quantization is disabled * Messages: Attempt to sort all messages Docs * Add years to changelog * Note that installation requires pytz
22 lines
601 B
Makefile
22 lines
601 B
Makefile
# $NetBSD: Makefile,v 1.27 2020/01/22 21:16:36 adam Exp $
|
|
|
|
DISTNAME= Babel-2.8.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=B/Babel/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://babel.pocoo.org/
|
|
COMMENT= Collection of tools for internationalizing Python applications
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-pytz>=2015.7:../../time/py-pytz
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} pybabel pybabel-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|