From 947e64eab03acd2beb39cb34becee7539f5b0115 Mon Sep 17 00:00:00 2001 From: Rafael Baboni Dominiquini Date: Fri, 3 Oct 2025 02:12:13 -0300 Subject: [PATCH] Published: 0.1.5 --- .SRCINFO | 22 ++++++++++++++++++++++ .gitignore | 5 +++++ .nvchecker.toml | 4 ++++ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 69 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 .nvchecker.toml create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000000000..70b813bf88984 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,22 @@ +pkgbase = pitchfork-bin + pkgdesc = Daemons with DX + pkgver = 0.1.5 + pkgrel = 1 + url = https://github.com/jdx/pitchfork + arch = x86_64 + arch = aarch64 + license = MIT + depends = glibc + depends = gcc-libs + provides = pitchfork + conflicts = pitchfork + source = LICENSE-0.1.5::https://raw.githubusercontent.com/jdx/pitchfork/v0.1.5/LICENSE + source = README-0.1.5.md::https://raw.githubusercontent.com/jdx/pitchfork/v0.1.5/README.md + sha256sums = 5ba5d69f83674602525196efe44114e546cf3440d363603961076e52b9647a5a + sha256sums = aa980709129d42e91803e82272d1ae1ca6a6d6e2eb535ee54ef1735f9117f297 + source_x86_64 = pitchfork-x86_64-0.1.5.tar.gz::https://github.com/jdx/pitchfork/releases/download/v0.1.5/pitchfork-x86_64-unknown-linux-gnu.tar.gz + sha256sums_x86_64 = f7aef126cff3ee79c537b3cd3f1c14cb8d62013f5dbd2d47a1640a1af60394b1 + source_aarch64 = pitchfork-aarch64-0.1.5.tar.gz::https://github.com/jdx/pitchfork/releases/download/v0.1.5/pitchfork-aarch64-unknown-linux-gnu.tar.gz + sha256sums_aarch64 = 97999db51dc09b4e704ad30811823fea1ac033870662549655825d42e836565e + +pkgname = pitchfork-bin diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000..3dbe83f1616bf --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +* +!.gitignore +!.nvchecker.toml +!PKGBUILD +!.SRCINFO diff --git a/.nvchecker.toml b/.nvchecker.toml new file mode 100644 index 0000000000000..1e6eea7dd046f --- /dev/null +++ b/.nvchecker.toml @@ -0,0 +1,4 @@ +[pitchfork-bin] +source = "git" +git = "https://github.com/jdx/pitchfork.git" +prefix = "v" diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000000000..9d1304ef71c31 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,38 @@ +# Maintainer: Rafael Dominiquini + +_pkgauthor=jdx +_pkgname=pitchfork +pkgname=${_pkgname}-bin +pkgver=0.1.5 +_pkgvername=v${pkgver} +pkgrel=1 +pkgdesc="Daemons with DX" +arch=('x86_64' 'aarch64') +_barch=('x86_64' 'aarch64') +url="https://github.com/${_pkgauthor}/${_pkgname}" +_urlraw="https://raw.githubusercontent.com/${_pkgauthor}/${_pkgname}/${_pkgvername}" +license=('MIT') + +provides=("${_pkgname}") +conflicts=("${_pkgname}") +depends=('glibc' 'gcc-libs') + +source=("LICENSE-${pkgver}::${_urlraw}/LICENSE" + "README-${pkgver}.md::${_urlraw}/README.md") +source_x86_64=("${_pkgname}-${arch[0]}-${pkgver}.tar.gz::${url}/releases/download/${_pkgvername}/${_pkgname}-${_barch[0]}-unknown-linux-gnu.tar.gz") +source_aarch64=("${_pkgname}-${arch[1]}-${pkgver}.tar.gz::${url}/releases/download/${_pkgvername}/${_pkgname}-${_barch[1]}-unknown-linux-gnu.tar.gz") +sha256sums=('5ba5d69f83674602525196efe44114e546cf3440d363603961076e52b9647a5a' + 'aa980709129d42e91803e82272d1ae1ca6a6d6e2eb535ee54ef1735f9117f297') +sha256sums_x86_64=('f7aef126cff3ee79c537b3cd3f1c14cb8d62013f5dbd2d47a1640a1af60394b1') +sha256sums_aarch64=('97999db51dc09b4e704ad30811823fea1ac033870662549655825d42e836565e') + + +package() { + cd "${srcdir}/" || exit + + install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}" + + install -Dm644 "README-${pkgver}.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md" + + install -Dm644 "LICENSE-${pkgver}" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +}