diff options
Diffstat (limited to 'meta/recipes-extended/libzypp')
-rw-r--r-- | meta/recipes-extended/libzypp/libzypp/libzypp-rpm549.patch | 28 | ||||
-rw-r--r-- | meta/recipes-extended/libzypp/libzypp_git.bb | 3 |
2 files changed, 30 insertions, 1 deletions
diff --git a/meta/recipes-extended/libzypp/libzypp/libzypp-rpm549.patch b/meta/recipes-extended/libzypp/libzypp/libzypp-rpm549.patch new file mode 100644 index 0000000000..8268a2d51d --- /dev/null +++ b/meta/recipes-extended/libzypp/libzypp/libzypp-rpm549.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | commit 6c47ad415246cc3a3edac2e1637106d330574c85 | ||
2 | Author: Mark Hatle <mark.hatle@windriver.com> | ||
3 | Date: Fri May 11 19:05:09 2012 -0500 | ||
4 | |||
5 | RpmHeader.cc: RPM 5.4.9 integration | ||
6 | |||
7 | _RPMVSF_xxx - NODIGEST, NOSIGNATURES, NOHEADER, and NOPAYLOAD | ||
8 | are now obsolete and no longer supported. | ||
9 | |||
10 | Signed-off-by: Mark Hatle <mark.hatle@windriver.com> | ||
11 | |||
12 | diff --git a/zypp/target/rpm/RpmHeader.cc b/zypp/target/rpm/RpmHeader.cc | ||
13 | index 1224ecd..c96dae6 100644 | ||
14 | --- a/zypp/target/rpm/RpmHeader.cc | ||
15 | +++ b/zypp/target/rpm/RpmHeader.cc | ||
16 | @@ -230,10 +230,12 @@ RpmHeader::constPtr RpmHeader::readPackage( const Pathname & path_r, | ||
17 | librpmDb::globalInit(); | ||
18 | rpmts ts = ::rpmtsCreate(); | ||
19 | unsigned vsflag = RPMVSF_DEFAULT; | ||
20 | +#if !defined(_RPM_5) | ||
21 | if ( verification_r & NODIGEST ) | ||
22 | vsflag |= _RPMVSF_NODIGESTS; | ||
23 | if ( verification_r & NOSIGNATURE ) | ||
24 | vsflag |= _RPMVSF_NOSIGNATURES; | ||
25 | +#endif | ||
26 | ::rpmtsSetVSFlags( ts, rpmVSFlags(vsflag) ); | ||
27 | |||
28 | Header nh = 0; | ||
diff --git a/meta/recipes-extended/libzypp/libzypp_git.bb b/meta/recipes-extended/libzypp/libzypp_git.bb index 3c3a9f09ec..c5761d5784 100644 --- a/meta/recipes-extended/libzypp/libzypp_git.bb +++ b/meta/recipes-extended/libzypp/libzypp_git.bb | |||
@@ -11,7 +11,7 @@ DEPENDS = "rpm boost curl libxml2 zlib sat-solver expat openssl udev libproxy" | |||
11 | S = "${WORKDIR}/git" | 11 | S = "${WORKDIR}/git" |
12 | SRCREV = "15b6c52260bbc52b3d8e585e271b67e10cc7c433" | 12 | SRCREV = "15b6c52260bbc52b3d8e585e271b67e10cc7c433" |
13 | PV = "0.0-git${SRCPV}" | 13 | PV = "0.0-git${SRCPV}" |
14 | PR = "r20" | 14 | PR = "r21" |
15 | 15 | ||
16 | SRC_URI = "git://github.com/openSUSE/libzypp.git;protocol=git \ | 16 | SRC_URI = "git://github.com/openSUSE/libzypp.git;protocol=git \ |
17 | file://no-doc.patch \ | 17 | file://no-doc.patch \ |
@@ -23,6 +23,7 @@ SRC_URI = "git://github.com/openSUSE/libzypp.git;protocol=git \ | |||
23 | file://fix_for_compile_wth_gcc-4.6.0.patch \ | 23 | file://fix_for_compile_wth_gcc-4.6.0.patch \ |
24 | file://hardcode-lib-fix.patch \ | 24 | file://hardcode-lib-fix.patch \ |
25 | file://close.patch \ | 25 | file://close.patch \ |
26 | file://libzypp-rpm549.patch \ | ||
26 | " | 27 | " |
27 | 28 | ||
28 | SRC_URI_append_mips = " file://mips-workaround-gcc-tribool-error.patch" | 29 | SRC_URI_append_mips = " file://mips-workaround-gcc-tribool-error.patch" |