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: Fri, 04 Dec 2015 23:38:33
Message-Id: 1449272751.8cfd12687282b7ee0a3d0748a13b9e898fd92c4f.blueness@gentoo
1 commit: 8cfd12687282b7ee0a3d0748a13b9e898fd92c4f
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 4 23:38:57 2015 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 4 23:45:51 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cfd1268
7
8 net-libs/libmicrohttpd: version bump to 0.9.47
9
10 Package-Manager: portage-2.2.20.1
11
12 net-libs/libmicrohttpd/Manifest | 1 +
13 net-libs/libmicrohttpd/libmicrohttpd-0.9.47.ebuild | 59 ++++++++++++++++++++++
14 2 files changed, 60 insertions(+)
15
16 diff --git a/net-libs/libmicrohttpd/Manifest b/net-libs/libmicrohttpd/Manifest
17 index a9037e7..78b6b6d 100644
18 --- a/net-libs/libmicrohttpd/Manifest
19 +++ b/net-libs/libmicrohttpd/Manifest
20 @@ -1,3 +1,4 @@
21 DIST libmicrohttpd-0.9.42.tar.gz 1232516 SHA256 00352073367003da40607319e4090a6a8308748b59246ae80e9871f34dad7d5b SHA512 6516f545a5b81aa23bb0d22582f6d7e7f028069d94e0d33d9d6f929e111a3c0e0432eb43b26b4eec87860e8b9f50de38f1b5e6e20cd8faf30512e4891f29b9f3 WHIRLPOOL 9d42c08ee37042debf2e16ddd244c91375e4cecb9843e08d58581a9838677148d90d469bcd4890d4a0680a62e691c659394067da1c7060f7c4e49b309be4417c
22 DIST libmicrohttpd-0.9.45.tar.gz 1246332 SHA256 1075def48da9327be22441f4a3460d24159fae2bf4bcfb4ab6e7ca5e95e54a69 SHA512 670d1d1f47ea8657d389302c9bfa8b6d8d12658fb28ce6ed7549db0d4483b1023e7e7d419651f38cef5b024f853d83f336b365624a346b811c2d94ab0d84fb01 WHIRLPOOL 691c1577fd17f6db4bd1990dcfbe4f20cb8944dd51014b349d26bfc8844e367c337eb03c91342b2d9e9923979e36e7464530ed6808636085a2daa006c5295bf6
23 DIST libmicrohttpd-0.9.46.tar.gz 1249529 SHA256 06dbd2654f390fa1e8196fe063fc1449a6c2ed65a38199a49bf29ad8a93b8979 SHA512 d45cd6e8ca1fb0e4d42110fa6ae5b49823d1b2ce66dd82d8b68757b79bf441e4103301af9437886b2c5d3296102ed8da17933a573da9649e7359305f8e678e46 WHIRLPOOL 09413fd2f39d1da727dc8756b7487dcfd7d7d143af27ac3add70c302b6a8fe5454c328a8a341a5bd69a6a0d52c4153c1dbaad3157f731bf35e4e67a0a2b512a3
24 +DIST libmicrohttpd-0.9.47.tar.gz 1075636 SHA256 96bdab4352a09fd3952a346bc01898536992f50127d0adea1c3096a8ec9f658c SHA512 c6a0d8602246c72bdec63140310fa72f1e73b569ffec5a46bddd92b8be434b334c74f9afb2fab828dd3e0387f02ac5f518580d13c5e7548dc0367e43233196c7 WHIRLPOOL 0087f9856ffd9fae983b7c82d82254f5dc3c416c0cdd9d2b8318793a0d727eb3f1dd038f4d222817cb665d17e912dbbc2f765ae3a06c010d35e53b0d332c108e
25
26 diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.47.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.47.ebuild
27 new file mode 100644
28 index 0000000..a988b4a
29 --- /dev/null
30 +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.47.ebuild
31 @@ -0,0 +1,59 @@
32 +# Copyright 1999-2015 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="A small C library that makes it easy 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 + --disable-spdy \
71 + --enable-postprocessor \
72 + --runstatedir=/run \
73 + $(use_enable epoll) \
74 + $(use_enable test curl) \
75 + $(use_enable messages) \
76 + $(use_enable ssl https) \
77 + $(use_with ssl gnutls) \
78 + $(use_enable static-libs static)
79 +}
80 +
81 +# tests are broken in the portage environment.
82 +src_test() {
83 + :
84 +}
85 +
86 +src_install() {
87 + default
88 +
89 + use static-libs || find "${ED}" -name '*.la' -delete
90 +}