Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- replace bash script with a more secure perl version
- Loading branch information
1 parent
dc6277f
commit 10d5bdd
Showing
2 changed files
with
260 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,116 @@ | ||
| #!/bin/bash | ||
|
|
||
| # A simple script to update spec or dsc file | ||
| # very, very simple. I am happy about patches which handles multiple files with different version numbers | ||
| # | ||
| # (C) 2010 by Adrian Schröter <adrian@suse.de> | ||
| # | ||
| # This program is free software; you can redistribute it and/or | ||
| # modify it under the terms of the GNU General Public License | ||
| # as published by the Free Software Foundation; either version 2 | ||
| # of the License, or (at your option) any later version. | ||
| # See http://www.gnu.org/licenses/gpl-2.0.html for full license text. | ||
|
|
||
|
|
||
| # defaults | ||
| MYVERSION="" | ||
| FILES="" | ||
|
|
||
| while test $# -gt 0; do | ||
| case $1 in | ||
| *-version) | ||
| MYVERSION="$2" | ||
| shift | ||
| ;; | ||
| *-file) | ||
| FILES="$FILES ${2##*/}" | ||
| shift | ||
| ;; | ||
| *-basename) | ||
| BASENAME="$2" | ||
| shift | ||
| ;; | ||
| *-outdir) | ||
| MYOUTDIR="$2" | ||
| shift | ||
| ;; | ||
| *) | ||
| echo Unknown parameter $1. | ||
| echo 'Usage: set_version --version $VERSION --file $FILE --basename $BASENAME --outdir $OUT' | ||
| exit 1 | ||
| ;; | ||
| esac | ||
| shift | ||
| done | ||
|
|
||
| get_version_from_file () { | ||
| # Search for tarball filenames including a version | ||
| for ending in "tar.*" "tgz$" "tbz2$" "zip$" ; do | ||
| if [ -z "$MYVERSION" ]; then | ||
| MYVERSION=`ls -1t | sed -n "s,^$BASENAME.*[-_]\([0123456789].*\).${ending},\1,p" | head -n 1` | ||
| else | ||
| break; | ||
| fi | ||
| done | ||
| # Search for a version in the root-directory name of the content's file list: | ||
| for gz_ending in "tar.gz" "tgz" "tar.bz2" "tbz2" ; do | ||
| if [ -z "$MYVERSION" ]; then | ||
| MYVERSION=`tar tf $BASENAME*.${gz_ending} | sed -e 's,/.*,,' | uniq | sed -n "s,$BASENAME.*[-_]\(.*\),\1,p"` | ||
| else | ||
| break; | ||
| fi | ||
| done | ||
| # Take version number (and optional revision) from Debian changelog | ||
| if [ -z "$MYVERSION" ]; then | ||
| MYVERSION=`head -n 1 *debian.changelog 2>/dev/null | sed -ne 's/.*(\(.*\)).*/\1/p'` | ||
| fi | ||
| if [ -z "$MYVERSION" ]; then | ||
| echo "ERROR: no version is given and can't get detected automatically" | ||
| exit 1 | ||
| fi | ||
|
|
||
| # remove trailing ".orig", used by dpkg sources | ||
| MYVERSION=`sed s/.orig$// <<<"$MYVERSION"` | ||
| } | ||
|
|
||
| write_files () { | ||
| if [ -z "$FILES" ]; then | ||
| FILES="*.spec *.dsc" | ||
| fi | ||
| if [ -z "$MYOUTDIR" ]; then | ||
| echo "ERROR: no output directory is given via --outdir parameter!" | ||
| exit 1 | ||
| fi | ||
|
|
||
| for i in $FILES; do | ||
| FILE=`ls -1 $i 2>/dev/null` | ||
| [ -e "$FILE" ] || continue | ||
|
|
||
| sed "0,/^Version:\(\s*\)[^%]*/s//Version:\1$MYVERSION/" "$FILE" > "$MYOUTDIR/$FILE" || exit 1 | ||
| if [ "${FILE%.spec}" != "$FILE" ]; then | ||
| # set release back to zero after version upgrade, will be increased by OBS during build | ||
| # also keep macros in release in case of fedora/mandriva | ||
| sed -r -i "s,^Release:(\s*)[^%]*,Release:\10," "$MYOUTDIR/$FILE" || exit 1 | ||
| fi | ||
|
|
||
| if [ "${FILE#_service:}" != "$FILE" ]; then | ||
| # we can remove service files, no need to store them twice | ||
| rm -f "$FILE" | ||
| fi | ||
| done | ||
|
|
||
| if [ -e PKGBUILD ]; then | ||
| FILE=`ls -1 _service:*[-_]"${MYVERSION}"* | head -n 1` | ||
| [ -z "$FILE" ] && FILE=`ls -1 *[-_]"${MYVERSION}"* | head -n 1` | ||
| MD5=`md5sum "$FILE" | head -n 1 | cut -d\ -f 1` | ||
|
|
||
| sed "0,/^pkgver=\(\s*\)[^%]*/s//pkgver=\1$MYVERSION/" PKGBUILD > "$MYOUTDIR/PKGBUILD" || exit 1 | ||
| sed -r -i "s,^pkgrel=.*,pkgrel=0," "$MYOUTDIR/PKGBUILD" || exit 1 | ||
| sed -r -i "s,^md5sums=.*,md5sums=('$MD5')," "$MYOUTDIR/PKGBUILD" || exit 1 | ||
| fi | ||
| } | ||
|
|
||
| get_version_from_file | ||
| write_files | ||
|
|
||
| exit 0 |