summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2014-06-22 23:04:39 +0400
committerIgor Pashev <pashev.igor@gmail.com>2014-06-22 23:04:39 +0400
commitb4cd993ec5008c28d0aca16155fbfb1f2d6a5826 (patch)
tree94ef67d9b323647a4d3f9d014ccc5478d29532e2
parent090597724f96dd0125a84a5a7ac31a8cbc429ba6 (diff)
downloadtruss-b4cd993ec5008c28d0aca16155fbfb1f2d6a5826.tar.gz
truss (0.9-0+dyson1) unstable; urgency=mediumHEADdyson/0.9-0+dyson1master
* Initial release.
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control25
-rw-r--r--debian/copyright34
-rwxr-xr-xdebian/rules9
-rw-r--r--debian/source/format1
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)