diff options
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 25 | ||||
-rw-r--r-- | debian/copyright | 34 | ||||
-rwxr-xr-x | debian/rules | 9 | ||||
-rw-r--r-- | debian/source/format | 1 |
6 files changed, 75 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f6e8448 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +truss (0.9-0+dyson1) unstable; urgency=medium + + * Initial release. + + -- Igor Pashev <pashev.igor@gmail.com> Sun, 22 Jun 2014 22:42:41 +0400 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d792d17 --- /dev/null +++ b/debian/control @@ -0,0 +1,25 @@ +Source: truss +Section: utils +Priority: optional +Maintainer: Igor Pashev <pashev.igor@gmail.com> +Build-Depends: debhelper (>= 9), + libc-db1-dev, + libnvpair-dev, + libproc1-dev, + librtld-db1-dev, + libtsol-dev, +Standards-Version: 3.9.5 +Homepage: http://osdyson.org +Vcs-Git: http://cgit.osdyson.org/illumos/truss.git +Vcs-Browser: http://cgit.osdyson.org/illumos/truss.git + +Package: truss +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: trace system calls and signals + The truss utility executes the specified command and produces a trace of + the system calls it performs, the signals it receives, and the machine faults + it incurs. Each line of the trace output reports either the fault or signal + name or the system call name with its arguments and return value(s). + System call arguments are displayed symbolically when possible using + defines from relevant system headers. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..dc327d3 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ + +Files: debian/* + configure.ac + Makefile.am +Copyright: 2014, Igor Pashev <pashev.igor@gmail.com> +License: WTFPL-2 + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + . + Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> + . + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + . + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + . + 0. You just DO WHAT THE FUCK YOU WANT TO. + + +Files: usr/* +Copyright: 1984-1989, AT&T. + 1989-2010, Oracle and/or its affiliates. + 1992-2008, Sun Microsystems, Inc. + 2011, Nexenta Systems, Inc. + 2012, Joyent, Inc. + 2013, Delphix + 2013-2014, OmniTI Computer Consulting, Inc. +License: CDDL-1.0 + On Dyson system, the full text of the CDDL license + can be found in the file `/usr/share/common-licenses/CDDL-1.0'. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..de00d5b --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_auto_install: + dh_auto_install + rm debian/truss/usr/share/doc/truss/LICENSE + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) |