diff options
-rw-r--r-- | community/kea/APKBUILD | 7 | ||||
-rw-r--r-- | community/kea/use-runstatedir-for-pid-file-location.patch | 6 |
2 files changed, 7 insertions, 6 deletions
diff --git a/community/kea/APKBUILD b/community/kea/APKBUILD index 5674b666a4..c5b8998c03 100644 --- a/community/kea/APKBUILD +++ b/community/kea/APKBUILD @@ -3,7 +3,8 @@ # Contributor: Baptiste Jonglez <baptiste--aur@jonglez.org> # Contributor: Jakub Jirutka <jakub@jirutka.cz> pkgname=kea -pkgver=1.7.5 +# When bumping, always rebuild all kea hooks (kea-* aports)! +pkgver=1.7.6 pkgrel=0 pkgdesc="DHCPv4 and DHCPv6 server from ISC" url="http://kea.isc.org" @@ -244,10 +245,10 @@ _install_initd() { sed -i "s|@@NAME@@|$name|g" "$subpkgdir"/etc/init.d/$name } -sha512sums="1e31a9b2031d5dfdef18178abcdc30c1fe20ac4013c070cf01e2a2af56d4594fc8ae1edcc9e98483cd8feb8d9d916b893e42cfdd41e195c2d79d0c8800040034 kea-1.7.5.tar.gz +sha512sums="5f48dc8fa60c9e8614237b27a5eff2857854e2878397c5d9cbb388abc94f35aedecedf696582b7ba4dbcd79c38c42af6557e013d5a9db4756d6e525af279287a kea-1.7.6.tar.gz 55780bbcbd79b81d55bdccd46da6ca6babe8b7894aa82948308dc4f8a0e2b5d33fad633276696c8ba7bd063026bb11ae529a096375d0572833c66e2132888775 disable-db-tests.patch 6d142d7ede2bd29a9133fe4e4a3ca6bab2b51a56926b268fab218921edd49250b240c0f59efa8a389b49a5478db5bda95acf531382b14cdf9327dddddcdb2d4d configs-fix-paths.patch -574b4aacef03c2d4a556b4ff8b152b66efd6fdc27ad09373d41c72df15f8a2cd2386e0bbe7e07f1370d9cd11e0954fc679f3d57e6b647d601cc06e0c63bc8712 use-runstatedir-for-pid-file-location.patch +c2472e5c4eebd604be4baeda991161c6174b73d6ff1e3971ecdd29d1ad8557c92cdcef1d2b935124c756caa298c01d51ec7e1951c5c4d1cf6ec7d853b2f3e4ac use-runstatedir-for-pid-file-location.patch 062e6eb88c49aeeac5d78c37c43cda1ff753e19f833aaa1525e37f66eede819910d4849bd954f3ef8ceb1b13e747953c99e2a9a4d9755b6da8d82c4e08b2b55c put-LOCKFILE_DIR-to-runstatedir.patch 5b93d96f2cbdce327ffceef5ace19ba5327a0c7d0d61714e35a0d72912ecbbec6a1864249612b48f8db20dffc3622170c3e21b1a67297fd834f47b94db85b9d7 kea-admin-remove-builddir.patch 4029a526a210cb49ca480fea728dfae5933371244df6348411081db1e8b23924cbbdde5fa745ab4c14552a95451953a18a65d7660227bc0bb1d51be708fab92f kea.initd.in" diff --git a/community/kea/use-runstatedir-for-pid-file-location.patch b/community/kea/use-runstatedir-for-pid-file-location.patch index 146026b5e0..23cb44353e 100644 --- a/community/kea/use-runstatedir-for-pid-file-location.patch +++ b/community/kea/use-runstatedir-for-pid-file-location.patch @@ -27,8 +27,8 @@ Patch-Source: https://sources.debian.org/src/isc-kea/1.5.0-2/debian/patches/0004 Daemon::Daemon() : signal_set_(), signal_handler_(), config_file_(""), -- pid_file_dir_(DATA_DIR), pid_file_(), am_file_author_(false) { -+ pid_file_dir_(KEA_PIDFILE_DIR), pid_file_(), am_file_author_(false) { +- pid_file_dir_(DATA_DIR), pid_file_(), am_file_author_(false), ++ pid_file_dir_(KEA_PIDFILE_DIR), pid_file_(), am_file_author_(false), + exit_value_(EXIT_SUCCESS) { // The pid_file_dir can be overridden via environment variable - // This is primarily intended to simplify testing |