diff options
| author | Denys Dmytriyenko <denys@konsulko.com> | 2022-02-22 04:13:10 +0000 |
|---|---|---|
| committer | Ryan Eatmon <reatmon@ti.com> | 2022-02-22 12:01:31 -0600 |
| commit | cdea53276484bf1ee843596ae70640c0cc2fa8d0 (patch) | |
| tree | 1ea0419ac492a2a02dee6b1224d9036022e98ddf /recipes-devtools | |
| parent | 183896349c55c1118b9d70b562755e30b32b5780 (diff) | |
| download | meta-ti-cdea53276484bf1ee843596ae70640c0cc2fa8d0.tar.gz | |
doxygen: remove outdated version in favor of upstream
It's not BSP core functionality and newer version is available from meta-oe.
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'recipes-devtools')
| -rw-r--r-- | recipes-devtools/doxygen/doxygen/patch-flex_2_6_0.diff | 66 | ||||
| -rw-r--r-- | recipes-devtools/doxygen/doxygen_1.8.9.1.bb | 36 |
2 files changed, 0 insertions, 102 deletions
diff --git a/recipes-devtools/doxygen/doxygen/patch-flex_2_6_0.diff b/recipes-devtools/doxygen/doxygen/patch-flex_2_6_0.diff deleted file mode 100644 index 36d73798..00000000 --- a/recipes-devtools/doxygen/doxygen/patch-flex_2_6_0.diff +++ /dev/null | |||
| @@ -1,66 +0,0 @@ | |||
| 1 | --- src/code.l.orig | ||
| 2 | +++ src/code.l | ||
| 3 | @@ -3695,7 +3695,7 @@ void codeFreeScanner() | ||
| 4 | extern "C" { // some bogus code to keep the compiler happy | ||
| 5 | void codeYYdummy() { yy_flex_realloc(0,0); } | ||
| 6 | } | ||
| 7 | -#elif YY_FLEX_SUBMINOR_VERSION<33 | ||
| 8 | +#elif YY_FLEX_MAJOR_VERSION<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33 | ||
| 9 | #error "You seem to be using a version of flex newer than 2.5.4 but older than 2.5.33. These versions do NOT work with doxygen! Please use version <=2.5.4 or >=2.5.33 or expect things to be parsed wrongly!" | ||
| 10 | #endif | ||
| 11 | |||
| 12 | --- src/commentscan.l.orig | ||
| 13 | +++ src/commentscan.l | ||
| 14 | @@ -1098,7 +1098,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$" | ||
| 15 | // but we need to know the position in the input buffer where this | ||
| 16 | // rule matched. | ||
| 17 | // for flex 2.5.33+ we should use YY_CURRENT_BUFFER_LVALUE | ||
| 18 | -#if YY_FLEX_MINOR_VERSION>=5 && YY_FLEX_SUBMINOR_VERSION>=33 | ||
| 19 | +#if YY_FLEX_MAJOR_VERSION>=2 && (YY_FLEX_MINOR_VERSION>5 || (YY_FLEX_MINOR_VERSION==5 && YY_FLEX_SUBMINOR_VERSION>=33)) | ||
| 20 | inputPosition=prevPosition + (int)(yy_bp - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf); | ||
| 21 | #else | ||
| 22 | inputPosition=prevPosition + (int)(yy_bp - yy_current_buffer->yy_ch_buf); | ||
| 23 | @@ -1160,7 +1160,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$" | ||
| 24 | g_memberGroupHeader.resize(0); | ||
| 25 | parseMore=TRUE; | ||
| 26 | needNewEntry = TRUE; | ||
| 27 | -#if YY_FLEX_MINOR_VERSION>=5 && YY_FLEX_SUBMINOR_VERSION>=33 | ||
| 28 | +#if YY_FLEX_MAJOR_VERSION>=2 && (YY_FLEX_MINOR_VERSION>5 || (YY_FLEX_MINOR_VERSION==5 && YY_FLEX_SUBMINOR_VERSION>=33)) | ||
| 29 | inputPosition=prevPosition + (int)(yy_bp - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf) + strlen(yytext); | ||
| 30 | #else | ||
| 31 | inputPosition=prevPosition + (int)(yy_bp - yy_current_buffer->yy_ch_buf) + strlen(yytext); | ||
| 32 | |||
| 33 | --- src/fortrancode.l.orig | ||
| 34 | +++ src/fortrancode.l | ||
| 35 | @@ -1289,7 +1289,7 @@ void parseFortranCode(CodeOutputInterfac | ||
| 36 | extern "C" { // some bogus code to keep the compiler happy | ||
| 37 | void fortrancodeYYdummy() { yy_flex_realloc(0,0); } | ||
| 38 | } | ||
| 39 | -#elif YY_FLEX_SUBMINOR_VERSION<33 | ||
| 40 | +#elif YY_FLEX_MAJOR_VERSION<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33 | ||
| 41 | #error "You seem to be using a version of flex newer than 2.5.4 but older than 2.5.33. These versions do NOT work with doxygen! Please use version <=2.5.4 or >=2.5.33 or expect things to be parsed wrongly!" | ||
| 42 | #else | ||
| 43 | extern "C" { // some bogus code to keep the compiler happy | ||
| 44 | |||
| 45 | --- src/pycode.l.orig | ||
| 46 | +++ src/pycode.l | ||
| 47 | @@ -1503,7 +1503,7 @@ void parsePythonCode(CodeOutputInterface | ||
| 48 | extern "C" { // some bogus code to keep the compiler happy | ||
| 49 | void pycodeYYdummy() { yy_flex_realloc(0,0); } | ||
| 50 | } | ||
| 51 | -#elif YY_FLEX_SUBMINOR_VERSION<33 | ||
| 52 | +#elif YY_FLEX_MAJOR_VERSION<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33 | ||
| 53 | #error "You seem to be using a version of flex newer than 2.5.4. These are currently incompatible with 2.5.4, and do NOT work with doxygen! Please use version 2.5.4 or expect things to be parsed wrongly! A bug report has been submitted (#732132)." | ||
| 54 | #endif | ||
| 55 | |||
| 56 | --- src/vhdlcode.l | ||
| 57 | +++ src.a/vhdlcode.l | ||
| 58 | @@ -1613,7 +1613,7 @@ void codeFreeVhdlScanner() | ||
| 59 | extern "C" { // some bogus code to keep the compiler happy | ||
| 60 | void vhdlcodeYYdummy() { yy_flex_realloc(0,0); } | ||
| 61 | } | ||
| 62 | -#elif YY_FLEX_SUBMINOR_VERSION<33 | ||
| 63 | +#elif YY_FLEX_MAJOR_VERSION<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33 | ||
| 64 | #error "You seem to be using a version of flex newer than 2.5.4 but older than 2.5.33. These versions do NOT work with doxygen! Please use version <=2.5.4 or >=2.5.33 or expect things to be parsed wrongly!" | ||
| 65 | #endif | ||
| 66 | |||
diff --git a/recipes-devtools/doxygen/doxygen_1.8.9.1.bb b/recipes-devtools/doxygen/doxygen_1.8.9.1.bb deleted file mode 100644 index eb43e741..00000000 --- a/recipes-devtools/doxygen/doxygen_1.8.9.1.bb +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | SUMMARY = "Utilities for generating documentation from source code" | ||
| 2 | HOMEPAGE = "http://www.doxygen.org/" | ||
| 3 | SECTION = "console/utils" | ||
| 4 | LICENSE = "GPLv2" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b380c86cea229fa42b9e543fc491f5eb" | ||
| 6 | |||
| 7 | DEPENDS = "flex-native bison-native" | ||
| 8 | |||
| 9 | SRC_URI = "http://ftp.stack.nl/pub/users/dimitri/${BP}.src.tar.gz \ | ||
| 10 | file://patch-flex_2_6_0.diff;striplevel=0" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "3d1a5c26bef358c10a3894f356a69fbc" | ||
| 13 | SRC_URI[sha256sum] = "d4ab6e28d4d45d8956cad17470aade3fbe2356e8f64b92167e738c1887feccec" | ||
| 14 | |||
| 15 | EXTRA_OECONF = "--prefix ${prefix}" | ||
| 16 | |||
| 17 | DISABLE_STATIC = "" | ||
| 18 | |||
| 19 | do_configure () { | ||
| 20 | ./configure ${EXTRA_OECONF} | ||
| 21 | |||
| 22 | # TODO on rebuilds will repeatedly append. Change logic to include a | ||
| 23 | # separate file and overwrite that file? | ||
| 24 | echo "TMAKE_CC=${CC}" >> tmake/lib/linux-g++/tmake.conf | ||
| 25 | echo "TMAKE_CXX=${CXX}" >> tmake/lib/linux-g++/tmake.conf | ||
| 26 | echo "TMAKE_CFLAGS=${CFLAGS}" >> tmake/lib/linux-g++/tmake.conf | ||
| 27 | echo "TMAKE_CXXFLAGS=${CXXFLAGS}" >> tmake/lib/linux-g++/tmake.conf | ||
| 28 | echo "TMAKE_LINK=${CXX}" >> tmake/lib/linux-g++/tmake.conf | ||
| 29 | echo "TMAKE_LFLAGS=${LDFLAGS}" >> tmake/lib/linux-g++/tmake.conf | ||
| 30 | } | ||
| 31 | |||
| 32 | do_install() { | ||
| 33 | oe_runmake install DESTDIR=${D} MAN1DIR=share/man/man1 | ||
| 34 | } | ||
| 35 | |||
| 36 | BBCLASSEXTEND = "native nativesdk" | ||
