Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Jan 2002 00:06:43 -0500 (EST)
From:      Alan Eldridge <ports@geeksrus.net>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        wjv@freebsd.org
Subject:   ports/33461: diveintopython: no page mods, add examples, word, help files
Message-ID:  <200201020506.g0256ho14842@wwweasel.geeksrus.net>

next in thread | raw e-mail | index | archive | help

>Number:         33461
>Category:       ports
>Synopsis:       diveintopython: no page mods, add examples, word, help files
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jan 01 21:10:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Alan Eldridge
>Release:        FreeBSD 4.4-STABLE i386
>Organization:
Geeksrus.NET
>Environment:
System: FreeBSD wwweasel.geeksrus.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Dec 2 19:14:12 EST 2001 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386

>Description:

Update to 3.9.1_1:

1. Do not edit the books index.html (mentioned by author, private email). 
2. Set the mode on the installed files.
3. WRKSRC=${WRKDIR}/${PORTNAME}, to make the following changes easier.
4. Move the book to DOCSDIR/html.
5. Copy the example python files to DOCSDIR/examples.
6. Include the word and winhelp files (mentioned by author, private email).

>How-To-Repeat:

>Fix:

diff -ru3 diveintopython/Makefile diveintopython.new/Makefile
--- diveintopython/Makefile	Tue Jan  1 23:43:07 2002
+++ diveintopython.new/Makefile	Tue Jan  1 23:49:35 2002
@@ -7,6 +7,7 @@
 
 PORTNAME=	diveintopython
 PORTVERSION=	3.9.1
+PORTREVISION=	1
 CATEGORIES=	lang python
 MASTER_SITES=	http://diveintopython.org/download/
 DISTNAME=	${PORTNAME}
@@ -14,6 +15,8 @@
 		${DISTNAME}-html-flat-${VERSIONSTR}${EXTRACT_SUFX} \
 		${DISTNAME}-pdf-${VERSIONSTR}${EXTRACT_SUFX} \
 		${DISTNAME}-text-${VERSIONSTR}${EXTRACT_SUFX} \
+		${DISTNAME}-word-${VERSIONSTR}${EXTRACT_SUFX} \
+		${DISTNAME}-help-${VERSIONSTR}${EXTRACT_SUFX} \
 		${DISTNAME}-examples-${VERSIONSTR}${EXTRACT_SUFX}
 DIST_SUBDIR=	${PORTNAME}
 EXTRACT_ONLY=	${DISTNAME}-html-${VERSIONSTR}${EXTRACT_SUFX}
@@ -22,30 +25,34 @@
 
 NO_BUILD=	YES
 USE_ZIP=	YES
-WRKSRC=		${WRKDIR}/html
-DIPDLDIR=	${DOCSDIR}/download
+WRKSRC=		${WRKDIR}/${PORTNAME}
+EXTRACT_CMD=	unzip
+EXTRACT_BEFORE_ARGS=
+EXTRACT_AFTER_ARGS=-d${WRKSRC}
+DIPBKDIR=	${DOCSDIR}/html
+DIPDLDIR=	${DIPBKDIR}/download
+DIPEXDIR=	${DOCSDIR}/examples
 CPIO=		cpio --quiet -pdum -R
 VERSIONSTR=	${PORTVERSION:C|\.([^.]*)$|-\1|}
 PLIST_SUB+=	VERSTR=${VERSIONSTR}
 
 post-patch:
-	@ ${PERL} -pi.orig -e \
-	  's#<div class="selfad"(.(?!</div>))*.</div>##; \
-	   s#<tr[^>]*>(.(?!<tr[^>]*>))*(Microsoft|Windows)(.(?!</tr>))*.</tr>##g; \
-	   s#<td>(.(?!<td>))*/(cn/|(es|fr)/[^"]|kr/)(.(?!</td>))*.</td>##g' \
-	   ${WRKSRC}/index.html
 	@ ${PERL} -pi -e \
 	  's#http[^>]*(download/${PORTNAME}-examples-${VERSIONSTR}.zip)#$$1#' \
-	  ${WRKSRC}/*.html
+	  ${WRKSRC}/html/*.html
 
 do-install:
-	@ ${MKDIR} ${DIPDLDIR}
-	@ cd ${WRKSRC} && find *.html *.css images \
-	  | ${CPIO} ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
-.for format in html html-flat pdf text examples
+	@ ${MKDIR} ${DESTDIR}${DIPDLDIR} ${DESTDIR}${DIPEXDIR}
+	@ cd ${WRKSRC}/html && find *.html *.css images \
+	  | ${CPIO} ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${DIPBKDIR}
+	@ cd ${WRKSRC}/py && find . \
+	  | ${CPIO} ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${DIPEXDIR}
+.for format in html html-flat pdf text examples word help
 	@ ${INSTALL_DATA} \
 	  ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}-${format}-${VERSIONSTR}.zip \
 	  ${DIPDLDIR}
 .endfor
+	@ ${CHMOD} -R ${SHAREMODE} ${DESTDIR}${DOCSDIR}
+	@ ${FIND} ${DESTDIR}${DOCSDIR} -type d |${XARGS} ${CHMOD} +x
 
 .include <bsd.port.mk>
diff -ru3 diveintopython/distinfo diveintopython.new/distinfo
--- diveintopython/distinfo	Tue Jan  1 23:43:07 2002
+++ diveintopython.new/distinfo	Tue Jan  1 23:38:17 2002
@@ -2,4 +2,6 @@
 MD5 (diveintopython/diveintopython-html-flat-3.9-1.zip) = 6fefa9ea15be355d1e07ce9efe65c480
 MD5 (diveintopython/diveintopython-pdf-3.9-1.zip) = 23c4d62ac33c637635dfbc0b31a07ef3
 MD5 (diveintopython/diveintopython-text-3.9-1.zip) = 6d3be27455568708705ba1d22cce1781
+MD5 (diveintopython/diveintopython-word-3.9-1.zip) = cebb41c571e479c14de6b347326f7b40
+MD5 (diveintopython/diveintopython-help-3.9-1.zip) = a98a59197e6418c81370452be175acf7
 MD5 (diveintopython/diveintopython-examples-3.9-1.zip) = 1b6cd7c2dbc8dea106f4ed58e43dc8a6
diff -ru3 diveintopython/pkg-plist diveintopython.new/pkg-plist
--- diveintopython/pkg-plist	Tue Jan  1 23:43:07 2002
+++ diveintopython.new/pkg-plist	Tue Jan  1 23:50:55 2002
@@ -1,133 +1,208 @@
-share/doc/diveintopython/about.html
-share/doc/diveintopython/abstracts.html
-share/doc/diveintopython/apihelper_alltogether.html
-share/doc/diveintopython/apihelper_andor.html
-share/doc/diveintopython/apihelper_builtin.html
-share/doc/diveintopython/apihelper_divein.html
-share/doc/diveintopython/apihelper_filter.html
-share/doc/diveintopython/apihelper_getattr.html
-share/doc/diveintopython/apihelper_lambda.html
-share/doc/diveintopython/apihelper_optional.html
-share/doc/diveintopython/apihelper_summary.html
-share/doc/diveintopython/chef.html
-share/doc/diveintopython/dialect_alltogether.html
-share/doc/diveintopython/dialect_basehtml.html
-share/doc/diveintopython/dialect_dialectizer.html
-share/doc/diveintopython/dialect_dictsub.html
-share/doc/diveintopython/dialect_divein.html
-share/doc/diveintopython/dialect_extract.html
-share/doc/diveintopython/dialect_locals.html
-share/doc/diveintopython/dialect_quoting.html
-share/doc/diveintopython/dialect_re.html
-share/doc/diveintopython/dialect_sgmllib.html
-share/doc/diveintopython/dialect_summary.html
-share/doc/diveintopython/diveintopython.css
-share/doc/diveintopython/download/diveintopython-examples-%%VERSTR%%.zip
-share/doc/diveintopython/download/diveintopython-html-%%VERSTR%%.zip
-share/doc/diveintopython/download/diveintopython-html-flat-%%VERSTR%%.zip
-share/doc/diveintopython/download/diveintopython-pdf-%%VERSTR%%.zip
-share/doc/diveintopython/download/diveintopython-text-%%VERSTR%%.zip
-share/doc/diveintopython/examples.html
-share/doc/diveintopython/fdl.html
-share/doc/diveintopython/fdl_aggregation.html
-share/doc/diveintopython/fdl_applicability.html
-share/doc/diveintopython/fdl_collections.html
-share/doc/diveintopython/fdl_combining.html
-share/doc/diveintopython/fdl_copying.html
-share/doc/diveintopython/fdl_copyinginquantity.html
-share/doc/diveintopython/fdl_future.html
-share/doc/diveintopython/fdl_howto.html
-share/doc/diveintopython/fdl_modifications.html
-share/doc/diveintopython/fdl_termination.html
-share/doc/diveintopython/fdl_translation.html
-share/doc/diveintopython/fileinfo_alltogether.html
-share/doc/diveintopython/fileinfo_class.html
-share/doc/diveintopython/fileinfo_classattributes.html
-share/doc/diveintopython/fileinfo_divein.html
-share/doc/diveintopython/fileinfo_exception.html
-share/doc/diveintopython/fileinfo_files.html
-share/doc/diveintopython/fileinfo_for.html
-share/doc/diveintopython/fileinfo_fromimport.html
-share/doc/diveintopython/fileinfo_instantiation.html
-share/doc/diveintopython/fileinfo_modules.html
-share/doc/diveintopython/fileinfo_morespecial.html
-share/doc/diveintopython/fileinfo_os.html
-share/doc/diveintopython/fileinfo_private.html
-share/doc/diveintopython/fileinfo_specialmethods.html
-share/doc/diveintopython/fileinfo_summary.html
-share/doc/diveintopython/fileinfo_userdict.html
-share/doc/diveintopython/fudd.html
-share/doc/diveintopython/furtherreading.html
-share/doc/diveintopython/history.html
-share/doc/diveintopython/images/callouts/1.png
-share/doc/diveintopython/images/callouts/10.png
-share/doc/diveintopython/images/callouts/2.png
-share/doc/diveintopython/images/callouts/3.png
-share/doc/diveintopython/images/callouts/4.png
-share/doc/diveintopython/images/callouts/5.png
-share/doc/diveintopython/images/callouts/6.png
-share/doc/diveintopython/images/callouts/7.png
-share/doc/diveintopython/images/callouts/8.png
-share/doc/diveintopython/images/callouts/9.png
-share/doc/diveintopython/images/caution.png
-share/doc/diveintopython/images/dot.png
-share/doc/diveintopython/images/important.png
-share/doc/diveintopython/images/note.png
-share/doc/diveintopython/images/tip.png
-share/doc/diveintopython/images/warning.png
-share/doc/diveintopython/index.html
-share/doc/diveintopython/kgp_attributes.html
-share/doc/diveintopython/kgp_commandline.html
-share/doc/diveintopython/kgp_divein.html
-share/doc/diveintopython/kgp_openanything.html
-share/doc/diveintopython/kgp_packages.html
-share/doc/diveintopython/kgp_parse.html
-share/doc/diveintopython/kgp_search.html
-share/doc/diveintopython/kgp_stdio.html
-share/doc/diveintopython/kgp_unicode.html
-share/doc/diveintopython/license.html
-share/doc/diveintopython/license_terms.html
-share/doc/diveintopython/odbchelper_dict.html
-share/doc/diveintopython/odbchelper_divein.html
-share/doc/diveintopython/odbchelper_docstring.html
-share/doc/diveintopython/odbchelper_funcdef.html
-share/doc/diveintopython/odbchelper_indenting.html
-share/doc/diveintopython/odbchelper_join.html
-share/doc/diveintopython/odbchelper_list.html
-share/doc/diveintopython/odbchelper_map.html
-share/doc/diveintopython/odbchelper_multiassign.html
-share/doc/diveintopython/odbchelper_objects.html
-share/doc/diveintopython/odbchelper_stringformatting.html
-share/doc/diveintopython/odbchelper_summary.html
-share/doc/diveintopython/odbchelper_testing.html
-share/doc/diveintopython/odbchelper_tuple.html
-share/doc/diveintopython/odbchelper_vardef.html
-share/doc/diveintopython/olde.html
-share/doc/diveintopython/preface.html
-share/doc/diveintopython/regression_datacentric.html
-share/doc/diveintopython/regression_divein.html
-share/doc/diveintopython/regression_filter.html
-share/doc/diveintopython/regression_import.html
-share/doc/diveintopython/regression_map.html
-share/doc/diveintopython/regression_path.html
-share/doc/diveintopython/roman_bugs.html
-share/doc/diveintopython/roman_change.html
-share/doc/diveintopython/roman_divein.html
-share/doc/diveintopython/roman_failure.html
-share/doc/diveintopython/roman_postscript.html
-share/doc/diveintopython/roman_refactoring.html
-share/doc/diveintopython/roman_romantest.html
-share/doc/diveintopython/roman_sanity.html
-share/doc/diveintopython/roman_stage1.html
-share/doc/diveintopython/roman_stage2.html
-share/doc/diveintopython/roman_stage3.html
-share/doc/diveintopython/roman_stage4.html
-share/doc/diveintopython/roman_stage5.html
-share/doc/diveintopython/roman_success.html
-share/doc/diveintopython/roman_summary.html
-share/doc/diveintopython/tips.html
-share/doc/diveintopython/toc.html
-@dirrm share/doc/diveintopython/images/callouts
-@dirrm share/doc/diveintopython/images
-@dirrm share/doc/diveintopython/download
+@comment html
+share/doc/diveintopython/html/about.html
+share/doc/diveintopython/html/abstracts.html
+share/doc/diveintopython/html/apihelper_alltogether.html
+share/doc/diveintopython/html/apihelper_andor.html
+share/doc/diveintopython/html/apihelper_builtin.html
+share/doc/diveintopython/html/apihelper_divein.html
+share/doc/diveintopython/html/apihelper_filter.html
+share/doc/diveintopython/html/apihelper_getattr.html
+share/doc/diveintopython/html/apihelper_lambda.html
+share/doc/diveintopython/html/apihelper_optional.html
+share/doc/diveintopython/html/apihelper_summary.html
+share/doc/diveintopython/html/chef.html
+share/doc/diveintopython/html/dialect_alltogether.html
+share/doc/diveintopython/html/dialect_basehtml.html
+share/doc/diveintopython/html/dialect_dialectizer.html
+share/doc/diveintopython/html/dialect_dictsub.html
+share/doc/diveintopython/html/dialect_divein.html
+share/doc/diveintopython/html/dialect_extract.html
+share/doc/diveintopython/html/dialect_locals.html
+share/doc/diveintopython/html/dialect_quoting.html
+share/doc/diveintopython/html/dialect_re.html
+share/doc/diveintopython/html/dialect_sgmllib.html
+share/doc/diveintopython/html/dialect_summary.html
+share/doc/diveintopython/html/diveintopython.css
+share/doc/diveintopython/html/download/diveintopython-examples-%%VERSTR%%.zip
+share/doc/diveintopython/html/download/diveintopython-help-%%VERSTR%%.zip
+share/doc/diveintopython/html/download/diveintopython-html-%%VERSTR%%.zip
+share/doc/diveintopython/html/download/diveintopython-html-flat-%%VERSTR%%.zip
+share/doc/diveintopython/html/download/diveintopython-pdf-%%VERSTR%%.zip
+share/doc/diveintopython/html/download/diveintopython-text-%%VERSTR%%.zip
+share/doc/diveintopython/html/download/diveintopython-word-%%VERSTR%%.zip
+share/doc/diveintopython/html/examples.html
+share/doc/diveintopython/html/fdl.html
+share/doc/diveintopython/html/fdl_aggregation.html
+share/doc/diveintopython/html/fdl_applicability.html
+share/doc/diveintopython/html/fdl_collections.html
+share/doc/diveintopython/html/fdl_combining.html
+share/doc/diveintopython/html/fdl_copying.html
+share/doc/diveintopython/html/fdl_copyinginquantity.html
+share/doc/diveintopython/html/fdl_future.html
+share/doc/diveintopython/html/fdl_howto.html
+share/doc/diveintopython/html/fdl_modifications.html
+share/doc/diveintopython/html/fdl_termination.html
+share/doc/diveintopython/html/fdl_translation.html
+share/doc/diveintopython/html/fileinfo_alltogether.html
+share/doc/diveintopython/html/fileinfo_class.html
+share/doc/diveintopython/html/fileinfo_classattributes.html
+share/doc/diveintopython/html/fileinfo_divein.html
+share/doc/diveintopython/html/fileinfo_exception.html
+share/doc/diveintopython/html/fileinfo_files.html
+share/doc/diveintopython/html/fileinfo_for.html
+share/doc/diveintopython/html/fileinfo_fromimport.html
+share/doc/diveintopython/html/fileinfo_instantiation.html
+share/doc/diveintopython/html/fileinfo_modules.html
+share/doc/diveintopython/html/fileinfo_morespecial.html
+share/doc/diveintopython/html/fileinfo_os.html
+share/doc/diveintopython/html/fileinfo_private.html
+share/doc/diveintopython/html/fileinfo_specialmethods.html
+share/doc/diveintopython/html/fileinfo_summary.html
+share/doc/diveintopython/html/fileinfo_userdict.html
+share/doc/diveintopython/html/fudd.html
+share/doc/diveintopython/html/furtherreading.html
+share/doc/diveintopython/html/history.html
+share/doc/diveintopython/html/images/callouts/1.png
+share/doc/diveintopython/html/images/callouts/10.png
+share/doc/diveintopython/html/images/callouts/2.png
+share/doc/diveintopython/html/images/callouts/3.png
+share/doc/diveintopython/html/images/callouts/4.png
+share/doc/diveintopython/html/images/callouts/5.png
+share/doc/diveintopython/html/images/callouts/6.png
+share/doc/diveintopython/html/images/callouts/7.png
+share/doc/diveintopython/html/images/callouts/8.png
+share/doc/diveintopython/html/images/callouts/9.png
+share/doc/diveintopython/html/images/caution.png
+share/doc/diveintopython/html/images/dot.png
+share/doc/diveintopython/html/images/important.png
+share/doc/diveintopython/html/images/note.png
+share/doc/diveintopython/html/images/tip.png
+share/doc/diveintopython/html/images/warning.png
+share/doc/diveintopython/html/index.html
+share/doc/diveintopython/html/kgp_attributes.html
+share/doc/diveintopython/html/kgp_commandline.html
+share/doc/diveintopython/html/kgp_divein.html
+share/doc/diveintopython/html/kgp_openanything.html
+share/doc/diveintopython/html/kgp_packages.html
+share/doc/diveintopython/html/kgp_parse.html
+share/doc/diveintopython/html/kgp_search.html
+share/doc/diveintopython/html/kgp_stdio.html
+share/doc/diveintopython/html/kgp_unicode.html
+share/doc/diveintopython/html/license.html
+share/doc/diveintopython/html/license_terms.html
+share/doc/diveintopython/html/odbchelper_dict.html
+share/doc/diveintopython/html/odbchelper_divein.html
+share/doc/diveintopython/html/odbchelper_docstring.html
+share/doc/diveintopython/html/odbchelper_funcdef.html
+share/doc/diveintopython/html/odbchelper_indenting.html
+share/doc/diveintopython/html/odbchelper_join.html
+share/doc/diveintopython/html/odbchelper_list.html
+share/doc/diveintopython/html/odbchelper_map.html
+share/doc/diveintopython/html/odbchelper_multiassign.html
+share/doc/diveintopython/html/odbchelper_objects.html
+share/doc/diveintopython/html/odbchelper_stringformatting.html
+share/doc/diveintopython/html/odbchelper_summary.html
+share/doc/diveintopython/html/odbchelper_testing.html
+share/doc/diveintopython/html/odbchelper_tuple.html
+share/doc/diveintopython/html/odbchelper_vardef.html
+share/doc/diveintopython/html/olde.html
+share/doc/diveintopython/html/preface.html
+share/doc/diveintopython/html/regression_datacentric.html
+share/doc/diveintopython/html/regression_divein.html
+share/doc/diveintopython/html/regression_filter.html
+share/doc/diveintopython/html/regression_import.html
+share/doc/diveintopython/html/regression_map.html
+share/doc/diveintopython/html/regression_path.html
+share/doc/diveintopython/html/roman_bugs.html
+share/doc/diveintopython/html/roman_change.html
+share/doc/diveintopython/html/roman_divein.html
+share/doc/diveintopython/html/roman_failure.html
+share/doc/diveintopython/html/roman_postscript.html
+share/doc/diveintopython/html/roman_refactoring.html
+share/doc/diveintopython/html/roman_romantest.html
+share/doc/diveintopython/html/roman_sanity.html
+share/doc/diveintopython/html/roman_stage1.html
+share/doc/diveintopython/html/roman_stage2.html
+share/doc/diveintopython/html/roman_stage3.html
+share/doc/diveintopython/html/roman_stage4.html
+share/doc/diveintopython/html/roman_stage5.html
+share/doc/diveintopython/html/roman_success.html
+share/doc/diveintopython/html/roman_summary.html
+share/doc/diveintopython/html/tips.html
+share/doc/diveintopython/html/toc.html
+@dirrm share/doc/diveintopython/html/images/callouts
+@dirrm share/doc/diveintopython/html/images
+@dirrm share/doc/diveintopython/html/download
+@dirrm share/doc/diveintopython/html
+@comment examples
+share/doc/diveintopython/examples/BaseHTMLProcessor.py
+share/doc/diveintopython/examples/LICENSE.txt
+share/doc/diveintopython/examples/apihelper.py
+share/doc/diveintopython/examples/apihelpertest.py
+share/doc/diveintopython/examples/autosize.py
+share/doc/diveintopython/examples/builddialectexamples.py
+share/doc/diveintopython/examples/colorize.py
+share/doc/diveintopython/examples/dialect.py
+share/doc/diveintopython/examples/fileinfo.py
+share/doc/diveintopython/examples/fullpath.py
+share/doc/diveintopython/examples/kgp/binary.xml
+share/doc/diveintopython/examples/kgp/husserl.xml
+share/doc/diveintopython/examples/kgp/kant.xml
+share/doc/diveintopython/examples/kgp/kgp.dtd
+share/doc/diveintopython/examples/kgp/kgp.py
+share/doc/diveintopython/examples/kgp/russiansample.xml
+share/doc/diveintopython/examples/kgp/stderr.py
+share/doc/diveintopython/examples/kgp/stdout.py
+share/doc/diveintopython/examples/kgp/template.xml
+share/doc/diveintopython/examples/kgp/test.xml
+share/doc/diveintopython/examples/kgp/thanks.xml
+share/doc/diveintopython/examples/kgp/toolbox.py
+share/doc/diveintopython/examples/kgptest.py
+share/doc/diveintopython/examples/makerealworddoc.py
+share/doc/diveintopython/examples/odbchelper.py
+share/doc/diveintopython/examples/odbchelpertest.py
+share/doc/diveintopython/examples/pyfontify.py
+share/doc/diveintopython/examples/regression.py
+share/doc/diveintopython/examples/roman.py
+share/doc/diveintopython/examples/roman/stage1/roman1.py
+share/doc/diveintopython/examples/roman/stage1/romantest1.py
+share/doc/diveintopython/examples/roman/stage2/roman2.py
+share/doc/diveintopython/examples/roman/stage2/romantest2.py
+share/doc/diveintopython/examples/roman/stage3/roman3.py
+share/doc/diveintopython/examples/roman/stage3/romantest3.py
+share/doc/diveintopython/examples/roman/stage4/roman4.py
+share/doc/diveintopython/examples/roman/stage4/romantest4.py
+share/doc/diveintopython/examples/roman/stage5/roman5.py
+share/doc/diveintopython/examples/roman/stage5/romantest5.py
+share/doc/diveintopython/examples/roman/stage6/roman61.py
+share/doc/diveintopython/examples/roman/stage6/roman62.py
+share/doc/diveintopython/examples/roman/stage6/romantest61.py
+share/doc/diveintopython/examples/roman/stage6/romantest62.py
+share/doc/diveintopython/examples/roman/stage7/roman71.py
+share/doc/diveintopython/examples/roman/stage7/roman72.py
+share/doc/diveintopython/examples/roman/stage7/romantest71.py
+share/doc/diveintopython/examples/roman/stage7/romantest72.py
+share/doc/diveintopython/examples/roman/stage8/roman81.py
+share/doc/diveintopython/examples/roman/stage8/roman82.py
+share/doc/diveintopython/examples/roman/stage8/roman83.py
+share/doc/diveintopython/examples/roman/stage8/romantest81.py
+share/doc/diveintopython/examples/roman/stage8/romantest82.py
+share/doc/diveintopython/examples/roman/stage8/romantest83.py
+share/doc/diveintopython/examples/roman/stage9/roman9.py
+share/doc/diveintopython/examples/roman/stage9/romantest9.py
+share/doc/diveintopython/examples/romantest.py
+share/doc/diveintopython/examples/unicode2koi8r.py
+share/doc/diveintopython/examples/urllister.py
+@dirrm share/doc/diveintopython/examples/roman/stage9
+@dirrm share/doc/diveintopython/examples/roman/stage8
+@dirrm share/doc/diveintopython/examples/roman/stage7
+@dirrm share/doc/diveintopython/examples/roman/stage6
+@dirrm share/doc/diveintopython/examples/roman/stage5
+@dirrm share/doc/diveintopython/examples/roman/stage4
+@dirrm share/doc/diveintopython/examples/roman/stage3
+@dirrm share/doc/diveintopython/examples/roman/stage2
+@dirrm share/doc/diveintopython/examples/roman/stage1
+@dirrm share/doc/diveintopython/examples/roman
+@dirrm share/doc/diveintopython/examples/kgp
+@dirrm share/doc/diveintopython/examples
 @dirrm share/doc/diveintopython
diff -ru3 diveintopython/work/.PLIST.mktmp diveintopython.new/work/.PLIST.mktmp
--- diveintopython/work/.PLIST.mktmp	Tue Jan  1 23:45:49 2002
+++ diveintopython.new/work/.PLIST.mktmp	Tue Jan  1 23:52:54 2002
@@ -1,134 +1,209 @@
-share/doc/diveintopython/about.html
-share/doc/diveintopython/abstracts.html
-share/doc/diveintopython/apihelper_alltogether.html
-share/doc/diveintopython/apihelper_andor.html
-share/doc/diveintopython/apihelper_builtin.html
-share/doc/diveintopython/apihelper_divein.html
-share/doc/diveintopython/apihelper_filter.html
-share/doc/diveintopython/apihelper_getattr.html
-share/doc/diveintopython/apihelper_lambda.html
-share/doc/diveintopython/apihelper_optional.html
-share/doc/diveintopython/apihelper_summary.html
-share/doc/diveintopython/chef.html
-share/doc/diveintopython/dialect_alltogether.html
-share/doc/diveintopython/dialect_basehtml.html
-share/doc/diveintopython/dialect_dialectizer.html
-share/doc/diveintopython/dialect_dictsub.html
-share/doc/diveintopython/dialect_divein.html
-share/doc/diveintopython/dialect_extract.html
-share/doc/diveintopython/dialect_locals.html
-share/doc/diveintopython/dialect_quoting.html
-share/doc/diveintopython/dialect_re.html
-share/doc/diveintopython/dialect_sgmllib.html
-share/doc/diveintopython/dialect_summary.html
-share/doc/diveintopython/diveintopython.css
-share/doc/diveintopython/download/diveintopython-examples-3.9-1.zip
-share/doc/diveintopython/download/diveintopython-html-3.9-1.zip
-share/doc/diveintopython/download/diveintopython-html-flat-3.9-1.zip
-share/doc/diveintopython/download/diveintopython-pdf-3.9-1.zip
-share/doc/diveintopython/download/diveintopython-text-3.9-1.zip
-share/doc/diveintopython/examples.html
-share/doc/diveintopython/fdl.html
-share/doc/diveintopython/fdl_aggregation.html
-share/doc/diveintopython/fdl_applicability.html
-share/doc/diveintopython/fdl_collections.html
-share/doc/diveintopython/fdl_combining.html
-share/doc/diveintopython/fdl_copying.html
-share/doc/diveintopython/fdl_copyinginquantity.html
-share/doc/diveintopython/fdl_future.html
-share/doc/diveintopython/fdl_howto.html
-share/doc/diveintopython/fdl_modifications.html
-share/doc/diveintopython/fdl_termination.html
-share/doc/diveintopython/fdl_translation.html
-share/doc/diveintopython/fileinfo_alltogether.html
-share/doc/diveintopython/fileinfo_class.html
-share/doc/diveintopython/fileinfo_classattributes.html
-share/doc/diveintopython/fileinfo_divein.html
-share/doc/diveintopython/fileinfo_exception.html
-share/doc/diveintopython/fileinfo_files.html
-share/doc/diveintopython/fileinfo_for.html
-share/doc/diveintopython/fileinfo_fromimport.html
-share/doc/diveintopython/fileinfo_instantiation.html
-share/doc/diveintopython/fileinfo_modules.html
-share/doc/diveintopython/fileinfo_morespecial.html
-share/doc/diveintopython/fileinfo_os.html
-share/doc/diveintopython/fileinfo_private.html
-share/doc/diveintopython/fileinfo_specialmethods.html
-share/doc/diveintopython/fileinfo_summary.html
-share/doc/diveintopython/fileinfo_userdict.html
-share/doc/diveintopython/fudd.html
-share/doc/diveintopython/furtherreading.html
-share/doc/diveintopython/history.html
-share/doc/diveintopython/images/callouts/1.png
-share/doc/diveintopython/images/callouts/10.png
-share/doc/diveintopython/images/callouts/2.png
-share/doc/diveintopython/images/callouts/3.png
-share/doc/diveintopython/images/callouts/4.png
-share/doc/diveintopython/images/callouts/5.png
-share/doc/diveintopython/images/callouts/6.png
-share/doc/diveintopython/images/callouts/7.png
-share/doc/diveintopython/images/callouts/8.png
-share/doc/diveintopython/images/callouts/9.png
-share/doc/diveintopython/images/caution.png
-share/doc/diveintopython/images/dot.png
-share/doc/diveintopython/images/important.png
-share/doc/diveintopython/images/note.png
-share/doc/diveintopython/images/tip.png
-share/doc/diveintopython/images/warning.png
-share/doc/diveintopython/index.html
-share/doc/diveintopython/kgp_attributes.html
-share/doc/diveintopython/kgp_commandline.html
-share/doc/diveintopython/kgp_divein.html
-share/doc/diveintopython/kgp_openanything.html
-share/doc/diveintopython/kgp_packages.html
-share/doc/diveintopython/kgp_parse.html
-share/doc/diveintopython/kgp_search.html
-share/doc/diveintopython/kgp_stdio.html
-share/doc/diveintopython/kgp_unicode.html
-share/doc/diveintopython/license.html
-share/doc/diveintopython/license_terms.html
-share/doc/diveintopython/odbchelper_dict.html
-share/doc/diveintopython/odbchelper_divein.html
-share/doc/diveintopython/odbchelper_docstring.html
-share/doc/diveintopython/odbchelper_funcdef.html
-share/doc/diveintopython/odbchelper_indenting.html
-share/doc/diveintopython/odbchelper_join.html
-share/doc/diveintopython/odbchelper_list.html
-share/doc/diveintopython/odbchelper_map.html
-share/doc/diveintopython/odbchelper_multiassign.html
-share/doc/diveintopython/odbchelper_objects.html
-share/doc/diveintopython/odbchelper_stringformatting.html
-share/doc/diveintopython/odbchelper_summary.html
-share/doc/diveintopython/odbchelper_testing.html
-share/doc/diveintopython/odbchelper_tuple.html
-share/doc/diveintopython/odbchelper_vardef.html
-share/doc/diveintopython/olde.html
-share/doc/diveintopython/preface.html
-share/doc/diveintopython/regression_datacentric.html
-share/doc/diveintopython/regression_divein.html
-share/doc/diveintopython/regression_filter.html
-share/doc/diveintopython/regression_import.html
-share/doc/diveintopython/regression_map.html
-share/doc/diveintopython/regression_path.html
-share/doc/diveintopython/roman_bugs.html
-share/doc/diveintopython/roman_change.html
-share/doc/diveintopython/roman_divein.html
-share/doc/diveintopython/roman_failure.html
-share/doc/diveintopython/roman_postscript.html
-share/doc/diveintopython/roman_refactoring.html
-share/doc/diveintopython/roman_romantest.html
-share/doc/diveintopython/roman_sanity.html
-share/doc/diveintopython/roman_stage1.html
-share/doc/diveintopython/roman_stage2.html
-share/doc/diveintopython/roman_stage3.html
-share/doc/diveintopython/roman_stage4.html
-share/doc/diveintopython/roman_stage5.html
-share/doc/diveintopython/roman_success.html
-share/doc/diveintopython/roman_summary.html
-share/doc/diveintopython/tips.html
-share/doc/diveintopython/toc.html
-@dirrm share/doc/diveintopython/images/callouts
-@dirrm share/doc/diveintopython/images
-@dirrm share/doc/diveintopython/download
+@comment html
+share/doc/diveintopython/html/about.html
+share/doc/diveintopython/html/abstracts.html
+share/doc/diveintopython/html/apihelper_alltogether.html
+share/doc/diveintopython/html/apihelper_andor.html
+share/doc/diveintopython/html/apihelper_builtin.html
+share/doc/diveintopython/html/apihelper_divein.html
+share/doc/diveintopython/html/apihelper_filter.html
+share/doc/diveintopython/html/apihelper_getattr.html
+share/doc/diveintopython/html/apihelper_lambda.html
+share/doc/diveintopython/html/apihelper_optional.html
+share/doc/diveintopython/html/apihelper_summary.html
+share/doc/diveintopython/html/chef.html
+share/doc/diveintopython/html/dialect_alltogether.html
+share/doc/diveintopython/html/dialect_basehtml.html
+share/doc/diveintopython/html/dialect_dialectizer.html
+share/doc/diveintopython/html/dialect_dictsub.html
+share/doc/diveintopython/html/dialect_divein.html
+share/doc/diveintopython/html/dialect_extract.html
+share/doc/diveintopython/html/dialect_locals.html
+share/doc/diveintopython/html/dialect_quoting.html
+share/doc/diveintopython/html/dialect_re.html
+share/doc/diveintopython/html/dialect_sgmllib.html
+share/doc/diveintopython/html/dialect_summary.html
+share/doc/diveintopython/html/diveintopython.css
+share/doc/diveintopython/html/download/diveintopython-examples-3.9-1.zip
+share/doc/diveintopython/html/download/diveintopython-help-3.9-1.zip
+share/doc/diveintopython/html/download/diveintopython-html-3.9-1.zip
+share/doc/diveintopython/html/download/diveintopython-html-flat-3.9-1.zip
+share/doc/diveintopython/html/download/diveintopython-pdf-3.9-1.zip
+share/doc/diveintopython/html/download/diveintopython-text-3.9-1.zip
+share/doc/diveintopython/html/download/diveintopython-word-3.9-1.zip
+share/doc/diveintopython/html/examples.html
+share/doc/diveintopython/html/fdl.html
+share/doc/diveintopython/html/fdl_aggregation.html
+share/doc/diveintopython/html/fdl_applicability.html
+share/doc/diveintopython/html/fdl_collections.html
+share/doc/diveintopython/html/fdl_combining.html
+share/doc/diveintopython/html/fdl_copying.html
+share/doc/diveintopython/html/fdl_copyinginquantity.html
+share/doc/diveintopython/html/fdl_future.html
+share/doc/diveintopython/html/fdl_howto.html
+share/doc/diveintopython/html/fdl_modifications.html
+share/doc/diveintopython/html/fdl_termination.html
+share/doc/diveintopython/html/fdl_translation.html
+share/doc/diveintopython/html/fileinfo_alltogether.html
+share/doc/diveintopython/html/fileinfo_class.html
+share/doc/diveintopython/html/fileinfo_classattributes.html
+share/doc/diveintopython/html/fileinfo_divein.html
+share/doc/diveintopython/html/fileinfo_exception.html
+share/doc/diveintopython/html/fileinfo_files.html
+share/doc/diveintopython/html/fileinfo_for.html
+share/doc/diveintopython/html/fileinfo_fromimport.html
+share/doc/diveintopython/html/fileinfo_instantiation.html
+share/doc/diveintopython/html/fileinfo_modules.html
+share/doc/diveintopython/html/fileinfo_morespecial.html
+share/doc/diveintopython/html/fileinfo_os.html
+share/doc/diveintopython/html/fileinfo_private.html
+share/doc/diveintopython/html/fileinfo_specialmethods.html
+share/doc/diveintopython/html/fileinfo_summary.html
+share/doc/diveintopython/html/fileinfo_userdict.html
+share/doc/diveintopython/html/fudd.html
+share/doc/diveintopython/html/furtherreading.html
+share/doc/diveintopython/html/history.html
+share/doc/diveintopython/html/images/callouts/1.png
+share/doc/diveintopython/html/images/callouts/10.png
+share/doc/diveintopython/html/images/callouts/2.png
+share/doc/diveintopython/html/images/callouts/3.png
+share/doc/diveintopython/html/images/callouts/4.png
+share/doc/diveintopython/html/images/callouts/5.png
+share/doc/diveintopython/html/images/callouts/6.png
+share/doc/diveintopython/html/images/callouts/7.png
+share/doc/diveintopython/html/images/callouts/8.png
+share/doc/diveintopython/html/images/callouts/9.png
+share/doc/diveintopython/html/images/caution.png
+share/doc/diveintopython/html/images/dot.png
+share/doc/diveintopython/html/images/important.png
+share/doc/diveintopython/html/images/note.png
+share/doc/diveintopython/html/images/tip.png
+share/doc/diveintopython/html/images/warning.png
+share/doc/diveintopython/html/index.html
+share/doc/diveintopython/html/kgp_attributes.html
+share/doc/diveintopython/html/kgp_commandline.html
+share/doc/diveintopython/html/kgp_divein.html
+share/doc/diveintopython/html/kgp_openanything.html
+share/doc/diveintopython/html/kgp_packages.html
+share/doc/diveintopython/html/kgp_parse.html
+share/doc/diveintopython/html/kgp_search.html
+share/doc/diveintopython/html/kgp_stdio.html
+share/doc/diveintopython/html/kgp_unicode.html
+share/doc/diveintopython/html/license.html
+share/doc/diveintopython/html/license_terms.html
+share/doc/diveintopython/html/odbchelper_dict.html
+share/doc/diveintopython/html/odbchelper_divein.html
+share/doc/diveintopython/html/odbchelper_docstring.html
+share/doc/diveintopython/html/odbchelper_funcdef.html
+share/doc/diveintopython/html/odbchelper_indenting.html
+share/doc/diveintopython/html/odbchelper_join.html
+share/doc/diveintopython/html/odbchelper_list.html
+share/doc/diveintopython/html/odbchelper_map.html
+share/doc/diveintopython/html/odbchelper_multiassign.html
+share/doc/diveintopython/html/odbchelper_objects.html
+share/doc/diveintopython/html/odbchelper_stringformatting.html
+share/doc/diveintopython/html/odbchelper_summary.html
+share/doc/diveintopython/html/odbchelper_testing.html
+share/doc/diveintopython/html/odbchelper_tuple.html
+share/doc/diveintopython/html/odbchelper_vardef.html
+share/doc/diveintopython/html/olde.html
+share/doc/diveintopython/html/preface.html
+share/doc/diveintopython/html/regression_datacentric.html
+share/doc/diveintopython/html/regression_divein.html
+share/doc/diveintopython/html/regression_filter.html
+share/doc/diveintopython/html/regression_import.html
+share/doc/diveintopython/html/regression_map.html
+share/doc/diveintopython/html/regression_path.html
+share/doc/diveintopython/html/roman_bugs.html
+share/doc/diveintopython/html/roman_change.html
+share/doc/diveintopython/html/roman_divein.html
+share/doc/diveintopython/html/roman_failure.html
+share/doc/diveintopython/html/roman_postscript.html
+share/doc/diveintopython/html/roman_refactoring.html
+share/doc/diveintopython/html/roman_romantest.html
+share/doc/diveintopython/html/roman_sanity.html
+share/doc/diveintopython/html/roman_stage1.html
+share/doc/diveintopython/html/roman_stage2.html
+share/doc/diveintopython/html/roman_stage3.html
+share/doc/diveintopython/html/roman_stage4.html
+share/doc/diveintopython/html/roman_stage5.html
+share/doc/diveintopython/html/roman_success.html
+share/doc/diveintopython/html/roman_summary.html
+share/doc/diveintopython/html/tips.html
+share/doc/diveintopython/html/toc.html
+@dirrm share/doc/diveintopython/html/images/callouts
+@dirrm share/doc/diveintopython/html/images
+@dirrm share/doc/diveintopython/html/download
+@dirrm share/doc/diveintopython/html
+@comment examples
+share/doc/diveintopython/examples/BaseHTMLProcessor.py
+share/doc/diveintopython/examples/LICENSE.txt
+share/doc/diveintopython/examples/apihelper.py
+share/doc/diveintopython/examples/apihelpertest.py
+share/doc/diveintopython/examples/autosize.py
+share/doc/diveintopython/examples/builddialectexamples.py
+share/doc/diveintopython/examples/colorize.py
+share/doc/diveintopython/examples/dialect.py
+share/doc/diveintopython/examples/fileinfo.py
+share/doc/diveintopython/examples/fullpath.py
+share/doc/diveintopython/examples/kgp/binary.xml
+share/doc/diveintopython/examples/kgp/husserl.xml
+share/doc/diveintopython/examples/kgp/kant.xml
+share/doc/diveintopython/examples/kgp/kgp.dtd
+share/doc/diveintopython/examples/kgp/kgp.py
+share/doc/diveintopython/examples/kgp/russiansample.xml
+share/doc/diveintopython/examples/kgp/stderr.py
+share/doc/diveintopython/examples/kgp/stdout.py
+share/doc/diveintopython/examples/kgp/template.xml
+share/doc/diveintopython/examples/kgp/test.xml
+share/doc/diveintopython/examples/kgp/thanks.xml
+share/doc/diveintopython/examples/kgp/toolbox.py
+share/doc/diveintopython/examples/kgptest.py
+share/doc/diveintopython/examples/makerealworddoc.py
+share/doc/diveintopython/examples/odbchelper.py
+share/doc/diveintopython/examples/odbchelpertest.py
+share/doc/diveintopython/examples/pyfontify.py
+share/doc/diveintopython/examples/regression.py
+share/doc/diveintopython/examples/roman.py
+share/doc/diveintopython/examples/roman/stage1/roman1.py
+share/doc/diveintopython/examples/roman/stage1/romantest1.py
+share/doc/diveintopython/examples/roman/stage2/roman2.py
+share/doc/diveintopython/examples/roman/stage2/romantest2.py
+share/doc/diveintopython/examples/roman/stage3/roman3.py
+share/doc/diveintopython/examples/roman/stage3/romantest3.py
+share/doc/diveintopython/examples/roman/stage4/roman4.py
+share/doc/diveintopython/examples/roman/stage4/romantest4.py
+share/doc/diveintopython/examples/roman/stage5/roman5.py
+share/doc/diveintopython/examples/roman/stage5/romantest5.py
+share/doc/diveintopython/examples/roman/stage6/roman61.py
+share/doc/diveintopython/examples/roman/stage6/roman62.py
+share/doc/diveintopython/examples/roman/stage6/romantest61.py
+share/doc/diveintopython/examples/roman/stage6/romantest62.py
+share/doc/diveintopython/examples/roman/stage7/roman71.py
+share/doc/diveintopython/examples/roman/stage7/roman72.py
+share/doc/diveintopython/examples/roman/stage7/romantest71.py
+share/doc/diveintopython/examples/roman/stage7/romantest72.py
+share/doc/diveintopython/examples/roman/stage8/roman81.py
+share/doc/diveintopython/examples/roman/stage8/roman82.py
+share/doc/diveintopython/examples/roman/stage8/roman83.py
+share/doc/diveintopython/examples/roman/stage8/romantest81.py
+share/doc/diveintopython/examples/roman/stage8/romantest82.py
+share/doc/diveintopython/examples/roman/stage8/romantest83.py
+share/doc/diveintopython/examples/roman/stage9/roman9.py
+share/doc/diveintopython/examples/roman/stage9/romantest9.py
+share/doc/diveintopython/examples/romantest.py
+share/doc/diveintopython/examples/unicode2koi8r.py
+share/doc/diveintopython/examples/urllister.py
+@dirrm share/doc/diveintopython/examples/roman/stage9
+@dirrm share/doc/diveintopython/examples/roman/stage8
+@dirrm share/doc/diveintopython/examples/roman/stage7
+@dirrm share/doc/diveintopython/examples/roman/stage6
+@dirrm share/doc/diveintopython/examples/roman/stage5
+@dirrm share/doc/diveintopython/examples/roman/stage4
+@dirrm share/doc/diveintopython/examples/roman/stage3
+@dirrm share/doc/diveintopython/examples/roman/stage2
+@dirrm share/doc/diveintopython/examples/roman/stage1
+@dirrm share/doc/diveintopython/examples/roman
+@dirrm share/doc/diveintopython/examples/kgp
+@dirrm share/doc/diveintopython/examples
 @dirrm share/doc/diveintopython
 @unexec if [ -f %D/info/dir ]; then if sed -e '1,/Menu:/d' %D/info/dir | grep -q '^[*] '; then true; else rm %D/info/dir; fi; fi
Only in diveintopython/work: .build_done.diveintopython-3.9.1
Only in diveintopython.new/work: .build_done.diveintopython-3.9.1_1
Only in diveintopython/work: .configure_done.diveintopython-3.9.1
Only in diveintopython.new/work: .configure_done.diveintopython-3.9.1_1
Only in diveintopython/work: .extract_done.diveintopython-3.9.1
Only in diveintopython.new/work: .extract_done.diveintopython-3.9.1_1
Only in diveintopython.new/work: .install_done.diveintopython-3.9.1_1
Only in diveintopython.new/work: .package_done.diveintopython-3.9.1_1
Only in diveintopython/work: .patch_done.diveintopython-3.9.1
Only in diveintopython.new/work: .patch_done.diveintopython-3.9.1_1
Only in diveintopython.new/work: diveintopython
Only in diveintopython/work: html
Only in diveintopython/work: py

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200201020506.g0256ho14842>