Compare commits
4
Commits
9403384a49
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
15746e45cc
|
||
|
|
9a2aee599d
|
||
|
|
5a37aaa78a
|
||
|
|
b273e3fb3d
|
+1
-1
@@ -4,7 +4,7 @@
|
||||
REPO="elogind/elogind"
|
||||
|
||||
# Get tag name using Github Rest API
|
||||
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/releases/latest | jq -r '.tag_name')
|
||||
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/releases | jq -r '.[].tag_name' | sort -V | tail -n1)
|
||||
|
||||
# Trim 'v' character in TAG_NAME variable
|
||||
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
name: elogind
|
||||
description: The systemd project's 'logind', extracted to a standalone package
|
||||
version: "257.13"
|
||||
version: "257.16"
|
||||
revision: 3
|
||||
url: https://github.com/elogind/elogind
|
||||
license: GPL2-only,LGPL2.1-only
|
||||
@@ -27,7 +27,7 @@ downloads:
|
||||
- url: https://github.com/elogind/elogind/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz
|
||||
extract_to: ${BPM_SOURCE}
|
||||
extract_strip_components: 1
|
||||
checksum: 075db32e8997bc88cd74f9e06590edb860b94c734434f2699fa258f6ab72d097
|
||||
checksum: 3c8146409bfb9daa77f272212c2b0bf0ae727c782ec87ece0d2d25e0e5bf5f4c
|
||||
split_packages:
|
||||
- name: elogind
|
||||
keep:
|
||||
@@ -1,4 +1,4 @@
|
||||
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
|
||||
# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
|
||||
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
||||
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
||||
|
||||
Reference in New Issue
Block a user