This commit is contained in:
Kainoa Kanter 2025-12-30 22:40:25 -08:00
parent 77ba5ba31b
commit 94f0c2e6ae
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 9 additions and 8 deletions

View file

@ -1,16 +1,17 @@
pkgbase = letta-code
pkgdesc = The memory-first coding agent
pkgver = 0.10.1
pkgver = 0.10.5
pkgrel = 1
url = https://github.com/letta-ai/letta-code
arch = x86_64
arch = aarch64
license = Apache-2.0
depends = nodejs
depends = org.freedesktop.secrets
conflicts = letta-code-bin
conflicts = letta-code-git
options = !strip
source = letta-code-0.10.1.tar.gz::https://github.com/letta-ai/letta-code/archive/v0.10.1.tar.gz
sha256sums = 9c6a431a2cf21ecdc5f5bf24775fe13ba295acbab4ff64d78b700075be9e276e
source = letta-code-0.10.5.tar.gz::https://github.com/letta-ai/letta-code/archive/v0.10.5.tar.gz
sha256sums = b03db1ce7c1bf353b5858f1540a5ce748513abdc7643486f24ab3f2d512175e8
pkgname = letta-code

View file

@ -1,13 +1,13 @@
# Maintainer: ThatOneCalculator (Kainoa Kanter) <kainoa@t1c.dev>
_pkgname="letta-code"
pkgname="$_pkgname"
pkgver=0.10.1
pkgver=0.10.5
pkgrel=1
pkgdesc="The memory-first coding agent"
arch=('x86_64' 'aarch64')
url="https://github.com/letta-ai/letta-code"
license=('Apache-2.0')
depends=('nodejs')
depends=('nodejs' 'org.freedesktop.secrets')
conflicts=(
# "$_pkgname"
"$_pkgname-bin"
@ -16,15 +16,15 @@ conflicts=(
source=("$_pkgname-$pkgver.tar.gz::$url/archive/v"$pkgver".tar.gz")
noextract=()
options=(!strip)
sha256sums=('9c6a431a2cf21ecdc5f5bf24775fe13ba295acbab4ff64d78b700075be9e276e')
sha256sums=('b03db1ce7c1bf353b5858f1540a5ce748513abdc7643486f24ab3f2d512175e8')
prepare() {
if ! command -v bun &> /dev/null; then
echo "Bun was not found. Please install bun from https://bun.sh, or install the bun-bin or bun-git AUR package."
echo "Bun was not found. Please install bun from https://bun.com/, or install the bun AUR package."
exit 1
fi
bunversion=$(bun --version | sed 's/[^0-9]*//g')
if (( $bunversion < 1022 )); then
if (( $bunversion < 130 )); then
echo "Upgrading bun"
bun upgrade
fi