Wed Feb 16 13:29:37 2011 UTC ()
Update to 702.

Upstream's changelog is incomplete.

Changelog:

702    2011-02-07
	Added enc_print to print strings in the CLI using enc which is
	file_encoding if the -F is passed and otherwise is term_encoding.
	Restored term_encoding to etmRC. Changed status_fmt for event from
	's' to 'tmp_s' to display zone-adjusted times. Changed 'S' and 'E'
	to sort by and display zone-adjusted times and busy/free periods.
701    2011-02-06
	Removed 'term_encoding' from etmRC and etmData.
700    2011-02-03
	Use item['tmp_s'] for time zone adjusted times and leave item['s']
	alone. Changing item['s'] could lead to applying time zone
	adjustment to an already adjusted time.
699    2011-02-02
	Fixed missing icon in the app build for os x. Increased min size
	slightly to remove horizontal scroll bar in itemlist on startup.
698    2011-01-27
	Removed import wx from etmData to allow running on systems without
	wx. Added tzlocal() to refreshprompt in etmWX to keep etm time and
	local time zone in sync.
697    2011-01-24
	Fixed encoding bug in 12-month calendar.
696    2011-01-16
	Added 'term_encoding' to rc file for output to the terminal/console
	window. Various updates for python 3 compatability. (Dateutil 1.5
	now supports python3 but wxpython does not.)
695    2011-01-10
	Declare strings to be unicode in etmData.py OL.
694    2011-01-10
	Replaced encoding in the rc file with gui_encoding (for the wxpython
	gui) and file_encoding (for reading and writing files).
693    2011-01-04
	Add 's' to required keys for reminder.
692    2011-01-03
	Removed try block from etmRC.py which forced the use of
	sys.stdout.encoding. Removed a couple of erroneous 'utf-8'. Now
	works with Russian under Windows!
691    2011-01-03
	Show more diagnostic information if OnInit in etmWX.py fails.
690    2011-01-01
	Fixed bug in date_calculator.
689    2010-12-29
	Fixed bug in exporting to ics. Improved documentation for weekday
	(thanks Adam).
688    2010-12-22
	Added settings for the colors for the command line interface to the
	rc file.
687    2010-12-21
	Don't check for local time zone unless auto_set_timezone is True.
	Fixed undefined 'tmp_d' error in select_items.
686    2010-12-14
	Removed the 'm' from the time of the next alert when use_ampm is
	True. Tweaks for dealing with a missing local time zone.
685    2010-12-11
	Added the ability to specify an alternative command using @A COMMAND
	to run instead of the default for an event or reminder.
684    2010-12-10
	Possible fix for windows registry issue with timezones.
683    2010-12-10
	Added settings for first and second column widths in the gui item
	list to the rc file.


(ryoon)
diff -r1.20 -r1.21 pkgsrc/time/etm/Makefile
diff -r1.6 -r1.7 pkgsrc/time/etm/PLIST
diff -r1.17 -r1.18 pkgsrc/time/etm/distinfo

cvs diff -r1.20 -r1.21 pkgsrc/time/etm/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/time/etm/Attic/Makefile 2010/06/15 13:22:59 1.20
+++ pkgsrc/time/etm/Attic/Makefile 2011/02/16 13:29:37 1.21
@@ -1,31 +1,30 @@ @@ -1,31 +1,30 @@
1# $NetBSD: Makefile,v 1.20 2010/06/15 13:22:59 wiz Exp $ 1# $NetBSD: Makefile,v 1.21 2011/02/16 13:29:37 ryoon Exp $
2# 2#
3 3
4DISTNAME= etm-622 4DISTNAME= etm-702
5CATEGORIES= time 5CATEGORIES= time
6MASTER_SITES= http://www.duke.edu/~dgraham/ETM/ 6MASTER_SITES= http://www.duke.edu/~dgraham/ETM/
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= ryoon@NetBSD.org
9HOMEPAGE= http://www.duke.edu/~dgraham/ETM/ 9HOMEPAGE= http://www.duke.edu/~dgraham/ETM/
10COMMENT= Event and Task Manager 10COMMENT= events and tasks manager using simple text files
11LICENSE= gnu-gpl-v3 11LICENSE= gnu-gpl-v3
12 12
13DEPENDS+= ${PYPKGPREFIX}-dateutil>=1.4:../../time/py-dateutil 
14DEPENDS+= ${PYPKGPREFIX}-icalendar-[0-9]*:../../time/py-icalendar 
15DEPENDS+= ${PYPKGPREFIX}-wxWidgets-[0-9]*:../../x11/py-wxWidgets 
16 
17PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
18 14
 15DEPENDS+= ${PYPKGPREFIX}-wxWidgets>=2.8.7:../../x11/py-wxWidgets
 16DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 17DEPENDS+= ${PYPKGPREFIX}-dateutil>=1.4.1:../../time/py-dateutil
 18DEPENDS+= ${PYPKGPREFIX}-icalendar>=2.0.1:../../time/py-icalendar
 19
19USE_LANGUAGES= # none 20USE_LANGUAGES= # none
20 21
21SUBST_CLASSES+= python 22PYDISTUTILSPKG= yes
22SUBST_SED.python+= -e 's,\(\#! *\)python,\1${PYTHONBIN},' 
23SUBST_FILES.python= ez_setup.py 
24SUBST_STAGE.python= pre-build 
25SUBST_MESSAGE.python= Replacing python interpreter. 
26 23
27REPLACE_PYTHON= e.py etm/etmBusyFree.py 24# Delete an unnecessary file
 25post-configure:
 26 ${RM} ${WRKSRC}/etm.egg-info/.SOURCES.txt~
28 27
29.include "../../lang/python/application.mk" 28.include "../../lang/python/application.mk"
30.include "../../lang/python/egg.mk" 29.include "../../lang/python/extension.mk"
31.include "../../mk/bsd.pkg.mk" 30.include "../../mk/bsd.pkg.mk"

cvs diff -r1.6 -r1.7 pkgsrc/time/etm/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/time/etm/Attic/PLIST 2010/06/15 13:22:59 1.6
+++ pkgsrc/time/etm/Attic/PLIST 2011/02/16 13:29:37 1.7
@@ -1,55 +1,49 @@ @@ -1,55 +1,49 @@
1@comment $NetBSD: PLIST,v 1.6 2010/06/15 13:22:59 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.7 2011/02/16 13:29:37 ryoon Exp $
2bin/e.py 2bin/e.py
3bin/e.pyw 3bin/e.pyw
4${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 4${PYSITELIB}/${PKGNAME}-py2.6.egg-info/PKG-INFO
5${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 5${PYSITELIB}/${PKGNAME}-py2.6.egg-info/SOURCES.txt
6${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 6${PYSITELIB}/${PKGNAME}-py2.6.egg-info/dependency_links.txt
7${PYSITELIB}/${EGG_INFODIR}/requires.txt 7${PYSITELIB}/${PKGNAME}-py2.6.egg-info/requires.txt
8${PYSITELIB}/${EGG_INFODIR}/top_level.txt 8${PYSITELIB}/${PKGNAME}-py2.6.egg-info/top_level.txt
9${PYSITELIB}/etm/__init__.py 9${PYSITELIB}/etm/__init__.py
10${PYSITELIB}/etm/__init__.pyc 10${PYSITELIB}/etm/__init__.pyc
11${PYSITELIB}/etm/__init__.pyo 11${PYSITELIB}/etm/__init__.pyo
12${PYSITELIB}/etm/etmAbout.py 
13${PYSITELIB}/etm/etmAbout.pyc 
14${PYSITELIB}/etm/etmAbout.pyo 
15${PYSITELIB}/etm/etmBusyFree.py 12${PYSITELIB}/etm/etmBusyFree.py
16${PYSITELIB}/etm/etmBusyFree.pyc 13${PYSITELIB}/etm/etmBusyFree.pyc
17${PYSITELIB}/etm/etmBusyFree.pyo 14${PYSITELIB}/etm/etmBusyFree.pyo
18${PYSITELIB}/etm/etmCAL.py 15${PYSITELIB}/etm/etmCAL.py
19${PYSITELIB}/etm/etmCAL.pyc 16${PYSITELIB}/etm/etmCAL.pyc
20${PYSITELIB}/etm/etmCAL.pyo 17${PYSITELIB}/etm/etmCAL.pyo
21${PYSITELIB}/etm/etmData.py 18${PYSITELIB}/etm/etmData.py
22${PYSITELIB}/etm/etmData.pyc 19${PYSITELIB}/etm/etmData.pyc
23${PYSITELIB}/etm/etmData.pyo 20${PYSITELIB}/etm/etmData.pyo
 21${PYSITELIB}/etm/etmDialog.py
 22${PYSITELIB}/etm/etmDialog.pyc
 23${PYSITELIB}/etm/etmDialog.pyo
24${PYSITELIB}/etm/etmHTML.py 24${PYSITELIB}/etm/etmHTML.py
25${PYSITELIB}/etm/etmHTML.pyc 25${PYSITELIB}/etm/etmHTML.pyc
26${PYSITELIB}/etm/etmHTML.pyo 26${PYSITELIB}/etm/etmHTML.pyo
27${PYSITELIB}/etm/etmITEM.py 
28${PYSITELIB}/etm/etmITEM.pyc 
29${PYSITELIB}/etm/etmITEM.pyo 
30${PYSITELIB}/etm/etmParsers.py 27${PYSITELIB}/etm/etmParsers.py
31${PYSITELIB}/etm/etmParsers.pyc 28${PYSITELIB}/etm/etmParsers.pyc
32${PYSITELIB}/etm/etmParsers.pyo 29${PYSITELIB}/etm/etmParsers.pyo
33${PYSITELIB}/etm/etmRC.py 30${PYSITELIB}/etm/etmRC.py
34${PYSITELIB}/etm/etmRC.pyc 31${PYSITELIB}/etm/etmRC.pyc
35${PYSITELIB}/etm/etmRC.pyo 32${PYSITELIB}/etm/etmRC.pyo
36${PYSITELIB}/etm/etmSunMoon.py 33${PYSITELIB}/etm/etmSunMoon.py
37${PYSITELIB}/etm/etmSunMoon.pyc 34${PYSITELIB}/etm/etmSunMoon.pyc
38${PYSITELIB}/etm/etmSunMoon.pyo 35${PYSITELIB}/etm/etmSunMoon.pyo
39${PYSITELIB}/etm/etmVersion.py 36${PYSITELIB}/etm/etmVersion.py
40${PYSITELIB}/etm/etmVersion.pyc 37${PYSITELIB}/etm/etmVersion.pyc
41${PYSITELIB}/etm/etmVersion.pyo 38${PYSITELIB}/etm/etmVersion.pyo
42${PYSITELIB}/etm/etmWX.py 39${PYSITELIB}/etm/etmWX.py
43${PYSITELIB}/etm/etmWX.pyc 40${PYSITELIB}/etm/etmWX.pyc
44${PYSITELIB}/etm/etmWX.pyo 41${PYSITELIB}/etm/etmWX.pyo
45${PYSITELIB}/etm/etmWeather.py 42${PYSITELIB}/etm/etmWeather.py
46${PYSITELIB}/etm/etmWeather.pyc 43${PYSITELIB}/etm/etmWeather.pyc
47${PYSITELIB}/etm/etmWeather.pyo 44${PYSITELIB}/etm/etmWeather.pyo
48${PYSITELIB}/etm/etm_alert.wav 45${PYSITELIB}/etm/etm_alert.wav
49${PYSITELIB}/etm/etmlogo.ico 46${PYSITELIB}/etm/etmlogo.ico
50${PYSITELIB}/etm/etmlogo_128x128x32.png 47${PYSITELIB}/etm/etmlogo_128x128x32.png
51${PYSITELIB}/etm/etmlogo_16x16x32.png 48${PYSITELIB}/etm/etmlogo_16x16x32.png
52${PYSITELIB}/etm/etmlogo_32x32x32.png 49${PYSITELIB}/etm/etmlogo_32x32x32.png
53${PYSITELIB}/ez_setup.py 
54${PYSITELIB}/ez_setup.pyc 
55${PYSITELIB}/ez_setup.pyo 

cvs diff -r1.17 -r1.18 pkgsrc/time/etm/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/time/etm/Attic/distinfo 2010/06/15 13:22:59 1.17
+++ pkgsrc/time/etm/Attic/distinfo 2011/02/16 13:29:37 1.18
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.17 2010/06/15 13:22:59 wiz Exp $ 1$NetBSD: distinfo,v 1.18 2011/02/16 13:29:37 ryoon Exp $
2 2
3SHA1 (etm-622.tar.gz) = ea7d747e18b7f572c8d2074243d4dd02ced6f818 3SHA1 (etm-702.tar.gz) = 57e3a4b851b7499d5e6f7490c0448ebd648f8224
4RMD160 (etm-622.tar.gz) = 7379bf56d86140114c8ef61d5073f48f695ac96b 4RMD160 (etm-702.tar.gz) = 385d35d1e7a16c77802343418aba6159b8922f8d
5Size (etm-622.tar.gz) = 157139 bytes 5Size (etm-702.tar.gz) = 163369 bytes