mirror of
https://git.yoctoproject.org/poky
synced 2026-04-09 02:02:26 +02:00
libzypp: upgrade to newer git version
this works with rpm 5.4.0 Signed-off-by: Qing He <qing.he@intel.com>
This commit is contained in:
@@ -76,7 +76,7 @@ SRCREV_pn-libxcb-nativesdk ??= "625ed596cae6dd8175aeb6cb6f26784928042f22"
|
||||
SRCREV_pn-libxext ??= "d1f3bc77a48c8e42771579e3fdf3370b35d3209d"
|
||||
SRCREV_pn-libxext-nativesdk ??= "d1f3bc77a48c8e42771579e3fdf3370b35d3209d"
|
||||
SRCREV_pn-libxi ??= "d0326fe8cdbb08d4f52d79fd3fd4e1b2a0951d5e"
|
||||
SRCREV_pn-libzypp = "4494797d5b0369365b1af63921de45b197ead64f"
|
||||
SRCREV_pn-libzypp = "15b6c52260bbc52b3d8e585e271b67e10cc7c433"
|
||||
SRCREV_pn-linux-firmware ??= "40c0f950be7040614dc45df54e25e54d00e3b73b"
|
||||
SRCREV_pn-linux-openmoko ??= "5ccaca2adb1c37b5955a4733f68ae08a755e3d78"
|
||||
SRCREV_pn-linux-omap ??= "58cf2f1425abfd3a449f9fe985e48be2d2555022"
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
diff --git a/zypp/target/rpm/librpmDb.cc b/zypp/target/rpm/librpmDb.cc
|
||||
index 1689fbb..4999cd9 100644
|
||||
--- a/zypp/target/rpm/librpmDb.cc
|
||||
+++ b/zypp/target/rpm/librpmDb.cc
|
||||
@@ -60,20 +60,6 @@ public:
|
||||
const char * root = ( _root == "/" ? NULL : _root.asString().c_str() );
|
||||
int perms = 0644;
|
||||
|
||||
- // check whether to create a new db
|
||||
- PathInfo master( _root + _dbPath + "Packages" );
|
||||
- if ( ! master.isFile() )
|
||||
- {
|
||||
- // init database
|
||||
- int res = ::rpmdbInit( root, perms );
|
||||
- if ( res )
|
||||
- {
|
||||
- ERR << "rpmdbInit error(" << res << "): " << *this << endl;
|
||||
- _error = shared_ptr<RpmInitException>(new RpmInitException(_root, _dbPath));
|
||||
- ZYPP_THROW(*_error);
|
||||
- }
|
||||
- }
|
||||
-
|
||||
// open database
|
||||
int res = ::rpmdbOpen( root, &_db, (readonly_r ? O_RDONLY : O_RDWR ), perms );
|
||||
if ( res || !_db )
|
||||
@@ -17,7 +17,9 @@ PR = "r6"
|
||||
|
||||
SRC_URI = "git://gitorious.org/opensuse/libzypp.git;protocol=git \
|
||||
file://no-doc.patch \
|
||||
file://rpm5.patch "
|
||||
file://rpm5.patch \
|
||||
file://rpm5-no-rpmdbinit.patch \
|
||||
"
|
||||
|
||||
SRC_URI_append_mips = " file://mips-workaround-gcc-tribool-error.patch"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user