[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2023-11-12 Thread Andreas Sturmlechner
commit: 0cfd0cfa1bc41defb24548f6e32db7cf9930324b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 11 22:27:14 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov 12 17:35:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cfd0cfa

app-backup/spideroak-bin: drop 7.5.0-r2

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../spideroak-bin/spideroak-bin-7.5.0-r2.ebuild| 108 -
 1 file changed, 108 deletions(-)

diff --git a/app-backup/spideroak-bin/spideroak-bin-7.5.0-r2.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.5.0-r2.ebuild
deleted file mode 100644
index 897265b79cc9..
--- a/app-backup/spideroak-bin/spideroak-bin-7.5.0-r2.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit desktop unpacker
-
-DESCRIPTION="Secure free online backup, storage, and sharing system"
-HOMEPAGE="https://spideroak.com";
-
-SRC_URI_BASE="https://spideroak.com/release/spideroak";
-SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
-   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
-
-RESTRICT="mirror strip"
-
-LICENSE="spideroak"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="dbus X"
-
-DEPEND="dev-util/patchelf"
-RDEPEND="
-   app-crypt/mit-krb5[keyutils]
-   media-libs/libpng-compat:1.2
-   dbus? ( sys-apps/dbus )
-   X? (
-   media-libs/fontconfig
-   media-libs/freetype:2
-   dev-libs/glib:2
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXmu
-   x11-libs/libXrender
-   x11-libs/libXt
-   )
-"
-
-S=${WORKDIR}
-
-QA_PREBUILT="*"
-
-src_prepare() {
-   # Set RPATH for preserve-libs handling (bug #400979).
-   cd "${S}/opt/SpiderOakONE/lib" || die
-   local x
-   for x in $(find) ; do
-   # Use \x7fELF header to separate ELF executables and libraries
-   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
-   patchelf --set-rpath '$ORIGIN' "${x}" || \
-   die "patchelf failed on ${x}"
-   done
-
-   # Remove the libraries that break compatibility in modern systems
-   # SpiderOak will use the system libs instead
-   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6" || die
-   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1" || die
-   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0" || die
-   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1" || die
-
-   eapply_user
-}
-
-src_install() {
-   # Install the wrapper script
-   exeinto /usr/bin
-   doexe usr/bin/SpiderOakONE
-
-   # inotify_dir_watcher needs to be marked executable, bug #453266
-   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
-
-   # Install the executable
-   exeinto /opt/SpiderOakONE/lib
-   doexe opt/SpiderOakONE/lib/SpiderOakONE
-   doexe opt/SpiderOakONE/lib/inotify_dir_watcher
-   rm -f opt/SpiderOakONE/lib/{SpiderOakONE,inotify_dir_watcher} || die
-
-   # Install the prebundled libraries
-   insinto /opt/SpiderOakONE
-   doins -r opt/SpiderOakONE/lib
-
-   # Install the config files
-   if ! use dbus; then
-   rm -rf etc/dbus-1 || die
-   fi
-
-   insinto /
-   doins -r etc
-
-   # Install the manpage
-   gzip -d usr/share/man/man1/SpiderOakONE.1.gz || die
-   doman usr/share/man/man1/SpiderOakONE.1
-
-   if use X; then
-   domenu usr/share/applications/SpiderOakONE.desktop
-   doicon usr/share/pixmaps/SpiderOakONE.png
-   fi
-}
-
-pkg_postinst() {
-   if ! use X; then
-   einfo "For instructions on running SpiderOakONE without a GUI, 
please read the FAQ:"
-   einfo "  
https://spideroak.com/faq/questions/62/how_do_i_install_spideroak_on_a_headless_linux_server/";
-   einfo "  
https://spideroak.com/faq/questions/67/how_can_i_use_spideroak_from_the_commandline/";
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2023-10-09 Thread Sam James
commit: 4b483450be84a50dcb505cba77ff9ebef0a4e173
Author: Leonardo Hernández Hernández  proton  me>
AuthorDate: Sun Oct  1 23:09:50 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Oct 10 03:03:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b483450

app-backup/spideroak-bin: drop IUSE=dbus

It is only there to determine if remove or not a dbus file and the
file(s?) doesn't even exist, it was not spotted before because it uses
`rm -f`

Signed-off-by: Leonardo Hernández Hernández  proton.me>
Signed-off-by: Sam James  gentoo.org>

 app-backup/spideroak-bin/spideroak-bin-7.5.0-r3.ebuild | 8 +---
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/app-backup/spideroak-bin/spideroak-bin-7.5.0-r3.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.5.0-r3.ebuild
index 294133dc1899..d5e18a928843 100644
--- a/app-backup/spideroak-bin/spideroak-bin-7.5.0-r3.ebuild
+++ b/app-backup/spideroak-bin/spideroak-bin-7.5.0-r3.ebuild
@@ -20,13 +20,12 @@ RESTRICT="mirror strip"
 LICENSE="spideroak"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="dbus X"
+IUSE="X"
 
 BDEPEND="dev-util/patchelf"
 RDEPEND="
app-crypt/mit-krb5[keyutils]
media-libs/libpng-compat:1.2
-   dbus? ( sys-apps/dbus )
X? (
media-libs/fontconfig
media-libs/freetype:2
@@ -84,11 +83,6 @@ src_install() {
insinto /opt/SpiderOakONE
doins -r opt/SpiderOakONE/lib
 
-   # Install the config files
-   if ! use dbus; then
-   rm -rf etc/dbus-1 || die
-   fi
-
insinto /
doins -r etc
 



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2023-10-09 Thread Sam James
commit: 946e67651bcc4ab04eb0fbdcf92f2750f95c8c86
Author: Leonardo Hernández Hernández  proton  me>
AuthorDate: Sun Oct  1 22:30:23 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Oct 10 03:03:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946e6765

app-backup/spideroak-bin: update EAPI 6 -> 8

Signed-off-by: Leonardo Hernández Hernández  proton.me>
Signed-off-by: Sam James  gentoo.org>

 .../spideroak-bin/spideroak-bin-7.5.0-r3.ebuild| 111 +
 1 file changed, 111 insertions(+)

diff --git a/app-backup/spideroak-bin/spideroak-bin-7.5.0-r3.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.5.0-r3.ebuild
new file mode 100644
index ..294133dc1899
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-7.5.0-r3.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop prefix unpacker
+
+DESCRIPTION="Secure free online backup, storage, and sharing system"
+HOMEPAGE="https://spideroak.com";
+
+SRC_URI_BASE="https://spideroak.com/release/spideroak";
+SRC_URI="
+   x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )
+"
+S="${WORKDIR}"
+
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+BDEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   media-libs/libpng-compat:1.2
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in $(find) ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+
+   # Remove the libraries that break compatibility in modern systems
+   # SpiderOak will use the system libs instead
+   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6" || die
+   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1" || die
+   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0" || die
+   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1" || die
+
+   eapply_user
+}
+
+src_install() {
+   hprefixify usr/bin/SpiderOakONE
+
+   # Install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   # Install the executable
+   exeinto /opt/SpiderOakONE/lib
+   doexe opt/SpiderOakONE/lib/SpiderOakONE
+   doexe opt/SpiderOakONE/lib/inotify_dir_watcher
+   rm -f opt/SpiderOakONE/lib/{SpiderOakONE,inotify_dir_watcher} || die
+
+   # Install the prebundled libraries
+   insinto /opt/SpiderOakONE
+   doins -r opt/SpiderOakONE/lib
+
+   # Install the config files
+   if ! use dbus; then
+   rm -rf etc/dbus-1 || die
+   fi
+
+   insinto /
+   doins -r etc
+
+   # Install the manpage
+   gzip -d usr/share/man/man1/SpiderOakONE.1.gz || die
+   doman usr/share/man/man1/SpiderOakONE.1
+
+   if use X; then
+   domenu usr/share/applications/SpiderOakONE.desktop
+   doicon usr/share/pixmaps/SpiderOakONE.png
+   fi
+}
+
+pkg_postinst() {
+   if ! use X; then
+   einfo "For instructions on running SpiderOakONE without a GUI, 
please read the FAQ:"
+   einfo "  
https://spideroak.com/faq/questions/62/how_do_i_install_spideroak_on_a_headless_linux_server/";
+   einfo "  
https://spideroak.com/faq/questions/67/how_can_i_use_spideroak_from_the_commandline/";
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2023-01-28 Thread Michał Górny
commit: 3d66e2c7e095fdde08737ee6cc6769f69a080ed9
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan 28 20:23:13 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 28 20:24:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d66e2c7

app-backup/spideroak-bin: Remove sole proxied maint.

Signed-off-by: Michał Górny  gentoo.org>

 app-backup/spideroak-bin/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app-backup/spideroak-bin/metadata.xml 
b/app-backup/spideroak-bin/metadata.xml
index 241786761ce2..115e9d64a669 100644
--- a/app-backup/spideroak-bin/metadata.xml
+++ b/app-backup/spideroak-bin/metadata.xml
@@ -1,8 +1,5 @@
 
 https://www.gentoo.org/dtd/metadata.dtd";>
 
-
-   lucianpos...@pm.me
-   Lucian Poston
-
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2022-10-17 Thread Sam James
commit: 24f634af1e49079329323360e4673b6c090f06f0
Author: Sam James  gentoo  org>
AuthorDate: Tue Oct 18 03:25:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Oct 18 03:27:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24f634af

app-backup/spideroak-bin: don't call doman on compressed file

Closes: https://bugs.gentoo.org/619920
Signed-off-by: Sam James  gentoo.org>

 .../{spideroak-bin-7.5.0-r1.ebuild => spideroak-bin-7.5.0-r2.ebuild} | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-backup/spideroak-bin/spideroak-bin-7.5.0-r1.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.5.0-r2.ebuild
similarity index 95%
rename from app-backup/spideroak-bin/spideroak-bin-7.5.0-r1.ebuild
rename to app-backup/spideroak-bin/spideroak-bin-7.5.0-r2.ebuild
index 9b91aa577c3c..897265b79cc9 100644
--- a/app-backup/spideroak-bin/spideroak-bin-7.5.0-r1.ebuild
+++ b/app-backup/spideroak-bin/spideroak-bin-7.5.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -90,7 +90,8 @@ src_install() {
doins -r etc
 
# Install the manpage
-   doman usr/share/man/man1/SpiderOakONE.1.gz
+   gzip -d usr/share/man/man1/SpiderOakONE.1.gz || die
+   doman usr/share/man/man1/SpiderOakONE.1
 
if use X; then
domenu usr/share/applications/SpiderOakONE.desktop



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2019-11-07 Thread Michał Górny
commit: e5ea97b55ffafc9a497fef2396b8285cb4732b09
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov  5 19:25:29 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov  8 06:48:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5ea97b5

app-backup/spideroak-bin: Switch to libpng-compat

Signed-off-by: Michał Górny  gentoo.org>

 .../{spideroak-bin-7.5.0.ebuild => spideroak-bin-7.5.0-r1.ebuild}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/spideroak-bin/spideroak-bin-7.5.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.5.0-r1.ebuild
similarity index 98%
rename from app-backup/spideroak-bin/spideroak-bin-7.5.0.ebuild
rename to app-backup/spideroak-bin/spideroak-bin-7.5.0-r1.ebuild
index e078ec2edc6..bd12c7b9d6f 100644
--- a/app-backup/spideroak-bin/spideroak-bin-7.5.0.ebuild
+++ b/app-backup/spideroak-bin/spideroak-bin-7.5.0-r1.ebuild
@@ -22,7 +22,7 @@ IUSE="dbus X"
 DEPEND="dev-util/patchelf"
 RDEPEND="
app-crypt/mit-krb5[keyutils]
-   media-libs/libpng:1.2
+   media-libs/libpng-compat:1.2
dbus? ( sys-apps/dbus )
X? (
media-libs/fontconfig



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2019-03-22 Thread Anthony G. Basile
commit: 4584e1953f6d31eb9e87db59d3c2c96565dc8fd9
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Mar 22 22:30:33 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Mar 22 22:30:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4584e195

app-backup/spideroak-bin: remove older versions

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-backup/spideroak-bin/Manifest  |   4 -
 .../spideroak-bin/spideroak-bin-7.2.0.ebuild   | 104 -
 .../spideroak-bin/spideroak-bin-7.3.0.ebuild   | 104 -
 3 files changed, 212 deletions(-)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index d904ef77309..1224850bbcd 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,6 +1,2 @@
-DIST spideroak-bin-7.2.0_amd64.deb 24854982 BLAKE2B 
9eab89f2c7713f9edbf97da986744c605113830efa971b5327794aa05640ab6386d76d4473cd3a5f6373611bdf7f2ee5ec8eb59d1b9914de48a7b2f724ce4c4e
 SHA512 
9edaf0a7e6e6e985dd7ae1e969c43373393ea6293b8895d74be48f364513a992865ca5cb3150e5fce23eb49635a3442f5162a2606d8fac1ab1036ed922c214cb
-DIST spideroak-bin-7.2.0_x86.deb 24773806 BLAKE2B 
4c4c778f50efa8b77c6d0b2ff522ce3ccacc9c0b6fba5b9acb8e6ea25816b303b34751e47f3e27f6b014c03e02473d22b1eba280618cdd9b6c639b82f2425d70
 SHA512 
758bdaefe307c4c7b7eebc47ebbb835e66c0a57350e34a2cd818212de1d800ae432459933d9613af60b877889724fe90726dd6705fa152b2478bd2e541ba
-DIST spideroak-bin-7.3.0_amd64.deb 18514400 BLAKE2B 
3c0d617c4b791cc0e5a9c82111c9486c18ab09d2bfc4102d69b266f6e3d4185a9d74d640ddd3733a86dac1f87f3360968636407ee4f3da6c2bd20779c16e6ddb
 SHA512 
f27cfac3f9055281fece38ba68781287cd886c7c40b998e63cfc1aba0a036b375a06b9cc60390b7e4845ef9c4eae2d94914669dd345ba8de90424ff98ec28d58
-DIST spideroak-bin-7.3.0_x86.deb 24779422 BLAKE2B 
8cdae243794e5de6a8326e335b539d004c0ba0f1121b85067acbbef67f4a0c785f3b794abb62a5eedfd459c8e4d5e48cf8848b005ba637150b286b13db22
 SHA512 
32504b6e6931f1e923d4202f0b3201c93190128d30767ec41ac11cf7c8c751b87094bdedcf44dda3ae8089543418366c5a78093b9236fee5f95e7f89a29141fc
 DIST spideroak-bin-7.5.0_amd64.deb 20758038 BLAKE2B 
ecd549ee0d479f576e8d50b44f4f7a13c4d24445af32f460d34081e5b654586f314399b34cff1c937e157582a143fee6b98641a6862bb6d3609e532ceba4
 SHA512 
4af9f6b57d8748c03bccb0ab843cf27f70eac8e8cc5f11bb494c597d5fd29f475bf9c68bce8971d3cc1550a6def7bac6beed78fdfb31961b09be61ee14116ddd
 DIST spideroak-bin-7.5.0_x86.deb 24779422 BLAKE2B 
8cdae243794e5de6a8326e335b539d004c0ba0f1121b85067acbbef67f4a0c785f3b794abb62a5eedfd459c8e4d5e48cf8848b005ba637150b286b13db22
 SHA512 
32504b6e6931f1e923d4202f0b3201c93190128d30767ec41ac11cf7c8c751b87094bdedcf44dda3ae8089543418366c5a78093b9236fee5f95e7f89a29141fc

diff --git a/app-backup/spideroak-bin/spideroak-bin-7.2.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.2.0.ebuild
deleted file mode 100644
index b50355c676a..000
--- a/app-backup/spideroak-bin/spideroak-bin-7.2.0.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eutils unpacker
-
-DESCRIPTION="Secure free online backup, storage, and sharing system"
-HOMEPAGE="https://spideroak.com";
-
-SRC_URI_BASE="https://spideroak.com/release/spideroak";
-SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
-   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
-
-RESTRICT="mirror strip"
-
-LICENSE="spideroak"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="dbus X"
-
-DEPEND="dev-util/patchelf"
-RDEPEND="
-   app-crypt/mit-krb5[keyutils]
-   media-libs/libpng:1.2
-   dbus? ( sys-apps/dbus )
-   X? (
-   media-libs/fontconfig
-   media-libs/freetype:2
-   dev-libs/glib:2
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXmu
-   x11-libs/libXrender
-   x11-libs/libXt
-   )
-"
-
-S=${WORKDIR}
-
-QA_PREBUILT="*"
-
-src_prepare() {
-   # Set RPATH for preserve-libs handling (bug #400979).
-   cd "${S}/opt/SpiderOakONE/lib" || die
-   local x
-   for x in `find` ; do
-   # Use \x7fELF header to separate ELF executables and libraries
-   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
-   patchelf --set-rpath '$ORIGIN' "${x}" || \
-   die "patchelf failed on ${x}"
-   done
-
-   #Remove the libraries that break compatibility in modern systems
-   #SpiderOak will use the system libs instead
-   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
-   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
-   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
-   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
-
- 

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2019-03-22 Thread Anthony G. Basile
commit: 2d3c8465ed3d5da3b7189caa7dabb0737e97e25e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Mar 22 22:29:59 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Mar 22 22:29:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d3c8465

app-backup/spideroak-bin: version bump to 7.5.0

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-backup/spideroak-bin/Manifest  |   2 +
 .../spideroak-bin/spideroak-bin-7.5.0.ebuild   | 104 +
 2 files changed, 106 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index b0c687534dc..d904ef77309 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -2,3 +2,5 @@ DIST spideroak-bin-7.2.0_amd64.deb 24854982 BLAKE2B 
9eab89f2c7713f9edbf97da98674
 DIST spideroak-bin-7.2.0_x86.deb 24773806 BLAKE2B 
4c4c778f50efa8b77c6d0b2ff522ce3ccacc9c0b6fba5b9acb8e6ea25816b303b34751e47f3e27f6b014c03e02473d22b1eba280618cdd9b6c639b82f2425d70
 SHA512 
758bdaefe307c4c7b7eebc47ebbb835e66c0a57350e34a2cd818212de1d800ae432459933d9613af60b877889724fe90726dd6705fa152b2478bd2e541ba
 DIST spideroak-bin-7.3.0_amd64.deb 18514400 BLAKE2B 
3c0d617c4b791cc0e5a9c82111c9486c18ab09d2bfc4102d69b266f6e3d4185a9d74d640ddd3733a86dac1f87f3360968636407ee4f3da6c2bd20779c16e6ddb
 SHA512 
f27cfac3f9055281fece38ba68781287cd886c7c40b998e63cfc1aba0a036b375a06b9cc60390b7e4845ef9c4eae2d94914669dd345ba8de90424ff98ec28d58
 DIST spideroak-bin-7.3.0_x86.deb 24779422 BLAKE2B 
8cdae243794e5de6a8326e335b539d004c0ba0f1121b85067acbbef67f4a0c785f3b794abb62a5eedfd459c8e4d5e48cf8848b005ba637150b286b13db22
 SHA512 
32504b6e6931f1e923d4202f0b3201c93190128d30767ec41ac11cf7c8c751b87094bdedcf44dda3ae8089543418366c5a78093b9236fee5f95e7f89a29141fc
+DIST spideroak-bin-7.5.0_amd64.deb 20758038 BLAKE2B 
ecd549ee0d479f576e8d50b44f4f7a13c4d24445af32f460d34081e5b654586f314399b34cff1c937e157582a143fee6b98641a6862bb6d3609e532ceba4
 SHA512 
4af9f6b57d8748c03bccb0ab843cf27f70eac8e8cc5f11bb494c597d5fd29f475bf9c68bce8971d3cc1550a6def7bac6beed78fdfb31961b09be61ee14116ddd
+DIST spideroak-bin-7.5.0_x86.deb 24779422 BLAKE2B 
8cdae243794e5de6a8326e335b539d004c0ba0f1121b85067acbbef67f4a0c785f3b794abb62a5eedfd459c8e4d5e48cf8848b005ba637150b286b13db22
 SHA512 
32504b6e6931f1e923d4202f0b3201c93190128d30767ec41ac11cf7c8c751b87094bdedcf44dda3ae8089543418366c5a78093b9236fee5f95e7f89a29141fc

diff --git a/app-backup/spideroak-bin/spideroak-bin-7.5.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.5.0.ebuild
new file mode 100644
index 000..e078ec2edc6
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-7.5.0.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eutils unpacker
+
+DESCRIPTION="Secure free online backup, storage, and sharing system"
+HOMEPAGE="https://spideroak.com";
+
+SRC_URI_BASE="https://spideroak.com/release/spideroak";
+SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
+
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   media-libs/libpng:1.2
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+
+   #Remove the libraries that break compatibility in modern systems
+   #SpiderOak will use the system libs instead
+   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
+   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
+   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
+   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
+
+   eapply_user
+}
+
+src_install() {
+   #install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   #install the executable
+   exeinto /opt/Sp

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2018-10-27 Thread Anthony G. Basile
commit: 5f907248fb4d413836859510ab5bb57d33ded622
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Oct 28 02:01:05 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Oct 28 02:01:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f907248

app-backup/spideroak-bin: version bump to 7.3.0, bug #669824

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 app-backup/spideroak-bin/Manifest  |   2 +
 .../spideroak-bin/spideroak-bin-7.3.0.ebuild   | 104 +
 2 files changed, 106 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index 9a1b19491b2..b0c687534dc 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,2 +1,4 @@
 DIST spideroak-bin-7.2.0_amd64.deb 24854982 BLAKE2B 
9eab89f2c7713f9edbf97da986744c605113830efa971b5327794aa05640ab6386d76d4473cd3a5f6373611bdf7f2ee5ec8eb59d1b9914de48a7b2f724ce4c4e
 SHA512 
9edaf0a7e6e6e985dd7ae1e969c43373393ea6293b8895d74be48f364513a992865ca5cb3150e5fce23eb49635a3442f5162a2606d8fac1ab1036ed922c214cb
 DIST spideroak-bin-7.2.0_x86.deb 24773806 BLAKE2B 
4c4c778f50efa8b77c6d0b2ff522ce3ccacc9c0b6fba5b9acb8e6ea25816b303b34751e47f3e27f6b014c03e02473d22b1eba280618cdd9b6c639b82f2425d70
 SHA512 
758bdaefe307c4c7b7eebc47ebbb835e66c0a57350e34a2cd818212de1d800ae432459933d9613af60b877889724fe90726dd6705fa152b2478bd2e541ba
+DIST spideroak-bin-7.3.0_amd64.deb 18514400 BLAKE2B 
3c0d617c4b791cc0e5a9c82111c9486c18ab09d2bfc4102d69b266f6e3d4185a9d74d640ddd3733a86dac1f87f3360968636407ee4f3da6c2bd20779c16e6ddb
 SHA512 
f27cfac3f9055281fece38ba68781287cd886c7c40b998e63cfc1aba0a036b375a06b9cc60390b7e4845ef9c4eae2d94914669dd345ba8de90424ff98ec28d58
+DIST spideroak-bin-7.3.0_x86.deb 24779422 BLAKE2B 
8cdae243794e5de6a8326e335b539d004c0ba0f1121b85067acbbef67f4a0c785f3b794abb62a5eedfd459c8e4d5e48cf8848b005ba637150b286b13db22
 SHA512 
32504b6e6931f1e923d4202f0b3201c93190128d30767ec41ac11cf7c8c751b87094bdedcf44dda3ae8089543418366c5a78093b9236fee5f95e7f89a29141fc

diff --git a/app-backup/spideroak-bin/spideroak-bin-7.3.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.3.0.ebuild
new file mode 100644
index 000..8dd6ec9d73f
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-7.3.0.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eutils unpacker
+
+DESCRIPTION="Secure free online backup, storage, and sharing system"
+HOMEPAGE="https://spideroak.com";
+
+SRC_URI_BASE="https://spideroak.com/release/spideroak";
+SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
+
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   media-libs/libpng:1.2
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+
+   #Remove the libraries that break compatibility in modern systems
+   #SpiderOak will use the system libs instead
+   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
+   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
+   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
+   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
+
+   eapply_user
+}
+
+src_install() {
+   #install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   #install the executable
+   exeinto /opt/SpiderOakONE/lib
+   doexe opt/SpiderOakONE/lib/SpiderOakONE
+   doexe opt/SpiderOakONE/lib/inotify_dir_watcher
+   rm -f opt/SpiderOakONE/lib/{SpiderOakONE,inotify_dir_watcher}
+
+   #install the prebundled libraries
+   insinto /opt/SpiderOakONE
+   doins -r opt/SpiderOakONE/lib
+
+   #install the config files
+   use dbus || rm -rf etc/dbus-1
+   in

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2018-06-25 Thread Anthony G. Basile
commit: 1d96dceb7e4545a5edd12c585cc759a44081d595
Author: Lucian Poston  pm  me>
AuthorDate: Wed Jun 13 02:09:02 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jun 25 23:25:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d96dceb

app-backup/spideroak-bin: Downgrade to 7.2.0

Bug: https://bugs.gentoo.org/637956

Making the package - when it isn't actually a live ebuild only
hides the bug from devs. It still affects users trying to emerge the
package because the distfile is still verified against the manifest.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-backup/spideroak-bin/Manifest | 4 ++--
 app-backup/spideroak-bin/metadata.xml | 4 
 .../{spideroak-bin-.ebuild => spideroak-bin-7.2.0.ebuild} | 0
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index a3f2b5c7905..9a1b19491b2 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,2 +1,2 @@
-DIST spideroak-bin-_amd64.deb 25101218 BLAKE2B 
5e3d7cc1d5af05a39564b7ae957a29d386b78ce904c5974c83622cd9d7918737efee7f02a817fbca4e3e712c895372a6f9a875e5b82c8e43ad84c70796f9c1cf
 SHA512 
a8b3fb1a264ee51dd4f0425f6ea8d6027ee2e548a185959247adde4f6d17878819548e39e9bd5068a81b23e58c35d9a5279840d4a6a8d3d0849f8df70aa8a4eb
-DIST spideroak-bin-_x86.deb 24626532 BLAKE2B 
89f059a05d9dfcaf4a305f22aa1fd719190c9b022abd25c22d7b29476d46c7a0265a8f3bd60fa9c10c55f468bc23264b77f95f22a6deb5ba52f32cf25dd52155
 SHA512 
edce99824c5c6b3da62d9b46c5c52e2027bef3088345b9e2b74b4c2ba21ea4adb0e7956ca6e05646bb8ff335c5dbe743929cf77ce80dade44c2cf36c06718761
+DIST spideroak-bin-7.2.0_amd64.deb 24854982 BLAKE2B 
9eab89f2c7713f9edbf97da986744c605113830efa971b5327794aa05640ab6386d76d4473cd3a5f6373611bdf7f2ee5ec8eb59d1b9914de48a7b2f724ce4c4e
 SHA512 
9edaf0a7e6e6e985dd7ae1e969c43373393ea6293b8895d74be48f364513a992865ca5cb3150e5fce23eb49635a3442f5162a2606d8fac1ab1036ed922c214cb
+DIST spideroak-bin-7.2.0_x86.deb 24773806 BLAKE2B 
4c4c778f50efa8b77c6d0b2ff522ce3ccacc9c0b6fba5b9acb8e6ea25816b303b34751e47f3e27f6b014c03e02473d22b1eba280618cdd9b6c639b82f2425d70
 SHA512 
758bdaefe307c4c7b7eebc47ebbb835e66c0a57350e34a2cd818212de1d800ae432459933d9613af60b877889724fe90726dd6705fa152b2478bd2e541ba

diff --git a/app-backup/spideroak-bin/metadata.xml 
b/app-backup/spideroak-bin/metadata.xml
index d728f56aa6a..bdf371a8df2 100644
--- a/app-backup/spideroak-bin/metadata.xml
+++ b/app-backup/spideroak-bin/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
+
+   lucianpos...@pm.me
+   Lucian Poston
+
 
bluen...@gentoo.org
Anthony G. Basile

diff --git a/app-backup/spideroak-bin/spideroak-bin-.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.2.0.ebuild
similarity index 100%
rename from app-backup/spideroak-bin/spideroak-bin-.ebuild
rename to app-backup/spideroak-bin/spideroak-bin-7.2.0.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2018-02-09 Thread Anthony G. Basile
commit: a4c0eebc0e142b30805a44f06ba0032ed460cb35
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Feb  9 13:38:48 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Feb  9 13:39:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4c0eebc

app-backup/spideroak-bin: drop to only - ebuild, bug #637956

Upstream keeps chaning the upstream .deb file.  This is very annoying.
Until we can figure out a better way of dealing with this, we'll only
make a - version available.  Users should be aware that each time
they emerge, they can get a different upstream version installed.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-backup/spideroak-bin/Manifest  |   8 +-
 .../spideroak-bin/spideroak-bin-6.3.0-r1.ebuild| 104 -
 .../spideroak-bin/spideroak-bin-6.4.0.ebuild   | 104 -
 ...-bin-7.0.0.ebuild => spideroak-bin-.ebuild} |   0
 4 files changed, 2 insertions(+), 214 deletions(-)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index 7df48336e8e..a3f2b5c7905 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,6 +1,2 @@
-DIST spideroak-bin-6.3.0_amd64.deb 26882606 BLAKE2B 
0113ddf19be6aaaf78bde3574e7832af53d774eec6783b91cf72e74babe4b159ce9a61365d92358f8b5afb063d05e86ee75ea6bfc9fac0e34b195d42890e7b3f
 SHA512 
23283574955833199cc86be9eec3781c190da8a0885c31b20bfb7f73976c8e3663c76571ddf5f2c9e9d2377d71121f605ce7698788704b482dbce8290e77a7e2
-DIST spideroak-bin-6.3.0_x86.deb 26402134 BLAKE2B 
2c515b4601400e0a0dbce5c92f96294643f60590703c5101b207adb5021567f91325a06c08d3b11fc248d5493f76d5f1398417db303acd9cb4f875b3c4accfd1
 SHA512 
3945d671f0dff0e193bf0cd951d2380f50f28921ab3166d26cebf2564caef03e46967c0032b2da02b012ab4c71332af869d117e0ac7c5dfde99dc1e9d9399d5e
-DIST spideroak-bin-6.4.0_amd64.deb 26882606 BLAKE2B 
0113ddf19be6aaaf78bde3574e7832af53d774eec6783b91cf72e74babe4b159ce9a61365d92358f8b5afb063d05e86ee75ea6bfc9fac0e34b195d42890e7b3f
 SHA512 
23283574955833199cc86be9eec3781c190da8a0885c31b20bfb7f73976c8e3663c76571ddf5f2c9e9d2377d71121f605ce7698788704b482dbce8290e77a7e2
-DIST spideroak-bin-6.4.0_x86.deb 26402134 BLAKE2B 
2c515b4601400e0a0dbce5c92f96294643f60590703c5101b207adb5021567f91325a06c08d3b11fc248d5493f76d5f1398417db303acd9cb4f875b3c4accfd1
 SHA512 
3945d671f0dff0e193bf0cd951d2380f50f28921ab3166d26cebf2564caef03e46967c0032b2da02b012ab4c71332af869d117e0ac7c5dfde99dc1e9d9399d5e
-DIST spideroak-bin-7.0.0_amd64.deb 25663732 BLAKE2B 
fd91517a6722e1648c08e2885a2659df976db86912f68e024858865a8a319759e5399a107925880b51c293251f55be45360f6f0235c357b6a74b4b50e55daf2d
 SHA512 
a7bc9bb3b7dbaeef43146c2e0f6d0fe690e3710a28d0b2f753f701675dada2fbb449bf95d0cae289ea4b03aae8f39b916efbb2da531d7cdab5d6df85b481609f
-DIST spideroak-bin-7.0.0_x86.deb 25174384 BLAKE2B 
85642257033706b6253af6c890493cfe2be652bf062a882a9a4546089df20f1f5a0618ee7bd573c68a8fd0da39f1f06effbe667656e23db3148151d6d500d0db
 SHA512 
01d86b04dfd7d57ef5e64494c7f2f38fd9ef0e7a215937a2b8c4be4f0e5faacdfbf0d6cd965120ff0ddfdf08b7394e7bbd5074f4d1186795969e409f8c9df7bd
+DIST spideroak-bin-_amd64.deb 25101218 BLAKE2B 
5e3d7cc1d5af05a39564b7ae957a29d386b78ce904c5974c83622cd9d7918737efee7f02a817fbca4e3e712c895372a6f9a875e5b82c8e43ad84c70796f9c1cf
 SHA512 
a8b3fb1a264ee51dd4f0425f6ea8d6027ee2e548a185959247adde4f6d17878819548e39e9bd5068a81b23e58c35d9a5279840d4a6a8d3d0849f8df70aa8a4eb
+DIST spideroak-bin-_x86.deb 24626532 BLAKE2B 
89f059a05d9dfcaf4a305f22aa1fd719190c9b022abd25c22d7b29476d46c7a0265a8f3bd60fa9c10c55f468bc23264b77f95f22a6deb5ba52f32cf25dd52155
 SHA512 
edce99824c5c6b3da62d9b46c5c52e2027bef3088345b9e2b74b4c2ba21ea4adb0e7956ca6e05646bb8ff335c5dbe743929cf77ce80dade44c2cf36c06718761

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild
deleted file mode 100644
index a71e99a92d6..000
--- a/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eutils unpacker
-
-DESCRIPTION="Secure free online backup, storage, and sharing system"
-HOMEPAGE="https://spideroak.com";
-
-SRC_URI_BASE="https://spideroak.com/release/spideroak";
-SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
-   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
-
-RESTRICT="mirror strip"
-
-LICENSE="spideroak"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="dbus X"
-
-DEPEND="dev-util/patchelf"
-RDEPEND="
-   app-crypt/mit-krb5[keyutils]
-   media-libs/libpng:1.2
-   dbus? ( sys-apps/dbus )
-   X? (
-   media-libs/fontconfig
-   media-libs/freetype:2
-   dev-libs/glib:2
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXext

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2018-01-02 Thread Anthony G. Basile
commit: 13e46a3e788b77e726ad0cc8883b4ee3f39cf2e5
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jan  2 23:55:37 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jan  2 23:56:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13e46a3e

app-backup/spideroak-bin: version bump to 7.0.0

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 app-backup/spideroak-bin/Manifest  |   2 +
 .../spideroak-bin/spideroak-bin-7.0.0.ebuild   | 104 +
 2 files changed, 106 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index 3fe264deabb..7df48336e8e 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -2,3 +2,5 @@ DIST spideroak-bin-6.3.0_amd64.deb 26882606 BLAKE2B 
0113ddf19be6aaaf78bde3574e78
 DIST spideroak-bin-6.3.0_x86.deb 26402134 BLAKE2B 
2c515b4601400e0a0dbce5c92f96294643f60590703c5101b207adb5021567f91325a06c08d3b11fc248d5493f76d5f1398417db303acd9cb4f875b3c4accfd1
 SHA512 
3945d671f0dff0e193bf0cd951d2380f50f28921ab3166d26cebf2564caef03e46967c0032b2da02b012ab4c71332af869d117e0ac7c5dfde99dc1e9d9399d5e
 DIST spideroak-bin-6.4.0_amd64.deb 26882606 BLAKE2B 
0113ddf19be6aaaf78bde3574e7832af53d774eec6783b91cf72e74babe4b159ce9a61365d92358f8b5afb063d05e86ee75ea6bfc9fac0e34b195d42890e7b3f
 SHA512 
23283574955833199cc86be9eec3781c190da8a0885c31b20bfb7f73976c8e3663c76571ddf5f2c9e9d2377d71121f605ce7698788704b482dbce8290e77a7e2
 DIST spideroak-bin-6.4.0_x86.deb 26402134 BLAKE2B 
2c515b4601400e0a0dbce5c92f96294643f60590703c5101b207adb5021567f91325a06c08d3b11fc248d5493f76d5f1398417db303acd9cb4f875b3c4accfd1
 SHA512 
3945d671f0dff0e193bf0cd951d2380f50f28921ab3166d26cebf2564caef03e46967c0032b2da02b012ab4c71332af869d117e0ac7c5dfde99dc1e9d9399d5e
+DIST spideroak-bin-7.0.0_amd64.deb 25663732 BLAKE2B 
fd91517a6722e1648c08e2885a2659df976db86912f68e024858865a8a319759e5399a107925880b51c293251f55be45360f6f0235c357b6a74b4b50e55daf2d
 SHA512 
a7bc9bb3b7dbaeef43146c2e0f6d0fe690e3710a28d0b2f753f701675dada2fbb449bf95d0cae289ea4b03aae8f39b916efbb2da531d7cdab5d6df85b481609f
+DIST spideroak-bin-7.0.0_x86.deb 25174384 BLAKE2B 
85642257033706b6253af6c890493cfe2be652bf062a882a9a4546089df20f1f5a0618ee7bd573c68a8fd0da39f1f06effbe667656e23db3148151d6d500d0db
 SHA512 
01d86b04dfd7d57ef5e64494c7f2f38fd9ef0e7a215937a2b8c4be4f0e5faacdfbf0d6cd965120ff0ddfdf08b7394e7bbd5074f4d1186795969e409f8c9df7bd

diff --git a/app-backup/spideroak-bin/spideroak-bin-7.0.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-7.0.0.ebuild
new file mode 100644
index 000..b50355c676a
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-7.0.0.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eutils unpacker
+
+DESCRIPTION="Secure free online backup, storage, and sharing system"
+HOMEPAGE="https://spideroak.com";
+
+SRC_URI_BASE="https://spideroak.com/release/spideroak";
+SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
+
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   media-libs/libpng:1.2
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+
+   #Remove the libraries that break compatibility in modern systems
+   #SpiderOak will use the system libs instead
+   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
+   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
+   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
+   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
+
+   eapply_user
+}
+
+src_install() {
+   #install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   #install the executable
+   exeinto /opt/SpiderOakONE/lib
+   doexe opt/SpiderOakON

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-12-14 Thread Anthony G. Basile
commit: deefd9283914ef21b571b72e9c404c129c004859
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Dec 15 07:37:55 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Dec 15 07:38:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deefd928

app-backup/spideroak-bin: fix Manifest, bug #637956

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 app-backup/spideroak-bin/Manifest | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index 6d1ce3a5448..3fe264deabb 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,4 +1,4 @@
-DIST spideroak-bin-6.3.0_amd64.deb 26863968 SHA256 
553aa6fb4d1b5ed105a67adfdd56b817f5236b0a8fe3f278a45f80e74d3ff806 SHA512 
d1eadf017a63bf328ae25d3d4bd6d6d7a69b6d04917ae8f1bd913c4276c477effb397d254c94526c81ae8e0f08d6d13ab98d607389d1f3df8fb02b7acb5e0661
 WHIRLPOOL 
bf6101dd6b496dfa3f9c3a2a3addb870a01187545251ef8e2610b22b2f7966177f1170e6d06163c4670aaa6b664af7d64464d2f6a63411c0c2a90c9aad578afe
-DIST spideroak-bin-6.3.0_x86.deb 26385528 SHA256 
91e83928bf3259f43c8aeea67ec70288b4b56221b1434a7ce9b723f99e5f2b28 SHA512 
356b00f730fdbbf6a88a720bd0f546c8dec231c7601c1a8c2a78f085e972ea087b96eb6670ede7e593cf508ed56bda571af65a23560baf0869148d66057bc9bd
 WHIRLPOOL 
81747c30f75f55d5586bd53be068c79b14c2c173fdbf5a5969ad682872e2fbda43a3919662221fb945b1a46fead04dd5eb8dee27c2919aa6dc030b2e2b7b2b98
+DIST spideroak-bin-6.3.0_amd64.deb 26882606 BLAKE2B 
0113ddf19be6aaaf78bde3574e7832af53d774eec6783b91cf72e74babe4b159ce9a61365d92358f8b5afb063d05e86ee75ea6bfc9fac0e34b195d42890e7b3f
 SHA512 
23283574955833199cc86be9eec3781c190da8a0885c31b20bfb7f73976c8e3663c76571ddf5f2c9e9d2377d71121f605ce7698788704b482dbce8290e77a7e2
+DIST spideroak-bin-6.3.0_x86.deb 26402134 BLAKE2B 
2c515b4601400e0a0dbce5c92f96294643f60590703c5101b207adb5021567f91325a06c08d3b11fc248d5493f76d5f1398417db303acd9cb4f875b3c4accfd1
 SHA512 
3945d671f0dff0e193bf0cd951d2380f50f28921ab3166d26cebf2564caef03e46967c0032b2da02b012ab4c71332af869d117e0ac7c5dfde99dc1e9d9399d5e
 DIST spideroak-bin-6.4.0_amd64.deb 26882606 BLAKE2B 
0113ddf19be6aaaf78bde3574e7832af53d774eec6783b91cf72e74babe4b159ce9a61365d92358f8b5afb063d05e86ee75ea6bfc9fac0e34b195d42890e7b3f
 SHA512 
23283574955833199cc86be9eec3781c190da8a0885c31b20bfb7f73976c8e3663c76571ddf5f2c9e9d2377d71121f605ce7698788704b482dbce8290e77a7e2
 DIST spideroak-bin-6.4.0_x86.deb 26402134 BLAKE2B 
2c515b4601400e0a0dbce5c92f96294643f60590703c5101b207adb5021567f91325a06c08d3b11fc248d5493f76d5f1398417db303acd9cb4f875b3c4accfd1
 SHA512 
3945d671f0dff0e193bf0cd951d2380f50f28921ab3166d26cebf2564caef03e46967c0032b2da02b012ab4c71332af869d117e0ac7c5dfde99dc1e9d9399d5e



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-11-10 Thread Anthony G. Basile
commit: aa51b1ed27295d644e0c2ac2bdd5cb4fa764a793
Author: Fernandez-Alcon, Jose  atlantis  blackmagic  io>
AuthorDate: Fri Oct  6 01:13:41 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Nov 10 22:23:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa51b1ed

app-backup/spideroak-bin: mark 6.4.0 bug #633594

Signed-off-by: Anthony G. Basile  gentoo.org>

 app-backup/spideroak-bin/Manifest  |   2 +
 .../spideroak-bin/spideroak-bin-6.4.0.ebuild   | 104 +
 2 files changed, 106 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index 2c99a817230..fccbec3f636 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,2 +1,4 @@
 DIST spideroak-bin-6.3.0_amd64.deb 26863968 SHA256 
553aa6fb4d1b5ed105a67adfdd56b817f5236b0a8fe3f278a45f80e74d3ff806 SHA512 
d1eadf017a63bf328ae25d3d4bd6d6d7a69b6d04917ae8f1bd913c4276c477effb397d254c94526c81ae8e0f08d6d13ab98d607389d1f3df8fb02b7acb5e0661
 WHIRLPOOL 
bf6101dd6b496dfa3f9c3a2a3addb870a01187545251ef8e2610b22b2f7966177f1170e6d06163c4670aaa6b664af7d64464d2f6a63411c0c2a90c9aad578afe
 DIST spideroak-bin-6.3.0_x86.deb 26385528 SHA256 
91e83928bf3259f43c8aeea67ec70288b4b56221b1434a7ce9b723f99e5f2b28 SHA512 
356b00f730fdbbf6a88a720bd0f546c8dec231c7601c1a8c2a78f085e972ea087b96eb6670ede7e593cf508ed56bda571af65a23560baf0869148d66057bc9bd
 WHIRLPOOL 
81747c30f75f55d5586bd53be068c79b14c2c173fdbf5a5969ad682872e2fbda43a3919662221fb945b1a46fead04dd5eb8dee27c2919aa6dc030b2e2b7b2b98
+DIST spideroak-bin-6.4.0_amd64.deb 26882606 SHA256 
a94d4ad3657d7437ee4ef5b7a5feb2687b78dafab45f94c6cb2fb5f246c9dcfe SHA512 
23283574955833199cc86be9eec3781c190da8a0885c31b20bfb7f73976c8e3663c76571ddf5f2c9e9d2377d71121f605ce7698788704b482dbce8290e77a7e2
 WHIRLPOOL 
bb01e1af96612d36baa15d9e7ab22c400e702c1b04d9afadab78b8318fa7a47de7524d3d1b50825542f16bd5ee86069f9b50d79a459521e3aebb73284fd80d08
+DIST spideroak-bin-6.4.0_x86.deb 26402134 SHA256 
63252488965c5098d0b0a68be6118276a546ca61ae6ef8495d4db820e3a15319 SHA512 
3945d671f0dff0e193bf0cd951d2380f50f28921ab3166d26cebf2564caef03e46967c0032b2da02b012ab4c71332af869d117e0ac7c5dfde99dc1e9d9399d5e
 WHIRLPOOL 
1af45020968e4416f85c5dcd619b77a56aea3a13043e529deb7a899e93cf5614a33b959ad1b8424c518905d0f2317b6157a31603ca3cdf4ae866a5d86b570836

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.4.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.4.0.ebuild
new file mode 100644
index 000..ee101fd0f53
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-6.4.0.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eutils unpacker
+
+DESCRIPTION="Secure free online backup, storage, and sharing system"
+HOMEPAGE="https://spideroak.com";
+
+SRC_URI_BASE="https://spideroak.com/release/spideroak";
+SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
+
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   media-libs/libpng:1.2
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+
+   #Remove the libraries that break compatibility in modern systems
+   #SpiderOak will use the system libs instead
+   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
+   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
+   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
+   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
+
+   eapply_user
+}
+
+src_install() {
+   #install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   #install the executable
+   exeinto /opt/SpiderOakONE/lib
+   doexe opt/SpiderOakONE/lib/SpiderOakONE
+   doexe opt/SpiderOakONE/lib/inotify_dir_watcher
+   rm

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-08-06 Thread Anthony G. Basile
commit: 6bc9b999453bb27f92a2f4ea3d391d9b696b0ad4
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Aug  6 18:21:36 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Aug  6 18:21:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bc9b999

app-backup/spideroak-bin: fix Manifest, bug #627116

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-backup/spideroak-bin/Manifest | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index b32ebe5d37a..2c99a817230 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,2 +1,2 @@
-DIST spideroak-bin-6.3.0_amd64.deb 26860946 SHA256 
82f39594ac3c5b22324912a633b51a03dd1d6a6b3460bf9426f3bfe712af12e7 SHA512 
b9c2635c141c4aaffa0a744b155563a64f4ec16c7f07e38c15cc47db5d810a13997facb4cf75f1567212e613abfa2da6477dcb7ee8f81b35276f115ff3d71051
 WHIRLPOOL 
c9b532c9f90508447baf7d080ccda9e358a386352fd917d2e473183c4afc3aa89b211a789ce0442ced0d5d86ebe8b5bf3b9e2d4ce6eb4087773dd1bc81abfe7a
-DIST spideroak-bin-6.3.0_x86.deb 26384374 SHA256 
943b324f1f1daae8fc52e952665a0b8f543f5294e21736a90c94f234a217512b SHA512 
beb19703541df684f9c322916cb033846b730f5da7efa34a90250ce6da46f34f741fcfe12bc41bc82770b6cfd54f5376314c3689885d1ce1591f162361339a99
 WHIRLPOOL 
f290963d2f714bf5c63fd03cf4d53ae455ef7520289149f4fcaf88693cd8dd403cb4686e6c00728da2a883096047a6d6fc0d1d43abff4dad5e68a6145f7a2665
+DIST spideroak-bin-6.3.0_amd64.deb 26863968 SHA256 
553aa6fb4d1b5ed105a67adfdd56b817f5236b0a8fe3f278a45f80e74d3ff806 SHA512 
d1eadf017a63bf328ae25d3d4bd6d6d7a69b6d04917ae8f1bd913c4276c477effb397d254c94526c81ae8e0f08d6d13ab98d607389d1f3df8fb02b7acb5e0661
 WHIRLPOOL 
bf6101dd6b496dfa3f9c3a2a3addb870a01187545251ef8e2610b22b2f7966177f1170e6d06163c4670aaa6b664af7d64464d2f6a63411c0c2a90c9aad578afe
+DIST spideroak-bin-6.3.0_x86.deb 26385528 SHA256 
91e83928bf3259f43c8aeea67ec70288b4b56221b1434a7ce9b723f99e5f2b28 SHA512 
356b00f730fdbbf6a88a720bd0f546c8dec231c7601c1a8c2a78f085e972ea087b96eb6670ede7e593cf508ed56bda571af65a23560baf0869148d66057bc9bd
 WHIRLPOOL 
81747c30f75f55d5586bd53be068c79b14c2c173fdbf5a5969ad682872e2fbda43a3919662221fb945b1a46fead04dd5eb8dee27c2919aa6dc030b2e2b7b2b98



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-07-29 Thread Anthony G. Basile
commit: ccef3ef6ad84eb4edc8fe8e6e412e012048b647f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Jul 29 11:35:56 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jul 29 11:35:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccef3ef6

app-backup/spideroak-bin: mark 6.3.0-r1 stable, bug #622784 comment 3

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../spideroak-bin/spideroak-bin-6.3.0-r1.ebuild|   2 +-
 .../spideroak-bin/spideroak-bin-6.3.0.ebuild   | 101 -
 2 files changed, 1 insertion(+), 102 deletions(-)

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild
index ee101fd0f53..a71e99a92d6 100644
--- a/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild
+++ b/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild
@@ -16,7 +16,7 @@ RESTRICT="mirror strip"
 
 LICENSE="spideroak"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="dbus X"
 
 DEPEND="dev-util/patchelf"

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
deleted file mode 100644
index 75cf8ec90ac..000
--- a/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils unpacker
-
-DESCRIPTION="Secure free online backup, storage, and sharing system"
-HOMEPAGE="https://spideroak.com";
-
-SRC_URI_BASE="https://spideroak.com/release/spideroak";
-SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
-   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
-
-RESTRICT="mirror strip"
-
-LICENSE="spideroak"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="dbus X"
-
-DEPEND="dev-util/patchelf"
-RDEPEND="
-   app-crypt/mit-krb5[keyutils]
-   dbus? ( sys-apps/dbus )
-   X? (
-   media-libs/fontconfig
-   media-libs/freetype:2
-   dev-libs/glib:2
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXmu
-   x11-libs/libXrender
-   x11-libs/libXt
-   )
-"
-
-S=${WORKDIR}
-
-QA_PREBUILT="*"
-
-src_prepare() {
-   # Set RPATH for preserve-libs handling (bug #400979).
-   cd "${S}/opt/SpiderOakONE/lib" || die
-   local x
-   for x in `find` ; do
-   # Use \x7fELF header to separate ELF executables and libraries
-   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
-   patchelf --set-rpath '$ORIGIN' "${x}" || \
-   die "patchelf failed on ${x}"
-   done
-
-   #Remove the libraries that break compatibility in modern systems
-   #SpiderOak will use the system libs instead
-   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
-   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
-   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
-   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
-}
-
-src_install() {
-   #install the wrapper script
-   exeinto /usr/bin
-   doexe usr/bin/SpiderOakONE
-
-   # inotify_dir_watcher needs to be marked executable, bug #453266
-   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
-
-   #install the executable
-   exeinto /opt/SpiderOakONE/lib
-   doexe opt/SpiderOakONE/lib/SpiderOakONE
-   doexe opt/SpiderOakONE/lib/inotify_dir_watcher
-   rm -f opt/SpiderOakONE/lib/{SpiderOakONE,inotify_dir_watcher}
-
-   #install the prebundled libraries
-   insinto /opt/SpiderOakONE
-   doins -r opt/SpiderOakONE/lib
-
-   #install the config files
-   use dbus || rm -rf etc/dbus-1
-   insinto /
-   doins -r etc
-
-   #install the manpage
-   doman usr/share/man/man1/SpiderOakONE.1.gz
-
-   if use X; then
-   domenu usr/share/applications/SpiderOakONE.desktop
-   doicon usr/share/pixmaps/SpiderOakONE.png
-   fi
-}
-
-pkg_postinst() {
-   if ! use X; then
-   einfo "For instructions on running SpiderOakONE without a GUI, 
please read the FAQ:"
-   einfo "  
https://spideroak.com/faq/questions/62/how_do_i_install_spideroak_on_a_headless_linux_server/";
-   einfo "  
https://spideroak.com/faq/questions/67/how_can_i_use_spideroak_from_the_commandline/";
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-07-29 Thread Anthony G. Basile
commit: 8f82e6ad4e1c650d60047750686eca0d78ce79dc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Jul 29 09:08:53 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jul 29 09:09:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f82e6ad

app-backup/spideroak-bin: remove older versions

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-backup/spideroak-bin/Manifest  |   4 -
 .../spideroak-bin/spideroak-bin-6.1.3.ebuild   |  93 ---
 .../spideroak-bin/spideroak-bin-6.1.5.ebuild   | 100 -
 3 files changed, 197 deletions(-)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index b86ea3ff4de..b32ebe5d37a 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,6 +1,2 @@
-DIST spideroak-bin-6.1.3_amd64.deb 26655852 SHA256 
65ecab3096e6de675fd9facf81f387775c2419158112c4914447fa0af07d8015 SHA512 
f9d4e4178721609ec4a544ac8b84e581088ad9be5aaf3aa68de12e2d7e17d7c148d9a619917b69ecfd9c08087d1987b0b67081673b81f56908089caa9ab0edc5
 WHIRLPOOL 
6751d84d9739bc66f189b52cf944544213f10e978b9e2cb1b85fcf1303fb4ae0373d7bf9633638586cceea659c2448a442b459fdaefc7306854f8b1f58c189d9
-DIST spideroak-bin-6.1.3_x86.deb 26173318 SHA256 
50fd7d442291bb9ec64d51308444c83b7d76d55bafcc3e9f5d3009e6a49eee0f SHA512 
0ddf1be909b44042e3fe0f7e791558e50c649a3d4472c3a05c78835c593d6db3369c0e862b79f2a4812232503346defc1c889fbc4c701a125d3364810b524481
 WHIRLPOOL 
2e19e4ac0f9028acea19eb2f395faba2031959c09544c07a7f10c690f67317558ac0fbdf2e1fe1b52a922e4ac9480486348b0c4cf053b03336018d3aef7f2dab
-DIST spideroak-bin-6.1.5_amd64.deb 26882606 SHA256 
7ef458381c17f7a3712043aa672b5509500e7e6999cd52ba5d85ba76f7a29d2c SHA512 
c23e41d359879ce671f8af66e32d08affe10c92492ed46dc6eea5942f14190d28a4b1b96722959bfcec98b05f9176c0a959c93c32bf22709139332b42d805a52
 WHIRLPOOL 
8f9b56f091951dafb6849cfbafd60314708dd5a5deed0852d5bb06869b36f1fa5d8e55508407c5bbf34024523531bfe26325fce7895ac04b59f6f1dd1aa50c58
-DIST spideroak-bin-6.1.5_x86.deb 26405076 SHA256 
a001e464b87406e775f421ff041fbc80a3f3b33548c792a095c9632e137a3e89 SHA512 
4aa87c2fd35569bb4acaf5492ca520d66bb9d53c5a53d5e8f418ae0518cb143f35bc769a7d37bc1ea6e4536b944780a3403d3800c45973bed537f573f3e07d0a
 WHIRLPOOL 
7471b8ebf394cbcbc05400cc0e0c390ea30d92194567458b6955bd9a25f5f40fbe27c52e30767e467aa4f45ecf6fa304b82ab60bf30d1408846c4cff7f4087b9
 DIST spideroak-bin-6.3.0_amd64.deb 26860946 SHA256 
82f39594ac3c5b22324912a633b51a03dd1d6a6b3460bf9426f3bfe712af12e7 SHA512 
b9c2635c141c4aaffa0a744b155563a64f4ec16c7f07e38c15cc47db5d810a13997facb4cf75f1567212e613abfa2da6477dcb7ee8f81b35276f115ff3d71051
 WHIRLPOOL 
c9b532c9f90508447baf7d080ccda9e358a386352fd917d2e473183c4afc3aa89b211a789ce0442ced0d5d86ebe8b5bf3b9e2d4ce6eb4087773dd1bc81abfe7a
 DIST spideroak-bin-6.3.0_x86.deb 26384374 SHA256 
943b324f1f1daae8fc52e952665a0b8f543f5294e21736a90c94f234a217512b SHA512 
beb19703541df684f9c322916cb033846b730f5da7efa34a90250ce6da46f34f741fcfe12bc41bc82770b6cfd54f5376314c3689885d1ce1591f162361339a99
 WHIRLPOOL 
f290963d2f714bf5c63fd03cf4d53ae455ef7520289149f4fcaf88693cd8dd403cb4686e6c00728da2a883096047a6d6fc0d1d43abff4dad5e68a6145f7a2665

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild
deleted file mode 100644
index 843efdf251c..000
--- a/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils unpacker
-
-SRC_URI_BASE="https://spideroak.com/getbuild?platform=ubuntu";
-
-DESCRIPTION="Secure free online backup, storage, and sharing system"
-HOMEPAGE="https://spideroak.com";
-SRC_URI="x86? ( ${SRC_URI_BASE}&arch=i386&version=${PV} -> ${P}_x86.deb )
-   amd64? ( ${SRC_URI_BASE}&arch=x86_64&version=${PV} -> ${P}_amd64.deb )"
-RESTRICT="mirror strip"
-
-LICENSE="spideroak"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="dbus X"
-
-DEPEND="dev-util/patchelf"
-RDEPEND="
-   app-crypt/mit-krb5[keyutils]
-   dbus? ( sys-apps/dbus )
-   X? (
-   media-libs/fontconfig
-   media-libs/freetype:2
-   dev-libs/glib:2
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXmu
-   x11-libs/libXrender
-   x11-libs/libXt
-   )
-"
-
-S=${WORKDIR}
-
-QA_PREBUILT="*"
-
-src_prepare() {
-   # Set RPATH for preserve-libs handling (bug #400979).
-   cd "${S}/opt/SpiderOakONE/lib" || die
-   local x
-   for x in `find` ; do
-   # Use \x7fELF header to separate ELF executables and libraries
-   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
-   patchelf --set-rpath '$ORIGIN' "${x}" || \
-

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-07-29 Thread Anthony G. Basile
commit: b12959fe16c93702e193a050bdb4be568411e54a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Jul 29 09:07:59 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jul 29 09:09:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b12959fe

app-backup/spideroak-bin: fix bug #622784

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../spideroak-bin/spideroak-bin-6.3.0-r1.ebuild| 104 +
 1 file changed, 104 insertions(+)

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild
new file mode 100644
index 000..ee101fd0f53
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-6.3.0-r1.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eutils unpacker
+
+DESCRIPTION="Secure free online backup, storage, and sharing system"
+HOMEPAGE="https://spideroak.com";
+
+SRC_URI_BASE="https://spideroak.com/release/spideroak";
+SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
+
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   media-libs/libpng:1.2
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+
+   #Remove the libraries that break compatibility in modern systems
+   #SpiderOak will use the system libs instead
+   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
+   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
+   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
+   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
+
+   eapply_user
+}
+
+src_install() {
+   #install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   #install the executable
+   exeinto /opt/SpiderOakONE/lib
+   doexe opt/SpiderOakONE/lib/SpiderOakONE
+   doexe opt/SpiderOakONE/lib/inotify_dir_watcher
+   rm -f opt/SpiderOakONE/lib/{SpiderOakONE,inotify_dir_watcher}
+
+   #install the prebundled libraries
+   insinto /opt/SpiderOakONE
+   doins -r opt/SpiderOakONE/lib
+
+   #install the config files
+   use dbus || rm -rf etc/dbus-1
+   insinto /
+   doins -r etc
+
+   #install the manpage
+   doman usr/share/man/man1/SpiderOakONE.1.gz
+
+   if use X; then
+   domenu usr/share/applications/SpiderOakONE.desktop
+   doicon usr/share/pixmaps/SpiderOakONE.png
+   fi
+}
+
+pkg_postinst() {
+   if ! use X; then
+   einfo "For instructions on running SpiderOakONE without a GUI, 
please read the FAQ:"
+   einfo "  
https://spideroak.com/faq/questions/62/how_do_i_install_spideroak_on_a_headless_linux_server/";
+   einfo "  
https://spideroak.com/faq/questions/67/how_can_i_use_spideroak_from_the_commandline/";
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-06-30 Thread Agostino Sarubbo
commit: 134a60b2f6c54c9682763c5392146f024064de16
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 30 11:08:00 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 30 11:08:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=134a60b2

app-backup/spideroak-bin: x86 stable wrt bug #622672

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
index 036c353ffb4..75cf8ec90ac 100644
--- a/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
+++ b/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
@@ -16,7 +16,7 @@ RESTRICT="mirror strip"
 
 LICENSE="spideroak"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="dbus X"
 
 DEPEND="dev-util/patchelf"



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-06-28 Thread Agostino Sarubbo
commit: 4447f1f9c7798468d17d69f80315791464c0ed4c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jun 28 13:17:33 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jun 28 13:17:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4447f1f9

app-backup/spideroak-bin: amd64 stable wrt bug #622672

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
index 98ee8c0cc49..036c353ffb4 100644
--- a/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
+++ b/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
@@ -16,7 +16,7 @@ RESTRICT="mirror strip"
 
 LICENSE="spideroak"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="dbus X"
 
 DEPEND="dev-util/patchelf"



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-06-05 Thread Anthony G. Basile
commit: 60f8b7821464695a2c060eacd062966671459094
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jun  5 23:10:12 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jun  5 23:10:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60f8b782

app-backup/spideroak-bin: bump to version 6.3.0, bug #616052

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 app-backup/spideroak-bin/Manifest  |   2 +
 .../spideroak-bin/spideroak-bin-6.3.0.ebuild   | 101 +
 2 files changed, 103 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index e253b7b6c91..b86ea3ff4de 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -2,3 +2,5 @@ DIST spideroak-bin-6.1.3_amd64.deb 26655852 SHA256 
65ecab3096e6de675fd9facf81f38
 DIST spideroak-bin-6.1.3_x86.deb 26173318 SHA256 
50fd7d442291bb9ec64d51308444c83b7d76d55bafcc3e9f5d3009e6a49eee0f SHA512 
0ddf1be909b44042e3fe0f7e791558e50c649a3d4472c3a05c78835c593d6db3369c0e862b79f2a4812232503346defc1c889fbc4c701a125d3364810b524481
 WHIRLPOOL 
2e19e4ac0f9028acea19eb2f395faba2031959c09544c07a7f10c690f67317558ac0fbdf2e1fe1b52a922e4ac9480486348b0c4cf053b03336018d3aef7f2dab
 DIST spideroak-bin-6.1.5_amd64.deb 26882606 SHA256 
7ef458381c17f7a3712043aa672b5509500e7e6999cd52ba5d85ba76f7a29d2c SHA512 
c23e41d359879ce671f8af66e32d08affe10c92492ed46dc6eea5942f14190d28a4b1b96722959bfcec98b05f9176c0a959c93c32bf22709139332b42d805a52
 WHIRLPOOL 
8f9b56f091951dafb6849cfbafd60314708dd5a5deed0852d5bb06869b36f1fa5d8e55508407c5bbf34024523531bfe26325fce7895ac04b59f6f1dd1aa50c58
 DIST spideroak-bin-6.1.5_x86.deb 26405076 SHA256 
a001e464b87406e775f421ff041fbc80a3f3b33548c792a095c9632e137a3e89 SHA512 
4aa87c2fd35569bb4acaf5492ca520d66bb9d53c5a53d5e8f418ae0518cb143f35bc769a7d37bc1ea6e4536b944780a3403d3800c45973bed537f573f3e07d0a
 WHIRLPOOL 
7471b8ebf394cbcbc05400cc0e0c390ea30d92194567458b6955bd9a25f5f40fbe27c52e30767e467aa4f45ecf6fa304b82ab60bf30d1408846c4cff7f4087b9
+DIST spideroak-bin-6.3.0_amd64.deb 26860946 SHA256 
82f39594ac3c5b22324912a633b51a03dd1d6a6b3460bf9426f3bfe712af12e7 SHA512 
b9c2635c141c4aaffa0a744b155563a64f4ec16c7f07e38c15cc47db5d810a13997facb4cf75f1567212e613abfa2da6477dcb7ee8f81b35276f115ff3d71051
 WHIRLPOOL 
c9b532c9f90508447baf7d080ccda9e358a386352fd917d2e473183c4afc3aa89b211a789ce0442ced0d5d86ebe8b5bf3b9e2d4ce6eb4087773dd1bc81abfe7a
+DIST spideroak-bin-6.3.0_x86.deb 26384374 SHA256 
943b324f1f1daae8fc52e952665a0b8f543f5294e21736a90c94f234a217512b SHA512 
beb19703541df684f9c322916cb033846b730f5da7efa34a90250ce6da46f34f741fcfe12bc41bc82770b6cfd54f5376314c3689885d1ce1591f162361339a99
 WHIRLPOOL 
f290963d2f714bf5c63fd03cf4d53ae455ef7520289149f4fcaf88693cd8dd403cb4686e6c00728da2a883096047a6d6fc0d1d43abff4dad5e68a6145f7a2665

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
new file mode 100644
index 000..98ee8c0cc49
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-6.3.0.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+inherit eutils unpacker
+
+DESCRIPTION="Secure free online backup, storage, and sharing system"
+HOMEPAGE="https://spideroak.com";
+
+SRC_URI_BASE="https://spideroak.com/release/spideroak";
+SRC_URI="x86? ( ${SRC_URI_BASE}/deb_x86 -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}/deb_x64 -> ${P}_amd64.deb )"
+
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+
+   #Remove the libraries that break compatibility in modern systems
+   #SpiderOak will use the system libs instead
+   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
+   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
+   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
+   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
+}
+
+src_install() 

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-04-03 Thread Anthony G. Basile
commit: afa00281f4738f96127137eedc347b66ba46837c
Author: Fernandez-Alcon, Jose  atlantis  blackmagic  io>
AuthorDate: Mon Apr  3 15:51:31 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Apr  3 21:45:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afa00281

app-backup/spideroak-bin: version bump to 6.1.5, issue #582660

Reported-by: Frank Krömmelbein  gmx.de>

 app-backup/spideroak-bin/Manifest  |   2 +
 .../spideroak-bin/spideroak-bin-6.1.5.ebuild   | 100 +
 2 files changed, 102 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index fde426b9247..e253b7b6c91 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,2 +1,4 @@
 DIST spideroak-bin-6.1.3_amd64.deb 26655852 SHA256 
65ecab3096e6de675fd9facf81f387775c2419158112c4914447fa0af07d8015 SHA512 
f9d4e4178721609ec4a544ac8b84e581088ad9be5aaf3aa68de12e2d7e17d7c148d9a619917b69ecfd9c08087d1987b0b67081673b81f56908089caa9ab0edc5
 WHIRLPOOL 
6751d84d9739bc66f189b52cf944544213f10e978b9e2cb1b85fcf1303fb4ae0373d7bf9633638586cceea659c2448a442b459fdaefc7306854f8b1f58c189d9
 DIST spideroak-bin-6.1.3_x86.deb 26173318 SHA256 
50fd7d442291bb9ec64d51308444c83b7d76d55bafcc3e9f5d3009e6a49eee0f SHA512 
0ddf1be909b44042e3fe0f7e791558e50c649a3d4472c3a05c78835c593d6db3369c0e862b79f2a4812232503346defc1c889fbc4c701a125d3364810b524481
 WHIRLPOOL 
2e19e4ac0f9028acea19eb2f395faba2031959c09544c07a7f10c690f67317558ac0fbdf2e1fe1b52a922e4ac9480486348b0c4cf053b03336018d3aef7f2dab
+DIST spideroak-bin-6.1.5_amd64.deb 26882606 SHA256 
7ef458381c17f7a3712043aa672b5509500e7e6999cd52ba5d85ba76f7a29d2c SHA512 
c23e41d359879ce671f8af66e32d08affe10c92492ed46dc6eea5942f14190d28a4b1b96722959bfcec98b05f9176c0a959c93c32bf22709139332b42d805a52
 WHIRLPOOL 
8f9b56f091951dafb6849cfbafd60314708dd5a5deed0852d5bb06869b36f1fa5d8e55508407c5bbf34024523531bfe26325fce7895ac04b59f6f1dd1aa50c58
+DIST spideroak-bin-6.1.5_x86.deb 26405076 SHA256 
a001e464b87406e775f421ff041fbc80a3f3b33548c792a095c9632e137a3e89 SHA512 
4aa87c2fd35569bb4acaf5492ca520d66bb9d53c5a53d5e8f418ae0518cb143f35bc769a7d37bc1ea6e4536b944780a3403d3800c45973bed537f573f3e07d0a
 WHIRLPOOL 
7471b8ebf394cbcbc05400cc0e0c390ea30d92194567458b6955bd9a25f5f40fbe27c52e30767e467aa4f45ecf6fa304b82ab60bf30d1408846c4cff7f4087b9

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.1.5.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.1.5.ebuild
new file mode 100644
index 000..885e81a1a1d
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-6.1.5.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+inherit eutils unpacker
+
+SRC_URI_BASE="https://spideroak.com/getbuild?platform=ubuntu";
+
+DESCRIPTION="Secure free online backup, storage, and sharing system"
+HOMEPAGE="https://spideroak.com";
+SRC_URI="x86? ( ${SRC_URI_BASE}&arch=i386&version=${PV} -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}&arch=x86_64&version=${PV} -> ${P}_amd64.deb )"
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+
+   #Remove the libraries that break compatibility in modern systems
+   #SpiderOak will use the system libs instead
+   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
+   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
+   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
+   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
+}
+
+src_install() {
+   #install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   #install the executable
+   exeinto /opt/SpiderOakONE/lib
+   doexe opt/SpiderOakONE/lib/SpiderOakONE
+   doexe opt/SpiderOakONE/lib/inotify_dir_watcher
+   rm -f o

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2016-06-11 Thread Anthony G. Basile
commit: ee1f8fa8bfbe41a6b9de1e0a5252a059cc9cc9cb
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Jun 11 16:50:14 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jun 11 16:50:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee1f8fa8

app-backup/spideroak-bin: remove older versions

Package-Manager: portage-2.2.28

 app-backup/spideroak-bin/Manifest  |  6 --
 .../spideroak-bin/spideroak-bin-5.1.8-r2.ebuild| 93 -
 .../spideroak-bin/spideroak-bin-5.2.0.ebuild   | 94 --
 .../spideroak-bin/spideroak-bin-6.0.1.ebuild   | 94 --
 4 files changed, 287 deletions(-)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index ce0f6c9..fde426b 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,8 +1,2 @@
-DIST spideroak-bin-5.1.8_amd64.deb 2116 SHA256 
b91f3077c2238bbb1123361afc597682a9c224b9ce22422a253fe5212851cfcf SHA512 
357e8a45175fd9c92cec733f456452d0e0cd7f369df66a4692d1a9b2c471b4f62c7ee9b72073fc4af5596fa18cf121c690ec960f07f686a78bc7ca4fb76838ca
 WHIRLPOOL 
4721271bef4dbf9563df61ee1d39d1040e9e0cd0528b43753edff995ae9b7a2e67618d39f365b716be1e5a478e2042c3568776ee4077291de28ae92e6953a062
-DIST spideroak-bin-5.1.8_x86.deb 19361954 SHA256 
806aae6ac96cb47443c50bfc3bc3f5f7b00abc0b5d978cc2746d10cb1f6b6742 SHA512 
43242b9fcd577fc51b838de72215fa971f385ae1f6ea7c606cc198b2dacd0bbca9b693ea2452c2c957c3af6dc97625d6bd15176067542dfdcbc1505a50c8b42b
 WHIRLPOOL 
5f88e3b699be60151471c71998b2aad2d7e5a42a1c179ccb10a168940dd4ea291f812e6d6e9eb475345b53f403aa3a09cd785759413a0cf50edc9b92300af14f
-DIST spideroak-bin-5.2.0_amd64.deb 20284404 SHA256 
f9b452f891796fcd1046c4a955d2b4722b0a452b24f8ea728a30833c0a576f32 SHA512 
75a96c6f6f0ec6a14255fc4f3bdad96ba54be4a4ee2ea385159c575e7b0e05bf3cfcfc4b0595a430b4a686acda3cb2674df5959d0b1a3ddc609a590d7737d94e
 WHIRLPOOL 
c6045af1101008b2ca25df4fd4d34d55b3dcda2187660f3601fbc9a6aa53c7e9ad3d59fffa954c2eb57022a46ecf04a42f39577914fc01dbe2c46c4c5e184475
-DIST spideroak-bin-5.2.0_x86.deb 19641884 SHA256 
f4689dcc0630e4b46b039c64a16e291d740cc245b7507863ae5938473f504c30 SHA512 
e98041b98c77e011774abe5b832c9a2ee4ecd179864bd39aacdb439f906110797f9f96e7326a394a6da0cbb88650c242da51060b501de0c379a0efdb75594403
 WHIRLPOOL 
bf96a2cd8f3bbf6ab2ec26c532546b8c40dda09a1902075332fb2c8787af4a4a1808094fb6e7fb90f27c9da2d480b1129e235fa656c76bd1acbfd3b8bbda90d5
-DIST spideroak-bin-6.0.1_amd64.deb 26718286 SHA256 
7baa2573756ce174fbdff882be21de2306580de12d31cf760b706da72efdb711 SHA512 
28551b5a5e7824e06c17a7f53a9218d82a18ddc9c9ba3bd19361eef02d02afb795ee75d4aad9819ff87de78193edca1015efcea0c65e36bcdfad9d9bdf96f819
 WHIRLPOOL 
dd34a78a675beb8c08c7c36abc6fb65182dcb24ec9a446cc6fc6bb8114f457c2383743305eb3d5886ddb0d9cc3a4dc3489d75fef2226947660f19624b81b5098
-DIST spideroak-bin-6.0.1_x86.deb 26232394 SHA256 
084013d54c335e74fb853b74f54ac1ca2a90d96338cb6e3dbdf4f83dc718c611 SHA512 
b94363fa66338be4af70ac753c7aac0e80dac6bea2a23310075de4e77c950fb67a63e9c6aa14734f00d49ea8a537b788379d3599dfa874fddc9f7455e805f773
 WHIRLPOOL 
7a735006f179ef1421cc071ebe7118650a6052f5563735beb290021420ef75730f2f105d2606f42a4721d48775eced463e9ca9da58315efae2b9e5c95087bf98
 DIST spideroak-bin-6.1.3_amd64.deb 26655852 SHA256 
65ecab3096e6de675fd9facf81f387775c2419158112c4914447fa0af07d8015 SHA512 
f9d4e4178721609ec4a544ac8b84e581088ad9be5aaf3aa68de12e2d7e17d7c148d9a619917b69ecfd9c08087d1987b0b67081673b81f56908089caa9ab0edc5
 WHIRLPOOL 
6751d84d9739bc66f189b52cf944544213f10e978b9e2cb1b85fcf1303fb4ae0373d7bf9633638586cceea659c2448a442b459fdaefc7306854f8b1f58c189d9
 DIST spideroak-bin-6.1.3_x86.deb 26173318 SHA256 
50fd7d442291bb9ec64d51308444c83b7d76d55bafcc3e9f5d3009e6a49eee0f SHA512 
0ddf1be909b44042e3fe0f7e791558e50c649a3d4472c3a05c78835c593d6db3369c0e862b79f2a4812232503346defc1c889fbc4c701a125d3364810b524481
 WHIRLPOOL 
2e19e4ac0f9028acea19eb2f395faba2031959c09544c07a7f10c690f67317558ac0fbdf2e1fe1b52a922e4ac9480486348b0c4cf053b03336018d3aef7f2dab

diff --git a/app-backup/spideroak-bin/spideroak-bin-5.1.8-r2.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-5.1.8-r2.ebuild
deleted file mode 100644
index c821e20..000
--- a/app-backup/spideroak-bin/spideroak-bin-5.1.8-r2.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit eutils unpacker
-
-SRC_URI_BASE="https://spideroak.com/getbuild?platform=ubuntu";
-
-DESCRIPTION="An easy, secure and consolidated free online backup, storage, 
access and sharing system"
-HOMEPAGE="https://spideroak.com";
-SRC_URI="x86? ( ${SRC_URI_BASE}&arch=i386&version=${PV} -> ${P}_x86.deb )
-   amd64? ( ${SRC_URI_BASE}&arch=x86_64&version=${PV} -> ${P}_amd64.deb )"
-RESTRICT="mirror strip"
-
-LICENSE="spideroak"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="dbus X"
-
-DEPEND="dev-util/patchelf"

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2016-06-11 Thread Anthony G. Basile
commit: 81b06231f12a05a2d27fec7bab0b723f4ad7ad2e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Jun 11 16:48:15 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jun 11 16:48:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81b06231

app-backup/spideroak-bin: stable on amd64 and x86, bug #578622

Package-Manager: portage-2.2.28

 app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild
index b31ccc4..28e8c95 100644
--- a/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild
+++ b/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild
@@ -8,7 +8,7 @@ inherit eutils unpacker
 
 SRC_URI_BASE="https://spideroak.com/getbuild?platform=ubuntu";
 
-DESCRIPTION="Secure free online backup, storage, access and sharing system"
+DESCRIPTION="Secure free online backup, storage, and sharing system"
 HOMEPAGE="https://spideroak.com";
 SRC_URI="x86? ( ${SRC_URI_BASE}&arch=i386&version=${PV} -> ${P}_x86.deb )
amd64? ( ${SRC_URI_BASE}&arch=x86_64&version=${PV} -> ${P}_amd64.deb )"
@@ -16,7 +16,7 @@ RESTRICT="mirror strip"
 
 LICENSE="spideroak"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="dbus X"
 
 DEPEND="dev-util/patchelf"



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2016-04-03 Thread Anthony G. Basile
commit: 9aa8c5e0dcce5109977ae9ee3e7dbd22ba09c153
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Apr  3 22:11:25 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Apr  3 22:11:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aa8c5e0

app-backup/spideroak-bin: version bump to 6.1.3

Package-Manager: portage-2.2.26

 app-backup/spideroak-bin/Manifest  |  2 +
 .../spideroak-bin/spideroak-bin-6.1.3.ebuild   | 94 ++
 2 files changed, 96 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index d105f61..ce0f6c9 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -4,3 +4,5 @@ DIST spideroak-bin-5.2.0_amd64.deb 20284404 SHA256 
f9b452f891796fcd1046c4a955d2b
 DIST spideroak-bin-5.2.0_x86.deb 19641884 SHA256 
f4689dcc0630e4b46b039c64a16e291d740cc245b7507863ae5938473f504c30 SHA512 
e98041b98c77e011774abe5b832c9a2ee4ecd179864bd39aacdb439f906110797f9f96e7326a394a6da0cbb88650c242da51060b501de0c379a0efdb75594403
 WHIRLPOOL 
bf96a2cd8f3bbf6ab2ec26c532546b8c40dda09a1902075332fb2c8787af4a4a1808094fb6e7fb90f27c9da2d480b1129e235fa656c76bd1acbfd3b8bbda90d5
 DIST spideroak-bin-6.0.1_amd64.deb 26718286 SHA256 
7baa2573756ce174fbdff882be21de2306580de12d31cf760b706da72efdb711 SHA512 
28551b5a5e7824e06c17a7f53a9218d82a18ddc9c9ba3bd19361eef02d02afb795ee75d4aad9819ff87de78193edca1015efcea0c65e36bcdfad9d9bdf96f819
 WHIRLPOOL 
dd34a78a675beb8c08c7c36abc6fb65182dcb24ec9a446cc6fc6bb8114f457c2383743305eb3d5886ddb0d9cc3a4dc3489d75fef2226947660f19624b81b5098
 DIST spideroak-bin-6.0.1_x86.deb 26232394 SHA256 
084013d54c335e74fb853b74f54ac1ca2a90d96338cb6e3dbdf4f83dc718c611 SHA512 
b94363fa66338be4af70ac753c7aac0e80dac6bea2a23310075de4e77c950fb67a63e9c6aa14734f00d49ea8a537b788379d3599dfa874fddc9f7455e805f773
 WHIRLPOOL 
7a735006f179ef1421cc071ebe7118650a6052f5563735beb290021420ef75730f2f105d2606f42a4721d48775eced463e9ca9da58315efae2b9e5c95087bf98
+DIST spideroak-bin-6.1.3_amd64.deb 26655852 SHA256 
65ecab3096e6de675fd9facf81f387775c2419158112c4914447fa0af07d8015 SHA512 
f9d4e4178721609ec4a544ac8b84e581088ad9be5aaf3aa68de12e2d7e17d7c148d9a619917b69ecfd9c08087d1987b0b67081673b81f56908089caa9ab0edc5
 WHIRLPOOL 
6751d84d9739bc66f189b52cf944544213f10e978b9e2cb1b85fcf1303fb4ae0373d7bf9633638586cceea659c2448a442b459fdaefc7306854f8b1f58c189d9
+DIST spideroak-bin-6.1.3_x86.deb 26173318 SHA256 
50fd7d442291bb9ec64d51308444c83b7d76d55bafcc3e9f5d3009e6a49eee0f SHA512 
0ddf1be909b44042e3fe0f7e791558e50c649a3d4472c3a05c78835c593d6db3369c0e862b79f2a4812232503346defc1c889fbc4c701a125d3364810b524481
 WHIRLPOOL 
2e19e4ac0f9028acea19eb2f395faba2031959c09544c07a7f10c690f67317558ac0fbdf2e1fe1b52a922e4ac9480486348b0c4cf053b03336018d3aef7f2dab

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild
new file mode 100644
index 000..b31ccc4
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-6.1.3.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils unpacker
+
+SRC_URI_BASE="https://spideroak.com/getbuild?platform=ubuntu";
+
+DESCRIPTION="Secure free online backup, storage, access and sharing system"
+HOMEPAGE="https://spideroak.com";
+SRC_URI="x86? ( ${SRC_URI_BASE}&arch=i386&version=${PV} -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}&arch=x86_64&version=${PV} -> ${P}_amd64.deb )"
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+}
+
+src_install() {
+   #install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   #install the executable
+   exeinto /opt/SpiderOakONE/lib
+   doexe opt/SpiderOakONE/lib

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2015-09-04 Thread Anthony G. Basile
commit: 09201352b3103909ba40f612a0829f0551959015
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Sep  4 10:43:56 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Sep  4 10:43:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09201352

app-backup/spideroak-bin: remove older testing versions

Package-Manager: portage-2.2.20.1

 app-backup/spideroak-bin/Manifest  |  4 -
 .../spideroak-bin/spideroak-bin-5.1.10.ebuild  | 94 --
 app-backup/spideroak-bin/spideroak-bin-6.0.ebuild  | 94 --
 3 files changed, 192 deletions(-)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index 166ffe0..d105f61 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,10 +1,6 @@
-DIST spideroak-bin-5.1.10_amd64.deb 20095946 SHA256 
88e80b19a4d6265673f565f82bd535549846deb663d641c77074f20f48c9cad1 SHA512 
e605219bb055989b4e6a118e9617c6717329b7d3f7e009a6b84cc8dc9b329130b615d1a46e346f661ba39b52ace0eb77f8b61ac13fa3b030cc6163e698151c27
 WHIRLPOOL 
7155a35bf98eef7f70e2b97225cb4c466621b89c87b243db185bb2d9b501b3cf924c019c3229e1bf33cb8a9c1961f866241cd6745fe83588dbd1fd480640e9d1
-DIST spideroak-bin-5.1.10_x86.deb 19453796 SHA256 
6f486db4b9ee8297a46d64041aa20430e5d8a02219ab1527d569342fb0c4b7d6 SHA512 
d7b2cb4fdccee60cd542871746c8d03a19d805cea532556a8fc66635a4a6cf5c6e0196b5e966d7a2952079912e27bbaf5b4c986780ae6448eced16d3e59c956a
 WHIRLPOOL 
a4e184707e891927ddebc607c4f0de27c8acecfff6b8fafa88a03b48ae348f4b505b8a6c12d507a060090a29808271439da1ee7bec5b26d32c3cbc2ca43a01d2
 DIST spideroak-bin-5.1.8_amd64.deb 2116 SHA256 
b91f3077c2238bbb1123361afc597682a9c224b9ce22422a253fe5212851cfcf SHA512 
357e8a45175fd9c92cec733f456452d0e0cd7f369df66a4692d1a9b2c471b4f62c7ee9b72073fc4af5596fa18cf121c690ec960f07f686a78bc7ca4fb76838ca
 WHIRLPOOL 
4721271bef4dbf9563df61ee1d39d1040e9e0cd0528b43753edff995ae9b7a2e67618d39f365b716be1e5a478e2042c3568776ee4077291de28ae92e6953a062
 DIST spideroak-bin-5.1.8_x86.deb 19361954 SHA256 
806aae6ac96cb47443c50bfc3bc3f5f7b00abc0b5d978cc2746d10cb1f6b6742 SHA512 
43242b9fcd577fc51b838de72215fa971f385ae1f6ea7c606cc198b2dacd0bbca9b693ea2452c2c957c3af6dc97625d6bd15176067542dfdcbc1505a50c8b42b
 WHIRLPOOL 
5f88e3b699be60151471c71998b2aad2d7e5a42a1c179ccb10a168940dd4ea291f812e6d6e9eb475345b53f403aa3a09cd785759413a0cf50edc9b92300af14f
 DIST spideroak-bin-5.2.0_amd64.deb 20284404 SHA256 
f9b452f891796fcd1046c4a955d2b4722b0a452b24f8ea728a30833c0a576f32 SHA512 
75a96c6f6f0ec6a14255fc4f3bdad96ba54be4a4ee2ea385159c575e7b0e05bf3cfcfc4b0595a430b4a686acda3cb2674df5959d0b1a3ddc609a590d7737d94e
 WHIRLPOOL 
c6045af1101008b2ca25df4fd4d34d55b3dcda2187660f3601fbc9a6aa53c7e9ad3d59fffa954c2eb57022a46ecf04a42f39577914fc01dbe2c46c4c5e184475
 DIST spideroak-bin-5.2.0_x86.deb 19641884 SHA256 
f4689dcc0630e4b46b039c64a16e291d740cc245b7507863ae5938473f504c30 SHA512 
e98041b98c77e011774abe5b832c9a2ee4ecd179864bd39aacdb439f906110797f9f96e7326a394a6da0cbb88650c242da51060b501de0c379a0efdb75594403
 WHIRLPOOL 
bf96a2cd8f3bbf6ab2ec26c532546b8c40dda09a1902075332fb2c8787af4a4a1808094fb6e7fb90f27c9da2d480b1129e235fa656c76bd1acbfd3b8bbda90d5
 DIST spideroak-bin-6.0.1_amd64.deb 26718286 SHA256 
7baa2573756ce174fbdff882be21de2306580de12d31cf760b706da72efdb711 SHA512 
28551b5a5e7824e06c17a7f53a9218d82a18ddc9c9ba3bd19361eef02d02afb795ee75d4aad9819ff87de78193edca1015efcea0c65e36bcdfad9d9bdf96f819
 WHIRLPOOL 
dd34a78a675beb8c08c7c36abc6fb65182dcb24ec9a446cc6fc6bb8114f457c2383743305eb3d5886ddb0d9cc3a4dc3489d75fef2226947660f19624b81b5098
 DIST spideroak-bin-6.0.1_x86.deb 26232394 SHA256 
084013d54c335e74fb853b74f54ac1ca2a90d96338cb6e3dbdf4f83dc718c611 SHA512 
b94363fa66338be4af70ac753c7aac0e80dac6bea2a23310075de4e77c950fb67a63e9c6aa14734f00d49ea8a537b788379d3599dfa874fddc9f7455e805f773
 WHIRLPOOL 
7a735006f179ef1421cc071ebe7118650a6052f5563735beb290021420ef75730f2f105d2606f42a4721d48775eced463e9ca9da58315efae2b9e5c95087bf98
-DIST spideroak-bin-6.0_amd64.deb 26676730 SHA256 
5825635b706da95740e4b2e1d36870d17d0cfd6a8b26ded6116708d9496e0551 SHA512 
9c0cb6195a0c553e0e1e691d4f22950fd826142c526035ac0ef84628a15a17f293dcaed5bf2ab138ddfb94a47265e06906f6b55e78582212672c9dcb503e86f9
 WHIRLPOOL 
d31fb7a4bd3bc3a49d0a7241bd4bd723ccee28b784ddfbf75c598638bf47dbc0fc75edbdcb5134ea2574f5897d399a79fe42d59a22b41bdc31c63c9fe48f28e0
-DIST spideroak-bin-6.0_x86.deb 26196770 SHA256 
0d655cddc6201188f7bb04d46774bdca42ca6e9958ed458a1bf89bc53485fc58 SHA512 
692418c59462f53930583df01bc5f31520b33d10f9bf616cca6bffcea425d667f65e194c4d40c8357822895f7f54e42f747b25e1dd9af522ab44cec940a66c45
 WHIRLPOOL 
a963aa5a05e85fd55d53849d09099aa585b481c2c9f4756f3d4a7e2c17edd5375da12c669341073453f9a62e471c9121a92008a90288a20b10c75f323885d4d5

diff --git a/app-backup/spideroak-bin/spideroak-bin-5.1.10.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-5.1.10.ebuild
deleted file mode 100644
index 185aeaf..000
--- a/app-backup/spi

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2015-09-04 Thread Anthony G. Basile
commit: ed34adf1d2541026d2de0e833b013a8f6399710f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Sep  4 10:41:51 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Sep  4 10:42:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed34adf1

app-backup/spideroak-bin: taking ownership

Package-Manager: portage-2.2.20.1

 app-backup/spideroak-bin/metadata.xml | 6 --
 1 file changed, 6 deletions(-)

diff --git a/app-backup/spideroak-bin/metadata.xml 
b/app-backup/spideroak-bin/metadata.xml
index e49c3e9..d67a15a 100644
--- a/app-backup/spideroak-bin/metadata.xml
+++ b/app-backup/spideroak-bin/metadata.xml
@@ -1,12 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-proxy-maintainers
-
-   devuran...@gmx.net
-   Dennis Schridde
-   Maintainer.
-
 
bluen...@gentoo.org
Anthony G. Basile



[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2015-09-03 Thread Anthony G. Basile
commit: b8c815cb2dc519121f257523219e5651387e5e3c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Sep  4 00:40:37 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Sep  4 00:40:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8c815cb

app-backup/spideroak-bin: version bump 6.0.1, bug #559450

Package-Manager: portage-2.2.20.1

 app-backup/spideroak-bin/Manifest  |  2 +
 .../spideroak-bin/spideroak-bin-6.0.1.ebuild   | 94 ++
 2 files changed, 96 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index 48cf281..166ffe0 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -4,5 +4,7 @@ DIST spideroak-bin-5.1.8_amd64.deb 2116 SHA256 
b91f3077c2238bbb1123361afc597
 DIST spideroak-bin-5.1.8_x86.deb 19361954 SHA256 
806aae6ac96cb47443c50bfc3bc3f5f7b00abc0b5d978cc2746d10cb1f6b6742 SHA512 
43242b9fcd577fc51b838de72215fa971f385ae1f6ea7c606cc198b2dacd0bbca9b693ea2452c2c957c3af6dc97625d6bd15176067542dfdcbc1505a50c8b42b
 WHIRLPOOL 
5f88e3b699be60151471c71998b2aad2d7e5a42a1c179ccb10a168940dd4ea291f812e6d6e9eb475345b53f403aa3a09cd785759413a0cf50edc9b92300af14f
 DIST spideroak-bin-5.2.0_amd64.deb 20284404 SHA256 
f9b452f891796fcd1046c4a955d2b4722b0a452b24f8ea728a30833c0a576f32 SHA512 
75a96c6f6f0ec6a14255fc4f3bdad96ba54be4a4ee2ea385159c575e7b0e05bf3cfcfc4b0595a430b4a686acda3cb2674df5959d0b1a3ddc609a590d7737d94e
 WHIRLPOOL 
c6045af1101008b2ca25df4fd4d34d55b3dcda2187660f3601fbc9a6aa53c7e9ad3d59fffa954c2eb57022a46ecf04a42f39577914fc01dbe2c46c4c5e184475
 DIST spideroak-bin-5.2.0_x86.deb 19641884 SHA256 
f4689dcc0630e4b46b039c64a16e291d740cc245b7507863ae5938473f504c30 SHA512 
e98041b98c77e011774abe5b832c9a2ee4ecd179864bd39aacdb439f906110797f9f96e7326a394a6da0cbb88650c242da51060b501de0c379a0efdb75594403
 WHIRLPOOL 
bf96a2cd8f3bbf6ab2ec26c532546b8c40dda09a1902075332fb2c8787af4a4a1808094fb6e7fb90f27c9da2d480b1129e235fa656c76bd1acbfd3b8bbda90d5
+DIST spideroak-bin-6.0.1_amd64.deb 26718286 SHA256 
7baa2573756ce174fbdff882be21de2306580de12d31cf760b706da72efdb711 SHA512 
28551b5a5e7824e06c17a7f53a9218d82a18ddc9c9ba3bd19361eef02d02afb795ee75d4aad9819ff87de78193edca1015efcea0c65e36bcdfad9d9bdf96f819
 WHIRLPOOL 
dd34a78a675beb8c08c7c36abc6fb65182dcb24ec9a446cc6fc6bb8114f457c2383743305eb3d5886ddb0d9cc3a4dc3489d75fef2226947660f19624b81b5098
+DIST spideroak-bin-6.0.1_x86.deb 26232394 SHA256 
084013d54c335e74fb853b74f54ac1ca2a90d96338cb6e3dbdf4f83dc718c611 SHA512 
b94363fa66338be4af70ac753c7aac0e80dac6bea2a23310075de4e77c950fb67a63e9c6aa14734f00d49ea8a537b788379d3599dfa874fddc9f7455e805f773
 WHIRLPOOL 
7a735006f179ef1421cc071ebe7118650a6052f5563735beb290021420ef75730f2f105d2606f42a4721d48775eced463e9ca9da58315efae2b9e5c95087bf98
 DIST spideroak-bin-6.0_amd64.deb 26676730 SHA256 
5825635b706da95740e4b2e1d36870d17d0cfd6a8b26ded6116708d9496e0551 SHA512 
9c0cb6195a0c553e0e1e691d4f22950fd826142c526035ac0ef84628a15a17f293dcaed5bf2ab138ddfb94a47265e06906f6b55e78582212672c9dcb503e86f9
 WHIRLPOOL 
d31fb7a4bd3bc3a49d0a7241bd4bd723ccee28b784ddfbf75c598638bf47dbc0fc75edbdcb5134ea2574f5897d399a79fe42d59a22b41bdc31c63c9fe48f28e0
 DIST spideroak-bin-6.0_x86.deb 26196770 SHA256 
0d655cddc6201188f7bb04d46774bdca42ca6e9958ed458a1bf89bc53485fc58 SHA512 
692418c59462f53930583df01bc5f31520b33d10f9bf616cca6bffcea425d667f65e194c4d40c8357822895f7f54e42f747b25e1dd9af522ab44cec940a66c45
 WHIRLPOOL 
a963aa5a05e85fd55d53849d09099aa585b481c2c9f4756f3d4a7e2c17edd5375da12c669341073453f9a62e471c9121a92008a90288a20b10c75f323885d4d5

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.0.1.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.0.1.ebuild
new file mode 100644
index 000..f6b262a
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-6.0.1.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils unpacker
+
+SRC_URI_BASE="https://spideroak.com/getbuild?platform=ubuntu";
+
+DESCRIPTION="An easy, secure and consolidated free online backup, storage, 
access and sharing system"
+HOMEPAGE="https://spideroak.com";
+SRC_URI="x86? ( ${SRC_URI_BASE}&arch=i386&version=${PV} -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}&arch=x86_64&version=${PV} -> ${P}_amd64.deb )"
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2015-08-18 Thread Anthony G. Basile
commit: 1982454b78140a6fc4578c09212e106907611297
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Aug 18 11:16:58 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Aug 18 11:16:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1982454b

app-backup/spideroak-bin: version bump to 6.0

Gentoo-Bug: 556220

Package-Manager: portage-2.2.20.1

 app-backup/spideroak-bin/Manifest |  2 +
 app-backup/spideroak-bin/spideroak-bin-6.0.ebuild | 94 +++
 2 files changed, 96 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index d1671d4..48cf281 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -4,3 +4,5 @@ DIST spideroak-bin-5.1.8_amd64.deb 2116 SHA256 
b91f3077c2238bbb1123361afc597
 DIST spideroak-bin-5.1.8_x86.deb 19361954 SHA256 
806aae6ac96cb47443c50bfc3bc3f5f7b00abc0b5d978cc2746d10cb1f6b6742 SHA512 
43242b9fcd577fc51b838de72215fa971f385ae1f6ea7c606cc198b2dacd0bbca9b693ea2452c2c957c3af6dc97625d6bd15176067542dfdcbc1505a50c8b42b
 WHIRLPOOL 
5f88e3b699be60151471c71998b2aad2d7e5a42a1c179ccb10a168940dd4ea291f812e6d6e9eb475345b53f403aa3a09cd785759413a0cf50edc9b92300af14f
 DIST spideroak-bin-5.2.0_amd64.deb 20284404 SHA256 
f9b452f891796fcd1046c4a955d2b4722b0a452b24f8ea728a30833c0a576f32 SHA512 
75a96c6f6f0ec6a14255fc4f3bdad96ba54be4a4ee2ea385159c575e7b0e05bf3cfcfc4b0595a430b4a686acda3cb2674df5959d0b1a3ddc609a590d7737d94e
 WHIRLPOOL 
c6045af1101008b2ca25df4fd4d34d55b3dcda2187660f3601fbc9a6aa53c7e9ad3d59fffa954c2eb57022a46ecf04a42f39577914fc01dbe2c46c4c5e184475
 DIST spideroak-bin-5.2.0_x86.deb 19641884 SHA256 
f4689dcc0630e4b46b039c64a16e291d740cc245b7507863ae5938473f504c30 SHA512 
e98041b98c77e011774abe5b832c9a2ee4ecd179864bd39aacdb439f906110797f9f96e7326a394a6da0cbb88650c242da51060b501de0c379a0efdb75594403
 WHIRLPOOL 
bf96a2cd8f3bbf6ab2ec26c532546b8c40dda09a1902075332fb2c8787af4a4a1808094fb6e7fb90f27c9da2d480b1129e235fa656c76bd1acbfd3b8bbda90d5
+DIST spideroak-bin-6.0_amd64.deb 26676730 SHA256 
5825635b706da95740e4b2e1d36870d17d0cfd6a8b26ded6116708d9496e0551 SHA512 
9c0cb6195a0c553e0e1e691d4f22950fd826142c526035ac0ef84628a15a17f293dcaed5bf2ab138ddfb94a47265e06906f6b55e78582212672c9dcb503e86f9
 WHIRLPOOL 
d31fb7a4bd3bc3a49d0a7241bd4bd723ccee28b784ddfbf75c598638bf47dbc0fc75edbdcb5134ea2574f5897d399a79fe42d59a22b41bdc31c63c9fe48f28e0
+DIST spideroak-bin-6.0_x86.deb 26196770 SHA256 
0d655cddc6201188f7bb04d46774bdca42ca6e9958ed458a1bf89bc53485fc58 SHA512 
692418c59462f53930583df01bc5f31520b33d10f9bf616cca6bffcea425d667f65e194c4d40c8357822895f7f54e42f747b25e1dd9af522ab44cec940a66c45
 WHIRLPOOL 
a963aa5a05e85fd55d53849d09099aa585b481c2c9f4756f3d4a7e2c17edd5375da12c669341073453f9a62e471c9121a92008a90288a20b10c75f323885d4d5

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.0.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.0.ebuild
new file mode 100644
index 000..f6b262a
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-6.0.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils unpacker
+
+SRC_URI_BASE="https://spideroak.com/getbuild?platform=ubuntu";
+
+DESCRIPTION="An easy, secure and consolidated free online backup, storage, 
access and sharing system"
+HOMEPAGE="https://spideroak.com";
+SRC_URI="x86? ( ${SRC_URI_BASE}&arch=i386&version=${PV} -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}&arch=x86_64&version=${PV} -> ${P}_amd64.deb )"
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+}
+
+src_install() {
+   #install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   #install the executable
+   exeinto /opt/SpiderOakONE/li