Skip to main content

SourceTarball

Struct SourceTarball 

Source
pub struct SourceTarball {
    pub url: String,
    pub sha256: Option<String>,
}
Expand description

The published source tarball a Homebrew formula bump consumes (--url / --sha256).

The url is the deterministic GitHub source-archive URL for the cut’s tag. The sha256 is None during the pre-tag phases (dry-run / build preview): the tag archive the url points at is created only in the tag-once phase, after publish-all (ADR-0002 §2), so it cannot be fetched-and-hashed yet, and a local git archive is not byte-equal to GitHub’s served tarball — a wrong --sha256 is worse than none. The post-tag dist phase then fetches the pushed archive, hashes it, and threads the real Some(sha256) into the homebrew publish so the finalized formula carries a correct hash (no draft placeholder). See super::coordinator’s source_tarball / dist_phase.

Fields§

§url: String

The source tarball’s public URL (the GitHub tag archive).

§sha256: Option<String>

The tarball’s sha256. None in the pre-tag preview phases (brew would derive it from Self::url); Some(<64-hex>), computed from the pushed tag archive, in the post-tag dist phase that finalizes the formula.

Trait Implementations§

Source§

impl Clone for SourceTarball

Source§

fn clone(&self) -> SourceTarball

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SourceTarball

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for SourceTarball

Source§

impl PartialEq for SourceTarball

Source§

fn eq(&self, other: &SourceTarball) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for SourceTarball

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.