Skip to content

Commit cdda181

Browse files
committed
2 parents 6d6def8 + 2564149 commit cdda181

5 files changed

+10
-381
lines changed

sudo-selinux/.SRCINFO

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pkgbase = sudo-selinux
22
pkgdesc = Give certain users the ability to run some commands as root - SELinux support
3-
pkgver = 1.9.15.p5
4-
pkgrel = 2
3+
pkgver = 1.9.16
4+
pkgrel = 1
55
url = https://www.sudo.ws/sudo/
66
install = sudo.install
77
arch = x86_64
@@ -14,27 +14,21 @@ pkgbase = sudo-selinux
1414
depends = libldap
1515
depends = zlib
1616
depends = libselinux
17-
provides = sudo=1.9.15.p5-2
18-
provides = selinux-sudo=1.9.15.p5-2
17+
provides = sudo=1.9.16-1
18+
provides = selinux-sudo=1.9.16-1
1919
conflicts = sudo
2020
conflicts = selinux-sudo
2121
backup = etc/pam.d/sudo
2222
backup = etc/sudo.conf
2323
backup = etc/sudo_logsrvd.conf
2424
backup = etc/sudoers
25-
source = https://www.sudo.ws/sudo/dist/sudo-1.9.15p5.tar.gz
26-
source = https://www.sudo.ws/sudo/dist/sudo-1.9.15p5.tar.gz.sig
27-
source = sudo-selinux-preserve-editor-for-visudo.patch::https://github.com/sudo-project/sudo/commit/1db1453556e1.patch
28-
source = sudo-selinux-enable-secure_path-by-default.patch::https://github.com/sudo-project/sudo/commit/e0e24456bc3f.patch
29-
source = sudo-selinux-add-with-secure-path-value-option.patch::https://github.com/sudo-project/sudo/commit/e24737eac90f.patch
25+
source = https://www.sudo.ws/sudo/dist/sudo-1.9.16.tar.gz
26+
source = https://www.sudo.ws/sudo/dist/sudo-1.9.16.tar.gz.sig
3027
source = sudo_logsrvd.service
3128
source = sudo.pam
3229
validpgpkeys = 59D1E9CCBA2B376704FDD35BA9F4C021CEA470FB
33-
sha256sums = 558d10b9a1991fb3b9fa7fa7b07ec4405b7aefb5b3cb0b0871dbc81e3a88e558
30+
sha256sums = c0d84d797f06b732fc573d0b798ae83128c2bc33052057f05b560ec6bcbfa03d
3431
sha256sums = SKIP
35-
sha256sums = 321aa5f1b482ffd5728c07477a51ce3de1e48b9db13f4578e662c227c705826c
36-
sha256sums = baacece8e854bed47276925715ae8f3c2771ad72821006b3a26796fe154e1130
37-
sha256sums = 78cc8346d79b359d89e8b2e27485eab8b076fab72e0c74832fa994407c3c6147
3832
sha256sums = bd4bc2f5d85cbe14d7e7acc5008cb4fe62c38de7d42dc6876c87bfaa273c0a6e
3933
sha256sums = d1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2
4034

sudo-selinux/PKGBUILD

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
# If you want to help keep it up to date, please open a Pull Request there.
1010

1111
pkgname=sudo-selinux
12-
_sudover=1.9.15p5
13-
pkgrel=2
12+
_sudover=1.9.16
13+
pkgrel=1
1414
pkgver=${_sudover/p/.p}
1515
pkgdesc="Give certain users the ability to run some commands as root - SELinux support"
1616
arch=('x86_64' 'aarch64')
@@ -27,25 +27,16 @@ backup=('etc/pam.d/sudo'
2727
'etc/sudoers')
2828
install=${pkgname/-selinux}.install
2929
source=(https://www.sudo.ws/sudo/dist/${pkgname/-selinux}-$_sudover.tar.gz{,.sig}
30-
$pkgname-preserve-editor-for-visudo.patch::https://github.com/sudo-project/sudo/commit/1db1453556e1.patch
31-
$pkgname-enable-secure_path-by-default.patch::https://github.com/sudo-project/sudo/commit/e0e24456bc3f.patch
32-
$pkgname-add-with-secure-path-value-option.patch::https://github.com/sudo-project/sudo/commit/e24737eac90f.patch
3330
sudo_logsrvd.service
3431
sudo.pam)
35-
sha256sums=('558d10b9a1991fb3b9fa7fa7b07ec4405b7aefb5b3cb0b0871dbc81e3a88e558'
32+
sha256sums=('c0d84d797f06b732fc573d0b798ae83128c2bc33052057f05b560ec6bcbfa03d'
3633
'SKIP'
37-
'321aa5f1b482ffd5728c07477a51ce3de1e48b9db13f4578e662c227c705826c'
38-
'baacece8e854bed47276925715ae8f3c2771ad72821006b3a26796fe154e1130'
39-
'78cc8346d79b359d89e8b2e27485eab8b076fab72e0c74832fa994407c3c6147'
4034
'bd4bc2f5d85cbe14d7e7acc5008cb4fe62c38de7d42dc6876c87bfaa273c0a6e'
4135
'd1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
4236
validpgpkeys=('59D1E9CCBA2B376704FDD35BA9F4C021CEA470FB')
4337

4438
prepare() {
4539
cd "${pkgname/-selinux}-$_sudover"
46-
patch -Np1 -i ../$pkgname-preserve-editor-for-visudo.patch
47-
patch -Np1 -F3 -i ../$pkgname-enable-secure_path-by-default.patch
48-
patch -Np1 -i ../$pkgname-add-with-secure-path-value-option.patch
4940
}
5041

5142
build() {

sudo-selinux/sudo-selinux-add-with-secure-path-value-option.patch

Lines changed: 0 additions & 91 deletions
This file was deleted.

sudo-selinux/sudo-selinux-enable-secure_path-by-default.patch

Lines changed: 0 additions & 171 deletions
This file was deleted.

0 commit comments

Comments
 (0)