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: net-libs/libinfinity/files/, net-libs/libinfinity/, profiles/
Date: Sat, 13 Apr 2019 06:50:33
Message-Id: 1555138205.359e808e74f66b114e47836b51bc2614cdd28802.mgorny@gentoo
1 commit: 359e808e74f66b114e47836b51bc2614cdd28802
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 13 06:49:12 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 13 06:50:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=359e808e
7
8 net-libs/libinfinity: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/680216
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 net-libs/libinfinity/Manifest | 1 -
14 net-libs/libinfinity/files/infinoted.confd | 12 -----
15 net-libs/libinfinity/files/infinoted.initd | 27 -----------
16 net-libs/libinfinity/libinfinity-0.6.7.ebuild | 70 ---------------------------
17 net-libs/libinfinity/metadata.xml | 11 -----
18 profiles/package.mask | 7 ---
19 6 files changed, 128 deletions(-)
20
21 diff --git a/net-libs/libinfinity/Manifest b/net-libs/libinfinity/Manifest
22 deleted file mode 100644
23 index 9e3291ba9cb..00000000000
24 --- a/net-libs/libinfinity/Manifest
25 +++ /dev/null
26 @@ -1 +0,0 @@
27 -DIST libinfinity-0.6.7.tar.gz 1989993 BLAKE2B 4b5e963dc0d20f95d5acef5056ddc6f45fdcbe1c7044911d1c529b81291854721cffd119316c153516d0a6feff29aa9a2b298f774e02c87b4ce7cf06dddf6449 SHA512 9142badee0976019937c29d9badd404d64e49031007863c254c312d999b9790fa4f2ff80ac982b709744e1bfa532b1bc331b3bf1d55aac3ac70c9cae6a7afd3b
28
29 diff --git a/net-libs/libinfinity/files/infinoted.confd b/net-libs/libinfinity/files/infinoted.confd
30 deleted file mode 100644
31 index 81e62a4d951..00000000000
32 --- a/net-libs/libinfinity/files/infinoted.confd
33 +++ /dev/null
34 @@ -1,12 +0,0 @@
35 -# Config file for /etc/init.d/infinoted for Gentoo Linux
36 -
37 -USER="infinote"
38 -GROUP="infinote"
39 -UMASK="007"
40 -
41 -PIDFILE="/var/run/infinoted.pid"
42 -
43 -# Please read `infinoted --help` for other options.
44 -# This is a fast setup for local networks only (maybe not even those),
45 -# make sure you use appropriate security on untrusted networks.
46 -OPTIONS="--root-directory=/var/lib/infinote --security-policy=no-tls"
47
48 diff --git a/net-libs/libinfinity/files/infinoted.initd b/net-libs/libinfinity/files/infinoted.initd
49 deleted file mode 100644
50 index a235ceaec46..00000000000
51 --- a/net-libs/libinfinity/files/infinoted.initd
52 +++ /dev/null
53 @@ -1,27 +0,0 @@
54 -#!/sbin/openrc-run
55 -# Copyright 1999-2009 Gentoo Foundation
56 -# Distributed under the terms of the GNU General Public License v2
57 -
58 -
59 -depend() {
60 - need net
61 -}
62 -
63 -start() {
64 - ebegin "Starting infinoted"
65 - start-stop-daemon \
66 - --start --quiet --background --make-pidfile \
67 - --pidfile /var/run/infinoted.pid \
68 - --exec /usr/bin/infinoted \
69 - --user ${USER} --group ${GROUP} --umask 007 \
70 - -- ${OPTIONS}
71 - eend $?
72 -}
73 -
74 -stop() {
75 - ebegin "Stopping infinoted"
76 - start-stop-daemon \
77 - --stop --quiet \
78 - --pidfile /var/run/infinoted.pid
79 - eend $?
80 -}
81
82 diff --git a/net-libs/libinfinity/libinfinity-0.6.7.ebuild b/net-libs/libinfinity/libinfinity-0.6.7.ebuild
83 deleted file mode 100644
84 index ebfb42c2b8b..00000000000
85 --- a/net-libs/libinfinity/libinfinity-0.6.7.ebuild
86 +++ /dev/null
87 @@ -1,70 +0,0 @@
88 -# Copyright 1999-2016 Gentoo Foundation
89 -# Distributed under the terms of the GNU General Public License v2
90 -
91 -EAPI=5
92 -
93 -inherit autotools-utils eutils versionator user
94 -
95 -MY_PV=$(get_version_component_range 1-2)
96 -
97 -DESCRIPTION="An implementation of the Infinote protocol written in GObject-based C"
98 -HOMEPAGE="http://gobby.0x539.de/"
99 -SRC_URI="http://releases.0x539.de/${PN}/${P}.tar.gz"
100 -LICENSE="LGPL-2.1"
101 -SLOT="0"
102 -KEYWORDS="~amd64 ~x86"
103 -IUSE="doc gtk server static-libs zeroconf"
104 -
105 -RDEPEND="dev-libs/glib:2
106 - dev-libs/libxml2
107 - net-libs/gnutls
108 - sys-libs/pam
109 - virtual/gsasl
110 - gtk? ( x11-libs/gtk+:3 )
111 - zeroconf? ( net-dns/avahi )
112 -"
113 -DEPEND="${RDEPEND}
114 - virtual/pkgconfig
115 - sys-devel/gettext
116 - doc? ( dev-util/gtk-doc )"
117 -
118 -DOCS=(AUTHORS NEWS README.md TODO)
119 -
120 -pkg_setup() {
121 - if use server ; then
122 - enewgroup infinote 100
123 - enewuser infinote 100 /bin/bash /var/lib/infinote infinote
124 - fi
125 -}
126 -
127 -src_configure() {
128 - local myeconfargs=(
129 - $(use_enable doc gtk-doc)
130 - $(use_with gtk inftextgtk)
131 - $(use_with gtk infgtk)
132 - $(use_with gtk gtk3)
133 - $(use_with server infinoted)
134 - $(use_with zeroconf)
135 - $(use_with zeroconf libdaemon)
136 - )
137 - autotools-utils_src_configure
138 -}
139 -
140 -src_install() {
141 - autotools-utils_src_install
142 -
143 - if use server ; then
144 - newinitd "${FILESDIR}/infinoted.initd" infinoted
145 - newconfd "${FILESDIR}/infinoted.confd" infinoted
146 -
147 - keepdir /var/lib/infinote
148 - fowners infinote:infinote /var/lib/infinote
149 - fperms 770 /var/lib/infinote
150 -
151 - dosym /usr/bin/infinoted-${MY_PV} /usr/bin/infinoted
152 -
153 - elog "Add local users who should have local access to the documents"
154 - elog "created by infinoted to the infinote group."
155 - elog "The documents are saved in /var/lib/infinote per default."
156 - fi
157 -}
158
159 diff --git a/net-libs/libinfinity/metadata.xml b/net-libs/libinfinity/metadata.xml
160 deleted file mode 100644
161 index b3c3a5e7610..00000000000
162 --- a/net-libs/libinfinity/metadata.xml
163 +++ /dev/null
164 @@ -1,11 +0,0 @@
165 -<?xml version="1.0" encoding="UTF-8"?>
166 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
167 -<pkgmetadata>
168 - <!-- maintainer-needed -->
169 - <use>
170 - <flag name="server">
171 - Build and install the server binary including init.d/conf.d-scripts.
172 - Needed if you want to host an infinote server for gobby.
173 - </flag>
174 - </use>
175 -</pkgmetadata>
176
177 diff --git a/profiles/package.mask b/profiles/package.mask
178 index 663224b96ba..dd55fac7d1b 100644
179 --- a/profiles/package.mask
180 +++ b/profiles/package.mask
181 @@ -741,13 +741,6 @@ net-analyzer/netcat6
182 # Removal in 30 days. Bug #545818.
183 media-libs/ccaudio2
184
185 -# Michał Górny <mgorny@g.o> (13 Mar 2019)
186 -# Library part of the gobby editor that has been removed in 2016.
187 -# It has no maintainer, no revdeps and suffers from GID collision
188 -# (#537488).
189 -# Removal in 30 days. Bug #680216.
190 -net-libs/libinfinity
191 -
192 # Eray Aslan <eras@g.o> (01 Mar 2019)
193 # Mask experimental software
194 =mail-mta/postfix-3.5*