Date: Tuesday, July 20, 2021 @ 13:57:31 Author: archange Revision: 980069
Fix parsing of some options Modified: stubby/trunk/PKGBUILD ----------+ PKGBUILD | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-07-20 13:57:05 UTC (rev 980068) +++ PKGBUILD 2021-07-20 13:57:31 UTC (rev 980069) @@ -2,7 +2,7 @@ pkgname=stubby pkgver=0.4.0 -pkgrel=1 +pkgrel=2 pkgdesc="DNS Privacy stub resolver" arch=(x86_64) url="https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Daemon+-+Stubby" @@ -10,12 +10,18 @@ backup=(etc/stubby/stubby.yml) depends=(getdns libsystemd libyaml) makedepends=(cmake) -source=(https://github.com/getdnsapi/stubby/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz) -sha256sums=('8e6a4ba76f04b23612d58813c4998141b0cc6194432d87f8653f3ba5cf64152a') +source=(https://github.com/getdnsapi/stubby/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz + stubby-fix-resolvconf-parsing.patch::https://github.com/getdnsapi/stubby/commit/1c037fad5a21d09e63ad32c77ec1f432ffaa9ef8.patch + stubby-fix-tls_curves_list-parsing.patch::https://patch-diff.githubusercontent.com/raw/getdnsapi/stubby/pull/293.patch) +sha256sums=('8e6a4ba76f04b23612d58813c4998141b0cc6194432d87f8653f3ba5cf64152a' + '5751a1a0b6dc1f5651b21d857d9164a8be249dfcb2a15ca555d792361dc6ccbc' + '285c1c5fb2940de93edc0eabd470eeeab61e505dca1ca3da539526806ab998fb') prepare() { cd ${pkgname}-${pkgver} sed -e 's/^# appdata_dir:/appdata_dir:/g' -e 's:/etc/unbound/getdns-root.key:/etc/trusted-key.key:g' -i stubby.yml.example + patch -p1 -i ../stubby-fix-resolvconf-parsing.patch + patch -p1 -i ../stubby-fix-tls_curves_list-parsing.patch } build() {
