azros


Logs | Files | GitLab


1
commit 2f070626abb74c5755d007f76ea7afb0671df066 (HEAD -> master, origin/master)
2
Author: Connor Etherington <[email protected]>
3
Date:   Thu Jul 2 04:46:40 2026 +0200
4
5
    Reserve azros 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..9ab2cf2
14
--- /dev/null
15
+++ b/.SRCINFO
16
@@ -0,0 +1,9 @@
17
+pkgbase = azros
18
+	pkgdesc = AzrOS 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 = azros
26
diff --git a/PKGBUILD b/PKGBUILD
27
new file mode 100644
28
index 0000000..3954c99
29
--- /dev/null
30
+++ b/PKGBUILD
31
@@ -0,0 +1,19 @@
32
+# Maintainer: Connor Etherington <[email protected]>
33
+# ---
34
+pkgname=azros
35
+pkgver=0.0.1
36
+pkgrel=1
37
+pkgdesc="AzrOS 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
+    "AzrOS - https://agentics.co.za" \
46
+    "" \
47
+    "This package name is reserved by AgenticsAI (Pty) Ltd." \
48
+    "The official AzrOS release will be published here imminently." \
49
+    > "${pkgdir}/usr/share/doc/${pkgname}/README"
50
+}