Initial commit

This commit is contained in:
Gregory Colpart 2009-07-05 13:03:50 +02:00
commit 8b5e42d26d
5 changed files with 92 additions and 0 deletions

18
debian/changelog vendored Normal file
View file

@ -0,0 +1,18 @@
serveur-base (0.2.1) UNRELEASED; urgency=low
* Add "evocheck" in Depends.
-- Gregory Colpart <reg@debian.org> 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 <reg@debian.org> Sun, 9 Nov 2008 17:48:32 +0100
serveur-base (0.0.1) UNRELEASED; urgency=low
* Initial release.
-- Gregory Colpart <reg@debian.org> Tue, 2 Aug 2005 00:00:00 +0200

1
debian/compat vendored Normal file
View file

@ -0,0 +1 @@
5

13
debian/control vendored Normal file
View file

@ -0,0 +1,13 @@
Source: serveur-base
Section: misc
Priority: optional
Maintainer: Gregory Colpart <reg@debian.org>
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.

1
debian/copyright vendored Normal file
View file

@ -0,0 +1 @@
It's a "private" meta-package, then no real copyright for now...

59
debian/rules vendored Executable file
View file

@ -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