From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4DBE9138334 for ; Tue, 19 Mar 2019 14:23:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E4DBE08AD; Tue, 19 Mar 2019 14:23:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 14D93E08AD for ; Tue, 19 Mar 2019 14:23:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 62B4A335CC0 for ; Tue, 19 Mar 2019 14:23:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D03B14E3 for ; Tue, 19 Mar 2019 14:23:43 +0000 (UTC) From: "Tobias Klausmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tobias Klausmann" Message-ID: <1553005414.ddcbbd13eb5e2ef77e733a67a05cedd03ab313cf.klausman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/prosody/, net-im/prosody/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/prosody/files/prosody_cfg-0.11.2-r1.patch net-im/prosody/prosody-0.11.2-r1.ebuild X-VCS-Directories: net-im/prosody/files/ net-im/prosody/ X-VCS-Committer: klausman X-VCS-Committer-Name: Tobias Klausmann X-VCS-Revision: ddcbbd13eb5e2ef77e733a67a05cedd03ab313cf X-VCS-Branch: master Date: Tue, 19 Mar 2019 14:23:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cd72b7bd-61b9-4f23-9402-dcc0901507e8 X-Archives-Hash: 7abcf34705b412e2ce1b88a448d7c3fe commit: ddcbbd13eb5e2ef77e733a67a05cedd03ab313cf Author: Tobias Klausmann gentoo org> AuthorDate: Tue Mar 19 14:23:14 2019 +0000 Commit: Tobias Klausmann gentoo org> CommitDate: Tue Mar 19 14:23:34 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddcbbd13 net-im/prosody: Patch default config This makes sure the default config uses the right user/group (jabber:jabber) and PID file. Fixes: https://bugs.gentoo.org/497104 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Tobias Klausmann gentoo.org> net-im/prosody/files/prosody_cfg-0.11.2-r1.patch | 16 +++++ net-im/prosody/prosody-0.11.2-r1.ebuild | 87 ++++++++++++++++++++++++ 2 files changed, 103 insertions(+) diff --git a/net-im/prosody/files/prosody_cfg-0.11.2-r1.patch b/net-im/prosody/files/prosody_cfg-0.11.2-r1.patch new file mode 100644 index 00000000000..94423a834ae --- /dev/null +++ b/net-im/prosody/files/prosody_cfg-0.11.2-r1.patch @@ -0,0 +1,16 @@ +--- a/prosody.cfg.lua.dist 2019-03-19 15:11:16.355743969 +0100 ++++ b/prosody.cfg.lua.dist 2019-03-19 15:14:42.810995725 +0100 +@@ -32,6 +32,13 @@ + -- will look for modules first. For community modules, see https://modules.prosody.im/ + --plugin_paths = {} + ++-- Gentoo uses the jabber:jabber uid/gid for all Jabber-related services ++prosody_user = "jabber" ++prosody_group = "jabber" ++ ++-- Make sure prosodyctl checks in the right spot for the PID file ++pidfile = "/run/jabber/prosody.pid" ++ + -- This is the list of modules Prosody will load on startup. + -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too. + -- Documentation for bundled modules can be found at: https://prosody.im/doc/modules diff --git a/net-im/prosody/prosody-0.11.2-r1.ebuild b/net-im/prosody/prosody-0.11.2-r1.ebuild new file mode 100644 index 00000000000..9fd8dbddef8 --- /dev/null +++ b/net-im/prosody/prosody-0.11.2-r1.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic multilib systemd + +MY_PV=$(ver_rs 3 '') +MY_P="${PN}-${MY_PV}" +DESCRIPTION="Prosody is a flexible communications server for Jabber/XMPP written in Lua" +HOMEPAGE="https://prosody.im/" +SRC_URI="https://prosody.im/tmp/${MY_PV}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="ipv6 libevent mysql postgres sqlite ssl zlib jit libressl test" + +BASE_DEPEND="net-im/jabber-base + dev-lua/LuaBitOp + !jit? ( >=dev-lang/lua-5.1:0 ) + jit? ( dev-lang/luajit:2 ) + >=net-dns/libidn-1.1:= + !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl:= )" + +DEPEND="${BASE_DEPEND} + test? ( dev-lua/busted )" + +RDEPEND="${BASE_DEPEND} + >=dev-lua/luaexpat-1.3.0 + dev-lua/luafilesystem + ipv6? ( >=dev-lua/luasocket-3 ) + !ipv6? ( dev-lua/luasocket ) + libevent? ( >=dev-lua/luaevent-0.4.3 ) + mysql? ( dev-lua/luadbi[mysql] ) + postgres? ( dev-lua/luadbi[postgres] ) + sqlite? ( dev-lua/luadbi[sqlite] ) + ssl? ( dev-lua/luasec ) + zlib? ( dev-lua/lua-zlib )" + +S=${WORKDIR}/${MY_P} + +JABBER_ETC="/etc/jabber" +JABBER_SPOOL="/var/spool/jabber" + +src_prepare() { + default + rm makefile && mv GNUmakefile Makefile || die + sed -i -e "s!MODULES = \$(DESTDIR)\$(PREFIX)/lib/!MODULES = \$(DESTDIR)\$(PREFIX)/$(get_libdir)/!"\ + -e "s!SOURCE = \$(DESTDIR)\$(PREFIX)/lib/!SOURCE = \$(DESTDIR)\$(PREFIX)/$(get_libdir)/!"\ + -e "s!INSTALLEDSOURCE = \$(PREFIX)/lib/!INSTALLEDSOURCE = \$(PREFIX)/$(get_libdir)/!"\ + -e "s!INSTALLEDMODULES = \$(PREFIX)/lib/!INSTALLEDMODULES = \$(PREFIX)/$(get_libdir)/!"\ + Makefile || die + eapply "${FILESDIR}/prosody_cfg-0.11.2-r1.patch" +} + +src_configure() { + # the configure script is handcrafted (and yells at unknown options) + # hence do not use 'econf' + append-cflags -D_GNU_SOURCE + ./configure \ + --ostype=linux \ + --prefix="${EPREFIX}/usr" \ + --libdir="${EPREFIX}/usr/$(get_libdir)" \ + --sysconfdir="${EPREFIX}/${JABBER_ETC}" \ + --datadir="${EPREFIX}/${JABBER_SPOOL}" \ + --with-lua-include="${EPREFIX}/usr/include" \ + --with-lua-lib="${EPREFIX}/usr/$(get_libdir)/lua" \ + --runwith=lua"$(usev jit)" \ + --cflags="${CFLAGS} -Wall -fPIC" \ + --ldflags="${LDFLAGS} -shared" \ + --c-compiler="$(tc-getCC)" \ + --linker="$(tc-getCC)" || die "configure failed" +} + +src_install() { + emake DESTDIR="${D}" install + systemd_dounit "${FILESDIR}/${PN}".service + systemd_newtmpfilesd "${FILESDIR}/${PN}".tmpfilesd "${PN}".conf + newinitd "${FILESDIR}/${PN}".initd-r2 ${PN} + keepdir "${JABBER_SPOOL}" +} + +pkg_postinst() { + elog "If you are using the MySQL backend, you need to update its schema:" + elog "https://prosody.im/doc/release/0.11.0#upgrade_notes" +}