mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
feat: add name.scope and name.name apis
Some checks are pending
Debug / Get build version (push) Waiting to run
Debug / Build for linux-x86_64 (push) Blocked by required conditions
Debug / Build for macos-aarch64 (push) Blocked by required conditions
Debug / Build for macos-x86_64 (push) Blocked by required conditions
Debug / Build for windows-x86_64 (push) Blocked by required conditions
Test & Lint / lint (push) Waiting to run
Some checks are pending
Debug / Get build version (push) Waiting to run
Debug / Build for linux-x86_64 (push) Blocked by required conditions
Debug / Build for macos-aarch64 (push) Blocked by required conditions
Debug / Build for macos-x86_64 (push) Blocked by required conditions
Debug / Build for windows-x86_64 (push) Blocked by required conditions
Test & Lint / lint (push) Waiting to run
This commit is contained in:
parent
e8c3a66524
commit
6f4c7137c0
5 changed files with 43 additions and 13 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -4,4 +4,5 @@
|
|||
cobertura.xml
|
||||
tarpaulin-report.html
|
||||
build_rs_cov.profraw
|
||||
registry/data
|
||||
registry/data
|
||||
data
|
|
@ -181,7 +181,7 @@ impl AddCommand {
|
|||
};
|
||||
|
||||
let alias = self.alias.unwrap_or_else(|| match &self.name {
|
||||
AnyPackageIdentifier::PackageName(versioned) => versioned.0.as_str().1.to_string(),
|
||||
AnyPackageIdentifier::PackageName(versioned) => versioned.0.name().to_string(),
|
||||
AnyPackageIdentifier::Url((url, _)) => url
|
||||
.path
|
||||
.to_string()
|
||||
|
@ -189,7 +189,7 @@ impl AddCommand {
|
|||
.last()
|
||||
.map(|s| s.to_string())
|
||||
.unwrap_or(url.path.to_string()),
|
||||
AnyPackageIdentifier::Workspace(versioned) => versioned.0.as_str().1.to_string(),
|
||||
AnyPackageIdentifier::Workspace(versioned) => versioned.0.name().to_string(),
|
||||
AnyPackageIdentifier::Path(path) => path
|
||||
.file_name()
|
||||
.map(|s| s.to_string_lossy().to_string())
|
||||
|
|
11
src/graph.rs
11
src/graph.rs
|
@ -49,18 +49,13 @@ impl DependencyGraphNode {
|
|||
let (name, version) = package_id.parts();
|
||||
|
||||
if self.pkg_ref.is_wally_package() {
|
||||
return PathBuf::from(format!(
|
||||
"{}_{}@{}",
|
||||
name.as_str().0,
|
||||
name.as_str().1,
|
||||
version
|
||||
))
|
||||
.join(name.as_str().1);
|
||||
return PathBuf::from(format!("{}_{}@{}", name.scope(), name.name(), version))
|
||||
.join(name.name());
|
||||
}
|
||||
|
||||
PathBuf::from(name.escaped())
|
||||
.join(version.to_string())
|
||||
.join(name.as_str().1)
|
||||
.join(name.name())
|
||||
}
|
||||
|
||||
/// Returns the folder to store the contents of the package in starting from the project's package directory
|
||||
|
|
28
src/names.rs
28
src/names.rs
|
@ -146,6 +146,24 @@ impl PackageNames {
|
|||
pub fn from_escaped(s: &str) -> Result<Self, errors::PackageNamesError> {
|
||||
PackageNames::from_str(s.replacen('+', "/", 1).as_str())
|
||||
}
|
||||
|
||||
/// Returns the scope of the package name
|
||||
pub fn scope(&self) -> &str {
|
||||
match self {
|
||||
PackageNames::Pesde(name) => name.scope(),
|
||||
#[cfg(feature = "wally-compat")]
|
||||
PackageNames::Wally(name) => name.scope(),
|
||||
}
|
||||
}
|
||||
|
||||
/// Returns the name of the package name
|
||||
pub fn name(&self) -> &str {
|
||||
match self {
|
||||
PackageNames::Pesde(name) => name.name(),
|
||||
#[cfg(feature = "wally-compat")]
|
||||
PackageNames::Wally(name) => name.name(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Display for PackageNames {
|
||||
|
@ -251,6 +269,16 @@ pub mod wally {
|
|||
pub fn escaped(&self) -> String {
|
||||
format!("wally#{}+{}", self.0, self.1)
|
||||
}
|
||||
|
||||
/// Returns the scope of the package name
|
||||
pub fn scope(&self) -> &str {
|
||||
&self.0
|
||||
}
|
||||
|
||||
/// Returns the name of the package name
|
||||
pub fn name(&self) -> &str {
|
||||
&self.1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -211,8 +211,14 @@ impl PackageSource for PesdePackageSource {
|
|||
let url = config
|
||||
.download()
|
||||
.replace("{PACKAGE}", &urlencoding::encode(&id.name().to_string()))
|
||||
.replace("{PACKAGE_VERSION}", &urlencoding::encode(&id.version_id().version().to_string()))
|
||||
.replace("{PACKAGE_TARGET}", &urlencoding::encode(&id.version_id().target().to_string()));
|
||||
.replace(
|
||||
"{PACKAGE_VERSION}",
|
||||
&urlencoding::encode(&id.version_id().version().to_string()),
|
||||
)
|
||||
.replace(
|
||||
"{PACKAGE_TARGET}",
|
||||
&urlencoding::encode(&id.version_id().target().to_string()),
|
||||
);
|
||||
|
||||
let mut request = reqwest.get(&url).header(ACCEPT, "application/octet-stream");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue