summaryrefslogtreecommitdiff
path: root/dev-util/xesam-tools
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/xesam-tools')
-rw-r--r--dev-util/xesam-tools/Manifest3
-rw-r--r--dev-util/xesam-tools/metadata.xml10
-rw-r--r--dev-util/xesam-tools/xesam-tools-0.7.0-r2.ebuild45
3 files changed, 0 insertions, 58 deletions
diff --git a/dev-util/xesam-tools/Manifest b/dev-util/xesam-tools/Manifest
deleted file mode 100644
index fc0be915fb8f..000000000000
--- a/dev-util/xesam-tools/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST xesam-tools-0.7.0.tar.gz 73173 BLAKE2B f1d8f69d18bd72db4ca40131be8c2e9eac8752d18d8958e343e0c6dd5e49b7a6d89399aec4e4306d2f3c35fddbf4530deff4f9fd09ed0c47b2cc59694ff6baec SHA512 3428e18eb52fa205bca872c8b0b1f12f01f58a8fb43239bc2cc78fe52f9903940702dae4116d4775340b69ec949ad2198b57c0c1246fe58dd8ed8b7a6562bf71
-EBUILD xesam-tools-0.7.0-r2.ebuild 931 BLAKE2B 6b2348f992d753188d48a480edae1bb5b91dba9bf73baa37984d80eda63b6c3ddda1187370d7b97951ebaa98de2c2bab03f144db85449d480febf2b5031d996f SHA512 c90f690219d0a67c3cb38cd1d7816949a2f32e54addb992b5384ba8c1dd481e527191e6d3cb677c3d9ff4ad539e9134efd5ac634751af3d545baa806ef04ab82
-MISC metadata.xml 392 BLAKE2B 3ae2a8f256053d6fa0322ea781210ecc3e225bb0eb67e53edfca71a6dc57fb8e5bd283a1b839f25f8bc3bfaf526a88acc4f1d8c83a8cfabc5a90d0883a995a61 SHA512 10e2dafc4fdaa7f851db74280e47df4f37885d2919383d15f9d51004858d3221178052d55c6fe53fcab101389c1ed028c1d9c4e7ca72360c4620c563ae2a7cdf
diff --git a/dev-util/xesam-tools/metadata.xml b/dev-util/xesam-tools/metadata.xml
deleted file mode 100644
index 9c8fd938d1b4..000000000000
--- a/dev-util/xesam-tools/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">
- xesam-tools provides a set of tools and examples to help developers
- who are working on servers or clients which implement the Xesam desktop
- search specification
- </longdescription>
-</pkgmetadata>
diff --git a/dev-util/xesam-tools/xesam-tools-0.7.0-r2.ebuild b/dev-util/xesam-tools/xesam-tools-0.7.0-r2.ebuild
deleted file mode 100644
index 676f69b8e2bd..000000000000
--- a/dev-util/xesam-tools/xesam-tools-0.7.0-r2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="xml"
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1
-
-DESCRIPTION="Development tools and examples for the Xesam desktop search API"
-HOMEPAGE="http://xesam.org/people/kamstrup/xesam-tools"
-SRC_URI="http://xesam.org/people/kamstrup/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-
-DEPEND=""
-RDEPEND="
- $(python_gen_cond_dep '
- dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
- dev-python/pygobject:2[${PYTHON_MULTI_USEDEP}]
- dev-python/pygtk[${PYTHON_MULTI_USEDEP}]
- ')"
-
-pkg_setup() {
- python-single-r1_pkg_setup
-}
-
-src_install() {
- distutils-r1_src_install
-
- insinto "/usr/share/doc/${PF}"
- doins -r samples
-
- if use examples; then
- insinto "/usr/share/doc/${PF}/demo"
- doins "demo/demo.py"
- insopts -m 0755
- doins demo/[^d]*
- fi
-}