aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Christensen <philc@microsoft.com>2019-09-11 15:57:58 -0700
committerCurtis J Bezault <curtbezault@gmail.com>2019-09-11 15:57:58 -0700
commit793fedd2c51000db05d426c5963eb9181eb6575c (patch)
tree647a7b69abc38fabd8575e534d6e2e3ff1decf1b
parent1e7303d4c52468fbb24a0d3418ff033d2585d18d (diff)
downloadvcpkg-793fedd2c51000db05d426c5963eb9181eb6575c.tar.gz
vcpkg-793fedd2c51000db05d426c5963eb9181eb6575c.zip
[otl] fix hash and update version (#8139)
-rw-r--r--ports/otl/CONTROL2
-rw-r--r--ports/otl/portfile.cmake8
2 files changed, 6 insertions, 4 deletions
diff --git a/ports/otl/CONTROL b/ports/otl/CONTROL
index c3950ec25..809586035 100644
--- a/ports/otl/CONTROL
+++ b/ports/otl/CONTROL
@@ -1,4 +1,4 @@
Source: otl
-Version: 4.0.442
+Version: 4.0.443
Description: Oracle, Odbc and DB2-CLI Template Library
Homepage: http://otl.sourceforge.net/
diff --git a/ports/otl/portfile.cmake b/ports/otl/portfile.cmake
index eeaa6f225..f577641dc 100644
--- a/ports/otl/portfile.cmake
+++ b/ports/otl/portfile.cmake
@@ -1,16 +1,18 @@
include(vcpkg_common_functions)
vcpkg_download_distfile(ARCHIVE
+ # This URL is not stable becuase they use the same name for minor releases which changes the hash below.
+ # if you know a stable download URL then please update it.
URLS "http://otl.sourceforge.net/otlv4_h2.zip"
- FILENAME "otl-4.0.442.zip"
- SHA512 2f4005c2351021c92b86411e9c5847757b3596c485c34aa6a7228d86c446b0d9f1dcbfd228e9262d10c7460b77af0709b8ba9d5c7599ae54442efd88ccdbb96d
+ FILENAME "otl-4.0.443.zip"
+ SHA512 7f1e9080f097da648050dcc60e5e54f7801bbdcbd5e4609dc14424a1881995c06f045e92bdabfca754461324dbf0e882c8542816799c4ec3c0a1a7fc6c150fa4
)
vcpkg_extract_source_archive_ex(
OUT_SOURCE_PATH SOURCE_PATH
ARCHIVE ${ARCHIVE}
NO_REMOVE_ONE_LEVEL
- REF 4.0.422
+ REF 4.0.443
)
file(INSTALL ${SOURCE_PATH}/otlv4.h DESTINATION ${CURRENT_PACKAGES_DIR}/include/otl)