Package Details: tnb 1:2.1.1-1

Git Clone URL: https://aur.archlinux.org/tnb.git (read-only, click to copy)
Package Base: tnb
Description: CLI-based Telegram Notification Bot
Upstream URL: https://github.com/Wint3rmute/tnb.git
Keywords: bot cli rust telegram
Licenses: custom:WTFPL
Submitter: wint3rmute
Maintainer: wint3rmute
Last Packager: wint3rmute
Votes: 1
Popularity: 0.000000
First Submitted: 2019-11-07 23:30 (UTC)
Last Updated: 2023-11-26 14:25 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

Sandarr95 commented on 2023-02-10 14:09 (UTC)

That worked! Thanks a lot for the pointers. Next time, I'll make sure I check the versions of dependencies I have installed. Was not aware that the way I installed rust required updating separately.

wint3rmute commented on 2023-01-23 18:07 (UTC)

Hey @Sandarr95,

I'm unable to reproduce the issue you're experiencing. I've tried to reproduce the error using a clear archlinux Docker image, the following Dockerfile builds just fine:

FROM archlinux:latest
RUN pacman -Sy --noconfirm base-devel git sudo cargo

RUN useradd -m test
RUN echo "ALL            ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers

USER test
WORKDIR /home/test

RUN git clone https://aur.archlinux.org/tnb.git
WORKDIR /home/test/tnb
RUN makepkg

Are you sure that you're using the Rust compiler from the official repositories? Maybe your toolchain is outdated and you should run rustup update? Make sure to check the installation page on ArchWiki's article on Rust :)

Sandarr95 commented on 2023-01-23 16:55 (UTC)

I'm getting an error when trying to update (via yay):

error: failed to parse manifest at `/tmp/makepkg/tnb/src/tnb/Cargo.toml`

Caused by:
  invalid type: unit variant, expected string only for key `profile.release.strip`

I've found some relevant documentation that seems to contradict that error at https://doc.rust-lang.org/cargo/reference/profiles.html#strip

Love to help, but I'm not that fluent in Rust.