forked from hasufell/hasufell-repository
Compare commits
11 Commits
a79ebcd9dc
...
lsd
| Author | SHA1 | Date | |
|---|---|---|---|
| 3874fdea53 | |||
| 5d05c0ce15 | |||
| 7155255e4b | |||
| 330af9fe56 | |||
| 2b40b9260b | |||
| 14b5db8dab | |||
| 4fc6ed1325 | |||
| 0d526c1d80 | |||
| 17395d0216 | |||
| 54067cb343 | |||
| 8ed852e56d |
@@ -5,6 +5,7 @@ app-crypt
|
||||
app-diagram
|
||||
app-editors
|
||||
app-ergonomics
|
||||
app-misc
|
||||
app-office
|
||||
dev-cpp
|
||||
dev-db
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
require openrc-service [ openrc_confd_files=[ "${FILES}"/openrc/confd ] ]
|
||||
require setup-py [ import=setuptools blacklist="3" ]
|
||||
require setup-py [ import=setuptools test=pytest ]
|
||||
require pypi
|
||||
|
||||
SUMMARY="A system for controlling process state under UNIX"
|
||||
@@ -17,7 +17,8 @@ DEPENDENCIES="
|
||||
run:
|
||||
dev-python/meld3[python_abis:*(-)?]
|
||||
test:
|
||||
dev-python/mock[python_abis:*(-)?]
|
||||
dev-python/pexpect[python_abis:*(-)?]
|
||||
python_abis:2.7? ( dev-python/mock[python_abis:2.7] )
|
||||
"
|
||||
|
||||
RESTRICT="test" # sydbox violations
|
||||
36
packages/app-misc/nnn/nnn-2.5.exheres-0
Normal file
36
packages/app-misc/nnn/nnn-2.5.exheres-0
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright 2019 Julian Ospald <hasufell@posteo.de>
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
require github [ user="jarun" tag="v${PV}" ]
|
||||
require bash-completion zsh-completion
|
||||
|
||||
SUMMARY="Lean, fast, zero-config, full-featured file manager with batteries "
|
||||
|
||||
LICENCES="BSD-2"
|
||||
SLOT="0"
|
||||
PLATFORMS="~amd64 ~x86"
|
||||
MYOPTIONS=""
|
||||
|
||||
DEPENDENCIES="
|
||||
build:
|
||||
virtual/pkg-config
|
||||
build+run:
|
||||
sys-libs/ncurses:=
|
||||
sys-libs/readline:=
|
||||
suggestion:
|
||||
app-arch/libarchive [[ description = [ create, list and extract archives ] ]]
|
||||
media/mediainfo [[ description = [ multimedia file details ] ]]
|
||||
sys-auth/vlock [[ description = [ terminal locker ] ]]
|
||||
sys-fs/sshfs-fuse [[ description = [ mount, unmount over SSHFS ] ]]
|
||||
x11-apps/xdg-utils [[ description = [ desktop opener ] ]]
|
||||
"
|
||||
|
||||
BUGS_TO="hasufell@posteo.de"
|
||||
|
||||
src_install() {
|
||||
emake PREFIX="/usr/$(exhost --target)" MANPREFIX="/usr/share/man" DESTDIR="${IMAGE}" install
|
||||
emagicdocs
|
||||
|
||||
dobashcompletion scripts/auto-completion/bash/*
|
||||
dozshcompletion scripts/auto-completion/zsh/*
|
||||
}
|
||||
9
packages/sys-apps/lsd/lsd-0.15.1.exheres-0
Normal file
9
packages/sys-apps/lsd/lsd-0.15.1.exheres-0
Normal file
@@ -0,0 +1,9 @@
|
||||
# Copyright 2019 Julian Ospald <hasufell@posteo.de>
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
require cargo [ channel=stable ]
|
||||
require github [ user=Peltoche tag="${PV}" ]
|
||||
require lsd
|
||||
|
||||
PLATFORMS="~amd64 ~x86"
|
||||
|
||||
@@ -3,17 +3,7 @@
|
||||
|
||||
require github [ user=Peltoche tag="${PV}" ]
|
||||
require cargo [ channel=stable ]
|
||||
require lsd
|
||||
|
||||
SUMMARY="The next gen ls command"
|
||||
HOMEPAGE="https://crates.io/crates/lsd ${HOMEPAGE}"
|
||||
|
||||
LICENCES="Apache-2.0"
|
||||
SLOT="0"
|
||||
PLATFORMS="~amd64 ~x86"
|
||||
MYOPTIONS=""
|
||||
|
||||
DEPENDENCIES="
|
||||
"
|
||||
|
||||
BUGS_TO="hasufell@posteo.de"
|
||||
|
||||
|
||||
@@ -1,15 +1,13 @@
|
||||
# Copyright 2019 Julian Ospald <hasufell@posteo.de>
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
require cargo [ channel=stable ]
|
||||
require github [ user=Peltoche tag="${PV}" ]
|
||||
require bash-completion zsh-completion
|
||||
|
||||
SUMMARY="The next gen ls command"
|
||||
HOMEPAGE="https://crates.io/crates/lsd ${HOMEPAGE}"
|
||||
|
||||
LICENCES="Apache-2.0"
|
||||
SLOT="0"
|
||||
PLATFORMS="~amd64 ~x86"
|
||||
MYOPTIONS=""
|
||||
|
||||
DEPENDENCIES="
|
||||
@@ -17,6 +15,20 @@ DEPENDENCIES="
|
||||
|
||||
BUGS_TO="hasufell@posteo.de"
|
||||
|
||||
BASH_COMPLETIONS=( "${WORK}/completions/${PN}.bash" )
|
||||
ZSH_COMPLETIONS=( "${WORK}/completions/_${PN}" )
|
||||
|
||||
src_compile() {
|
||||
SHELL_COMPLETIONS_DIR="${WORK}/completions" \
|
||||
cargo_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cargo_src_install
|
||||
bash-completion_src_install
|
||||
zsh-completion_src_install
|
||||
}
|
||||
|
||||
src_test() {
|
||||
local test_socket="unix:${TEMP}/test_socket_type.*/socket.tmp"
|
||||
esandbox allow_net --bind "${test_socket}"
|
||||
Reference in New Issue
Block a user