blob: e8534b24785ad1320fe389e3c74d268ada5adf97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{13..14} )
inherit distutils-r1
EGIT_COMMIT="a702dc8254378974b86785e2654fe57d590fafe4"
DESCRIPTION="Fujifilm RAF conversion using the camera's own engine over USB"
HOMEPAGE="https://github.com/pinpox/rawji"
SRC_URI="https://github.com/pinpox/rawji/archive/${EGIT_COMMIT}.tar.gz -> ${P}.gh.tar.gz"
S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-python/pyusb[${PYTHON_USEDEP}]"
|