Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wol/
Date: Fri, 09 Aug 2019 14:27:05
Message-Id: 1565360793.9a1ff45cf3cfd682fd6aa6ae72a83bb7cae37b60.juippis@gentoo
1 commit: 9a1ff45cf3cfd682fd6aa6ae72a83bb7cae37b60
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Thu Aug 8 20:16:32 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 9 14:26:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a1ff45c
7
8 net-misc/wol: bump to EAPI=7
9
10 Also corrected license and added myself as maintainer.
11
12 Package-Manager: Portage-2.3.71, Repoman-2.3.17
13 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
14 Closes: https://github.com/gentoo/gentoo/pull/12646
15 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
16
17 net-misc/wol/metadata.xml | 27 ++++++++++++++++++---------
18 net-misc/wol/wol-0.7.1-r2.ebuild | 22 ++++++++++++++++++++++
19 2 files changed, 40 insertions(+), 9 deletions(-)
20
21 diff --git a/net-misc/wol/metadata.xml b/net-misc/wol/metadata.xml
22 index 86ddb1d0fd5..b00b64532de 100644
23 --- a/net-misc/wol/metadata.xml
24 +++ b/net-misc/wol/metadata.xml
25 @@ -1,13 +1,22 @@
26 <?xml version="1.0" encoding="UTF-8"?>
27 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
28 <pkgmetadata>
29 - <!-- maintainer-needed -->
30 - <longdescription>
31 -wol implements Wake On LAN functionality in a small program. It wakes up hardware that is Magic Packet compliant.
32 -Consider you have a sleeping or turned-off computer and you want to remotely wake him up. Just type
33 -"wol MAC-ADDRESS" and the host wakes up (OK, it will boot ;-).
34 -</longdescription>
35 - <upstream>
36 - <remote-id type="sourceforge">ahh</remote-id>
37 - </upstream>
38 + <maintainer type="person">
39 + <email>ck+gentoo@××××××××.de</email>
40 + <name>Conrad Kostecki</name>
41 + </maintainer>
42 + <maintainer type="project">
43 + <email>proxy-maint@g.o</email>
44 + <name>Proxy Maintainers</name>
45 + </maintainer>
46 + <longdescription>
47 + This is wol, the Wake On Lan client.
48 + It wakes up magic packet compliant machines such as boxes
49 + with wake-on-lan ethernet-cards.
50 + Some workstations provide SecureON which extends
51 + wake-on-lan with a password. This feature is also provided by wol.
52 + </longdescription>
53 + <upstream>
54 + <remote-id type="sourceforge">ahh</remote-id>
55 + </upstream>
56 </pkgmetadata>
57
58 diff --git a/net-misc/wol/wol-0.7.1-r2.ebuild b/net-misc/wol/wol-0.7.1-r2.ebuild
59 new file mode 100644
60 index 00000000000..7879c04f3c2
61 --- /dev/null
62 +++ b/net-misc/wol/wol-0.7.1-r2.ebuild
63 @@ -0,0 +1,22 @@
64 +# Copyright 1999-2019 Gentoo Authors
65 +# Distributed under the terms of the GNU General Public License v2
66 +
67 +EAPI=7
68 +
69 +DESCRIPTION="Implements Wake On LAN (Magic Paket) functionality in a small program"
70 +HOMEPAGE="http://ahh.sourceforge.net/wol/"
71 +SRC_URI="mirror://sourceforge/ahh/${P}.tar.gz"
72 +
73 +LICENSE="GPL-2+"
74 +SLOT="0"
75 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
76 +IUSE="nls"
77 +
78 +src_configure() {
79 + local myeconfargs=(
80 + --disable-rpath
81 + $(use_enable nls)
82 + )
83 +
84 + econf ${myeconfargs[@]}
85 +}