Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing the curl issues #178

Merged
merged 8 commits into from
Jan 9, 2022
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
5 changes: 4 additions & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@ source:
- patches/0002-disable-testing-Baz.baz-1.patch # [linux]
## see PR upstream: https://github.com/JuliaLang/julia/pull/42358
- patches/0003-correct-test-for-julia-depot-path.patch
## fix the curl issues:
## see: https://github.com/JuliaLang/Downloads.jl/issues/172
- patches/0001-upgrading-downloads-v1.7.1.patch

build:
skip: true # [win]
number: 2
number: 3
features:

requirements:
Expand Down
59 changes: 59 additions & 0 deletions recipe/patches/0001-upgrading-downloads-v1.7.1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
From 0d37f74d2b4152a7d4b7c32585bb666451db6838 Mon Sep 17 00:00:00 2001
From: ngam <[email protected]>
Date: Sat, 8 Jan 2022 19:22:45 -0500
Subject: [PATCH] upgrading downloads v1.7.1

---
.../md5 | 1 -
.../sha512 | 1 -
.../md5 | 1 +
.../sha512 | 1 +
stdlib/Downloads.version | 4 ++--
5 files changed, 4 insertions(+), 4 deletions(-)
delete mode 100644 deps/checksums/Downloads-26d79afcde9cf837a331fce023b31f1d3699700c.tar.gz/md5
delete mode 100644 deps/checksums/Downloads-26d79afcde9cf837a331fce023b31f1d3699700c.tar.gz/sha512
create mode 100644 deps/checksums/Downloads-43899e71eed709866f96dd624f1c369a1c8e26a3.tar.gz/md5
create mode 100644 deps/checksums/Downloads-43899e71eed709866f96dd624f1c369a1c8e26a3.tar.gz/sha512

diff --git a/deps/checksums/Downloads-26d79afcde9cf837a331fce023b31f1d3699700c.tar.gz/md5 b/deps/checksums/Downloads-26d79afcde9cf837a331fce023b31f1d3699700c.tar.gz/md5
deleted file mode 100644
index 02c7e0f491..0000000000
--- a/deps/checksums/Downloads-26d79afcde9cf837a331fce023b31f1d3699700c.tar.gz/md5
+++ /dev/null
@@ -1 +0,0 @@
-2265854c26d1ff5a061ef9033eb3b9d4
diff --git a/deps/checksums/Downloads-26d79afcde9cf837a331fce023b31f1d3699700c.tar.gz/sha512 b/deps/checksums/Downloads-26d79afcde9cf837a331fce023b31f1d3699700c.tar.gz/sha512
deleted file mode 100644
index 19d71e70f6..0000000000
--- a/deps/checksums/Downloads-26d79afcde9cf837a331fce023b31f1d3699700c.tar.gz/sha512
+++ /dev/null
@@ -1 +0,0 @@
-7817f2ab0ccd3224420e65ae7525c2a801f0dbd7e5986e3a0eeac29e3842ea94933e494b895a78e0495ab1188a7375cd98033f507d270aea38eeeb5532226873
diff --git a/deps/checksums/Downloads-43899e71eed709866f96dd624f1c369a1c8e26a3.tar.gz/md5 b/deps/checksums/Downloads-43899e71eed709866f96dd624f1c369a1c8e26a3.tar.gz/md5
new file mode 100644
index 0000000000..eaadf785c8
--- /dev/null
+++ b/deps/checksums/Downloads-43899e71eed709866f96dd624f1c369a1c8e26a3.tar.gz/md5
@@ -0,0 +1 @@
+32aa90dbb437530c9da687340339c1aa
diff --git a/deps/checksums/Downloads-43899e71eed709866f96dd624f1c369a1c8e26a3.tar.gz/sha512 b/deps/checksums/Downloads-43899e71eed709866f96dd624f1c369a1c8e26a3.tar.gz/sha512
new file mode 100644
index 0000000000..278d52a7c8
--- /dev/null
+++ b/deps/checksums/Downloads-43899e71eed709866f96dd624f1c369a1c8e26a3.tar.gz/sha512
@@ -0,0 +1 @@
+b433a964ec78fdfdc0c159a6330ca465b62c2911d84de4a020a78aa2f8dd2f760ae9313e3b64c72937dfbb30bde23ad8effa0ce3179488cdd7e05af2c101bb0c
diff --git a/stdlib/Downloads.version b/stdlib/Downloads.version
index 056fc38d82..92b057c3b6 100644
--- a/stdlib/Downloads.version
+++ b/stdlib/Downloads.version
@@ -1,4 +1,4 @@
-DOWNLOADS_BRANCH = release-1.5
-DOWNLOADS_SHA1 = 26d79afcde9cf837a331fce023b31f1d3699700c
+DOWNLOADS_BRANCH = release-1.6
+DOWNLOADS_SHA1 = 43899e71eed709866f96dd624f1c369a1c8e26a3
DOWNLOADS_GIT_URL := git://github.com/JuliaLang/Downloads.jl.git
DOWNLOADS_TAR_URL = https://api.github.com/repos/JuliaLang/Downloads.jl/tarball/$1
--
2.34.1