public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/prosody/files/, net-im/prosody/
Date: Fri, 23 Oct 2020 15:45:54 +0000 (UTC)	[thread overview]
Message-ID: <1603467911.363d4260585fe701da73df093bec4dd8a2fc4d72.conikost@gentoo> (raw)

commit:     363d4260585fe701da73df093bec4dd8a2fc4d72
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 23 15:45:11 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri Oct 23 15:45:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=363d4260

net-im/prosody: drop old version

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-im/prosody/files/prosody.service-r1 | 13 -----
 net-im/prosody/prosody-0.11.7-r1.ebuild | 96 ---------------------------------
 2 files changed, 109 deletions(-)

diff --git a/net-im/prosody/files/prosody.service-r1 b/net-im/prosody/files/prosody.service-r1
deleted file mode 100644
index 608423869fd..00000000000
--- a/net-im/prosody/files/prosody.service-r1
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=Prosody XMPP server
-After=network.target
-
-[Service]
-Group=jabber
-PIDFile=/run/jabber/prosody.pid
-ExecStart=/usr/bin/prosody
-ExecReload=/usr/bin/kill -HUP $MAINPID
-User=jabber
-
-[Install]
-WantedBy=multi-user.target

diff --git a/net-im/prosody/prosody-0.11.7-r1.ebuild b/net-im/prosody/prosody-0.11.7-r1.ebuild
deleted file mode 100644
index bdfb5f9d6c3..00000000000
--- a/net-im/prosody/prosody-0.11.7-r1.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd tmpfiles toolchain-funcs
-
-DESCRIPTION="Prosody is a modern XMPP communication server"
-HOMEPAGE="https://prosody.im/"
-SRC_URI="https://prosody.im/downloads/source/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="+libevent libressl luajit mysql postgres +sqlite +ssl test +zlib"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-	|| (
-		>=dev-lang/lua-5.2:*
-		dev-lua/lua-bit32
-	)
-	net-dns/libidn
-	net-im/jabber-base
-	libressl? ( dev-libs/libressl:= )
-	!libressl? ( dev-libs/openssl:0= )
-	luajit? ( dev-lang/luajit:2 )
-	!luajit? ( dev-lang/lua:0 )
-"
-
-DEPEND="
-	${COMMON_DEPEND}
-	test? ( dev-lua/busted )
-"
-
-RDEPEND="
-	${COMMON_DEPEND}
-	dev-lua/luaexpat
-	dev-lua/luafilesystem
-	dev-lua/luasocket
-	libevent? ( dev-lua/luaevent )
-	mysql? ( dev-lua/luadbi[mysql] )
-	postgres? ( dev-lua/luadbi[postgres] )
-	sqlite? ( dev-lua/luadbi[sqlite] )
-	ssl? ( dev-lua/luasec )
-	zlib? ( dev-lua/lua-zlib )
-"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-0.11.7-bit32.patch"
-	"${FILESDIR}/${PN}-0.11.7-gentoo.patch"
-)
-
-src_prepare() {
-	default
-
-	# Set correct plugin path for optional net-im/prosody-modules package
-	sed -e "s/GENTOO_LIBDIR/$(get_libdir)/g" -i prosody.cfg.lua.dist || die
-}
-
-src_configure() {
-	local myeconfargs=(
-		--c-compiler="$(tc-getCC)"
-		--datadir="${EPREFIX}/var/spool/jabber"
-		--libdir="${EPREFIX}/usr/$(get_libdir)"
-		--linker="$(tc-getCC)"
-		--ostype="linux"
-		--prefix="${EPREFIX}/usr"
-		--runwith="$(usex luajit luajit lua)"
-		--sysconfdir="${EPREFIX}/etc/jabber"
-		--with-lua-include="${EPREFIX}/usr/include"
-		--with-lua-lib="${EPREFIX}/usr/$(get_libdir)/lua"
-	)
-
-	# Since the configure script is handcrafted,
-	# and yells at unknown options, do not use 'econf'.
-	./configure ${myeconfargs[@]} --cflags="${CFLAGS} -Wall -fPIC" --ldflags="${LDFLAGS} -shared" || die
-
-	rm makefile || die
-	mv GNUmakefile Makefile || die
-}
-
-src_install() {
-	default
-
-	newinitd "${FILESDIR}"/prosody.initd-r4 prosody
-	systemd_newunit "${FILESDIR}"/prosody.service-r1 prosody.service
-
-	newtmpfiles "${FILESDIR}"/prosody.tmpfilesd-r1 prosody.conf
-
-	keepdir /var/spool/jabber
-}
-
-pkg_postinst() {
-	tmpfiles_process prosody.conf
-}


             reply	other threads:[~2020-10-23 15:45 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-23 15:45 Conrad Kostecki [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-03-01 19:43 [gentoo-commits] repo/gentoo:master commit in: net-im/prosody/files/, net-im/prosody/ Conrad Kostecki
2021-01-26 17:48 Conrad Kostecki
2021-01-26 17:48 Conrad Kostecki
2021-01-04  0:25 Conrad Kostecki
2020-10-23 15:45 Conrad Kostecki
2020-10-10 15:57 Conrad Kostecki
2020-10-03 13:43 Conrad Kostecki

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=1603467911.363d4260585fe701da73df093bec4dd8a2fc4d72.conikost@gentoo \
    --to=conikost@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