diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2022-12-20 15:31:02 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-12-20 16:06:10 +0100 |
commit | 898126b9f1ab3878346364fa051f3df163a5320e (patch) | |
tree | e35e948f242e5445dfdbaedacd739a8c2d7ec481 /mate-extra | |
parent | media-gfx/netpaint: treeclean (diff) | |
download | gentoo-898126b9f1ab3878346364fa051f3df163a5320e.tar.gz gentoo-898126b9f1ab3878346364fa051f3df163a5320e.tar.bz2 gentoo-898126b9f1ab3878346364fa051f3df163a5320e.zip |
mate-extra/caja-hide: treeclean
Closes: https://bugs.gentoo.org/845999
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'mate-extra')
-rw-r--r-- | mate-extra/caja-hide/Manifest | 1 | ||||
-rw-r--r-- | mate-extra/caja-hide/caja-hide-0.9.0.ebuild | 38 | ||||
-rw-r--r-- | mate-extra/caja-hide/files/caja-hide-0.9.0-py3-support.patch | 20 | ||||
-rw-r--r-- | mate-extra/caja-hide/metadata.xml | 11 |
4 files changed, 0 insertions, 70 deletions
diff --git a/mate-extra/caja-hide/Manifest b/mate-extra/caja-hide/Manifest deleted file mode 100644 index 3a317206fc00..000000000000 --- a/mate-extra/caja-hide/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST caja-hide-0.9.0.tar.gz 17487 BLAKE2B 182a4e65745a6c3dbbc40121d95f7b5b34b4660ceb9fcffc60ddd51bdc3949191b7eafa258950b0a6b9a6befd63e4b6842481f20ba31b4bfab0668c261e87470 SHA512 86a3d5a661a731caf740c4086ffc041f9f5cb21f996bc21d92cf5d53df108d6d14b753165ee992f3d5574957850f041d03e4d78447fb4db67bf989f16eb5471c diff --git a/mate-extra/caja-hide/caja-hide-0.9.0.ebuild b/mate-extra/caja-hide/caja-hide-0.9.0.ebuild deleted file mode 100644 index c8112e94cf5d..000000000000 --- a/mate-extra/caja-hide/caja-hide-0.9.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2019-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python{3_8,3_9,3_10,3_11} ) -inherit python-single-r1 - -MY_PN="Caja-hide" - -DESCRIPTION="Hide files without renaming them in MATE's Caja" -HOMEPAGE="https://github.com/Fred-Barclay/Caja-hide" -SRC_URI="https://github.com/Fred-Barclay/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="${PYTHON_DEPS}" -RDEPEND="${DEPEND} - $(python_gen_cond_dep 'dev-python/future[${PYTHON_USEDEP}]') - dev-python/python-caja[${PYTHON_SINGLE_USEDEP}] - x11-misc/xautomation -" -BDEPEND="" - -S="${WORKDIR}/${MY_PN}-${PV}" - -PATCHES=( - "${FILESDIR}/${P}-py3-support.patch" -) - -src_install() { - insinto /usr/share/caja-python/extensions - doins src/caja-hide.py -} diff --git a/mate-extra/caja-hide/files/caja-hide-0.9.0-py3-support.patch b/mate-extra/caja-hide/files/caja-hide-0.9.0-py3-support.patch deleted file mode 100644 index 1e8e9994456e..000000000000 --- a/mate-extra/caja-hide/files/caja-hide-0.9.0-py3-support.patch +++ /dev/null @@ -1,20 +0,0 @@ -# futurized ---- a/src/caja-hide.py -+++ b/src/caja-hide.py -@@ -1,3 +1,6 @@ -+from __future__ import absolute_import -+from __future__ import division -+from __future__ import unicode_literals - # Caja Hide - Extension for Caja to hide files without renaming them - # Copyright (C) 2015-2016 Caja Hide authors. - # -@@ -14,6 +17,9 @@ - # You should have received a copy of the GNU General Public License - # along with this program. If not, see <http://www.gnu.org/licenses/>. - -+from future import standard_library -+standard_library.install_aliases() -+from builtins import * - import os - from gi.repository import Caja, GObject - from gettext import ngettext, locale, bindtextdomain, textdomain diff --git a/mate-extra/caja-hide/metadata.xml b/mate-extra/caja-hide/metadata.xml deleted file mode 100644 index 680b92d4f199..000000000000 --- a/mate-extra/caja-hide/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>mate@gentoo.org</email> - <name>Gentoo MATE Desktop</name> - </maintainer> - <upstream> - <remote-id type="github">Fred-Barclay/caja-hide</remote-id> - </upstream> -</pkgmetadata> |