Gentoo Archives: gentoo-commits

From: Piotr Karbowski <slashbeast@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/nicotine+/
Date: Sat, 04 Jun 2022 19:48:49
Message-Id: 1654372123.1e09ad93d84c4ca15cc034d6d0325bff6b89cdad.slashbeast@gentoo
1 commit: 1e09ad93d84c4ca15cc034d6d0325bff6b89cdad
2 Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 19:47:57 2022 +0000
4 Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 19:48:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e09ad93
7
8 net-p2p/nicotine+: 3.2.2 version bump.
9
10 Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
11
12 net-p2p/nicotine+/Manifest | 1 +
13 net-p2p/nicotine+/nicotine+-3.2.2.ebuild | 41 ++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/net-p2p/nicotine+/Manifest b/net-p2p/nicotine+/Manifest
17 index 599af45b169a..b59a27aad92c 100644
18 --- a/net-p2p/nicotine+/Manifest
19 +++ b/net-p2p/nicotine+/Manifest
20 @@ -2,3 +2,4 @@ DIST nicotine+-2.2.2.tar.gz 3373462 BLAKE2B 6dbcf4e9d7f85bb2e03194047c8ca9c374ae
21 DIST nicotine+-3.1.1.tar.gz 2775643 BLAKE2B 9c595f8bf2bb4e7c79c3a5a57cadcfea8d2f0df6c89cd93f63f1e5c1117dbe5d85f98ac94c5f7e367e145869e136c701dbf61d1caa270959b29544ab5da17314 SHA512 28eaca5f270176ff5562f693906b4dfef180b91f0113332e3fc1659acaa6bb49e8f956b03612effab14f6833e9e7c00ebca75ca3c49906cd990d1e82e1bb5be3
22 DIST nicotine+-3.2.0.tar.gz 3413614 BLAKE2B 8c63e5a1ee138dd4fbb27aaa160e381d40cf1bad95d86db454de4697ae5b0433309c33f9e6b6da1db2c862225159878fef483cd49f23d4cac14a98f17c43e4f9 SHA512 3c2299b9da44579060825a758cb45cd3a844bda405e99d411f714845c8dd662839d3158ac1ae3e197f4d1da68547ff161c3ed09dd35a95867e78faf0239b3b18
23 DIST nicotine+-3.2.1.tar.gz 3515855 BLAKE2B 5d21c5e725f43e06ad7698909b3c5eaaa984a2aedcfe3fb73886d55a9253d38ab317402781fb9d3e680c89f3dac8865f691233b22b4a13c86cc6b9e88ffa69c8 SHA512 6566ccb2d1355f6dc882c6fe7144da641cd1fd299b1ebd352ccb7e0a770af3ea718d83245c26b38dd0aa4dcd246fcfc0a1e4a94e096c8946a3413b73afb390f7
24 +DIST nicotine+-3.2.2.tar.gz 2868677 BLAKE2B d066f6ca54af627eb20a6bd76db57ece77ce00ca084d7f70efb7168a786a2666121126dc6e62ec9eddebf28ba370e5768a3e771f4ea34cf2073e782b8b74d8e0 SHA512 e8e28b7452a31b7221135e145eb7ee91e30a927a4dbf42bafa7d3380835f2cde4cbf28adc77041b80b6bc4d20d7a5e37043822933468e81dc9ca3458b152666d
25
26 diff --git a/net-p2p/nicotine+/nicotine+-3.2.2.ebuild b/net-p2p/nicotine+/nicotine+-3.2.2.ebuild
27 new file mode 100644
28 index 000000000000..611f799385df
29 --- /dev/null
30 +++ b/net-p2p/nicotine+/nicotine+-3.2.2.ebuild
31 @@ -0,0 +1,41 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{7,8,9} )
38 +
39 +inherit distutils-r1 xdg-utils
40 +
41 +DESCRIPTION="A fork of nicotine, a Soulseek client in Python"
42 +HOMEPAGE="https://github.com/Nicotine-Plus/nicotine-plus"
43 +SRC_URI="https://github.com/Nicotine-Plus/nicotine-plus/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-3 LGPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~ppc ~x86"
48 +IUSE=""
49 +
50 +DEPEND="${PYTHON_DEPS}"
51 +RDEPEND="
52 + dev-python/pygobject:3[${PYTHON_USEDEP}]
53 + x11-libs/gtk+:3[introspection]
54 + ${DEPEND}
55 +"
56 +
57 +DEPEND="${RDEPEND}"
58 +
59 +S="${WORKDIR}/nicotine-plus-${PV}"
60 +
61 +src_install() {
62 + distutils-r1_src_install
63 + mv "${ED}/usr/share/doc/nicotine" "${ED}/usr/share/doc/${PF}" || die
64 +}
65 +
66 +pkg_postinst() {
67 + xdg_icon_cache_update
68 +}
69 +
70 +pkg_postrm() {
71 + xdg_icon_cache_update
72 +}