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 67243139347 for ; Tue, 13 Jul 2021 20:57:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C1FDE0D89; Tue, 13 Jul 2021 20:57:33 +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 512ADE0D7C for ; Tue, 13 Jul 2021 20:57:33 +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 2B622342D05 for ; Tue, 13 Jul 2021 20:57:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 681F67D4 for ; Tue, 13 Jul 2021 20:57:29 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626209699.f5fb502e3018a92fdea1a4a019cf05669bb650a5.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/spread/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/spread/spread-4.4.1-r1.ebuild net-misc/spread/spread-5.0.1-r1.ebuild X-VCS-Directories: net-misc/spread/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: f5fb502e3018a92fdea1a4a019cf05669bb650a5 X-VCS-Branch: master Date: Tue, 13 Jul 2021 20:57:29 +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: 416ea8f2-7786-428a-afc1-036b8a7abaab X-Archives-Hash: 3ad7794f3d7cb176f2cfb96e1bf0d04d commit: f5fb502e3018a92fdea1a4a019cf05669bb650a5 Author: Conrad Kostecki gentoo org> AuthorDate: Tue Jul 13 19:00:56 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Jul 13 20:54:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5fb502e net-misc/spread: migrate to GLEP 81 Bug: https://bugs.gentoo.org/781434 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> net-misc/spread/spread-4.4.1-r1.ebuild | 32 ++++++++++++++++++++++++++++++++ net-misc/spread/spread-5.0.1-r1.ebuild | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) diff --git a/net-misc/spread/spread-4.4.1-r1.ebuild b/net-misc/spread/spread-4.4.1-r1.ebuild new file mode 100644 index 00000000000..70da45c67ba --- /dev/null +++ b/net-misc/spread/spread-4.4.1-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="spread-src" + +DESCRIPTION="Distributed network messaging system" +HOMEPAGE="http://www.spread.org" +SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="Spread-1.0" +SLOT="0" +KEYWORDS="amd64 x86" + +RDEPEND=" + acct-group/spread + acct-user/spread +" + +src_prepare() { + default + + # don't strip binaries + sed -i -e 's/0755 -s/0755/g' daemon/Makefile.in examples/Makefile.in +} + +src_install() { + emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install + newinitd "${FILESDIR}"/spread.init.d spread +} diff --git a/net-misc/spread/spread-5.0.1-r1.ebuild b/net-misc/spread/spread-5.0.1-r1.ebuild new file mode 100644 index 00000000000..85b0f141896 --- /dev/null +++ b/net-misc/spread/spread-5.0.1-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="spread-src" + +DESCRIPTION="Distributed network messaging system" +HOMEPAGE="http://www.spread.org" +SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="Spread-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + acct-group/spread + acct-user/spread +" + +src_prepare() { + default + + # don't strip binaries + sed -i -e 's/0755 -s/0755/g' daemon/Makefile.in examples/Makefile.in +} + +src_install() { + emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install + newinitd "${FILESDIR}"/spread.init.d spread +}