Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/pybitmessage/
Date: Sun, 27 May 2018 19:54:12
Message-Id: 1527450812.d794647f93d6c4c32dea2de201c6ceafe1a3f123.asturm@gentoo
1 commit: d794647f93d6c4c32dea2de201c6ceafe1a3f123
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 27 18:57:33 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 27 19:53:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d794647f
7
8 net-p2p/pybitmessage: Drop 0.4.2 (effectively destabilise)
9
10 Depends on dev-python/PyQt4 and upstream is still not ported.
11 Provided snapshot is a pending PR not yet upstream.
12 Drop stable - package has no maintainer so don't pretend otherwise.
13
14 Closes: https://bugs.gentoo.org/653738
15 Package-Manager: Portage-2.3.40, Repoman-2.3.9
16
17 net-p2p/pybitmessage/Manifest | 1 -
18 net-p2p/pybitmessage/pybitmessage-0.4.2.ebuild | 73 --------------------------
19 2 files changed, 74 deletions(-)
20
21 diff --git a/net-p2p/pybitmessage/Manifest b/net-p2p/pybitmessage/Manifest
22 index bcf46b4adec..f070c51d948 100644
23 --- a/net-p2p/pybitmessage/Manifest
24 +++ b/net-p2p/pybitmessage/Manifest
25 @@ -1,2 +1 @@
26 -DIST pybitmessage-0.4.2.tar.gz 547565 BLAKE2B 8cb7bc0407601f06c5d0040fa03372e95c34e21aed79021001f7067b3340c60a08f7ab7d2c6578e78e1f7bf09a5adc5805252a27cf8e1bda27de6d1495382e35 SHA512 5e783243db4f507ec221092f6da18d25bb15a8c83f28aab7c1796a063d2608c0115c9d636cc73b66a09264a4ff69dda9ba373eff81640b1dd9595100dcdc4917
27 DIST pybitmessage-0.6.3.2_p20180521.tar.gz 1102349 BLAKE2B 346834ba6a6f7805ad79e95137b922b74963dd2c9da1b978e6e161be1e82b8465443ba1de255a6ab3c909c7ee1328509123eaf129dbafa13ec8c0d9f8291c93b SHA512 ef7e64e67cd6438fea1835db26c6ab71af004e1f6a7fb2cb8681674024a1addaeef1a31d959b1f0d3e502d8b96b3c07c6b6e0840e86dff12768ecd36e4fdf026
28
29 diff --git a/net-p2p/pybitmessage/pybitmessage-0.4.2.ebuild b/net-p2p/pybitmessage/pybitmessage-0.4.2.ebuild
30 deleted file mode 100644
31 index b9c9b12407d..00000000000
32 --- a/net-p2p/pybitmessage/pybitmessage-0.4.2.ebuild
33 +++ /dev/null
34 @@ -1,73 +0,0 @@
35 -# Copyright 1999-2016 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=5
39 -
40 -PYTHON_COMPAT=( python2_7 )
41 -PYTHON_REQ_USE="sqlite"
42 -
43 -inherit eutils python-r1 gnome2-utils
44 -
45 -DESCRIPTION="P2P communications protocol"
46 -HOMEPAGE="https://bitmessage.org"
47 -SRC_URI="https://github.com/Bitmessage/PyBitmessage/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -KEYWORDS="amd64 x86"
52 -IUSE=""
53 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
54 -
55 -DEPEND="${PYTHON_DEPS}"
56 -RDEPEND="${DEPEND}
57 - dev-libs/openssl[-bindist]
58 - dev-python/PyQt4[${PYTHON_USEDEP}]"
59 -
60 -S=${WORKDIR}/PyBitmessage-${PV}
61 -
62 -src_compile() { :; }
63 -
64 -src_install () {
65 - cat >> "${T}"/${PN}-wrapper <<-EOF
66 - #!/usr/bin/env python
67 - import os
68 - import sys
69 - sys.path.append("@SITEDIR@")
70 - os.chdir("@SITEDIR@")
71 - os.execl('@PYTHON@', '@EPYTHON@', '@SITEDIR@/bitmessagemain.py')
72 - EOF
73 -
74 - touch src/__init__.py || die
75 -
76 - install_python() {
77 - python_moduleinto ${PN}
78 - python_domodule src/*
79 - sed \
80 - -e "s#@SITEDIR@#$(python_get_sitedir)/${PN}#" \
81 - -e "s#@EPYTHON@#${EPYTHON}#" \
82 - -e "s#@PYTHON@#${PYTHON}#" \
83 - "${T}"/${PN}-wrapper > ${PN} || die
84 - python_doscript ${PN}
85 - }
86 -
87 - python_foreach_impl install_python
88 -
89 - dodoc README.md debian/changelog
90 - doman man/*
91 -
92 - newicon -s 24 desktop/icon24.png ${PN}.png
93 - newicon -s scalable desktop/can-icon.svg ${PN}.svg
94 - domenu desktop/${PN}.desktop
95 -}
96 -
97 -pkg_preinst() {
98 - gnome2_icon_savelist
99 -}
100 -
101 -pkg_postinst() {
102 - gnome2_icon_cache_update
103 -}
104 -
105 -pkg_postrm() {
106 - gnome2_icon_cache_update
107 -}