Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/nautilus-dropbox/
Date: Sat, 02 Jul 2022 17:43:38
Message-Id: 1656779235.f778edd64ae5786cbb00ee696a7676ec844fa5a3.soap@gentoo
1 commit: f778edd64ae5786cbb00ee696a7676ec844fa5a3
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 16:27:15 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 16:27:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f778edd6
7
8 gnome-extra/nautilus-dropbox: drop 2019.02.14
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 gnome-extra/nautilus-dropbox/Manifest | 1 -
13 .../nautilus-dropbox-2019.02.14.ebuild | 67 ----------------------
14 2 files changed, 68 deletions(-)
15
16 diff --git a/gnome-extra/nautilus-dropbox/Manifest b/gnome-extra/nautilus-dropbox/Manifest
17 index f814e00c41ac..5586bc135884 100644
18 --- a/gnome-extra/nautilus-dropbox/Manifest
19 +++ b/gnome-extra/nautilus-dropbox/Manifest
20 @@ -1,2 +1 @@
21 -DIST nautilus-dropbox-2019.02.14.tar.bz2 381416 BLAKE2B 0765196974d88caa477d962311efe05941cd2d25e35fa028720c8abed5120fea5abede74f39e00cb2ac9eb08d6d4bbdf1d1fe6db8d604c1803570209e654d55a SHA512 c5758d97fa40af1b27388c23289e5d1d98ef1c6db04ed7fb5cfee387723f72c34f3583fb6e0158a39f30d5ff649cb2de6d92fc4ad6e976e301dc239bda9d554b
22 DIST nautilus-dropbox-2020.03.04.tar.bz2 387351 BLAKE2B ff25716ef10759e014cffec8a7e9b1a40931686d6de3c69e9060c77cbf3aee65ffeed91ba809ba8cffc372f284180c74a8cb5b0ca4b342aa137d9e574a2a1abf SHA512 8f26165a48d1767b3bccb34f95f19357e8fd209f383270ac2d40f773df139d640c3fb33db28cf1fa7e2d7063a7a37b15ed7f4f22f85019e05885c097cea39a48
23
24 diff --git a/gnome-extra/nautilus-dropbox/nautilus-dropbox-2019.02.14.ebuild b/gnome-extra/nautilus-dropbox/nautilus-dropbox-2019.02.14.ebuild
25 deleted file mode 100644
26 index bd8415d16fba..000000000000
27 --- a/gnome-extra/nautilus-dropbox/nautilus-dropbox-2019.02.14.ebuild
28 +++ /dev/null
29 @@ -1,67 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python3_8 )
36 -
37 -inherit autotools python-single-r1 xdg-utils
38 -
39 -DESCRIPTION="Dropbox Nautilus Extension"
40 -HOMEPAGE="https://github.com/dropbox/nautilus-dropbox"
41 -SRC_URI="https://linux.dropboxstatic.com/packages/${P}.tar.bz2"
42 -
43 -LICENSE="GPL-3 CC-BY-ND-3.0"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="debug"
47 -
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -
50 -RDEPEND="${PYTHON_DEPS}
51 - gnome-base/nautilus
52 - net-misc/dropbox
53 - >=dev-libs/glib-2.14
54 - $(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]' )"
55 -
56 -DEPEND="${RDEPEND}"
57 -
58 -BDEPEND="
59 - dev-python/docutils
60 - virtual/pkgconfig"
61 -
62 -# use system rst2man
63 -PATCHES=( "${FILESDIR}/nautilus-dropbox-2019-system-rst2man.patch" )
64 -
65 -src_prepare() {
66 - default
67 -
68 - # use system dropbox
69 - sed \
70 - -e "s|~/[.]dropbox-dist|${EPREFIX}/opt/dropbox|" \
71 - -e "s|\(DROPBOXD_PATH = \).*|\1\"${EPREFIX}/opt/dropbox/dropboxd\"|" \
72 - -i dropbox.in || die
73 - AT_NOELIBTOOLIZE=yes eautoreconf
74 -}
75 -
76 -src_configure() {
77 - econf \
78 - $(use_enable debug) \
79 - --disable-static
80 -}
81 -
82 -src_install() {
83 - default
84 -
85 - # removes files which conflicts with system dropbox
86 - rm -r "${D}/usr/share/applications" || die
87 - rm -r "${D}/usr/bin" || die
88 -}
89 -
90 -pkg_postinst() {
91 - xdg_icon_cache_update;
92 -}
93 -
94 -pkg_postrm() {
95 - xdg_icon_cache_update;
96 -}