summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2018-01-28 15:43:10 +0300
committerMikle Kolyada <zlogene@gentoo.org>2018-01-28 15:43:10 +0300
commitd0b1cc1c83b7ad71374d3a90afff6e1f4ceba885 (patch)
treefc6b58a7ec72f71e1588b046423a91912ba95302 /app-misc
parentdev-python/: remove last rited packages (diff)
downloadgentoo-d0b1cc1c83b7ad71374d3a90afff6e1f4ceba885.tar.gz
gentoo-d0b1cc1c83b7ad71374d3a90afff6e1f4ceba885.tar.bz2
gentoo-d0b1cc1c83b7ad71374d3a90afff6e1f4ceba885.zip
app-misc/tasque: remove last rited package
Closes: https://bugs.gentoo.org/622110
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/tasque/Manifest1
-rw-r--r--app-misc/tasque/metadata.xml16
-rw-r--r--app-misc/tasque/tasque-0.1.12.ebuild51
3 files changed, 0 insertions, 68 deletions
diff --git a/app-misc/tasque/Manifest b/app-misc/tasque/Manifest
deleted file mode 100644
index ab8bf81341a4..000000000000
--- a/app-misc/tasque/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tasque-0.1.12.tar.xz 461576 BLAKE2B 1bf0ccc9ff67056d2ca5f2595a3f7eb14bd7ea0f967e0058e84168eb82eddc6c551e878ae72945b9a97aebd1ddcdf4b9295eeebf06d0ce3295b7085027673316 SHA512 441aa1a13d260e59ef07bb75a0b38b43cbcc30737589922ba4e697220fdd0a9bfe9af8c1c2484b6c0d68a4f33cb0f895822cb04e90d6782db66c0f80de50078b
diff --git a/app-misc/tasque/metadata.xml b/app-misc/tasque/metadata.xml
deleted file mode 100644
index 2989d5474d21..000000000000
--- a/app-misc/tasque/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>dotnet@gentoo.org</email>
- <name>Gentoo Dotnet Project</name>
- </maintainer>
- <use>
- <flag name="rememberthemilk">
- Allows you to use http://www.rememberthemilk.com/ as your storage backend.
- </flag>
- <flag name="hiveminder">
- Allows you to use http://www.hiveminder.com/ as your storage backend.
- </flag>
- </use>
-</pkgmetadata>
diff --git a/app-misc/tasque/tasque-0.1.12.ebuild b/app-misc/tasque/tasque-0.1.12.ebuild
deleted file mode 100644
index aee4663574b9..000000000000
--- a/app-misc/tasque/tasque-0.1.12.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils gnome.org mono
-
-DESCRIPTION="Simple task management app (TODO list) for the Linux Desktop"
-HOMEPAGE="https://live.gnome.org/Tasque"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+rememberthemilk +sqlite hiveminder debug"
-
-LANGS="ca ca@valencia cs da de el en_GB eo es et fi fr gl hu id it ja lv nb nds nl pl
- pt pt_BR ro ru sl sr sr@latin sv th tr zh_CN zh_TW"
-
-REQUIRED_USE="|| ( rememberthemilk sqlite hiveminder )"
-
-RDEPEND=">=dev-dotnet/gtk-sharp-2.12.7-r5
- >=dev-dotnet/notify-sharp-0.4.0_pre20080912
- dev-dotnet/dbus-sharp:1.0
- dev-dotnet/dbus-sharp-glib:1.0
- sqlite? ( dev-db/sqlite:3 )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
- econf --disable-backend-icecore \
- --disable-backend-eds \
- --disable-appindicator \
- --enable-backend-rtm \
- $(use_enable sqlite backend-sqlite) \
- $(use_enable hiveminder backend-hiveminder) \
- $(use_enable debug)
-}
-
-src_install() {
- default
- mv_command="cp -pPR" mono_multilib_comply
-
- if [[ -n ${LINGUAS+set} ]]; then
- einfo "Cleaning up locales..."
- for lang in ${LANGS}; do
- if has ${lang} ${LINGUAS}; then
- einfo "- keeping ${lang}"
- else
- rm -Rf "${D}"/usr/share/locale/"${lang}" || die
- fi
- done
- fi
-}