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: Tue, 08 Jun 2021 19:17:02
Message-Id: 1623179815.f6c9f8ddad2e3edd98a520693ace9e60a31de68b.slashbeast@gentoo
1 commit: f6c9f8ddad2e3edd98a520693ace9e60a31de68b
2 Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 8 19:16:16 2021 +0000
4 Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 8 19:16:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c9f8dd
7
8 net-p2p/nicotine+: 3.0.6 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.0.6.ebuild | 41 ++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/net-p2p/nicotine+/Manifest b/net-p2p/nicotine+/Manifest
17 index 332effcd826..ab1551bb4f5 100644
18 --- a/net-p2p/nicotine+/Manifest
19 +++ b/net-p2p/nicotine+/Manifest
20 @@ -1,3 +1,4 @@
21 DIST nicotine+-2.2.2.tar.gz 3373462 BLAKE2B 6dbcf4e9d7f85bb2e03194047c8ca9c374ae762967414d888e764e84b25682148245cf84c27ab967279f4ac5e3bad680a7920d3da7896e61d12413194c9ad207 SHA512 5d863b94d1a899701f3d6cd98d875a4ca782778b00d77fe3c490af59168592011a83f823feac6c0e71bdd4c5cfd743e023066d542d8778b68854344b73c322a1
22 DIST nicotine+-3.0.2.tar.gz 3126152 BLAKE2B 8575c61fc32083e687eac841e403366c516e0420c792bad2bf31b49b83dd80d2b99ace20879f7968dffd0d48e52bc6c6638300216b4eae44773c0723888ca96e SHA512 297aab9b6016df4b45e065d5e6493e237e99ef6ebbd475b7ccf66d2c476053f77c72c2ecd672c20046b422dc1f5eb431e701de687d33f2364619de5643ccef6d
23 DIST nicotine+-3.0.4.tar.gz 3141967 BLAKE2B d58072026ee766d81ca88dd4a11aa72f7aaee7a6e37c966e7d4cd0bdee40c8ef6537f01ea92c006b12e9692612d63fffd744011b982ee4cada2df03d2abae064 SHA512 8cc02b8b269267cc775b21ec246d84b932c1c7ef8f0983c63e3bb21de5b4c0de5fa65acdb0a07240b90c3529648f500d43fffbc0a462a260e534e86653a332a8
24 +DIST nicotine+-3.0.6.tar.gz 2786594 BLAKE2B 69b43c3eec37c8a01a0bd42cd11c02580a5be9ca994106e34e7f588eaabb7cfa85fd312bd527d453e62b3f8c0fb4f031eedf06207e3c1d8602e822958d98ee65 SHA512 42846568948d45559206c85c7ed708be044a5cf55f994318c209506dcc9024d6ccfd141fa21ca57f00c320a1a5ec3ab09faf211ebd442bf1d5060b960f43e8c2
25
26 diff --git a/net-p2p/nicotine+/nicotine+-3.0.6.ebuild b/net-p2p/nicotine+/nicotine+-3.0.6.ebuild
27 new file mode 100644
28 index 00000000000..3717d1e247d
29 --- /dev/null
30 +++ b/net-p2p/nicotine+/nicotine+-3.0.6.ebuild
31 @@ -0,0 +1,41 @@
32 +# Copyright 1999-2021 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 +}