summaryrefslogtreecommitdiff
path: root/extract-release-date-from-doap-file
blob: f57e30742a82ddac690569380f99b34f675c70c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
# Shell script to extract the date given a release version and a .doap file

if test "x$1" = "x" -o "x$2" = "x" -o ! -s "$2"; then
  echo "Usage: $0 RELEASE-VERSION-NUMBER DOAP-FILE" >&2;
  exit 1
fi

if ! grep '<Project' "$2" >/dev/null ; then
  echo "$2 does not look lika a .doap file" >&2;
  exit 1
fi

if ! grep "$1" "$2" >/dev/null ; then
  echo "$2 contains no reference to a version $1" >&2;
  exit 1
fi

awk 'BEGIN {x=0}
{
if ( $0 ~ /<release>/ ) {x=1; chunk=""}
if (x==1) {
  if ($0 ~ /<revision>/) { chunk = chunk $0 }
  if ($0 ~ /<created>/) { chunk = chunk $0 }
}
if ($0 ~ /<\/release>/) {x=0; print chunk}
}' < "$2" | \
\
grep '<revision>'"$1"'</revision>' | \
\
sed -e 's/^.*<created>//' -e 's/<\/created>.*$//'