1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/*
* Copyright 2016-2018 Doug Goldstein <cardoe@cardoe.com>
*
* Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
* http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
* <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
* option. This file may not be copied, modified, or distributed
* except according to those terms.
*/
extern crate cargo;
extern crate time;
mod metadata;
use cargo::core::Workspace;
use cargo::util::{important_paths, CargoResult};
use cargo::{CliResult, Config};
use failure::format_err;
use std::collections::BTreeSet;
use std::fs::OpenOptions;
use std::io::Write;
use std::path::{Path, PathBuf};
use metadata::EbuildConfig;
/// Finds the root Cargo.toml of the workspace
fn workspace(config: &Config, manifest: impl AsRef<Path>) -> CargoResult<Workspace> {
let root = important_paths::find_root_manifest_for_wd(manifest.as_ref())?;
Workspace::new(&root, config)
}
fn parse_license<'a>(lic_str: &'a str) -> Vec<&'a str> {
lic_str
.split('/')
.flat_map(|l| l.split(" OR "))
.flat_map(|l| l.split(" AND "))
.map(str::trim)
.collect()
}
pub fn run(verbose: u32, quiet: bool, manifest_path: Option<PathBuf>) -> CliResult {
let mut cmd = cargo_metadata::MetadataCommand::new();
if let Some(path) = manifest_path {
cmd.manifest_path(path);
}
let metadata = cmd
.exec()
.map_err(|e| format_err!("cargo metadata failed: {}", e))?;
let mut crates = Vec::with_capacity(metadata.packages.len());
let mut licenses = BTreeSet::new();
for pkg in metadata.packages {
crates.push(format!("{}-{}\n", pkg.name, pkg.version));
if let Some(lic_list) = pkg.license.as_ref().map(|l| parse_license(&l)) {
for lic in lic_list.iter() {
licenses.insert(lic.to_string());
}
}
if pkg.license_file.is_some() {
println!("WARNING: {} uses a license-file, not handled", pkg.name);
}
}
// sort the crates
crates.sort();
// create a default Cargo config
let mut config = Config::default()?;
config.configure(
verbose,
Some(quiet),
/* color */
&None,
/* frozen */
false,
/* locked */
false,
/* offline */
false,
/* target dir */
&None,
/* unstable flags */
&[],
)?;
// Load the workspace and current package
let workspace = workspace(&config, &metadata.workspace_root)?;
let package = workspace.current()?;
let ebuild_data = EbuildConfig::from_package(package, crates, licenses);
// build up the ebuild path
let ebuild_path = PathBuf::from(format!("{}-{}.ebuild", package.name(), package.version()));
// Open the file where we'll write the ebuild
let mut file = OpenOptions::new()
.write(true)
.create(true)
.truncate(true)
.open(&ebuild_path)
.expect("failed to create ebuild");
// write the contents out
write!(
file,
include_str!("ebuild.template"),
description = ebuild_data.description.trim(),
homepage = ebuild_data.homepage.trim(),
license = ebuild_data.license.trim(),
crates = ebuild_data.crates.join(""),
cargo_ebuild_ver = env!("CARGO_PKG_VERSION"),
this_year = 1900 + time::now().tm_year,
)
.expect("unable to write ebuild to disk");
println!("Wrote: {}", ebuild_path.display());
Ok(())
}
|