forked from InsightSoftwareConsortium/ITK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: libpng: update to current update-third-party script
- Loading branch information
Showing
1 changed file
with
16 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 () { | ||
|
@@ -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" |