Gentoo Archives: gentoo-commits

From: "Richard Farina (zerochaos)" <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-wireless/uhd: uhd-3.8.0.ebuild ChangeLog uhd-3.7.1.ebuild
Date: Wed, 29 Oct 2014 16:54:30
Message-Id: 20141029165424.A2B65902C@oystercatcher.gentoo.org
1 zerochaos 14/10/29 16:54:24
2
3 Modified: ChangeLog
4 Added: uhd-3.8.0.ebuild
5 Removed: uhd-3.7.1.ebuild
6 Log:
7 version bump and new deps per depcheck
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
10
11 Revision Changes Path
12 1.14 net-wireless/uhd/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/ChangeLog?rev=1.14&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/ChangeLog?rev=1.14&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/ChangeLog?r1=1.13&r2=1.14
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-wireless/uhd/ChangeLog,v
21 retrieving revision 1.13
22 retrieving revision 1.14
23 diff -u -r1.13 -r1.14
24 --- ChangeLog 22 Aug 2014 16:42:29 -0000 1.13
25 +++ ChangeLog 29 Oct 2014 16:54:24 -0000 1.14
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-wireless/uhd
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/uhd/ChangeLog,v 1.13 2014/08/22 16:42:29 zerochaos Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/uhd/ChangeLog,v 1.14 2014/10/29 16:54:24 zerochaos Exp $
31 +
32 +*uhd-3.8.0 (29 Oct 2014)
33 +
34 + 29 Oct 2014; Rick Farina <zerochaos@g.o> +uhd-3.8.0.ebuild,
35 + -uhd-3.7.1.ebuild:
36 + version bump and new deps per depcheck
37
38 *uhd-3.7.2 (22 Aug 2014)
39
40
41
42
43 1.1 net-wireless/uhd/uhd-3.8.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/uhd-3.8.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/uhd-3.8.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: uhd-3.8.0.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-wireless/uhd/uhd-3.8.0.ebuild,v 1.1 2014/10/29 16:54:24 zerochaos Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=( python2_7 )
56 inherit versionator python-single-r1 cmake-utils multilib
57
58 DESCRIPTION="Universal Software Radio Peripheral (USRP) Hardware Driver"
59 HOMEPAGE="http://code.ettus.com/redmine/ettus/projects/uhd/wiki"
60
61 image_version=uhd-images_00$(get_version_component_range 1).00$(get_version_component_range 2).00$(get_version_component_range 3)-release
62 SRC_URI="https://github.com/EttusResearch/uhd/archive/release_00$(get_version_component_range 1)_00$(get_version_component_range 2)_00$(get_version_component_range 3).tar.gz -> EttusResearch-UHD-$(get_version_component_range 1).$(get_version_component_range 2).$(get_version_component_range 3).tar.gz \
63 http://files.ettus.com/binaries/images/${image_version}.tar.gz"
64 #https://github.com/EttusResearch/UHD-Mirror/tags
65 #http://files.ettus.com/binaries/images/
66 KEYWORDS="~amd64 ~arm ~x86"
67 S="${WORKDIR}"/uhd-release_00$(get_version_component_range 1)_00$(get_version_component_range 2)_00$(get_version_component_range 3)/host
68
69 LICENSE="GPL-3"
70 SLOT="0/1"
71 IUSE=""
72 RDEPEND="virtual/libusb:1
73 dev-lang/orc
74 dev-libs/boost:=
75 sys-libs/ncurses
76 "
77 DEPEND="${RDEPEND}
78 dev-python/cheetah"
79
80 src_prepare() {
81 #this may not be needed in 3.4.3 and above, please verify
82 sed -i 's#SET(PKG_LIB_DIR ${PKG_DATA_DIR})#SET(PKG_LIB_DIR ${LIBRARY_DIR}/uhd)#g' CMakeLists.txt || die
83 }
84
85 src_install() {
86 cmake-utils_src_install
87 python_fix_shebang "${ED}"/usr/$(get_libdir)/${PN}/utils/
88 insinto /lib/udev/rules.d/
89 doins "${S}"/utils/uhd-usrp.rules
90 insinto /usr/share/${PN}
91 doins -r "${WORKDIR}"/"${image_version}"/share/uhd/images
92 }