[world] 'retroarch-assets-1:532-1' add
Some checks failed
Publish / Build and publish (push) Failing after 3m6s

This commit is contained in:
2025-11-07 15:46:02 -05:00
parent 21c115c9c7
commit fb16fd535b
7 changed files with 135 additions and 5 deletions

3
.artixlinux/Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,3 @@
@Library('artix-ci@orion') import org.artixlinux.RepoPackage
PackagePipeline(new RepoPackage(this))

View File

@@ -1,11 +1,11 @@
--- ---
team: world team: world
actions: actions:
addRepo: null addRepo: world
removeRepo: null removeRepo: null
triggersBuild: false triggersBuild: true
triggersRebuild: false triggersRebuild: false
triggersRepoAdd: false triggersRepoAdd: true
triggersRepoRemove: false triggersRepoRemove: false
triggersNoCheck: false triggersNoCheck: false
repos: repos:
@@ -30,8 +30,11 @@ repos:
packages: [] packages: []
debug: [] debug: []
world: world:
version: null version: 1:532-1
packages: [] packages:
- retroarch-assets-glui-1:532-1-any.pkg.tar.zst
- retroarch-assets-ozone-1:532-1-any.pkg.tar.zst
- retroarch-assets-xmb-1:532-1-any.pkg.tar.zst
debug: [] debug: []
lib32-goblins: lib32-goblins:
version: null version: null

34
.artixlinux/srcinfo.yaml Normal file
View File

@@ -0,0 +1,34 @@
---
version: 1:532-1
pkgbase:
name: retroarch-assets
pkgdesc: XMB menu assets for RetroArch
pkgver: 532
pkgrel: 1
epoch: 1
url: http://www.libretro.com/
arch:
- any
groups:
- libretro
license:
- GPL
makedepends:
- git
depends:
- retroarch
source:
- git+https://github.com/libretro/retroarch-assets.git#commit=2d24ef2972a709f870cc3f73853158fa2376f37d
sha256sums:
- 5b45e41d12ac657519ac1706f9b467f4f90f9881d5fa1f604e2e4987417e11e7
pkgname:
- name: retroarch-assets-glui
depends:
- retroarch
- retroarch-assets-xmb
- name: retroarch-assets-ozone
depends:
- retroarch
- retroarch-assets-xmb
- name: retroarch-assets-xmb
# generated with artixpkg 0.37.4-1-any

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

55
PKGBUILD Normal file
View File

@@ -0,0 +1,55 @@
# Maintainer: Cory Sanin <corysanin@artixlinux.org>
# Contributor: Maxime Gauduin <alucryd@archlinux.org>
pkgbase=retroarch-assets
pkgname=(
retroarch-assets-glui
retroarch-assets-ozone
retroarch-assets-xmb
)
pkgver=532
pkgrel=1
epoch=1
pkgdesc='XMB menu assets for RetroArch'
arch=(any)
url=http://www.libretro.com/
license=(GPL)
groups=(libretro)
depends=(retroarch)
makedepends=(git)
_commit=2d24ef2972a709f870cc3f73853158fa2376f37d
source=(git+https://github.com/libretro/retroarch-assets.git#commit=${_commit})
sha256sums=('5b45e41d12ac657519ac1706f9b467f4f90f9881d5fa1f604e2e4987417e11e7')
pkgver() {
cd retroarch-assets
git rev-list --count HEAD
}
package_retroarch-assets-glui() {
depends+=(retroarch-assets-xmb)
cd retroarch-assets
install -dm 755 "${pkgdir}"/usr/share/retroarch/assets
cp -dr --no-preserve=ownership glui "${pkgdir}"/usr/share/retroarch/assets/
}
package_retroarch-assets-ozone() {
depends+=(retroarch-assets-xmb)
cd retroarch-assets
install -dm 755 "${pkgdir}"/usr/share/retroarch/assets
cp -dr --no-preserve=ownership ozone "${pkgdir}"/usr/share/retroarch/assets/
}
package_retroarch-assets-xmb() {
cd retroarch-assets
install -dm 755 "${pkgdir}"/usr/share/retroarch/assets
cp -dr --no-preserve=ownership xmb "${pkgdir}"/usr/share/retroarch/assets/
}
# vim: ts=2 sw=2 et:

22
REUSE.toml Normal file
View File

@@ -0,0 +1,22 @@
version = 1
[[annotations]]
path = [
"PKGBUILD",
"README.md",
"keys/**",
".SRCINFO",
".nvchecker.toml",
"*.install",
"*.sysusers",
"*.tmpfiles",
"*.logrotate",
"*.pam",
"*.service",
"*.socket",
"*.timer",
"*.desktop",
"*.hook",
]
SPDX-FileCopyrightText = "Arch Linux contributors"
SPDX-License-Identifier = "0BSD"