summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-04-13 08:49:12 +0200
committerMichał Górny <mgorny@gentoo.org>2019-04-13 08:50:05 +0200
commit359e808e74f66b114e47836b51bc2614cdd28802 (patch)
treea2f21c445a2e7c45303a654f628ce4492b356d0a
parentnet-libs/adns: Remove last-rited pkg (diff)
downloadgentoo-359e808e74f66b114e47836b51bc2614cdd28802.tar.gz
gentoo-359e808e74f66b114e47836b51bc2614cdd28802.tar.bz2
gentoo-359e808e74f66b114e47836b51bc2614cdd28802.zip
net-libs/libinfinity: Remove last-rited pkg
Closes: https://bugs.gentoo.org/680216 Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--net-libs/libinfinity/Manifest1
-rw-r--r--net-libs/libinfinity/files/infinoted.confd12
-rw-r--r--net-libs/libinfinity/files/infinoted.initd27
-rw-r--r--net-libs/libinfinity/libinfinity-0.6.7.ebuild70
-rw-r--r--net-libs/libinfinity/metadata.xml11
-rw-r--r--profiles/package.mask7
6 files changed, 0 insertions, 128 deletions
diff --git a/net-libs/libinfinity/Manifest b/net-libs/libinfinity/Manifest
deleted file mode 100644
index 9e3291ba9cb2..000000000000
--- a/net-libs/libinfinity/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libinfinity-0.6.7.tar.gz 1989993 BLAKE2B 4b5e963dc0d20f95d5acef5056ddc6f45fdcbe1c7044911d1c529b81291854721cffd119316c153516d0a6feff29aa9a2b298f774e02c87b4ce7cf06dddf6449 SHA512 9142badee0976019937c29d9badd404d64e49031007863c254c312d999b9790fa4f2ff80ac982b709744e1bfa532b1bc331b3bf1d55aac3ac70c9cae6a7afd3b
diff --git a/net-libs/libinfinity/files/infinoted.confd b/net-libs/libinfinity/files/infinoted.confd
deleted file mode 100644
index 81e62a4d9515..000000000000
--- a/net-libs/libinfinity/files/infinoted.confd
+++ /dev/null
@@ -1,12 +0,0 @@
-# Config file for /etc/init.d/infinoted for Gentoo Linux
-
-USER="infinote"
-GROUP="infinote"
-UMASK="007"
-
-PIDFILE="/var/run/infinoted.pid"
-
-# Please read `infinoted --help` for other options.
-# This is a fast setup for local networks only (maybe not even those),
-# make sure you use appropriate security on untrusted networks.
-OPTIONS="--root-directory=/var/lib/infinote --security-policy=no-tls"
diff --git a/net-libs/libinfinity/files/infinoted.initd b/net-libs/libinfinity/files/infinoted.initd
deleted file mode 100644
index a235ceaec463..000000000000
--- a/net-libs/libinfinity/files/infinoted.initd
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting infinoted"
- start-stop-daemon \
- --start --quiet --background --make-pidfile \
- --pidfile /var/run/infinoted.pid \
- --exec /usr/bin/infinoted \
- --user ${USER} --group ${GROUP} --umask 007 \
- -- ${OPTIONS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping infinoted"
- start-stop-daemon \
- --stop --quiet \
- --pidfile /var/run/infinoted.pid
- eend $?
-}
diff --git a/net-libs/libinfinity/libinfinity-0.6.7.ebuild b/net-libs/libinfinity/libinfinity-0.6.7.ebuild
deleted file mode 100644
index ebfb42c2b8b3..000000000000
--- a/net-libs/libinfinity/libinfinity-0.6.7.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils eutils versionator user
-
-MY_PV=$(get_version_component_range 1-2)
-
-DESCRIPTION="An implementation of the Infinote protocol written in GObject-based C"
-HOMEPAGE="http://gobby.0x539.de/"
-SRC_URI="http://releases.0x539.de/${PN}/${P}.tar.gz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc gtk server static-libs zeroconf"
-
-RDEPEND="dev-libs/glib:2
- dev-libs/libxml2
- net-libs/gnutls
- sys-libs/pam
- virtual/gsasl
- gtk? ( x11-libs/gtk+:3 )
- zeroconf? ( net-dns/avahi )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- sys-devel/gettext
- doc? ( dev-util/gtk-doc )"
-
-DOCS=(AUTHORS NEWS README.md TODO)
-
-pkg_setup() {
- if use server ; then
- enewgroup infinote 100
- enewuser infinote 100 /bin/bash /var/lib/infinote infinote
- fi
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable doc gtk-doc)
- $(use_with gtk inftextgtk)
- $(use_with gtk infgtk)
- $(use_with gtk gtk3)
- $(use_with server infinoted)
- $(use_with zeroconf)
- $(use_with zeroconf libdaemon)
- )
- autotools-utils_src_configure
-}
-
-src_install() {
- autotools-utils_src_install
-
- if use server ; then
- newinitd "${FILESDIR}/infinoted.initd" infinoted
- newconfd "${FILESDIR}/infinoted.confd" infinoted
-
- keepdir /var/lib/infinote
- fowners infinote:infinote /var/lib/infinote
- fperms 770 /var/lib/infinote
-
- dosym /usr/bin/infinoted-${MY_PV} /usr/bin/infinoted
-
- elog "Add local users who should have local access to the documents"
- elog "created by infinoted to the infinote group."
- elog "The documents are saved in /var/lib/infinote per default."
- fi
-}
diff --git a/net-libs/libinfinity/metadata.xml b/net-libs/libinfinity/metadata.xml
deleted file mode 100644
index b3c3a5e76107..000000000000
--- a/net-libs/libinfinity/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <use>
- <flag name="server">
- Build and install the server binary including init.d/conf.d-scripts.
- Needed if you want to host an infinote server for gobby.
- </flag>
- </use>
-</pkgmetadata>
diff --git a/profiles/package.mask b/profiles/package.mask
index 663224b96baa..dd55fac7d1b8 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -741,13 +741,6 @@ net-analyzer/netcat6
# Removal in 30 days. Bug #545818.
media-libs/ccaudio2
-# Michał Górny <mgorny@gentoo.org> (13 Mar 2019)
-# Library part of the gobby editor that has been removed in 2016.
-# It has no maintainer, no revdeps and suffers from GID collision
-# (#537488).
-# Removal in 30 days. Bug #680216.
-net-libs/libinfinity
-
# Eray Aslan <eras@gentoo.org> (01 Mar 2019)
# Mask experimental software
=mail-mta/postfix-3.5*