aboutsummaryrefslogtreecommitdiff
path: root/gnome-extra/nemo-python
diff options
context:
space:
mode:
Diffstat (limited to 'gnome-extra/nemo-python')
-rw-r--r--gnome-extra/nemo-python/Manifest3
-rw-r--r--gnome-extra/nemo-python/metadata.xml15
-rw-r--r--gnome-extra/nemo-python/nemo-python-5.2.0.ebuild52
3 files changed, 70 insertions, 0 deletions
diff --git a/gnome-extra/nemo-python/Manifest b/gnome-extra/nemo-python/Manifest
new file mode 100644
index 0000000..6f4130b
--- /dev/null
+++ b/gnome-extra/nemo-python/Manifest
@@ -0,0 +1,3 @@
+DIST nemo-extensions-5.2.0.tar.gz 533607 BLAKE2B 0c9ca96e2ac57a42765f3b598d4681e1f8a00b7804edd0ae500e80ce8d013f3fcdfafdd1ccba7d13d33639e6128aed54b5909baa463c040fd88d64d56d14dcdd SHA512 deaf8c8582119f75b13f65dd60e8b5a2db68dece6a3237e2d31c11adf35ca8fc3ea9b16d53b21a0ddb3772759b8a8993779da6e9ee4cf765889515fdcb03998d
+EBUILD nemo-python-5.2.0.ebuild 1015 BLAKE2B 68cf53d4bfbc7bf486d572b31f4fac391d9b3cad25c3d975cd86f3a57186b6f18a8cd45600f313e7b88e78d5d61ddabe823379e3a3864c0d67c80355c26446d5 SHA512 08ff7821fcd3773b2f397b9eb793ab04bfe35bc0226a196760e0d00621eb6d4f33bbc669f92072e8b6b242d0417088e0e3ca35cd5b9506b0fb134843916207fd
+MISC metadata.xml 495 BLAKE2B 448c4a1b019897c3d8098b970e31849035b0125b707ac744eb668f7d295c76de0f121235edd1e76dc931051ccee1a508897679845dadfea04baf3d832baac5a5 SHA512 c86fa92ffb7d82826c4188c1ac63131fce88b40f5b9e13e2ef3162b3c83cc2d7cb6968c0e3e894a93e685cac818b7284072c55a4e8114dd44636a4678c415702
diff --git a/gnome-extra/nemo-python/metadata.xml b/gnome-extra/nemo-python/metadata.xml
new file mode 100644
index 0000000..3af2fa6
--- /dev/null
+++ b/gnome-extra/nemo-python/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>sparky@bluefang-logic.com</email>
+ <name>Matthew Turnbull</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">linuxmint/nemo-extensions</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/gnome-extra/nemo-python/nemo-python-5.2.0.ebuild b/gnome-extra/nemo-python/nemo-python-5.2.0.ebuild
new file mode 100644
index 0000000..c8fa29c
--- /dev/null
+++ b/gnome-extra/nemo-python/nemo-python-5.2.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{7,8,9,10} )
+
+inherit meson python-r1
+
+DESCRIPTION="Nemo python integration"
+HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/nemo-extensions"
+SRC_URI="https://github.com/linuxmint/nemo-extensions/archive/5.2.0.tar.gz -> nemo-extensions-5.2.0.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc exif +nls selinux tracker xmp"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+ >=dev-libs/glib-2.14.0
+ >=gnome-extra/nemo-2.0.0
+"
+RDEPEND="
+ ${DEPEND}
+"
+
+S="${WORKDIR}/nemo-extensions-5.2.0/${PN}"
+
+pkg_setup() {
+ python_setup
+}
+
+src_configure() {
+ local emesonargs=(
+ $(meson_use exif)
+ $(meson_use tracker)
+ $(meson_use xmp)
+ $(meson_use selinux)
+ $(meson_use doc gtk_doc)
+ )
+ meson_src_configure
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+ gnome3_schemas_update
+}
+
+pkg_postrm() {
+ xdg_pkg_postrm
+ gnome3_schemas_update
+}