--- wfo-0.1.orig/Makefile.in +++ wfo-0.1/Makefile.in @@ -31,3 +31,9 @@ dist : ./make-dist.sh + +clean: + rm -f $(srcdir)/bin/wfo + +distclean: clean + rm -f $(srcdir)/Makefile config.status config.log --- wfo-0.1.orig/debian/docs +++ wfo-0.1/debian/docs @@ -0,0 +1,2 @@ +README +rdoc/* --- wfo-0.1.orig/debian/changelog +++ wfo-0.1/debian/changelog @@ -0,0 +1,12 @@ +wfo (0.1-2) unstable; urgency=low + + * debian/control: Fix typos. Thanks to David Foerster. + (Closes: #410421). + + -- NIIBE Yutaka Sun, 11 Feb 2007 19:53:14 +0900 + +wfo (0.1-1) unstable; urgency=low + + * Initial release (Closes: #406158). + + -- NIIBE Yutaka Wed, 10 Jan 2007 14:47:59 +0900 --- wfo-0.1.orig/debian/compat +++ wfo-0.1/debian/compat @@ -0,0 +1 @@ +5 --- wfo-0.1.orig/debian/watch +++ wfo-0.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.a-k-r.org/wfo/wfo-(.*)\.tar\.gz --- wfo-0.1.orig/debian/dirs +++ wfo-0.1/debian/dirs @@ -0,0 +1 @@ +usr/bin --- wfo-0.1.orig/debian/wfo.1 +++ wfo-0.1/debian/wfo.1 @@ -0,0 +1,28 @@ +.TH WFO "1" "January 2007" "Offline WiKi/Blog editing tool" "User Commands" +.SH NAME +wfo \- Offline WiKi/Blog editing tool +.SH SYNOPSIS +.B wfo +[\fIOPTIONS\fR] +.SH DESCRIPTION +.TP +\fBhelp\fR +Show help message. +.TP +\fBcheckout\fR [\-t \fIrepo_type\fR] \fIURL\fR [\fIlocal-filename\fR][.\fIext\fR] +Checkout the page(s). +.TP +\fBstatus\fR [\-u] [\fIlocal-filename...\fR] +Show the status of page(s). +.TP +\fBupdate\fR [\fIlocal-filename...\fR] +Update the page(s). +.TP +\fBcommit\fR [\fIlocal-filename...\fR] +Commit the page(s). +.TP +\fBdiff\fR [\-u] [\fIlocal-filename...\fR] +Show diff of the page(s). +.TP +\fBworkdump\fR [\fIlocal-filename...\fR] +Dump working data. --- wfo-0.1.orig/debian/copyright +++ wfo-0.1/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by NIIBE Yutaka on +Wed, 10 Jan 2007 14:47:59 +0900. + +It was downloaded from http://www.a-k-r.org/wfo/ + +Upstream Author: Tanaka Akira + +Copyright: Copyright (C) 2006,2007 Tanaka Akira + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2007, NIIBE Yutaka and +is licensed under the GPL, see above. + + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. --- wfo-0.1.orig/debian/rules +++ wfo-0.1/debian/rules @@ -0,0 +1,103 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/wfo. + $(MAKE) prefix=$(CURDIR)/debian/wfo/usr install + mkdir -p $(CURDIR)/debian/wfo/usr/share/man/man1 + for m in wfo; do \ + install $(CURDIR)/debian/$$m.1 \ + $(CURDIR)/debian/wfo/usr/share/man/man1; done + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- wfo-0.1.orig/debian/control +++ wfo-0.1/debian/control @@ -0,0 +1,16 @@ +Source: wfo +Section: web +Priority: optional +Maintainer: NIIBE Yutaka +Build-Depends: debhelper (>= 5), autotools-dev, ruby, ruby1.8 +Standards-Version: 3.7.2.2 + +Package: wfo +Architecture: all +Depends: ruby, ruby1.8, libhtree-ruby1.8, libopenssl-ruby1.8 +Suggests: gnupg +Description: Offline editing tool for Wiki pages and blogs + wfo is a offline frontend for wikis and blogs. You can checkout a + wiki page to a local file, edit the file, and commit to the page. + . + Homepage: http://www.a-k-r.org/wfo/