From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mx1.pokylinux.org (Postfix) with ESMTP id 6ACD84C80039 for ; Thu, 2 Dec 2010 11:50:10 -0600 (CST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 02 Dec 2010 09:50:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.59,289,1288594800"; d="scan'208";a="863666349" Received: from unknown (HELO [10.255.12.252]) ([10.255.12.252]) by fmsmga001.fm.intel.com with ESMTP; 02 Dec 2010 09:50:04 -0800 Message-ID: <4CF7DC4B.5030601@intel.com> Date: Thu, 02 Dec 2010 09:50:03 -0800 From: Saul Wold User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.10) Gecko/20100621 Fedora/3.0.5-1.fc13 Lightning/1.0b2pre Thunderbird/3.0.5 MIME-Version: 1.0 To: Scott Garman References: In-Reply-To: Cc: "poky@yoctoproject.org" Subject: Re: [PATCH 0/4] Recipe upgrades: sudo, libpam, and mtools X-BeenThere: poky@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Poky build system developer discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 17:50:10 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 11/24/2010 10:44 AM, Scott Garman wrote: > Hi Saul, > > Here are a few distro recipe upgrades. Some things to note: > > * The version of mtools we have had to date is a GPLv2 version, so I > left that recipe as-is and added the latest release, which is GPLv3. > * I've added source checksums, LIC_FILES_CHKSUM, and SUMMARY fields > where needed, etc. > * I was able to remove obsolete patches from sudo and libpam after > doing close verification. > * I have successfully built these on all of our nightly-release qemu > machine arches - build testing should be solid. I also verfied the > output of the final packages to check for missing files or other > significant changes. > > Pull URL: git://git.pokylinux.org/poky-contrib.git > Branch: sgarman/recipe-upgrades > Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/recipe-upgrades > > Thanks, > Scott Garman > --- > > > Scott Garman (4): > sudo: upgrade to version 1.7.4p4 > libpam: upgrade to version 1.1.3 > mtools: add version 4.0.15 > distro_tracking_fields.inc: update sudo, libpam, and mtools > > .../conf/distro/include/distro_tracking_fields.inc | 31 +++-- > .../mtools/mtools/no-x11.gplv3.patch | 15 ++ > meta/recipes-devtools/mtools/mtools_4.0.15.bb | 21 +++ > .../pam/libpam-1.1.1/disable_crossbinary.patch | 34 ----- > .../pam/{libpam-1.1.1 => libpam}/99_pam | 0 > .../{libpam-1.1.1 => libpam}/pam.d/common-account | 0 > .../pam/{libpam-1.1.1 => libpam}/pam.d/common-auth | 0 > .../{libpam-1.1.1 => libpam}/pam.d/common-password | 0 > .../{libpam-1.1.1 => libpam}/pam.d/common-session | 0 > .../pam.d/common-session-noninteractive | 0 > .../pam/{libpam-1.1.1 => libpam}/pam.d/other | 0 > .../pam/{libpam_1.1.1.bb => libpam_1.1.3.bb} | 12 ++- > meta/recipes-extended/sudo/files/autofoo.patch | 143 -------------------- > meta/recipes-extended/sudo/files/libtool.patch | 20 +++ > meta/recipes-extended/sudo/files/noexec-link.patch | 17 --- > meta/recipes-extended/sudo/files/nostrip.patch | 23 --- > meta/recipes-extended/sudo/site/bit-32 | 2 - > meta/recipes-extended/sudo/site/bit-64 | 2 - > meta/recipes-extended/sudo/sudo.inc | 21 ++-- > meta/recipes-extended/sudo/sudo_1.7.2p7.bb | 7 - > meta/recipes-extended/sudo/sudo_1.7.4p4.bb | 11 ++ > 21 files changed, 102 insertions(+), 257 deletions(-) > create mode 100644 meta/recipes-devtools/mtools/mtools/no-x11.gplv3.patch > create mode 100644 meta/recipes-devtools/mtools/mtools_4.0.15.bb > delete mode 100644 meta/recipes-extended/pam/libpam-1.1.1/disable_crossbinary.patch > rename meta/recipes-extended/pam/{libpam-1.1.1 => libpam}/99_pam (100%) > rename meta/recipes-extended/pam/{libpam-1.1.1 => libpam}/pam.d/common-account (100%) > rename meta/recipes-extended/pam/{libpam-1.1.1 => libpam}/pam.d/common-auth (100%) > rename meta/recipes-extended/pam/{libpam-1.1.1 => libpam}/pam.d/common-password (100%) > rename meta/recipes-extended/pam/{libpam-1.1.1 => libpam}/pam.d/common-session (100%) > rename meta/recipes-extended/pam/{libpam-1.1.1 => libpam}/pam.d/common-session-noninteractive (100%) > rename meta/recipes-extended/pam/{libpam-1.1.1 => libpam}/pam.d/other (100%) > rename meta/recipes-extended/pam/{libpam_1.1.1.bb => libpam_1.1.3.bb} (89%) > delete mode 100644 meta/recipes-extended/sudo/files/autofoo.patch > create mode 100644 meta/recipes-extended/sudo/files/libtool.patch > delete mode 100644 meta/recipes-extended/sudo/files/noexec-link.patch > delete mode 100644 meta/recipes-extended/sudo/files/nostrip.patch > delete mode 100644 meta/recipes-extended/sudo/site/bit-32 > delete mode 100644 meta/recipes-extended/sudo/site/bit-64 > delete mode 100644 meta/recipes-extended/sudo/sudo_1.7.2p7.bb > create mode 100644 meta/recipes-extended/sudo/sudo_1.7.4p4.bb > > _______________________________________________ > poky mailing list > poky@yoctoproject.org > https://lists.yoctoproject.org/listinfo/poky > Pull into Master Thanks Sau!