Compare commits
7 Commits
release/gt
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| a3dfedcfd0 | |||
| 6c3e61e261 | |||
| 78f29907cc | |||
| 4ab4dc8f16 | |||
| 6013f47441 | |||
| 89beb3ff2c | |||
| f9798a41e9 |
61
.gitea/scripts/prepare-rpm-release-assets.sh
Executable file
61
.gitea/scripts/prepare-rpm-release-assets.sh
Executable file
@@ -0,0 +1,61 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
: "${RELEASE_TAG:?Missing RELEASE_TAG}"
|
||||||
|
: "${TAG_PREFIX:?Missing TAG_PREFIX}"
|
||||||
|
: "${ASSETS_DIR:?Missing ASSETS_DIR}"
|
||||||
|
: "${RPM_BINARY_DIR:?Missing RPM_BINARY_DIR}"
|
||||||
|
: "${RPM_BINARY_PATTERN_PREFIX:?Missing RPM_BINARY_PATTERN_PREFIX}"
|
||||||
|
: "${RPM_DISTRO_NAME:?Missing RPM_DISTRO_NAME}"
|
||||||
|
: "${RPM_DISTRO_VERSION:?Missing RPM_DISTRO_VERSION}"
|
||||||
|
: "${GITHUB_ENV:?Missing GITHUB_ENV}"
|
||||||
|
|
||||||
|
version="${RELEASE_TAG#${TAG_PREFIX}}"
|
||||||
|
if [[ -z "$version" || "$version" == "$RELEASE_TAG" ]]; then
|
||||||
|
echo "Expected tag in the form ${TAG_PREFIX}{version}, got: $RELEASE_TAG" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "${EXPECTED_VERSION:-}" && "$EXPECTED_VERSION" != "$version" ]]; then
|
||||||
|
echo "Release tag version ($version) does not match expected package version ($EXPECTED_VERSION)." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -rf "$ASSETS_DIR"
|
||||||
|
mkdir -p "$ASSETS_DIR"
|
||||||
|
|
||||||
|
found=0
|
||||||
|
binary_pattern="${RPM_BINARY_PATTERN_PREFIX}${version}-*.rpm"
|
||||||
|
if [[ -d "$RPM_BINARY_DIR" ]]; then
|
||||||
|
find_cmd=(
|
||||||
|
find "$RPM_BINARY_DIR" -type f -name "$binary_pattern"
|
||||||
|
)
|
||||||
|
while IFS= read -r exclude; do
|
||||||
|
[[ -n "$exclude" ]] || continue
|
||||||
|
find_cmd+=( ! -name "$exclude" )
|
||||||
|
done <<< "${RPM_BINARY_EXCLUDE_PATTERNS:-}"
|
||||||
|
find_cmd+=( -exec cp '{}' "$ASSETS_DIR/" ';' )
|
||||||
|
"${find_cmd[@]}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if find "$ASSETS_DIR" -maxdepth 1 -type f -name '*.rpm' | grep -q .; then
|
||||||
|
found=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "${RPM_SOURCE_DIR:-}" && -n "${RPM_SOURCE_PATTERN_PREFIX:-}" && -d "$RPM_SOURCE_DIR" ]]; then
|
||||||
|
source_pattern="${RPM_SOURCE_PATTERN_PREFIX}${version}-*.src.rpm"
|
||||||
|
find "$RPM_SOURCE_DIR" -type f -name "$source_pattern" -exec cp '{}' "$ASSETS_DIR/" ';'
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$found" -ne 1 ]]; then
|
||||||
|
echo "No RPM artifacts were produced." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
package_group="${RPM_PACKAGE_GROUP:-${RPM_DISTRO_NAME}/${RPM_DISTRO_VERSION}}"
|
||||||
|
|
||||||
|
{
|
||||||
|
printf 'RELEASE_VERSION=%s\n' "$version"
|
||||||
|
printf 'RELEASE_ASSETS_DIR=%s\n' "$ASSETS_DIR"
|
||||||
|
printf 'RPM_PACKAGE_GROUP=%s\n' "$package_group"
|
||||||
|
} >> "$GITHUB_ENV"
|
||||||
65
.gitea/scripts/upload-rpm-packages.sh
Executable file
65
.gitea/scripts/upload-rpm-packages.sh
Executable file
@@ -0,0 +1,65 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
: "${GITEA_SERVER_URL:?Missing GITEA_SERVER_URL}"
|
||||||
|
: "${GITEA_REPOSITORY_OWNER:?Missing GITEA_REPOSITORY_OWNER}"
|
||||||
|
: "${RELEASE_ASSETS_DIR:?Missing RELEASE_ASSETS_DIR}"
|
||||||
|
|
||||||
|
owner="${GITEA_REPOSITORY_OWNER}"
|
||||||
|
package_user="${RPM_PACKAGE_USERNAME:-${GITEA_REPOSITORY_OWNER}}"
|
||||||
|
token="${RPM_PACKAGE_TOKEN:-}"
|
||||||
|
group="${RPM_PACKAGE_GROUP:-}"
|
||||||
|
|
||||||
|
if [[ -z "$package_user" ]]; then
|
||||||
|
echo "Missing package upload username. Set repository or organization variable RPM_PACKAGE_USERNAME." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -z "$token" ]]; then
|
||||||
|
echo "Missing package upload token. Set repository or organization secret RPM_PACKAGE_TOKEN." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
upload_url="${GITEA_SERVER_URL%/}/api/packages/${owner}/rpm"
|
||||||
|
if [[ -n "$group" ]]; then
|
||||||
|
upload_url="${upload_url}/${group}"
|
||||||
|
fi
|
||||||
|
upload_url="${upload_url}/upload"
|
||||||
|
|
||||||
|
shopt -s nullglob
|
||||||
|
found_rpm=0
|
||||||
|
for rpm in "$RELEASE_ASSETS_DIR"/*.rpm; do
|
||||||
|
case "$rpm" in
|
||||||
|
*.src.rpm)
|
||||||
|
continue
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
found_rpm=1
|
||||||
|
http_code="$(curl --silent --show-error \
|
||||||
|
--write-out '%{http_code}' \
|
||||||
|
--output /tmp/package-upload-response \
|
||||||
|
--user "${package_user}:${token}" \
|
||||||
|
--upload-file "$rpm" \
|
||||||
|
"$upload_url")"
|
||||||
|
|
||||||
|
case "$http_code" in
|
||||||
|
201)
|
||||||
|
echo "Uploaded $(basename "$rpm") to the RPM package registry."
|
||||||
|
;;
|
||||||
|
409)
|
||||||
|
echo "Package already exists for $(basename "$rpm"); skipping duplicate upload."
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Failed to upload $(basename "$rpm") to $upload_url (HTTP $http_code)." >&2
|
||||||
|
cat /tmp/package-upload-response >&2 || true
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shopt -u nullglob
|
||||||
|
|
||||||
|
if [[ "$found_rpm" -ne 1 ]]; then
|
||||||
|
echo "No binary RPM artifacts were found to upload." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
112
.gitea/workflows/core-rpm-release.yaml
Normal file
112
.gitea/workflows/core-rpm-release.yaml
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
name: Core RPM Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'release/core/*'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
code: read
|
||||||
|
releases: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
env:
|
||||||
|
RPM_DISTRO_NAME: fedora
|
||||||
|
RPM_DISTRO_VERSION: '43'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-core-rpm-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: fedora:43
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# Build inside Fedora so the RPM package repository grouping matches the
|
||||||
|
# Fedora release we publish to.
|
||||||
|
- name: Install system dependencies
|
||||||
|
run: |
|
||||||
|
set -eu
|
||||||
|
dnf install -y \
|
||||||
|
ca-certificates \
|
||||||
|
curl \
|
||||||
|
gcc \
|
||||||
|
gcc-c++ \
|
||||||
|
git \
|
||||||
|
make \
|
||||||
|
nodejs \
|
||||||
|
openssl-devel \
|
||||||
|
pkg-config \
|
||||||
|
python3 \
|
||||||
|
rpm-build \
|
||||||
|
sqlite-devel \
|
||||||
|
dbus-devel \
|
||||||
|
systemd-devel
|
||||||
|
dnf clean all
|
||||||
|
|
||||||
|
- name: Install Rust toolchain
|
||||||
|
run: |
|
||||||
|
set -eu
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||||
|
echo "/root/.cargo/bin" >> "$GITHUB_PATH"
|
||||||
|
|
||||||
|
- name: Install cargo-generate-rpm
|
||||||
|
run: cargo install cargo-generate-rpm
|
||||||
|
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Build Core RPM
|
||||||
|
working-directory: core
|
||||||
|
run: make rpm
|
||||||
|
|
||||||
|
- name: Read Core Package Version
|
||||||
|
run: |
|
||||||
|
set -eu
|
||||||
|
version="$(awk -F ' = ' '
|
||||||
|
$0 == "[package]" { in_pkg = 1; next }
|
||||||
|
/^\[/ { in_pkg = 0 }
|
||||||
|
in_pkg && $1 == "version" {
|
||||||
|
gsub(/"/, "", $2)
|
||||||
|
print $2
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
' core/kordophoned/Cargo.toml)"
|
||||||
|
if [ -z "$version" ]; then
|
||||||
|
echo "Could not determine kordophoned package version from core/kordophoned/Cargo.toml." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
printf 'CORE_PACKAGE_VERSION=%s\n' "$version" >> "$GITHUB_ENV"
|
||||||
|
|
||||||
|
- name: Prepare release assets
|
||||||
|
env:
|
||||||
|
RELEASE_TAG: ${{ github.ref_name }}
|
||||||
|
TAG_PREFIX: release/core/
|
||||||
|
ASSETS_DIR: ${{ gitea.workspace }}/release-assets/core
|
||||||
|
RPM_BINARY_DIR: ${{ gitea.workspace }}/core/target/generate-rpm
|
||||||
|
RPM_BINARY_PATTERN_PREFIX: kordophoned-
|
||||||
|
RPM_PACKAGE_GROUP: ${{ vars.RPM_PACKAGE_GROUP }}
|
||||||
|
RPM_DISTRO_NAME: ${{ env.RPM_DISTRO_NAME }}
|
||||||
|
RPM_DISTRO_VERSION: ${{ env.RPM_DISTRO_VERSION }}
|
||||||
|
EXPECTED_VERSION: ${{ env.CORE_PACKAGE_VERSION }}
|
||||||
|
run: ./.gitea/scripts/prepare-rpm-release-assets.sh
|
||||||
|
|
||||||
|
- name: Upload RPMs to Gitea package registry
|
||||||
|
env:
|
||||||
|
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
||||||
|
GITEA_REPOSITORY_OWNER: ${{ gitea.repository_owner }}
|
||||||
|
RPM_PACKAGE_GROUP: ${{ env.RPM_PACKAGE_GROUP }}
|
||||||
|
RPM_PACKAGE_TOKEN: ${{ secrets.RPM_PACKAGE_TOKEN }}
|
||||||
|
RPM_PACKAGE_USERNAME: ${{ vars.RPM_PACKAGE_USERNAME }}
|
||||||
|
RELEASE_ASSETS_DIR: ${{ env.RELEASE_ASSETS_DIR }}
|
||||||
|
run: ./.gitea/scripts/upload-rpm-packages.sh
|
||||||
|
|
||||||
|
- name: Create Gitea release
|
||||||
|
uses: https://gitea.com/actions/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
name: Kordophoned Core ${{ env.RELEASE_VERSION }}
|
||||||
|
tag_name: ${{ github.ref_name }}
|
||||||
|
target_commitish: ${{ github.sha }}
|
||||||
|
files: |
|
||||||
|
${{ env.RELEASE_ASSETS_DIR }}/*.rpm
|
||||||
@@ -10,11 +10,15 @@ permissions:
|
|||||||
releases: write
|
releases: write
|
||||||
packages: write
|
packages: write
|
||||||
|
|
||||||
|
env:
|
||||||
|
RPM_DISTRO_NAME: fedora
|
||||||
|
RPM_DISTRO_VERSION: '43'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-gtk-rpm-release:
|
build-gtk-rpm-release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: fedora:40
|
image: fedora:43
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# The default Gitea runner image is Debian-based. Build the GTK RPM in a
|
# The default Gitea runner image is Debian-based. Build the GTK RPM in a
|
||||||
@@ -59,122 +63,29 @@ jobs:
|
|||||||
- name: Prepare release assets
|
- name: Prepare release assets
|
||||||
env:
|
env:
|
||||||
RELEASE_TAG: ${{ github.ref_name }}
|
RELEASE_TAG: ${{ github.ref_name }}
|
||||||
|
TAG_PREFIX: release/gtk/
|
||||||
|
ASSETS_DIR: ${{ gitea.workspace }}/release-assets/gtk
|
||||||
|
RPM_BINARY_DIR: /root/rpmbuild/RPMS
|
||||||
|
RPM_BINARY_PATTERN_PREFIX: kordophone-
|
||||||
|
RPM_BINARY_EXCLUDE_PATTERNS: |
|
||||||
|
*-debuginfo-*
|
||||||
|
*-debugsource-*
|
||||||
RPM_PACKAGE_GROUP: ${{ vars.RPM_PACKAGE_GROUP }}
|
RPM_PACKAGE_GROUP: ${{ vars.RPM_PACKAGE_GROUP }}
|
||||||
run: |
|
RPM_SOURCE_DIR: /root/rpmbuild/SRPMS
|
||||||
set -eu
|
RPM_SOURCE_PATTERN_PREFIX: kordophone-
|
||||||
|
RPM_DISTRO_NAME: ${{ env.RPM_DISTRO_NAME }}
|
||||||
version="${RELEASE_TAG#release/gtk/}"
|
RPM_DISTRO_VERSION: ${{ env.RPM_DISTRO_VERSION }}
|
||||||
if [ -z "$version" ] || [ "$version" = "$RELEASE_TAG" ]; then
|
run: ./.gitea/scripts/prepare-rpm-release-assets.sh
|
||||||
echo "Expected tag in the form release/gtk/{version}, got: $RELEASE_TAG" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
assets_dir="${{ gitea.workspace }}/release-assets/gtk"
|
|
||||||
rpmbuild_dir="${HOME}/rpmbuild"
|
|
||||||
|
|
||||||
rm -rf "$assets_dir"
|
|
||||||
mkdir -p "$assets_dir"
|
|
||||||
|
|
||||||
if [ -d "$rpmbuild_dir/RPMS" ]; then
|
|
||||||
find "$rpmbuild_dir/RPMS" -type f -name "kordophone-${version}-*.rpm" \
|
|
||||||
! -name '*-debuginfo-*' \
|
|
||||||
! -name '*-debugsource-*' \
|
|
||||||
-exec cp '{}' "$assets_dir/" ';'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -d "$rpmbuild_dir/SRPMS" ]; then
|
|
||||||
find "$rpmbuild_dir/SRPMS" -type f -name "kordophone-${version}-*.src.rpm" \
|
|
||||||
-exec cp '{}' "$assets_dir/" ';'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! find "$assets_dir" -maxdepth 1 -type f -name '*.rpm' | grep -q .; then
|
|
||||||
echo "No RPM artifacts were produced." >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
{
|
|
||||||
printf 'RELEASE_VERSION=%s\n' "$version"
|
|
||||||
printf 'RELEASE_ASSETS_DIR=%s\n' "$assets_dir"
|
|
||||||
printf 'RPM_PACKAGE_GROUP=%s\n' "${RPM_PACKAGE_GROUP:-}"
|
|
||||||
} >> "$GITHUB_ENV"
|
|
||||||
|
|
||||||
- name: Upload RPMs to Gitea package registry
|
- name: Upload RPMs to Gitea package registry
|
||||||
env:
|
env:
|
||||||
GITEA_ACTOR: ${{ gitea.actor }}
|
|
||||||
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
||||||
GITEA_REPOSITORY: ${{ gitea.repository }}
|
GITEA_REPOSITORY_OWNER: ${{ gitea.repository_owner }}
|
||||||
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
||||||
RPM_PACKAGE_GROUP: ${{ env.RPM_PACKAGE_GROUP }}
|
RPM_PACKAGE_GROUP: ${{ env.RPM_PACKAGE_GROUP }}
|
||||||
RPM_PACKAGE_TOKEN: ${{ secrets.RPM_PACKAGE_TOKEN }}
|
RPM_PACKAGE_TOKEN: ${{ secrets.RPM_PACKAGE_TOKEN }}
|
||||||
RPM_PACKAGE_USERNAME: ${{ vars.RPM_PACKAGE_USERNAME }}
|
RPM_PACKAGE_USERNAME: ${{ vars.RPM_PACKAGE_USERNAME }}
|
||||||
RELEASE_ASSETS_DIR: ${{ env.RELEASE_ASSETS_DIR }}
|
RELEASE_ASSETS_DIR: ${{ env.RELEASE_ASSETS_DIR }}
|
||||||
run: |
|
run: ./.gitea/scripts/upload-rpm-packages.sh
|
||||||
set -eu
|
|
||||||
|
|
||||||
owner="${GITEA_REPOSITORY%%/*}"
|
|
||||||
package_user="${RPM_PACKAGE_USERNAME:-${GITEA_ACTOR:-}}"
|
|
||||||
token="${RPM_PACKAGE_TOKEN:-${GITEA_TOKEN:-}}"
|
|
||||||
group="${RPM_PACKAGE_GROUP:-}"
|
|
||||||
|
|
||||||
if [ -z "$owner" ] || [ "$owner" = "$GITEA_REPOSITORY" ]; then
|
|
||||||
echo "Could not determine package owner from repository: $GITEA_REPOSITORY" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$package_user" ]; then
|
|
||||||
echo "Missing package upload username. Set RPM_PACKAGE_USERNAME or ensure gitea.actor is available." >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$token" ]; then
|
|
||||||
echo "Missing upload token. Set RPM_PACKAGE_TOKEN or ensure secrets.GITEA_TOKEN is available." >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
upload_url="${GITEA_SERVER_URL%/}/api/packages/${owner}/rpm"
|
|
||||||
if [ -n "$group" ]; then
|
|
||||||
upload_url="${upload_url}/${group}"
|
|
||||||
fi
|
|
||||||
upload_url="${upload_url}/upload"
|
|
||||||
|
|
||||||
found_rpm=0
|
|
||||||
for rpm in "$RELEASE_ASSETS_DIR"/*.rpm; do
|
|
||||||
if [ ! -e "$rpm" ] || [ "${rpm##*.}" != "rpm" ]; then
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
case "$rpm" in
|
|
||||||
*.src.rpm)
|
|
||||||
continue
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
found_rpm=1
|
|
||||||
http_code="$(curl --silent --show-error \
|
|
||||||
--write-out '%{http_code}' \
|
|
||||||
--output /tmp/package-upload-response \
|
|
||||||
--user "${package_user}:${token}" \
|
|
||||||
--upload-file "$rpm" \
|
|
||||||
"$upload_url")"
|
|
||||||
|
|
||||||
case "$http_code" in
|
|
||||||
201)
|
|
||||||
echo "Uploaded $(basename "$rpm") to the RPM package registry."
|
|
||||||
;;
|
|
||||||
409)
|
|
||||||
echo "Package already exists for $(basename "$rpm"); skipping duplicate upload."
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Failed to upload $(basename "$rpm") to $upload_url (HTTP $http_code)." >&2
|
|
||||||
cat /tmp/package-upload-response >&2 || true
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "$found_rpm" -ne 1 ]; then
|
|
||||||
echo "No binary RPM artifacts were found to upload." >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Create Gitea release
|
- name: Create Gitea release
|
||||||
uses: https://gitea.com/actions/gitea-release-action@v1
|
uses: https://gitea.com/actions/gitea-release-action@v1
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
|
.codex
|
||||||
ext/
|
ext/
|
||||||
target/
|
target/
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM fedora:40
|
FROM fedora:43
|
||||||
|
|
||||||
RUN dnf update -y && \
|
RUN dnf update -y && \
|
||||||
dnf install -y \
|
dnf install -y \
|
||||||
@@ -23,4 +23,3 @@ WORKDIR /workspace
|
|||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
CMD ["make", "rpm"]
|
CMD ["make", "rpm"]
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "kordophoned"
|
name = "kordophoned"
|
||||||
version = "1.3.0"
|
version = "1.3.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
description = "Client daemon for the Kordophone chat protocol"
|
description = "Client daemon for the Kordophone chat protocol"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM fedora:40
|
FROM fedora:43
|
||||||
|
|
||||||
# Install RPM build tools and dependencies
|
# Install RPM build tools and dependencies
|
||||||
RUN dnf update -y && dnf install -y \
|
RUN dnf update -y && dnf install -y \
|
||||||
|
|||||||
Reference in New Issue
Block a user