From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/synology-cloud-station-backup/
Date: Sun, 31 May 2020 12:42:39 +0000 (UTC) [thread overview]
Message-ID: <1590928939.e2660ff772c1e0ecc742f3d591ad1657718ab4ea.pacho@gentoo> (raw)
commit: e2660ff772c1e0ecc742f3d591ad1657718ab4ea
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun May 31 11:23:33 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun May 31 12:42:19 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2660ff7
app-backup/synology-cloud-station-backup: Bump to 4469
Also this package installs prebuilt stuff
Closes: https://bugs.gentoo.org/726386
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
app-backup/synology-cloud-station-backup/Manifest | 2 +
.../synology-cloud-station-backup-4469.ebuild | 46 ++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/app-backup/synology-cloud-station-backup/Manifest b/app-backup/synology-cloud-station-backup/Manifest
index 355182f95be..71c8ffa9b25 100644
--- a/app-backup/synology-cloud-station-backup/Manifest
+++ b/app-backup/synology-cloud-station-backup/Manifest
@@ -1,2 +1,4 @@
DIST synology-cloud-station-backup-4450.i686.deb 70673598 BLAKE2B 99cba6612e778d3639439f5c59037c87bdd03f87f8c19f1f33d4ef6548341481c3326cd3c5eb97aaea9cb966bad8047d6e3f300c5cf6730a14f8b4b1822fa4cb SHA512 e2321180f9de3736e1ec7020b7dca6092cf85a90ae3fe795a6da4825e9a9989e9b6a268072d831cf8cd4f73557728f79a42c4ff86726737234c50f2503e6b93b
DIST synology-cloud-station-backup-4450.x86_64.deb 71439298 BLAKE2B 09743a246d95e95f283575a50cead5600dc03068e19e92b8c0d965275efd9fdb633ac7be6648a97137eacb988a9bfa33d74682c8e6c582e39d7f09b608065ba2 SHA512 dda1ec9368f1292b2bdd46dec57b4f228166bf55e41acb584a2090df5158724dbb4b8aac3d62b51ffdbb0c93350f8300c14f932705e707521288cf8e2dd04448
+DIST synology-cloud-station-backup-4469.i686.deb 70695418 BLAKE2B 890273fcb17f538fa83d78d4e127b8d74225d57aca43f26ba9c21da3c0d36ab7aaff7365b4540caa763ea9bdfbdee847dabcfb0ffb583d16d1d6223100d7ccf2 SHA512 1c9c346d778395fa678a99fc133d93d6f0fa2c623eb06b8164e717974a6c611197175b626cbff10bbcd2e944bc56a5bb4a168a6fc25f6603b33c5b95ac13b357
+DIST synology-cloud-station-backup-4469.x86_64.deb 71454138 BLAKE2B 6e819d0d339034db0f543d26ce42eb344da63094261a8b14edfc9e78185bcb5be283f8aebfcac61c23166c59016074df9494947efb859ea15b49536e650f2195 SHA512 19199377e82eb8cf0d429de756fd5b47ea64f70c5094263f104c186bf847cc2f95930add5f604f5a0d16680c07d55e79d26191697ff28ffbdc86c43b7d039c18
diff --git a/app-backup/synology-cloud-station-backup/synology-cloud-station-backup-4469.ebuild b/app-backup/synology-cloud-station-backup/synology-cloud-station-backup-4469.ebuild
new file mode 100644
index 00000000000..9abae19231c
--- /dev/null
+++ b/app-backup/synology-cloud-station-backup/synology-cloud-station-backup-4469.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit xdg
+
+SVER="4.3.3"
+
+DESCRIPTION="Back up your files from multiple client computers to a centralized Synology NAS"
+HOMEPAGE="https://www.synology.com/en-global/releaseNote/CloudStationBackup"
+SRC_URI="
+ amd64? ( https://global.download.synology.com/download/Tools/CloudStationBackup/${SVER}-${PV}/Ubuntu/Installer/x86_64/synology-cloud-station-backup-${PV}.x86_64.deb )
+ x86? ( https://global.download.synology.com/download/Tools/CloudStationBackup/${SVER}-${PV}/Ubuntu/Installer/i686/synology-cloud-station-backup-${PV}.i686.deb )
+"
+
+LICENSE="Synology"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+RESTRICT="bindist mirror strip"
+QA_PREBUILT="*"
+
+S="${WORKDIR}"
+
+src_unpack() {
+ default
+ unpack "${WORKDIR}"/data.tar.xz
+
+ # Allow provided docs are useless
+ rm -r usr/share/doc || die
+}
+
+src_install() {
+ insinto /
+ doins -r opt/
+ doins -r usr/
+
+ # Fix permissions
+ chmod +x "${ED}"/usr/bin/* || die
+ chmod +x "${ED}"/opt/Synology/CloudStationBackup/bin/* || die
+}
next reply other threads:[~2020-05-31 12:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-31 12:42 Pacho Ramos [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-05-31 12:42 [gentoo-commits] repo/gentoo:master commit in: app-backup/synology-cloud-station-backup/ Pacho Ramos
2020-02-22 16:02 Pacho Ramos
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1590928939.e2660ff772c1e0ecc742f3d591ad1657718ab4ea.pacho@gentoo \
--to=pacho@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox