public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Robin H. Johnson" <robbat2@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/serf/
Date: Wed, 26 Jul 2017 18:37:27 +0000 (UTC)	[thread overview]
Message-ID: <1501094241.03ff19afffb33c3d56336409ec06af59c9ecc4b6.robbat2@gentoo> (raw)

commit:     03ff19afffb33c3d56336409ec06af59c9ecc4b6
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 26 18:36:58 2017 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Jul 26 18:37:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03ff19af

net-libs/serf: bump.

Package-Manager: portage-2.3.6

 net-libs/serf/Manifest          |  1 +
 net-libs/serf/serf-1.3.9.ebuild | 70 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/net-libs/serf/Manifest b/net-libs/serf/Manifest
index 40a079763b8..ccce5fbb10c 100644
--- a/net-libs/serf/Manifest
+++ b/net-libs/serf/Manifest
@@ -1 +1,2 @@
 DIST serf-1.3.8.tar.bz2 143337 SHA256 e0500be065dbbce490449837bb2ab624e46d64fc0b090474d9acaa87c82b2590 SHA512 78787a0d1e3e72dd9afc2e0de65e9af3b4303fefdcb865bd5e087fae570a7fe4d1395ce021756db4685c6e63e31c495563afe57baf677bf9846657f5d63d4205 WHIRLPOOL 951b1ff92e739998f24bd44e2541c10352c83594cbfdb82ba915ced32509df7d6f2bbec8bd8fbf4c75116dab114970d1a8ec2fc0157912303bfbd065ea6739ac
+DIST serf-1.3.9.tar.bz2 145132 SHA256 549c2d21c577a8a9c0450facb5cca809f26591f048e466552240947bdf7a87cc SHA512 9f5418d991840a08d293d1ecba70cd9534a207696d002f22dbe62354e7b005955112a0d144a76c89c7f7ad3b4c882e54974441fafa0c09c4aa25c49c021ca75d WHIRLPOOL 6b8dc6a229810f55b90d3713a55b9888b5154115c51f8d37773815da8e0167a5999d3bd9fd7f4132909465b13e677164ce336555fceba1b8a8c504c8fa7ae8ee

diff --git a/net-libs/serf/serf-1.3.9.ebuild b/net-libs/serf/serf-1.3.9.ebuild
new file mode 100644
index 00000000000..031df82e090
--- /dev/null
+++ b/net-libs/serf/serf-1.3.9.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+inherit eutils scons-utils toolchain-funcs flag-o-matic
+
+DESCRIPTION="HTTP client library"
+HOMEPAGE="https://serf.apache.org/"
+SRC_URI="mirror://apache/${PN}/${P}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+IUSE="kerberos static-libs libressl"
+
+RDEPEND="dev-libs/apr:1=
+	dev-libs/apr-util:1=
+	!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= )
+	sys-libs/zlib:0=
+	kerberos? ( virtual/krb5 )"
+DEPEND="${RDEPEND}
+	>=dev-util/scons-2.3.0"
+
+src_prepare() {
+	#epatch "${FILESDIR}/${PN}-1.3.2-disable_linking_against_unneeded_libraries.patch"
+	#epatch "${FILESDIR}/${PN}-1.3.8-scons_variables.patch"
+	#epatch "${FILESDIR}/${PN}-1.3.8-tests.patch"
+	epatch "${FILESDIR}/${PN}-1.3.8-static-lib.patch"
+	epatch "${FILESDIR}/${PN}-1.3.8-openssl.patch"
+
+	# https://code.google.com/p/serf/issues/detail?id=133
+	sed -e "/env.Append(CCFLAGS=\['-O2'\])/d" -i SConstruct
+
+	# need limits.h for PATH_MAX (only when EXTENSIONS is enabled)
+	[[ ${CHOST} == *-solaris* ]] && append-cppflags -D__EXTENSIONS__
+}
+
+src_compile() {
+	myesconsargs=(
+		PREFIX="${EPREFIX}/usr"
+		LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+		# These config scripts are sent through a shell with an empty env
+		# which breaks the SYSROOT usage in them.  Set the vars inline to
+		# avoid that.
+		APR="SYSROOT='${SYSROOT}' ${SYSROOT}${EPREFIX}/usr/bin/apr-1-config"
+		APU="SYSROOT='${SYSROOT}' ${SYSROOT}${EPREFIX}/usr/bin/apu-1-config"
+		BUILD_STATIC=$(usex static-libs)
+		AR="$(tc-getAR)"
+		RANLIB="$(tc-getRANLIB)"
+		CC="$(tc-getCC)"
+		CPPFLAGS="${CPPFLAGS}"
+		CFLAGS="${CFLAGS}"
+		LINKFLAGS="${LDFLAGS}"
+	)
+
+	if use kerberos; then
+		myesconsargs+=( GSSAPI="${SYSROOT}${EPREFIX}/usr/bin/krb5-config" )
+	fi
+
+	escons
+}
+
+src_test() {
+	escons check
+}
+
+src_install() {
+	escons install --install-sandbox="${D}"
+}


             reply	other threads:[~2017-07-26 18:37 UTC|newest]

Thread overview: 69+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-26 18:37 Robin H. Johnson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-01 23:07 [gentoo-commits] repo/gentoo:master commit in: net-libs/serf/ Sam James
2024-06-01 19:23 Sam James
2024-06-01 17:29 Sam James
2024-06-01 14:53 Arthur Zamarin
2024-06-01 11:03 Arthur Zamarin
2024-06-01 10:59 Arthur Zamarin
2024-05-31  7:46 Andreas Sturmlechner
2023-05-04 19:04 Jakov Smolić
2023-02-01 10:05 Benda XU
2022-07-29  4:17 Sam James
2022-06-06 20:49 Jakov Smolić
2022-06-06 15:54 Jakov Smolić
2022-06-06 15:54 Jakov Smolić
2022-06-06 15:50 Jakov Smolić
2022-06-06 14:15 Jakov Smolić
2022-06-06 14:15 Jakov Smolić
2022-06-06 14:15 Jakov Smolić
2022-06-06 14:15 Jakov Smolić
2022-05-14  0:47 Sam James
2022-02-01 18:19 Jakov Smolić
2022-02-01 18:19 Jakov Smolić
2022-02-01 18:19 Jakov Smolić
2021-07-28 13:14 Marek Szuba
2021-05-03  8:58 Mikle Kolyada
2020-12-27 17:52 Fabian Groffen
2020-12-24  2:25 Mike Gilbert
2020-12-24  2:25 Mike Gilbert
2020-09-26 21:34 Sergei Trofimovich
2020-09-24  6:46 Agostino Sarubbo
2020-09-23 10:32 Agostino Sarubbo
2020-09-23 10:29 Agostino Sarubbo
2020-09-23 10:24 Agostino Sarubbo
2020-09-20 21:52 Thomas Deutschmann
2020-09-19 23:42 Sam James
2020-09-19 23:20 Sam James
2020-05-05 21:04 Sergei Trofimovich
2020-05-01 17:48 Agostino Sarubbo
2020-05-01 17:47 Agostino Sarubbo
2020-05-01 17:46 Agostino Sarubbo
2020-05-01 17:44 Agostino Sarubbo
2020-05-01 17:43 Agostino Sarubbo
2020-05-01 17:42 Agostino Sarubbo
2020-05-01  8:40 Mart Raudsepp
2020-02-11 18:54 Michał Górny
2019-12-26 17:09 Craig Andrews
2019-07-29 15:38 Aaron Bauman
2019-05-12 20:56 Thomas Deutschmann
2019-05-10  4:41 Markus Meier
2019-05-03  7:11 Sergei Trofimovich
2019-05-02 20:56 Mikle Kolyada
2019-04-24 17:02 Sergei Trofimovich
2019-04-19 18:26 Aaron Bauman
2018-11-27 16:01 Tobias Klausmann
2018-11-18 10:52 Sergei Trofimovich
2018-11-18 10:41 Sergei Trofimovich
2018-11-17 14:07 Mikle Kolyada
2018-11-16 19:08 Sergei Trofimovich
2018-11-15 15:48 Thomas Deutschmann
2018-10-19 17:39 Mike Gilbert
2018-05-01  7:41 Markus Meier
2018-04-24 15:14 Mart Raudsepp
2018-04-01 11:06 Sergei Trofimovich
2018-03-24 21:19 Sergei Trofimovich
2017-03-21 15:46 Michael Haubenwallner
2017-03-01  0:35 Michael Weber
2016-11-27  6:01 Göktürk Yüksek
2016-02-08  8:44 Fabian Groffen
2016-02-08  8:44 Fabian Groffen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1501094241.03ff19afffb33c3d56336409ec06af59c9ecc4b6.robbat2@gentoo \
    --to=robbat2@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox