summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/gpm
Commit message (Collapse)AuthorAgeFilesLines
* meta-openembedded/all: adapt to UNPACKDIR changesAlexander Kanavin2025-06-251-1/+0
| | | | | | | | | | | | | Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: fix build with gcc-15mark.yang2025-03-274-0/+355
| | | | | | | | | | | | | | | | * fix build with gcc-15 lib/libcurses.c:46:5: error: conflicting types for 'Gpm_Wgetch'; have 'int(WINDOW *)' {aka 'int(struct _win_st *)'} 46 | int Gpm_Wgetch(WINDOW *win) | ^~~~~~~~~~ In file included from gpm/1.99.7+gite82d1a653ca94aa4ed12441424da6ce780b1e530/git/src/headers/gpmInt.h:28, from lib/libcurses.c:30: gpm/1.99.7+gite82d1a653ca94aa4ed12441424da6ce780b1e530/git/src/headers/gpm.h:271:12: note: previous declaration of 'Gpm_Wgetch' with type 'int(void)' 271 | extern int Gpm_Wgetch(); | ^~~~~~~~~~ Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: fix buildpaths QA issueMartin Jansa2024-08-301-0/+4
| | | | | Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Start WORKDIR -> UNPACKDIR transitionKhem Raj2024-05-231-2/+2
| | | | | | | Replace references of WORKDIR with UNPACKDIR where it makes sense to do so in preparation for changing the default value of UNPACKDIR. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Drop remaining PR values from recipesMartin Jansa2024-03-171-1/+0
| | | | | | | | | | | | * as oe-core did in: https://git.openembedded.org/openembedded-core/commit/?id=d4c346e8ab * when people are have to maintain own PRs for recipes in oe-core, they might add them for meta-oe recipes at the same time when upgrading to next LTS Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Update LICENSE variable to use SPDX license identifiersKhem Raj2022-03-041-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Update SRC_URI branch and protocolsRichard Purdie2021-11-031-1/+1
| | | | | | | | | This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Convert to new override syntaxMartin Jansa2021-08-031-3/+3
| | | | | | | | | | This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gpm: Upgrade to latest masterKhem Raj2020-08-112-36/+1
| | | | | | Drop upstreamed patch Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Inherit missing texinfo for makeinfo programKhem Raj2020-01-281-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: Recipe cleanupRobert Joslyn2019-04-141-10/+5
| | | | | | | | | | | | * Add SUMMARY and HOMEPAGE * Remove unnecessary FILES line, as the specified directory does not exist * Remove unnecessary conditional placement of init script and systemd unit file. The update-rc.d and systemd classes handle packaging of these files. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: Remove duplicate definition of _GNU_SOURCERobert Joslyn2019-04-142-13/+0
| | | | | | | | The Makefile already sets -D_GNU_SOURCE in CPPFLAGS, no need to patch it in again. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: Generate documentationRobert Joslyn2019-04-142-19/+0
| | | | | | | | Remove patch disabling documentation, since it builds and is packaged properly. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: Add PID file to systemd unit fileRobert Joslyn2019-04-141-0/+1
| | | | | | | This helps systemd identify the main process of the service. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: Fix gpm path in unit fileRobert Joslyn2019-04-141-1/+1
| | | | | | | The binary is installed to ${sbindir}, but the unit file used ${bindir}. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: add dependency on bison-nativeMartin Jansa2018-08-191-1/+1
| | | | | | | | | | | * fixes: yacc gpm/1.99.7+git1fd19417b8a4dd9945347e98dfa97e4cfd798d77-r2/git/src/prog/gpm-root.y && mv y.tab.c prog/gpm-root.c /bin/sh: 1: yacc: not found Makefile:149: recipe for target 'prog/gpm-root.c' failed make[1]: *** [prog/gpm-root.c] Error 127 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: Use sigemptyset() API for glibc as wellKhem Raj2017-07-012-1/+37
| | | | | | | glibc has removed __sigemptyset Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gpm: Update to use git src uriKhem Raj2017-04-068-392/+55
| | | | | | | | | Additional patches are upstream to fix build with gcc6 and clang Add systemd unit file Create missing symlink for dev shared object Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpm: Remove nested functionsKhem Raj2016-10-262-0/+327
| | | | | | | | Helps compiling with clang which doesnt support nested functions Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gpm: fix S!=B failureKoen Kooi2014-05-151-1/+1
| | | | | Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gpm: sets D equal to DESTDIR instead of ROOT in do_installstephen.arnold422014-04-201-1/+1
| | | | | | | | | | This corrects a gpm install failure due to ROOT being used instead of DESTDIR, resulting in DESTDIR being undefined. Upstream-Status: Inappropriate (distribution/packaging fix) Signed-off-by: Stephen Arnold <stephen.arnold42@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gpm: fix build with eglibc-2.17Martin Jansa2013-01-132-1/+14
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gpm: disable -WerrorMartin Jansa2012-12-231-0/+5
| | | | | | * 1.99.7 has a lot of issues, maybe we should bump PE and go to stable 1.20.7 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gpm: include /usr/share/emacs/site-lisp in PNMartin Jansa2012-12-111-0/+3
| | | | | | | | | | * fixes: gpm-1.99.7: gpm: Files/directories were installed but not shipped /usr/share /usr/share/emacs /usr/share/emacs/site-lisp Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* fbreader, fltk, gpm, iksemel, joe, links, ode, openldap, opensync, xchat: ↵Martin Jansa2012-07-314-0/+105
import from meta-smartphone Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>