diff --git a/perlmod-macro/Cargo.toml b/perlmod-macro/Cargo.toml index 1a86e13..a8658d3 100644 --- a/perlmod-macro/Cargo.toml +++ b/perlmod-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "perlmod-macro" -version = "0.3.2" +version = "0.4.0" authors = ["Wolfgang Bumiller "] edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/perlmod-macro/debian/changelog b/perlmod-macro/debian/changelog index 185777d..1ea392c 100644 --- a/perlmod-macro/debian/changelog +++ b/perlmod-macro/debian/changelog @@ -1,3 +1,15 @@ +rust-perlmod-macro (0.4.0-1) stable; urgency=medium + + * drop toml dependency + + * use CARGO_PKG_NAME environment variable instead of parsing Cargo.toml for + it + + * expand environment variables in lib, name and file attribute of package + attributes + + -- Proxmox Support Team Wed, 13 Oct 2021 11:29:59 +0200 + rust-perlmod-macro (0.3.2-1) stable; urgency=medium * add newlines to errors passed to croak_sv diff --git a/perlmod-macro/debian/control b/perlmod-macro/debian/control index 157a189..ad53936 100644 --- a/perlmod-macro/debian/control +++ b/perlmod-macro/debian/control @@ -10,8 +10,7 @@ Build-Depends: debhelper (>= 12), librust-proc-macro2-1+default-dev , librust-quote-1+default-dev , librust-syn-1+default-dev , - librust-syn-1+full-dev , - librust-toml-0.5+default-dev (>= 0.5.5-~~) + librust-syn-1+full-dev Maintainer: Debian Rust Maintainers Standards-Version: 4.5.1 Vcs-Git: @@ -27,16 +26,15 @@ Depends: librust-proc-macro2-1+default-dev, librust-quote-1+default-dev, librust-syn-1+default-dev, - librust-syn-1+full-dev, - librust-toml-0.5+default-dev (>= 0.5.5-~~) + librust-syn-1+full-dev Provides: librust-perlmod-macro+default-dev (= ${binary:Version}), librust-perlmod-macro-0-dev (= ${binary:Version}), librust-perlmod-macro-0+default-dev (= ${binary:Version}), - librust-perlmod-macro-0.3-dev (= ${binary:Version}), - librust-perlmod-macro-0.3+default-dev (= ${binary:Version}), - librust-perlmod-macro-0.3.2-dev (= ${binary:Version}), - librust-perlmod-macro-0.3.2+default-dev (= ${binary:Version}) + librust-perlmod-macro-0.4-dev (= ${binary:Version}), + librust-perlmod-macro-0.4+default-dev (= ${binary:Version}), + librust-perlmod-macro-0.4.0-dev (= ${binary:Version}), + librust-perlmod-macro-0.4.0+default-dev (= ${binary:Version}) Description: Perl package macros to create perl package bindings from rust at compile time - Rust source code This package contains the source for the Rust perlmod-macro crate, packaged by debcargo for use with cargo and dh-cargo. diff --git a/perlmod/Cargo.toml b/perlmod/Cargo.toml index dd73fd6..fcf8ac5 100644 --- a/perlmod/Cargo.toml +++ b/perlmod/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "perlmod" -version = "0.5.3" +version = "0.6.0" authors = ["Wolfgang Bumiller "] edition = "2018" build = "build.rs" @@ -17,10 +17,11 @@ maintenance = { status = "experimental" } [dependencies] bitflags = "1.2.1" libc = "0.2" -perlmod-macro = { path = "../perlmod-macro", optional = true, version = "0.3.2" } serde = { version = "1.0", features = ["derive"] } thiserror = "1.0" +perlmod-macro = { path = "../perlmod-macro", optional = true, version = "0.4.0" } + [features] default = ["exporter"] exporter = ["perlmod-macro"] diff --git a/perlmod/debian/changelog b/perlmod/debian/changelog index 8e81983..91370f0 100644 --- a/perlmod/debian/changelog +++ b/perlmod/debian/changelog @@ -1,3 +1,19 @@ +rust-perlmod (0.6.0-1) stable; urgency=medium + + * update to perlmod-macro 0.4.0 + + * impl Clone for Value, Scalar, Hash, Array + + * add RawValue as a raw value *de*serialization helper + + * perlmod::to_value now will NOT copy perl values anymore, instead, they + will be serialized as references now + + * perlmod::from_value will now cause perl values to NOT be copied anymore + either, instead, they will be references + + -- Proxmox Support Team Wed, 13 Oct 2021 11:30:30 +0200 + rust-perlmod (0.5.3-3) stable; urgency=medium * improve deserialization of 'undef' diff --git a/perlmod/debian/control b/perlmod/debian/control index be3dca0..421688b 100644 --- a/perlmod/debian/control +++ b/perlmod/debian/control @@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 12), librust-bitflags-1+default-dev (>= 1.2.1-~~) , librust-cc-1+default-dev (>= 1.0.46-~~) , librust-libc-0.2+default-dev , - librust-perlmod-macro-0.3+default-dev (>= 0.3.2-~~) , + librust-perlmod-macro-0.4+default-dev , librust-serde-1+default-dev , librust-serde-1+derive-dev , librust-thiserror-1+default-dev , @@ -36,8 +36,8 @@ Recommends: librust-perlmod+exporter-dev (= ${binary:Version}) Provides: librust-perlmod-0-dev (= ${binary:Version}), - librust-perlmod-0.5-dev (= ${binary:Version}), - librust-perlmod-0.5.3-dev (= ${binary:Version}) + librust-perlmod-0.6-dev (= ${binary:Version}), + librust-perlmod-0.6.0-dev (= ${binary:Version}) Description: Ffi & serde code for limited interaction with perl code - Rust source code This package contains the source for the Rust perlmod crate, packaged by debcargo for use with cargo and dh-cargo. @@ -48,19 +48,19 @@ Multi-Arch: same Depends: ${misc:Depends}, librust-perlmod-dev (= ${binary:Version}), - librust-perlmod-macro-0.3+default-dev (>= 0.3.2-~~) + librust-perlmod-macro-0.4+default-dev Provides: librust-perlmod+default-dev (= ${binary:Version}), librust-perlmod+perlmod-macro-dev (= ${binary:Version}), librust-perlmod-0+exporter-dev (= ${binary:Version}), librust-perlmod-0+default-dev (= ${binary:Version}), librust-perlmod-0+perlmod-macro-dev (= ${binary:Version}), - librust-perlmod-0.5+exporter-dev (= ${binary:Version}), - librust-perlmod-0.5+default-dev (= ${binary:Version}), - librust-perlmod-0.5+perlmod-macro-dev (= ${binary:Version}), - librust-perlmod-0.5.3+exporter-dev (= ${binary:Version}), - librust-perlmod-0.5.3+default-dev (= ${binary:Version}), - librust-perlmod-0.5.3+perlmod-macro-dev (= ${binary:Version}) + librust-perlmod-0.6+exporter-dev (= ${binary:Version}), + librust-perlmod-0.6+default-dev (= ${binary:Version}), + librust-perlmod-0.6+perlmod-macro-dev (= ${binary:Version}), + librust-perlmod-0.6.0+exporter-dev (= ${binary:Version}), + librust-perlmod-0.6.0+default-dev (= ${binary:Version}), + librust-perlmod-0.6.0+perlmod-macro-dev (= ${binary:Version}) Description: Ffi & serde code for limited interaction with perl code - feature "exporter" and 2 more This metapackage enables feature "exporter" for the Rust perlmod crate, by pulling in any additional dependencies needed by that feature.