From 468fc9059322e4b0e0109c28fda3963e176cb46c Mon Sep 17 00:00:00 2001 From: SPTApyo Date: Sat, 21 Feb 2026 20:36:56 +0000 Subject: [PATCH] Update to v0.1 --- .SRCINFO | 6 +++--- PKGBUILD | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2c9c956b3b091..c9c2488f2e726 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ pkgbase = stratos-cli pkgdesc = Multi-Agent Autonomous Coding System for Terminal - pkgver = 2.5.0 + pkgver = 0.1 pkgrel = 1 - url = https://github.com/SPTApyo/stratos + url = https://github.com/SPTApyo/stratos-cli arch = any license = MIT makedepends = python-build @@ -15,7 +15,7 @@ pkgbase = stratos-cli depends = python-readchar depends = python-google-generativeai depends = python-duckduckgo-search - source = https://github.com/SPTApyo/stratos/archive/refs/tags/v2.5.0.tar.gz + source = https://github.com/SPTApyo/stratos-cli/archive/refs/tags/v0.1.tar.gz sha256sums = SKIP pkgname = stratos-cli diff --git a/PKGBUILD b/PKGBUILD index 7802ca8912fdc..5ef4d9e39a500 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,22 +1,22 @@ # Maintainer: SPTApyo pkgname=stratos-cli -pkgver=2.5.0 +pkgver=0.1 pkgrel=1 pkgdesc="Multi-Agent Autonomous Coding System for Terminal" arch=('any') -url="https://github.com/SPTApyo/stratos" +url="https://github.com/SPTApyo/stratos-cli" license=('MIT') depends=('python>=3.10' 'python-rich' 'python-dotenv' 'python-readchar' 'python-google-generativeai' 'python-duckduckgo-search') makedepends=('python-build' 'python-installer' 'python-wheel' 'python-setuptools') -source=("https://github.com/SPTApyo/stratos/archive/refs/tags/v${pkgver}.tar.gz") +source=("https://github.com/SPTApyo/stratos-cli/archive/refs/tags/v${pkgver}.tar.gz") sha256sums=('SKIP') build() { - cd "stratos-${pkgver}" - python -m build --wheel --no-isolation +cd "stratos-cli-${pkgver}" +python -m build --wheel --no-isolation } package() { - cd "stratos-${pkgver}" - python -m installer --destdir="${pkgdir}" dist/*.whl +cd "stratos-cli-${pkgver}" +python -m installer --destdir="${pkgdir}" dist/*.whl }