* [gentoo-commits] repo/gentoo:master commit in: net-misc/ipsvd/
@ 2023-07-24 6:31 Joonas Niilola
0 siblings, 0 replies; 3+ messages in thread
From: Joonas Niilola @ 2023-07-24 6:31 UTC (permalink / raw
To: gentoo-commits
commit: 1cd84a882e044350b32bb85372205c93f7ec6555
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 24 06:29:32 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jul 24 06:30:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cd84a88
net-misc/ipsvd: fix dohtml with EAPI-8
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild b/net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild
index 2a42d9425129..98fa43160f9f 100644
--- a/net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild
+++ b/net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild
@@ -39,6 +39,6 @@ src_install() {
doman man/ipsvd-instruct.5 man/ipsvd.7 man/udpsvd.8 \
man/tcpsvd.8 man/ipsvd-cdb.8
- insinto html
- dohtml doc/*.html
+ local HTML_DOCS=( doc/ )
+ einstalldocs
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ipsvd/
@ 2023-07-24 6:31 Joonas Niilola
0 siblings, 0 replies; 3+ messages in thread
From: Joonas Niilola @ 2023-07-24 6:31 UTC (permalink / raw
To: gentoo-commits
commit: b0793ccff04ca22d79cddd44d033ffe35db81afe
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 24 06:30:35 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jul 24 06:30:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0793ccf
net-misc/ipsvd: update DESCRIPTION
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild b/net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild
index 98fa43160f9f..342c393df9da 100644
--- a/net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild
+++ b/net-misc/ipsvd/ipsvd-1.0.0-r3.ebuild
@@ -3,9 +3,9 @@
EAPI=8
-inherit toolchain-funcs flag-o-matic
+inherit toolchain-funcs
-DESCRIPTION="ipsvd is a set of internet protocol service daemons for Unix"
+DESCRIPTION="Set of internet protocol service daemons for Unix"
HOMEPAGE="http://smarden.org/ipsvd/"
SRC_URI="http://smarden.org/ipsvd/${P}.tar.gz"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ipsvd/
@ 2023-08-26 14:55 Andreas Sturmlechner
0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2023-08-26 14:55 UTC (permalink / raw
To: gentoo-commits
commit: 32f68e478d040de3d6359da57ff30e46d22d8736
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 26 14:54:44 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 26 14:55:04 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32f68e47
net-misc/ipsvd: drop 1.0.0-r2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild | 50 ------------------------------------
1 file changed, 50 deletions(-)
diff --git a/net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild b/net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild
deleted file mode 100644
index 2b0e4522e88a..000000000000
--- a/net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs flag-o-matic
-
-DESCRIPTION="ipsvd is a set of internet protocol service daemons for Unix"
-HOMEPAGE="http://smarden.org/ipsvd/"
-SRC_URI="http://smarden.org/ipsvd/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static"
-
-DEPEND=""
-RDEPEND=""
-
-S="${WORKDIR}/net/${P}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-fix-parallel-make.diff
-)
-
-src_configure() {
- cd "${S}"/src
- if use static ; then
- append-ldflags -static
- fi
-
- echo "$(tc-getCC) ${CFLAGS}" > conf-cc
- echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
-}
-
-src_compile() {
- cd "${S}"/src
- emake
-}
-
-src_install() {
- dobin src/{tcpsvd,udpsvd,ipsvd-cdb}
- dodoc package/{CHANGES,README}
-
- doman man/ipsvd-instruct.5 man/ipsvd.7 man/udpsvd.8 \
- man/tcpsvd.8 man/ipsvd-cdb.8
-
- insinto html
- dohtml doc/*.html
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-08-26 14:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-24 6:31 [gentoo-commits] repo/gentoo:master commit in: net-misc/ipsvd/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2023-07-24 6:31 Joonas Niilola
2023-08-26 14:55 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox