Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/umurmur: umurmur-0.2.13.ebuild ChangeLog
Date: Fri, 22 Nov 2013 15:11:14
Message-Id: 20131122151106.E72A62004B@flycatcher.gentoo.org
1 hasufell 13/11/22 15:11:06
2
3 Modified: umurmur-0.2.13.ebuild ChangeLog
4 Log:
5 remove broken polarssl useflag
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
8
9 Revision Changes Path
10 1.4 media-sound/umurmur/umurmur-0.2.13.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/umurmur-0.2.13.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/umurmur-0.2.13.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/umurmur-0.2.13.ebuild?r1=1.3&r2=1.4
15
16 Index: umurmur-0.2.13.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/umurmur/umurmur-0.2.13.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- umurmur-0.2.13.ebuild 26 Oct 2013 22:04:02 -0000 1.3
23 +++ umurmur-0.2.13.ebuild 22 Nov 2013 15:11:06 -0000 1.4
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/umurmur/umurmur-0.2.13.ebuild,v 1.3 2013/10/26 22:04:02 pacho Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/umurmur/umurmur-0.2.13.ebuild,v 1.4 2013/11/22 15:11:06 hasufell Exp $
29
30 EAPI=5
31
32 @@ -13,12 +13,11 @@
33 LICENSE="BSD"
34 SLOT="0"
35 KEYWORDS="amd64 ~x86"
36 -IUSE="polarssl"
37 +IUSE=""
38
39 DEPEND=">=dev-libs/protobuf-c-0.14
40 dev-libs/libconfig
41 - polarssl? ( >=net-libs/polarssl-1.0.0 )
42 - !polarssl? ( dev-libs/openssl )"
43 + dev-libs/openssl"
44
45 RDEPEND="${DEPEND}"
46
47 @@ -34,13 +33,7 @@
48 }
49
50 src_configure() {
51 - local myconf
52 -
53 - # build uses polarssl by default, but instead, make it use openssl
54 - # unless polarssl is desired.
55 - use !polarssl && myconf="${myconf} --with-ssl=openssl"
56 -
57 - econf ${myconf}
58 + econf --with-ssl=openssl
59 }
60
61 src_install() {
62 @@ -69,12 +62,4 @@
63
64 pkg_postinst() {
65 readme.gentoo_print_elog
66 -
67 - if use polarssl ; then
68 - elog
69 - elog "Because you have enabled PolarSSL support, umurmurd will use a"
70 - elog "predefined test-certificate and key if none are configured, which"
71 - elog "is insecure. See http://code.google.com/p/umurmur/wiki/Installing02x#Installing_uMurmur_with_PolarSSL_support"
72 - elog "for more information on how to create your certificate and key"
73 - fi
74 }
75
76
77
78 1.6 media-sound/umurmur/ChangeLog
79
80 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/ChangeLog?rev=1.6&view=markup
81 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/ChangeLog?rev=1.6&content-type=text/plain
82 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/umurmur/ChangeLog?r1=1.5&r2=1.6
83
84 Index: ChangeLog
85 ===================================================================
86 RCS file: /var/cvsroot/gentoo-x86/media-sound/umurmur/ChangeLog,v
87 retrieving revision 1.5
88 retrieving revision 1.6
89 diff -u -r1.5 -r1.6
90 --- ChangeLog 26 Oct 2013 22:04:02 -0000 1.5
91 +++ ChangeLog 22 Nov 2013 15:11:06 -0000 1.6
92 @@ -1,6 +1,9 @@
93 # ChangeLog for media-sound/umurmur
94 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
95 -# $Header: /var/cvsroot/gentoo-x86/media-sound/umurmur/ChangeLog,v 1.5 2013/10/26 22:04:02 pacho Exp $
96 +# $Header: /var/cvsroot/gentoo-x86/media-sound/umurmur/ChangeLog,v 1.6 2013/11/22 15:11:06 hasufell Exp $
97 +
98 + 22 Nov 2013; Julian Ospald <hasufell@g.o> umurmur-0.2.13.ebuild:
99 + remove broken polarssl useflag
100
101 26 Oct 2013; Pacho Ramos <pacho@g.o> umurmur-0.2.13.ebuild:
102 Use readme.gentoo.eclass to not show elog messages every time (#488138)