Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
gnome-keyring: fix cap usage
- fixed SRCURL
- fix nonroot-build
```
#BEEWRAP-setcap# [23162] setcap cap_ipc_lock=ep /dev/shm/mxqd/mnt/job/31299284/gnome-keyring-3.28.2-0/buildroot/gnome-keyring/gnome-keyring-
3.28.2-0/image/usr/bin/gnome-keyring-daemon
unable to set CAP_SETFCAP effective capability: Operation not permitted
```
  • Loading branch information
wwwutz committed Sep 2, 2021
1 parent b8663d6 commit 8f53489
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions gnome-keyring.be0
@@ -1,8 +1,9 @@
#!/usr/bin/env beesh

# BEE_VERSION gnome-keyring-3.28.2-0
# BEE_VERSION gnome-keyring-3.28.2-1

SRCURL[0]="https://ftp.gnome.org/pub/gnome/sources/gnome-keyring/${PKGVERSION[2]}/gnome-keyring-${PKGVERSION}.tar.xz"
# SRCURL[0]="https://ftp.gnome.org/pub/gnome/sources/gnome-keyring/${PKGVERSION[2]}/gnome-keyring-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/284580f954f762caf62aed2ae7358177/gnome-keyring-3.28.2.tar.xz"

# PATCHURL+=()

Expand All @@ -20,8 +21,10 @@ SRCURL[0]="https://ftp.gnome.org/pub/gnome/sources/gnome-keyring/${PKGVERSION[2]
#}

mee_configure() {
bee_configure --with-pam-dir=/lib/security \

bee_configure \
--with-pam-dir=/lib/security \
--disable-nls \
--without-libcap-ng
}

#mee_build() {
Expand All @@ -31,4 +34,4 @@ mee_configure() {
#mee_install() {
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'

0 comments on commit 8f53489

Please sign in to comment.