www-apps/gotify-server-bin: Fix config file name and hash.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2021-09-09 21:24:59 +02:00
parent 1cb21bebf1
commit d5608cb84e
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
DIST config.example.yml 2435 BLAKE2B 1b6c5e97b1698d808c0a245031b660dcd933ba55a699c9660e2cf3c04d51effdb4d628795953a4ad49ba32999c73b255e26b8eaf819f368b1a11e98dda814705 SHA512 3939797cf58a066416f039db7b52d0446c2993ac07d9d930c93c9708c0d5a827c328b75613976a931cd9bf93bc0b259b96275ac07d72d4008f87973674df196f
DIST gotify-server-bin-2.0.23.zip 9588107 BLAKE2B 1e8c025029863a9aeb07e0ef7b805befaea405635ce9e46983c29299619fbe2e3fe66b7e33057ba7a9281e72b7baa55780d163066b43a7ddcaf2b0a3aff2d118 SHA512 618ce705cdbbb66eaf834af6720d3205b288cae6b98da1c218b1dc86857633e9ed35de20bfe5a0ce933a7d40c7c1398f520682564c177b082e1c7b518c4c2482
DIST gotify-server-bin-2.0.23_config.example.yml 2367 BLAKE2B 185d7af76189813b44927e1310a7b114a9c1001cbb7eede7e0a3a045d17acbd66f5d793d6ec4fe90a486b739c6d041e1b7d90492cff2af0ee30020ac1b426a32 SHA512 64f1f41041934bec3d2cee9113f731eb43d324f102293a6775e7f855f71218696502b91fe2730fe44675a22f5c942a723bf2a0468bad99c94a5f11fd5235b2f3

View File

@ -7,7 +7,7 @@ DESCRIPTION="Simple server for sending and receiving messages in real-time per W
HOMEPAGE="https://gotify.net/"
SRC_URI="
https://github.com/gotify/server/releases/download/v${PV}/gotify-linux-amd64.zip -> ${P}.zip
https://raw.githubusercontent.com/gotify/server/v${PV}/config.example.yml
https://raw.githubusercontent.com/gotify/server/v${PV}/config.example.yml -> ${P}_config.example.yml
"
S="${WORKDIR}"
@ -23,7 +23,7 @@ BDEPEND="app-arch/unzip"
QA_PREBUILT="/usr/bin/${PN}"
src_prepare() {
cp "${DISTDIR}/config.example.yml" . || die
cp "${DISTDIR}/${P}_config.example.yml" config.example.yml || die
sed -i 's/listenaddr: ""/listenaddr: "[::1]"/' config.example.yml || die
default