From 8b5e42d26d6028961e9dbade8867f4fe1617d299 Mon Sep 17 00:00:00 2001 From: Gregory Colpart Date: Sun, 5 Jul 2009 13:03:50 +0200 Subject: [PATCH] Initial commit --- debian/changelog | 18 +++++++++++++++ debian/compat | 1 + debian/control | 13 +++++++++++ debian/copyright | 1 + debian/rules | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 92 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..2f324a2 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,18 @@ +serveur-base (0.2.1) UNRELEASED; urgency=low + + * Add "evocheck" in Depends. + + -- Gregory Colpart Sun, 05 Jul 2009 13:00:41 +0200 + +serveur-base (0.2) UNRELEASED; urgency=low + + * I use now a "real" meta-package. + * Add "apticron" in Depends. + + -- Gregory Colpart Sun, 9 Nov 2008 17:48:32 +0100 + +serveur-base (0.0.1) UNRELEASED; urgency=low + + * Initial release. + + -- Gregory Colpart Tue, 2 Aug 2005 00:00:00 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..f4f1e78 --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source: serveur-base +Section: misc +Priority: optional +Maintainer: Gregory Colpart +Standards-Version: 3.8.0 + +Package: serveur-base +Architecture: all +Depends: ssh, vim, quota, quotatool, ntpdate, openntpd, sudo, munin, munin-node, log2mail, less, mailx, apt-listchanges, apticron, evocheck +Description: Evolix 'serveur' installation components + This metapackage provides the essential components for + an installation of a Pack Evolix server. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..8372fce --- /dev/null +++ b/debian/copyright @@ -0,0 +1 @@ +It's a "private" meta-package, then no real copyright for now... diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c26f296 --- /dev/null +++ b/debian/rules @@ -0,0 +1,59 @@ +#!/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 + touch $@ +clean: + dh_testdir + dh_testroot + rm -f build-stamp + dh_clean +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs +# Build architecture-independent files here. +binary-arch: build install +# We have nothing to do by default. +# Build architecture-dependent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs +# 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 +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure