Issue 150827
Summary trixie/unstable debian packages: apt-key used in llvms.h but not available anymore
Labels new issue
Assignees
Reporter t-b
    Installing llvm via

```
ARG LLVM_VERSION=20

    apt-get install -y --no-install-recommends    \
 lsb-release wget gnupg                 && \
    curl -LOJR https://apt.llvm.org/llvm.sh    && \
    chmod +x llvm.sh && \
    ./llvm.sh ${LLVM_VERSION}                  && \
    rm llvm.sh                                 && \
    apt-get install -y --no-install-recommends    \
        clang++-${LLVM_VERSION} \
        clang-format-${LLVM_VERSION}              \
 clang-tidy-${LLVM_VERSION}
```

on a debian trixie container image

outputs

```
+ apt-key list
++ grep -i llvm
+ [[ -z '' ]]
+ apt-key del AF4F7421
./llvm.sh: line 198: apt-key: command not found
+ true
```

The apt-key binary is not available anymore in trixie, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1002820.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to