Skip to content

Commit

Permalink
ENH: libpng: update to current update-third-party script
Browse files Browse the repository at this point in the history
  • Loading branch information
blowekamp authored and bradking committed Dec 12, 2024
1 parent 4cbe24c commit b883ed2
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions Modules/ThirdParty/PNG/UpdateFromUpstream.sh
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
#!/usr/bin/env bash

thirdparty_module_name='PNG'
set -e
set -x
shopt -s dotglob

upstream_git_url='git://git.code.sf.net/p/libpng/code'
upstream_git_branch='v1.6.44' # Sept 12, 2024

snapshot_author_name='LIBPNG Upstream'
snapshot_author_email='[email protected]'

snapshot_redact_cmd=''
snapshot_relative_path='src/itkpng'
snapshot_paths='
png*.c
png*.h
arm/*
LICENSE
scripts/pnglibconf.h.prebuilt
'
readonly name="png"
readonly ownership="LIBPNG Upstream <[email protected]>"
readonly subtree="Modules/ThirdParty/PNG/src/itk$name"
readonly repo="git://git.code.sf.net/p/libpng/code"
readonly tag='v1.6.44' # Sept 12, 2024
readonly paths="
png*.c
png*.h
arm/*
LICENSE
scripts/pnglibconf.h.prebuilt
"


extract_source () {
Expand All @@ -26,5 +25,4 @@ extract_source () {
popd
}

source "${BASH_SOURCE%/*}/../../../Utilities/Maintenance/UpdateThirdPartyFromUpstream.sh"
update_from_upstream
. "${BASH_SOURCE%/*}/../../../Utilities/Maintenance/update-third-party.bash"

0 comments on commit b883ed2

Please sign in to comment.