From 469ded7a78c23cef91141bef3cf482f55e3fd20f Mon Sep 17 00:00:00 2001 From: Christian Schendel Date: Thu, 11 Dec 2025 20:38:59 +0100 Subject: [PATCH] upgpkg: xdg-terminal-exec-0.14.0-1: initial upload --- .SRCINFO | 14 ++++++++++++++ .gitignore | 17 +++++++++++++++++ .nvchecker.toml | 4 ++++ LICENSE | 12 ++++++++++++ LICENSES/0BSD.txt | 1 + PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ REUSE.toml | 30 ++++++++++++++++++++++++++++++ 7 files changed, 117 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 .nvchecker.toml create mode 100644 LICENSE create mode 120000 LICENSES/0BSD.txt create mode 100644 PKGBUILD create mode 100644 REUSE.toml diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..b178117 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = xdg-terminal-exec + pkgdesc = Proposed standard to launching desktop apps with Terminal=true + pkgver = 0.14.0 + pkgrel = 1 + url = https://gitlab.freedesktop.org/Vladimir-csp/xdg-terminal-exec + arch = any + license = GPL-3.0-or-later + checkdepends = bats + makedepends = scdoc + source = xdg-terminal-exec-0.14.0::https://gitlab.freedesktop.org/Vladimir-csp/xdg-terminal-exec/-/archive/v0.14.0/xdg-terminal-exec-v0.14.0.tar.gz + sha256sums = c37ff16292f7d3e79c97099c4cf1ca5c1f47fb2f1d3e8754126659b045ccbbac + b2sums = 806acdfb1ffa83c339e07a802d8496ea162a943114dbc39c44df9ef04a6383067a5a5fdcf8a2ad472fef91c735d44f16676c000f0a105fefb469311626131744 + +pkgname = xdg-terminal-exec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a8267d1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# Ignore everything +* + +# But not these files... +!.gitignore +!PKGBUILD +!.SRCINFO +!LICENSE +!chroot-build +!.nvchecker.toml +!/keys +!/keys/pgp +!/keys/pgp/*.asc +!/LICENSES +!/LICENSES/*.txt +!REUSE.toml +!*.patch diff --git a/.nvchecker.toml b/.nvchecker.toml new file mode 100644 index 0000000..0e2aa19 --- /dev/null +++ b/.nvchecker.toml @@ -0,0 +1,4 @@ +[xdg-terminal-exec] +source = "git" +git = "https://gitlab.freedesktop.org/Vladimir-csp/xdg-terminal-exec.git" +prefix = "v" diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b87c5e4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,12 @@ +Copyright Arch Linux Contributors + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE +FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY +DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN +AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/LICENSES/0BSD.txt b/LICENSES/0BSD.txt new file mode 120000 index 0000000..ea5b606 --- /dev/null +++ b/LICENSES/0BSD.txt @@ -0,0 +1 @@ +../LICENSE \ No newline at end of file diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..91f6c5c --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,39 @@ +# Maintainer: Christian Schendel +# Contributor: Max Gautier +pkgname=xdg-terminal-exec +pkgver=0.14.0 +pkgrel=1 +pkgdesc="Proposed standard to launching desktop apps with Terminal=true" +arch=(any) +url="https://gitlab.freedesktop.org/Vladimir-csp/$pkgname" + +license=( + GPL-3.0-or-later +) +depends=( + sh +) +makedepends=( + git + scdoc +) +checkdepends=( + bats +) +source=( + "$pkgname-$pkgver::git+$url.git#tag=v$pkgver" +) +b2sums=('1c0219b58384177640aaec2082ffea1c7b25bf5b45fd8bb529147f0d2fae9f465dfdea1336c28ddd89e325438364cac8514f1c3f4071749351bc280ec8427e9b') + +check() { + cd "$pkgname-$pkgver" + bats "test/" +} + +build() { + make -C "$pkgname-$pkgver" +} + +package() { + make -C "$pkgname-$pkgver" prefix="$pkgdir/usr" install +} diff --git a/REUSE.toml b/REUSE.toml new file mode 100644 index 0000000..401fc48 --- /dev/null +++ b/REUSE.toml @@ -0,0 +1,30 @@ +version = 1 + +[[annotations]] +path = [ + "PKGBUILD", + "README.md", + "keys/**", + ".SRCINFO", + ".nvchecker.toml", + ".gitignore", + "*.install", + "*.sysusers", + "*.tmpfiles", + "*.logrotate", + "*.pam", + "*.service", + "*.socket", + "*.timer", + "*.desktop", + "*.hook", +] +SPDX-FileCopyrightText = "Arch Linux contributors" +SPDX-License-Identifier = "0BSD" + +[[annotations]] +path = [ + "*.patch", +] +SPDX-FileCopyrightText = "bluejay contributors" +SPDX-License-Identifier = "MPL-2.0"