diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-05-22 17:14:17 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-05-28 09:38:23 +0100 |
| commit | fb0f9a5a2842dc6396bfab971a966ac3752d0df9 (patch) | |
| tree | f70de9469d5188a2fdee08cd3226235f54b5a36e /meta/recipes-extended/ed/ed_1.20.1.bb | |
| parent | 66952b26d316047f64c69bd0fefd843174e7ee5f (diff) | |
| download | poky-fb0f9a5a2842dc6396bfab971a966ac3752d0df9.tar.gz | |
ed: upgrade 1.20.1 -> 1.20.2
Changelog:
=============
- main_loop.c (command_s): Fix g/x/s/x/x, which failed to skip the
final newline, printing lines twice.
(From OE-Core rev: d726710f7b1d707a55777d486bf06b0021f9dcfb)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/ed/ed_1.20.1.bb')
| -rw-r--r-- | meta/recipes-extended/ed/ed_1.20.1.bb | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/recipes-extended/ed/ed_1.20.1.bb b/meta/recipes-extended/ed/ed_1.20.1.bb deleted file mode 100644 index 9ae53002c3..0000000000 --- a/meta/recipes-extended/ed/ed_1.20.1.bb +++ /dev/null | |||
| @@ -1,38 +0,0 @@ | |||
| 1 | SUMMARY = "Line-oriented text editor" | ||
| 2 | HOMEPAGE = "http://www.gnu.org/software/ed/" | ||
| 3 | DESCRIPTION = "GNU ed is a line-oriented text editor. It is used to create, display, modify and otherwise manipulate text files, both interactively and via shell scripts. A restricted version of ed, red, can only edit files in the current directory and cannot execute shell commands." | ||
| 4 | |||
| 5 | LICENSE = "GPL-2.0-only" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=76d6e300ffd8fb9d18bd9b136a9bba13 \ | ||
| 7 | file://ed.h;endline=20;md5=c3212b6c53b09668107420af9368c0ef \ | ||
| 8 | file://main.c;endline=17;md5=e5d2ae5ddd1ecb87dc71702c06dd06dc \ | ||
| 9 | " | ||
| 10 | |||
| 11 | SECTION = "base" | ||
| 12 | |||
| 13 | CVE_PRODUCT = "gnu:ed" | ||
| 14 | |||
| 15 | # LSB states that ed should be in /bin/ | ||
| 16 | bindir = "${base_bindir}" | ||
| 17 | |||
| 18 | # Upstream regularly removes previous releases from https://ftp.gnu.org/gnu/ed/ | ||
| 19 | SRC_URI = "${GNU_MIRROR}/ed/${BP}.tar.lz" | ||
| 20 | UPSTREAM_CHECK_URI = "${GNU_MIRROR}/ed/" | ||
| 21 | |||
| 22 | SRC_URI[sha256sum] = "b1a463b297a141f9876c4b1fcd01477f645cded92168090e9a35db2af4babbca" | ||
| 23 | |||
| 24 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | ||
| 25 | |||
| 26 | inherit texinfo | ||
| 27 | |||
| 28 | do_configure() { | ||
| 29 | ${S}/configure | ||
| 30 | } | ||
| 31 | |||
| 32 | do_install() { | ||
| 33 | oe_runmake 'DESTDIR=${D}' install | ||
| 34 | # Info dir listing isn't interesting at this point so remove it if it exists. | ||
| 35 | if [ -e "${D}${infodir}/dir" ]; then | ||
| 36 | rm -f ${D}${infodir}/dir | ||
| 37 | fi | ||
| 38 | } | ||
