diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-04-22 14:27:56 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-04-22 15:41:32 +0200 |
commit | c23d5c027ee34114d4ed6b0ebad569d49e3f3c80 (patch) | |
tree | ae312444cc2e9048de808e404e6db47ff4343088 /net-p2p | |
parent | net-p2p/pybitmessage: metadata indentation (diff) | |
download | gentoo-c23d5c027ee34114d4ed6b0ebad569d49e3f3c80.tar.gz gentoo-c23d5c027ee34114d4ed6b0ebad569d49e3f3c80.tar.bz2 gentoo-c23d5c027ee34114d4ed6b0ebad569d49e3f3c80.zip |
net-p2p/pybitmessage: Drop 0.6.3.2 'without' PyQt4 support
Apparently it does not make much sense like that.
Bug: https://bugs.gentoo.org/653738
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/pybitmessage/Manifest | 1 | ||||
-rw-r--r-- | net-p2p/pybitmessage/pybitmessage-0.6.3.2-r1.ebuild | 72 |
2 files changed, 0 insertions, 73 deletions
diff --git a/net-p2p/pybitmessage/Manifest b/net-p2p/pybitmessage/Manifest index a3db1c04538b..b39bcf19e391 100644 --- a/net-p2p/pybitmessage/Manifest +++ b/net-p2p/pybitmessage/Manifest @@ -1,3 +1,2 @@ DIST pybitmessage-0.4.2.tar.gz 547565 BLAKE2B 8cb7bc0407601f06c5d0040fa03372e95c34e21aed79021001f7067b3340c60a08f7ab7d2c6578e78e1f7bf09a5adc5805252a27cf8e1bda27de6d1495382e35 SHA512 5e783243db4f507ec221092f6da18d25bb15a8c83f28aab7c1796a063d2608c0115c9d636cc73b66a09264a4ff69dda9ba373eff81640b1dd9595100dcdc4917 -DIST pybitmessage-0.6.3.2.tar.gz 1118048 BLAKE2B 56245d2b6126fd0b325f20a829d4aa3d89d74fed48863ba236c74b33b074be5c88fd7d70bd08a9b4a1499aaf7e414f55c2f5ca93dca5769eaaf90c2082bc0cac SHA512 57bdbf10417973b4414f1a184b375a2dd6db1a07a6bc5596b5d256589eeae3c7343692be0f0aa681244c550d2b2d91773d9383d97c56eb48562d8099908c0261 DIST pybitmessage-0.6.3.2_p20180326.tar.gz 1102343 BLAKE2B 55d1458858c1431f341feae10b151590bf8dc577d5a52e5ddfbb629853373339f80d0fb9a855cc82deb50ee952d7a356c0140b67ed1d28108a5c8f19d3b97305 SHA512 836dc5a2fbea96bd46bd50e6462ccb118f22591e9d838af80f05bcce3efa8434942b112725a0b5b161d9c0a544520931e56cfc01c33ea4d231bdc02c112c5894 diff --git a/net-p2p/pybitmessage/pybitmessage-0.6.3.2-r1.ebuild b/net-p2p/pybitmessage/pybitmessage-0.6.3.2-r1.ebuild deleted file mode 100644 index 68a4ee0e45d9..000000000000 --- a/net-p2p/pybitmessage/pybitmessage-0.6.3.2-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) - -# See https://github.com/Bitmessage/PyBitmessage/pull/952 for -# why ipv6 is needed at the moment. -PYTHON_REQ_USE="ipv6,sqlite" - -inherit distutils-r1 gnome2-utils - -MY_PN="PyBitmessage" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="P2P communications protocol" -HOMEPAGE="https://bitmessage.org/" -SRC_URI="https://github.com/Bitmessage/${MY_PN}/archive/${PV}.tar.gz - -> ${P}.tar.gz" -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="libressl ncurses opencl sound" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="${PYTHON_DEPS}" - -# Some of these can be determined from src/depends.py. -# The sound deps were found in src/bitmessageqt/__init__.py. -# And src/openclpow.py imports numpy directly, so throw that in too. -# -# All of the dependencies that are behind USE flags are detected -# and enabled automagically, so maybe it would be better if we -# required them unconditionally? -RDEPEND="${DEPEND} - dev-python/msgpack[${PYTHON_USEDEP}] - !libressl? ( dev-libs/openssl:0[-bindist] ) - libressl? ( dev-libs/libressl ) - ncurses? ( dev-python/pythondialog[${PYTHON_USEDEP}] ) - opencl? ( - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pyopencl[${PYTHON_USEDEP}] - ) - sound? ( || ( - media-sound/gst123 - media-sound/alsa-utils - media-sound/mpg123 - ) )" - -S="${WORKDIR}/${MY_P}" - -python_prepare_all() { - # allow useage of renamed msgpack - sed -i '/msgpack-python/d' setup.py || die - distutils-r1_python_prepare_all -} - -src_install () { - distutils-r1_src_install - dodoc README.md - - # The man page is not installed because it's basically empty. -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} |