commit: 359e808e74f66b114e47836b51bc2614cdd28802 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Apr 13 06:49:12 2019 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Apr 13 06:50:05 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=359e808e
net-libs/libinfinity: Remove last-rited pkg Closes: https://bugs.gentoo.org/680216 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> net-libs/libinfinity/Manifest | 1 - net-libs/libinfinity/files/infinoted.confd | 12 ----- net-libs/libinfinity/files/infinoted.initd | 27 ----------- net-libs/libinfinity/libinfinity-0.6.7.ebuild | 70 --------------------------- net-libs/libinfinity/metadata.xml | 11 ----- profiles/package.mask | 7 --- 6 files changed, 128 deletions(-) diff --git a/net-libs/libinfinity/Manifest b/net-libs/libinfinity/Manifest deleted file mode 100644 index 9e3291ba9cb..00000000000 --- 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 81e62a4d951..00000000000 --- 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 a235ceaec46..00000000000 --- 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 ebfb42c2b8b..00000000000 --- 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 b3c3a5e7610..00000000000 --- 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 663224b96ba..dd55fac7d1b 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 <[email protected]> (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 <[email protected]> (01 Mar 2019) # Mask experimental software =mail-mta/postfix-3.5*
