Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: net-p2p/bisq/
Date: Sun, 30 May 2021 14:47:15
Message-Id: 1622311358.1235d423d6e74f058c825737436922894cfd186a.andrewammerlaan@gentoo
1 commit: 1235d423d6e74f058c825737436922894cfd186a
2 Author: Emil Jacobs <emil <AT> emiljacobs <DOT> nl>
3 AuthorDate: Sat May 29 18:01:25 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Sat May 29 18:02:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1235d423
7
8 net-p2p/bisq: 1.6.5 update
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Emil Jacobs <emil <AT> emiljacobs.nl>
12
13 net-p2p/bisq/Manifest | 1 +
14 net-p2p/bisq/bisq-1.6.5.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/net-p2p/bisq/Manifest b/net-p2p/bisq/Manifest
18 index ae0f879c7..908cfccdf 100644
19 --- a/net-p2p/bisq/Manifest
20 +++ b/net-p2p/bisq/Manifest
21 @@ -1 +1,2 @@
22 DIST Bisq-64bit-1.6.4.deb 164491680 BLAKE2B 70cb40cb3577168ffc9e09a099b264af2d8a38d25701ed54f302d92a6380de73b26791c0bd579462ca89f15082c99a90d48884b153068e02758a6943c0d7662b SHA512 81f6405a70eb0eecb56575bfbf0567d353d0835f707830f141480749fb917c2ebc0deb2438a79ca94ad5ef6aa87f3c1d61343b9e1a3d53fb0d29bd131631e9e1
23 +DIST Bisq-64bit-1.6.5.deb 168159296 BLAKE2B a21dc433b9b92a88538580da5a693d2a4440265edf099d40f13b73882eeff6b38fea481e255f11a12473f28247df3824e63dfd68cfbef695fb80b5393bd955b9 SHA512 32da5f7bdf89eb3dc9b7c08df4199a4fe8272e1006d42cbbde1ea1802bfec98493e9e879e2331fa056c21e4f0c3f31285e0cdf9360ec97a25f968da906d05c29
24
25 diff --git a/net-p2p/bisq/bisq-1.6.5.ebuild b/net-p2p/bisq/bisq-1.6.5.ebuild
26 new file mode 100644
27 index 000000000..62cd8d7ba
28 --- /dev/null
29 +++ b/net-p2p/bisq/bisq-1.6.5.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 2019-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit desktop unpacker xdg
37 +
38 +DESCRIPTION="The decentralized bitcoin exchange (non-atomic, with arbitration)"
39 +HOMEPAGE="https://bisq.network/ https://github.com/bisq-network/exchange/"
40 +SRC_URI="https://bisq.network/downloads/v${PV}/Bisq-64bit-${PV}.deb"
41 +
42 +LICENSE="AGPL-3"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +
46 +DEPEND="
47 + dev-java/openjfx
48 + net-libs/libnet
49 + virtual/jre:*
50 + x11-libs/gtk+:3"
51 +
52 +RESTRICT="mirror strip"
53 +
54 +# Bundled java, and seems to mostly work without an old ffmpeg
55 +QA_PREBUILT="opt/Bisq/Bisq opt/Bisq/libpackager.so opt/Bisq/runtime/*"
56 +REQUIRES_EXCLUDE="libgstreamer-lite.so libavplugin-53.so libavplugin-54.so libavplugin-55.so libavplugin-56.so libavplugin-57.so libavplugin-ffmpeg-56.so libavplugin-ffmpeg-57.so"
57 +
58 +S="${WORKDIR}"
59 +
60 +src_compile() {
61 + :
62 +}
63 +
64 +src_install() {
65 + cp -ar "${S}"/opt/bisq "${ED}"/opt/
66 + dosym ../Bisq/Bisq /opt/bisq/bin/Bisq
67 + domenu opt/bisq/lib/bisq-Bisq.desktop
68 + doicon opt/bisq/lib/Bisq.png
69 +}