Merge "Add stable/lithium for docs"
[releng/builder.git] / jjb / autorelease / include-raw-autorelease-release-versions.sh
1 #!/bin/bash
2 # @License EPL-1.0 <http://spdx.org/licenses/EPL-1.0>
3 ##############################################################################
4 # Copyright (c) 2015 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11
12 # DATESTAMP=true  # Example
13 # RELEASE_TAG=Helium-SR2  # Example
14 # RELEASE_BRANCH=stable/helium  # Example
15
16 if [ "$DATESTAMP" == "true" ]; then
17    export RELEASE_TAG=$RELEASE_TAG-`date -u +v%Y%m%d%H%M`
18 fi
19
20 echo $RELEASE_TAG
21 ./scripts/version.sh release $RELEASE_TAG
22 git submodule foreach "git commit -am \"Release $RELEASE_TAG\" || true"
23 git commit -am "Release $RELEASE_TAG"
24
25 mkdir patches
26 modules=`xmlstarlet sel -N x=http://maven.apache.org/POM/4.0.0 -t -m '//x:modules' -v '//x:module' pom.xml`
27 for module in $modules; do
28     cd $module
29     git format-patch --stdout origin/$RELEASE_BRANCH > ../patches/$module.patch
30     cd ..
31 done
32
33 ./scripts/fix-relativepaths.sh