summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-02-14 22:59:33 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2021-02-14 22:59:33 +0100
commit064c6af537e54c91919346f0ccc43f5e926f0cf3 (patch)
tree3d6aef2eb765670c815847055424f2b47666ae19 /app-misc
parentmedia-libs/libebur128: 1.2.6 version bump, drop IUSE=static-libs (diff)
downloadgentoo-064c6af537e54c91919346f0ccc43f5e926f0cf3.tar.gz
gentoo-064c6af537e54c91919346f0ccc43f5e926f0cf3.tar.bz2
gentoo-064c6af537e54c91919346f0ccc43f5e926f0cf3.zip
app-misc/task: Drop 2.5.1-r1
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/task/task-2.5.1-r1.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/app-misc/task/task-2.5.1-r1.ebuild b/app-misc/task/task-2.5.1-r1.ebuild
deleted file mode 100644
index 25ea234d42b0..000000000000
--- a/app-misc/task/task-2.5.1-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils bash-completion-r1
-
-DESCRIPTION="Taskwarrior is a command-line todo list manager"
-HOMEPAGE="https://taskwarrior.org/"
-SRC_URI="https://taskwarrior.org/download/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86 ~x64-macos"
-IUSE="+sync vim-syntax zsh-completion"
-
-DEPEND="sys-libs/readline:0
- sync? ( net-libs/gnutls:0= )
- elibc_glibc? ( sys-apps/util-linux )"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}"/0001-TW-1778-Unicode-strings-are-truncated-in-task-descri.patch )
-
-src_prepare() {
- cmake-utils_src_prepare
-
- # don't automatically install scripts
- sed -i '/scripts/d' CMakeLists.txt || die
-}
-
-src_configure() {
- mycmakeargs=(
- -DENABLE_SYNC=$(usex sync)
- -DTASK_DOCDIR=share/doc/${PF}
- -DTASK_RCDIR=share/${PN}/rc
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
-
- newbashcomp scripts/bash/task.sh task
-
- if use vim-syntax; then
- rm scripts/vim/README || die
- insinto /usr/share/vim/vimfiles
- doins -r scripts/vim/*
- fi
-
- if use zsh-completion; then
- insinto /usr/share/zsh/site-functions
- doins scripts/zsh/*
- fi
-
- exeinto "/usr/share/${PN}/scripts"
- doexe scripts/add-ons/*
-}