summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/tcltk
Commit message (Collapse)AuthorAgeFilesLines
* tk: Add recipe for TK 9.0.0 releasemaster-nextKhem Raj12 days5-4/+104
| | | | | | | | | Core is upgrading TCL to 9.0.0 as well, this has to be done in tandem Rename tk 8.x as tk8 recipe Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: set AUTOTOOLS_SCRIPT_PATH instead of having to mess with S/../Ross Burton2024-10-242-18/+20
| | | | | | | | | | | | | | We want to run the configure script in ${S}/unix, so instead of setting S to BP/unix and then having to use ../ to reach up a level constantly (including some deep changes to DEBUG_PREFIX_MAP and PSEUDO_IGNORE_PATHS) we can set S to the top of the source tree as usual and tell autotools where the configure script is. This both makes the recipe clearer, and enables tk-src to be generated correctly. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: upgrade 8.6.10 -> 8.6.15Yi Zhao2024-09-293-6/+5
| | | | | | | | Release Notes: https://sourceforge.net/p/tcl/mailman/message/58817026/ Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: update UPSTREAM_CHECK_* variables to fix devtool upgradesYoann Congal2024-07-241-0/+3
| | | | | | | | Update UPSTREAM_CHECK_* variables to fix UNKNOWN_BROKEN status with devtool check-upgrade-status. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Alexandre Truong <alexandre.truong@smile.fr>
* tk: Remove buildpath issueMingli Yu2023-12-211-0/+2
| | | | | | | | | | | Though the S defined as ${WORKDIR}/${BPN}${PV}/unix, but some source files come from such as ${WORKDIR}/${BPN}${PV}/unix/../generic, so add "-fdebug-prefix-map=${S}/../" to fix the below buildpath issue: WARNING: tk-8.6.10-r0 do_package_qa: QA Issue: File /usr/lib64/.debug/libtk8.6.so in package tk-dbg contains reference to TMPDIR File /usr/bin/.debug/wish8.6 in package tk-dbg contains reference to TMPDIR [buildpaths] Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* *.patch: add Upstream-Status to all patchesMartin Jansa2023-06-213-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: inherit pkgconfigJustin Bronder2023-03-171-1/+1
| | | | | | | | I noticed that xft was not getting enabled as expected because the recipe was using pkg-config from the host. Signed-off-by: Justin Bronder <jsbronder@cold-front.org> 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>
* Convert to new override syntaxMartin Jansa2021-08-031-5/+5
| | | | | | | | | | 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>
* tk: adapt to potential pseudo changesMingli Yu2021-04-291-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It failed as below when rerun do_install for tk: $ bitbake tk $ bitbake tk -f -cinstall [snip] | NOTE: make -j 48 DESTDIR=/build/tmp/work/cortexa53-wrs-linux/tk/8.6.10-r0/image install | abort()ing pseudo client by server request. See https://wiki.yoctoproject.org/wiki/Pseudo_Abort for more details on this. | Check logfile: /build/tmp/work/cortexa53-wrs-linux/tk/8.6.10-r0/pseudo//pseudo.log | Aborted (core dumped) By default the S is ${WORKDIR}/${BPN}-${PV}, but after unpack, the tk source [1] unpacked to ${WORKDIR}/${BPN}${PV} and all the files under ${WORKDIR}/${BPN}${PV} are acutally the source files. But the the main Makefile.in is under ${WORKDIR}/${BPN}${PV}/unix for tk, so there is below logic in tk recipe: S = "${WORKDIR}/${BPN}${PV}/unix" To adapt the potential pseudo changes, there is a general logic to exclude ${S} from pseudo database in base.bbclass [2] by default. That's to say, just the dir ${WORKDIR}/${BPN}${PV}/unix is excluded from the pseudo database for tk. But it's not enough for tk, we need to exclude the actual source dir ${WORKDIR}/${BPN}${PV} from pseudo database specifically to fix the above do_install failure. [1] https://downloads.sourceforge.net/tcl/tk8.6.0-src.tar.gz [2] https://git.openembedded.org/openembedded-core/tree/meta/classes/base.bbclass#n396 Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: upgrade 8.6.9 -> 8.6.10Yi Zhao2019-12-136-76/+11
| | | | | | | | | | | | | | Drop patches that were merged upstream: configure.use.fontconfig.with.xft.patch non-linux.diff tklibrary.diff Refresh patches: confsearch.diff fix-xft.diff Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: rename distro_features_check to features_checkDenys Dmytriyenko2019-11-211-1/+1
| | | | | | | Avoid warning due to the class rename in OE-Core. Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk_8.6.9: Add tkConfig.sh in crossscriptTuan Hoang2019-02-221-0/+25
| | | | | Signed-off-by: Hoang Anh Tuan <tuanha@viosoft.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: Upgrade to 8.6.9Khem Raj2018-12-052-30/+41
| | | | | | Use tcl8.6 instead of tcl8.5 in confsearch.diff patch Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: export TK_LIBRARY='${libdir}/tk${VER}'Mingli Yu2018-11-141-9/+1
| | | | | | | | | | | | | | | | | | | | | | As there is below logic in configure.in [snip] test -z "$TK_LIBRARY" && TK_LIBRARY='$(prefix)/lib/tk$(VERSION)' [snip] It can make TK_LIBRARY to be $(prefix)/lib/tk$(VERSION) and then result in some files installed to /usr/lib/tk8.6 even when ${libdir} actually extract as /usr/lib64 and there is also a commit as below adding hack to workaround this. 1ca29d1cd tk: make multilib build compatible and fix library install Export TK_LIBRARY='${libdir}/tk${VER}' to guarantee the files installed to the expected places and also remove the workaround in the previous commit 1ca29d1cd. Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: update the parameter for --with-tclMingli Yu2018-11-141-1/+1
| | | | | | | | | | Update the parameter for --with-tcl to fix below do_configure issue: $ bitbake tk-native | checking for Tcl configuration... configure: error: /mybuild/tmp/work/x86_64-linux/tk-native/8.6.8-r0/recipe-sysroot-native/usr/bin directory doesn't contain tclConfig.sh Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: extend to nativesdkMingli Yu2018-11-081-1/+1
| | | | | | | | | | | After enable tk via PACKAGECONFIG for python3, there comes below error: Missing or unbuildable dependency chain was: ['buildtools-tarball', 'nativesdk-python3', 'nativesdk-tk'] Extend tk to nativesdk to fix this issue. Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: 8.6.6 -> 8.6.8Huang Qiyu2018-02-232-9/+12
| | | | | | | | 1.Upgrade tk from 8.6.6 to 8.6.8. 2.Modify confsearch.diff, since the data has been changed. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* remove True option to getVar callsJoshua Lock2016-12-021-1/+1
| | | | | | | | | getVar() now defaults to expanding by default, thus remove the True option from getVar() calls with a regex search and replace. Search made with the following regex: getVar ?\(( ?[^,()]*), True\) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
* tk: 8.6.4 -> 8.6.6Wang Xin2016-09-151-2/+2
| | | | | | | Upgrade tk from 8.6.4 to 8.6.6. Signed-off-by: Wang Xin <wangxin2015.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* tk: upgrade 8.6.0 -> 8.6.4Li xin2015-08-187-22/+4
| | | | | | | update content of non-linux.diff Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: add x11 to required DISTRO_FEATURESMartin Jansa2015-02-121-1/+3
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* tk: Fix build with xftMartin Jansa2014-05-122-2/+14
| | | | | | | * xft requires fontconfig, but pkg-config --libs xft doesn't return it add it manually Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* emacs, mplayer2, gnome-mplayer, xbmc, libimobiledevice, ifuse, tk: blacklist ↵Martin Jansa2014-05-091-0/+2
| | | | | | | | | | recipes failing in world builds * these are failing for last couple months, blacklist them until someone steps up and starts maintaining them * see http://www.openembedded.org/wiki/Bitbake_World_Status Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* tk: cleanup & add PACKAGECONFIGMatthieu CRAPET2014-05-091-11/+33
| | | | | | | | | | | | | | | | Changes: - add PACKAGECONFIG "xft" enables XFontConfig features - add PACKAGECONFIG "xss" enables XScreenSaver extension - use ${BPN} and ${PV} - use ${VER} intermediate variable for readability - fulfill LIC_FILES_CHKSUM - remove BINCONFIG_GLOB: inherit binconfig is not present, lib/tkConfig.sh paths are valid - add SSTATE_SCAN_FILES, like it is done in tcl recipe (OE-Core) Note: tcl and tk are sharing the same licence, tcl licence file in commited in OE-Core. Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issuesMatthieu CRAPET2014-02-231-1/+1
| | | | | | | | | | | | | Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* tk: make multilib build compatible and fix library installNick D'Ademo2013-12-051-2/+15
| | | | | | | | | Pass libdir to EXTRA_OECONF so that recipe generates the correct library folder in a multilib build. Install shared library symbolic link to image. Signed-off-by: Nick D'Ademo <nickdademo@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* tk: Upgrade to 8.6.0Khem Raj2013-06-208-75/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also fixes the build since tcl is moved to 8.6.0 in OE-Core The licence has been updated a little license.terms 2009-11-13 10:38:48.000000000 -0800 license.terms 2012-12-19 07:39:12.000000000 -0800 @@ -1,7 +1,8 @@ This software is copyrighted by the Regents of the University of -California, Sun Microsystems, Inc., and other parties. The following -terms apply to all files associated with the software unless explicitly -disclaimed in individual files. +California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState +Corporation, Apple Inc. and other parties. The following terms apply to +all files associated with the software unless explicitly disclaimed in +individual files. The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided @@ -28,12 +29,12 @@ GOVERNMENT USE: If you are acquiring this software on behalf of the U.S. government, the Government shall have only "Restricted Rights" -in the software and related documentation as defined in the Federal +in the software and related documentation as defined in the Federal Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are acquiring the software on behalf of the Department of Defense, the software shall be classified as "Commercial Computer Software" and the Government shall have only "Restricted Rights" as defined in Clause -252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the +252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the authors grant the U.S. Government and others acting in its behalf permission to use and distribute the software in accordance with the terms specified in this license. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Unify indentationMartin Jansa2013-04-151-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | | * This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
* tk 8.5.8: import from OE rev 5350bbef01b8979617e3d0fd38939f94f1fa5315Koen Kooi2011-08-178-0/+263
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>