summaryrefslogtreecommitdiff
path: root/libsunuuid
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2012-11-03 22:18:39 +0400
committerIgor Pashev <pashev.igor@gmail.com>2012-11-03 22:18:39 +0400
commita3697a62e1ab23cfd431cab9808fc0b73ab7d1fe (patch)
tree8ad220dcfb532121492ce1ccc605cf0d7095a1f5 /libsunuuid
parent93ed02031a19bb3a74f4e968ac9bc95c666db630 (diff)
downloadillumos-packaging-a3697a62e1ab23cfd431cab9808fc0b73ab7d1fe.tar.gz
libsunuuid
Diffstat (limited to 'libsunuuid')
-rw-r--r--libsunuuid/debian/README.source10
-rw-r--r--libsunuuid/debian/changelog5
-rw-r--r--libsunuuid/debian/compat1
-rw-r--r--libsunuuid/debian/control81
-rw-r--r--libsunuuid/debian/copyright62
-rw-r--r--libsunuuid/debian/lib32sunuuid1-dev.install1
-rw-r--r--libsunuuid/debian/lib32sunuuid1.install1
-rw-r--r--libsunuuid/debian/libsunuuid1-dev.install4
-rw-r--r--libsunuuid/debian/libsunuuid1.install1
-rw-r--r--libsunuuid/debian/patches/libuuid-rename.patch15
-rw-r--r--libsunuuid/debian/patches/series1
-rwxr-xr-xlibsunuuid/debian/rules100
-rw-r--r--libsunuuid/debian/source/format1
13 files changed, 283 insertions, 0 deletions
diff --git a/libsunuuid/debian/README.source b/libsunuuid/debian/README.source
new file mode 100644
index 0000000..9988910
--- /dev/null
+++ b/libsunuuid/debian/README.source
@@ -0,0 +1,10 @@
+Real sources are in the package illumos-source-X.Y,
+where X and Y are numbers. Exact values of X and Y
+are set in Build-Depends field of debian/control as
+well as in the version string in debian/changelog,
+in a form of X.Y-1.
+
+To add a patch you need first to unpack files from
+illumos-source-X.Y using ./debian/rules unpack
+and, desirably, ./debian/rules patch
+
diff --git a/libsunuuid/debian/changelog b/libsunuuid/debian/changelog
new file mode 100644
index 0000000..c224d7e
--- /dev/null
+++ b/libsunuuid/debian/changelog
@@ -0,0 +1,5 @@
+libsunuuid (2.10-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Igor Pashev <pashev.igor@gmail.com> Tue, 23 Oct 2012 03:02:05 +0400
diff --git a/libsunuuid/debian/compat b/libsunuuid/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/libsunuuid/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/libsunuuid/debian/control b/libsunuuid/debian/control
new file mode 100644
index 0000000..e7d526c
--- /dev/null
+++ b/libsunuuid/debian/control
@@ -0,0 +1,81 @@
+Source: libsunuuid
+Section: libs
+Priority: optional
+Maintainer: Igor Pashev <pashev.igor@gmail.com>
+Build-Depends:
+ dh-illumos,
+ gcc-multilib,
+ illumos-source-2.10,
+ libdlpi1-dev, lib32dlpi1-dev,
+ quilt,
+ symlinks,
+Build-Conflicts: uuid-dev, libuuid-dev
+Standards-Version: 3.9.3
+Homepage: https://www.illumos.org
+
+Package: libsunuuid1
+Section: libs
+Priority: standard
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
+Architecture: illumos-any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: illumos UUID library
+ This package contains libsunuuid shared library.
+ .
+ The libsunuuid library perform operations on a universally unique identifier
+ (UUID). A UUID is an identifier that is unique across both space and time,
+ with respect to the space of all UUIDs. A UUID can be used for multiple
+ purposes, from tagging objects with an extremely short lifetime, to reliably
+ identifying very persistent objects across a network.
+
+Package: libsunuuid1-dev
+Section: libdevel
+Priority: optional
+Architecture: illumos-any
+Provides: libsunuuid-dev
+Depends: libsunuuid1 (= ${binary:Version}), ${misc:Depends}, libc1-dev,
+Conflicts: uuid-dev, libuuid-dev
+Description: illumos UUID library (development files)
+ This package contains the header files and symlinks needed
+ to compile applications that use libsunuuid.
+ .
+ The libsunuuid library perform operations on a universally unique identifier
+ (UUID). A UUID is an identifier that is unique across both space and time,
+ with respect to the space of all UUIDs. A UUID can be used for multiple
+ purposes, from tagging objects with an extremely short lifetime, to reliably
+ identifying very persistent objects across a network.
+
+Package: lib32sunuuid1
+Section: libs
+Priority: standard
+Architecture: illumos-amd64
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: illumos UUID library (32 bit)
+ This package contains libsunuuid shared library.
+ .
+ The libsunuuid library perform operations on a universally unique identifier
+ (UUID). A UUID is an identifier that is unique across both space and time,
+ with respect to the space of all UUIDs. A UUID can be used for multiple
+ purposes, from tagging objects with an extremely short lifetime, to reliably
+ identifying very persistent objects across a network.
+ .
+ This is a 32-bit version of the library.
+
+Package: lib32sunuuid1-dev
+Section: libdevel
+Priority: optional
+Architecture: illumos-amd64
+Provides: lib32sunuuid-dev
+Depends: lib32sunuuid1 (= ${binary:Version}), libsunuuid1-dev (= ${binary:Version}),
+ ${misc:Depends}
+Description: illumos UUID library (32-bit development files)
+ This package contains files needed to compile
+ 32-bit applications that use libsunuuid.
+ .
+ The libsunuuid library perform operations on a universally unique identifier
+ (UUID). A UUID is an identifier that is unique across both space and time,
+ with respect to the space of all UUIDs. A UUID can be used for multiple
+ purposes, from tagging objects with an extremely short lifetime, to reliably
+ identifying very persistent objects across a network.
+
diff --git a/libsunuuid/debian/copyright b/libsunuuid/debian/copyright
new file mode 100644
index 0000000..2b18913
--- /dev/null
+++ b/libsunuuid/debian/copyright
@@ -0,0 +1,62 @@
+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.
+
+
+Files: usr/src/lib/libinetutil/common/ifaddrlist.c
+Copyright: 1997, The Regents of the University of California.
+ 2009 Sun Microsystems, Inc.
+License: 4-clause BSD
+ Copyright (c) 1997
+ The Regents of the University of California. All rights reserved.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. All advertising materials mentioning features or use of this software
+ must display the following acknowledgement:
+ This product includes software developed by the Computer Systems
+ Engineering Group at Lawrence Berkeley Laboratory.
+ 4. Neither the name of the University nor of the Laboratory may be used
+ to endorse or promote products derived from this software without
+ specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+Files: *
+License: CDDL
+ Note that sources are not in this package but in the package
+ illumos-source-X.Y. Those sources are covered by Common Development
+ and Distribution License (CDDL).
+ .
+ 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/libsunuuid/debian/lib32sunuuid1-dev.install b/libsunuuid/debian/lib32sunuuid1-dev.install
new file mode 100644
index 0000000..146c6ff
--- /dev/null
+++ b/libsunuuid/debian/lib32sunuuid1-dev.install
@@ -0,0 +1 @@
+usr/lib32/libuuid.so
diff --git a/libsunuuid/debian/lib32sunuuid1.install b/libsunuuid/debian/lib32sunuuid1.install
new file mode 100644
index 0000000..dc8454b
--- /dev/null
+++ b/libsunuuid/debian/lib32sunuuid1.install
@@ -0,0 +1 @@
+lib32/libsunuuid.so.1
diff --git a/libsunuuid/debian/libsunuuid1-dev.install b/libsunuuid/debian/libsunuuid1-dev.install
new file mode 100644
index 0000000..77bdd06
--- /dev/null
+++ b/libsunuuid/debian/libsunuuid1-dev.install
@@ -0,0 +1,4 @@
+usr/lib/*/libsunuuid.so
+usr/lib/*/libuuid.so
+usr/include/sys/uuid.h
+usr/include/uuid/uuid.h
diff --git a/libsunuuid/debian/libsunuuid1.install b/libsunuuid/debian/libsunuuid1.install
new file mode 100644
index 0000000..70dfe48
--- /dev/null
+++ b/libsunuuid/debian/libsunuuid1.install
@@ -0,0 +1 @@
+lib/*/libsunuuid.so.1
diff --git a/libsunuuid/debian/patches/libuuid-rename.patch b/libsunuuid/debian/patches/libuuid-rename.patch
new file mode 100644
index 0000000..095cefd
--- /dev/null
+++ b/libsunuuid/debian/patches/libuuid-rename.patch
@@ -0,0 +1,15 @@
+Description: there are too many uuid libraries around.
+ And illumos' one is not the best
+Index: libsunuuid/usr/src/lib/libuuid/Makefile.com
+===================================================================
+--- libsunuuid.orig/usr/src/lib/libuuid/Makefile.com 2012-10-08 04:25:42.000000000 +0400
++++ libsunuuid/usr/src/lib/libuuid/Makefile.com 2012-11-03 22:08:18.615105024 +0400
+@@ -25,7 +25,7 @@
+ # ident "%Z%%M% %I% %E% SMI"
+ #
+
+-LIBRARY = libuuid.a
++LIBRARY = libsunuuid.a
+ VERS = .1
+ OBJECTS = etheraddr.o uuid.o uuid_misc.o
+
diff --git a/libsunuuid/debian/patches/series b/libsunuuid/debian/patches/series
new file mode 100644
index 0000000..86c887f
--- /dev/null
+++ b/libsunuuid/debian/patches/series
@@ -0,0 +1 @@
+libuuid-rename.patch
diff --git a/libsunuuid/debian/rules b/libsunuuid/debian/rules
new file mode 100755
index 0000000..dbaae17
--- /dev/null
+++ b/libsunuuid/debian/rules
@@ -0,0 +1,100 @@
+#!/usr/bin/make -f
+
+include /usr/share/dpkg/architecture.mk
+export DH_VERBOSE = 1
+
+# libs having "install_h" target to install headers:
+libs_headers := \
+libuuid \
+
+# All libraries to build and to package.
+# Order is important:
+libs := $(libs_headers) \
+
+
+unpack: unpack-stamp
+unpack-stamp:
+ dh_testdir
+ dh_illumos_gate --build \
+ $(libs:%=usr/src/lib/%) \
+ usr/src/uts/common/sys/uuid.h \
+ usr/src/head/uuid/uuid.h
+
+ # Not used and buggy:
+ echo > usr/src/Makefile.msg.targ
+ touch $@
+
+patch: patch-stamp
+patch-stamp: unpack-stamp
+ dh_testdir
+ [ ! -f debian/patches/series ] || QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2
+ touch $@
+
+unpatch:
+ dh_testdir
+ [ ! -f debian/patches/series ] || QUILT_PATCHES=debian/patches quilt pop -a -f || test $$? = 2
+ rm -f patch-stamp
+
+dirs-stamp:
+ . usr/env.sh; mkdir -p \
+ debian/tmp/usr/include/uuid \
+ debian/tmp/usr/include/sys \
+ debian/tmp$$DEB_LIBDIR_32 \
+ debian/tmp$$DEB_LIBDIR_64 \
+ debian/tmp$$DEB_USRLIBDIR_32 \
+ debian/tmp$$DEB_USRLIBDIR_64
+ touch $@
+
+headers-stamp: patch-stamp dirs-stamp
+ cp usr/src/uts/common/sys/uuid.h \
+ debian/tmp/usr/include/sys/
+ cp usr/src/head/uuid/uuid.h \
+ debian/tmp/usr/include/uuid/
+ touch $@
+
+install build build-arch build-indep: build-stamp
+build-stamp: patch-stamp dirs-stamp headers-stamp
+ dh_illumos_make $(libs:%=usr/src/lib/%)
+ # Move dev symlink from /lib into /usr/lib:
+ for l in `find debian/tmp/lib32 -maxdepth 1 -type l -name \*.so`; do \
+ ln -sf `readlink -f $$l` debian/tmp/usr/lib32/`basename $$l`; \
+ rm $$l; \
+ done
+ for l in `find debian/tmp/lib/$(DEB_HOST_MULTIARCH) -maxdepth 1 -type l -name \*.so`; do \
+ ln -sf `readlink -f $$l` debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/`basename $$l`; \
+ rm $$l; \
+ done
+ ln -sf libsunuuid.so debian/tmp/usr/lib32/libuuid.so
+ ln -sf libsunuuid.so debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libuuid.so
+ # Make symlinks relative:
+ symlinks -c debian/tmp/usr/lib32
+ symlinks -c debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)
+ touch $@
+
+binary binary-arch binary-indep: binary-stamp
+binary-stamp: build-stamp
+ dh_testdir
+ dh_testroot
+ dh_installdirs
+ dh_install
+ dh_installman
+ dh_installdocs
+ dh_installexamples
+ dh_installchangelogs
+ dh_link
+ dh_compress
+ dh_fixperms
+ dh_makeshlibs -- -c4
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+ touch $@
+
+clean: unpatch
+ dh_testdir
+ dh_testroot
+ dh_clean
+ rm -rf usr
+
diff --git a/libsunuuid/debian/source/format b/libsunuuid/debian/source/format
new file mode 100644
index 0000000..89ae9db
--- /dev/null
+++ b/libsunuuid/debian/source/format
@@ -0,0 +1 @@
+3.0 (native)