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

lychee: update to 0.14.0 #5092

Merged
merged 2 commits into from
Jan 7, 2024
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
6 changes: 6 additions & 0 deletions app-web/lychee/autobuild/defines
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ PKGSEC="web"

USECLANG=1
ABSPLITDBG=0

# ld.lld does not support loongson3 and mips64r6el
USECLANG__LOONGSON3=0
USECLANG__MIPS64R6EL=0
NOLTO__LOONGSON3=1
NOLTO__MIPS64R6EL=1
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
From bc38a6c787c43472984f58f74a04b8e24c10cd37 Mon Sep 17 00:00:00 2001
From: eatradish <[email protected]>
Date: Sun, 7 Jan 2024 12:29:35 +0800
Subject: [PATCH] fix secondary arch build

---
Cargo.lock | 4 +---
lychee-lib/Cargo.toml | 2 +-
2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index c1cf52a..7a38268 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1865,9 +1865,7 @@ dependencies = [
"futures-util",
"http 0.2.11",
"hyper 0.14.27",
- "log",
"rustls",
- "rustls-native-certs",
"tokio",
"tokio-rustls",
]
@@ -2533,8 +2531,8 @@ dependencies = [
"http 0.2.11",
"http-body 0.4.5",
"hyper 0.14.27",
- "hyper-rustls",
"hyper-timeout",
+ "hyper-tls",
"jsonwebtoken",
"once_cell",
"percent-encoding",
diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml
index b539ba4..1e8f0f3 100644
--- a/lychee-lib/Cargo.toml
+++ b/lychee-lib/Cargo.toml
@@ -32,7 +32,7 @@ ip_network = "0.4.1"
jwalk = "0.8.1"
linkify = "0.10.0"
log = "0.4.20"
-octocrab = "0.32.0"
+octocrab = { version = "0.32.0", default-features = false, features = ["follow-redirect", "retry", "opentls", "timeout", "tracing"] }
once_cell = "1.19.0"
openssl-sys = { version = "0.9.98", optional = true }
path-clean = "1.0.1"
--
2.39.1

2 changes: 1 addition & 1 deletion app-web/lychee/spec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VER="0.13.0"
VER="0.14.0"
SRCS="git::commit=v$VER::https://github.com/lycheeverse/lychee"
CHKSUMS="SKIP"
CHKUPDATE="anitya::id=370221"