From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 7EA1486074 for ; Wed, 22 Dec 2021 14:53:53 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 00D2C17130 for ; Wed, 22 Dec 2021 14:53:20 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 7757116D46 for ; Wed, 22 Dec 2021 14:53:06 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 017C145C1E for ; Wed, 22 Dec 2021 14:53:05 +0100 (CET) From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= To: pve-devel@lists.proxmox.com Date: Wed, 22 Dec 2021 14:52:43 +0100 Message-Id: <20211222135257.3242938-8-f.gruenbichler@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211222135257.3242938-1-f.gruenbichler@proxmox.com> References: <20211222135257.3242938-1-f.gruenbichler@proxmox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.231 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_SHORT 0.001 Use of a URL Shortener for very short URL SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH v3 proxmox-websocket-tunnel 4/4] add packaging X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Dec 2021 13:53:53 -0000 Signed-off-by: Fabian Grünbichler --- Notes: v3: rebased/regenerated Makefile | 44 +++++++++++++++++++++++++++++++++ debian/changelog | 5 ++++ debian/control | 58 ++++++++++++++++++++++++++++++++++++++++++++ debian/copyright | 16 ++++++++++++ debian/debcargo.toml | 13 ++++++++++ 5 files changed, 136 insertions(+) create mode 100644 Makefile create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/debcargo.toml diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4f2a799 --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +.PHONY: all +all: check + +.PHONY: check +check: + cargo test --all-features + +.PHONY: dinstall +dinstall: deb + sudo -k dpkg -i build/librust-*.deb + +.PHONY: build +build: + rm -rf build + rm -f debian/control + mkdir build + debcargo package \ + --config "$(PWD)/debian/debcargo.toml" \ + --changelog-ready \ + --no-overlay-write-back \ + --directory "$(PWD)/build/proxmox-websocket-tunnel" \ + "proxmox-websocket-tunnel" \ + "$$(dpkg-parsechangelog -l "debian/changelog" -SVersion | sed -e 's/-.*//')" + echo system >build/rust-toolchain + rm -f build/proxmox-websocket-tunnel/Cargo.lock + find build/proxmox-websocket-tunnel/debian -name '*.hint' -delete + cp build/proxmox-websocket-tunnel/debian/control debian/control + +.PHONY: deb +deb: build + (cd build/proxmox-websocket-tunnel && dpkg-buildpackage -b -uc -us) + lintian build/*.deb + +.PHONY: clean +clean: + rm -rf build *.deb *.buildinfo *.changes *.orig.tar.gz + cargo clean + +upload: deb + cd build; \ + dcmd --deb rust-proxmox-websocket-tunnel_*.changes \ + | grep -v '.changes$$' \ + | tar -cf- -T- \ + | ssh -X repoman@repo.proxmox.com upload --product pve --dist bullseye diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..04751ce --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +rust-proxmox-websocket-tunnel (0.1.0-1) unstable; urgency=medium + + * initial release + + -- Proxmox Support Team Tue, 18 May 2021 14:18:14 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..7f6b4c3 --- /dev/null +++ b/debian/control @@ -0,0 +1,58 @@ +Source: rust-proxmox-websocket-tunnel +Section: admin +Priority: optional +Build-Depends: debhelper (>= 12), + dh-cargo (>= 25), + cargo:native, + rustc:native, + libstd-rust-dev, + librust-anyhow-1+default-dev, + librust-base64-0.13+default-dev, + librust-futures-0.3+default-dev, + librust-futures-util-0.3+default-dev, + librust-hex-0.4+default-dev, + librust-hyper-0.14+default-dev, + librust-openssl-0.10+default-dev, + librust-percent-encoding-2+default-dev, + librust-proxmox-http-0.6+client-dev, + librust-proxmox-http-0.6+default-dev, + librust-proxmox-http-0.6+websocket-dev, + librust-proxmox-sys-0.2+default-dev (>= 0.2.2-~~), + librust-serde-1+default-dev, + librust-serde-1+derive-dev, + librust-serde-json-1+default-dev, + librust-tokio-1+default-dev, + librust-tokio-1+io-std-dev, + librust-tokio-1+io-util-dev, + librust-tokio-1+macros-dev, + librust-tokio-1+rt-multi-thread-dev, + librust-tokio-1+sync-dev, + librust-tokio-stream-0.1+default-dev, + librust-tokio-stream-0.1+io-util-dev, + librust-tokio-util-0.6+default-dev +Maintainer: Proxmox Support Team +Standards-Version: 4.5.1 +Vcs-Git: git://git.proxmox.com/git/proxmox-websocket-tunnel.git +Vcs-Browser: https://git.proxmox.com/?p=proxmox-websocket-tunnel.git +Rules-Requires-Root: no + +Package: proxmox-websocket-tunnel +Architecture: any +Multi-Arch: allowed +Depends: + ${misc:Depends}, + ${shlibs:Depends}, + ${cargo:Depends} +Recommends: + ${cargo:Recommends} +Suggests: + ${cargo:Suggests} +Provides: + ${cargo:Provides} +Built-Using: ${cargo:Built-Using} +XB-X-Cargo-Built-Using: ${cargo:X-Cargo-Built-Using} +Description: Proxmox websocket tunneling helper + Proxmox websocket tunnel helper + . + This package contains a helper binary for tunnelling UNIX sockets over a + websocket connection diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..5661ef6 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,16 @@ +Copyright (C) 2021 Proxmox Server Solutions GmbH + +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 Affero General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +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 Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . diff --git a/debian/debcargo.toml b/debian/debcargo.toml new file mode 100644 index 0000000..dfe933e --- /dev/null +++ b/debian/debcargo.toml @@ -0,0 +1,13 @@ +overlay = "." +crate_src_path = ".." +maintainer = "Proxmox Support Team " + +[source] +vcs_git = "git://git.proxmox.com/git/proxmox-websocket-tunnel.git" +vcs_browser = "https://git.proxmox.com/?p=proxmox-websocket-tunnel.git" +section = "admin" + +[packages.bin] +description="""Proxmox websocket tunnel helper + +This package contains a helper binary for tunnelling UNIX sockets over a websocket connection""" -- 2.30.2