--- parsewiki-0.4.3.orig/debian/changelog +++ parsewiki-0.4.3/debian/changelog @@ -0,0 +1,6 @@ +parsewiki (0.4.3-1) unstable; urgency=low + + * Initial Release (Closes: Bug#199748). + + -- Sergio Talens-Oliag Wed, 2 Jul 2003 23:34:39 +0200 + --- parsewiki-0.4.3.orig/debian/compat +++ parsewiki-0.4.3/debian/compat @@ -0,0 +1 @@ +4 --- parsewiki-0.4.3.orig/debian/parsewiki.1 +++ parsewiki-0.4.3/debian/parsewiki.1 @@ -0,0 +1,53 @@ +.\" Hey, EMACS: -*- nroff -*- +.TH PARSEWIKI 1 "July 2003" "parsewiki 0.4.3" "User Commands" +.\" Please adjust this date whenever revising the manpage. +.SH NAME +parsewiki \- transform marked text into HTML, XHTML, Docbook or LaTeX +.SH SYNOPSIS +.B parsewiki +[\fIOPTION\fR]... [\fIFILE\fR] +.SH DESCRIPTION +This manual page documents briefly the +.B parsewiki +command. +This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +\fBparsewiki\fP is a program that transform a text file with a very minimal +Wiki style syntax into other formats, including HTML, XHTML, Docbook +and LaTeX. +.PP +See the file +.I /usr/share/doc/parsewiki/doc/manual-en.txt +for a description of the parsewiki syntax. +.SH OPTIONS +.TP +\fB\-f\fR, \fB\-\-format\fR=\fIFORMAT\fR +Output format; one of html, xhtml, docbook, latex. +(default html) +.TP +\fB\-T\fR, \fB\-\-title\fR=\fITITLE\fR +Title. +.TP +\fB\-t\fR, \fB\-\-template\fR=\fIFILE\fR +File with a template to use instead of the standard. +.TP +\fB\-c\fR, \fB\-\-copyright\fR +Display copyright and copying permission statement. +.TP +\fB\-h\fR, \fB\-\-help\fR +Show this usage summary. +.PP +FILE is a simple text file with wiki formating syntax. The result will be +sent to the Standard Output. If FILE is not given, input will be taken from +the Standard Input. +.SH EXAMPLES +.PP +$ parsewiki myfile.wiki +.br +$ cat file.txt | parsewiki \fB\-fdocbook\fR \fB\-\-title=\fR"An Example" > file.xml +.SH "BUGS" +Report bugs to . +.SH AUTHOR +This manual page was written by Sergio Talens-Oliag , +for the Debian project (but may be used by others). --- parsewiki-0.4.3.orig/debian/dirs +++ parsewiki-0.4.3/debian/dirs @@ -0,0 +1 @@ +usr/bin --- parsewiki-0.4.3.orig/debian/docs +++ parsewiki-0.4.3/debian/docs @@ -0,0 +1,2 @@ +README +doc/ --- parsewiki-0.4.3.orig/debian/control +++ parsewiki-0.4.3/debian/control @@ -0,0 +1,20 @@ +Source: parsewiki +Section: text +Priority: optional +Maintainer: Sergio Talens-Oliag +Build-Depends-Indep: debhelper (>> 4.0.0) +Standards-Version: 3.5.8 + +Package: parsewiki +Architecture: all +Depends: perl +Description: Documentation System Based on ASCII Text + Perl script that can be used to produce HTML, XHTML, Latex or DocBook/XML + from a simple ASCII text source document, with minimum syntax rules. + . + The text markup is quite simple and allows us to create documents in + an easy and fast way. + . + The tool is not suitable for complex documents, but can be used to create + an initial version which can be further developed working on the generated + LaTeX or DocBook file. --- parsewiki-0.4.3.orig/debian/rules +++ parsewiki-0.4.3/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + install parsewiki $(CURDIR)/debian/parsewiki/usr/bin/parsewiki + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_installman + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- parsewiki-0.4.3.orig/debian/examples +++ parsewiki-0.4.3/debian/examples @@ -0,0 +1,2 @@ +templates/ +www/ --- parsewiki-0.4.3.orig/debian/manpages +++ parsewiki-0.4.3/debian/manpages @@ -0,0 +1 @@ +debian/parsewiki.1 --- parsewiki-0.4.3.orig/debian/copyright +++ parsewiki-0.4.3/debian/copyright @@ -0,0 +1,10 @@ +This package was debianized by Sergio Talens-Oliag on +Wed, 2 Jul 2003 23:34:39 +0200. + +It was downloaded from http://villate.org/parsewiki/ + +Upstream Author: Jaime E. Villate + +Copyright: + +GPL, on debian systems look in '/usr/share/common-licenses/GPL'.