Changeset 879 for rpmbuild-bot


Ignore:
Timestamp:
Oct 31, 2016, 6:07:52 PM (9 years ago)
Author:
dmik
Message:

rpmbuild-bot: Fix docs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • rpmbuild-bot/rpmbuild-bot.sh

    r867 r879  
    1717# in the same directory to set up the environment and control the build
    1818# process. The main purpose of this script is to build RPM packages for a
    19 # specific distribution channel maintaining distribution-siecific rules.
     19# specific distribution channel maintaining distribution-specific rules.
    2020#
    2121# Usage
     
    3030# .spec is assumed). The spec file is searched in the SPECS directory of the
    3131# rpmbuild tree (usually $USER/rpmbuild/SPECS, rpmbuild --eval='%_specdir'
    32 # will show the exact location). This may be overriden by giving a spec file
     32# will show the exact location). This may be overridden by giving a spec file
    3333# with a path specification.
    3434#
     
    5454#
    5555# The "build" command will fail if the log directory contains files from a
    56 # successfull run of another "build" command for this package. This is to
     56# successful run of another "build" command for this package. This is to
    5757# prevent overwriting successfully built packages that are not yet uploaded to
    5858# the distribution repository (see the "upload" command). You should either
     
    6565# exists, all files in it are assumed to be auxiliary source files used by the
    6666# .spec file via SourceN: directives. These files will be automatically copied
    67 # to the SOURCES directory in the rpmbuild tree befure starting the build
     67# to the SOURCES directory in the rpmbuild tree before starting the build
    6868# process.
    6969#
     
    8585#
    8686#   prep    Execute the %prep section of the spec file only.
    87 #   build   Execute the %build section only (requres %prep to be executed
     87#   build   Execute the %build section only (requires %prep to be executed
    8888#           before). May be run multiple times.
    89 #   install Execute the %install sectuion only (requires "prep" and "build"
     89#   install Execute the %install section only (requires "prep" and "build"
    9090#           to be executed before). May be run multiple times.
    9191#   pack    Create the RPM packages (requires "prep", "build" and "install"
     
    113113# (usually experimental or similar).
    114114#
    115 # The upload command also requires the spec file to be under SVN vesrion control
    116 # and will try to commit it before uploading the RPMs to the repository with the
     115# The upload command also requires the spec file to be under SVN version control
     116# and will try to commit it after uploading the RPMs to the repository with the
    117117# automatic commit message that says "spec: PROJECT: Release version VERSION."
    118118# (where PROJECT is the spec file name and VERSION is the full version,
    119 # excluding the distribution mark, as specified by the spec file). If the commit
    120 # operation fails, uploading will be aborted. This to ensure that the spec file
    121 # are published at the same time the RPMs are published - to guarantee their
    122 # consisnency and simplify further maintenance. Note that the auxiliary source
    123 # directory named SPEC and located near the spec file (see the "build" command),
    124 # if it exists, will also be committed.
     119# excluding the distribution mark, as specified by the spec file).This to ensure
     120# that the spec file is published at the same time the RPMs are published - to
     121# guarantee their consistency and simplify further maintenance. Note that the
     122# auxiliary source directory named SPEC and located near the spec file (see the
     123# "build" command), if it exists, will also be committed. If the spec file is
     124# not under version control, the "upload" command will fail.
    125125#
    126126# Note that the "upload" command needs log files from the "build" command
     
    183183#
    184184# Note that the log files from the "build" and "upload" commands are also
    185 # removed by this command upon sucessful package removal.
     185# removed by this command upon successful package removal.
    186186#
    187187# Return value
Note: See TracChangeset for help on using the changeset viewer.