dev-python/fusepy - 2.0.4 (didos)

Search

Install

Install this version:

emerge -a =dev-python/fusepy-2.0.4

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-python/fusepy-2.0.4

Or alternatively:

emerge --autounmask-write -a =dev-python/fusepy-2.0.4

Package Information

Description:
Simple ctypes python bindings for FUSE
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
2.0.4 7 ~amd64 ~arm ~arm64 0
View Raw Ebuild
# Copyright 2016-2017 Jan Chren (rindeal)
# Distributed under the terms of the GNU General Public License v2

EAPI=7
inherit rindeal

GH_RN="github:terencehonles"
GH_REF="v${PV}"

PYTHON_COMPAT=( py{py3,thon{2_7,3_{5..7}}} )

inherit git-hosting
inherit distutils-r1

DESCRIPTION="Simple ctypes python bindings for FUSE"
LICENSE="MIT"

SLOT="0"

KEYWORDS="~amd64 ~arm ~arm64"

CDEPEND_A=(
	">=sys-fs/fuse-2.6:0"
)
DEPEND_A=( "${CDEPEND_A[@]}"
	"dev-python/setuptools[${PYTHON_USEDEP}]"
)
RDEPEND_A=( "${CDEPEND_A[@]}"
	# collision in `fuse.py` file
	"!dev-python/fuse-python[${PYTHON_USEDEP}]"
)

inherit arrays

Inherited Eclasses