Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d95158092e |
@@ -0,0 +1,55 @@
|
|||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
workflow_call:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-8:
|
||||||
|
runs-on: almalinux-8
|
||||||
|
container:
|
||||||
|
image: git.query.consul/unkin/almalinux8-actionsdind:latest
|
||||||
|
options: --privileged
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Build Packages
|
||||||
|
run: |
|
||||||
|
make all
|
||||||
|
|
||||||
|
- name: Show RPMs
|
||||||
|
run: |
|
||||||
|
find /workspace -type f -name "*.rpm"
|
||||||
|
|
||||||
|
- name: Upload Artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: rpms-8
|
||||||
|
path: /workspace/unkin/rpmbuilder/dist/*/*.rpm
|
||||||
|
|
||||||
|
build-9:
|
||||||
|
runs-on: almalinux-8
|
||||||
|
container:
|
||||||
|
image: git.query.consul/unkin/almalinux9-actionsdind:latest
|
||||||
|
options: --privileged
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Build Packages
|
||||||
|
run: |
|
||||||
|
make all
|
||||||
|
|
||||||
|
- name: Show RPMs
|
||||||
|
run: |
|
||||||
|
find /workspace -type f -name "*.rpm"
|
||||||
|
|
||||||
|
- name: Upload Artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: rpms-9
|
||||||
|
path: /workspace/unkin/rpmbuilder/dist/*/*.rpm
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
name: Deploy
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy-8:
|
||||||
|
runs-on: almalinux-8
|
||||||
|
container:
|
||||||
|
image: git.query.consul/unkin/almalinux8-actionsdind:latest
|
||||||
|
options: --privileged
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Download Artifacts
|
||||||
|
run: |
|
||||||
|
mkdir -p /workspace/unkin/rpmbuilder/dist/8
|
||||||
|
export PREVIOUS_RUN_ID=$((GITHUB_RUN_NUMBER - 1))
|
||||||
|
curl -L -o /workspace/rpms.zip "https://git.query.consul/${GITHUB_REPOSITORY}/actions/runs/${PREVIOUS_RUN_ID}/artifacts/rpms-8"
|
||||||
|
unzip /workspace/rpms.zip -d /workspace/unkin/rpmbuilder/dist/8
|
||||||
|
|
||||||
|
- name: Show RPMs
|
||||||
|
run: |
|
||||||
|
find /workspace -type f -name "*.rpm"
|
||||||
|
|
||||||
|
- name: Upload RPMs to Gitea
|
||||||
|
env:
|
||||||
|
DRONECI_PASSWORD: ${{ secrets.DRONECI_PASSWORD }}
|
||||||
|
run: |
|
||||||
|
for rpm in $(find /workspace/unkin/rpmbuilder/dist/8 -type f -name "*.rpm"); do
|
||||||
|
curl --user droneci:${{ secrets.DRONECI_PASSWORD }} --upload-file $rpm https://git.query.consul/api/packages/unkin/rpm/almalinux/el8/upload
|
||||||
|
done
|
||||||
|
|
||||||
|
deploy-9:
|
||||||
|
runs-on: almalinux-8
|
||||||
|
container:
|
||||||
|
image: git.query.consul/unkin/almalinux9-actionsdind:latest
|
||||||
|
options: --privileged
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Download Artifacts
|
||||||
|
run: |
|
||||||
|
mkdir -p /workspace/unkin/rpmbuilder/dist/9
|
||||||
|
export PREVIOUS_RUN_ID=$((GITHUB_RUN_NUMBER - 1))
|
||||||
|
curl -L -o /workspace/rpms.zip "https://git.query.consul/${GITHUB_REPOSITORY}/actions/runs/${PREVIOUS_RUN_ID}/artifacts/rpms-9"
|
||||||
|
unzip /workspace/rpms.zip -d /workspace/unkin/rpmbuilder/dist/9
|
||||||
|
|
||||||
|
- name: Show RPMs
|
||||||
|
run: |
|
||||||
|
find /workspace -type f -name "*.rpm"
|
||||||
|
|
||||||
|
- name: Upload RPMs to Gitea
|
||||||
|
env:
|
||||||
|
DRONECI_PASSWORD: ${{ secrets.DRONECI_PASSWORD }}
|
||||||
|
run: |
|
||||||
|
for rpm in $(find /workspace/unkin/rpmbuilder/dist/9 -type f -name "*.rpm"); do
|
||||||
|
curl --user droneci:${{ secrets.DRONECI_PASSWORD }} --upload-file $rpm https://git.query.consul/api/packages/unkin/rpm/almalinux/el9/upload
|
||||||
|
done
|
||||||
@@ -1,4 +1 @@
|
|||||||
dist
|
dist
|
||||||
env
|
|
||||||
.claude
|
|
||||||
.ruff_cache
|
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
---
|
|
||||||
repos:
|
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
||||||
rev: v4.5.0
|
|
||||||
hooks:
|
|
||||||
- id: check-executables-have-shebangs
|
|
||||||
- id: check-json
|
|
||||||
- id: check-added-large-files
|
|
||||||
args: ['--maxkb=500']
|
|
||||||
- id: check-merge-conflict
|
|
||||||
- id: check-shebang-scripts-are-executable
|
|
||||||
- id: check-symlinks
|
|
||||||
- id: check-toml
|
|
||||||
- id: check-yaml
|
|
||||||
args: [--allow-multiple-documents]
|
|
||||||
- id: detect-aws-credentials
|
|
||||||
args: [--allow-missing-credentials]
|
|
||||||
- id: detect-private-key
|
|
||||||
- id: end-of-file-fixer
|
|
||||||
- id: forbid-new-submodules
|
|
||||||
- id: pretty-format-json
|
|
||||||
- id: trailing-whitespace
|
|
||||||
|
|
||||||
- repo: https://github.com/adrienverge/yamllint.git
|
|
||||||
rev: v1.37.1
|
|
||||||
hooks:
|
|
||||||
- id: yamllint
|
|
||||||
args:
|
|
||||||
[
|
|
||||||
"-d {extends: relaxed, rules: {line-length: disable}}",
|
|
||||||
"-s",
|
|
||||||
]
|
|
||||||
|
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
||||||
rev: v0.14.7
|
|
||||||
hooks:
|
|
||||||
# Run the linter.
|
|
||||||
- id: ruff-check
|
|
||||||
args: [--fix]
|
|
||||||
# Run the formatter.
|
|
||||||
- id: ruff-format
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
when:
|
|
||||||
- event: pull_request
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
commands:
|
|
||||||
- mkdir -p /woodpecker/rpms
|
|
||||||
- ln -s /woodpecker/rpms /workspace
|
|
||||||
- dnf install buildah -y
|
|
||||||
- ./tools/build build-all --distro almalinux/el8 --buildah
|
|
||||||
privileged: true
|
|
||||||
backend_options:
|
|
||||||
kubernetes:
|
|
||||||
serviceAccountName: default
|
|
||||||
|
|
||||||
- name: show rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux8-base:latest
|
|
||||||
commands:
|
|
||||||
- find /woodpecker/src/git.unkin.net/unkin/rpmbuilder/ -type f -name "*.rpm"
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
when:
|
|
||||||
- event: pull_request
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
commands:
|
|
||||||
- mkdir -p /woodpecker/rpms
|
|
||||||
- ln -s /woodpecker/rpms /workspace
|
|
||||||
- dnf install buildah -y
|
|
||||||
- ./tools/build build-all --distro almalinux/el9 --buildah
|
|
||||||
privileged: true
|
|
||||||
backend_options:
|
|
||||||
kubernetes:
|
|
||||||
serviceAccountName: default
|
|
||||||
|
|
||||||
- name: show rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux9-base:latest
|
|
||||||
commands:
|
|
||||||
- find /woodpecker/src/git.unkin.net/unkin/rpmbuilder/ -type f -name "*.rpm"
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
when:
|
|
||||||
- event: push
|
|
||||||
branch: master
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build-rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
commands:
|
|
||||||
- mkdir -p /woodpecker/rpms
|
|
||||||
- ln -s /woodpecker/rpms /workspace
|
|
||||||
- dnf install buildah -y
|
|
||||||
- ./tools/build build-all --distro almalinux/el8 --buildah
|
|
||||||
privileged: true
|
|
||||||
backend_options:
|
|
||||||
kubernetes:
|
|
||||||
serviceAccountName: default
|
|
||||||
|
|
||||||
- name: show-rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux9-base:latest
|
|
||||||
commands:
|
|
||||||
- find /woodpecker/src/git.unkin.net/unkin/rpmbuilder/ -type f -name "*.rpm"
|
|
||||||
depends_on: [build-rpms]
|
|
||||||
|
|
||||||
- name: deploy-rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
commands:
|
|
||||||
- |
|
|
||||||
for rpm in $(find /woodpecker/src/git.unkin.net/unkin/rpmbuilder/ -type f -name "*.rpm"); do
|
|
||||||
curl --user droneci:$${DRONECI_PASSWORD} --upload-file $rpm https://git.unkin.net/api/packages/unkin/rpm/almalinux/el8/upload
|
|
||||||
done
|
|
||||||
environment:
|
|
||||||
DRONECI_PASSWORD:
|
|
||||||
from_secret: DRONECI_PASSWORD
|
|
||||||
backend_options:
|
|
||||||
kubernetes:
|
|
||||||
serviceAccountName: default
|
|
||||||
depends_on: [build-rpms, show-rpms]
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
when:
|
|
||||||
- event: push
|
|
||||||
branch: master
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build-rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
commands:
|
|
||||||
- mkdir -p /woodpecker/rpms
|
|
||||||
- ln -s /woodpecker/rpms /workspace
|
|
||||||
- dnf install buildah -y
|
|
||||||
- ./tools/build build-all --distro almalinux/el9 --buildah
|
|
||||||
privileged: true
|
|
||||||
backend_options:
|
|
||||||
kubernetes:
|
|
||||||
serviceAccountName: default
|
|
||||||
|
|
||||||
- name: show-rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux9-base:latest
|
|
||||||
commands:
|
|
||||||
- find /woodpecker/src/git.unkin.net/unkin/rpmbuilder/ -type f -name "*.rpm"
|
|
||||||
depends_on: [build-rpms]
|
|
||||||
|
|
||||||
- name: deploy-rpms
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
commands:
|
|
||||||
- |
|
|
||||||
for rpm in $(find /woodpecker/src/git.unkin.net/unkin/rpmbuilder/ -type f -name "*.rpm"); do
|
|
||||||
curl --user droneci:$${DRONECI_PASSWORD} --upload-file $rpm https://git.unkin.net/api/packages/unkin/rpm/almalinux/el9/upload
|
|
||||||
done
|
|
||||||
environment:
|
|
||||||
DRONECI_PASSWORD:
|
|
||||||
from_secret: DRONECI_PASSWORD
|
|
||||||
backend_options:
|
|
||||||
kubernetes:
|
|
||||||
serviceAccountName: default
|
|
||||||
depends_on: [build-rpms, show-rpms]
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
when:
|
|
||||||
- event: pull_request
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: pre-commit
|
|
||||||
image: git.unkin.net/unkin/almalinux9-base:latest
|
|
||||||
commands:
|
|
||||||
- dnf install uv make -y
|
|
||||||
- uvx pre-commit run --all-files
|
|
||||||
-34
@@ -1,34 +0,0 @@
|
|||||||
ARG BASE_IMAGE=git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
FROM ${BASE_IMAGE}
|
|
||||||
|
|
||||||
# Create output directory for RPMs
|
|
||||||
RUN mkdir -p /app/dist
|
|
||||||
|
|
||||||
# Set working directory
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
# Accept all package metadata as build arguments and set as environment variables
|
|
||||||
ARG PACKAGE_NAME
|
|
||||||
ENV PACKAGE_NAME=${PACKAGE_NAME}
|
|
||||||
ARG PACKAGE_VERSION
|
|
||||||
ENV PACKAGE_VERSION=${PACKAGE_VERSION}
|
|
||||||
ARG PACKAGE_RELEASE
|
|
||||||
ENV PACKAGE_RELEASE=${PACKAGE_RELEASE}
|
|
||||||
ARG PACKAGE_DESCRIPTION
|
|
||||||
ENV PACKAGE_DESCRIPTION=${PACKAGE_DESCRIPTION}
|
|
||||||
ARG PACKAGE_MAINTAINER
|
|
||||||
ENV PACKAGE_MAINTAINER=${PACKAGE_MAINTAINER}
|
|
||||||
ARG PACKAGE_HOMEPAGE
|
|
||||||
ENV PACKAGE_HOMEPAGE=${PACKAGE_HOMEPAGE}
|
|
||||||
ARG PACKAGE_LICENSE
|
|
||||||
ENV PACKAGE_LICENSE=${PACKAGE_LICENSE}
|
|
||||||
ARG PACKAGE_ARCH
|
|
||||||
ENV PACKAGE_ARCH=${PACKAGE_ARCH}
|
|
||||||
ARG PACKAGE_PLATFORM
|
|
||||||
ENV PACKAGE_PLATFORM=${PACKAGE_PLATFORM}
|
|
||||||
|
|
||||||
# Copy resources from the context into the container
|
|
||||||
COPY resources /app/resources
|
|
||||||
|
|
||||||
# Default command to build RPMs
|
|
||||||
CMD /app/resources/build.sh
|
|
||||||
@@ -1,63 +1,58 @@
|
|||||||
# Variables
|
# Variables
|
||||||
ROOT_DIR := $(PWD)
|
ROOT_DIR := $(PWD)
|
||||||
BUILD_TOOL := $(ROOT_DIR)/tools/build
|
RPMS_DIR := $(ROOT_DIR)/rpms
|
||||||
DISTRO ?= almalinux/el9
|
REPO_OPTIONS := --disablerepo=* --enablerepo=unkin
|
||||||
|
|
||||||
# Authentication variables (optional)
|
# Automatically find all package/version directories
|
||||||
# VAULT_ROLE_ID - Use AppRole authentication if set
|
PACKAGES := $(shell find $(RPMS_DIR) -mindepth 2 -maxdepth 2 -type d | sed "s|$(RPMS_DIR)/||" | grep -Ev '(scripts|/resources)')
|
||||||
# VAULT_ROLE - Kubernetes role for service account authentication (default: rpmbuilder)
|
|
||||||
|
|
||||||
# Automatically find all packages with metadata.yaml
|
# Default target to build all packages and versions
|
||||||
PACKAGES := $(shell find $(ROOT_DIR)/rpms -mindepth 1 -maxdepth 1 -type d -exec test -f {}/metadata.yaml \; -print | xargs -n1 basename | sort)
|
.PHONY: all list cache build clean
|
||||||
|
all: cache $(PACKAGES)
|
||||||
|
|
||||||
# Default target to build all packages
|
|
||||||
.PHONY: all list build clean
|
|
||||||
all: build-all
|
|
||||||
|
|
||||||
# List all available packages
|
|
||||||
list:
|
list:
|
||||||
@echo "Available packages:"
|
@echo "Builds:"
|
||||||
@for package in $(PACKAGES); do \
|
@for package in $(PACKAGES); do \
|
||||||
echo " $$package"; \
|
echo " '$$package'"; \
|
||||||
done
|
done
|
||||||
|
|
||||||
# Build all packages using Python tool
|
cache:
|
||||||
build-all:
|
echo "Refreshing DNF cache..." && \
|
||||||
@echo "Building all packages using Python tooling for distro $(DISTRO)..."
|
dnf clean all && \
|
||||||
$(BUILD_TOOL) build-all --distro $(DISTRO)
|
dnf makecache
|
||||||
|
|
||||||
# Build all packages using native build (no Docker)
|
# Build specific package/version
|
||||||
build-all-native:
|
|
||||||
@echo "Building all packages natively (no Docker) for distro $(DISTRO)..."
|
|
||||||
$(BUILD_TOOL) build-all --distro $(DISTRO) --native
|
|
||||||
|
|
||||||
# Build all packages using Buildah
|
|
||||||
build-all-buildah:
|
|
||||||
@echo "Building all packages using Buildah for distro $(DISTRO)..."
|
|
||||||
$(BUILD_TOOL) build-all --distro $(DISTRO) --buildah
|
|
||||||
|
|
||||||
# Build specific package using Python tool
|
|
||||||
.PHONY: $(PACKAGES)
|
.PHONY: $(PACKAGES)
|
||||||
$(PACKAGES):
|
$(PACKAGES):
|
||||||
@echo "Building package: $@ for distro $(DISTRO)"
|
@PACKAGE_NAME=$(shell echo $(@) | cut -d/ -f1) && \
|
||||||
$(BUILD_TOOL) build --distro $(DISTRO) $@
|
PACKAGE_VERSION=$(shell echo $(@) | cut -d/ -f2) && \
|
||||||
|
echo "Starting build $$PACKAGE_NAME/$$PACKAGE_VERSION" && \
|
||||||
|
$(MAKE) build PACKAGE_NAME=$$PACKAGE_NAME PACKAGE_VERSION=$$PACKAGE_VERSION
|
||||||
|
|
||||||
# Dry run - show what would be built without building
|
# Build target
|
||||||
dry-run:
|
build:
|
||||||
@echo "Dry run - showing what would be built for distro $(DISTRO):"
|
@mkdir -p $(ROOT_DIR)/dist/$(PACKAGE_NAME)/
|
||||||
$(BUILD_TOOL) build-all --distro $(DISTRO) --dry-run
|
@cd $(RPMS_DIR)/$(PACKAGE_NAME) && \
|
||||||
|
export PACKAGE_RELEASE=$$(cat $(PACKAGE_VERSION)/release) && \
|
||||||
|
export PACKAGE_FULL_NAME=$(PACKAGE_NAME)-$(PACKAGE_VERSION)-$$PACKAGE_RELEASE && \
|
||||||
|
echo "Checking repos for $$PACKAGE_FULL_NAME" && \
|
||||||
|
if dnf info $$PACKAGE_FULL_NAME $(REPO_OPTIONS) > /dev/null 2>&1; then \
|
||||||
|
echo "Skipping build for $(PACKAGE_NAME) version $(PACKAGE_VERSION) (already exists in the repository)"; \
|
||||||
|
else \
|
||||||
|
echo "Building RPM for $(PACKAGE_NAME) version $(PACKAGE_VERSION)"; \
|
||||||
|
docker build \
|
||||||
|
--build-arg PACKAGE_VERSION=$(PACKAGE_VERSION) \
|
||||||
|
--build-arg PACKAGE_RELEASE=$${PACKAGE_RELEASE} \
|
||||||
|
-t $$(echo $(PACKAGE_NAME)-builder \
|
||||||
|
| tr '[:upper:]' '[:lower:]') . && \
|
||||||
|
docker create --name $(PACKAGE_NAME)-$(PACKAGE_VERSION)-builder \
|
||||||
|
$$(echo $(PACKAGE_NAME)-builder | tr '[:upper:]' '[:lower:]') && \
|
||||||
|
docker start -a $(PACKAGE_NAME)-$(PACKAGE_VERSION)-builder && \
|
||||||
|
docker cp $(PACKAGE_NAME)-$(PACKAGE_VERSION)-builder:/app/dist/. $(ROOT_DIR)/dist/$(PACKAGE_NAME)/ && \
|
||||||
|
docker rm $(PACKAGE_NAME)-$(PACKAGE_VERSION)-builder; \
|
||||||
|
fi
|
||||||
|
|
||||||
# Clean target
|
# Clean target
|
||||||
clean:
|
clean:
|
||||||
@echo "Cleaning build artifacts..."
|
@echo "Cleaning build artifacts..."
|
||||||
rm -rf $(ROOT_DIR)/dist
|
rm -rf $(ROOT_DIR)/dist
|
||||||
|
|
||||||
# Update packages from GitHub releases
|
|
||||||
update:
|
|
||||||
@echo "Checking for package updates from GitHub releases..."
|
|
||||||
$(ROOT_DIR)/tools/update-gh --all
|
|
||||||
|
|
||||||
# Update specific package from GitHub
|
|
||||||
update-%:
|
|
||||||
@echo "Checking for updates for package: $*"
|
|
||||||
$(ROOT_DIR)/tools/update-gh --package $*
|
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
arch: amd64
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 0.2.12
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 0.2.12
|
|
||||||
description: A runner for Gitea based on act.
|
|
||||||
github: unknown/act_runner
|
|
||||||
homepage: https://gitea.com/gitea/act_runner
|
|
||||||
license: MIT
|
|
||||||
maintainer: Gitea
|
|
||||||
name: act_runner
|
|
||||||
platform: linux
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
curl -L --output act_runner-linux-amd64 https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/gitea-dl/act_runner/${PACKAGE_VERSION}/act_runner-${PACKAGE_VERSION}-linux-amd64
|
|
||||||
|
|
||||||
# Process the nfpm.yaml template with environment variables
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- act_runner
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- act_runner
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/act_runner-linux-amd64
|
|
||||||
dst: /usr/bin/act_runner
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
arch: amd64
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 0.8.0
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 0.8.0
|
|
||||||
description: Prometheus exporter for BIND
|
|
||||||
github: prometheus-community/bind_exporter
|
|
||||||
homepage: https://github.com/prometheus-community/bind_exporter
|
|
||||||
license: Apache-2.0 license
|
|
||||||
maintainer: Prometheus
|
|
||||||
name: bind_exporter
|
|
||||||
platform: linux
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download the required files
|
|
||||||
curl --output - -L https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/prometheus-community/bind_exporter/releases/download/v${PACKAGE_VERSION}/bind_exporter-${PACKAGE_VERSION}.linux-amd64.tar.gz | tar --strip-components=1 -xzf -
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- bind_exporter
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- bind_exporter
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/bind_exporter
|
|
||||||
dst: /usr/bin/bind_exporter
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
name: boilerplate
|
|
||||||
github: gruntwork-io/boilerplate
|
|
||||||
description: Boilerplate is a tool for generating files and folders (boilerplate)
|
|
||||||
from a set of templates.
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: Gruntwork
|
|
||||||
homepage: https://github.com/gruntwork-io/boilerplate
|
|
||||||
license: MIT
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 0.10.1
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 0.10.1
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download the required files
|
|
||||||
wget -O /app/boilerplate https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/gruntwork-io/boilerplate/releases/download/v${PACKAGE_VERSION}/boilerplate_linux_amd64
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- boilerplate
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- boilerplate
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/boilerplate
|
|
||||||
dst: /usr/bin/boilerplate
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
arch: amd64
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 2.1.120
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 2.1.120
|
|
||||||
claude_ai: true
|
|
||||||
description: Claude Code - Anthropic's agentic AI coding tool
|
|
||||||
homepage: https://claude.ai/code
|
|
||||||
license: Proprietary
|
|
||||||
maintainer: Anthropic
|
|
||||||
name: claude-code
|
|
||||||
platform: linux
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download claude-code binary
|
|
||||||
wget -O /app/claude https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/claude-ai/claude-code-releases/${PACKAGE_VERSION}/linux-x64/claude
|
|
||||||
chmod +x /app/claude
|
|
||||||
|
|
||||||
# Process the nfpm.yaml template with environment variables
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- claude-code
|
|
||||||
- claude
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- claude-code
|
|
||||||
- claude
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/claude
|
|
||||||
dst: /usr/bin/claude
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
1
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
# Start with the AlmaLinux 8.10 base image
|
||||||
|
FROM git.query.consul/unkin/almalinux8-rpmbuilder:latest
|
||||||
|
|
||||||
|
# Create output directory for RPMs
|
||||||
|
RUN mkdir -p /app/dist
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
ARG PACKAGE_RELEASE
|
||||||
|
ENV PACKAGE_RELEASE=${PACKAGE_RELEASE}
|
||||||
|
ARG PACKAGE_VERSION
|
||||||
|
ENV PACKAGE_VERSION=${PACKAGE_VERSION}
|
||||||
|
|
||||||
|
# Copy nfpm.yaml from the context into the container
|
||||||
|
COPY nfpm.yaml /app/nfpm.yaml
|
||||||
|
COPY scripts /app/scripts
|
||||||
|
|
||||||
|
# Download the required files
|
||||||
|
RUN dnf install -y unzip && \
|
||||||
|
wget -O /app/cni-plugins-linux-amd64.tgz https://github.com/containernetworking/plugins/releases/download/v${PACKAGE_VERSION}/cni-plugins-linux-amd64-v${PACKAGE_VERSION}.tgz && \
|
||||||
|
tar xf cni-plugins-linux-amd64.tgz
|
||||||
|
|
||||||
|
# Default command to build RPMs
|
||||||
|
CMD nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
name: cni-plugins
|
|
||||||
github: containernetworking/plugins
|
|
||||||
description: Some reference and example networking plugins, maintained by the CNI
|
|
||||||
team.
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: ContainerNetworking
|
|
||||||
homepage: https://github.com/containernetworking/plugins
|
|
||||||
license: Apache-2.0
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 1.9.0
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 1.9.0
|
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
# nfpm.yaml
|
# nfpm.yaml
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
name: cni-plugins
|
||||||
version: ${PACKAGE_VERSION}
|
version: ${PACKAGE_VERSION}
|
||||||
release: ${PACKAGE_RELEASE}
|
release: ${PACKAGE_RELEASE}
|
||||||
arch: ${PACKAGE_ARCH}
|
arch: amd64
|
||||||
platform: ${PACKAGE_PLATFORM}
|
platform: linux
|
||||||
section: default
|
section: default
|
||||||
priority: extra
|
priority: extra
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
description: "Some reference and example networking plugins, maintained by the CNI team."
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
maintainer: ContainerNetworking
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
homepage: https://github.com/containernetworking/plugins
|
||||||
license: ${PACKAGE_LICENSE}
|
license: Apache-2.0
|
||||||
|
|
||||||
disable_globbing: false
|
disable_globbing: false
|
||||||
|
|
||||||
@@ -131,7 +131,7 @@ contents:
|
|||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
# Scripts to run during installation/removal (optional)
|
||||||
scripts:
|
scripts:
|
||||||
preinstall: /app/resources/scripts/preinstall.sh
|
preinstall: ./scripts/preinstall.sh
|
||||||
# postinstall: ./scripts/postinstall.sh
|
# postinstall: ./scripts/postinstall.sh
|
||||||
# preremove: ./scripts/preremove.sh
|
# preremove: ./scripts/preremove.sh
|
||||||
# postremove: ./scripts/postremove.sh
|
# postremove: ./scripts/postremove.sh
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download and extract cni-plugins
|
|
||||||
wget -O /app/cni-plugins-linux-amd64.tgz https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/containernetworking/plugins/releases/download/v${PACKAGE_VERSION}/cni-plugins-linux-amd64-v${PACKAGE_VERSION}.tgz
|
|
||||||
tar xf cni-plugins-linux-amd64.tgz
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
arch: amd64
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 1.7.1
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 1.7.1
|
|
||||||
description: Plugin for Consul on Kubernetes to allow configuring traffic redirection rules without escalated container privileges.
|
|
||||||
github: unknown/consul-cni
|
|
||||||
homepage: https://hashicorp.com
|
|
||||||
license: Mozilla Public License, version 2.0
|
|
||||||
maintainer: Hashicorp
|
|
||||||
name: consul-cni
|
|
||||||
platform: linux
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
dnf install -y unzip
|
|
||||||
|
|
||||||
# Download and extract consul-cni
|
|
||||||
curl -L -o /app/consul-cni.zip https://releases.hashicorp.com/consul-cni/${PACKAGE_VERSION}/consul-cni_${PACKAGE_VERSION}_linux_amd64.zip
|
|
||||||
unzip consul-cni.zip
|
|
||||||
|
|
||||||
# Process the nfpm.yaml template with environment variables
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- consul-cni
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/consul-cni
|
|
||||||
dst: /opt/cni/bin/consul-cni
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
scripts:
|
|
||||||
preinstall: /app/resources/scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
mkdir -p /opt/cni/bin
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
1
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
# Start with the AlmaLinux 8.10 base image
|
||||||
|
FROM git.query.consul/unkin/almalinux8-rpmbuilder:latest
|
||||||
|
|
||||||
|
# Create output directory for RPMs
|
||||||
|
RUN mkdir -p /app/dist
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
ARG PACKAGE_RELEASE
|
||||||
|
ENV PACKAGE_RELEASE=${PACKAGE_RELEASE}
|
||||||
|
ARG PACKAGE_VERSION
|
||||||
|
ENV PACKAGE_VERSION=${PACKAGE_VERSION}
|
||||||
|
|
||||||
|
# Copy nfpm.yaml from the context into the container
|
||||||
|
COPY nfpm.yaml /app/nfpm.yaml
|
||||||
|
|
||||||
|
# Download the required files
|
||||||
|
RUN dnf install -y unzip && \
|
||||||
|
wget -O /app/consul.zip https://releases.hashicorp.com/consul/${PACKAGE_VERSION}/consul_${PACKAGE_VERSION}_linux_amd64.zip && \
|
||||||
|
unzip consul.zip
|
||||||
|
|
||||||
|
# Default command to build RPMs
|
||||||
|
CMD nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
name: consul
|
|
||||||
github: hashicorp/consul
|
|
||||||
description: Consul is a distributed, highly available, and data center aware solution
|
|
||||||
to connect and configure applications across dynamic, distributed infrastructure.
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: HashiCorp
|
|
||||||
homepage: https://github.com/hashicorp/consul
|
|
||||||
license: BUSL-1.1
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 1.22.2
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 1.22.2
|
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
# nfpm.yaml
|
# nfpm.yaml
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
name: consul
|
||||||
version: ${PACKAGE_VERSION}
|
version: ${PACKAGE_VERSION}
|
||||||
release: ${PACKAGE_RELEASE}
|
release: ${PACKAGE_RELEASE}
|
||||||
arch: ${PACKAGE_ARCH}
|
arch: amd64
|
||||||
platform: ${PACKAGE_PLATFORM}
|
platform: linux
|
||||||
section: default
|
section: default
|
||||||
priority: extra
|
priority: extra
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
description: "Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure."
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
maintainer: HashiCorp
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
homepage: https://github.com/hashicorp/consul
|
||||||
license: ${PACKAGE_LICENSE}
|
license: BUSL-1.1
|
||||||
|
|
||||||
disable_globbing: false
|
disable_globbing: false
|
||||||
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
dnf install -y unzip
|
|
||||||
|
|
||||||
# Download and extract consul
|
|
||||||
curl -L -o /app/consul.zip https://releases.hashicorp.com/consul/${PACKAGE_VERSION}/consul_${PACKAGE_VERSION}_linux_amd64.zip
|
|
||||||
unzip consul.zip
|
|
||||||
|
|
||||||
# Process the nfpm.yaml template with environment variables
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
2
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
# Start with the AlmaLinux 8.10 base image
|
||||||
|
FROM git.query.consul/unkin/almalinux8-rpmbuilder:latest
|
||||||
|
|
||||||
|
# Create output directory for RPMs
|
||||||
|
RUN mkdir -p /app/dist
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
ARG PACKAGE_RELEASE
|
||||||
|
ENV PACKAGE_RELEASE=${PACKAGE_RELEASE}
|
||||||
|
ARG PACKAGE_VERSION
|
||||||
|
ENV PACKAGE_VERSION=${PACKAGE_VERSION}
|
||||||
|
|
||||||
|
# Copy nfpm.yaml from the context into the container
|
||||||
|
COPY nfpm.yaml /app/nfpm.yaml
|
||||||
|
|
||||||
|
# Download the required files
|
||||||
|
RUN wget -O /app/etcd-v${PACKAGE_VERSION}-linux-amd64.tar.gz https://github.com/etcd-io/etcd/releases/download/v${PACKAGE_VERSION}/etcd-v${PACKAGE_VERSION}-linux-amd64.tar.gz && \
|
||||||
|
tar xf /app/etcd-v${PACKAGE_VERSION}-linux-amd64.tar.gz && \
|
||||||
|
mv /app/etcd-v${PACKAGE_VERSION}-linux-amd64/* /app/
|
||||||
|
|
||||||
|
# Default command to build RPMs
|
||||||
|
CMD nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
name: etcd
|
|
||||||
github: etcd-io/etcd
|
|
||||||
description: A distributed, reliable key-value store for the most critical data of
|
|
||||||
a distributed system.
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: https://etcd.io/
|
|
||||||
homepage: https://etcd.io/
|
|
||||||
license: Apache-2.0
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 3.6.7
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 3.6.7
|
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
# nfpm.yaml
|
# nfpm.yaml
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
name: etcd
|
||||||
version: ${PACKAGE_VERSION}
|
version: ${PACKAGE_VERSION}
|
||||||
release: ${PACKAGE_RELEASE}
|
release: ${PACKAGE_RELEASE}
|
||||||
arch: ${PACKAGE_ARCH}
|
arch: amd64
|
||||||
platform: ${PACKAGE_PLATFORM}
|
platform: linux
|
||||||
section: default
|
section: default
|
||||||
priority: extra
|
priority: extra
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
description: "A distributed, reliable key-value store for the most critical data of a distributed system."
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
maintainer: https://etcd.io/
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
homepage: https://etcd.io/
|
||||||
license: ${PACKAGE_LICENSE}
|
license: Apache-2.0
|
||||||
|
|
||||||
disable_globbing: false
|
disable_globbing: false
|
||||||
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download and extract etcd
|
|
||||||
wget -O /app/etcd-v${PACKAGE_VERSION}-linux-amd64.tar.gz https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/etcd-io/etcd/releases/download/v${PACKAGE_VERSION}/etcd-v${PACKAGE_VERSION}-linux-amd64.tar.gz
|
|
||||||
tar xf /app/etcd-v${PACKAGE_VERSION}-linux-amd64.tar.gz
|
|
||||||
mv /app/etcd-v${PACKAGE_VERSION}-linux-amd64/* /app/
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
name: exportarr
|
|
||||||
github: onedr0p/exportarr
|
|
||||||
description: AIO Prometheus Exporter for Sabnzbd, Bazarr, Prowlarr, Lidarr, Readarr,
|
|
||||||
Radarr, and Sonarr
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: onedr0p
|
|
||||||
homepage: https://github.com/onedr0p/exportarr
|
|
||||||
license: MIT license
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 2.3.0
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 2.3.0
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download the required files
|
|
||||||
curl --output - -L https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/onedr0p/exportarr/releases/download/v${PACKAGE_VERSION}/exportarr_${PACKAGE_VERSION}_linux_amd64.tar.gz | tar --strip-components=1 -xzf -
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- exportarr
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- exportarr
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/exportarr
|
|
||||||
dst: /usr/bin/exportarr
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
name: frr_exporter
|
|
||||||
github: tynany/frr_exporter
|
|
||||||
description: Prometheus exporter for Free Range Routing
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: Prometheus
|
|
||||||
homepage: https://github.com/tynany/frr_exporter
|
|
||||||
license: MIT
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 1.9.0
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 1.9.0
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
curl --output - -L https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/tynany/frr_exporter/releases/download/v${PACKAGE_VERSION}/frr_exporter-${PACKAGE_VERSION}.linux-amd64.tar.gz | tar --strip-components=1 -xzf -
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- frr_exporter
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- frr_exporter
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/frr_exporter
|
|
||||||
dst: /usr/bin/frr_exporter
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
arch: amd64
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 0.9.10
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 0.9.10
|
|
||||||
description: An r10k fork written in Go, designed to work somwhat similar like puppetlabs/r10k.
|
|
||||||
github: xorpaul/g10k
|
|
||||||
homepage: https://github.com/xorpaul/g10k
|
|
||||||
license: Apache2.0
|
|
||||||
maintainer: xorpaul
|
|
||||||
name: g10k
|
|
||||||
platform: linux
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download and extract g10k
|
|
||||||
wget -O /app/g10k.zip https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/xorpaul/g10k/releases/download/v${PACKAGE_VERSION}/g10k-v${PACKAGE_VERSION}-linux-amd64.zip
|
|
||||||
pushd /app
|
|
||||||
unzip /app/g10k.zip
|
|
||||||
popd
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- g10k
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- g10k
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/g10k
|
|
||||||
dst: /usr/bin/g10k
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
name: helm
|
|
||||||
github: helm/helm
|
|
||||||
description: The Kubernetes Package Manager
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: Helm Contributors
|
|
||||||
homepage: https://github.com/helm/helm
|
|
||||||
license: Apache-2.0 license
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 4.0.5
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 4.0.5
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download the required files
|
|
||||||
curl -L -o /app/helm.tar.gz https://get.helm.sh/helm-v${PACKAGE_VERSION}-linux-amd64.tar.gz
|
|
||||||
|
|
||||||
# Extract the binary
|
|
||||||
cd /app
|
|
||||||
tar -xzf helm.tar.gz
|
|
||||||
|
|
||||||
# Make the binary executable
|
|
||||||
chmod +x /app/linux-amd64/helm
|
|
||||||
|
|
||||||
# Process the nfpm.yaml template with environment variables
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
---
|
|
||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- helm
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- helm
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/linux-amd64/helm
|
|
||||||
dst: /usr/bin/helm
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
name: helmfile
|
|
||||||
github: helmfile/helmfile
|
|
||||||
description: A declarative spec for deploying Helm charts. It lets you keep a directory
|
|
||||||
of chart value files and maintain changes in version control; apply CI/CD to configuration
|
|
||||||
changes; and periodically sync to avoid skew in environments.
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: Helmfile Contributors
|
|
||||||
homepage: https://github.com/helmfile/helmfile
|
|
||||||
license: MIT
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 1.2.3
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 1.2.3
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download the required files
|
|
||||||
curl -L -o /app/helmfile.tar.gz https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/helmfile/helmfile/releases/download/v${PACKAGE_VERSION}/helmfile_${PACKAGE_VERSION}_linux_amd64.tar.gz
|
|
||||||
|
|
||||||
# Extract the binary
|
|
||||||
cd /app
|
|
||||||
tar -xzf helmfile.tar.gz
|
|
||||||
|
|
||||||
# Make the binary executable
|
|
||||||
chmod +x /app/helmfile
|
|
||||||
|
|
||||||
# Process the nfpm.yaml template with environment variables
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
---
|
|
||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- helmfile
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- helmfile
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/helmfile
|
|
||||||
dst: /usr/bin/helmfile
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
1
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
# Start with the AlmaLinux 8.10 base image
|
||||||
|
FROM git.query.consul/unkin/almalinux9-rpmbuilder:latest
|
||||||
|
|
||||||
|
# Create output directory for RPMs
|
||||||
|
RUN mkdir -p /app/dist
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
ARG PACKAGE_RELEASE
|
||||||
|
ENV PACKAGE_RELEASE=${PACKAGE_RELEASE}
|
||||||
|
ARG PACKAGE_VERSION
|
||||||
|
ENV PACKAGE_VERSION=${PACKAGE_VERSION}
|
||||||
|
|
||||||
|
COPY scripts /app/scripts
|
||||||
|
COPY resources /app/resources
|
||||||
|
|
||||||
|
# Download the required files
|
||||||
|
RUN dnf install -y \
|
||||||
|
unzip \
|
||||||
|
libtool \
|
||||||
|
autoconf \
|
||||||
|
automake \
|
||||||
|
gcc \
|
||||||
|
make \
|
||||||
|
git \
|
||||||
|
go \
|
||||||
|
cowsql-devel \
|
||||||
|
libacl-devel \
|
||||||
|
libcap-devel \
|
||||||
|
libseccomp-devel \
|
||||||
|
libuv-devel \
|
||||||
|
raft-devel \
|
||||||
|
libudev-devel \
|
||||||
|
lxc-devel \
|
||||||
|
libsqlite3x-devel \
|
||||||
|
sqlite-devel \
|
||||||
|
systemd-rpm-macros \
|
||||||
|
bash-completion \
|
||||||
|
gettext \
|
||||||
|
help2man \
|
||||||
|
wget && \
|
||||||
|
wget -O /app/incus.tar.gz https://github.com/lxc/incus/archive/refs/tags/v${PACKAGE_VERSION}.tar.gz && tar -C /app -xf incus.tar.gz && \
|
||||||
|
wget https://go.dev/dl/go1.24.1.linux-amd64.tar.gz && rm -rf /usr/local/go && tar -C /usr/local -xzf go1.24.1.linux-amd64.tar.gz && \
|
||||||
|
export PATH=/usr/local/go/bin:$PATH && \
|
||||||
|
pushd /app/incus-${PACKAGE_VERSION} && \
|
||||||
|
make deps && \
|
||||||
|
export CGO_CFLAGS="-I/root/go/deps/raft/include/ -I/root/go/deps/cowsql/include/" && \
|
||||||
|
export CGO_LDFLAGS="-L/root/go/deps/raft/.libs -L/root/go/deps/cowsql/.libs/" && \
|
||||||
|
export LD_LIBRARY_PATH="/root/go/deps/raft/.libs/:/root/go/deps/cowsql/.libs/" && \
|
||||||
|
export CGO_LDFLAGS_ALLOW="(-Wl,-wrap,pthread_create)|(-Wl,-z,now)" && \
|
||||||
|
make build
|
||||||
|
|
||||||
|
# Default command to build RPMs
|
||||||
|
CMD /app/scripts/build-packages.sh
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
name: incus
|
|
||||||
github: lxc/incus
|
|
||||||
description: Powerful system container and virtual machine manager
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: unkin
|
|
||||||
homepage: https://linuxcontainers.org/incus/
|
|
||||||
license: Apache-2.0
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 6.20.0
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Install build dependencies
|
|
||||||
dnf makecache && dnf install -y \
|
|
||||||
unzip \
|
|
||||||
libtool \
|
|
||||||
autoconf \
|
|
||||||
automake \
|
|
||||||
gcc \
|
|
||||||
make \
|
|
||||||
git \
|
|
||||||
go \
|
|
||||||
cowsql-devel \
|
|
||||||
libacl-devel \
|
|
||||||
libcap-devel \
|
|
||||||
libseccomp-devel \
|
|
||||||
libuv-devel \
|
|
||||||
raft-devel \
|
|
||||||
libudev-devel \
|
|
||||||
lxc-devel \
|
|
||||||
libsqlite3x-devel \
|
|
||||||
sqlite-devel \
|
|
||||||
systemd-rpm-macros \
|
|
||||||
bash-completion \
|
|
||||||
gettext \
|
|
||||||
help2man \
|
|
||||||
curl-minimal
|
|
||||||
|
|
||||||
# Download and extract incus source
|
|
||||||
curl -L -o /app/incus.tar.gz https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/lxc/incus/archive/refs/tags/v${PACKAGE_VERSION}.tar.gz
|
|
||||||
tar -C /app -xf incus.tar.gz
|
|
||||||
|
|
||||||
# Install specific Go version
|
|
||||||
curl -L -O https://go.dev/dl/go1.24.1.linux-amd64.tar.gz
|
|
||||||
rm -rf /usr/local/go
|
|
||||||
tar -C /usr/local -xzf go1.24.1.linux-amd64.tar.gz
|
|
||||||
|
|
||||||
# Set up Go environment and build incus
|
|
||||||
export PATH=/usr/local/go/bin:$PATH
|
|
||||||
pushd /app/incus-${PACKAGE_VERSION}
|
|
||||||
make deps
|
|
||||||
export CGO_CFLAGS="-I/root/go/deps/raft/include/ -I/root/go/deps/cowsql/include/"
|
|
||||||
export CGO_LDFLAGS="-L/root/go/deps/raft/.libs -L/root/go/deps/cowsql/.libs/"
|
|
||||||
export LD_LIBRARY_PATH="/root/go/deps/raft/.libs/:/root/go/deps/cowsql/.libs/"
|
|
||||||
export CGO_LDFLAGS_ALLOW="(-Wl,-wrap,pthread_create)|(-Wl,-z,now)"
|
|
||||||
make build
|
|
||||||
popd
|
|
||||||
|
|
||||||
# Build the RPMs
|
|
||||||
nfpm pkg --config /app/resources/nfpm_incus.yaml --target /app/dist --packager rpm
|
|
||||||
nfpm pkg --config /app/resources/nfpm_incus-client.yaml --target /app/dist --packager rpm
|
|
||||||
nfpm pkg --config /app/resources/nfpm_incus-tools.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -92,7 +92,7 @@ contents:
|
|||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
# Scripts to run during installation/removal (optional)
|
||||||
scripts:
|
scripts:
|
||||||
postinstall: ./resources/scripts/postinstall.sh
|
postinstall: ./scripts/postinstall.sh
|
||||||
preremove: ./resources/scripts/preremove.sh
|
preremove: ./scripts/preremove.sh
|
||||||
postremove: ./resources/scripts/postremove.sh
|
postremove: ./scripts/postremove.sh
|
||||||
preinstall: ./resources/scripts/preinstall.sh
|
preinstall: ./scripts/preinstall.sh
|
||||||
|
|||||||
Executable → Regular
Executable
+4
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
nfpm pkg --config /app/resources/nfpm_incus.yaml --target /app/dist --packager rpm && \
|
||||||
|
nfpm pkg --config /app/resources/nfpm_incus-client.yaml --target /app/dist --packager rpm && \
|
||||||
|
nfpm pkg --config /app/resources/nfpm_incus-tools.yaml --target /app/dist --packager rpm
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
3
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
# Start with the AlmaLinux 8.10 base image
|
||||||
|
FROM git.query.consul/unkin/almalinux8-rpmbuilder:latest
|
||||||
|
|
||||||
|
# Create output directory for RPMs
|
||||||
|
RUN mkdir -p /app/dist
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
ARG PACKAGE_RELEASE
|
||||||
|
ENV PACKAGE_RELEASE=${PACKAGE_RELEASE}
|
||||||
|
ARG PACKAGE_VERSION
|
||||||
|
ENV PACKAGE_VERSION=${PACKAGE_VERSION}
|
||||||
|
|
||||||
|
# Copy resources from the context into the container
|
||||||
|
COPY resources /app/resources
|
||||||
|
|
||||||
|
# Download the required files
|
||||||
|
RUN mkdir -p /root/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS} && \
|
||||||
|
spectool -g -R /app/resources/jellyfin-ffmpeg-bin_${PACKAGE_VERSION}.spec && \
|
||||||
|
rpmbuild -ba /app/resources/jellyfin-ffmpeg-bin_${PACKAGE_VERSION}.spec && \
|
||||||
|
cp /root/rpmbuild/RPMS/x86_64/jellyfin-ffmpeg-bin-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.*.rpm /app/dist/ && \
|
||||||
|
cp /root/rpmbuild/SRPMS/jellyfin-ffmpeg-bin-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.*.rpm /app/dist
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
name: jellyfin-ffmpeg-bin
|
|
||||||
github: jellyfin/jellyfin-ffmpeg
|
|
||||||
description: FFmpeg binary package optimized for Jellyfin media server
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: unkin
|
|
||||||
homepage: https://github.com/jellyfin/jellyfin-ffmpeg
|
|
||||||
license: GPL-3.0
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1.1
|
|
||||||
version: 7.1.3
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1.1
|
|
||||||
version: 7.1.3
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
# Setup rpmbuild directory structure
|
|
||||||
mkdir -p /root/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
|
|
||||||
|
|
||||||
# Process the spec file template with environment variables
|
|
||||||
envsubst < /app/resources/jellyfin-ffmpeg-bin.spec.template > /root/rpmbuild/SPECS/jellyfin-ffmpeg-bin.spec
|
|
||||||
|
|
||||||
# Download source files using spectool
|
|
||||||
spectool -g -R /root/rpmbuild/SPECS/jellyfin-ffmpeg-bin.spec
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
rpmbuild -ba /root/rpmbuild/SPECS/jellyfin-ffmpeg-bin.spec
|
|
||||||
|
|
||||||
# Copy the built RPMs to output directory
|
|
||||||
cp /root/rpmbuild/RPMS/x86_64/jellyfin-ffmpeg-bin-*.rpm /app/dist/
|
|
||||||
cp /root/rpmbuild/SRPMS/jellyfin-ffmpeg-bin-*.rpm /app/dist
|
|
||||||
+8
-8
@@ -1,20 +1,20 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%define _missing_build_ids_terminate_build 0
|
%define _missing_build_ids_terminate_build 0
|
||||||
%global jellyfin_release 1
|
%global jellyfin_release 3
|
||||||
|
|
||||||
|
|
||||||
Name: ${PACKAGE_NAME}
|
Name: jellyfin-ffmpeg-bin
|
||||||
Version: ${PACKAGE_VERSION}
|
Version: 7.1.1
|
||||||
Release: ${PACKAGE_RELEASE}
|
Release: %{jellyfin_release}%{?dist}
|
||||||
Summary: FFmpeg for Jellyfin with custom extensions and enhancements
|
Summary: FFmpeg for Jellyfin with custom extensions and enhancements
|
||||||
|
|
||||||
|
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
URL: https://github.com/jellyfin/jellyfin-ffmpeg
|
URL: https://github.com/jellyfin/jellyfin-ffmpeg
|
||||||
Source0: https://github.com/jellyfin/jellyfin-ffmpeg/releases/download/v${PACKAGE_VERSION}-1/jellyfin-ffmpeg_${PACKAGE_VERSION}-1_portable_linux64-gpl.tar.xz
|
Source0: https://github.com/jellyfin/jellyfin-ffmpeg/releases/download/v%{version}-%{jellyfin_release}/jellyfin-ffmpeg_%{version}-%{jellyfin_release}_portable_linux64-gpl.tar.xz
|
||||||
Source1: https://github.com/jellyfin/jellyfin-ffmpeg/releases/download/v${PACKAGE_VERSION}-1/jellyfin-ffmpeg_${PACKAGE_VERSION}-1_portable_linuxarm64-gpl.tar.xz
|
Source1: https://github.com/jellyfin/jellyfin-ffmpeg/releases/download/v%{version}-%{jellyfin_release}/jellyfin-ffmpeg_%{version}-%{jellyfin_release}_portable_linuxarm64-gpl.tar.xz
|
||||||
Source2: https://raw.githubusercontent.com/jellyfin/jellyfin-ffmpeg/v${PACKAGE_VERSION}-1/LICENSE.md
|
Source2: https://raw.githubusercontent.com/jellyfin/jellyfin-ffmpeg/v%{version}-%{jellyfin_release}/LICENSE.md
|
||||||
Source3: https://raw.githubusercontent.com/jellyfin/jellyfin-ffmpeg/v${PACKAGE_VERSION}-1/README.md
|
Source3: https://raw.githubusercontent.com/jellyfin/jellyfin-ffmpeg/v%{version}-%{jellyfin_release}/README.md
|
||||||
|
|
||||||
|
|
||||||
ExclusiveArch: x86_64 aarch64
|
ExclusiveArch: x86_64 aarch64
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
1
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
# Start with the AlmaLinux 8.10 base image
|
||||||
|
FROM git.query.consul/unkin/almalinux8-rpmbuilder:latest
|
||||||
|
|
||||||
|
# Create output directory for RPMs
|
||||||
|
RUN mkdir -p /app/dist
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
ARG PACKAGE_RELEASE
|
||||||
|
ENV PACKAGE_RELEASE=${PACKAGE_RELEASE}
|
||||||
|
ARG PACKAGE_VERSION
|
||||||
|
ENV PACKAGE_VERSION=${PACKAGE_VERSION}
|
||||||
|
|
||||||
|
# Copy resources from the context into the container
|
||||||
|
COPY resources /app/resources
|
||||||
|
|
||||||
|
# Download the required files
|
||||||
|
RUN mkdir -p /root/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS} && \
|
||||||
|
dnf install dotnet-sdk-8.0 -y && \
|
||||||
|
spectool -g -R /app/resources/jellyfin-server_${PACKAGE_VERSION}.spec && \
|
||||||
|
cp /app/resources/fix-envfile-path.patch /root/rpmbuild/SOURCES/fix-envfile-path.patch && \
|
||||||
|
cp /app/resources/tmpfiles.conf /root/rpmbuild/SOURCES/tmpfiles.conf && \
|
||||||
|
rpmbuild -ba /app/resources/jellyfin-server_${PACKAGE_VERSION}.spec && \
|
||||||
|
cp /root/rpmbuild/RPMS/x86_64/jellyfin-server-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.x86_64.rpm /app/dist/ && \
|
||||||
|
cp /root/rpmbuild/SRPMS/jellyfin-server-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.src.rpm /app/dist/
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 10.10.7
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 10.10.7
|
|
||||||
description: jellyfin-server package
|
|
||||||
github: unknown/jellyfin-server
|
|
||||||
name: jellyfin-server
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
# Setup rpmbuild directory structure
|
|
||||||
mkdir -p /root/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
|
|
||||||
|
|
||||||
# Install .NET SDK for building
|
|
||||||
dnf install dotnet-sdk-8.0 -y
|
|
||||||
|
|
||||||
# Download source files using spectool
|
|
||||||
spectool -g -R /app/resources/jellyfin-server_${PACKAGE_VERSION}.spec
|
|
||||||
|
|
||||||
# Copy additional files to SOURCES
|
|
||||||
cp /app/resources/fix-envfile-path.patch /root/rpmbuild/SOURCES/fix-envfile-path.patch
|
|
||||||
cp /app/resources/tmpfiles.conf /root/rpmbuild/SOURCES/tmpfiles.conf
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
rpmbuild -ba /app/resources/jellyfin-server_${PACKAGE_VERSION}.spec
|
|
||||||
|
|
||||||
# Copy the built RPMs to output directory
|
|
||||||
cp /root/rpmbuild/RPMS/x86_64/jellyfin-server-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.x86_64.rpm /app/dist/
|
|
||||||
cp /root/rpmbuild/SRPMS/jellyfin-server-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.src.rpm /app/dist/
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
1
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
# Start with the AlmaLinux 8.10 base image
|
||||||
|
FROM git.query.consul/unkin/almalinux8-rpmbuilder:latest
|
||||||
|
|
||||||
|
# Create output directory for RPMs
|
||||||
|
RUN mkdir -p /app/dist
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
ARG PACKAGE_RELEASE
|
||||||
|
ENV PACKAGE_RELEASE=${PACKAGE_RELEASE}
|
||||||
|
ARG PACKAGE_VERSION
|
||||||
|
ENV PACKAGE_VERSION=${PACKAGE_VERSION}
|
||||||
|
|
||||||
|
# Copy resources from the context into the container
|
||||||
|
COPY resources /app/resources
|
||||||
|
|
||||||
|
# Download the required files
|
||||||
|
RUN mkdir -p /root/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS} && \
|
||||||
|
dnf module enable nodejs:20 -y && \
|
||||||
|
dnf install nodejs npm -y && \
|
||||||
|
spectool -g -R /app/resources/jellyfin-web_${PACKAGE_VERSION}.spec && \
|
||||||
|
rpmbuild -ba /app/resources/jellyfin-web_${PACKAGE_VERSION}.spec && \
|
||||||
|
cp /root/rpmbuild/RPMS/noarch/jellyfin-web-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.noarch.rpm /app/dist/ && \
|
||||||
|
cp /root/rpmbuild/SRPMS/jellyfin-web-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.src.rpm /app/dist/
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 10.10.7
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 10.10.7
|
|
||||||
description: jellyfin-web package
|
|
||||||
github: unknown/jellyfin-web
|
|
||||||
name: jellyfin-web
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
# Setup rpmbuild directory structure
|
|
||||||
mkdir -p /root/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
|
|
||||||
|
|
||||||
# Install Node.js for building
|
|
||||||
dnf module enable nodejs:20 -y
|
|
||||||
dnf install nodejs npm -y
|
|
||||||
|
|
||||||
# Download source files using spectool
|
|
||||||
spectool -g -R /app/resources/jellyfin-web_${PACKAGE_VERSION}.spec
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
rpmbuild -ba /app/resources/jellyfin-web_${PACKAGE_VERSION}.spec
|
|
||||||
|
|
||||||
# Copy the built RPMs to output directory
|
|
||||||
cp /root/rpmbuild/RPMS/noarch/jellyfin-web-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.noarch.rpm /app/dist/
|
|
||||||
cp /root/rpmbuild/SRPMS/jellyfin-web-${PACKAGE_VERSION}-${PACKAGE_RELEASE}.src.rpm /app/dist/
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
arch: amd64
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 0.16.0
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 0.16.0
|
|
||||||
description: Jsonnet Language Server Protocol implementation for the Jsonnet templating language.
|
|
||||||
github: grafana/jsonnet-language-server
|
|
||||||
homepage: https://github.com/grafana/jsonnet-language-server
|
|
||||||
license: Apache-2.0
|
|
||||||
maintainer: Grafana Labs
|
|
||||||
name: jsonnet-language-server
|
|
||||||
platform: linux
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download the required files
|
|
||||||
curl -L -o /app/jsonnet-language-server https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/grafana/jsonnet-language-server/releases/download/v${PACKAGE_VERSION}/jsonnet-language-server_${PACKAGE_VERSION}_linux_amd64
|
|
||||||
|
|
||||||
# Make the binary executable
|
|
||||||
chmod +x /app/jsonnet-language-server
|
|
||||||
|
|
||||||
# Process the nfpm.yaml template with environment variables
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
---
|
|
||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- jsonnet-language-server
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- jsonnet-language-server
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/jsonnet-language-server
|
|
||||||
dst: /usr/bin/jsonnet-language-server
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
arch: amd64
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 0.21.0
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 0.21.0
|
|
||||||
description: Linter for Jsonnet
|
|
||||||
github: google/go-jsonnet
|
|
||||||
homepage: https://github.com/google/go-jsonnet
|
|
||||||
license: Apache-2.0
|
|
||||||
maintainer: Google
|
|
||||||
name: jsonnet-lint
|
|
||||||
platform: linux
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Install dependencies and Go 1.24
|
|
||||||
dnf install -y wget git make
|
|
||||||
|
|
||||||
# Download and install Go 1.24.7
|
|
||||||
wget https://go.dev/dl/go1.24.7.linux-amd64.tar.gz
|
|
||||||
rm -rf /usr/local/go
|
|
||||||
tar -C /usr/local -xzf go1.24.7.linux-amd64.tar.gz
|
|
||||||
export PATH=/usr/local/go/bin:$PATH
|
|
||||||
|
|
||||||
# Verify Go installation
|
|
||||||
go version
|
|
||||||
|
|
||||||
# Build jsonnet-lint binary
|
|
||||||
GOBIN=/app go install github.com/google/go-jsonnet/cmd/jsonnet-lint@v${PACKAGE_VERSION}
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build RPM package
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
---
|
|
||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- jsonnet-lint
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- jsonnet-lint
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/jsonnet-lint
|
|
||||||
dst: /usr/bin/jsonnet-lint
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
arch: amd64
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 0.21.0
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 0.21.0
|
|
||||||
description: A data templating language
|
|
||||||
github: google/go-jsonnet
|
|
||||||
homepage: https://github.com/google/go-jsonnet
|
|
||||||
license: Apache-2.0
|
|
||||||
maintainer: Google
|
|
||||||
name: jsonnet
|
|
||||||
platform: linux
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Install dependencies and Go 1.24
|
|
||||||
dnf install -y wget git make
|
|
||||||
|
|
||||||
# Download and install Go 1.24.7
|
|
||||||
wget https://go.dev/dl/go1.24.7.linux-amd64.tar.gz
|
|
||||||
rm -rf /usr/local/go
|
|
||||||
tar -C /usr/local -xzf go1.24.7.linux-amd64.tar.gz
|
|
||||||
export PATH=/usr/local/go/bin:$PATH
|
|
||||||
|
|
||||||
# Verify Go installation
|
|
||||||
go version
|
|
||||||
|
|
||||||
# Build jsonnet binaries
|
|
||||||
GOBIN=/app go install github.com/google/go-jsonnet/cmd/jsonnet@v${PACKAGE_VERSION}
|
|
||||||
GOBIN=/app go install github.com/google/go-jsonnet/cmd/jsonnetfmt@v${PACKAGE_VERSION}
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build RPM package
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
---
|
|
||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- jsonnet
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- jsonnet
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/jsonnet
|
|
||||||
dst: /usr/bin/jsonnet
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
- src: /app/jsonnetfmt
|
|
||||||
dst: /usr/bin/jsonnetfmt
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
name: kubeconform
|
|
||||||
github: yannh/kubeconform
|
|
||||||
description: A FAST Kubernetes manifests validator, with support for Custom Resources!
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: Yann Hamon
|
|
||||||
homepage: https://github.com/yannh/kubeconform
|
|
||||||
license: Apache-2.0
|
|
||||||
builds:
|
|
||||||
- repository:
|
|
||||||
- almalinux/el8
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 0.7.0
|
|
||||||
- repository:
|
|
||||||
- almalinux/el9
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: 1
|
|
||||||
version: 0.7.0
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download kubeconform binary
|
|
||||||
wget -O /app/kubeconform-linux-amd64.tar.gz https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/yannh/kubeconform/releases/download/v${PACKAGE_VERSION}/kubeconform-linux-amd64.tar.gz
|
|
||||||
|
|
||||||
# Extract the binary
|
|
||||||
tar -xzf /app/kubeconform-linux-amd64.tar.gz -C /app/
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
---
|
|
||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- kubeconform
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- kubeconform
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/kubeconform
|
|
||||||
dst: /usr/bin/kubeconform
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
---
|
|
||||||
name: kustomize
|
|
||||||
github: kubernetes-sigs/kustomize
|
|
||||||
description: Kubernetes native configuration management
|
|
||||||
arch: amd64
|
|
||||||
platform: linux
|
|
||||||
maintainer: kubernetes-sigs
|
|
||||||
homepage: https://github.com/kubernetes-sigs/kustomize
|
|
||||||
license: Apache-2.0
|
|
||||||
github_release_pattern: ^kustomize/v.*
|
|
||||||
builds:
|
|
||||||
- repository: [almalinux/el8]
|
|
||||||
image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
version: 5.8.1
|
|
||||||
- repository: [almalinux/el9]
|
|
||||||
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
version: 5.8.1
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download kustomize binary
|
|
||||||
wget -O /app/kustomize_v${PACKAGE_VERSION}_linux_amd64.tar.gz https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv${PACKAGE_VERSION}/kustomize_v${PACKAGE_VERSION}_linux_amd64.tar.gz
|
|
||||||
|
|
||||||
# Extract the binary
|
|
||||||
tar -xzf /app/kustomize_v${PACKAGE_VERSION}_linux_amd64.tar.gz -C /app/
|
|
||||||
|
|
||||||
# Process nfpm.yaml with envsubst
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
# Build the RPM
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
---
|
|
||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- kustomize
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- kustomize
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/kustomize
|
|
||||||
dst: /usr/bin/kustomize
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal (optional)
|
|
||||||
# scripts:
|
|
||||||
# preinstall: ./scripts/preinstall.sh
|
|
||||||
# postinstall: ./scripts/postinstall.sh
|
|
||||||
# preremove: ./scripts/preremove.sh
|
|
||||||
# postremove: ./scripts/postremove.sh
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
arch: amd64
|
|
||||||
builds:
|
|
||||||
- image: git.unkin.net/unkin/almalinux8-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el8]
|
|
||||||
version: 7.3.71
|
|
||||||
- image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
||||||
release: '1'
|
|
||||||
repository: [almalinux/el9]
|
|
||||||
version: 7.3.71
|
|
||||||
description: FoundationDB client library - Shared library for FoundationDB applications
|
|
||||||
github: apple/foundationdb
|
|
||||||
homepage: https://github.com/apple/foundationdb
|
|
||||||
license: Apache-2.0
|
|
||||||
maintainer: FoundationDB Community
|
|
||||||
name: libfoundationdb
|
|
||||||
platform: linux
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
#!/usr/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Download the required library
|
|
||||||
curl -L -o /app/libfdb_c.so https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/apple/foundationdb/releases/download/${PACKAGE_VERSION}/libfdb_c.x86_64.so
|
|
||||||
|
|
||||||
# Make the library readable
|
|
||||||
chmod 755 /app/libfdb_c.so
|
|
||||||
|
|
||||||
# Process the nfpm.yaml template with environment variables
|
|
||||||
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
||||||
|
|
||||||
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
---
|
|
||||||
# nfpm.yaml
|
|
||||||
|
|
||||||
name: ${PACKAGE_NAME}
|
|
||||||
version: ${PACKAGE_VERSION}
|
|
||||||
release: ${PACKAGE_RELEASE}
|
|
||||||
arch: ${PACKAGE_ARCH}
|
|
||||||
platform: ${PACKAGE_PLATFORM}
|
|
||||||
section: default
|
|
||||||
priority: extra
|
|
||||||
description: "${PACKAGE_DESCRIPTION}"
|
|
||||||
|
|
||||||
maintainer: ${PACKAGE_MAINTAINER}
|
|
||||||
homepage: ${PACKAGE_HOMEPAGE}
|
|
||||||
license: ${PACKAGE_LICENSE}
|
|
||||||
|
|
||||||
disable_globbing: false
|
|
||||||
|
|
||||||
replaces:
|
|
||||||
- libfoundationdb
|
|
||||||
|
|
||||||
provides:
|
|
||||||
- libfoundationdb
|
|
||||||
- libfdb_c.so()(64bit)
|
|
||||||
|
|
||||||
# Files to include in the package
|
|
||||||
contents:
|
|
||||||
- src: /app/libfdb_c.so
|
|
||||||
dst: /usr/lib64/libfdb_c.so
|
|
||||||
file_info:
|
|
||||||
mode: 0755
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
|
|
||||||
# Scripts to run during installation/removal
|
|
||||||
scripts:
|
|
||||||
postinstall: /app/resources/scripts/postinstall.sh
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user