summaryrefslogtreecommitdiff
path: root/dev-util
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2020-11-09 17:24:08 +0100
committerKarel Kočí <cynerd@email.cz>2020-11-09 17:24:08 +0100
commit7093a07e5b9b13636e8aa24a3bdb8282b7c067c5 (patch)
treec7d9cddd2dd4de99b07ed2ca4c830a94c51ab47b /dev-util
parent5a215fc26bf02c58871a53fecc8c44f5e4b38f07 (diff)
downloadgentoo-personal-overlay-7093a07e5b9b13636e8aa24a3bdb8282b7c067c5.tar.gz
gentoo-personal-overlay-7093a07e5b9b13636e8aa24a3bdb8282b7c067c5.tar.bz2
gentoo-personal-overlay-7093a07e5b9b13636e8aa24a3bdb8282b7c067c5.zip
dev-util/cquery: remove
This is no longer maintained project. Replaced by ccls
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/cquery/cquery-20180718.ebuild31
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-util/cquery/cquery-20180718.ebuild b/dev-util/cquery/cquery-20180718.ebuild
deleted file mode 100644
index 8d53335..0000000
--- a/dev-util/cquery/cquery-20180718.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils llvm git-r3
-
-DESCRIPTION="C/C++ language server"
-HOMEPAGE="https://github.com/cquery-project/cquery"
-# Tar does not contain 3rdparty files so we have to use git instead
-EGIT_REPO_URI="https://github.com/cquery-project/cquery.git"
-EGIT_COMMIT="v${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
- sys-devel/llvm:=
- sys-devel/clang
- >=dev-util/cmake-3.1"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local mycmakeargs=(
- -DSYSTEM_CLANG=ON
- -DCMAKE_PREFIX_PATH="$(get_llvm_prefix)"
- )
- cmake-utils_src_configure
-}