82cf66a98a
-------------------------------- 2016-05-07 Florent Rougon <f.rougon@free.fr> Release 3.4.0 README.rst: link to the blessings library, add link to ncurses home page 2016-05-07 Florent Rougon <f.rougon@free.fr> Add 'week_start' common option, mapped to dialog's --week-start option * The value may be an integer or a string (cf. dialog's man page for more details). * Using this requires dialog 1.3-20160126 or later. 2016-05-07 Florent Rougon <f.rougon@free.fr> Update copyright notices and demo version Fix typo 2016-05-07 Florent Rougon <f.rougon@free.fr> Doc build: suppress warnings about :option:`--unknown-option` references * The documentation contains many references to dialog options. These are not defined in the pythondialog Manual, which with recent Sphinx (>= 1.3 or something like that) causes a lot of warnings. Fortunately, these can be suppressed (specifically for unknown option references) with 'suppress_warnings' in conf.py starting from Sphinx 1.4.0. * This is what this commit does. Alternatively, the option references could be replaced with dumb markup such as ``--unknown-option``. 2016-05-07 Florent Rougon <f.rougon@free.fr> Add demo example for Dialog.editbox_str() 2016-05-06 Florent Rougon <f.rougon@free.fr> Add Dialog.editbox_str() * dialog.py (Dialog.editbox_str): new method. It is a convenience wrapper around Dialog.editbox() that automatically creates and deletes a temporary file containing the initial box contents which is passed as a string (Dialog.editbox() needs it in a file). 2016-01-28 Florent Rougon <f.rougon@free.fr> Fix bug in demo.py when /etc/passwd is inexistent * examples/demo.py (MyApp.editbox_demo): display a message when /etc/passwd is inexistent instead of raising an exception (trying to display the result, which doesn't exist).
18 lines
529 B
Makefile
18 lines
529 B
Makefile
# $NetBSD: Makefile,v 1.4 2016/11/13 10:52:28 mef Exp $
|
|
|
|
VERSION= 3.4.0
|
|
DISTNAME= pythondialog-${VERSION}
|
|
PKGNAME= ${PYPKGPREFIX}-dialog-${VERSION}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pythondialog/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://pythondialog.sourceforge.net/
|
|
COMMENT= Python wrapper for the dialog utility
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
.include "../../misc/dialog/buildlink3.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|