From 51de2021aba7fb12c9e6ef214cf8ffed8e71d0f2 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Sun, 25 May 2008 00:22:58 +0200 Subject: [PATCH] Initial import --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 16 ++++++++++++++++ debian/copyright | 5 +++++ debian/rules | 23 +++++++++++++++++++++++ 5 files changed, 50 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..392f41a --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +debian.org (0.1) stable; urgency=low + + * Initial creation of metapackage. + + -- Ryan Murray Fri, 9 Nov 2007 15:55:26 -0700 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..bace09f --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: debian.org +Section: admin +Priority: required +Maintainer: Debian sysadmin Team +Uploaders: Ryan Murray +Standards-Version: 3.7.2 + +Package: debian.org +Architecture: all +Depends: userdir-ldap, ssh (>= 10:3), zsh, tcsh, pdksh, ksh, csh, ntp, locales-all, exim4-daemon-heavy | postfix, clamav-freshclam, clamav-daemon, sudo, emacs21-nox | emacs21, vim, vile, munin-node, gnupg +Recommends: mcelog, bind9, famke +Conflicts: dchroot-dsa (<= 2:1) +Description: debian.org host meta-package + This package depends on packages that should be installed on every + debian.org host, and conflicts with packages that should never be + installed. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c396866 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,5 @@ +This is a metapackage for DSA maintained debian.org hosts. + +Copyright (c) 2007, Ryan Murray + +License: GPL; see /usr/share/common-licenses/GPL diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..be6c34d --- /dev/null +++ b/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: + +clean: + rm -rf debian/tmp + rm -f debian/files + +binary-indep: + $(RM) -r debian/tmp + install -d debian/tmp/DEBIAN debian/tmp/usr/share/doc/debian.org + chown -R root.root debian/tmp + chmod -R g-ws debian/tmp + install -m644 debian/copyright debian/tmp/usr/share/doc/debian.org/ + install -m644 debian/changelog debian/tmp/usr/share/doc/debian.org/changelog + gzip -9f debian/tmp/usr/share/doc/debian.org/changelog + + dpkg-gencontrol -isp -pdebian.org + dpkg --build debian/tmp .. + +binary-arch: + +binary: binary-indep -- 2.30.2