From 80490bf67ac13c9c484e202019007d33f212a687 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Sat, 28 Feb 2015 17:31:46 +0100 Subject: [PATCH] compile for debian jessie, add proxmox-ve-3.10.0 packages Signed-off-by: Dietmar Maurer --- Makefile | 27 +++++-- proxmox-ve/changelog.Debian | 6 ++ proxmox-ve/control | 16 ++++ proxmox-ve/copyright | 20 +++++ proxmox-ve/postinst | 74 +++++++++++++++++++ proxmox-ve/proxmox-release@proxmox.com.pubkey | 30 ++++++++ 6 files changed, 167 insertions(+), 6 deletions(-) create mode 100644 proxmox-ve/changelog.Debian create mode 100644 proxmox-ve/control create mode 100644 proxmox-ve/copyright create mode 100755 proxmox-ve/postinst create mode 100644 proxmox-ve/proxmox-release@proxmox.com.pubkey diff --git a/Makefile b/Makefile index 1a4e7eb..2f6c7ab 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -RELEASE=3.4 +RELEASE=4.0 KERNEL_VER=3.10.0 PKGREL=29 @@ -81,7 +81,21 @@ HDR_DEB=${HDRPACKAGE}_${KERNEL_VER}-${PKGREL}_${ARCH}.deb PVEPKG=proxmox-ve-${KERNEL_VER} PVE_DEB=${PVEPKG}_${RELEASE}-${PKGREL}_all.deb -all: check_gcc ${DST_DEB} ${FW_DEB} ${HDR_DEB} +all: check_gcc ${DST_DEB} ${FW_DEB} ${HDR_DEB} ${PVE_DEB} + +${PVE_DEB} pve: proxmox-ve/control proxmox-ve/postinst + rm -rf proxmox-ve/data + mkdir -p proxmox-ve/data/DEBIAN + mkdir -p proxmox-ve/data/usr/share/doc/${PVEPKG}/ + install -m 0644 proxmox-ve/proxmox-release\@proxmox.com.pubkey proxmox-ve/data/usr/share/doc/${PVEPKG} + sed -e 's/@KVNAME@/${KVNAME}/' -e 's/@KERNEL_VER@/${KERNEL_VER}/' -e 's/@RELEASE@/${RELEASE}/' -e 's/@PKGREL@/${PKGREL}/' proxmox-ve/data/DEBIAN/control + sed -e 's/@KERNEL_VER@/${KERNEL_VER}/' proxmox-ve/data/DEBIAN/postinst + chmod 0755 proxmox-ve/data/DEBIAN/postinst + echo "git clone git://git.proxmox.com/git/pve-kernel-3.10.0.git\\ngit checkout ${GITVERSION}" > proxmox-ve/data/usr/share/doc/${PVEPKG}/SOURCE + install -m 0644 proxmox-ve/copyright proxmox-ve/data/usr/share/doc/${PVEPKG} + install -m 0644 proxmox-ve/changelog.Debian proxmox-ve/data/usr/share/doc/${PVEPKG} + gzip --best proxmox-ve/data/usr/share/doc/${PVEPKG}/changelog.Debian + dpkg-deb --build proxmox-ve/data ${PVE_DEB} .PHONY: download download: @@ -91,9 +105,9 @@ download: check_gcc: ifeq ($(CC), cc) - gcc --version|grep "4\.7\.2" || false + gcc --version|grep "4\.9" || false else - $(CC) --version|grep "4\.7" || false + $(CC) --version|grep "4\.9" || false endif ${DST_DEB}: data control.in prerm.in postinst.in postrm.in copyright changelog.Debian @@ -371,15 +385,16 @@ ${FW_DEB} fw: control.firmware linux-firmware.git/WHENCE dvb-firmware.git/README dpkg-deb --build fwdata ${FW_DEB} .PHONY: upload -upload: ${DST_DEB} ${HDR_DEB} ${FW_DEB} +upload: ${DST_DEB} ${HDR_DEB} ${FW_DEB} ${PVE_DEB} umount /pve/${RELEASE}; mount /pve/${RELEASE} -o rw mkdir -p /pve/${RELEASE}/extra mkdir -p /pve/${RELEASE}/install rm -rf /pve/${RELEASE}/extra/${PACKAGE}_*.deb rm -rf /pve/${RELEASE}/extra/${HDRPACKAGE}_*.deb + rm -rf /pve/${RELEASE}/extra/${PVEPKG}_*.deb rm -rf /pve/${RELEASE}/extra/pve-firmware*.deb rm -rf /pve/${RELEASE}/extra/Packages* - cp ${DST_DEB} ${FW_DEB} ${HDR_DEB} /pve/${RELEASE}/extra + cp ${DST_DEB} ${FW_DEB} ${HDR_DEB} ${PVE_DEB} /pve/${RELEASE}/extra cd /pve/${RELEASE}/extra; dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz umount /pve/${RELEASE}; mount /pve/${RELEASE} -o ro diff --git a/proxmox-ve/changelog.Debian b/proxmox-ve/changelog.Debian new file mode 100644 index 0000000..923a99e --- /dev/null +++ b/proxmox-ve/changelog.Debian @@ -0,0 +1,6 @@ +proxmox-ve-3.10.0 (4.0-28) unstable; urgency=medium + + * Proxmox VE package for Debian Jessie + + -- Proxmox Support Team Sat, 28 Feb 2015 17:25:14 +0100 + diff --git a/proxmox-ve/control b/proxmox-ve/control new file mode 100644 index 0000000..c1e92a3 --- /dev/null +++ b/proxmox-ve/control @@ -0,0 +1,16 @@ +Package: proxmox-ve-@KERNEL_VER@ +Version: @RELEASE@-@PKGREL@ +Architecture: all +Section: admin +Priority: optional +Provides: proxmox-virtual-environment +Conflicts: proxmox-ve, pve-kernel, proxmox-virtual-environment +Replaces: proxmox-ve, pve-kernel, proxmox-virtual-environment +Depends: libc6 (>= 2.7-18), pve-kernel-@KVNAME@, pve-firmware, pve-manager, qemu-server, pve-qemu-kvm, openssh-client, openssh-server, apt, vncterm, spiceterm +Maintainer: Proxmox Support Team +Description: The Proxmox Virtual Environment + The Proxmox Virtual Environment is an easy to use Open Source + virtualization platform for running Virtual Appliances and Virtual + Machines. This is a virtual package which will install everything + needed. This package also depends on the latest available proxmox + kernel from the @KERNEL_VER@ series. diff --git a/proxmox-ve/copyright b/proxmox-ve/copyright new file mode 100644 index 0000000..232e5fa --- /dev/null +++ b/proxmox-ve/copyright @@ -0,0 +1,20 @@ + +This software is written by Proxmox Server Solutions GmbH + + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + MA 02110-1301 USA + +The complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. diff --git a/proxmox-ve/postinst b/proxmox-ve/postinst new file mode 100755 index 0000000..885af1c --- /dev/null +++ b/proxmox-ve/postinst @@ -0,0 +1,74 @@ +#! /bin/sh + +# Abort if any command returns an error value +set -e + +# This script is called as the last step of the installation of the +# package. All the package's files are in place, dpkg has already +# done its automatic conffile handling, and all the packages we depend +# of are already fully installed and configured. + +# The following idempotent stuff doesn't generally need protecting +# against being run in the abort-* cases. + +case "$1" in + configure) + # Configure this package. If the package must prompt the user for + # information, do it here. + + # install release key + echo -n "installing proxmox release key: " + /usr/bin/apt-key add '/usr/share/doc/proxmox-ve-@KERNEL_VER@/proxmox-release@proxmox.com.pubkey' || /bin/true + + # There are three sub-cases: + if test "${2+set}" != set; then + # We're being installed by an ancient dpkg which doesn't remember + # which version was most recently configured, or even whether + # there is a most recently configured version. + : + + elif test -z "$2" -o "$2" = ""; then + # The package has not ever been configured on this system, or was + # purged since it was last configured. + : + + else + # Version $2 is the most recently configured version of this + # package. + : + + fi ;; + abort-upgrade) + # Back out of an attempt to upgrade this package FROM THIS VERSION + # to version $2. Undo the effects of "prerm upgrade $2". + : + + ;; + abort-remove) + if test "$2" != in-favour; then + echo "$0: undocumented call to \`postinst $*'" 1>&2 + exit 0 + fi + # Back out of an attempt to remove this package, which was due to + # a conflict with package $3 (version $4). Undo the effects of + # "prerm remove in-favour $3 $4". + : + + ;; + abort-deconfigure) + if test "$2" != in-favour -o "$5" != removing; then + echo "$0: undocumented call to \`postinst $*'" 1>&2 + exit 0 + fi + # Back out of an attempt to deconfigure this package, which was + # due to package $6 (version $7) which we depend on being removed + # to make way for package $3 (version $4). Undo the effects of + # "prerm deconfigure in-favour $3 $4 removing $6 $7". + : + + ;; + *) echo "$0: didn't understand being called with \`$1'" 1>&2 + exit 0;; +esac + +exit 0 diff --git a/proxmox-ve/proxmox-release@proxmox.com.pubkey b/proxmox-ve/proxmox-release@proxmox.com.pubkey new file mode 100644 index 0000000..816a8b8 --- /dev/null +++ b/proxmox-ve/proxmox-release@proxmox.com.pubkey @@ -0,0 +1,30 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1.4.6 (GNU/Linux) + +mQGiBEkGw8URBACes0Nn6KGrblcNfylEonfSuqEyCDz4P0SoPc09ieqhacdJYZZu +gOJkdAQMESUvVG9S/KolkQI0eR3VqW5PxdC7Uon8lnLofy+iicJhaZvBQA8voOJ9 +Myv4SrrBPrsa64pLppZ2zYJ2Vj+x26tvYRG1L8G20FDKejnrcLmAOLz+twCgo5rj +Lcyh1gGAE/ktluKIS6EpfmsEAJAjyiiDs2HZcBh7RrlV25kZEk7rwwrrMXmkGpBb +iElZjbRY6cHl+IvwEHD89ShuADuiEOVMqQ8nSbaFQAblqBK+Q1klZUxmppw1UfG5 ++x3X7MrULg0YAgAMqwBPgYrAYfV6tdzO3HY6dP5aRNBVYxCgvnXpHw4XW4GC8qRO +NmBPBACLSxG4Q2md/6jHVnoQT4UsPA5Nn2imKsLqS62WQBQyM8W+LtlyxT+QAf+t ++D/XFv5ZUQQq766cR4WnmOkNLAqmFaSrUF2T58UPxOC6TsTkrFkI+kVJFqHedag2 +9n+EFXK/DzrsmElWiMyYuMYkOzNn/2cbYnpLq4zO5cwi7BNoRrQxUHJveG1veCBS +ZWxlYXNlIEtleSA8cHJveG1veC1yZWxlYXNlQHByb3htb3guY29tPohgBBMRAgAg +BQJJBsPFAhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQwjrH9JiH+VqTLwCf +TVzFdNADeZ00bKpyE8u4BHZJK+4AmwVbhpnb4EkSHYqNhrhEIVSynxm0uQINBEkG +w8oQCAD323YC4+yp1fJGyI2o8GjnPWKRbmJPhoaeungGkFD0M2Ke2/NlgoQnwwyH +FRCLxmjc48r++hlSN+OhVuGrvSl5mh0R3Tv5m17OD1KmkAMT9TcrZ7mqn2D79iv3 +TkO27Z76Rs+Wnfu/dc+85wCJDGx9oK8hmJTu6Qc62AkdVCfTULoKSQ3u7LFkGQP9 +I+wtOLnLIc8TpGNuwJ97gIAsfZEkbg3zS39loPwQdIV4b48Hfiz7uMEc4Zwx2bqL ++6sp1vK3jfr7Vb1vQyqG9pvDQ5LSbjh9PCCEmbLtyEIDx8hogNZ9M0ShgZzOwRj4 +vF/sdAdxIT4/7TlMi8jzZqFYSDN/AAMFCACBFBtH1KF45gt70BwgDDv+2zxCy3nP +3kT2W2f2P3OzTSsu0HGGrIZFtllemAVv89sXlJvZEOzIDvWFizwTiaSW0orj1ni4 +Rz5tNIKnv2T1nJbKWnK7hKO+VKopSCADfFW4FxOwnkV1tV/k7WtCsP+y7X4b/9PA +EFDYY81MZo3pXvvk989SmoNL2mAdcVYRn1vVCAsciVX6QZFuaupFl4J+57G0OO9P +tNXn9Hesw7qMo0H52WLp/l8WOhKcghV3+2V4NgpPqZiWD0bOclSO41gmeRWyNo0h +lVzmRVZF0Np9gXzIBVvaq3pHMglb8rOLm/AsNxgZlDe1PqJiSWFZR96EiEkEGBEC +AAkFAkkGw8oCGwwACgkQwjrH9JiH+VrCsgCfQA5nxXoNgngILmP3+J6iazwbt48A +njRGHVUQoR1WV2YlrbwONA2D5Epq +=twvw +-----END PGP PUBLIC KEY BLOCK----- -- 2.39.5