diff --git a/.SRCINFO b/.SRCINFO index 7a8f80d9ade8..ac7f8a0f1751 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -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 diff --git a/PKGBUILD b/PKGBUILD index 1874602eed22..1c22dff882bb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,13 +1,13 @@ # Maintainer: ThatOneCalculator (Kainoa Kanter) _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