genericUpdater: add attribute argument to ignore some versions
This commit is contained in:
parent
d3dc37ac77
commit
8bceb7c876
|
@ -4,6 +4,7 @@
|
||||||
, version
|
, version
|
||||||
, attrPath ? pname
|
, attrPath ? pname
|
||||||
, versionLister
|
, versionLister
|
||||||
|
, ignoredVersions ? ""
|
||||||
, rev-prefix ? ""
|
, rev-prefix ? ""
|
||||||
, odd-unstable ? false
|
, odd-unstable ? false
|
||||||
, patchlevel-unstable ? false
|
, patchlevel-unstable ? false
|
||||||
|
@ -23,13 +24,19 @@ let
|
||||||
version="$2"
|
version="$2"
|
||||||
attr_path="$3"
|
attr_path="$3"
|
||||||
version_lister="$4"
|
version_lister="$4"
|
||||||
rev_prefix="$5"
|
ignored_versions="$5"
|
||||||
odd_unstable="$6"
|
rev_prefix="$6"
|
||||||
patchlevel_unstable="$7"
|
odd_unstable="$7"
|
||||||
|
patchlevel_unstable="$8"
|
||||||
|
|
||||||
# print header
|
# print header
|
||||||
echo "# $pname-$version" >> ${fileForGitCommands}
|
echo "# $pname-$version" >> ${fileForGitCommands}
|
||||||
|
|
||||||
|
function version_is_ignored() {
|
||||||
|
local tag="$1"
|
||||||
|
[ -n "$ignored_versions" ] && grep -E "$ignored_versions" <<< "$tag"
|
||||||
|
}
|
||||||
|
|
||||||
function version_is_unstable() {
|
function version_is_unstable() {
|
||||||
local tag="$1"
|
local tag="$1"
|
||||||
local enforce="$2"
|
local enforce="$2"
|
||||||
|
@ -68,7 +75,10 @@ let
|
||||||
# find the newest tag
|
# find the newest tag
|
||||||
# do not consider development versions
|
# do not consider development versions
|
||||||
for latest_tag in $tags; do
|
for latest_tag in $tags; do
|
||||||
if version_is_unstable "$latest_tag"; then
|
if version_is_ignored "$latest_tag"; then
|
||||||
|
echo "# skip ignored version: $pname-$latest_tag" >> ${fileForGitCommands}
|
||||||
|
latest_tag=
|
||||||
|
elif version_is_unstable "$latest_tag"; then
|
||||||
echo "# skip development version: $pname-$latest_tag" >> ${fileForGitCommands}
|
echo "# skip development version: $pname-$latest_tag" >> ${fileForGitCommands}
|
||||||
latest_tag=
|
latest_tag=
|
||||||
else
|
else
|
||||||
|
@ -95,4 +105,4 @@ let
|
||||||
'';
|
'';
|
||||||
|
|
||||||
in
|
in
|
||||||
[ updateScript pname version attrPath versionLister rev-prefix odd-unstable patchlevel-unstable ]
|
[ updateScript pname version attrPath versionLister ignoredVersions rev-prefix odd-unstable patchlevel-unstable ]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user