Skip to content

Commit c8ae267

Browse files
committed
Auto merge of #8325 - kerkmann:license-field-as-environment-variable, r=joshtriplett
Adding environment variable CARGO_PKG_LICENSE Fixes #8024
2 parents b80fc85 + 1e800ab commit c8ae267

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/cargo/core/compiler/compilation.rs

+4
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,10 @@ impl<'cfg> Compilation<'cfg> {
293293
"CARGO_PKG_REPOSITORY",
294294
metadata.repository.as_ref().unwrap_or(&String::new()),
295295
)
296+
.env(
297+
"CARGO_PKG_LICENSE",
298+
metadata.license.as_ref().unwrap_or(&String::new()),
299+
)
296300
.env("CARGO_PKG_AUTHORS", &pkg.authors().join(":"))
297301
.cwd(pkg.root());
298302
Ok(cmd)

src/doc/src/reference/environment-variables.md

+1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ let version = env!("CARGO_PKG_VERSION");
184184
* `CARGO_PKG_DESCRIPTION` — The description from the manifest of your package.
185185
* `CARGO_PKG_HOMEPAGE` — The home page from the manifest of your package.
186186
* `CARGO_PKG_REPOSITORY` — The repository from the manifest of your package.
187+
* `CARGO_PKG_LICENSE` — The license from the manifest of your package.
187188
* `CARGO_CRATE_NAME` — The name of the crate that is currently being compiled.
188189
* `CARGO_BIN_NAME` — The name of the binary that is currently being compiled (if it is a binary). This name does not include any file extension, such as `.exe`.
189190
* `OUT_DIR` — If the package has a build script, this is set to the folder where the build

tests/testsuite/build.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1230,6 +1230,7 @@ fn crate_env_vars() {
12301230
homepage = "https://example.com"
12311231
repository = "https://example.com/repo.git"
12321232
authors = ["[email protected]"]
1233+
license = "MIT OR Apache-2.0"
12331234
12341235
[[bin]]
12351236
name = "foo-bar"
@@ -1251,6 +1252,7 @@ fn crate_env_vars() {
12511252
static PKG_NAME: &'static str = env!("CARGO_PKG_NAME");
12521253
static HOMEPAGE: &'static str = env!("CARGO_PKG_HOMEPAGE");
12531254
static REPOSITORY: &'static str = env!("CARGO_PKG_REPOSITORY");
1255+
static LICENSE: &'static str = env!("CARGO_PKG_LICENSE");
12541256
static DESCRIPTION: &'static str = env!("CARGO_PKG_DESCRIPTION");
12551257
static BIN_NAME: &'static str = env!("CARGO_BIN_NAME");
12561258
static CRATE_NAME: &'static str = env!("CARGO_CRATE_NAME");
@@ -1267,6 +1269,7 @@ fn crate_env_vars() {
12671269
assert_eq!("foo_bar", CRATE_NAME);
12681270
assert_eq!("https://example.com", HOMEPAGE);
12691271
assert_eq!("https://example.com/repo.git", REPOSITORY);
1272+
assert_eq!("MIT OR Apache-2.0", LICENSE);
12701273
assert_eq!("This is foo", DESCRIPTION);
12711274
let s = format!("{}.{}.{}-{}", VERSION_MAJOR,
12721275
VERSION_MINOR, VERSION_PATCH, VERSION_PRE);

0 commit comments

Comments
 (0)