From: "Georgy Yakovlev" <gyakovlev@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/exa/
Date: Thu, 3 Jan 2019 22:11:35 +0000 (UTC) [thread overview]
Message-ID: <1546553483.b3b01a945759a617ce8ef5acacc99a0043a228ba.gyakovlev@gentoo> (raw)
commit: b3b01a945759a617ce8ef5acacc99a0043a228ba
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 3 22:09:40 2019 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Thu Jan 3 22:11:23 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3b01a94
sys-apps/exa: revbump, add git useflag
add conditional dep on libgit & co
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
sys-apps/exa/exa-0.8.0-r1.ebuild | 118 +++++++++++++++++++++++++++++++++++++++
1 file changed, 118 insertions(+)
diff --git a/sys-apps/exa/exa-0.8.0-r1.ebuild b/sys-apps/exa/exa-0.8.0-r1.ebuild
new file mode 100644
index 00000000000..4ebaed05f2f
--- /dev/null
+++ b/sys-apps/exa/exa-0.8.0-r1.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CRATES="
+aho-corasick-0.5.3
+ansi_term-0.8.0
+bitflags-0.7.0
+bitflags-0.9.1
+byteorder-0.4.2
+cmake-0.1.25
+conv-0.3.3
+custom_derive-0.1.7
+datetime-0.4.5
+env_logger-0.3.5
+exa-0.8.0
+gcc-0.3.53
+getopts-0.2.14
+git2-0.6.8
+glob-0.2.11
+idna-0.1.4
+iso8601-0.1.1
+kernel32-sys-0.2.2
+lazy_static-0.2.8
+libc-0.2.30
+libgit2-sys-0.6.14
+libz-sys-1.0.16
+locale-0.2.2
+log-0.3.8
+magenta-0.1.1
+magenta-sys-0.1.1
+matches-0.1.6
+memchr-0.1.11
+natord-1.0.9
+nom-1.2.4
+num-0.1.40
+num-bigint-0.1.40
+num-complex-0.1.40
+num-integer-0.1.35
+num-iter-0.1.34
+num-rational-0.1.39
+num-traits-0.1.40
+num_cpus-1.6.2
+number_prefix-0.2.7
+pad-0.1.4
+percent-encoding-1.0.0
+pkg-config-0.3.9
+rand-0.3.16
+redox_syscall-0.1.31
+regex-0.1.80
+regex-syntax-0.3.9
+rustc-serialize-0.3.24
+scoped_threadpool-0.1.7
+term_grid-0.1.6
+term_size-0.3.0
+thread-id-2.0.0
+thread_local-0.2.7
+unicode-bidi-0.3.4
+unicode-normalization-0.1.5
+unicode-width-0.1.4
+url-1.5.1
+users-0.5.3
+utf8-ranges-0.1.3
+vcpkg-0.2.2
+winapi-0.2.8
+winapi-build-0.1.1
+zoneinfo_compiled-0.4.5
+"
+
+inherit bash-completion-r1 cargo
+
+DESCRIPTION="A modern replacement for 'ls' written in Rust"
+HOMEPAGE="https://the.exa.website/"
+SRC_URI="$(cargo_crate_uris ${CRATES})"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+git"
+
+DEPEND="
+ git? (
+ dev-libs/libgit2:=
+ net-libs/http-parser:=
+ )
+"
+RDEPEND="${DEPEND}"
+
+QA_FLAGS_IGNORED="/usr/bin/exa"
+
+src_compile() {
+ export CARGO_HOME="${ECARGO_HOME}"
+
+ cargo build -j $(makeopts_jobs) \
+ $(usex debug "" --release) \
+ $(usex git "" --no-default-features) \
+ || die "cargo build failed"
+}
+
+src_install() {
+ cargo install -j $(makeopts_jobs) --root="${D}/usr" \
+ $(usex debug --debug "") \
+ $(usex git "" --no-default-features) \
+ || die "cargo install failed"
+
+ rm "${D}/usr/.crates.toml" || die
+
+ newbashcomp contrib/completions.bash exa
+
+ insinto /usr/share/zsh/site-functions
+ newins contrib/completions.zsh _exa
+
+ insinto /usr/share/fish/vendor_completions.d
+ newins contrib/completions.fish exa.fish
+
+ doman contrib/man/*
+}
next reply other threads:[~2019-01-03 22:11 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-03 22:11 Georgy Yakovlev [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-08-30 7:52 [gentoo-commits] repo/gentoo:master commit in: sys-apps/exa/ Sam James
2023-08-30 7:52 Sam James
2023-08-30 7:52 Sam James
2023-08-30 7:52 Sam James
2023-08-30 7:52 Sam James
2023-08-30 7:52 Sam James
2023-06-08 22:35 Sam James
2022-04-17 19:17 Sam James
2021-12-02 8:24 Agostino Sarubbo
2021-08-03 0:49 Georgy Yakovlev
2021-06-23 8:31 Joonas Niilola
2021-06-23 8:31 Joonas Niilola
2020-07-11 6:03 Georgy Yakovlev
2020-06-30 20:28 Georgy Yakovlev
2020-02-18 5:39 Georgy Yakovlev
2020-02-18 5:39 Georgy Yakovlev
2019-12-27 2:03 Georgy Yakovlev
2019-07-15 7:59 Georgy Yakovlev
2019-06-16 3:32 Georgy Yakovlev
2019-06-16 3:32 Georgy Yakovlev
2019-01-08 23:40 Georgy Yakovlev
2018-12-01 3:11 Georgy Yakovlev
2018-06-17 1:18 Georgy Yakovlev
2018-03-27 8:50 Lars Wendler
2018-02-11 11:12 Michał Górny
2018-01-31 9:13 Lars Wendler
2018-01-31 9:13 Lars Wendler
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1546553483.b3b01a945759a617ce8ef5acacc99a0043a228ba.gyakovlev@gentoo \
--to=gyakovlev@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox