Skip to content

Commit

Permalink
doxygen v1.9.8 (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
regro-cf-autotick-bot authored Sep 11, 2023
1 parent a5f0654 commit 00ffe3c
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 44 deletions.
5 changes: 0 additions & 5 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 0 additions & 24 deletions recipe/10112.patch

This file was deleted.

37 changes: 34 additions & 3 deletions recipe/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,49 @@ cd build
:: workaround for winflexbison problem, see https://github.com/conda-forge/winflexbison-feedstock/issues/6
set BISON_PKGDATADIR=%BUILD_PREFIX%\Library\share\winflexbison\data

:: debug
echo "=== perl ==="
perl --version

echo "=== python ==="
python --version

echo "=== cmake ==="
cmake --version

echo "=== latex ==="
latex --version

echo "=== bibtex ==="
bibtex --version

echo "=== dvips ==="
dvips --version

echo "=== bison ==="
win_bison --version

echo "=== flex ==="
win_flex --version

echo "=== dot ==="
dot -V

echo "=== ghostscript ==="
gswin64c --version

:: cmake
cmake -G "Ninja" ^
-DCMAKE_PREFIX_PATH:PATH="%LIBRARY_PREFIX%" ^
-DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^
-DCMAKE_BUILD_TYPE:STRING=Release ^
.. || goto :eof
.. || exit /b 1

:: build
cmake --build . --config Release -j %CPU_COUNT% || goto :eof
cmake --build . --config Release --verbose -j 1 || exit /b 1

:: install
cmake --build . --config Release --target install || goto :eof
cmake --build . --config Release --verbose -j 1 --target install || exit /b 1

:: test - xmllint, diff and perl are required
where xmllint || goto :eof
Expand Down
9 changes: 3 additions & 6 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "doxygen" %}
{% set version = "1.9.7" %}
{% set version = "1.9.8" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/{{ name }}/{{ name }}/archive/Release_{{ version | replace(".", "_") }}.tar.gz
sha256: 691777992a7240ed1f822a5c2ff2c4273b57c1cf9fc143553d87f91a0c5970ee
sha256: 77371e8a58d22d5e03c52729844d1043e9cbf8d0005ec5112ffa4c8f509ddde8

patches:
# CMake finds iconv_open in glibc, but finds iconv.h from libiconv.
Expand All @@ -16,12 +16,9 @@ source:
- fix_osx.diff
# https://github.com/doxygen/doxygen/issues/10055
- macos.patch # [osx]
# https://github.com/doxygen/doxygen/pull/10112.patch
# fixed upstream: needs to be removed upon release of 1.9.8
- 10112.patch

build:
number: 1
number: 0

requirements:
build:
Expand Down

0 comments on commit 00ffe3c

Please sign in to comment.