Home
       dev-db/sqlitebrowser: Remove from overlay. - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
   DIR commit 4e6d4da47bfd4e63f4399b8c4c76b29e99b36051
   DIR parent 0b543a2ec3a5e9eac9072d043fdbdbfe5c687267
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Thu, 27 Oct 2022 12:44:34 +0200
       
       dev-db/sqlitebrowser: Remove from overlay.
       
       Diffstat:
         D dev-db/sqlitebrowser/metadata.xml   |      33 -------------------------------
         D dev-db/sqlitebrowser/sqlitebrowser… |      69 ------------------------------
       
       2 files changed, 0 insertions(+), 102 deletions(-)
       ---
   DIR diff --git a/dev-db/sqlitebrowser/metadata.xml b/dev-db/sqlitebrowser/metadata.xml
       @@ -1,33 +0,0 @@
       -<?xml version="1.0" encoding="UTF-8"?>
       -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
       -<pkgmetadata>
       -        <maintainer type="person" proxied="yes">
       -                <email>beatussum@protonmail.com</email>
       -                <name>Mattéo Rossillol‑‑Laruelle</name>
       -        </maintainer>
       -        <maintainer type="project" proxied="proxy">
       -                <email>proxy-maint@gentoo.org</email>
       -                <name>Proxy Maintainers</name>
       -        </maintainer>
       -        <longdescription>
       -                DB Browser for SQLite (DB4S) is a freeware, public domain, open source
       -                visual tool used to create, design and edit database files compatible
       -                with SQLite. It is meant to be used for users and developers that want
       -                to create databases, edit and search data using a familiar
       -                spreadsheet-like interface, without the need to learn complicated SQL
       -                commands.
       -        </longdescription>
       -        <longdescription lang="fr">
       -                DB Browser for SQLite (DB4S) est un outil graphique, gratuit et open
       -                source permettant de créer, concevoir et éditer toute base de données
       -                compatible avec SQLite. Celui-ci est à déstination des utilisateurs et
       -                des développeurs qui veulent créer des base de données et interragir
       -                avec ces dernières, tout en utilisant une interface semblable à celle
       -                d'un tableur, et, de ce fait, ne pas être contraint à apprendre des
       -                commandes SQL complexes.
       -        </longdescription>
       -        <upstream>
       -                <bugs-to>https://github.com/sqlitebrowser/sqlitebrowser/issues/</bugs-to>
       -                <remote-id type="github">sqlitebrowser/sqlitebrowser</remote-id>
       -        </upstream>
       -</pkgmetadata>
   DIR diff --git a/dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild b/dev-db/sqlitebrowser/sqlitebrowser-9999.ebuild
       @@ -1,69 +0,0 @@
       -# Copyright 1999-2022 Gentoo Authors
       -# Distributed under the terms of the GNU General Public License v2
       -
       -EAPI=8
       -
       -inherit cmake 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="test"
       -RESTRICT="!test? ( test )"
       -
       -DEPEND="
       -        app-editors/qhexedit2
       -        dev-db/sqlite:3
       -        >=dev-db/sqlcipher-4.0.1
       -        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:=
       -"
       -
       -BDEPEND="
       -        >=dev-qt/linguist-tools-5.5:5
       -        test? ( >=dev-qt/qttest-5.5:5 )
       -"
       -
       -RDEPEND="
       -        ${DEPEND}
       -        >=dev-qt/qtsvg-5.5:5
       -"
       -
       -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=1
       -        )
       -
       -        cmake_src_configure
       -}