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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
小众软件
小众软件
美团技术团队
Martin Fowler
Martin Fowler
爱范儿
爱范儿
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
J
Java Code Geeks
B
Blog
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
博客园 - Franky

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) - plasma6-applets-appgrid
2026-05-29 · via AUR Newest Packages

@okunium sorry for that, i recreated the tag and thought I was fast enough :)

It's not building. I get this error: ==> ERROR: One or more files did not pass the validity check! error: failed to download sources for 'plasma6-applets-appgrid-1.4.0-1': error: packages failed to build: plasma6-applets-appgrid-1.4.0-1

Hi, your package is missing a lot of dependencies according to namcap. Here is a patch file that does the following:

  1. Properly assigns the missing dependencies
  2. Has the bare minimum makedepends required to actually build
  3. Removes -j$(nproc). This is improper, as it is up to the user to define how many jobs the require in `/etc/makepkg.conf.
  4. Set the CMake build type to None as described in the CMake package guideliens.
diff --git a/PKGBUILD b/PKGBUILD
index 7c24d38..c42cfb2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,20 +9,26 @@ license=('GPL-2.0-or-later')
 depends=(
     'plasma-workspace'
     'kservice'
-    'ki18n'
     'layer-shell-qt'
-)
-makedepends=(
-    'cmake'
-    'extra-cmake-modules'
+    'kcoreaddons'
+    'kdeclarative'
     'qt6-base'
+    'glibc'
     'qt6-declarative'
+    'kwindowsystem'
+    'libgcc'
+    'libstdc++'
+    'ksvg'
+    'kcmutils'
+    'kirigami'
+    'milou'
+    'kiconthemes'
     'libplasma'
-    'kpackage'
     'kio'
-    'kcoreaddons'
-    'kwindowsystem'
-    'gettext'
+)
+makedepends=(
+    'cmake'
+    'extra-cmake-modules'
 )
 provides=('appgrid')
 conflicts=('appgrid')
@@ -32,9 +38,9 @@ sha256sums=('4c9f8952e5986496a4d7e10b1f48bd73a10a387061941bbb5cf434b4139b2003')

 build() {
     cmake -B build -S "plasma6-applet-appgrid-${pkgver}" \
-        -DCMAKE_BUILD_TYPE=Release \
+        -DCMAKE_BUILD_TYPE=None \
         -DCMAKE_INSTALL_PREFIX=/usr
-    cmake --build build -j$(nproc)
+    cmake --build build
 }

 package() {