Gentoo Archives: gentoo-commits

From: Adam Feldman <np-hardass@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mate-extra/caja-dropbox/
Date: Wed, 02 Sep 2020 06:02:12
Message-Id: 1599026500.dabc95fef3708ef01bb1989ff8642e1f81726a70.np-hardass@gentoo
1 commit: dabc95fef3708ef01bb1989ff8642e1f81726a70
2 Author: Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
3 AuthorDate: Thu Aug 20 19:36:14 2020 +0000
4 Commit: Adam Feldman <np-hardass <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 2 06:01:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dabc95fe
7
8 mate-extra/caja-dropbox: drop 1.22.1
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
12 Signed-off-by: Adam Feldman <NP-Hardass <AT> gentoo.org>
13
14 mate-extra/caja-dropbox/Manifest | 1 -
15 .../caja-dropbox/caja-dropbox-1.22.1-r1.ebuild | 94 ----------------------
16 2 files changed, 95 deletions(-)
17
18 diff --git a/mate-extra/caja-dropbox/Manifest b/mate-extra/caja-dropbox/Manifest
19 index b4b4745d059..28c6ff9a832 100644
20 --- a/mate-extra/caja-dropbox/Manifest
21 +++ b/mate-extra/caja-dropbox/Manifest
22 @@ -1,2 +1 @@
23 -DIST caja-dropbox-1.22.1.tar.xz 309600 BLAKE2B a54778bae439a52babd4b9c88ed77ef9cebf01cb5e396e9e2dae0e74b1d55bb6b575d301133593b130af86ecb06f35fd2d11c3b7e3d67a7e741798ad701d788d SHA512 e7e9107c7654fac910762727782f35e3039b45e737341937d225126b2f63f8911f99281097b2488d3b79c0ed09fff4270b4c557166b94a722a2b1cd30fea2a2c
24 DIST caja-dropbox-1.24.0.tar.xz 309024 BLAKE2B 2ae560dcd6e744fe96d9e0fcd876a899c22ad06b8238c2ad9e5394cf80aa8844cd634431dc6bb245396e6d919da857645488214880947e5b90413c254cd4c6a2 SHA512 64d699b4c3957d5996ef69936b4b2746641bc2db4efb7b23535febf5eed3ee767330927aeeda67747c0d72e0f052a2979ae2160ffaaf01e4fd82aff68a5f27bf
25
26 diff --git a/mate-extra/caja-dropbox/caja-dropbox-1.22.1-r1.ebuild b/mate-extra/caja-dropbox/caja-dropbox-1.22.1-r1.ebuild
27 deleted file mode 100644
28 index a5d05ac3aee..00000000000
29 --- a/mate-extra/caja-dropbox/caja-dropbox-1.22.1-r1.ebuild
30 +++ /dev/null
31 @@ -1,94 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python3_{6,7} )
38 -MATE_LA_PUNT="yes"
39 -
40 -inherit mate python-single-r1 linux-info user
41 -
42 -if [[ ${PV} != 9999 ]]; then
43 - KEYWORDS="~amd64 ~x86"
44 -fi
45 -
46 -DESCRIPTION="Store, Sync and Share Files Online"
47 -LICENSE="CC-BY-ND-3.0 GPL-3+ public-domain"
48 -SLOT="0"
49 -
50 -IUSE="debug"
51 -REQUIRED_USE=${PYTHON_REQUIRED_USE}
52 -
53 -COMMON_DEPEND="
54 - dev-libs/atk
55 - >=dev-libs/glib-2.50:2
56 - $(python_gen_cond_dep '
57 - dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
58 - ')
59 - >=mate-base/caja-1.19.1
60 - media-libs/fontconfig:1.0
61 - media-libs/freetype:2
62 - x11-libs/cairo
63 - x11-libs/gdk-pixbuf:2
64 - >=x11-libs/gtk+-3.22:3
65 - x11-libs/libXinerama
66 - x11-libs/pango
67 - ${PYTHON_DEPS}"
68 -
69 -RDEPEND="${COMMON_DEPEND}
70 - net-misc/dropbox"
71 -
72 -DEPEND="${COMMON_DEPEND}
73 - dev-python/docutils
74 - virtual/pkgconfig:*"
75 -
76 -CONFIG_CHECK="~INOTIFY_USER"
77 -
78 -pkg_setup() {
79 - python-single-r1_pkg_setup
80 - check_extra_config
81 - enewgroup dropbox
82 -}
83 -
84 -MATE_FORCE_AUTORECONF=true
85 -
86 -src_prepare() {
87 - # Use system dropbox.
88 - sed -e "s|~/[.]dropbox-dist|/opt/dropbox|" \
89 - -e 's|\(DROPBOXD_PATH = \).*|\1"/opt/dropbox/dropboxd"|' \
90 - -i caja-dropbox.in || die
91 -
92 - sed -e 's|\[rst2man\]|\[rst2man\.py\]|' -i configure.ac || die
93 -
94 - mate_src_prepare
95 -}
96 -
97 -src_configure() {
98 - mate_src_configure \
99 - --disable-static \
100 - $(use_enable debug)
101 -}
102 -
103 -src_install() {
104 - python_fix_shebang caja-dropbox.in
105 -
106 - mate_src_install
107 -
108 - local extensiondir="$(pkg-config --variable=extensiondir libcaja-extension)"
109 - [ -z ${extensiondir} ] && die "pkg-config unable to get caja extensions dir"
110 -
111 - # Strip $EPREFIX from $extensiondir as fowners/fperms act on $ED not $D.
112 - extensiondir="${extensiondir#${EPREFIX}}"
113 - use prefix || fowners root:dropbox "${extensiondir}"/libcaja-dropbox.so
114 - fperms o-rwx "${extensiondir}"/libcaja-dropbox.so
115 -}
116 -
117 -pkg_postinst() {
118 - mate_pkg_postinst
119 -
120 - elog
121 - elog "Add any users who wish to have access to the dropbox caja"
122 - elog "plugin to the group 'dropbox'. You need to setup a Dropbox account"
123 - elog "before using this plugin. Visit ${HOMEPAGE} for more information."
124 - elog
125 -}