File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ PKG_URL=https://github.com/adamdunkels/ubasic
33PKG_VERSION =cc07193c231e21ecb418335aba5b199a08d4685c
44PKG_LICENSE =BSD-3-Clause
55
6+ include $(RIOTBASE ) /makefiles/color.inc.mk
7+
8+ $(call echowarn,("pkg/ubasic is deprecated and will be removed after the 2027.04 Release!"))
9+
610include $(RIOTBASE ) /pkg/pkg.mk
711
812UBASIC_MODULES = ubasic_tests
Original file line number Diff line number Diff line change 1+ @defgroup pkg_ubasic uBASIC interpreter
2+ @ingroup pkg
3+ @brief A really tiny BASIC interpreter
4+ @see http://dunkels.com/adam/ubasic/
5+
6+ This was added as an April Fools Joke in 2019, but the underlying project has
7+ not been maintained or updated since ~ 2014.
8+
9+ This package is deprecated and will be removed after the 2027.04 Release.
10+ If you are actually using it, please raise your voice!
Load diff This file was deleted.
Original file line number Diff line number Diff line change 11MODULE = ubasic
22
33# some toolchains complain about the usage of isdigit with a pointer in the
4- # tokenizer
4+ # tokenizer as well as setting a non-const pointer with strchr
55CFLAGS += -Wno-char-subscripts
6+ CFLAGS += -Wno-discarded-qualifiers
67
78SRC := tokenizer.c ubasic.c
89NO_AUTO_SRC := 1
You can’t perform that action at this time.
0 commit comments