Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmicrohttpd/
Date: Thu, 02 Jun 2016 22:31:02
Message-Id: 1464906763.1a031b2b2d28dfb3b182693fa3e88063cc84a721.blueness@gentoo
1 commit: 1a031b2b2d28dfb3b182693fa3e88063cc84a721
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 2 22:32:15 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 2 22:32:43 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a031b2b
7
8 net-libs/libmicrohttpd: version bump to 0.9.50
9
10 Package-Manager: portage-2.2.28
11
12 net-libs/libmicrohttpd/Manifest | 1 +
13 net-libs/libmicrohttpd/libmicrohttpd-0.9.50.ebuild | 58 ++++++++++++++++++++++
14 2 files changed, 59 insertions(+)
15
16 diff --git a/net-libs/libmicrohttpd/Manifest b/net-libs/libmicrohttpd/Manifest
17 index 14660f9..9e994ca 100644
18 --- a/net-libs/libmicrohttpd/Manifest
19 +++ b/net-libs/libmicrohttpd/Manifest
20 @@ -1,3 +1,4 @@
21 DIST libmicrohttpd-0.9.47.tar.gz 1075636 SHA256 96bdab4352a09fd3952a346bc01898536992f50127d0adea1c3096a8ec9f658c SHA512 c6a0d8602246c72bdec63140310fa72f1e73b569ffec5a46bddd92b8be434b334c74f9afb2fab828dd3e0387f02ac5f518580d13c5e7548dc0367e43233196c7 WHIRLPOOL 0087f9856ffd9fae983b7c82d82254f5dc3c416c0cdd9d2b8318793a0d727eb3f1dd038f4d222817cb665d17e912dbbc2f765ae3a06c010d35e53b0d332c108e
22 DIST libmicrohttpd-0.9.48.tar.gz 1077473 SHA256 87667e158f2bf8c691a002e256ffe30885d4121a9ee4143af0320c47cdf8a2a4 SHA512 67155356b01c2294f5b87db68ac275d8c739e06590fc0ae5bcc0c9b4cfc42027b227fd64862ec3197695727c937b5c5d8c815ffbfc770beba918c0e3ca6a37f0 WHIRLPOOL 6267832952d2f1c1b4222597da2c67a8eb298781e5f1d26fe760f19ca14b4364f35e11a458c580968b6142454cb5969ed067fb2fd55e73ea38583df604eac78e
23 DIST libmicrohttpd-0.9.49.tar.gz 1087716 SHA256 9407d8252548ab97ace3276e0032f073820073c0599d43baff832902a8dab11c SHA512 9bae8d187e9567ef706a6d1b806417f2b5f667195adf7a86f96f156982e4cbcf472da10b3220c0679aeceb2c74e7778153160f3b697ac7444de038505b6e94f8 WHIRLPOOL 837c8612eb227c266ed3af773912bdbc215cbadc29766c5de10bce4a0588301213ea6ea140d3c15e6ec96c3dc3bc6b50caee892f30350d1c5e05b83639a61223
24 +DIST libmicrohttpd-0.9.50.tar.gz 1122992 SHA256 d1b6385068abded29b6470e383287aa7705de05ae3c08ad0bf5747ac4dc6ebd7 SHA512 55530314cae84e883df302ac2bc61d8dd9accc729d5b67b9a173e34aa11a76b244534c94416d5db613f9cdfc642c71b6caa3e707e3db7634660887e610181f42 WHIRLPOOL 5b13bbabdea99fe6a9c3b6fc2e7fe9d42584e8048e9b94930f50e4b37c6ab82bbee1c5b31abd5afc192d08931c9e3fc2b8cc5bd0c18e6845bac05af4c0ca33f1
25
26 diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.50.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.50.ebuild
27 new file mode 100644
28 index 0000000..51e6dc4
29 --- /dev/null
30 +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.50.ebuild
31 @@ -0,0 +1,58 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI="5"
37 +
38 +MY_P="${P/_/}"
39 +
40 +DESCRIPTION="Small C library to run an HTTP server as part of another application"
41 +HOMEPAGE="https://www.gnu.org/software/libmicrohttpd/"
42 +SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
43 +
44 +LICENSE="LGPL-2.1"
45 +SLOT="0/12"
46 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
47 +IUSE="epoll messages ssl static-libs test"
48 +
49 +RDEPEND="ssl? (
50 + dev-libs/libgcrypt:0=
51 + net-libs/gnutls
52 + )"
53 +
54 +# We disable tests below because they're broken,
55 +# but if enabled, we'll need this.
56 +DEPEND="${RDEPEND}
57 + test? (
58 + ssl? ( net-misc/curl[ssl] )
59 + )"
60 +
61 +S=${WORKDIR}/${MY_P}
62 +
63 +DOCS="AUTHORS NEWS README ChangeLog"
64 +
65 +src_configure() {
66 + econf \
67 + --enable-bauth \
68 + --enable-dauth \
69 + --disable-examples \
70 + --enable-postprocessor \
71 + --runstatedir=/run \
72 + $(use_enable epoll) \
73 + $(use_enable test curl) \
74 + $(use_enable messages) \
75 + $(use_enable ssl https) \
76 + $(use_with ssl gnutls) \
77 + $(use_enable static-libs static)
78 +}
79 +
80 +# tests are broken in the portage environment.
81 +src_test() {
82 + :
83 +}
84 +
85 +src_install() {
86 + default
87 +
88 + use static-libs || find "${ED}" -name '*.la' -delete
89 +}