aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/createrepo/createrepo/dumpMetadata-disable-signature-validation.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-12-30 18:35:18 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-13 09:43:21 +0000
commitb842c9bf5cabb1af538720269f13946a87822f98 (patch)
treea8e401d8cbca2741e4f26ccfb3dd105eaf50b2cd /meta/recipes-support/createrepo/createrepo/dumpMetadata-disable-signature-validation.patch
parent30e0bec70f7793a5f923fc22c56b12bc1d06027d (diff)
downloadopenembedded-core-contrib-b842c9bf5cabb1af538720269f13946a87822f98.tar.gz
createrepo: remove the recipe
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Diffstat (limited to 'meta/recipes-support/createrepo/createrepo/dumpMetadata-disable-signature-validation.patch')
-rw-r--r--meta/recipes-support/createrepo/createrepo/dumpMetadata-disable-signature-validation.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-support/createrepo/createrepo/dumpMetadata-disable-signature-validation.patch b/meta/recipes-support/createrepo/createrepo/dumpMetadata-disable-signature-validation.patch
deleted file mode 100644
index 905531f848..0000000000
--- a/meta/recipes-support/createrepo/createrepo/dumpMetadata-disable-signature-validation.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-dumpMetadata: disable signature validation
-
-Makes it possible to work on RPM repositories that contain signed packages
-without the need of importing the public part of the signing key into the RPM
-database.
-
-Upstream-Status: Pending
-
-Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
----
- dumpMetadata.py | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/dumpMetadata.py b/dumpMetadata.py
-index e40e8ac..ca6a82d 100644
---- a/dumpMetadata.py
-+++ b/dumpMetadata.py
-@@ -92,7 +92,9 @@ def returnHdr(ts, package):
- fdno = package # let's assume this is an fdno and go with it :)
- except OSError:
- raise MDError, "Error opening file"
-- ts.setVSFlags((rpm.RPMVSF_NOMD5|rpm.RPMVSF_NEEDPAYLOAD))
-+ ts.setVSFlags((rpm.RPMVSF_NOMD5|rpm.RPMVSF_NEEDPAYLOAD|
-+ rpm.RPMVSF_NODSA|rpm.RPMVSF_NORSA|
-+ rpm.RPMVSF_NODSAHEADER|rpm.RPMVSF_NORSAHEADER))
- try:
- hdr = ts.hdrFromFdno(fdno)
- except rpm.error:
---
-2.1.4
-