Skip to content

Commit

Permalink
app-misc/nnn: Version bump (v1.9)
Browse files Browse the repository at this point in the history
- Install the completion files unconditionally (tiny)
- Fix the installation path for fish completion
- Drop empty IUSE

Closes: https://bugs.gentoo.org/655914
Closes: https://bugs.gentoo.org/663306
Package-Manager: Portage-2.3.40, Repoman-2.3.9
  • Loading branch information
Zlogene committed Aug 15, 2018
1 parent 5357bcd commit 77801f4
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions app-misc/nnn/Manifest
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
DIST nnn-1.6.tar.gz 37456 BLAKE2B 90a6bcf7123b763585a05d5898ecee129561fa11dddbc40125f536b96315e4847b6187615df2bb6e0262d3df5efeec83d6681092ed69e4b65cd5486cf396e7e6 SHA512 7172f37f98f15b37cd2959c5ad144d32f55cde9cd2fe3221fc7a23887d3326da924c9be0bdc61a01a4d98ceb9b03de2420a66cc2cbf94a2ae1547da206e4c49a
DIST nnn-1.8.tar.gz 42534 BLAKE2B acf1f9e211ddf688da96c77364f8eb2d12c853fa528774f2a3f8fa146203b155df089f6a3c995f0415d5349e9bb0c519cd0776c77094a83c23ecfe45561c846d SHA512 dfa3fc20cc9d77dc6a998913d79c1f98467f9e0f475d43317fe5b3b7c85f04a8aa1508305307873115ff810f5e212272e8348af9d8bd5283f48ad76ed34cad55
DIST nnn-1.9.tar.gz 43405 BLAKE2B c085f13883eb379cc04b225d3a6bdbc95dcfb200a0c338bea82b64841918f41560a0b53ed49be0cf8eaec852eb1575d050197ece197fd655c2a3ba1c6cf20d57 SHA512 44eb3d569429ee27e35c0a1299e7cb248072b470b462a361eec3364163f03f577a1b28819cddfc9a85002d6ae90c61cc0633f0548c58cb154dfd8e6491c73369
39 changes: 39 additions & 0 deletions app-misc/nnn/nnn-1.9.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit bash-completion-r1 toolchain-funcs

DESCRIPTION="The missing terminal file browser for X"
HOMEPAGE="https://github.com/jarun/nnn"
SRC_URI="https://github.com/jarun/nnn/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"

DEPEND="sys-libs/ncurses:0=
sys-libs/readline:0="
RDEPEND="${DEPEND}"

src_prepare() {
default
tc-export CC
sed -i -e '/strip/d' Makefile || die "sed failed"

}

src_install() {
emake PREFIX="/usr" DESTDIR="${D}" install

newbashcomp scripts/auto-completion/bash/nnn-completion.bash nnn

insinto /usr/share/fish/vendor_completions.d
doins scripts/auto-completion/fish/nnn.fish

insinto /usr/share/zsh/site-functions
doins scripts/auto-completion/zsh/_nnn

einstalldocs
}

0 comments on commit 77801f4

Please sign in to comment.