diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-02-16 16:50:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-18 23:53:54 +0000 |
commit | cb4e69e6346a9fbeebf83a5d5397cacbd41d48b5 (patch) | |
tree | 0bd2ad488aa7b5e0daa7eb91b3a0d511e23f09a0 | |
parent | 925800570f9093cc8de90091008759998e5cd4f2 (diff) | |
download | poky-cb4e69e6346a9fbeebf83a5d5397cacbd41d48b5.tar.gz |
procps: upstream has switched to gitlab
(From OE-Core rev: 7c67cff7683aeb80a07f55589f6c2f2a3dd6b44b)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/procps/procps_3.3.16.bb | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/meta/recipes-extended/procps/procps_3.3.16.bb b/meta/recipes-extended/procps/procps_3.3.16.bb index 60f90976bb..2810ebd285 100644 --- a/meta/recipes-extended/procps/procps_3.3.16.bb +++ b/meta/recipes-extended/procps/procps_3.3.16.bb | |||
@@ -12,14 +12,19 @@ DEPENDS = "ncurses" | |||
12 | 12 | ||
13 | inherit autotools gettext pkgconfig update-alternatives | 13 | inherit autotools gettext pkgconfig update-alternatives |
14 | 14 | ||
15 | SRC_URI = "http://downloads.sourceforge.net/project/procps-ng/Production/procps-ng-${PV}.tar.xz \ | 15 | SRC_URI = "git://gitlab.com/procps-ng/procps.git;protocol=https \ |
16 | file://sysctl.conf \ | 16 | file://sysctl.conf \ |
17 | " | 17 | " |
18 | SRCREV = "59c88e18f29000ceaf7e5f98181b07be443cf12f" | ||
18 | 19 | ||
19 | SRC_URI[md5sum] = "e8dc8455e573bdc40b8381d572bbb89b" | 20 | S = "${WORKDIR}/git" |
20 | SRC_URI[sha256sum] = "925eacd65dedcf9c98eb94e8978bbfb63f5de37294cc1047d81462ed477a20af" | ||
21 | 21 | ||
22 | S = "${WORKDIR}/procps-ng-${PV}" | 22 | # Upstream has a custom autogen.sh which invokes po/update-potfiles as they |
23 | # don't ship a po/POTFILES.in (which is silly). Without that file gettext | ||
24 | # doesn't believe po/ is a gettext directory and won't generate po/Makefile. | ||
25 | do_configure_prepend() { | ||
26 | ( cd ${S} && po/update-potfiles ) | ||
27 | } | ||
23 | 28 | ||
24 | EXTRA_OECONF = "--enable-skill --disable-modern-top" | 29 | EXTRA_OECONF = "--enable-skill --disable-modern-top" |
25 | 30 | ||