From cc61d8e542bafdf41e28c41cdd4406ccef4bb44d Mon Sep 17 00:00:00 2001 From: Jenkins Date: Sat, 22 Jul 2023 16:23:20 +0200 Subject: [PATCH] migrate to new layout --- Jenkinsfile => .artixlinux/Jenkinsfile | 0 .artixlinux/agent.yaml | 4 -- .artixlinux/pkgbase.yaml | 54 ++++++++++++++++++++++++++ .gitignore | 3 ++ trunk/PKGBUILD => PKGBUILD | 0 x86_64/extra/PKGBUILD | 33 ---------------- 6 files changed, 57 insertions(+), 37 deletions(-) rename Jenkinsfile => .artixlinux/Jenkinsfile (100%) delete mode 100644 .artixlinux/agent.yaml create mode 100644 .artixlinux/pkgbase.yaml rename trunk/PKGBUILD => PKGBUILD (100%) delete mode 100644 x86_64/extra/PKGBUILD diff --git a/Jenkinsfile b/.artixlinux/Jenkinsfile similarity index 100% rename from Jenkinsfile rename to .artixlinux/Jenkinsfile diff --git a/.artixlinux/agent.yaml b/.artixlinux/agent.yaml deleted file mode 100644 index 893c702..0000000 --- a/.artixlinux/agent.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- - -label: master - diff --git a/.artixlinux/pkgbase.yaml b/.artixlinux/pkgbase.yaml new file mode 100644 index 0000000..d112d4b --- /dev/null +++ b/.artixlinux/pkgbase.yaml @@ -0,0 +1,54 @@ +--- +pkgbase: + name: hexchat + version: 2.16.1-4 + arch: + - x86_64 + pkgname: + - hexchat +actions: + addRepo: null + removeRepo: null + triggersBuild: false + triggersRebuild: false + triggersRepoAdd: false + triggersRepoRemove: false + triggersNoCheck: false +repos: + system-goblins: + version: null + packages: [] + system-gremlins: + version: null + packages: [] + system: + version: null + packages: [] + world-goblins: + version: null + packages: [] + world-gremlins: + version: null + packages: [] + world: + version: 2.16.1-4 + packages: + - hexchat-2.16.1-4-x86_64.pkg.tar.zst + lib32-goblins: + version: null + packages: [] + lib32-gremlins: + version: null + packages: [] + lib32: + version: null + packages: [] + galaxy-goblins: + version: null + packages: [] + galaxy-gremlins: + version: null + packages: [] + galaxy: + version: null + packages: [] diff --git a/.gitignore b/.gitignore index ce8d4d7..e4912e4 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,6 @@ pkg/ src/ +*.service +*.timer +*.socket diff --git a/trunk/PKGBUILD b/PKGBUILD similarity index 100% rename from trunk/PKGBUILD rename to PKGBUILD diff --git a/x86_64/extra/PKGBUILD b/x86_64/extra/PKGBUILD deleted file mode 100644 index 8d7d7cc..0000000 --- a/x86_64/extra/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: Nathan -# Contributor: TingPing - -pkgname=hexchat -pkgver=2.16.1 -pkgrel=4 -pkgdesc='A popular and easy to use graphical IRC (chat) client' -arch=('x86_64') -url='https://hexchat.github.io/' -license=('GPL') -depends=('dbus-glib' 'desktop-file-utils' 'gdk-pixbuf2' 'glib2' 'gtk2' - 'libcanberra' 'openssl' 'pango' 'pciutils') -makedepends=('git' 'intltool' 'iso-codes' 'lua' 'meson' 'perl' 'python-cffi') -optdepends=('enchant: Spell check' - 'iso-codes: Display language names instead of codes' - 'lua: Lua plugin' - 'perl: Perl plugin' - 'python-cffi: Python plugin') -source=("git+https://github.com/hexchat/hexchat.git#tag=v${pkgver}") -sha256sums=('SKIP') - -build() { - artix-meson hexchat build \ - -Dwith-lua='lua' \ - -Dtext-frontend='true' - ninja -C build -} - -package() { - DESTDIR="${pkgdir}" ninja -C build install -} - -# vim: ts=2 sw=2 et: