X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=tools%2Fbackport-dsc;h=eb757fcd70a4549c98b705d72c8c4e9ff8fa0070;hb=e5a068e22abff1741d8a0fb9bb214227fefcc1fc;hp=f6251c60cf93f0eb0ee26f517c3a06328f6c3c20;hpb=5d8ae63cc7bf0117c74232192de73430b25947b0;p=neurodebian.git diff --git a/tools/backport-dsc b/tools/backport-dsc index f6251c6..eb757fc 100755 --- a/tools/backport-dsc +++ b/tools/backport-dsc @@ -67,7 +67,7 @@ for format 3.0 (quilt) source packages) and allow modification of debian/control via arbitrary 'sed' expressions. Backport relevant patches can be embedded in source packages for use with -backport-dsc. The distribution name (see --target-dsitribution) serves as an +backport-dsc. The distribution name (see --target-distribution) serves as an identifier to search for patches in the source package that shall be applied for a particular distribution. For packages using format the 3.0 (quilt), backport-dsc will look for debian/patches/series- and append it to @@ -108,7 +108,7 @@ Options: --mod-control sed expression to modify debian/control. The option can be given multiple - times and all expressions wil be passed to sed in the order of appearance. + times and all expressions will be passed to sed in the order of appearance. This can be used to, e.g. change build or runtime dependencies. --no-backport-patches @@ -124,7 +124,7 @@ Options: backport and identify herself as the maintainer. -s , --version-suffix - Version suffix that will be appended to the orginal source package version, + Version suffix that will be appended to the original source package version, ideally indicating the backport target distribution. The resulting package version will follow this schema: @@ -158,7 +158,7 @@ backport-dsc -d myown-backports -v mo2010 examplepkg_1.2.3-4.dsc Create backport for some custom distribution with custom version suffix. backport-dsc -d ubuntu-lucid -v myppa --mod-control "-e 's/iceweasel/firefox/g'" examplepkg_1.2.3-4.dsc - Create a backport for a fake ubuntu PPA repository, replacing all occurences + Create a backport for a fake Ubuntu PPA repository, replacing all occurrences of iceweasel in debian/control with firefox. @@ -176,7 +176,7 @@ bp_distribution="lenny-backports" bp_version_suffix="bpo50" Version suffix (see --version-suffix) -bp_maintainer_name="Unkown fellow" +bp_maintainer_name="Unknown fellow" Name of the backport maintainer (see --maint-name) bp_maintainer_email="user@example.net" @@ -236,7 +236,7 @@ eval set -- "$CLOPTS" while true ; do case "$1" in -d|--target-distribution) shift; bp_distribution=$1; shift;; - -s|--version-suffix) shift; backport_version=$1; shift;; + -s|--version-suffix) shift; bp_version_suffix=$1; shift;; --maint-name) shift; bp_maintainer_name=$1; shift;; --maint-email) shift; bp_maintainer_email=$1; shift;; --no-maintainer-update) bp_update_maintainer=0; shift;;