commit:     c15c11e6b83c6e140047c1647510370099be70f7
Author:     Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail <DOT> com>
AuthorDate: Wed Oct  2 09:02:52 2024 +0000
Commit:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Mon Oct  7 03:23:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c15c11e6

dev-db/sqlitebrowser: drop 3.12.2-r2

Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/38848
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>

 dev-db/sqlitebrowser/Manifest                      |  1 -
 .../sqlitebrowser-3.12.2-str-conflict-fix.patch    | 13 ----
 .../sqlitebrowser/sqlitebrowser-3.12.2-r2.ebuild   | 77 ----------------------
 3 files changed, 91 deletions(-)

diff --git a/dev-db/sqlitebrowser/Manifest b/dev-db/sqlitebrowser/Manifest
index 11db8af4f79c..1cbffb5b668d 100644
--- a/dev-db/sqlitebrowser/Manifest
+++ b/dev-db/sqlitebrowser/Manifest
@@ -1,2 +1 @@
-DIST sqlitebrowser-3.12.2.tar.gz 3990817 BLAKE2B 
a0c1495814a814638428fa50e55d5afeb2d3f5c80c9aafbdea3cc444e8c681c48acd1f24126945a89d7284c3f0a23979f2b3541fae7c7a70803f7e7ad69be6f4
 SHA512 
a6afc0a4286f07adb7038f3a010c93e14204b477bde27b1599c9bfe3390422d3edfaa2a9381b1f13e63a7aaf90e931ee85358eb8b2c15b6ea55818d29c59395f
 DIST sqlitebrowser-3.13.0.tar.gz 4901507 BLAKE2B 
4430944fb6f02a3e33aa6d3e5720faa8e43351314a0c21803fe8bed6d2241ca92830de7be33deb18294f0cad808c96d6c913bd9ddcd64d41a34db32349d44d88
 SHA512 
6261043cee7bc5c525b162e0b5d1ac38d380228ffd752e086fecb49c7f50b463a993a6128547d99addb0480ba71e4f6dd3a0c1e412a692ae86b0b183b7379610

diff --git 
a/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch 
b/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch
deleted file mode 100644
index 07284ca8ba0c..000000000000
--- a/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/src/version.h
-+++ b/src/version.h
-@@ -4,8 +4,8 @@
- #define MINOR_VERSION 12
- #define PATCH_VERSION 2
- 
--#define str(s) #s
--#define xstr(s) str(s)
-+#define stringize(s) #s
-+#define xstr(s) stringize(s)
- #define APP_VERSION xstr(MAJOR_VERSION) "." xstr(MINOR_VERSION) "." 
xstr(PATCH_VERSION)
- 
- // If it is defined by the compiler, then it is a nightly build, and in the 
YYYYMMDD format.

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
-}

Reply via email to