119 lines
2.1 KiB
Bash
119 lines
2.1 KiB
Bash
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
CRATES="
|
|
ahash@0.7.6
|
|
aho-corasick@0.7.18
|
|
autocfg@1.1.0
|
|
bitflags@1.3.2
|
|
cc@1.0.73
|
|
cfg-if@1.0.0
|
|
core-foundation@0.9.3
|
|
core-foundation-sys@0.8.3
|
|
crossbeam-channel@0.5.4
|
|
crossbeam-utils@0.8.8
|
|
cursive@0.18.0
|
|
cursive_core@0.3.2
|
|
darling@0.13.4
|
|
darling_core@0.13.4
|
|
darling_macro@0.13.4
|
|
dirs@4.0.0
|
|
dirs-sys@0.3.7
|
|
enum-map@2.1.0
|
|
enum-map-derive@0.8.0
|
|
enumset@1.0.11
|
|
enumset_derive@0.6.0
|
|
fastrand@1.7.0
|
|
fnv@1.0.7
|
|
foreign-types@0.3.2
|
|
foreign-types-shared@0.1.1
|
|
form_urlencoded@1.0.1
|
|
getrandom@0.2.6
|
|
ident_case@1.0.1
|
|
idna@0.2.3
|
|
instant@0.1.12
|
|
itoa@1.0.1
|
|
json@0.12.4
|
|
lazy_static@1.4.0
|
|
libc@0.2.125
|
|
log@0.4.17
|
|
maplit@1.0.2
|
|
matches@0.1.9
|
|
memchr@2.5.0
|
|
native-tls@0.2.10
|
|
ncurses@5.101.0
|
|
num@0.4.0
|
|
num-complex@0.4.1
|
|
num-integer@0.1.45
|
|
num-iter@0.1.43
|
|
num-rational@0.4.0
|
|
num-traits@0.2.15
|
|
num_threads@0.1.6
|
|
once_cell@1.10.0
|
|
open@2.1.2
|
|
openssl@0.10.40
|
|
openssl-macros@0.1.0
|
|
openssl-probe@0.1.5
|
|
openssl-sys@0.9.73
|
|
owning_ref@0.4.1
|
|
pathdiff@0.2.1
|
|
percent-encoding@2.1.0
|
|
pkg-config@0.3.25
|
|
proc-macro2@1.0.37
|
|
quote@1.0.18
|
|
redox_syscall@0.2.13
|
|
redox_users@0.4.3
|
|
regex@1.5.5
|
|
regex-syntax@0.6.25
|
|
remove_dir_all@0.5.3
|
|
schannel@0.1.19
|
|
security-framework@2.6.1
|
|
security-framework-sys@2.6.1
|
|
signal-hook@0.3.13
|
|
signal-hook-registry@1.4.0
|
|
smawk@0.3.1
|
|
stable_deref_trait@1.2.0
|
|
syn@1.0.92
|
|
tempfile@3.3.0
|
|
term_size@0.3.2
|
|
textwrap@0.15.0
|
|
thiserror@1.0.31
|
|
thiserror-impl@1.0.31
|
|
time@0.3.9
|
|
tinyvec@1.6.0
|
|
tinyvec_macros@0.1.0
|
|
unicode-bidi@0.3.8
|
|
unicode-linebreak@0.1.2
|
|
unicode-normalization@0.1.19
|
|
unicode-segmentation@1.9.0
|
|
unicode-width@0.1.9
|
|
unicode-xid@0.2.3
|
|
url@2.2.2
|
|
vcpkg@0.2.15
|
|
version_check@0.9.4
|
|
wasi@0.10.2+wasi-snapshot-preview1
|
|
winapi@0.3.9
|
|
winapi-i686-pc-windows-gnu@0.4.0
|
|
winapi-x86_64-pc-windows-gnu@0.4.0
|
|
xi-unicode@0.3.0
|
|
"
|
|
|
|
inherit cargo
|
|
|
|
DESCRIPTION="Navigateur CLI pour le protocole Gemini"
|
|
HOMEPAGE="https://git.sr.ht/~julienxx/asuka"
|
|
SRC_URI="https://git.sr.ht/~julienxx/asuka/archive/${PV}.tar.gz
|
|
${CARGO_CRATE_URIS}"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
dev-libs/openssl
|
|
sys-libs/ncurses
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|