public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/leafnode/
Date: Mon, 25 Jan 2016 20:27:26 +0000 (UTC)	[thread overview]
Message-ID: <1453753620.17b95ca19a529317fab560e0eca20fd0f9722d88.graaff@gentoo> (raw)

commit:     17b95ca19a529317fab560e0eca20fd0f9722d88
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 25 20:16:44 2016 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Jan 25 20:27:00 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17b95ca1

net-nntp/leafnode: add 1.11.1, fix bug 451774

Remove a keepdir for /var/lock/news since this location
is not actually uses by leafnode and creating directories
in /var/lock should now be handled at runtime.

Package-Manager: portage-2.2.26

 net-nntp/leafnode/Manifest                |  1 +
 net-nntp/leafnode/leafnode-1.11.11.ebuild | 47 +++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/net-nntp/leafnode/Manifest b/net-nntp/leafnode/Manifest
index a2486de..3b50171 100644
--- a/net-nntp/leafnode/Manifest
+++ b/net-nntp/leafnode/Manifest
@@ -1,2 +1,3 @@
 DIST leafnode-1.11.10.tar.bz2 493480 SHA256 d75ba79961a8900b273eb74c3ad6976bf9fd64c2fa0284273e65f98190c5f2bc SHA512 efffbe9a3fe10da64ebfaff31738b66e9783923ea119e2f792bc0e7e1811d570e85c5ddec17af6787333958deeee3af9bec87d1312c37eb19e355147dfa721ae WHIRLPOOL ed47717d7c2a6d21ba0b07f0daf5a5c716ff90034ea3747d57958163142eb154778267b9c370082b0e5a8e7e35942b3334bd6ff9f9d476186e27d838e2a26897
+DIST leafnode-1.11.11.tar.bz2 500482 SHA256 3ec325216fb5ddcbca13746e3f4aab4b49be11616a321b25978ffd971747adc0 SHA512 3a476a32f2e59ed0812379efc2ad1964347094417e7fc01d93f84d0cfaed78a66b2f2f40d1ac36f8a0f8844523ab57b9a605d4bd73ea309248c0562e7c26248a WHIRLPOOL 76435a83f4f82d1832ce25e054016e6ec7090a16221575b179e6c3e923a916c9a4b1ea00747783d2988da0c447cd410ea4d9681431208444ec8b80f11e41ac48
 DIST leafnode-1.11.8.tar.bz2 504617 SHA256 543d921549a811cbd4a7763b241af7dcfe5722ab1d6b7515c88f680833876e22 SHA512 93f8af5f3e99e7a55f0e8cbd9ceb22d7f3d82f8683e3390c2ee646e686aba7a748caa038f4aef27cd1934d46a5a49c0b29bd317926b7dffeae138607184e7bfb WHIRLPOOL 8848645ac2ef24bb9836a4026c1c5c528d659f45b2f9f49fe2bb63ba41267c42279ba18c52c2bcbea8eaaece55475936dda25b27897830967db57ca314e948dd

diff --git a/net-nntp/leafnode/leafnode-1.11.11.ebuild b/net-nntp/leafnode/leafnode-1.11.11.ebuild
new file mode 100644
index 0000000..35822b7
--- /dev/null
+++ b/net-nntp/leafnode/leafnode-1.11.11.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="A USENET software package designed for small sites"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+HOMEPAGE="http://leafnode.sourceforge.net/"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="ipv6"
+
+DEPEND=">=dev-libs/libpcre-3.9"
+RDEPEND="${DEPEND}
+	virtual/inetd"
+DOCS=( CREDITS ChangeLog FAQ.txt FAQ.pdf INSTALL NEWS README-daemontools UNINSTALL-daemontools README README-MAINTAINER README-FQDN )
+
+src_configure() {
+	econf \
+		--sysconfdir=/etc/leafnode \
+		--localstatedir=/var \
+		--with-spooldir=/var/spool/news \
+		$(use_with ipv6)
+}
+
+src_install() {
+	default
+
+	keepdir \
+		/var/lib/news \
+		/var/spool/news/{failed.postings,interesting.groups,leaf.node,out.going,temp.files} \
+		/var/spool/news/message.id/{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}
+
+	fowners -R news:news /var/{lib,spool}/news
+
+	insinto /etc/xinetd.d
+	newins "${FILESDIR}"/leafnode.xinetd leafnode-nntp
+
+	exeinto /etc/cron.hourly
+	newexe "${FILESDIR}"/fetchnews.cron fetchnews
+	exeinto /etc/cron.daily
+	newexe "${FILESDIR}"/texpire.cron texpire
+
+	dohtml FAQ.html FAQ.xml README-FQDN.html
+}


             reply	other threads:[~2016-01-25 20:27 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-25 20:27 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-09 11:29 [gentoo-commits] repo/gentoo:master commit in: net-nntp/leafnode/ Hans de Graaff
2022-10-14  2:10 Sam James
2022-01-08 11:47 Hans de Graaff
2022-01-02  9:59 Sam James
2022-01-02  6:31 Sam James
2022-01-02  6:31 Sam James
2021-10-23  7:05 Hans de Graaff
2017-10-16  5:11 Hans de Graaff
2017-10-16  5:11 Hans de Graaff
2017-10-15 18:37 Sergei Trofimovich
2017-08-19  0:31 Thomas Deutschmann
2017-07-15 17:25 Tobias Klausmann
2016-03-16 17:03 Hans de Graaff
2016-02-14 10:11 Agostino Sarubbo
2016-01-25 15:44 Agostino Sarubbo

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=1453753620.17b95ca19a529317fab560e0eca20fd0f9722d88.graaff@gentoo \
    --to=graaff@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