From: Randy MacLeod <randy.macleod@windriver.com>
To: Chen Qi <Qi.Chen@windriver.com>,
<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH 4/6] sudo: upgrade to 1.8.13
Date: Wed, 8 Apr 2015 09:32:39 -0400 [thread overview]
Message-ID: <55252DF7.6020302@windriver.com> (raw)
In-Reply-To: <ed4cad55a71d818c5a126e07f7b86151473eeb93.1428488582.git.Qi.Chen@windriver.com>
On 2015-04-08 06:24 AM, Chen Qi wrote:
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
> meta/recipes-extended/sudo/sudo.inc | 12 +++---------
> .../sudo/{sudo_1.8.11p2.bb => sudo_1.8.13.bb} | 4 ++--
> 2 files changed, 5 insertions(+), 11 deletions(-)
> rename meta/recipes-extended/sudo/{sudo_1.8.11p2.bb => sudo_1.8.13.bb} (87%)
>
> diff --git a/meta/recipes-extended/sudo/sudo.inc b/meta/recipes-extended/sudo/sudo.inc
> index 6e9aec8..2d411f3 100644
> --- a/meta/recipes-extended/sudo/sudo.inc
> +++ b/meta/recipes-extended/sudo/sudo.inc
> @@ -4,12 +4,12 @@ HOMEPAGE = "http://www.sudo.ws"
> BUGTRACKER = "http://www.sudo.ws/bugs/"
> SECTION = "admin"
> LICENSE = "ISC & BSD & Zlib"
> -LIC_FILES_CHKSUM = "file://doc/LICENSE;md5=69e337d679950e304953813158595256 \
> - file://plugins/sudoers/redblack.c;beginline=1;endline=41;md5=e2dbb155fc49beea947515300bab99e0 \
> +LIC_FILES_CHKSUM = "file://doc/LICENSE;md5=346ce81ebf0f7f89fd379b40b6a4233b \
> + file://plugins/sudoers/redblack.c;beginline=1;endline=41;md5=cfe41112f96c19a074934d128f45c693 \
> file://lib/util/fnmatch.c;beginline=3;endline=27;md5=67f83ee9bd456557397082f8f1be0efd \
> file://lib/util/getcwd.c;beginline=5;endline=27;md5=449af4cc57fc7d46f42090608ba3e681 \
> file://lib/util/glob.c;beginline=6;endline=31;md5=5872733146b9eb0deb79e1f664815b85 \
> - file://lib/util/snprintf.c;beginline=6;endline=31;md5=c98b24f02967c095d7a70ae2e4d4d4ea \
> + file://lib/util/snprintf.c;beginline=6;endline=34;md5=c82c1b3a5c32e08545c9ec5d71e41e50 \
> file://include/sudo_queue.h;beginline=5;endline=27;md5=449af4cc57fc7d46f42090608ba3e681 \
> file://lib/util/inet_pton.c;beginline=3;endline=17;md5=3970ab0518ab79cbd0bafb697f10b33a"
>
> @@ -22,12 +22,6 @@ CONFFILES_${PN} = "${sysconfdir}/sudoers"
>
> EXTRA_OECONF = "--with-editor=/bin/vi --with-env-editor"
>
> -do_configure_prepend () {
> - if [ ! -e ${S}/acinclude.m4 ]; then
> - cat ${S}/aclocal.m4 > ${S}/acinclude.m4
> - fi
> -}
Is this really safe to drop?
If so please explain why in the long log.
../Randy
> -
> # mksigname/mksiglist are used on build host to generate source files
> do_compile_prepend () {
> oe_runmake SSP_CFLAGS="" SSP_LDFLAGS="" CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS" CPPFLAGS="$BUILD_CPPFLAGS -I${S}/include -I${S} -I${B}" -C lib/util mksigname mksiglist
> diff --git a/meta/recipes-extended/sudo/sudo_1.8.11p2.bb b/meta/recipes-extended/sudo/sudo_1.8.13.bb
> similarity index 87%
> rename from meta/recipes-extended/sudo/sudo_1.8.11p2.bb
> rename to meta/recipes-extended/sudo/sudo_1.8.13.bb
> index c5e2545..4494170 100644
> --- a/meta/recipes-extended/sudo/sudo_1.8.11p2.bb
> +++ b/meta/recipes-extended/sudo/sudo_1.8.13.bb
> @@ -6,8 +6,8 @@ SRC_URI = "http://ftp.sudo.ws/sudo/dist/sudo-${PV}.tar.gz \
>
> PAM_SRC_URI = "file://sudo.pam"
>
> -SRC_URI[md5sum] = "84012b4871b6c775c957cd310d5bad87"
> -SRC_URI[sha256sum] = "8133849418fa18cf6b6bb6893d1855ff7afe21db8923234a00bf045c90fba1ad"
> +SRC_URI[md5sum] = "f61577ec330ad1bd504c0e2eec6ea2d8"
> +SRC_URI[sha256sum] = "e374e5edf2c11c00d6916a9f51cb0ad15e51c7b028370fa15169b07e61e05a25"
>
> DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
> RDEPENDS_${PN} += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'pam-plugin-limits pam-plugin-keyinit', '', d)}"
>
--
# Randy MacLeod. SMTS, Linux, Wind River
Direct: 613.963.1350 | 350 Terry Fox Drive, Suite 200 Ottawa, Ontario,
Canada K2K 2W5
next prev parent reply other threads:[~2015-04-08 13:32 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-08 10:24 [PATCH 0/6] Package Upgrades Chen Qi
2015-04-08 10:24 ` [PATCH 1/6] curl: upgrade to 7.41.0 Chen Qi
2015-04-08 10:24 ` [PATCH 2/6] busybox: upgrade to 1.23.2 Chen Qi
2015-04-08 10:24 ` [PATCH 3/6] kmod: upgrade to 20 Chen Qi
2015-04-09 11:46 ` Richard Purdie
2015-04-10 3:16 ` ChenQi
2015-04-08 10:24 ` [PATCH 4/6] sudo: upgrade to 1.8.13 Chen Qi
2015-04-08 13:32 ` Randy MacLeod [this message]
2015-04-09 1:59 ` ChenQi
2015-04-08 10:24 ` [PATCH 5/6] sysstat: upgrade to 11.1.3 Chen Qi
2015-04-08 10:24 ` [PATCH 6/6] xz: upgrade to 5.2.1 Chen Qi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55252DF7.6020302@windriver.com \
--to=randy.macleod@windriver.com \
--cc=Qi.Chen@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox