From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id sAHIkRG6002694 for ; Mon, 17 Nov 2014 13:46:27 -0500 (EST) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id sAHIkP8m017814; Mon, 17 Nov 2014 13:46:25 -0500 (EST) Date: Mon, 17 Nov 2014 13:46:25 -0500 (EST) Message-Id: <201411171846.sAHIkP8m017814@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: pod2mdoc: version 0.1 and some Makefile tweaks X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- version 0.1 and some Makefile tweaks Modified Files: -------------- pod2mdoc: Makefile index.xml pod2mdoc/Regress: Makefile.inc Revision Data ------------- Index: index.xml =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/pod2mdoc/index.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -Lindex.xml -Lindex.xml -u -p -r1.6 -r1.7 --- index.xml +++ index.xml @@ -52,8 +52,23 @@ Semantic content must be inferred and may be wrong.

- Contact Kristaps with questions, but please make sure any formatting issue + The pod2mdoc utility is still in an early stage of development and far from complete. + However, when translating the LibreSSL -lssl manuals, + it has been shown that with some manual postprocessing, it is already usable for real-world tasks. +

+

+ Contact the mandoc developers with questions, + but please make sure any formatting issue hasn't already been covered in the manual. +

+

+ In addition to the release notes given below, a full ChangeLog is available. +

+

+ New in version 0.1 (November 17, 2014) +

+

+ Simple Ft/Fo/Fa/Fc parser and formatter for the SYNOPSIS.

New in version 0.0.13 (July 19, 2014) Index: Makefile =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/pod2mdoc/Makefile,v retrieving revision 1.11 retrieving revision 1.12 diff -LMakefile -LMakefile -u -p -r1.11 -r1.12 --- Makefile +++ Makefile @@ -1,4 +1,4 @@ -VERSION = 0.0.13 +VERSION = 0.1 CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings WWWPREFIX = /usr/vhosts/mdocml.bsd.lv/www/htdocs/pod2mdoc @@ -11,7 +11,8 @@ installwww: www mkdir -p $(WWWPREFIX)/snapshots install -m 0444 index.html pod2mdoc.1.html $(WWWPREFIX) install -m 0444 pod2mdoc-$(VERSION).tgz $(WWWPREFIX)/snapshots - install -m 0444 pod2mdoc-$(VERSION).tgz $(WWWPREFIX)/snapshots/pod2mdoc.tgz + install -m 0444 pod2mdoc-$(VERSION).tgz \ + $(WWWPREFIX)/snapshots/pod2mdoc.tgz dist: pod2mdoc-$(VERSION).tgz @@ -28,5 +29,6 @@ pod2mdoc.1.html: pod2mdoc.1 mandoc -Thtml pod2mdoc.1 >$@ clean: - rm -f pod2mdoc pod2mdoc.o pod2mdoc-$(VERSION).tgz index.html pod2mdoc.1.html + rm -f pod2mdoc pod2mdoc.o pod2mdoc-$(VERSION).tgz \ + index.html pod2mdoc.1.html rm -rf pod2mdoc.dSYM Index: Makefile.inc =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/pod2mdoc/Regress/Makefile.inc,v retrieving revision 1.3 retrieving revision 1.4 diff -LRegress/Makefile.inc -LRegress/Makefile.inc -u -p -r1.3 -r1.4 --- Regress/Makefile.inc +++ Regress/Makefile.inc @@ -1,12 +1,12 @@ # --- utilities --- -TESTDATE = -d 'July 19, 2014' +TESTDATE = -d 'November 17, 2014' POD2MAN = pod2man -POD2MANARGS = -c 'OpenBSD Reference Manual' -r 'OpenBSD ports' +POD2MANARGS = -c 'General Commands Manual' -r 'OpenBSD ports' GROFF = groff -Tascii -P -c MANDOC = mandoc -Tascii DIFF = diff -u -POD2MDOC = /co/pod2mdoc/pod2mdoc +POD2MDOC = ../../pod2mdoc # --- lists --- -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv