惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog RSS Feed
量子位
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
B
Blog
U
Unit 42
C
Check Point Blog
I
InfoQ
aimingoo的专栏
aimingoo的专栏
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
爱范儿
爱范儿

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - verible-bin
2026-06-20 · via AUR Newest Packages

Latest Comments

leuko commented on 2024-08-08 10:19 (UTC)

Dear @ildus can you reproduce the error I mentioned:

warning: directory permissions differ on /usr/bin/

snafu commented on 2024-04-29 06:33 (UTC)

looking forward to autoupdate - it's nicer to stick to a version, instead of fetching always the latest… not really reproducible on different machines and since you never know which version is installed.

leuko commented on 2024-04-12 10:05 (UTC)

Not critical but annoying:

warning: directory permissions differ on /usr/bin/

Could be fixed with a chmod 755 $pkgdir/usr/bin.

furai commented on 2024-03-25 13:39 (UTC) (edited on 2024-03-25 14:15 (UTC) by furai)

It seems that there are some issues with grep in PKGBUILD. I'm getting:

grep: warning: stray \ before -

furai commented on 2023-12-28 20:27 (UTC)

@ildus, how is it looking on the auto update thing?

ildus commented on 2023-11-06 09:37 (UTC)

@furai I think it's not possible, it is kind of legitimate. I will add some AUR auto-update in the near future.

furai commented on 2023-11-06 08:17 (UTC)

I'm using yay for managing AUR packages. Is it possible to somehow avoid messages like:

 -> verible-bin: local (0.0.3428-1) is newer than AUR (0.0.3424-1)

when doing system updates?

ildus commented on 2023-10-22 12:17 (UTC)

The package always retrieves the latest version from github.

gpol commented on 2023-03-07 19:34 (UTC)

It fetches the aarch64 binary rather than the x86_64 binary. Got it working with the following diff.

diff --git a/PKGBUILD b/PKGBUILD
index dfd7278..bb50feb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Ildus Kurbangaliev <i.kurbangaliev@gmail.com>

 pkgname=verible-bin
-pkgver=0.0.2613
+pkgver=0.0.3021
 pkgrel=1
 pkgdesc='SystemVerilog parser, linter, formatter and etc from Google'
 arch=('x86_64')
@@ -14,7 +14,13 @@ source=("https://api.github.com/repos/chipsalliance/verible/releases/latest")
 sha512sums=('SKIP')

 prepare() {
-  cat latest | jq '.assets[0]["browser_download_url"]' | xargs wget -O - | tar -xz
+  cat latest | jq '.assets' \
+             | grep -i --color=never browser_download_url \
+             | grep -i --color=never centos \
+             | grep -i --color=never "${arch}" \
+             | awk '{print $2}' \
+             | xargs wget -O - \
+             | tar -xz
 }

 pkgver() {