Skip to content
Snippets Groups Projects
Verified Commit 11a244be authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Implement patching

parent 25fa6a50
No related branches found
No related tags found
1 merge request!237WIP: Rust cookbook
...@@ -4,8 +4,9 @@ use cookbook::sha256::sha256_progress; ...@@ -4,8 +4,9 @@ use cookbook::sha256::sha256_progress;
use std::{ use std::{
env, env,
fs, fs,
path::Path, io::Write,
process::{self, Command}, path::{Path, PathBuf},
process::{self, Command, Stdio},
}; };
use termion::{color, style}; use termion::{color, style};
...@@ -57,7 +58,7 @@ fn run_command(mut command: process::Command) -> Result<(), String> { ...@@ -57,7 +58,7 @@ fn run_command(mut command: process::Command) -> Result<(), String> {
Ok(()) Ok(())
} }
fn fetch(source: &SourceRecipe, recipe_dir: &Path) -> Result<(), String> { fn fetch(recipe_dir: &Path, source: &SourceRecipe) -> Result<PathBuf, String> {
let source_dir = recipe_dir.join("source"); let source_dir = recipe_dir.join("source");
match source { match source {
SourceRecipe::Git { git, upstream, branch, rev } => { SourceRecipe::Git { git, upstream, branch, rev } => {
...@@ -130,7 +131,7 @@ fn fetch(source: &SourceRecipe, recipe_dir: &Path) -> Result<(), String> { ...@@ -130,7 +131,7 @@ fn fetch(source: &SourceRecipe, recipe_dir: &Path) -> Result<(), String> {
command.arg("submodule").arg("update").arg("--init").arg("--recursive"); command.arg("submodule").arg("update").arg("--init").arg("--recursive");
run_command(command)?; run_command(command)?;
}, },
SourceRecipe::Tar { tar, blake3, sha256 } => { SourceRecipe::Tar { tar, blake3, sha256, patches } => {
if ! source_dir.is_dir() { if ! source_dir.is_dir() {
// Download tar // Download tar
//TODO: replace wget //TODO: replace wget
...@@ -197,15 +198,77 @@ fn fetch(source: &SourceRecipe, recipe_dir: &Path) -> Result<(), String> { ...@@ -197,15 +198,77 @@ fn fetch(source: &SourceRecipe, recipe_dir: &Path) -> Result<(), String> {
command.arg("--verbose"); command.arg("--verbose");
command.arg("--file").arg(&source_tar); command.arg("--file").arg(&source_tar);
command.arg("--directory").arg(&source_dir_tmp); command.arg("--directory").arg(&source_dir_tmp);
command.arg("--strip-components").arg("1");
run_command(command)?; run_command(command)?;
// Apply patches
for patch_name in patches {
let patch_file = recipe_dir.join(&patch_name);
if ! patch_file.is_file() {
return Err(format!(
"failed to find patch file '{}'",
patch_file.display()
));
}
let patch = fs::read_to_string(&patch_file).map_err(|err| format!(
"failed to read patch file '{}': {}\n{:#?}",
patch_file.display(),
err,
err
))?;
let mut command = Command::new("patch");
command.arg("--directory").arg(&source_dir_tmp);
command.arg("--strip=1");
command.stdin(Stdio::piped());
let mut child = command.spawn().map_err(|err| format!(
"failed to spawn {:?}: {}\n{:#?}",
command,
err,
err
))?;
if let Some(ref mut stdin) = child.stdin {
stdin.write_all(patch.as_bytes()).map_err(|err| format!(
"failed to write stdin of {:?}: {}\n{:#?}",
command,
err,
err
))?;
} else {
return Err(format!(
"failed to find stdin of {:?}",
command
));
}
let status = child.wait().map_err(|err| format!(
"failed to run {:?}: {}\n{:#?}",
command,
err,
err
))?;
if ! status.success() {
return Err(format!(
"failed to run {:?}: exited with status {}",
command,
status
));
}
run_command(command)?;
}
// Move source.tmp to source atomically // Move source.tmp to source atomically
rename(&source_dir_tmp, &source_dir)?; rename(&source_dir_tmp, &source_dir)?;
} }
} }
} }
Ok(()) Ok(source_dir)
} }
fn cook(recipe_name: &str) -> Result<(), String> { fn cook(recipe_name: &str) -> Result<(), String> {
...@@ -240,7 +303,7 @@ fn cook(recipe_name: &str) -> Result<(), String> { ...@@ -240,7 +303,7 @@ fn cook(recipe_name: &str) -> Result<(), String> {
err err
))?; ))?;
fetch(&recipe.source, &recipe_dir).map_err(|err| format!( let source_dir = fetch(&recipe_dir, &recipe.source).map_err(|err| format!(
"failed to fetch: {}", "failed to fetch: {}",
err err
))?; ))?;
......
...@@ -26,6 +26,9 @@ pub enum SourceRecipe { ...@@ -26,6 +26,9 @@ pub enum SourceRecipe {
blake3: Option<String>, blake3: Option<String>,
/// The optional sha256 sum of the tar file. This is a slower alternative to a blake3 sum /// The optional sha256 sum of the tar file. This is a slower alternative to a blake3 sum
sha256: Option<String>, sha256: Option<String>,
/// A list of patch files to apply to the source
#[serde(default)]
patches: Vec<String>,
}, },
} }
...@@ -48,9 +51,6 @@ pub enum BuildRecipe { ...@@ -48,9 +51,6 @@ pub enum BuildRecipe {
pub struct Recipe { pub struct Recipe {
/// Specifies how to donload the source for this recipe /// Specifies how to donload the source for this recipe
pub source: SourceRecipe, pub source: SourceRecipe,
/// A list of patch files to apply to the source
#[serde(default)]
pub patches: Vec<String>,
/// Specifies how to build this recipe /// Specifies how to build this recipe
pub build: BuildRecipe, pub build: BuildRecipe,
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment