commit:     19e2f778e7e2ec78a6fe0959f0403acb9f97dad0
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 20:04:34 2017 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon May 29 20:04:50 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e2f778

net-libs/libmicrohttpd: version bump to 0.9.55

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 net-libs/libmicrohttpd/Manifest                    |  1 +
 net-libs/libmicrohttpd/libmicrohttpd-0.9.55.ebuild | 57 ++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/net-libs/libmicrohttpd/Manifest b/net-libs/libmicrohttpd/Manifest
index ce72db3d5a6..903f4cc5284 100644
--- a/net-libs/libmicrohttpd/Manifest
+++ b/net-libs/libmicrohttpd/Manifest
@@ -2,3 +2,4 @@ DIST libmicrohttpd-0.9.51.tar.gz 1114110 SHA256 
3000bb0ba219061f2ea60251b8ea3d5f
 DIST libmicrohttpd-0.9.52.tar.gz 1244489 SHA256 
54797f6e763d417627f89f60e4ae0a431dab0523f92f83def23ea02d0defafea SHA512 
2cb7fa6ed59ec5f48748cd2aedea8a68629f02ffcf8e86c6d5b57a6622bb5f0ffd7dabfd6c04cc99047ca81eb76efe2a79b34bd6e3de329261a319369232fcf4
 WHIRLPOOL 
b70f91dba5e6e69fe42066345d51bb72248b1c4271fa88c0599d78adf17b3eb79144e5a83159f1636a79a6c9081ebb6274d90fa307d4f78a3edbfc7e0d6bd10a
 DIST libmicrohttpd-0.9.53.tar.gz 1301214 SHA256 
9b15ec2d381f44936323adfd4f989fa35add517cccbbfa581896b02a393c2cc4 SHA512 
2e29595c980cdcf12c1cead62f8938cc32e8c93d3a848e7473c5d5f596c6b6858732df0a3293b93d89577e5a325a62fe82adf3921a76d7184a647489364d7e2c
 WHIRLPOOL 
940eb42aaca8581ab7c7f2f3f6c246bf001956965d5529491d780f377eb00cffbf28aec3069b6a8eb691a78d84e77555ec5554b10ce066a11333d6cae19641a4
 DIST libmicrohttpd-0.9.54.tar.gz 1309560 SHA256 
bcc721895d4a114b0548a39d2241c35caacb9e2e072d40e11b55c60e3d5ddcbe SHA512 
d3276ad3af123aacc5ff885786861ccc94397576b81999974456b9b803fe5d911115f6595281ffce2240087f98a6527a840506eabeec9f2589d555fd235b6c89
 WHIRLPOOL 
5d5c099ea269c3d767b6d3f706453ec31b584c74fc01cbfc55ba0a54ce902611853cfeca7f7c8cc3f3c47147cb3db7cea3730abc86174f5d857471d75013b2c5
+DIST libmicrohttpd-0.9.55.tar.gz 1308328 SHA256 
0c1cab8dc9f2588bd3076a28f77a7f8de9560cbf2d80e53f9a8696ada80ed0f8 SHA512 
b410e7253d7c98c40b5e8b8dcd1f93bcbb05c88717190e8dae73073d36465e8e5cfa53c6c5098de60051a5ec64dc423fd94f4b06537d8146b744aa99f5a0b173
 WHIRLPOOL 
de74ff40e8795c562bd14c347a1b764d198762f7e1efac9279c1b366265a701c4867600efdb9f59eed1e833e080d166f22d34c6dae05c59d89ef311cdd50365b

diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.55.ebuild 
b/net-libs/libmicrohttpd/libmicrohttpd-0.9.55.ebuild
new file mode 100644
index 00000000000..d782c539ac3
--- /dev/null
+++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.55.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+MY_P="${P/_/}"
+
+DESCRIPTION="Small C library to run an HTTP server as part of another 
application"
+HOMEPAGE="https://www.gnu.org/software/libmicrohttpd/";
+SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/12"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="epoll messages ssl static-libs test"
+
+RDEPEND="ssl? (
+               dev-libs/libgcrypt:0=
+               net-libs/gnutls
+       )"
+
+# We disable tests below because they're broken,
+# but if enabled, we'll need this.
+DEPEND="${RDEPEND}
+       test?   (
+               ssl? ( net-misc/curl[ssl] )
+       )"
+
+S=${WORKDIR}/${MY_P}
+
+DOCS="AUTHORS NEWS README ChangeLog"
+
+src_configure() {
+       econf \
+               --enable-bauth \
+               --enable-dauth \
+               --disable-examples \
+               --enable-postprocessor \
+               --disable-thread-names \
+               $(use_enable epoll) \
+               $(use_enable test curl) \
+               $(use_enable messages) \
+               $(use_enable ssl https) \
+               $(use_with ssl gnutls) \
+               $(use_enable static-libs static)
+}
+
+# tests are broken in the portage environment.
+src_test() {
+       :
+}
+
+src_install() {
+       default
+
+       use static-libs || find "${ED}" -name '*.la' -delete
+}

Reply via email to