Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
9af7d6ac
Commit
9af7d6ac
authored
2 months ago
by
achill (fossdd)
Committed by
Natanael Copa
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
community/polkit: upgrade to 126
https://github.com/polkit-org/polkit/blob/126/NEWS.md
parent
fecbe597
No related branches found
No related tags found
2 merge requests
!79570
community/firefox-esr: upgrade to 128.7.0
,
!78475
community/polkit: upgrade to 126
Pipeline
#290423
skipped
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/polkit/APKBUILD
+2
-4
2 additions, 4 deletions
community/polkit/APKBUILD
community/polkit/args.patch
+0
-29
0 additions, 29 deletions
community/polkit/args.patch
with
2 additions
and
33 deletions
community/polkit/APKBUILD
+
2
−
4
View file @
9af7d6ac
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname
=
polkit
pkgname
=
polkit
pkgver
=
12
5
pkgver
=
12
6
pkgrel
=
0
pkgrel
=
0
pkgdesc
=
"Application development toolkit for controlling system-wide privileges"
pkgdesc
=
"Application development toolkit for controlling system-wide privileges"
url
=
"https://github.com/polkit-org/polkit"
url
=
"https://github.com/polkit-org/polkit"
...
@@ -37,7 +37,6 @@ subpackages="
...
@@ -37,7 +37,6 @@ subpackages="
source
=
"https://github.com/polkit-org/polkit/archive/refs/tags/
$pkgver
/polkit-
$pkgver
.tar.gz
source
=
"https://github.com/polkit-org/polkit/archive/refs/tags/
$pkgver
/polkit-
$pkgver
.tar.gz
alpine-polkit.pam
alpine-polkit.pam
polkit.initd
polkit.initd
args.patch
"
"
# secfixes:
# secfixes:
...
@@ -194,8 +193,7 @@ openrc() {
...
@@ -194,8 +193,7 @@ openrc() {
}
}
sha512sums
=
"
sha512sums
=
"
64d85c1557355d6de6483beeb855b74a99dbb30cf9968206dc0aaf147156072ca2604bf667533099ee3972b3eed0421ec0a1ff8bea35a1e4c54da7b9688e0953
polkit-12
5
.tar.gz
dbdbc31b7a231c963788b37cf1a138e30336466fb662225a812faaf58e45439925d9d39346cc8f07e54f22040c2f142435acb9fded315d33e24930e0abc736c7
polkit-12
6
.tar.gz
f5102dc00d390b3a3c957b62e1712db778c7ffb7378f3d8e816c0757c11a308c5d5303e42595b0d6add9839247c773880cd34e56afacc89eb6efaadf9aae7826 alpine-polkit.pam
f5102dc00d390b3a3c957b62e1712db778c7ffb7378f3d8e816c0757c11a308c5d5303e42595b0d6add9839247c773880cd34e56afacc89eb6efaadf9aae7826 alpine-polkit.pam
f6e5ac0ed41feb392dfd104979ec577c5936f3db2bd252b12b7b9b2609a0901dae38bebec1ea65ccf4f427860b520383ae4d2c66fb74ab986c715f6b0ad50473 polkit.initd
f6e5ac0ed41feb392dfd104979ec577c5936f3db2bd252b12b7b9b2609a0901dae38bebec1ea65ccf4f427860b520383ae4d2c66fb74ab986c715f6b0ad50473 polkit.initd
0605c528e25ea1f281ea7708e0185df971174e809ef112c24caa18658b78c6b819890897a4e5d5353098c52be2fccea6a902049c846b3b6b713cb7501f431703 args.patch
"
"
This diff is collapsed.
Click to expand it.
community/polkit/args.patch
deleted
100644 → 0
+
0
−
29
View file @
fecbe597
Add missing arguments
Ref https://github.com/polkit-org/polkit/commit/64f5e4dda5240702ea3ad5d00ba8c5207fbacf72
--- a/src/polkitbackend/polkitbackendduktapeauthority.c
+++ b/src/polkitbackend/polkitbackendduktapeauthority.c
@@ -767,12 +767,14 @@
runaway_killer_common(PolkitBackendJsAuthority *authority, RunawayKillerCtx *ctx
#ifdef HAVE_PTHREAD_CONDATTR_SETCLOCK
if ((pthread_err = pthread_condattr_init(&attr))) {
polkit_backend_authority_log (POLKIT_BACKEND_AUTHORITY (authority),
+ LOG_LEVEL_ERROR,
"Error initializing condition variable attributes: %s",
strerror(pthread_err));
return FALSE;
}
if ((pthread_err = pthread_condattr_setclock(&attr, PK_CLOCK))) {
polkit_backend_authority_log (POLKIT_BACKEND_AUTHORITY (authority),
+ LOG_LEVEL_ERROR,
"Error setting condition variable attributes: %s",
strerror(pthread_err));
goto err_clean_condattr;
@@ -780,6 +782,7 @@
runaway_killer_common(PolkitBackendJsAuthority *authority, RunawayKillerCtx *ctx
/* Init again, with needed attr */
if ((pthread_err = pthread_cond_init(&ctx->cond, &attr))) {
polkit_backend_authority_log (POLKIT_BACKEND_AUTHORITY (authority),
+ LOG_LEVEL_ERROR,
"Error initializing condition variable: %s",
strerror(pthread_err));
goto err_clean_condattr;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment