Compare commits

..
4 Commits
Author SHA1 Message Date
EnumDev 15746e45cc Rebuild package 2026-07-10 19:15:51 +03:00
EnumDev 9a2aee599d Switch to new package format 2026-06-13 19:59:09 +03:00
EnumDev 5a37aaa78a Update package version to 257.16 2026-06-07 16:32:20 +03:00
EnumDev b273e3fb3d Update package version to 257.14 2026-05-17 16:18:31 +03:00
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
REPO="elogind/elogind" REPO="elogind/elogind"
# Get tag name using Github Rest API # 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 # Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v') VERSION=$(echo "$TAG_NAME" | tr -d 'v')
+2 -2
View File
@@ -1,6 +1,6 @@
name: elogind name: elogind
description: The systemd project's 'logind', extracted to a standalone package description: The systemd project's 'logind', extracted to a standalone package
version: "257.13" version: "257.16"
revision: 3 revision: 3
url: https://github.com/elogind/elogind url: https://github.com/elogind/elogind
license: GPL2-only,LGPL2.1-only 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 - url: https://github.com/elogind/elogind/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 075db32e8997bc88cd74f9e06590edb860b94c734434f2699fa258f6ab72d097 checksum: 3c8146409bfb9daa77f272212c2b0bf0ae727c782ec87ece0d2d25e0e5bf5f4c
split_packages: split_packages:
- name: elogind - name: elogind
keep: keep:
+1 -1
View File
@@ -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 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 # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT