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.5.3.ebuild ChangeLog
Date: Thu, 30 May 2013 00:28:14
Message-Id: 20130530002810.EC55D2171D@flycatcher.gentoo.org
1 zerochaos 13/05/30 00:28:10
2
3 Modified: ChangeLog
4 Added: uhd-3.5.3.ebuild
5 Log:
6 now with more version bump
7
8 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
9
10 Revision Changes Path
11 1.7 net-wireless/uhd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-wireless/uhd/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 27 Dec 2012 04:53:40 -0000 1.6
24 +++ ChangeLog 30 May 2013 00:28:10 -0000 1.7
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-wireless/uhd
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/uhd/ChangeLog,v 1.6 2012/12/27 04:53:40 zerochaos Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/uhd/ChangeLog,v 1.7 2013/05/30 00:28:10 zerochaos Exp $
31 +
32 +*uhd-3.5.3 (30 May 2013)
33 +
34 + 30 May 2013; Rick Farina <zerochaos@g.o> +uhd-3.5.3.ebuild:
35 + now with more version bump
36
37 *uhd-3.5.0 (27 Dec 2012)
38
39
40
41
42 1.1 net-wireless/uhd/uhd-3.5.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/uhd-3.5.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/uhd/uhd-3.5.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: uhd-3.5.3.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-wireless/uhd/uhd-3.5.3.ebuild,v 1.1 2013/05/30 00:28:10 zerochaos Exp $
52
53 EAPI=4
54 PYTHON_DEPEND="2:2.6"
55 inherit versionator python cmake-utils
56
57 DESCRIPTION="Universal Software Radio Peripheral (USRP) Hardware Driver"
58 HOMEPAGE="http://code.ettus.com/redmine/ettus/projects/uhd/wiki"
59
60 image_version=uhd-images_00$(get_version_component_range 1).00$(get_version_component_range 2).000-release
61 SRC_URI="https://github.com/EttusResearch/UHD-Mirror/tarball/release_00$(get_version_component_range 1)_00$(get_version_component_range 2)_00$(get_version_component_range 3) -> EttusResearch-UHD-Mirror-$(get_version_component_range 1).$(get_version_component_range 2).$(get_version_component_range 3).tar.gz \
62 http://files.ettus.com/binaries/maint_images/archive/${image_version}.tar.gz"
63 #https://github.com/EttusResearch/UHD-Mirror/tags
64 #http://files.ettus.com/binaries/master_images/archive
65 KEYWORDS="~amd64 ~x86"
66 S="${WORKDIR}"/EttusResearch-UHD-Mirror-f4c5812/host
67
68 LICENSE="GPL-3"
69 SLOT="0"
70 IUSE=""
71 RDEPEND="virtual/libusb:1
72 dev-libs/boost"
73 DEPEND="${RDEPEND}
74 dev-python/cheetah"
75
76 pkg_setup() {
77 python_set_active_version 2
78 python_pkg_setup
79 }
80
81 src_prepare() {
82 #this may not be needed in 3.4.3 and above, please verify
83 sed -i 's#SET(PKG_LIB_DIR ${PKG_DATA_DIR})#SET(PKG_LIB_DIR ${LIBRARY_DIR}/uhd)#g' CMakeLists.txt
84 }
85
86 src_install() {
87 cmake-utils_src_install
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 }