diff options
Diffstat (limited to 'source/kde/build')
-rw-r--r-- | source/kde/build/ark | 1 | ||||
-rw-r--r-- | source/kde/build/calligra | 1 | ||||
-rwxr-xr-x | source/kde/build/increment.sh | 17 | ||||
-rw-r--r-- | source/kde/build/kde-workspace | 1 | ||||
-rw-r--r-- | source/kde/build/kdelibs | 1 | ||||
-rw-r--r-- | source/kde/build/lskat | 1 |
6 files changed, 21 insertions, 1 deletions
diff --git a/source/kde/build/ark b/source/kde/build/ark new file mode 100644 index 000000000..0cfbf0888 --- /dev/null +++ b/source/kde/build/ark @@ -0,0 +1 @@ +2 diff --git a/source/kde/build/calligra b/source/kde/build/calligra deleted file mode 100644 index b8626c4cf..000000000 --- a/source/kde/build/calligra +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/source/kde/build/increment.sh b/source/kde/build/increment.sh new file mode 100755 index 000000000..6de5d0da6 --- /dev/null +++ b/source/kde/build/increment.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# A script to increment build numbers. +# Call it with the list of the build numbers to increase by one: +# +# ./increment.sh xf86-input-acecad xf86-input-aiptek xf86-input-joystick +# +# If a build file does not exist, it will be created with a value of 2. + +for build in $* ; do + if [ ! -r $build ]; then + echo "Creating $build with value 2" + echo 2 > $build + else + echo "Incrementing $build $(cat $build) -> $(expr $(cat $build) + 1)" + echo $(expr $(cat $build) + 1) > $build + fi +done diff --git a/source/kde/build/kde-workspace b/source/kde/build/kde-workspace new file mode 100644 index 000000000..0cfbf0888 --- /dev/null +++ b/source/kde/build/kde-workspace @@ -0,0 +1 @@ +2 diff --git a/source/kde/build/kdelibs b/source/kde/build/kdelibs new file mode 100644 index 000000000..0cfbf0888 --- /dev/null +++ b/source/kde/build/kdelibs @@ -0,0 +1 @@ +2 diff --git a/source/kde/build/lskat b/source/kde/build/lskat new file mode 100644 index 000000000..0cfbf0888 --- /dev/null +++ b/source/kde/build/lskat @@ -0,0 +1 @@ +2 |