未验证 提交 e49b1cb6 编写于 作者: A Ansgar Burchardt

Merge remote-tracking branch 'lamby/update-debian-packaging'

dak (0notforuse0-0) unstable; urgency=low
dak (0notforuse0) unstable; urgency=low
* Initial non-release. [The packaging is nowhere near complete; don't
bother trying to use it unaltered.]
-- James Troup <james@nocrew.org> Tue, 16 May 2006 21:55:42 -0500
Source: dak
Section: misc
Priority: extra
Build-Depends: python-all-dev
Build-Depends: python-all-dev,
python-apt,
python-debian,
python-debianbts,
python-ldap,
python-psycopg2,
python-rrdtool,
python-sqlalchemy (<< 1.0),
python-yaml
Maintainer: Debian FTP-Masters <ftpmaster@debian.org>
Uploaders: Mark Hymers <mhy@debian.org>, Joerg Jaspert <joerg@debian.org>, Torsten Werner <twerner@debian.org>
Standards-Version: 3.9.2
Uploaders: Mark Hymers <mhy@debian.org>,
Joerg Jaspert <joerg@debian.org>,
Torsten Werner <twerner@debian.org>
Standards-Version: 3.9.6.0
Package: dak
Architecture: all
Depends: ${python:Depends}, python-psycopg2, python-sqlalchemy, python-apt,
gnupg, dpkg-dev, lintian, binutils-multiarch, python-yaml, less,
python-ldap, python-pyrss2gen, python-rrdtool, symlinks
Depends: binutils-multiarch,
dpkg-dev,
gnupg,
less,
lintian,
python-apt,
python-debian,
python-debianbts,
python-ldap,
python-psycopg2,
python-pyrss2gen,
python-rrdtool,
python-sqlalchemy (<< 1.0),
python-yaml,
symlinks,
${python:Depends}
Description: Debian's archive maintenance scripts
This is a collection of archive maintenance scripts used by the
Debian project.
#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
# Default (blank) files so that programs at least run --help and stuff
touch /etc/dak/dak.conf
fi
import sys;
print "python:Depends=python (>= %s), python (<< %s)" % (sys.version[:3],float(sys.version[:3])+0.1)
#!/usr/bin/make -f
# debian/rules file - for dak (0.0)
# Based on sample debian/rules file - for GNU Hello (1.3).
# Copyright 1994,1995 by Ian Jackson.
# Copyright 1998,1999,2000,2001,2002,2006 James Troup
# I hereby give you perpetual unlimited permission to copy,
# modify and relicense this file, provided that you do not remove
# my name from the file itself. (I assert my moral right of
# paternity under the Copyright, Designs and Patents Act 1988.)
# This file may have to be extensively modified
PYTHONVER := `/usr/bin/python -c 'import sys;print sys.version[:3]'`
%:
dh $@
install_dir=install -d -m 755
install_file=install -m 644
install_script=install -m 755
install_binary=install -m 755 -s
build: build-stamp
build-stamp:
$(MAKE)
$(MAKE) -C docs
touch $@
clean: checkroot
$(checkdir)
-rm -rf debian/tmp debian/*~ debian/files* debian/substvars build-stamp
$(MAKE) clean
binary-indep: checkroot build
$(checkdir)
-rm -rf debian/tmp
$(install_dir) debian/tmp/DEBIAN/
$(install_script) debian/postinst debian/tmp/DEBIAN/
$(install_dir) debian/tmp/usr/lib/python/site-packages/dak/lib/
$(install_file) dak/*.py debian/tmp/usr/lib/python/site-packages/dak/
$(install_file) dak/lib/*.py debian/tmp/usr/lib/python/site-packages/dak/lib/
$(install_dir) debian/tmp/usr/bin/
$(install_script) dak/shell.py debian/tmp/usr/bin/dak
$(install_dir) -m 755 debian/tmp/usr/share/man/man1/
$(install_file) docs/manpages/*.1 debian/tmp/usr/share/man/man1/
gzip -9v debian/tmp/usr/share/man/man1/*
$(install_dir) -m 755 debian/tmp/etc/dak/
$(install_dir) debian/tmp/usr/share/doc/dak/
$(install_file) debian/changelog debian/tmp/usr/share/doc/dak/changelog.Debian
$(install_file) README NEWS THANKS TODO debian/tmp/usr/share/doc/dak/
$(install_file) docs/README* debian/tmp/usr/share/doc/dak/
$(install_file) ChangeLog debian/tmp/usr/share/doc/dak/changelog
gzip -9v debian/tmp/usr/share/doc/dak/*
$(install_file) debian/copyright debian/tmp/usr/share/doc/dak/
$(install_dir) debian/tmp/usr/share/doc/dak/examples/
$(install_file) examples/dak.conf debian/tmp/usr/share/doc/dak/examples/
# Hoho (err, rather: FIXME)
$(install_file) *.sql debian/tmp/usr/share/doc/dak/examples/
gzip -9v debian/tmp/usr/share/doc/dak/examples/*
dpkg-shlibdeps sql-aptvc.so
/usr/bin/python debian/python-dep >> debian/substvars
dpkg-gencontrol -isp
chown -R root.root debian/tmp
chmod -R go=rX debian/tmp
dpkg --build debian/tmp ..
binary-arch:
define checkdir
test -f dak/ls.py -a -f debian/rules
endef
# Below here is fairly generic really
binary: binary-indep binary-arch
checkroot:
$(checkdir)
test root = "`whoami`"
.PHONY: binary binary-arch binary-indep clean checkroot
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
tests/test_all.py
endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册