Update overlay packages
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
DIST nemo-python-6.6.0.tar.gz 450838 BLAKE2B 4cd38ccccabcd5226828c114fb191dd7328768b7ae670a46173dceefcfcd9ab6b8001ed6059b07b3062b325053ee53b9a1d022997b56a610181b2d9b82ccc13a SHA512 5e5a23e4222723a0ebcfb59f4a3af5aa45da5e249ce7ae17099e3f45409091ad8775893c5653831ef7807f37654b4e3eb77dfc90105b0ec7343730792c152f07
|
||||
EBUILD nemo-python-6.6.0.ebuild 974 BLAKE2B 7835ea809ff564d96f57797c45c12400b2b002f13abe46368fd8cc25d59bb34688057e197825ed61dfa662a79cfe53a1150cd4ed9fdac925d077d078a5114124 SHA512 f5e4a23ac3332468e92d7bee29f7a423f52c1d417e9d754b36f432668cf59ffdc2976953c39a8c6f04c51c850808b0765e237b5e3529bda171ba34db3616c50e
|
||||
MISC metadata.xml 353 BLAKE2B 7913c4d35a0fd393cba6193dc327cb3b15336da3d66f7f12e9023387f5141490b65683b884fe7d46da48832a47c93ed1e227e8bc7a700d24017189f290298130 SHA512 69f2538f33ec6a94321b231e754e3104400d5652af210882aa03cc6ddbdc087772fe88b064b053fdc94fe5274f2338cec7111edd56dfb3a571cec488f955c1c6
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>mario.fetka@disconnected-by-peer.at</email>
|
||||
<name>Mario Fetka</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">linuxmint/nemo-extensions</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,48 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..14} )
|
||||
|
||||
inherit meson python-single-r1
|
||||
|
||||
DESCRIPTION="Python bindings for the Nemo file manager"
|
||||
HOMEPAGE="https://github.com/linuxmint/nemo-extensions/tree/master/nemo-python"
|
||||
SRC_URI="https://github.com/linuxmint/nemo-extensions/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/nemo-extensions-${PV}/${PN}"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="gtk-doc"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||
')
|
||||
>=dev-libs/glib-2.0:2
|
||||
gnome-extra/nemo
|
||||
x11-libs/gtk+:3
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
gtk-doc? ( dev-util/gtk-doc )
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
$(meson_use gtk-doc gtk_doc)
|
||||
)
|
||||
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
|
||||
keepdir /usr/share/nemo-python/extensions
|
||||
}
|
||||
Reference in New Issue
Block a user