From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.windriver.com ([147.11.1.11]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1PztOO-0006Me-Hv for openembedded-core@lists.openembedded.org; Wed, 16 Mar 2011 17:16:17 +0100 Received: from ALA-HCA.corp.ad.wrs.com (ala-hca [147.11.189.40]) by mail.windriver.com (8.14.3/8.14.3) with ESMTP id p2GGEPav027843 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Wed, 16 Mar 2011 09:14:25 -0700 (PDT) Received: from localhost.localdomain (172.25.34.61) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server (TLS) id 14.1.255.0; Wed, 16 Mar 2011 09:14:25 -0700 From: Mark Hatle To: , Date: Wed, 16 Mar 2011 11:15:20 -0500 Message-ID: X-Mailer: git-send-email 1.7.3.4 MIME-Version: 1.0 X-Originating-IP: [172.25.34.61] Subject: [PATCH 0/6] Fix a number of rpm/zypper issues and related X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Mar 2011 16:16:17 -0000 Content-Type: text/plain This set of patches is believed for fix a number packaging, rpm and zypper related problems. The first patch is necessary for debug information on packages with specific filenames embedded in them. The second patch fixes a bug that is likely to affect a system only in the future if rpm, berkeley db or the way the DB is used changes significantly. The third fix makes a minor change to the way zypper identifies the system release. I'm not 100% convinced this is necessary, we may choose to skip it as we don't have a file similar to "redhat-release" to scan for, for a system-wide version. The fourth/fifth packages fix the sat-solver. Fourth uprevs the sat-solver to the latest version and enables gdb debugging info. The fifth adds a workaround suggested by the sat-solver maintainer for an RPM5 incompatibility as noted in the comments. The sixth and final patch finally resolves the "repackage error" message generated by rpm when upgrades or package removals occur. Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: mhatle/bernard/fixes Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=mhatle/bernard/fixes Thanks, Mark Hatle --- Mark Hatle (6): package.bbclass: Fix missing debug src files rootfs_rpm.bbclass: Add additional system configuration to RPM space libzypp: Fix release query sat-solver: uprev to the latest version sat-solver: Add workaround for RPM 5 db construction rpm: Disable repackage on upgrade/erasure by default meta/classes/package.bbclass | 3 +- meta/classes/rootfs_rpm.bbclass | 26 +++++++++++++ .../conf/distro/include/poky-default-revisions.inc | 2 +- meta/recipes-devtools/rpm/rpm_5.4.0.bb | 3 +- .../libzypp/libzypp/config-release.patch | 21 +++++++++++ meta/recipes-extended/libzypp/libzypp_git.bb | 3 +- .../sat-solver/sat-solver/cmake.patch | 38 +++++++++----------- .../sat-solver/sat-solver/rpm5-solvdb.patch | 30 +++++++++++++++ meta/recipes-extended/sat-solver/sat-solver_git.bb | 3 +- 9 files changed, 103 insertions(+), 26 deletions(-) create mode 100644 meta/recipes-extended/libzypp/libzypp/config-release.patch create mode 100644 meta/recipes-extended/sat-solver/sat-solver/rpm5-solvdb.patch -- 1.7.3.4