[kernel] r9283 - in people/fs/tgt: . debian

Frederik Schüler fs at alioth.debian.org
Tue Aug 7 00:16:46 UTC 2007


Author: fs
Date: Tue Aug  7 00:16:46 2007
New Revision: 9283

Log:
First draft of tgt debian dir


Added:
   people/fs/tgt/
   people/fs/tgt/debian/
   people/fs/tgt/debian/changelog
   people/fs/tgt/debian/compat
   people/fs/tgt/debian/control
   people/fs/tgt/debian/copyright
   people/fs/tgt/debian/dirs
   people/fs/tgt/debian/docs
   people/fs/tgt/debian/rules   (contents, props changed)
   people/fs/tgt/debian/tgt.install
   people/fs/tgt/debian/tgt.manpages

Added: people/fs/tgt/debian/changelog
==============================================================================
--- (empty file)
+++ people/fs/tgt/debian/changelog	Tue Aug  7 00:16:46 2007
@@ -0,0 +1,7 @@
+tgt (20070807-1) UNRELEASED; urgency=low
+
+  [ Frederik Schüler ]
+  * Initial release (Closes: #436320)
+
+ -- Frederik Schüler <fs at debian.org>  Tue, 07 Aug 2007 02:14:19 +0200
+

Added: people/fs/tgt/debian/compat
==============================================================================
--- (empty file)
+++ people/fs/tgt/debian/compat	Tue Aug  7 00:16:46 2007
@@ -0,0 +1 @@
+5

Added: people/fs/tgt/debian/control
==============================================================================
--- (empty file)
+++ people/fs/tgt/debian/control	Tue Aug  7 00:16:46 2007
@@ -0,0 +1,31 @@
+Source: tgt
+Section: net
+Priority: optional
+Maintainer: Debian Kernel Team <debian-kernel at lists.debian.org>
+Uploaders: Frederik Schüler <fs at debian.org>
+Build-Depends: debhelper (>= 5), libssl-dev
+Standards-Version: 3.7.2
+
+Package: tgt
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Linux target framework user-space tools
+ Linux target framework (tgt) aims to simplify various SCSI target
+ driver (iSCSI, Fibre Channel, SRP, etc) creation and maintenance.
+ .
+ Tgt consists of kernel modules, user-space daemon, and user-space
+ tools. Some target drivers uses all of them and some use only
+ user-space daemon and tools (i.e. they completely runs in user space).
+ .
+ This package contains the user-space daemon and tools, a recent Linux
+ kernel is required for the modules.
+ .
+ Currently, tgt supports three target drivers:
+ .
+ - IBM VIO server (ibmvstgt)
+ - iSCSI
+ - Xen vscsifront/back
+ .
+ Note that tgt is under active development. Don't play with important
+ data.
+

Added: people/fs/tgt/debian/copyright
==============================================================================
--- (empty file)
+++ people/fs/tgt/debian/copyright	Tue Aug  7 00:16:46 2007
@@ -0,0 +1,36 @@
+This package was debianized by Frederik Schüler <fs at debian.org> on
+Tue, 07 Aug 2007 01:33:34 +0200.
+
+It was downloaded from git://git.kernel.org/pub/scm/linux/kernel/git/tomo/tgt.git
+
+Upstream Author(s): 
+
+	Mike Christie <michaelc at cs.wisc.edu>
+	FUJITA Tomonori <tomof at acm.org>
+
+Copyright: 
+
+    Copyright (C) 2005-2007 Name FUJITA Tomonori and Mike Christie
+
+License:
+
+    This package 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 of the License, or
+    (at your option) any later version.
+ 
+    This package 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 package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2007, Frederik Schüler <fs at debian.org> and
+is licensed under the GPL, see above.
+

Added: people/fs/tgt/debian/dirs
==============================================================================
--- (empty file)
+++ people/fs/tgt/debian/dirs	Tue Aug  7 00:16:46 2007
@@ -0,0 +1 @@
+usr/sbin

Added: people/fs/tgt/debian/docs
==============================================================================
--- (empty file)
+++ people/fs/tgt/debian/docs	Tue Aug  7 00:16:46 2007
@@ -0,0 +1,7 @@
+README
+doc/README.ibmvstgt
+doc/README.iscsi
+doc/README.lu_configuration
+doc/README.passthrough
+doc/TODO
+doc/tmf.txt

Added: people/fs/tgt/debian/rules
==============================================================================
--- (empty file)
+++ people/fs/tgt/debian/rules	Tue Aug  7 00:16:46 2007
@@ -0,0 +1,50 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+build: build-stamp
+
+build-stamp: 
+	dh_testdir
+	$(MAKE) -C usr/ ISCSI=1
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+	-$(MAKE) -C usr/ clean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	dh_install
+
+binary-indep: build install
+
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_installman
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

Added: people/fs/tgt/debian/tgt.install
==============================================================================
--- (empty file)
+++ people/fs/tgt/debian/tgt.install	Tue Aug  7 00:16:46 2007
@@ -0,0 +1,2 @@
+usr/tgtd usr/sbin
+usr/tgtadm usr/sbin

Added: people/fs/tgt/debian/tgt.manpages
==============================================================================
--- (empty file)
+++ people/fs/tgt/debian/tgt.manpages	Tue Aug  7 00:16:46 2007
@@ -0,0 +1 @@
+doc/manpages/tgtadm.8



More information about the Kernel-svn-changes mailing list