From: Dietmar Maurer Date: Mon, 19 Aug 2013 10:43:49 +0000 (+0200) Subject: initial import X-Git-Url: https://git.proxmox.com/?p=pve-spice-protocol.git;a=commitdiff_plain;h=70c251711b28187689519fa5d180ba5b05ef7b9a initial import --- 70c251711b28187689519fa5d180ba5b05ef7b9a diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5685fe0 --- /dev/null +++ b/Makefile @@ -0,0 +1,31 @@ +RELEASE=3.1 + +PACKAGE=libspice-protocol-dev +PKGVERSION=0.12.6 +PKGRELEASE=1 + +PKGDIR=spice-protocol-${PKGVERSION} +PKGSRC=${PKGDIR}.tar.bz2 + +ARCH:="all" + +DEB=${PACKAGE}_${PKGVERSION}-${PKGRELEASE}_${ARCH}.deb + + +all: ${DEB} + +${DEB} deb: ${PKGSRC} + rm -rf ${PKGDIR} + tar xf ${PKGSRC} + cp -a debian ${PKGDIR}/debian + cd ${PKGDIR}; dpkg-buildpackage -rfakeroot -b -us -uc + +distclean: clean + +.PHONY: clean +clean: + rm -rf *~ debian/*~ *_${ARCH}.deb *.changes *.dsc ${PKGDIR} + +.PHONY: dinstall +dinstall: ${DEB} + dpkg -i ${DEB} diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..36f7633 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +spice-protocol (0.12.6-1) unstable; urgency=low + + [ Proxmox Support Team ] + * first try + + -- Proxmox Support Team Mon, 19 Aug 2013 12:34:09 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..3fd4d54 --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: spice-protocol +Priority: optional +Maintainer: Proxmox Support Team +Build-Depends: debhelper (>= 7.0.50~) +Standards-Version: 3.9.4 +Section: libs + +Package: libspice-protocol-dev +Section: libdevel +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: SPICE protocol headers + The Simple Protocol for Independent Computing Environments (SPICE) + is a remote display system built for virtual environments which + allows you to view a computing 'desktop' environment not only on + the machine where it is running, but from anywhere on the Internet + and from a wide variety of machine architectures. + . + This is an experimental package witch contains SPICE protocol extension + for use with spiceterm. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..bce458d --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER 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 COPYRIGHT +HOLDER 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. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..4a69022 --- /dev/null +++ b/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + + +%: + dh --with quilt $@ + diff --git a/spice-protocol-0.12.6.tar.bz2 b/spice-protocol-0.12.6.tar.bz2 new file mode 100644 index 0000000..736abd1 Binary files /dev/null and b/spice-protocol-0.12.6.tar.bz2 differ