access-control: bump to 0.1.0-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
4197c0e26e
commit
c547ea07ae
5
proxmox-access-control/debian/changelog
Normal file
5
proxmox-access-control/debian/changelog
Normal file
@ -0,0 +1,5 @@
|
||||
rust-proxmox-access-control (0.1.0-1) bookworm; urgency=medium
|
||||
|
||||
* initial packaging
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Wed, 19 Jun 2024 14:44:26 +0200
|
68
proxmox-access-control/debian/control
Normal file
68
proxmox-access-control/debian/control
Normal file
@ -0,0 +1,68 @@
|
||||
Source: rust-proxmox-access-control
|
||||
Section: rust
|
||||
Priority: optional
|
||||
Build-Depends: debhelper (>= 12),
|
||||
dh-cargo (>= 25),
|
||||
cargo:native <!nocheck>,
|
||||
rustc:native (>= 1.70) <!nocheck>,
|
||||
libstd-rust-dev <!nocheck>,
|
||||
librust-anyhow-1+default-dev <!nocheck>,
|
||||
librust-proxmox-auth-api-0.4+api-types-dev <!nocheck>,
|
||||
librust-proxmox-auth-api-0.4+default-dev <!nocheck>,
|
||||
librust-proxmox-schema-3+default-dev (>= 3.1.1-~~) <!nocheck>,
|
||||
librust-proxmox-time-1+default-dev (>= 1.1.6-~~) <!nocheck>,
|
||||
librust-serde-1+default-dev <!nocheck>
|
||||
Maintainer: Proxmox Support Team <support@proxmox.com>
|
||||
Standards-Version: 4.6.2
|
||||
Vcs-Git: git://git.proxmox.com/git/proxmox.git
|
||||
Vcs-Browser: https://git.proxmox.com/?p=proxmox.git
|
||||
Homepage: https://proxmox.com
|
||||
X-Cargo-Crate: proxmox-access-control
|
||||
Rules-Requires-Root: no
|
||||
|
||||
Package: librust-proxmox-access-control-dev
|
||||
Architecture: any
|
||||
Multi-Arch: same
|
||||
Depends:
|
||||
${misc:Depends},
|
||||
librust-anyhow-1+default-dev,
|
||||
librust-proxmox-auth-api-0.4+api-types-dev,
|
||||
librust-proxmox-auth-api-0.4+default-dev,
|
||||
librust-proxmox-schema-3+default-dev (>= 3.1.1-~~),
|
||||
librust-proxmox-time-1+default-dev (>= 1.1.6-~~),
|
||||
librust-serde-1+default-dev
|
||||
Suggests:
|
||||
librust-proxmox-access-control+impl-dev (= ${binary:Version})
|
||||
Provides:
|
||||
librust-proxmox-access-control+default-dev (= ${binary:Version}),
|
||||
librust-proxmox-access-control-0-dev (= ${binary:Version}),
|
||||
librust-proxmox-access-control-0+default-dev (= ${binary:Version}),
|
||||
librust-proxmox-access-control-0.1-dev (= ${binary:Version}),
|
||||
librust-proxmox-access-control-0.1+default-dev (= ${binary:Version}),
|
||||
librust-proxmox-access-control-0.1.0-dev (= ${binary:Version}),
|
||||
librust-proxmox-access-control-0.1.0+default-dev (= ${binary:Version})
|
||||
Description: Collection of utilities to implement access control management - Rust source code
|
||||
Source code for Debianized Rust crate "proxmox-access-control"
|
||||
|
||||
Package: librust-proxmox-access-control+impl-dev
|
||||
Architecture: any
|
||||
Multi-Arch: same
|
||||
Depends:
|
||||
${misc:Depends},
|
||||
librust-proxmox-access-control-dev (= ${binary:Version}),
|
||||
librust-nix-0.26+default-dev (>= 0.26.1-~~),
|
||||
librust-openssl-0.10+default-dev,
|
||||
librust-proxmox-product-config-0.2+default-dev,
|
||||
librust-proxmox-router-2+default-dev (>= 2.1.3-~~),
|
||||
librust-proxmox-section-config-2+default-dev,
|
||||
librust-proxmox-shared-memory-0.3+default-dev,
|
||||
librust-proxmox-sys-0.5+crypt-dev (>= 0.5.5-~~),
|
||||
librust-proxmox-sys-0.5+default-dev (>= 0.5.5-~~),
|
||||
librust-serde-json-1+default-dev
|
||||
Provides:
|
||||
librust-proxmox-access-control-0+impl-dev (= ${binary:Version}),
|
||||
librust-proxmox-access-control-0.1+impl-dev (= ${binary:Version}),
|
||||
librust-proxmox-access-control-0.1.0+impl-dev (= ${binary:Version})
|
||||
Description: Collection of utilities to implement access control management - feature "impl"
|
||||
This metapackage enables feature "impl" for the Rust proxmox-access-control
|
||||
crate, by pulling in any additional dependencies needed by that feature.
|
18
proxmox-access-control/debian/copyright
Normal file
18
proxmox-access-control/debian/copyright
Normal file
@ -0,0 +1,18 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
|
||||
Files:
|
||||
*
|
||||
Copyright: 2024 Proxmox Server Solutions GmbH <support@proxmox.com>
|
||||
License: AGPL-3.0-or-later
|
||||
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 <https://www.gnu.org/licenses/>.
|
7
proxmox-access-control/debian/debcargo.toml
Normal file
7
proxmox-access-control/debian/debcargo.toml
Normal file
@ -0,0 +1,7 @@
|
||||
overlay = "."
|
||||
crate_src_path = ".."
|
||||
maintainer = "Proxmox Support Team <support@proxmox.com>"
|
||||
|
||||
[source]
|
||||
vcs_git = "git://git.proxmox.com/git/proxmox.git"
|
||||
vcs_browser = "https://git.proxmox.com/?p=proxmox.git"
|
1
proxmox-access-control/debian/source/format
Normal file
1
proxmox-access-control/debian/source/format
Normal file
@ -0,0 +1 @@
|
||||
3.0 (native)
|
Loading…
Reference in New Issue
Block a user