mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-31 13:20:03 +00:00
d244f85aa0
Changelog: ============ - When the cursor almost goes offscreen to the right, all lines are now scrolled sideways together, by just the amount needed to keep the cursor in view. Use --solosidescroll or 'set solosidescroll' to get back the old, jerky, single-line horizontal scrolling. - The viewport can be scrolled sideways (in steps of one tabsize) with M-< and M->. See 'man nanorc' if M-< and M-> should switch between buffers (as they did earlier). - M-Left, M-Right, M-Up, and M-Down have become rebindable. - Stopping the recording of a macro immediately after starting it cancels the recording and leaves an existing macro in place. - Feature toggles no longer break a chain of ^K cuts or M-6 copies, except the M-K cut-from-cursor toggle. - With --mouse and --indicator, one can click in the scrollbar area to roughly navigate within the buffer. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
23 lines
728 B
BlitzBasic
23 lines
728 B
BlitzBasic
SUMMARY = "Small and friendly console text editor"
|
|
DESCRIPTION = "GNU nano (Nano's ANOther editor, or \
|
|
Not ANOther editor) is an enhanced clone of the \
|
|
Pico text editor."
|
|
HOMEPAGE = "http://www.nano-editor.org/"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
|
|
|
|
DEPENDS = "ncurses"
|
|
RDEPENDS:${PN} = "ncurses-terminfo-base"
|
|
|
|
PV_MAJOR = "${@d.getVar('PV').split('.')[0]}"
|
|
|
|
SRC_URI = "https://nano-editor.org/dist/v${PV_MAJOR}/nano-${PV}.tar.xz"
|
|
SRC_URI[sha256sum] = "9f384374b496110a25b73ad5a5febb384783c6e3188b37063f677ac908013fde"
|
|
|
|
UPSTREAM_CHECK_URI = "${GNU_MIRROR}/nano"
|
|
|
|
inherit autotools gettext pkgconfig
|
|
|
|
PACKAGECONFIG[tiny] = "--enable-tiny,"
|