Gentoo Archives: gentoo-commits

From: "Alexys Jacob (ultrabug)" <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/rabbitmq-c: ChangeLog rabbitmq-c-0.5.0.ebuild
Date: Sun, 04 May 2014 13:56:00
Message-Id: 20140504135555.B09AF2004C@flycatcher.gentoo.org
1 ultrabug 14/05/04 13:55:55
2
3 Modified: ChangeLog
4 Added: rabbitmq-c-0.5.0.ebuild
5 Log:
6 version bump fix #480962 thx to Matt Whitlock
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
9
10 Revision Changes Path
11 1.2 net-libs/rabbitmq-c/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rabbitmq-c/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rabbitmq-c/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rabbitmq-c/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/rabbitmq-c/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 14 Mar 2013 18:50:36 -0000 1.1
24 +++ ChangeLog 4 May 2014 13:55:55 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-libs/rabbitmq-c
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rabbitmq-c/ChangeLog,v 1.1 2013/03/14 18:50:36 olemarkus Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/rabbitmq-c/ChangeLog,v 1.2 2014/05/04 13:55:55 ultrabug Exp $
31 +
32 +*rabbitmq-c-0.5.0 (04 May 2014)
33 +
34 + 04 May 2014; Ultrabug <ultrabug@g.o> +rabbitmq-c-0.5.0.ebuild:
35 + version bump fix #480962 thx to Matt Whitlock
36
37 *rabbitmq-c-0.3.0 (14 Mar 2013)
38
39
40
41
42 1.1 net-libs/rabbitmq-c/rabbitmq-c-0.5.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rabbitmq-c/rabbitmq-c-0.5.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rabbitmq-c/rabbitmq-c-0.5.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: rabbitmq-c-0.5.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/rabbitmq-c/rabbitmq-c-0.5.0.ebuild,v 1.1 2014/05/04 13:55:55 ultrabug Exp $
52
53 EAPI="5"
54
55 inherit cmake-utils eutils multilib
56
57 DESCRIPTION="RabbitMQ C client"
58 HOMEPAGE="https://github.com/alanxz/rabbitmq-c"
59
60 if [[ ${PV} == *9999* ]]; then
61 inherit git-2
62 EGIT_REPO_URI="git://github.com/alanxz/rabbitmq-c.git"
63 KEYWORDS="-*"
64 else
65 SRC_URI="https://github.com/alanxz/rabbitmq-c/archive/v${PV}.zip -> ${PN}-v${PV}.zip"
66 KEYWORDS="~amd64 ~x86"
67 fi
68
69 LICENSE="MIT"
70 SLOT="0"
71 IUSE="tools"
72
73 DEPEND=""
74 RDEPEND="${DEPEND}"
75 DOCS=( "AUTHORS" "README.md" "THANKS" "TODO" )
76
77 src_unpack() {
78 if [[ ${PV} == *9999* ]]; then
79 git-2_src_unpack
80 else
81 unpack ${A}
82 fi
83 }
84
85 src_configure() {
86 mycmakeargs=(
87 -DCMAKE_SKIP_RPATH=ON
88 $(cmake-utils_use tools BUILD_TOOLS)
89 $(cmake-utils_use tools BUILD_TOOLS_DOCS)
90 )
91 cmake-utils_src_configure
92 }