aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostadin Shishmanov <kocelfc@tutanota.com>2024-11-18 23:30:57 +0200
committerKostadin Shishmanov <kocelfc@tutanota.com>2024-11-18 23:30:57 +0200
commita8cb72f20a6f0c967097e895b1f1d7fa4ce7f09d (patch)
treede31c4530d36078153ecc7449a4335ebcac5a452 /app-misc
parentapp-misc/corectrl: add 1.4.3 (diff)
downloadguru-a8cb72f20a6f0c967097e895b1f1d7fa4ce7f09d.tar.gz
guru-a8cb72f20a6f0c967097e895b1f1d7fa4ce7f09d.tar.bz2
guru-a8cb72f20a6f0c967097e895b1f1d7fa4ce7f09d.zip
app-misc/corectrl: drop 1.4.1
Signed-off-by: Kostadin Shishmanov <kocelfc@tutanota.com>
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/corectrl/Manifest1
-rw-r--r--app-misc/corectrl/corectrl-1.4.1.ebuild61
2 files changed, 0 insertions, 62 deletions
diff --git a/app-misc/corectrl/Manifest b/app-misc/corectrl/Manifest
index 5789abb84..61e7774d0 100644
--- a/app-misc/corectrl/Manifest
+++ b/app-misc/corectrl/Manifest
@@ -1,3 +1,2 @@
-DIST corectrl-v1.4.1.tar.bz2 261136 BLAKE2B acf8589ba5e98156b07ccc9903b6bebd334bc1b8c85ab33d24152fee6d491fe8d4157c3322c25c5ec6a1c93e003de59951947b3d559c3ee8530b144ac7b2353d SHA512 09c58c82b16ea86feafbed98dbfc27e828b342bfdb8eaaee15cd4fcb4ebe9e1cc8e7a55661b1f65b33cb568f83e37e732cada2f2c387a36501d65b3ded6d9914
DIST corectrl-v1.4.2.tar.bz2 262647 BLAKE2B 38e923f9d6b6967d91dff6c5c11fdbf5f4dc5d2c0f98a5e00bfa1742f78b97cc45837fdc2017a1e5a705a93d18cce945345d7daeda6302cc38ab7d594a7c3848 SHA512 9fc528e800185a38aa93843ce384d533efde2bc7b6201718f544bba7d0e3635ad2a5d03f6a5678cba4caf7b60b82a3cd72d443d574e4cc035009b70912719a54
DIST corectrl-v1.4.3.tar.bz2 262419 BLAKE2B a9400922ed7a07ef247fcfed48f37509bcef7fafeb74f36f8b76d08e773fc07ab15a6cd2b49b38a7d62536752930904f762658427c68794676b1a83246e0408e SHA512 2de26aaa45d7e17d39fd7b4c9428193b6fdcadd5e0b56eb78069d01804c2b0591234826b6a7af97c17d6f555bd9063144b7de5320609591a46f9107a28b07ed7
diff --git a/app-misc/corectrl/corectrl-1.4.1.ebuild b/app-misc/corectrl/corectrl-1.4.1.ebuild
deleted file mode 100644
index ed3b0cd78..000000000
--- a/app-misc/corectrl/corectrl-1.4.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit ecm
-
-DESCRIPTION="Core control application"
-HOMEPAGE="https://gitlab.com/corectrl/corectrl"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://gitlab.com/corectrl/corectrl.git"
-else
- SRC_URI="https://gitlab.com/corectrl/corectrl/-/archive/v${PV}/corectrl-v${PV}.tar.bz2"
- KEYWORDS="~amd64"
- S="${WORKDIR}/${PN}-v${PV}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
- dev-libs/botan:=
- dev-libs/pugixml
- dev-libs/spdlog:=
- >=dev-libs/quazip-1.3:=[qt5]
- dev-qt/qtcharts:5[qml]
- dev-qt/qtdbus:5
- dev-qt/qtdeclarative:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtwidgets:5
- sys-auth/polkit[introspection]
-"
-DEPEND="${COMMON_DEPEND}
- dev-cpp/units
- dev-qt/linguist-tools:5
- dev-qt/qtsvg:5
- x11-libs/libdrm[video_cards_amdgpu]
- test? (
- >=dev-cpp/catch-3.5.2
- dev-cpp/trompeloeil
- )
-"
-
-RDEPEND="${COMMON_DEPEND}
- dev-libs/glib
- dev-libs/libfmt:=
- dev-qt/qtquickcontrols2
-"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test ON OFF)
- )
- cmake_src_configure
-}