upgpkg: xdg-terminal-exec-0.14.0-1: initial upload

This commit is contained in:
Christian Schendel 2025-12-11 20:38:59 +01:00
commit 469ded7a78
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
7 changed files with 117 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -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

17
.gitignore vendored Normal file
View file

@ -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

4
.nvchecker.toml Normal file
View file

@ -0,0 +1,4 @@
[xdg-terminal-exec]
source = "git"
git = "https://gitlab.freedesktop.org/Vladimir-csp/xdg-terminal-exec.git"
prefix = "v"

12
LICENSE Normal file
View file

@ -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.

1
LICENSES/0BSD.txt Symbolic link
View file

@ -0,0 +1 @@
../LICENSE

39
PKGBUILD Normal file
View file

@ -0,0 +1,39 @@
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
# Contributor: Max Gautier <mg@max.gautier.name>
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
}

30
REUSE.toml Normal file
View file

@ -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"