Levente Polyak pushed to branch main at Arch Linux / Packaging / Packages / 
openai-codex


Commits:
9b385fae by Levente Polyak at 2026-02-20T17:49:23+01:00
deps: add explicit dependencies and fix new gcc-libs split deps todo

- - - - -
2eb87fc8 by Levente Polyak at 2026-02-20T17:50:08+01:00
dist shell completions for codex

- - - - -
511e067a by Levente Polyak at 2026-02-20T18:28:28+01:00
upgpkg: 0.104.0-2: dist completions

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
 pkgbase = openai-codex
        pkgdesc = OpenAIs lightweight coding agent that runs in your terminal
        pkgver = 0.104.0
-       pkgrel = 1
+       pkgrel = 2
        url = https://github.com/openai/codex
        arch = x86_64
        license = Apache-2.0
@@ -11,9 +11,13 @@ pkgbase = openai-codex
        checkdepends = cmake
        checkdepends = dotslash
        makedepends = cargo
-       depends = openssl
-       depends = gcc-libs
+       depends = bzip2
        depends = glibc
+       depends = libcap
+       depends = libgcc
+       depends = openssl
+       depends = xz
+       depends = zlib
        optdepends = git: allow for repository actions
        optdepends = ripgrep: accelerated large-repo search
        options = !lto


=====================================
PKGBUILD
=====================================
@@ -4,15 +4,19 @@
 
 pkgname=openai-codex
 pkgver=0.104.0
-pkgrel=1
+pkgrel=2
 pkgdesc='OpenAIs lightweight coding agent that runs in your terminal'
 arch=(x86_64)
 url='https://github.com/openai/codex'
 license=(Apache-2.0)
 depends=(
-  openssl
-  gcc-libs
+  bzip2
   glibc
+  libcap
+  libgcc
+  openssl
+  xz
+  zlib
 )
 makedepends=(cargo)
 checkdepends=(cargo-nextest git clang cmake dotslash)
@@ -91,6 +95,13 @@ package() {
   install -Dm755 -t "$pkgdir"/usr/bin \
     target/release/codex \
     target/release/codex-responses-api-proxy
+
+  install -d "${pkgdir}/usr/share/bash-completion/completions" \
+             "${pkgdir}/usr/share/zsh/site-functions" \
+             "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/codex" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/codex"
+  "${pkgdir}/usr/bin/codex" completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_codex"
+  "${pkgdir}/usr/bin/codex" completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/codex.fish"
 }
 
 # vim:set ts=2 sw=2 et:



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/openai-codex/-/compare/2ecb280eb833ccdb9f68b84811695e7f47adac83...511e067a121b669e92b0dff4c18d456518633875

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/openai-codex/-/compare/2ecb280eb833ccdb9f68b84811695e7f47adac83...511e067a121b669e92b0dff4c18d456518633875
You're receiving this email because of your account on gitlab.archlinux.org.


Reply via email to