Update to Plasma 5.15.1
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
require ${PN}.inc
|
||||
SRCREV = "3e5923b7830b1512b9ae5ca4fc059661326b186b"
|
||||
SRCREV = "d9c6437670c37f5fecdb5c40eb4426b96390984e"
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
function usage()
|
||||
{
|
||||
echo "$1 [add|remove] <version>"
|
||||
echo "$1 [add|remove|update] <version> [<new version>]"
|
||||
exit 1
|
||||
}
|
||||
|
||||
@@ -30,6 +30,13 @@ remove)
|
||||
git rm -f $recipe
|
||||
done
|
||||
;;
|
||||
update)
|
||||
new_version=$3
|
||||
for recipe in `find $base -name "*_$version.bb"`; do
|
||||
new_recipe=`echo $recipe | sed -e "s,$version,$new_version,"`
|
||||
git mv $recipe $new_recipe
|
||||
done
|
||||
;;
|
||||
*)
|
||||
usage $0
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user