Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions gdcm.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: gdcm
version: "3.1.0"
epoch: 1
version: "3.2.1"
epoch: 0
description: "Grassroots DICOM Gdcm, Cross-platform DICOM implementation library for C++"
copyright:
- license: BSD-3-Clause
Expand All @@ -12,18 +12,18 @@ environment:
- build-base
- busybox

var-transforms:
- from: ${{package.version}}
match: ^(\d+\.\d+)\.\d+$
replace: "$1"
to: major-minor-version

pipeline:
- uses: git-checkout
with:
repository: https://github.com/malaterre/GDCM
tag: v${{package.version}}
expected-commit: 917a96c8f4d63f2a30ac3a52f31d90127c2d6607

# This patch Fixes "missing <limits> header"
# Without the header, leads to compilation failures since upstream code uses std::numeric_limits functions.
- uses: patch
with:
patches: numeric-limits.patch
expected-commit: ad32c84455296a204192342dd0fa03bcbfaed479

- uses: cmake/configure
with:
Expand Down Expand Up @@ -80,7 +80,7 @@ test:
}
EOF

g++ -I/usr/include/gdcm-3.1 -o test_gdcm test_gdcm.cpp -lgdcmDSED -lgdcmMSFF -lgdcmCommon -lgdcmDICT -lgdcmIOD -lgdcmzlib
g++ -I/usr/include/gdcm-${{vars.major-minor-version}} -o test_gdcm test_gdcm.cpp -lgdcmDSED -lgdcmMSFF -lgdcmCommon -lgdcmDICT -lgdcmIOD -lgdcmzlib
./test_gdcm

update:
Expand Down
10 changes: 0 additions & 10 deletions gdcm/numeric-limits.patch

This file was deleted.

Loading