summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMingli Yu <Mingli.Yu@windriver.com>2019-07-05 15:51:13 +0800
committerJoe MacDonald <joe_macdonald@mentor.com>2019-07-08 22:24:25 -0400
commit8551ae099452a1e896f021d3a43a774fa3b30190 (patch)
tree44726334c51aa70dd2d6300cb17f1558d9f95e1c
parent11daa2cca45bf395fb3a3a784f7f08f37654bd17 (diff)
downloadmeta-selinux-8551ae099452a1e896f021d3a43a774fa3b30190.tar.gz
audit: use git fetcher instead of the tarball source
Per http://people.redhat.com/sgrubb/audit/, the tarball source moves to https://github.com/linux-audit/audit-userspace, and since commit [21f84fc insane: add sanity checks to SRC_URI] applied in oe-core, do not use unstable github archive tarballs, so use git instead. Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
-rw-r--r--recipes-security/audit/audit_2.8.5.bb7
1 files changed, 4 insertions, 3 deletions
diff --git a/recipes-security/audit/audit_2.8.5.bb b/recipes-security/audit/audit_2.8.5.bb
index bd09873..d3b9b51 100644
--- a/recipes-security/audit/audit_2.8.5.bb
+++ b/recipes-security/audit/audit_2.8.5.bb
@@ -7,7 +7,7 @@ SECTION = "base"
7LICENSE = "GPLv2+ & LGPLv2+" 7LICENSE = "GPLv2+ & LGPLv2+"
8LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" 8LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
9 9
10SRC_URI = "http://people.redhat.com/sgrubb/${BPN}/${BPN}-${PV}.tar.gz \ 10SRC_URI = "git://github.com/linux-audit/${BPN}-userspace.git;branch=2.8_maintenance \
11 file://audit-python-configure.patch \ 11 file://audit-python-configure.patch \
12 file://audit-python.patch \ 12 file://audit-python.patch \
13 file://fix-swig-host-contamination.patch \ 13 file://fix-swig-host-contamination.patch \
@@ -16,8 +16,9 @@ SRC_URI = "http://people.redhat.com/sgrubb/${BPN}/${BPN}-${PV}.tar.gz \
16 file://auditd.service \ 16 file://auditd.service \
17 file://audit-volatile.conf \ 17 file://audit-volatile.conf \
18" 18"
19SRC_URI[md5sum] = "9455e5773670afdbccaeb92681b2e97d" 19
20SRC_URI[sha256sum] = "0e5d4103646e00f8d1981e1cd2faea7a2ae28e854c31a803e907a383c5e2ecb7" 20S = "${WORKDIR}/git"
21SRCREV = "5fae55c1ad15b3cefe6890eba7311af163e9133c"
21 22
22inherit autotools pythonnative update-rc.d systemd 23inherit autotools pythonnative update-rc.d systemd
23 24