From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CEBE5159C96 for ; Tue, 30 Jul 2024 08:50:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19D1E2BC036; Tue, 30 Jul 2024 08:50:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E2E672BC036 for ; Tue, 30 Jul 2024 08:50:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CD0EB342F9A for ; Tue, 30 Jul 2024 08:50:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6620F1E8D for ; Tue, 30 Jul 2024 08:49:59 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1722329284.e8a46373393da95c077f78349653e6e873ecef63.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/nautilus-dropbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/nautilus-dropbox/nautilus-dropbox-2020.03.04.ebuild X-VCS-Directories: gnome-extra/nautilus-dropbox/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: e8a46373393da95c077f78349653e6e873ecef63 X-VCS-Branch: master Date: Tue, 30 Jul 2024 08:49:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8a9170ef-e07a-43ed-835f-4021a99b6501 X-Archives-Hash: ce8bae271093a37ede2cf1665dd57627 commit: e8a46373393da95c077f78349653e6e873ecef63 Author: Pacho Ramos gentoo org> AuthorDate: Tue Jul 30 08:46:23 2024 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Jul 30 08:48:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8a46373 gnome-extra/nautilus-dropbox: drop 2020.03.04 Signed-off-by: Pacho Ramos gentoo.org> .../nautilus-dropbox-2020.03.04.ebuild | 65 ---------------------- 1 file changed, 65 deletions(-) diff --git a/gnome-extra/nautilus-dropbox/nautilus-dropbox-2020.03.04.ebuild b/gnome-extra/nautilus-dropbox/nautilus-dropbox-2020.03.04.ebuild deleted file mode 100644 index 92ad475a3d25..000000000000 --- a/gnome-extra/nautilus-dropbox/nautilus-dropbox-2020.03.04.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) - -inherit autotools python-single-r1 xdg-utils - -DESCRIPTION="Dropbox Nautilus Extension" -HOMEPAGE="https://github.com/dropbox/nautilus-dropbox" -SRC_URI="https://linux.dropboxstatic.com/packages/${P}.tar.bz2" - -LICENSE="GPL-3 CC-BY-ND-3.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND=" - ${PYTHON_DEPS} - $(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]' ) - dev-libs/glib:2 - gnome-base/nautilus - net-misc/dropbox" -DEPEND="${RDEPEND}" -BDEPEND=" - $(python_gen_cond_dep 'dev-python/docutils[${PYTHON_USEDEP}]' ) - virtual/pkgconfig" - -# use system rst2man -PATCHES=( "${FILESDIR}/nautilus-dropbox-2019-system-rst2man.patch" ) - -src_prepare() { - default - - # use system dropbox - sed \ - -e "s|~/[.]dropbox-dist|${EPREFIX}/opt/dropbox|" \ - -e "s|\(DROPBOXD_PATH = \).*|\1\"${EPREFIX}/opt/dropbox/dropboxd\"|" \ - -i dropbox.in || die - AT_NOELIBTOOLIZE=yes eautoreconf -} - -src_configure() { - econf \ - $(use_enable debug) \ - --disable-static -} - -src_install() { - default - - # removes files which conflicts with system dropbox - rm -r "${ED}"/usr/share/applications || die - rm -r "${ED}"/usr/bin || die -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -}