summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--profiles/package.mask5
-rw-r--r--x11-misc/tinymount/Manifest1
-rw-r--r--x11-misc/tinymount/metadata.xml20
-rw-r--r--x11-misc/tinymount/tinymount-0.2.8.ebuild56
4 files changed, 0 insertions, 82 deletions
diff --git a/profiles/package.mask b/profiles/package.mask
index 6a34e2aacb69..95099f8db2a5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -411,11 +411,6 @@ x11-apps/spotlighter
# Fails to build (#542108), relies on dead DirectFB. Removal in a month.
dev-libs/DFB++
-# Pacho Ramos <pacho@gentoo.org> (26 Jul 2017)
-# One of the last consumers of old udisks:0, upstream dead for ages
-# (#601358). Removal in a month.
-x11-misc/tinymount
-
# Kent Fredric <kentnl@gentoo.org> (21 Jul 2017)
# Masked due to serious regression that introduces widespread data
# corruption when storing data in blobs. Masked, because any code
diff --git a/x11-misc/tinymount/Manifest b/x11-misc/tinymount/Manifest
deleted file mode 100644
index 88116742fcf7..000000000000
--- a/x11-misc/tinymount/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tinymount-0.2.8.tar.gz 28176 SHA256 c3aae8e77d32818cbb52a186924bfd0b22fdf45e6e5c73bff56ea478c45fe9ba SHA512 22a958938ce4b4d34d6edd037594945e91d37499264d7907c79c220bd38243b9e4e7b422b00cacc0af991fac9e7d9022d932042df7a65ef9339f351e9b94c758 WHIRLPOOL bbe0e3a5e7b8b595b0c870e0c68fb99bd2852ada2c5f246d5e3efca7689c57765e6f1f1bb1f524ef6367aa26a3b48c4f3468966f21f7808ba108ce28e3d4cac0
diff --git a/x11-misc/tinymount/metadata.xml b/x11-misc/tinymount/metadata.xml
deleted file mode 100644
index 692225c19fa6..000000000000
--- a/x11-misc/tinymount/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>limanski@narod.ru</email>
- <name>Mike Limansky</name>
- <description>Both upstream and ebuild author</description>
- </maintainer>
- <maintainer type="project">
- <email>desktop-misc@gentoo.org</email>
- <name>Gentoo Desktop Miscellaneous Project</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <upstream>
- <remote-id type="github">limansky/tinymount</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/x11-misc/tinymount/tinymount-0.2.8.ebuild b/x11-misc/tinymount/tinymount-0.2.8.ebuild
deleted file mode 100644
index 103925353263..000000000000
--- a/x11-misc/tinymount/tinymount-0.2.8.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PLOCALES="ru uk"
-inherit l10n qt4-r2
-
-if [[ ${PV} == *9999 ]]; then
- EGIT_REPO_URI=("https://github.com/limansky/${PN}.git")
- inherit git-r3
-else
- SRC_URI="https://github.com/limansky/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Simple graphical utility for disk mounting"
-HOMEPAGE="https://github.com/limansky/tinymount"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="debug libnotify"
-
-COMMON_DEPEND="
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- dev-qt/qtgui:4
- libnotify? ( x11-libs/libnotify )"
-DEPEND="${COMMON_DEPEND}
- virtual/pkgconfig"
-RDEPEND="${COMMON_DEPEND}
- sys-fs/udisks:0"
-
-DOCS=( ChangeLog README.md )
-
-src_prepare() {
- remove_locale() {
- sed -i -e "/translations\/${PN}_${1}.ts/d" src/src.pro || die
- }
-
- # Check for locales added/removed from previous version
- l10n_find_plocales_changes src/translations "${PN}_" .ts
-
- # Prevent disabled locales from being built
- l10n_for_each_disabled_locale_do remove_locale
-
- # Bug 441986
- sed -i -e 's|-Werror||g' src/src.pro || die
-
- qt4-r2_src_prepare
-}
-
-src_configure() {
- eqmake4 \
- PREFIX="${EPREFIX}/usr" \
- $(use libnotify && echo CONFIG+=with_libnotify)
-}