1 Commits

Author SHA1 Message Date
d2e8078c70 read global package.mask
All checks were successful
Gentoo Utils / build-oci-image (pull_request) Successful in 4s
Gentoo Utils / build (pull_request) Successful in 32s
2025-12-13 04:53:32 +00:00
4 changed files with 39 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ use crate::{
atom::{self, Atom},
repo::{
ebuild::{Depend, Eapi, Ebuild, Eclass, License, SrcUri},
profile::Profile,
profile::{LineBasedFileExpr, Profile},
},
useflag::IUseFlag,
};
@@ -43,6 +43,8 @@ pub struct Repo {
path: PathBuf,
#[get(kind = "deref")]
name: String,
#[get(kind = "deref")]
package_mask: Vec<Atom>,
}
#[derive(Debug, Clone, Get)]
@@ -69,9 +71,19 @@ impl Repo {
Err(e) => return Err(Error::Io(name_path, e)),
};
let package_mask_path = path.as_ref().join("profiles/package.mask");
let package_mask =
match fs::read_to_string(&package_mask_path).map(|s| read_package_mask(&s)) {
Ok(Ok(package_mask)) => package_mask,
Ok(Err(e)) => return Err(e),
Err(e) if matches!(e.kind(), io::ErrorKind::NotFound) => Vec::new(),
Err(e) => return Err(Error::Io(package_mask_path, e)),
};
Ok(Self {
path: path.as_ref().to_path_buf(),
name,
package_mask,
})
}
@@ -340,6 +352,20 @@ fn read_idepend(input: &str) -> Option<Result<Vec<Depend<Atom>>, Error>> {
Some(parse_depends(line))
}
fn read_package_mask(input: &str) -> Result<Vec<Atom>, Error> {
Ok(profile::LineBasedFileExpr::<Atom>::parser()
.separated_by_with_opt_trailing(ascii_whitespace1())
.many()
.parse_finished(InputIter::new(input))
.map_err(|it| Error::Parser(it.rest().to_string()))?
.into_iter()
.filter_map(|expr| match expr {
LineBasedFileExpr::Comment => None,
LineBasedFileExpr::Expr(atom) => Some(atom),
})
.collect())
}
fn parse_depends(line: &str) -> Result<Vec<Depend<Atom>>, Error> {
Depend::<Atom>::parser()
.separated_by(ascii_whitespace1())

View File

@@ -32,7 +32,7 @@ mod parsers;
mod useflags;
#[derive(Debug, Clone)]
enum LineBasedFileExpr<T> {
pub(super) enum LineBasedFileExpr<T> {
Comment,
Expr(T),
}

View File

@@ -0,0 +1 @@
app-editors/vim

View File

@@ -8,6 +8,16 @@ fn main() {
.nth(1)
.expect("expected path to mockrepo as first argument");
let repo = Repo::new(&repo_path).expect("failed to read repo");
let global_package_mask = repo
.package_mask()
.iter()
.map(Atom::to_string)
.sorted()
.collect::<Vec<_>>();
assert_eq!(global_package_mask, vec!["app-editors/vim"]);
let profile = repo
.evaluate_profile("gentoo-desktop")
.expect("failed to evaluate profile");