From 57565a506182629bad8ca10836f66cae18399765 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Tue, 17 Dec 2019 16:22:33 +0100 Subject: [PATCH] proxmox-sortable-macro: initial packaging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Grünbichler --- .../debian/cargo-checksum.json | 1 + proxmox-sortable-macro/debian/changelog | 5 +++ proxmox-sortable-macro/debian/compat | 1 + proxmox-sortable-macro/debian/control | 35 +++++++++++++++++++ proxmox-sortable-macro/debian/copyright | 16 +++++++++ proxmox-sortable-macro/debian/rules | 3 ++ 6 files changed, 61 insertions(+) create mode 100644 proxmox-sortable-macro/debian/cargo-checksum.json create mode 100644 proxmox-sortable-macro/debian/changelog create mode 100644 proxmox-sortable-macro/debian/compat create mode 100644 proxmox-sortable-macro/debian/control create mode 100644 proxmox-sortable-macro/debian/copyright create mode 100755 proxmox-sortable-macro/debian/rules diff --git a/proxmox-sortable-macro/debian/cargo-checksum.json b/proxmox-sortable-macro/debian/cargo-checksum.json new file mode 100644 index 00000000..b0eedf17 --- /dev/null +++ b/proxmox-sortable-macro/debian/cargo-checksum.json @@ -0,0 +1 @@ +{"package":"proxmox-sortable-macro","files":{}} diff --git a/proxmox-sortable-macro/debian/changelog b/proxmox-sortable-macro/debian/changelog new file mode 100644 index 00000000..cb0095c5 --- /dev/null +++ b/proxmox-sortable-macro/debian/changelog @@ -0,0 +1,5 @@ +rust-proxmox-sortable-macro (0.1.0) proxmox-rust; urgency=medium + + * Initial packaging. + + -- Proxmox Support Team Tue, 17 Dec 2019 14:47:44 +0100 diff --git a/proxmox-sortable-macro/debian/compat b/proxmox-sortable-macro/debian/compat new file mode 100644 index 00000000..48082f72 --- /dev/null +++ b/proxmox-sortable-macro/debian/compat @@ -0,0 +1 @@ +12 diff --git a/proxmox-sortable-macro/debian/control b/proxmox-sortable-macro/debian/control new file mode 100644 index 00000000..6b6bf888 --- /dev/null +++ b/proxmox-sortable-macro/debian/control @@ -0,0 +1,35 @@ +Source: rust-proxmox-sortable-macro +Section: rust +Priority: optional +Build-Depends: debhelper (>= 12), + dh-cargo (>= 21~), + cargo:native , + rustc:native , + libstd-rust-dev , + librust-failure-0.1+default-dev , + librust-proc-macro2-1.0+default-dev , + librust-quote-1.0+default-dev , + librust-syn-1.0+full-dev , + librust-syn-1.0+visit-mut-dev , +Maintainer: Proxmox Support Team +Standards-Version: 4.4.1 + +Package: librust-proxmox-sortable-macro-dev +Architecture: any +Depends: + ${misc:Depends}, + librust-failure-0.1+default-dev, + librust-proc-macro2-1.0+default-dev, + librust-quote-1.0+default-dev, + librust-syn-1.0+full-dev, + librust-syn-1.0+visit-mut-dev, +Provides: + librust-proxmox-sortable-macro+default-dev (= ${binary:Version}), + librust-proxmox-sortable-macro-0-dev (= ${binary:Version}), + librust-proxmox-sortable-macro-0+default-dev (= ${binary:Version}), + librust-proxmox-sortable-macro-0.1-dev (= ${binary:Version}), + librust-proxmox-sortable-macro-0.1+default-dev (= ${binary:Version}), + librust-proxmox-sortable-macro-0.1.0-dev (= ${binary:Version}), + librust-proxmox-sortable-macro-0.1.0+default-dev (= ${binary:Version}), +Description: Proxmox Sortable Macro - Rust source code + This package contains the source for the Rust proxmox-sortable-macro crate. diff --git a/proxmox-sortable-macro/debian/copyright b/proxmox-sortable-macro/debian/copyright new file mode 100644 index 00000000..ae43835f --- /dev/null +++ b/proxmox-sortable-macro/debian/copyright @@ -0,0 +1,16 @@ +Copyright (C) 2019 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/proxmox-sortable-macro/debian/rules b/proxmox-sortable-macro/debian/rules new file mode 100755 index 00000000..044c1c21 --- /dev/null +++ b/proxmox-sortable-macro/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh $@ --buildsystem cargo