79abf2eada
1.11.0: General changes/additions * augmatch: add a --quiet option; make the exit status useful to tell whether there was a match or not * Drastically reduce the amount of memory needed to evaluate complex path expressions against large files * Fix a segfault on OSX when 'augmatch' is run without any arguments API changes * aug_source did not in fact return the source; and always returned NULL for that. That has been fixed. Lens changes/additions * Chrony: add new options supported in chrony 3.2 and 3.3 * Dhclient: fix parsing of append/prepend and similar directives * Fstab: allow leading whitespace in mount entry lines * Grub: tolerate some invalid entries. Those invalid entries get mapped to '#error' nodes * Httpd: accept comments with whitespace right after a tag opening a section * Json: allow escaped slashes in strings * Multipath: accept regular expressions for devnode, wwid, and property in blacklist and blacklist_exceptions sections * Nginx: parse /etc/nginx/sites-enabled (plumbeo) allow semicolons inside double quoted strings in simple directives, and allow simple directives without an argument * Redis: accept the 'bind' statement with multiple IP addresses * Rsyslog: support include() directive introduced in rsyslog 8.33 * Strongswan: new lens * Systemd: do not try to treat *.d or *.wants directories as configuration files
22 lines
591 B
Makefile
22 lines
591 B
Makefile
# $NetBSD: Makefile,v 1.4 2019/02/12 12:21:00 adam Exp $
|
|
|
|
DISTNAME= python-augeas-1.0.3
|
|
PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}/}
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-augeas/}
|
|
|
|
MAINTAINER= bsiegert@NetBSD.org
|
|
HOMEPAGE= http://augeas.net/
|
|
COMMENT= Python bindings for Augeas
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-cffi>=1.0.0:../../devel/py-cffi
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/test && ${PYTHONBIN} test_augeas.py
|
|
|
|
.include "../../sysutils/augeas/buildlink3.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|