summaryrefslogtreecommitdiff
path: root/dev-db/sqlitebrowser/sqlitebrowser-3.12.2-r2.ebuild
diff options
context:
space:
mode:
authorMattéo Rossillol‑‑Laruelle <beatussum@protonmail.com>2024-10-02 11:02:52 +0200
committerEli Schwartz <eschwartz@gentoo.org>2024-10-06 23:23:57 -0400
commitc15c11e6b83c6e140047c1647510370099be70f7 (patch)
tree7f99feb8d5f056ee5fb43e41ca1279e85fa6c709 /dev-db/sqlitebrowser/sqlitebrowser-3.12.2-r2.ebuild
parentdfe1b1aab8e4ac6baf473ef0dc8a38c0ec813b67 (diff)
downloadgentoo-c15c11e6b83c6e140047c1647510370099be70f7.tar.gz
gentoo-c15c11e6b83c6e140047c1647510370099be70f7.tar.bz2
gentoo-c15c11e6b83c6e140047c1647510370099be70f7.zip
dev-db/sqlitebrowser: drop 3.12.2-r2
Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum@protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/38848 Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'dev-db/sqlitebrowser/sqlitebrowser-3.12.2-r2.ebuild')
-rw-r--r--dev-db/sqlitebrowser/sqlitebrowser-3.12.2-r2.ebuild77
1 files changed, 0 insertions, 77 deletions
diff --git a/dev-db/sqlitebrowser/sqlitebrowser-3.12.2-r2.ebuild b/dev-db/sqlitebrowser/sqlitebrowser-3.12.2-r2.ebuild
deleted file mode 100644
index 0b6665b1dd80..000000000000
--- a/dev-db/sqlitebrowser/sqlitebrowser-3.12.2-r2.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic xdg
-
-DESCRIPTION="A light GUI editor for SQLite databases"
-HOMEPAGE="https://sqlitebrowser.org/"
-
-if [[ "${PV}" = *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
-else
- SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-3+ MPL-2.0"
-SLOT="0"
-IUSE="sqlcipher test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- app-editors/qhexedit2
- dev-db/sqlite:3
- dev-libs/qcustomplot
- >=dev-qt/qtconcurrent-5.5:5
- >=dev-qt/qtcore-5.5:5
- >=dev-qt/qtgui-5.5:5
- >=dev-qt/qtnetwork-5.5:5[ssl]
- >=dev-qt/qtprintsupport-5.5:5
- >=dev-qt/qtwidgets-5.5:5
- >=dev-qt/qtxml-5.5:5
- >=x11-libs/qscintilla-2.8.10:=[qt5(+)]
- sqlcipher? ( dev-db/sqlcipher )
-"
-
-BDEPEND="
- >=dev-qt/linguist-tools-5.5:5
- test? ( >=dev-qt/qttest-5.5:5 )
-"
-
-RDEPEND="
- ${DEPEND}
- >=dev-qt/qtsvg-5.5:5
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-str-conflict-fix.patch"
-)
-
-src_prepare() {
- cmake_src_prepare
-
- if ! use test; then
- sed -i CMakeLists.txt \
- -e "/find_package/ s/ Test//" \
- -e "/set/ s/ Qt5::Test//" \
- || die "Cannot remove Qt Test from CMake dependencies"
- fi
-}
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_TESTING=$(usex test)
- -DFORCE_INTERNAL_QCUSTOMPLOT=OFF
- -DFORCE_INTERNAL_QHEXEDIT=OFF
- -Dsqlcipher=$(usex sqlcipher)
- )
-
- # https://bugs.gentoo.org/855254
- append-flags -fno-strict-aliasing
- filter-lto
-
- cmake_src_configure
-}