Merge "Add stable/lithium for lacp"
[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 # RELEASE_TAG=Helium-SR2  # Example
13 # RELEASE_BRANCH=stable/helium  # Example
14
15 ./scripts/version.sh release $RELEASE_TAG
16 git submodule foreach "git commit -am \"Release $RELEASE_TAG\" || true"
17 git commit -am "Release $RELEASE_TAG"
18
19 mkdir patches
20 modules=`xmlstarlet sel -N x=http://maven.apache.org/POM/4.0.0 -t -m '//x:modules' -v '//x:module' pom.xml`
21 for module in $modules; do
22     cd $module
23     git format-patch --stdout origin/$RELEASE_BRANCH > ../patches/$module.patch
24     cd ..
25 done
26
27 ./scripts/fix-relativepaths.sh