source: rtems-release/rtems-release-rsb-version @ db2c683

5
Last change on this file since db2c683 was db2c683, checked in by Chris Johns <chrisj@…>, on 10/29/19 at 04:27:17

Update to support RTEMS 5

  • Property mode set to 100755
File size: 2.8 KB
RevLine 
[97cc04c]1#! /bin/sh
2#
3# RTEMS Tools Project (http://www.rtems.org/)
[db2c683]4# Copyright 2015,2016,2019 Chris Johns (chrisj@rtems.org)
[97cc04c]5# All rights reserved.
6#
7# This file is part of the RTEMS Tools package in 'rtems-tools'.
8#
9# Redistribution and use in source and binary forms, with or without
10# modification, are permitted provided that the following conditions are met:
11#
12# 1. Redistributions of source code must retain the above copyright notice,
13# this list of conditions and the following disclaimer.
14#
15# 2. Redistributions in binary form must reproduce the above copyright notice,
16# this list of conditions and the following disclaimer in the documentation
17# and/or other materials provided with the distribution.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29# POSSIBILITY OF SUCH DAMAGE.
30#
31
32#
33# This script adds the hashes to the release packages to the RSB.
34#
[db2c683]35. ${release_top}/rtems-release-version
36echo "RTEMS Release RSB Versioning, v${rtems_release_version}"
[97cc04c]37
38#
[ead5f49]39# Defaults.
[97cc04c]40#
[ead5f49]41. ${release_top}/rtems-release-defaults
[97cc04c]42
43#
44# The package, version and revision.
45#
46if [ $# -ne 4 ]; then
47    echo "error: must be arguments, the package, version," \
48         "release and the top directory."
49 exit 1
50fi
51package=$1
52version=$2
53revision=$3
54toptop=$4
55
56release=${version}.${revision}
57prefix=${package}-${release}
58
59echo "Package: ${package}"
60echo "Release: ${release}"
61
[ead5f49]62#
63# Set the release path. If an RC release use a subdirectory.
64#
65if [ \( $(echo "${release}" | sed -e 's/.*rc.*/yes/') = "yes" \) -o \
66     \( $(echo "${release}" | sed -e 's/.*RC.*/yes/') = "yes" \) ]; then
67 echo "release_path = ${rtems_release_url}/${version}/rc/${release}/sources" >> ${prefix}/VERSION
68else
69 echo "release_path = ${rtems_release_url}/${version}/${release}/sources" >> ${prefix}/VERSION
70fi
71
72checksum=sha512
[97cc04c]73
74#
75# Add the hashes for the required packages in the RSB generated during an RTEMS
76# release.
77#
78echo >> ${prefix}/VERSION
79echo "[hashes]" >> ${prefix}/VERSION
80for p in rtems-tools rtems
81do
82  file=${p}-${release}.tar.xz
83  hash=$(${checksum} -q ${toptop}/${release}/${file})
84  echo "${file} = ${checksum} ${hash}" >> ${prefix}/VERSION
85done
86
[ead5f49]87echo "RSB Versioning complete."
[97cc04c]88
89exit 0
Note: See TracBrowser for help on using the repository browser.