add meson support

This commit is contained in:
John Turner
2025-11-15 21:08:39 +00:00
parent c0bd0c9efd
commit fdf1f09d6f
7 changed files with 63 additions and 212 deletions

View File

@@ -1,10 +0,0 @@
use gentoo_utils::ebuild::repo::Repo;
#[test]
fn test_read_repo() {
let repo = Repo::new("/var/db/repos/gentoo");
for category in repo.categories().unwrap().map(|cat| cat.unwrap()) {
for _ in category.ebuilds().unwrap().map(|ebuild| ebuild.unwrap()) {}
}
}