changeset 50:dab776364751

2007-10-11 07:40:01 by steve Added from Felipe Sateler
author steve
date Thu, 11 Oct 2007 07:40:01 +0000
parents 0c4f7753c9d3
children 377313bc3451
files debian/changelog debian/compat debian/control debian/copyright debian/dirs debian/docs debian/rules debian/watch
diffstat 8 files changed, 126 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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 <fsateler@gmail.com>  Wed, 10 Oct 2007 21:40:32 -0400
--- /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
--- /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 <fsateler@gmail.com>
+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.
--- /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 <fsateler@gmail.com> 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'.
+
--- /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
+
--- /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
--- /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
--- /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
+