diff options
author | 2016-04-26 13:48:07 -0400 | |
---|---|---|
committer | 2016-04-26 13:49:24 -0400 | |
commit | 6a202f81853ecdefc634a02659168c71d4b2511d (patch) | |
tree | 54b35eeeac4442a96dd0de7bb479a1755878515c /net-wireless/chirp/chirp-99999999.ebuild | |
parent | app-shells/ksh: arm stable, bug #580346 (diff) | |
download | gentoo-6a202f81853ecdefc634a02659168c71d4b2511d.tar.gz gentoo-6a202f81853ecdefc634a02659168c71d4b2511d.tar.bz2 gentoo-6a202f81853ecdefc634a02659168c71d4b2511d.zip |
net-wireless/chirp: finally getting back up to date
Package-Manager: portage-2.2.28
Diffstat (limited to 'net-wireless/chirp/chirp-99999999.ebuild')
-rw-r--r-- | net-wireless/chirp/chirp-99999999.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net-wireless/chirp/chirp-99999999.ebuild b/net-wireless/chirp/chirp-99999999.ebuild new file mode 100644 index 000000000000..ab8103751e3e --- /dev/null +++ b/net-wireless/chirp/chirp-99999999.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +if [[ ${PV} == "99999999" ]] ; then + SCM=mercurial + EHG_REPO_URI="http://d-rats.com/hg/chirp.hg" +fi + +inherit distutils-r1 ${SCM} + +DESCRIPTION="Free open-source tool for programming your amateur radio" +HOMEPAGE="http://chirp.danplanet.com" + +if [[ ${PV} == "99999999" ]] ; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~x86" + SRC_URI="http://trac.${PN}.danplanet.com/${PN}_daily/daily-${PV}/${PN}-daily-${PV}.tar.gz" + S="${WORKDIR}/${PN}-daily-${PV}" + RESTRICT="test" +fi +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +DEPEND="dev-python/pyserial + dev-libs/libxml2[python]" +RDEPEND="${DEPEND} + dev-python/pygtk" + +src_prepare() { + sed -i -e "/share\/doc\/chirp/d" setup.py || die + distutils-r1_src_prepare +} + +python_test() { + pushd tests > /dev/null + "${PYTHON}" run_tests || die + popd > /dev/null +} |