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

app-shells/nushell Removed 'extra' USE flag, added 'dataframe' USE flag #29352

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion app-shells/nushell/metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<remote-id type="github">nushell/nushell</remote-id>
</upstream>
<use>
<flag name="extra">Install extra plugins: binaryview, tree, clipboard-cli, trash-support and others</flag>
<flag name="dataframe">Dataframe feature for nushell</flag>
</use>
</pkgmetadata>
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ SRC_URI="https://github.com/nushell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 Unlicense ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
IUSE="+extra"
IUSE="dataframe"

DEPEND="
>=dev-libs/libgit2-0.99:=
Expand All @@ -586,11 +586,9 @@ DEPEND="
net-libs/libssh2:=
net-libs/nghttp2:=
net-misc/curl
extra? (
dev-db/sqlite:3=
x11-libs/libX11
x11-libs/libxcb
)
dev-db/sqlite:3=
x11-libs/libX11
x11-libs/libxcb
"

RDEPEND="${DEPEND}"
Expand Down Expand Up @@ -618,7 +616,7 @@ src_configure() {

local myfeatures=(
stable
$(usev extra)
$(usev dataframe)
)

cargo_src_configure
Expand Down