[][src]Struct rpm::RPMBuilder

pub struct RPMBuilder { /* fields omitted */ }

Builder pattern for a full rpm file.

Prefered method of creating a rpm file.

Implementations

impl RPMBuilder[src]

pub fn new(
    name: &str,
    version: &str,
    license: &str,
    arch: &str,
    desc: &str
) -> Self
[src]

pub fn epoch(self, epoch: i32) -> Self[src]

pub fn compression(self, comp: Compressor) -> Self[src]

pub fn add_changelog_entry<E, F>(self, author: E, entry: F, time: i32) -> Self where
    E: Into<String>,
    F: Into<String>, 
[src]

pub fn with_file<T, P>(self, source: P, options: T) -> Result<Self, RPMError> where
    P: AsRef<Path>,
    T: Into<RPMFileOptions>, 
[src]

pub fn pre_install_script<T: Into<String>>(self, content: T) -> Self[src]

pub fn post_install_script<T: Into<String>>(self, content: T) -> Self[src]

pub fn pre_uninstall_script<T: Into<String>>(self, content: T) -> Self[src]

pub fn post_uninstall_script<T: Into<String>>(self, content: T) -> Self[src]

pub fn release(self, release: u16) -> Self[src]

pub fn requires(self, dep: Dependency) -> Self[src]

pub fn obsoletes(self, dep: Dependency) -> Self[src]

pub fn conflicts(self, dep: Dependency) -> Self[src]

pub fn provides(self, dep: Dependency) -> Self[src]

pub fn build(self) -> Result<RPMPackage, RPMError>[src]

build without a signature

ignores a present key, if any

pub fn build_and_sign<S>(self, signer: S) -> Result<RPMPackage, RPMError> where
    S: Signing<RSA>, 
[src]

use an external signer to sing and build

See signature::Signing for more details.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,