note: current bug with my PKGBUILD with aarch64, will fix soon
Search Criteria
Package Details: openai-codex-bin 0.22.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/openai-codex-bin.git (read-only, click to copy) |
---|---|
Package Base: | openai-codex-bin |
Description: | Lightweight coding agent that runs in your terminal |
Upstream URL: | https://github.com/openai/codex |
Licenses: | Apache |
Conflicts: | openai-codex |
Provides: | openai-codex |
Submitter: | jackmhny |
Maintainer: | jackmhny |
Last Packager: | jackmhny |
Votes: | 4 |
Popularity: | 2.50 |
First Submitted: | 2025-07-21 20:48 (UTC) |
Last Updated: | 2025-08-16 15:45 (UTC) |
Dependencies (2)
- git (git-gitAUR, git-glAUR) (optional) – for working with git repositories
- ripgrep (ripgrep-gitAUR) (optional) – accelerated large-repo search
Required by (0)
Sources (2)
Latest Comments
jackmhny commented on 2025-08-16 15:50 (UTC)
Phi11ip commented on 2025-08-13 14:36 (UTC)
Update: 0.21 fixes the issue. Thanks @jackmhny for maintaining the AUR.
Phi11ip commented on 2025-08-11 09:53 (UTC)
Is anyone else getting no response from Codex after the patch? If I execute prompts that result on console commands (e.g. ls
) I can see the bot Ran Command
output, but no other text output. It does not show the results of the ls
command, nor any other flavor text ("it looks like you're writing a letter") type stuff.
jackmhny commented on 2025-08-08 02:03 (UTC)
fixed. thanks @gwuensch for the fix
gwuensch commented on 2025-07-28 14:00 (UTC) (edited on 2025-07-28 14:55 (UTC) by gwuensch)
@carmilso You have outdated tarballs in the source directory that are causing this, you'll have to download the latest version.
@jackmhny Could you configure the source filenames to include the version name, so this doesn't happen?
diff --git a/PKGBUILD b/PKGBUILD
index 0d116d2..db6e18c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,14 +14,14 @@ optdepends=(
)
source_x86_64=(
- "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-x86_64-unknown-linux-gnu.tar.gz"
- "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-exec-x86_64-unknown-linux-gnu.tar.gz"
- "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-linux-sandbox-x86_64-unknown-linux-gnu.tar.gz"
+ "codex-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-x86_64-unknown-linux-gnu.tar.gz"
+ "codex-exec-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-exec-x86_64-unknown-linux-gnu.tar.gz"
+ "codex-linux-sandbox-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-linux-sandbox-x86_64-unknown-linux-gnu.tar.gz"
)
source_aarch64=(
- "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-aarch64-unknown-linux-gnu.tar.gz"
- "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-exec-aarch64-unknown-linux-gnu.tar.gz"
- "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-linux-sandbox-aarch64-unknown-linux-gnu.tar.gz"
+ "codex-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-aarch64-unknown-linux-gnu.tar.gz"
+ "codex-exec-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-exec-aarch64-unknown-linux-gnu.tar.gz"
+ "codex-linux-sandbox-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-linux-sandbox-aarch64-unknown-linux-gnu.tar.gz"
)
sha256sums_x86_64=('fea15eed6942b94a5ed5c0a5592df798039b897861ea71baa8a8ae3763a3d62d'
Edit: Fixed diff
carmilso commented on 2025-07-28 06:15 (UTC) (edited on 2025-07-28 06:19 (UTC) by carmilso)
There's a validation error:
==> Validating source_x86_64 files with sha256sums...
codex-x86_64-unknown-linux-gnu.tar.gz ... FAILED
codex-exec-x86_64-unknown-linux-gnu.tar.gz ... FAILED
codex-linux-sandbox-x86_64-unknown-linux-gnu.tar.gz ... FAILED
==> ERROR: One or more files did not pass the validity check!
-> error downloading sources: /home/carlos/.cache/yay/openai-codex-bin
context: exit status 1
jackmhny commented on 2025-07-22 00:40 (UTC)
done
cg505 commented on 2025-07-21 21:33 (UTC)
Could you add the following?
provides=('openai-codex')
conflicts=('openai-codex')
Pinned Comments
jackmhny commented on 2025-08-16 15:50 (UTC)
note: current bug with my PKGBUILD with aarch64, will fix soon