From 7a6346c4c50c1893a5f90a05b0e584d5c857dfb2 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Thu, 15 Mar 2007 19:21:39 +0100 Subject: [PATCH] Add debian packaging files. --- debian/changelog | 5 +++ debian/compat | 1 + debian/control | 17 ++++++++++ debian/copyright | 83 +++++++++++++++++++++++++++++++++++++++++++++ debian/krb5dissect.install | 1 + debian/krb5dissect.manpages | 1 + debian/rules | 2 ++ debian/watch | 2 ++ 8 files changed, 112 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/krb5dissect.install create mode 100644 debian/krb5dissect.manpages create mode 100644 debian/rules create mode 100644 debian/watch diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..d5cf465 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +krb5dissect (2.0-1) unstable; urgency=low + + * Initial release + + -- Simon Josefsson Thu, 15 Feb 2007 09:50:42 +0100 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..1875d9e --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: krb5dissect +Section: net +Priority: extra +Maintainer: Debian Shishi Team +Uploaders: Simon Josefsson +Build-Depends: cdbs +Standards-Version: 3.7.2 + +Package: krb5dissect +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Debug tool to print Kerberos ccache and keytab credential files + Krb5dissect is a tool to read Kerberos credentials files and print them in + a human readable format. Krb5dissect supports the ccache /tmp/krb5cc_$UID + and keytab /etc/krb5.keytab formats. + . + Homepage: http://josefsson.org/krb5dissect/ diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..41946d1 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,83 @@ +This package was debianized by Simon Josefsson on +Thu Mar 15 19:15:59 CET 2007. + +It was downloaded from http://josefsson.org/krb5dissect/ + +Copyright Holder: Simon Josefsson (core parts) + and The Free Software Foundation (gnulib, misc files). + +Debian packaging copyright: + + The package files were written by Simon Josefsson and are + copyright 2007 and may be redistributed and/or modified under the + terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your + option) any later version. + +License: + +The entire package is licensed under GPL. On Debian systems, the +complete text of the GNU General Public License can be found in the +file `/usr/share/common-licenses/GPL'. + +The source code have this copyright notices: + +/* krb5dissect.c --- Dissect Kerberos ccache/keytab files. + * Copyright (C) 2007 Simon Josefsson. + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This file is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this file; see the file COPYING. If not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + +The files in gl/ are copyrighted by the FSF and are copied from gnulib +(and many in turn are copied from glibc), they (e.g., error.c) have +this copyright notice: + +/* Error handler for noninteractive utilities + Copyright (C) 1990-1998, 2000-2005, 2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + +The keytab.txt documentation file have this notice: + +Copyright (C) 2006 Michael B Allen +Permission to copy, modify, and distribute this document, with or +without modification, for any purpose and without fee or royalty is +hereby granted, provided that you include this copyright notice in ALL +copies of the document or portions thereof, including modifications. + +The ccache.txt documentation file have this notice: + +Copyright (C) 2006 Simon Josefsson +Permission to copy, modify, and distribute this document, with or +without modification, for any purpose and without fee or royalty is +hereby granted, provided that you include this copyright notice in ALL +copies of the document or portions thereof, including modifications. + +Other files are generated by autoconf, automake, libtool, etc and are +not discussed further. diff --git a/debian/krb5dissect.install b/debian/krb5dissect.install new file mode 100644 index 0000000..376b184 --- /dev/null +++ b/debian/krb5dissect.install @@ -0,0 +1 @@ +debian/tmp/usr/bin/krb5dissect diff --git a/debian/krb5dissect.manpages b/debian/krb5dissect.manpages new file mode 100644 index 0000000..a214338 --- /dev/null +++ b/debian/krb5dissect.manpages @@ -0,0 +1 @@ +debian/tmp/usr/share/man/man1/krb5dissect.1 diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000..e39a96e --- /dev/null +++ b/debian/rules @@ -0,0 +1,2 @@ +#!/usr/bin/make -f +include /usr/share/cdbs/1/rules/debhelper.mk diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..79eee9d --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://josefsson.org/krb5dissect/releases/krb5dissect-(.*)\.tar\.gz -- 2.11.4.GIT