Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, net-mail/hotwayd/files/, net-mail/hotwayd/
Date: Tue, 05 Nov 2019 22:28:43
Message-Id: 1572992784.fdbb982cdf3ac8ec8b5d70a3260093450a7cbcc0.mgorny@gentoo
1 commit: fdbb982cdf3ac8ec8b5d70a3260093450a7cbcc0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 5 22:26:24 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 5 22:26:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdbb982c
7
8 net-mail/hotwayd: Remove last-rited pkg
9
10 Bug: https://bugs.gentoo.org/696252
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 net-mail/hotwayd/Manifest | 1 -
14 net-mail/hotwayd/files/hotwayd.xinetd | 25 ------------
15 net-mail/hotwayd/hotwayd-0.8.4.ebuild | 75 -----------------------------------
16 net-mail/hotwayd/metadata.xml | 11 -----
17 profiles/package.mask | 1 -
18 5 files changed, 113 deletions(-)
19
20 diff --git a/net-mail/hotwayd/Manifest b/net-mail/hotwayd/Manifest
21 deleted file mode 100644
22 index fe8d607340c..00000000000
23 --- a/net-mail/hotwayd/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST hotwayd-0.8.4.tar.bz2 161274 BLAKE2B 213b029a4b49332e748c8ec94e7a6860592c282c82e452e5bed285d568b38387cfca2bd305762934343a0b3140da14d98782d49e7715d1a388e8e0736d02e4ca SHA512 df965964c8186e51bd2b09f4a99919443efe1ee2e828d0bdd905383813069a45e4b6b321ace969b3071a0d83ad21a1b4f76cd4ba57f89e13a6569d8b65bd8efc
27
28 diff --git a/net-mail/hotwayd/files/hotwayd.xinetd b/net-mail/hotwayd/files/hotwayd.xinetd
29 deleted file mode 100644
30 index 65947585fa7..00000000000
31 --- a/net-mail/hotwayd/files/hotwayd.xinetd
32 +++ /dev/null
33 @@ -1,25 +0,0 @@
34 -# default: off
35 -# description: hotway daemon
36 -# - By default it listens to port 1100, so please adjust settings in your
37 -# clients
38 -# - By default it only allows access from localhost.
39 -# - Also all xinetd entries do not start by default.
40 -# One should manually enable the entries that one wants by
41 -# changing the value of "disable = yes" to "disable = no".
42 -# - Restart xinetd after changing anything in this file:
43 -# # /etc/init.d/xinetd restart
44 -
45 -service hotwayd
46 -{
47 - only_from = localhost
48 - socket_type = stream
49 - wait = no
50 - user = nobody
51 - port = 1100
52 - server = /usr/sbin/hotwayd
53 - #server_args = -p http://proxy:8080 -u proxy_user -q proxy_password
54 - log_on_success += USERID
55 - log_on_failure += USERID
56 - disable = yes
57 - type = unlisted
58 -}
59
60 diff --git a/net-mail/hotwayd/hotwayd-0.8.4.ebuild b/net-mail/hotwayd/hotwayd-0.8.4.ebuild
61 deleted file mode 100644
62 index 8775da3e0b5..00000000000
63 --- a/net-mail/hotwayd/hotwayd-0.8.4.ebuild
64 +++ /dev/null
65 @@ -1,75 +0,0 @@
66 -# Copyright 1999-2018 Gentoo Foundation
67 -# Distributed under the terms of the GNU General Public License v2
68 -
69 -EAPI=0
70 -
71 -inherit eutils
72 -
73 -DESCRIPTION="Hotmail to pop3 daemon"
74 -HOMEPAGE="http://hotwayd.sourceforge.net/"
75 -SRC_URI="mirror://sourceforge/hotwayd/${P}.tar.bz2"
76 -RESTRICT="mirror"
77 -LICENSE="GPL-2"
78 -SLOT="0"
79 -KEYWORDS="~amd64 ~ppc ~sparc x86"
80 -
81 -IUSE="smtp"
82 -
83 -DEPEND="virtual/inetd
84 - dev-libs/libxml2
85 - smtp? ( >=dev-libs/cyrus-sasl-2 )"
86 -
87 -hotmail_greed_warning() {
88 - echo
89 - ewarn "WARNING:"
90 - ewarn "Since Hotmail started to charge for WebDAV access, you need a Hotmail Plus"
91 - ewarn "(or equivalent MSN) account to keep using hotwayd. More info:"
92 - ewarn "http://www.boolean.ca/hotpop/"
93 - ewarn "https://sourceforge.net/forum/forum.php?thread_id=1277989&forum_id=80217"
94 - echo
95 - ebeep 3
96 - epause 10
97 -}
98 -
99 -pkg_setup() {
100 - hotmail_greed_warning
101 -}
102 -
103 -src_install () {
104 - # The original make install is broken, since it also tries to install
105 - # the libghttp files. This is not needed, since this library is statically
106 - # linked into the executable.
107 - # Lets just copy the (one) file manually...
108 - dosbin hotwayd
109 - if use smtp; then
110 - dosbin hotsmtpd/hotsmtpd
111 - insinto /etc/xinetd.d
112 - sed -i -e 's:^disable = no:disable = yes:' hotsmtpd/hotsmtpd.xinetd
113 - newins hotsmtpd/hotsmtpd.xinetd hotsmtpd
114 - fi
115 -
116 - dodoc AUTHORS NEWS README
117 -
118 - insinto /etc/xinetd.d
119 - newins ${FILESDIR}/${PN}.xinetd ${PN}
120 -}
121 -
122 -pkg_postinst () {
123 - hotmail_greed_warning
124 - echo
125 - elog " By default daemons that use xinetd are not started automatically in gentoo"
126 - elog " To activate do the following steps: "
127 - elog " - Edit the file /etc/xinetd.d/hotwayd and change disable "
128 - elog " from yes to no "
129 - elog " - Restart xinetd with \`/etc/init.d/xinetd restart\` "
130 - elog
131 - if use smtp; then
132 - elog "You chose to install hotsmtpd, a SMTP proxy for hotmail. Please"
133 - elog "Configure /etc/xinetd.d/hotsmtpd and restart xinetd to start using it."
134 - elog
135 - fi
136 - elog "Set your e-mail applications to use port 1100 for receiving email."
137 - if use smtp; then
138 - elog "Use port 2500 for sending email."
139 - fi
140 -}
141
142 diff --git a/net-mail/hotwayd/metadata.xml b/net-mail/hotwayd/metadata.xml
143 deleted file mode 100644
144 index 7ed5da265af..00000000000
145 --- a/net-mail/hotwayd/metadata.xml
146 +++ /dev/null
147 @@ -1,11 +0,0 @@
148 -<?xml version="1.0" encoding="UTF-8"?>
149 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
150 -<pkgmetadata>
151 - <!-- maintainer-needed -->
152 - <use>
153 - <flag name="smtp">Build SMTP proxy (hotsmtpd)</flag>
154 - </use>
155 - <upstream>
156 - <remote-id type="sourceforge">hotwayd</remote-id>
157 - </upstream>
158 -</pkgmetadata>
159
160 diff --git a/profiles/package.mask b/profiles/package.mask
161 index 547977cd0d1..9d1599fd78b 100644
162 --- a/profiles/package.mask
163 +++ b/profiles/package.mask
164 @@ -407,7 +407,6 @@ net-firewall/shapecfg
165 net-irc/dircproxy
166 net-irc/jircii
167 net-irc/miau
168 -net-mail/hotwayd
169 sys-auth/pam_require
170
171 # Michał Górny <mgorny@g.o> (2019-10-04)