diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2013-03-18 15:37:20 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2013-03-18 15:37:20 +0000 |
commit | 3a026db6bc411ea84e983659ede88a79874066f6 (patch) | |
tree | 365974a37b7f4eb14d44a21fb6e952477676a401 /base-devices | |
parent | 34e5b641b8f749d6f3b90c0534c41c72031d61b4 (diff) | |
download | illumos-packaging-3a026db6bc411ea84e983659ede88a79874066f6.tar.gz |
base-devices
Diffstat (limited to 'base-devices')
-rw-r--r-- | base-devices/debian/base-devices.dirs | 12 | ||||
-rw-r--r-- | base-devices/debian/base-devices.links | 3 | ||||
-rw-r--r-- | base-devices/debian/changelog | 5 | ||||
-rw-r--r-- | base-devices/debian/compat | 1 | ||||
-rw-r--r-- | base-devices/debian/control | 19 | ||||
-rw-r--r-- | base-devices/debian/copyright | 18 | ||||
-rwxr-xr-x | base-devices/debian/rules | 5 | ||||
-rw-r--r-- | base-devices/debian/source/format | 1 |
8 files changed, 64 insertions, 0 deletions
diff --git a/base-devices/debian/base-devices.dirs b/base-devices/debian/base-devices.dirs new file mode 100644 index 0000000..f4504c8 --- /dev/null +++ b/base-devices/debian/base-devices.dirs @@ -0,0 +1,12 @@ +dev/dsk +dev/fd +dev/ipnet +dev/net +dev/pts +dev/rdsk +dev/rmt +dev/sad +dev/swap +dev/term +dev/vt +dev/zcons diff --git a/base-devices/debian/base-devices.links b/base-devices/debian/base-devices.links new file mode 100644 index 0000000..1fdf7e9 --- /dev/null +++ b/base-devices/debian/base-devices.links @@ -0,0 +1,3 @@ +/dev/fd/0 /dev/stdin +/dev/fd/1 /dev/stdout +/dev/fd/2 /dev/stderr diff --git a/base-devices/debian/changelog b/base-devices/debian/changelog new file mode 100644 index 0000000..08c8777 --- /dev/null +++ b/base-devices/debian/changelog @@ -0,0 +1,5 @@ +base-devices (1.0) unstable; urgency=low + + * Initial release. + + -- Igor Pashev <pashev.igor@gmail.com> Mon, 18 Mar 2013 15:22:43 +0000 diff --git a/base-devices/debian/compat b/base-devices/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/base-devices/debian/compat @@ -0,0 +1 @@ +9 diff --git a/base-devices/debian/control b/base-devices/debian/control new file mode 100644 index 0000000..9fd1cb4 --- /dev/null +++ b/base-devices/debian/control @@ -0,0 +1,19 @@ +Source: base-devices +Section: admin +Priority: required +Maintainer: Igor Pashev <pashev.igor@gmail.com> +Build-Depends: debhelper ( >= 9 ) +Standards-Version: 3.9.3 +Homepage: http://osdyson.org + +Package: base-devices +Essential: yes +Priority: required +Section: admin +Architecture: any +Description: core entries for /dev + This package provides directories and symbolic links + under /dev directory, which are required for normal + system functionality, such as /dev/fd/ or /dev/stderr + + diff --git a/base-devices/debian/copyright b/base-devices/debian/copyright new file mode 100644 index 0000000..804d201 --- /dev/null +++ b/base-devices/debian/copyright @@ -0,0 +1,18 @@ +Files: debian/* +Copyright: 2012, 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. + + diff --git a/base-devices/debian/rules b/base-devices/debian/rules new file mode 100755 index 0000000..abde6ef --- /dev/null +++ b/base-devices/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f + +%: + dh $@ + diff --git a/base-devices/debian/source/format b/base-devices/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/base-devices/debian/source/format @@ -0,0 +1 @@ +3.0 (native) |