# HG changeset patch # User steve # Date 1192088401 0 # Node ID dab776364751296db8b448fd0476df17f4addbd5 # Parent 0c4f7753c9d382e37f38871e51187b1bc2d452d3 2007-10-11 07:40:01 by steve Added from Felipe Sateler diff -r 0c4f7753c9d3 -r dab776364751 debian/changelog --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/changelog Thu Oct 11 07:40:01 2007 +0000 @@ -0,0 +1,5 @@ +chronicle (0.8-1) unstable; urgency=low + + * Initial release + + -- Felipe Sateler Wed, 10 Oct 2007 21:40:32 -0400 diff -r 0c4f7753c9d3 -r dab776364751 debian/compat --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/compat Thu Oct 11 07:40:01 2007 +0000 @@ -0,0 +1,1 @@ +5 diff -r 0c4f7753c9d3 -r dab776364751 debian/control --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/control Thu Oct 11 07:40:01 2007 +0000 @@ -0,0 +1,23 @@ +Source: chronicle +Section: web +Priority: extra +Maintainer: Felipe Sateler +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 +Homepage: http://www.steve.org.uk/Software/chronicle/ + +Package: chronicle +Architecture: all +Depends: ${perl:Depends}, libtimedate-perl, libhtml-template-perl +Suggests: memcached +Description: a blog compiler + Chronicle is a tool which will convert a directory of simple + text files into a static HTML weblog, (or blog if you prefer). + . + The system is intentionally simple, but it does support: + . + * Template based output. + . + * RSS feeds. + . + * Tagged entries. diff -r 0c4f7753c9d3 -r dab776364751 debian/copyright --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/copyright Thu Oct 11 07:40:01 2007 +0000 @@ -0,0 +1,22 @@ +This package was debianized by Felipe Sateler on +Wed, 10 Oct 2007 21:15:20 -0400. + +It was downloaded from http://www.steve.org.uk/Software/chronicle/ + +Upstream Authors: See the included AUTHORS file. + +Copyright (c) 2007 by Steve Kemp. + + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' and + the Artistic Licence in `/usr/share/common-licenses/Artistic'. + diff -r 0c4f7753c9d3 -r dab776364751 debian/dirs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/dirs Thu Oct 11 07:40:01 2007 +0000 @@ -0,0 +1,3 @@ +usr/bin +etc + diff -r 0c4f7753c9d3 -r dab776364751 debian/docs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/docs Thu Oct 11 07:40:01 2007 +0000 @@ -0,0 +1,2 @@ +README +AUTHORS diff -r 0c4f7753c9d3 -r dab776364751 debian/rules --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/rules Thu Oct 11 07:40:01 2007 +0000 @@ -0,0 +1,60 @@ +#!/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 + +build: build-stamp + +build-stamp: + dh_testdir + pod2man bin/chronicle > chronicle.1 + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + rm -f chronicle.1 + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) prefix=$(CURDIR)/debian/chronicle install +# upstream installs to usr/local + mv $(CURDIR)/debian/chronicle/usr/local/bin/chronicle \ + $(CURDIR)/debian/chronicle/usr/bin + rmdir $(CURDIR)/debian/chronicle/usr/local/bin/ + rmdir $(CURDIR)/debian/chronicle/usr/local + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installman chronicle.1 + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# No arch-dependent package + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure diff -r 0c4f7753c9d3 -r dab776364751 debian/watch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/watch Thu Oct 11 07:40:01 2007 +0000 @@ -0,0 +1,10 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +http://www.steve.org.uk/Software/chronicle/ chronicle-(.*)\.tar\.gz +