forked from docker-library/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert "generate-stackbrew-library.sh" to output the new 2822-based …
…format
- Loading branch information
Showing
1 changed file
with
55 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,75 @@ | ||
#!/bin/bash | ||
set -e | ||
set -eu | ||
|
||
declare -A aliases=( | ||
[5.7]='5 latest' | ||
) | ||
|
||
self="$(basename "$BASH_SOURCE")" | ||
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")" | ||
|
||
versions=( */ ) | ||
versions=( "${versions[@]%/}" ) | ||
url='git://github.com/docker-library/mysql' | ||
|
||
echo '# maintainer: InfoSiftr <[email protected]> (@infosiftr)' | ||
# sort version numbers with highest first | ||
IFS=$'\n'; versions=( $(echo "${versions[*]}" | sort -rV) ); unset IFS | ||
|
||
# get the most recent commit which modified any of "$@" | ||
fileCommit() { | ||
git log -1 --format='format:%H' HEAD -- "$@" | ||
} | ||
|
||
# get the most recent commit which modified "$1/Dockerfile" or any file COPY'd from "$1/Dockerfile" | ||
dirCommit() { | ||
local dir="$1"; shift | ||
( | ||
cd "$dir" | ||
fileCommit \ | ||
Dockerfile \ | ||
$(git show HEAD:./Dockerfile | awk ' | ||
toupper($1) == "COPY" { | ||
for (i = 2; i < NF; i++) { | ||
print $i | ||
} | ||
} | ||
') | ||
) | ||
} | ||
|
||
cat <<-EOH | ||
# this file is generated via https://github.com/docker-library/mariadb/blob/$(fileCommit "$self")/$self | ||
Maintainers: Tianon Gravi <[email protected]> (@tianon), | ||
Joseph Ferguson <[email protected]> (@yosifkit) | ||
GitRepo: https://github.com/docker-library/mariadb.git | ||
EOH | ||
|
||
# prints "$2$1$3$1...$N" | ||
join() { | ||
local sep="$1"; shift | ||
local out; printf -v out "${sep//%/%%}%s" "$@" | ||
echo "${out#$sep}" | ||
} | ||
|
||
for version in "${versions[@]}"; do | ||
commit="$(cd "$version" && git log -1 --format='format:%H' -- Dockerfile $(awk 'toupper($1) == "COPY" { for (i = 2; i < NF; i++) { print $i } }' Dockerfile))" | ||
fullVersion="$(grep -m1 'ENV MYSQL_VERSION ' "$version/Dockerfile" | cut -d' ' -f3)" | ||
fullVersion="${fullVersion%-*}" # remove "debian version" suffix | ||
commit="$(dirCommit "$version")" | ||
|
||
fullVersion="$(git show "$commit":"$version/Dockerfile" | awk '$1 == "ENV" && $2 == "MYSQL_VERSION" { gsub(/-.*$/, "", $3); print $3; exit }')" | ||
|
||
versionAliases=() | ||
while [ "$fullVersion" != "$version" -a "${fullVersion%[.-]*}" != "$fullVersion" ]; do | ||
versionAliases+=( $fullVersion ) | ||
fullVersion="${fullVersion%[.-]*}" | ||
done | ||
versionAliases+=( $version ${aliases[$version]} ) | ||
|
||
versionAliases+=( | ||
$version | ||
${aliases[$version]:-} | ||
) | ||
|
||
echo | ||
for va in "${versionAliases[@]}"; do | ||
echo "$va: ${url}@${commit} $version" | ||
done | ||
cat <<-EOE | ||
Tags: $(join ', ' "${versionAliases[@]}") | ||
GitCommit: $commit | ||
Directory: $version | ||
EOE | ||
done |