summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xfce-extra/thunar-archive-plugin')
-rw-r--r--xfce-extra/thunar-archive-plugin/Manifest3
-rw-r--r--xfce-extra/thunar-archive-plugin/files/0.3.1-add-engrampa-support.patch68
-rw-r--r--xfce-extra/thunar-archive-plugin/files/0.3.1-add-support-symlinks.patch15
-rw-r--r--xfce-extra/thunar-archive-plugin/files/0.3.1-fix-kde-ark.patch22
-rw-r--r--xfce-extra/thunar-archive-plugin/metadata.xml2
-rw-r--r--xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r3.ebuild51
-rw-r--r--xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.4.0.ebuild40
-rw-r--r--xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.5.2.ebuild48
8 files changed, 50 insertions, 199 deletions
diff --git a/xfce-extra/thunar-archive-plugin/Manifest b/xfce-extra/thunar-archive-plugin/Manifest
index 6a7205f7e96a..ccd15d214aee 100644
--- a/xfce-extra/thunar-archive-plugin/Manifest
+++ b/xfce-extra/thunar-archive-plugin/Manifest
@@ -1,2 +1 @@
-DIST thunar-archive-plugin-0.3.1.tar.bz2 329005 BLAKE2B f1cc88acb86565c001734ae2ead50f79cd4e922922292446b3775a7ef5cce250787b202ef6633d453b40bf37f1841d6e1b9ee34350e784587612ea0d4030e6d4 SHA512 51157c2680b3fcc6b541d35fc2943a350a0354d7d5bbb5fbe8a9dcbbeaf4bf4f5fe62521b8e9a73254f70bbefc440357deade8181313da96270c280eb0464e68
-DIST thunar-archive-plugin-0.4.0.tar.bz2 350011 BLAKE2B aebe828396e75701b788dd22266ed154b3a8296b8f6a912fbd99d4ebda1db2ed2a5cbf957a381523194270b5f1ea8ae6af24ca61e35b3953de54b0477bffd6cf SHA512 6590d8765ac6eab14fae7758e4c47c66b52e79e2e4b01a86d25bd35492590925ca35e4bbade8a9d8f0c73386eaeda6863e2a7a39a2df2904404f7e2bfdd91a44
+DIST thunar-archive-plugin-0.5.2.tar.bz2 371599 BLAKE2B a32e0d7c42ad075d2f40d815ca74b86bb0a9a3a2db8c4e2146d3e90b12d7ba4e72b7f75703adcc6aeca702b1124cbe833e80def9891498056c8e0c0483318cab SHA512 f334b960c623bc6c5736ba38d0e965b4e8d4f22fe857a66301c36c255701a702f839d6f63f67b37bc665066d75d787ea8159d4eed7561a2ecd98340bdcb65bc0
diff --git a/xfce-extra/thunar-archive-plugin/files/0.3.1-add-engrampa-support.patch b/xfce-extra/thunar-archive-plugin/files/0.3.1-add-engrampa-support.patch
deleted file mode 100644
index 32d1b31e0c72..000000000000
--- a/xfce-extra/thunar-archive-plugin/files/0.3.1-add-engrampa-support.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-diff --git a/scripts/Makefile.am b/scripts/Makefile.am
-index 4da529c..ec49cba 100644
---- a/scripts/Makefile.am
-+++ b/scripts/Makefile.am
-@@ -3,7 +3,8 @@
- wrapperdir = $(libexecdir)/thunar-archive-plugin
- wrapper_SCRIPTS = \
- ark.tap \
-- file-roller.tap
-+ file-roller.tap \
-+ engrampa.tap
-
- # Install symlink to 'gnome-file-roller.tap'
- install-exec-hook:
-diff --git a/scripts/engrampa.tap b/scripts/engrampa.tap
-index e69de29..a9d9c10 100755
---- a/scripts/engrampa.tap
-+++ b/scripts/engrampa.tap
-@@ -0,0 +1,48 @@
-+#!/bin/sh
-+#
-+# engrampa.tap - Wrapper script to create and extract archive files
-+# in Thunar, via the thunar-archive-plugin, using the
-+# engrampa archive manager.
-+#
-+# $Id$
-+#
-+# Copyright (c) 2006 Benedikt Meurer <benny@xfce.org>.
-+#
-+# This program is free software; you can redistribute it and/or modify it
-+# under the terms of the GNU General Public License as published by the Free
-+# Software Foundation; either version 2 of the License, or (at your option)
-+# any later version.
-+#
-+# This program is distributed in the hope that it will be useful, but WITHOUT
-+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
-+# more details.
-+#
-+# You should have received a copy of the GNU General Public License along with
-+# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-+# Place, Suite 330, Boston, MA 02111-1307 USA.
-+#
-+
-+# determine the action and the folder, $@ then contains only the files
-+action=$1; shift;
-+folder=$1; shift;
-+
-+# check the action
-+case $action in
-+create)
-+ exec engrampa "--default-dir=$folder" --add "$@"
-+ ;;
-+
-+extract-here)
-+ exec engrampa "--extract-to=$folder" --force "$@"
-+ ;;
-+
-+extract-to)
-+ exec engrampa --extract "$@"
-+ ;;
-+
-+*)
-+ echo "Unsupported action '$action'" >&2
-+ exit 1
-+esac
-+
-
diff --git a/xfce-extra/thunar-archive-plugin/files/0.3.1-add-support-symlinks.patch b/xfce-extra/thunar-archive-plugin/files/0.3.1-add-support-symlinks.patch
deleted file mode 100644
index bbe5f566a4c5..000000000000
--- a/xfce-extra/thunar-archive-plugin/files/0.3.1-add-support-symlinks.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -ur thunar-archive-plugin-0.3.1.old/scripts/Makefile.am thunar-archive-plugin-0.3.1/scripts/Makefile.am
---- thunar-archive-plugin-0.3.1.old/scripts/Makefile.am 2013-05-11 13:48:30.000000000 +0400
-+++ thunar-archive-plugin-0.3.1/scripts/Makefile.am 2015-07-05 12:55:32.052090677 +0400
-@@ -9,8 +9,9 @@
- install-exec-hook:
- $(mkinstalldirs) $(DESTDIR)$(wrapperdir)
- -( cd $(DESTDIR)$(wrapperdir) ; \
-- test -f gnome-file-roller.tap \
-- || ln -sf file-roller.tap gnome-file-roller.tap )
-+ ln -sf ark.tap kde4-ark.tap; \
-+ ln -sf file-roller.tap gnome-file-roller.tap; \
-+ ln -sf file-roller.tap org.gnome.FileRoller.tap; )
-
- EXTRA_DIST = \
- $(wrapper_SCRIPTS) \
diff --git a/xfce-extra/thunar-archive-plugin/files/0.3.1-fix-kde-ark.patch b/xfce-extra/thunar-archive-plugin/files/0.3.1-fix-kde-ark.patch
deleted file mode 100644
index e95fbbe0e407..000000000000
--- a/xfce-extra/thunar-archive-plugin/files/0.3.1-fix-kde-ark.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -ur thunar-archive-plugin-0.3.1.old/scripts/ark.tap thunar-archive-plugin-0.3.1/scripts/ark.tap
---- thunar-archive-plugin-0.3.1.old/scripts/ark.tap 2013-05-11 13:48:30.000000000 +0400
-+++ thunar-archive-plugin-0.3.1/scripts/ark.tap 2015-07-05 12:56:25.288680104 +0400
-@@ -30,15 +30,15 @@
- # check the action
- case $action in
- create)
-- exec ark --add "$@"
-+ exec ark --dialog --add "$@"
- ;;
-
- extract-here)
-- exec ark --extract-to "$folder" "$@"
-+ exec ark --batch --destination "$folder" "$@"
- ;;
-
- extract-to)
-- exec ark --extract "$@"
-+ exec ark --batch --dialog --autodestination "$@"
- ;;
-
- *)
diff --git a/xfce-extra/thunar-archive-plugin/metadata.xml b/xfce-extra/thunar-archive-plugin/metadata.xml
index 359901b31db4..2b8ef06e9a39 100644
--- a/xfce-extra/thunar-archive-plugin/metadata.xml
+++ b/xfce-extra/thunar-archive-plugin/metadata.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>xfce@gentoo.org</email>
diff --git a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r3.ebuild b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r3.ebuild
deleted file mode 100644
index 0c51d9dfaad8..000000000000
--- a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools gnome2-utils
-
-DESCRIPTION="Archive plug-in for the Thunar filemanager"
-HOMEPAGE="https://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin"
-SRC_URI="https://archive.xfce.org/src/thunar-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND=">=xfce-base/libxfce4util-4.8:=
- >=xfce-base/exo-0.6:=
- <xfce-base/thunar-1.7:="
-# dev-util/xfce4-dev-tools for eautoreconf
-DEPEND="${RDEPEND}
- dev-util/intltool
- dev-util/xfce4-dev-tools
- sys-devel/gettext
- virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/0.3.1-add-engrampa-support.patch
- "${FILESDIR}"/0.3.1-fix-kde-ark.patch
- "${FILESDIR}"/0.3.1-add-support-symlinks.patch
- )
-DOCS=( AUTHORS ChangeLog NEWS README THANKS )
-
-src_prepare() {
- default
- local AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros
- eautoreconf
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
diff --git a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.4.0.ebuild b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.4.0.ebuild
deleted file mode 100644
index 5c60d97ab84a..000000000000
--- a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.4.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils
-
-DESCRIPTION="Archive plug-in for the Thunar filemanager"
-HOMEPAGE="https://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin"
-SRC_URI="https://archive.xfce.org/src/thunar-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND=">=xfce-base/libxfce4util-4.12:=
- >=xfce-base/exo-0.10:=
- >=xfce-base/thunar-1.7:="
-DEPEND="${RDEPEND}
- dev-util/intltool
- sys-devel/gettext
- virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/0.3.1-fix-kde-ark.patch
-)
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
diff --git a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.5.2.ebuild b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.5.2.ebuild
new file mode 100644
index 000000000000..cdf40515eee4
--- /dev/null
+++ b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.5.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit xdg-utils
+
+DESCRIPTION="Archive plug-in for the Thunar filemanager"
+HOMEPAGE="
+ https://docs.xfce.org/xfce/thunar/archive
+ https://gitlab.xfce.org/thunar-plugins/thunar-archive-plugin/
+"
+SRC_URI="
+ https://archive.xfce.org/src/thunar-plugins/${PN}/${PV%.*}/${P}.tar.bz2
+"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
+
+DEPEND="
+ >=dev-libs/glib-2.50.0
+ >=x11-libs/gtk+-3.22.0:3
+ >=xfce-base/libxfce4util-4.12:=
+ >=xfce-base/exo-0.10:=
+ >=xfce-base/thunar-1.7:=
+"
+RDEPEND="
+ ${DEPEND}
+"
+BDEPEND="
+ dev-util/intltool
+ sys-devel/gettext
+ virtual/pkgconfig
+"
+
+src_install() {
+ default
+ find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+}