2022-06-07 14:25:46 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
PROJECT='icinga-php-common'
|
|
|
|
|
|
|
|
now=$(date +%s)
|
|
|
|
|
2022-06-14 11:42:05 +02:00
|
|
|
package_version="1.0.0${now}00000000"
|
2022-06-07 14:25:46 +02:00
|
|
|
commit="bogus"
|
|
|
|
tarball="icinga-php-common_empty.orig.tar.gz"
|
|
|
|
branch="bogus"
|
|
|
|
|
|
|
|
printf '%s\t%s\t%s\t%s' \
|
|
|
|
"${package_version}" \
|
|
|
|
"${commit}" \
|
|
|
|
"${tarball}" \
|
|
|
|
"${branch}" \
|
|
|
|
> "${PROJECT}.version"
|