From: "Dirkjan Ochtman" <djc@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/couchdb/
Date: Wed, 11 Jul 2018 14:09:51 +0000 (UTC) [thread overview]
Message-ID: <1531318092.aed9d5bb82e07f43dc53c60682933707a4414ee5.djc@gentoo> (raw)
commit: aed9d5bb82e07f43dc53c60682933707a4414ee5
Author: Dirkjan Ochtman <djc <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 11 14:07:47 2018 +0000
Commit: Dirkjan Ochtman <djc <AT> gentoo <DOT> org>
CommitDate: Wed Jul 11 14:08:12 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aed9d5bb
dev-db/couchdb: version bump to 1.7.2
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-db/couchdb/Manifest | 1 +
dev-db/couchdb/couchdb-1.7.2.ebuild | 77 +++++++++++++++++++++++++++++++++++++
2 files changed, 78 insertions(+)
diff --git a/dev-db/couchdb/Manifest b/dev-db/couchdb/Manifest
index ab6a5eac753..47129fd5691 100644
--- a/dev-db/couchdb/Manifest
+++ b/dev-db/couchdb/Manifest
@@ -1 +1,2 @@
DIST apache-couchdb-1.7.1.tar.gz 9963069 BLAKE2B 69a3f835f6a7b5752e4707b02edfa726cfdb76813e36e570566641b999eea556ff788b0ca8ce1e66beb819119d90e387beab3bba8618e3b7a606870794307fef SHA512 cd7417ef4b1eaeb1fe4251b559d904238fd25881c542f1498e6e9f1c4a55a79e34e06e711f90ce39e5e65fcac8be9c611943b8ed57d4a7465859b5811ac0a21f
+DIST apache-couchdb-1.7.2.tar.gz 10009424 BLAKE2B 3d3b4922fe5b2c55e4851e48993442ba23369753fb17d5cafba936947624af0d3dac70e0a23d0c22c79e7e2776a3a441d5b1020a4a420b7d9a621fb59aad48d9 SHA512 507a35a7f1e826b1562eec86146cc6fcff3c65fa7762f9742e6e8fdacfca735473105772757624183778f7a532c742f6644b301677607bb81c1f3f0ceb742867
diff --git a/dev-db/couchdb/couchdb-1.7.2.ebuild b/dev-db/couchdb/couchdb-1.7.2.ebuild
new file mode 100644
index 00000000000..b429e0313ae
--- /dev/null
+++ b/dev-db/couchdb/couchdb-1.7.2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit autotools eutils multilib pax-utils user
+
+DESCRIPTION="Distributed, fault-tolerant and schema-free document-oriented database"
+HOMEPAGE="https://couchdb.apache.org/"
+SRC_URI="mirror://apache/couchdb/source/${PV}/apache-${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="libressl selinux test"
+
+RDEPEND=">=dev-libs/icu-4.3.1:=
+ <dev-lang/erlang-21.0[ssl]
+ !libressl? ( >=dev-libs/openssl-0.9.8j:0 )
+ libressl? ( dev-libs/libressl )
+ >=net-misc/curl-7.18.2
+ <dev-lang/spidermonkey-1.8.7
+ selinux? ( sec-policy/selinux-couchdb )"
+
+DEPEND="${RDEPEND}
+ sys-devel/autoconf-archive"
+RESTRICT=test
+
+S="${WORKDIR}/apache-${P}"
+
+pkg_setup() {
+ enewgroup couchdb
+ enewuser couchdb -1 -1 /var/lib/couchdb couchdb
+}
+
+src_prepare() {
+ sed -i ./src/couchdb/priv/Makefile.* -e 's|-Werror||g'
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --with-erlang="${EPREFIX}"/usr/$(get_libdir)/erlang/usr/include \
+ --localstatedir="${EPREFIX}"/var \
+ --with-js-lib="${EPREFIX}"/usr/$(get_libdir)
+ # bug 296609, upstream bug #COUCHDB-621
+ sed -e "s#localdocdir = /usr/share/doc/couchdb#localdocdir = "${EPREFIX}"/usr/share/doc/${PF}#" -i Makefile || die "sed failed"
+}
+
+src_compile() {
+ emake
+ # bug 442616
+ pax-mark mr src/couchdb/priv/couchjs
+}
+
+src_test() {
+ emake distcheck
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ fowners couchdb:couchdb \
+ /var/lib/couchdb \
+ /var/log/couchdb
+
+ for f in "${ED}"/etc/couchdb/*.ini ; do
+ fowners root:couchdb "${f#${ED}}"
+ fperms 660 "${f#${ED}}"
+ done
+ fperms 664 /etc/couchdb/default.ini
+
+ newinitd "${FILESDIR}/couchdb.init-4" couchdb
+ newconfd "${FILESDIR}/couchdb.conf-2" couchdb
+
+ sed -i -e "s:LIBDIR:$(get_libdir):" "${ED}/etc/conf.d/couchdb"
+}
next reply other threads:[~2018-07-11 14:09 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-11 14:09 Dirkjan Ochtman [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-08-09 14:40 [gentoo-commits] repo/gentoo:master commit in: dev-db/couchdb/ Jeroen Roovers
2018-08-08 14:33 Dirkjan Ochtman
2018-08-05 20:36 Sergei Trofimovich
2018-07-15 17:15 Mikle Kolyada
2017-11-19 19:38 Dirkjan Ochtman
2017-11-19 19:38 Dirkjan Ochtman
2017-11-15 23:22 Sergei Trofimovich
2017-11-15 21:01 Agostino Sarubbo
2017-11-14 22:06 Thomas Deutschmann
2017-11-14 20:28 Dirkjan Ochtman
2017-10-15 12:32 Sergei Trofimovich
2017-08-19 0:31 Thomas Deutschmann
2017-07-19 18:06 Tobias Klausmann
2017-04-22 11:27 Dirkjan Ochtman
2017-01-04 15:29 Agostino Sarubbo
2016-09-24 13:44 Agostino Sarubbo
2016-07-09 17:31 Dirkjan Ochtman
2016-07-09 17:31 Dirkjan Ochtman
2015-12-06 20:07 Dirkjan Ochtman
2015-10-19 11:12 Julian Ospald
2015-10-10 16:29 Dirkjan Ochtman
2015-10-02 15:16 Julian Ospald
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=1531318092.aed9d5bb82e07f43dc53c60682933707a4414ee5.djc@gentoo \
--to=djc@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