| Hash | Commit message | Author | Date | Files | + | - |
| 1 | commit a8a17fe8d66a2cdb46ec171bede001a71a998594 |
| 2 | Author: Connor Etherington <[email protected]> |
| 3 | Date: Thu Jul 2 04:46:25 2026 +0200 |
| 4 | |
| 5 | Reserve agentics namespace: placeholder package pending official release |
| 6 | --- |
| 7 | .SRCINFO | 9 +++++++++ |
| 8 | PKGBUILD | 19 +++++++++++++++++++ |
| 9 | 2 files changed, 28 insertions(+) |
| 10 | |
| 11 | diff --git a/.SRCINFO b/.SRCINFO |
| 12 | new file mode 100644 |
| 13 | index 0000000..186e246 |
| 14 | --- /dev/null |
| 15 | +++ b/.SRCINFO |
| 16 | @@ -0,0 +1,9 @@ |
| 17 | +pkgbase = agentics |
| 18 | + pkgdesc = Agentics - The voice-driven AI platform by AgenticsAI (placeholder, official release imminent) |
| 19 | + pkgver = 0.0.1 |
| 20 | + pkgrel = 1 |
| 21 | + url = https://agentics.co.za |
| 22 | + arch = any |
| 23 | + license = custom |
| 24 | + |
| 25 | +pkgname = agentics |
| 26 | diff --git a/PKGBUILD b/PKGBUILD |
| 27 | new file mode 100644 |
| 28 | index 0000000..5ccc591 |
| 29 | --- /dev/null |
| 30 | +++ b/PKGBUILD |
| 31 | @@ -0,0 +1,19 @@ |
| 32 | +# Maintainer: Connor Etherington <[email protected]> |
| 33 | +# --- |
| 34 | +pkgname=agentics |
| 35 | +pkgver=0.0.1 |
| 36 | +pkgrel=1 |
| 37 | +pkgdesc="Agentics - The voice-driven AI platform by AgenticsAI (placeholder, official release imminent)" |
| 38 | +arch=(any) |
| 39 | +url="https://agentics.co.za" |
| 40 | +license=('custom') |
| 41 | + |
| 42 | +package() { |
| 43 | + install -dm755 "${pkgdir}/usr/share/doc/${pkgname}" |
| 44 | + printf '%s\n' \ |
| 45 | + "Agentics - https://agentics.co.za" \ |
| 46 | + "" \ |
| 47 | + "This package name is reserved by AgenticsAI (Pty) Ltd." \ |
| 48 | + "The official Agentics release will be published here imminently." \ |
| 49 | + > "${pkgdir}/usr/share/doc/${pkgname}/README" |
| 50 | +} |