Hello community,
here is the log from the commit of package obs-service-set_version for
openSUSE:Factory checked in at 2012-03-22 12:37:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/obs-service-set_version (Old)
and /work/SRC/openSUSE:Factory/.obs-service-set_version.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "obs-service-set_version", Maintainer is ""
Changes:
--------
New Changes file:
--- /dev/null 2012-03-17 10:42:43.883537212 +0100
+++
/work/SRC/openSUSE:Factory/.obs-service-set_version.new/obs-service-set_version.changes
2012-03-22 12:37:22.000000000 +0100
@@ -0,0 +1,34 @@
+-------------------------------------------------------------------
+Tue Feb 14 20:01:13 GMT 2012 - [email protected]
+
+- only change the first occurrence of Version: header
+- output useful info during run
+- when auto-detecting the version, use the newest matching file
+
+-------------------------------------------------------------------
+Tue Feb 14 17:54:29 GMT 2012 - [email protected]
+
+- patch License to follow spdx.org standard
+
+-------------------------------------------------------------------
+Mon Jan 30 17:54:19 GMT 2012 - [email protected]
+
+- add --basename to usage help text
+
+-------------------------------------------------------------------
+Fri Jul 8 15:43:23 UTC 2011 - [email protected]
+
+- do not delete mandriva/fedora macros in release when reset the
+ release number
+
+-------------------------------------------------------------------
+Tue Dec 14 06:50:01 UTC 2010 - [email protected]
+
+- support detecting the version from *.tbz2 files
+
+-------------------------------------------------------------------
+Sun Dec 5 19:36:00 UTC 2010 - [email protected]
+
+- initial package of service
+- fix set version, when also release number is reset
+
New:
----
obs-service-set_version.changes
obs-service-set_version.spec
set_version
set_version.service
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ obs-service-set_version.spec ++++++
#
# spec file for package obs-service-set_version
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: obs-service-set_version
License: GPL-2.0+
Group: Development/Tools/Building
Summary: An OBS source service: Update spec file version
Version: 0.2
Release: 1
Source: set_version
Source1: set_version.service
Requires: sed
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
This is a source service for openSUSE Build Service.
Very simply script to update the version in .spec or .dsc files according to
a given version or to the existing files.
%prep
%setup -q -D -T 0 -n .
%build
%install
mkdir -p $RPM_BUILD_ROOT/usr/lib/obs/service
install -m 0755 %{SOURCE0} $RPM_BUILD_ROOT/usr/lib/obs/service
install -m 0644 %{SOURCE1} $RPM_BUILD_ROOT/usr/lib/obs/service
%files
%defattr(-,root,root)
%dir /usr/lib/obs
/usr/lib/obs/service
%changelog
++++++ set_version ++++++
#!/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 <[email protected]>
#
# 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 () {
if [ -z "$MYVERSION" ]; then
MYVERSION=`ls -1t | sed -n "s,$BASENAME.*-\([0123456789].*\).tar.*,\1,p" |
head -n 1`
fi
if [ -z "$MYVERSION" ]; then
MYVERSION=`ls -1t | sed -n "s,$BASENAME.*-\([0123456789].*\).tgz$,\1,p" |
head -n 1`
fi
if [ -z "$MYVERSION" ]; then
MYVERSION=`ls -1t | sed -n "s,$BASENAME.*-\([0123456789].*\).tbz2$,\1,p" |
head -n 1`
fi
if [ -z "$MYVERSION" ]; then
MYVERSION=`ls -1t | sed -n "s,$BASENAME.*-\([0123456789].*\).zip$,\1,p" |
head -n 1`
fi
if [ -z "$MYVERSION" ]; then
echo "ERROR: no version is given and can't get detected automatically"
exit 1
fi
echo "Detected version as $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//Version: $MYVERSION/" "$FILE" > "$MYOUTDIR/$FILE" ||
exit 1
echo "Updated first occurrence (if any) of Version in $FILE to $MYVERSION"
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:[^%]*,Release: 0,' "$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
}
get_version_from_file
write_files
exit 0
++++++ set_version.service ++++++
<service name="set_version">
<summary>Updates version in spec file</summary>
<description>This service updates a spec file according to the existing files.
Can be used after download_url or tar_scm service.
</description>
<parameter name="version">
<description>Set version to this value, otherwise autodetection is
running.</description>
</parameter>
<parameter name="basename">
<description>Limit version detection to files which start with given
name.</description>
</parameter>
<parameter name="file">
<description>Update only the given file.</description>
</parameter>
</service>
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]