From 857d7d4a5013988d25840a23d0980e40a7c91cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B8=D1=80=D0=B5=D1=86=D0=BA=D0=B8=D0=B9=20=D0=9C?= =?UTF-8?q?=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Wed, 18 Nov 2020 15:24:55 +0300 Subject: [PATCH] =?UTF-8?q?dev-vcs/qgit:=20=D0=BF=D0=B5=D1=80=D0=B5=D0=BD?= =?UTF-8?q?=D0=BE=D1=81=20=D0=B8=D0=B7=20portage=20=D1=81=20=D0=B8=D1=81?= =?UTF-8?q?=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=83?= =?UTF-8?q?=D1=81=D1=82=D0=B0=D0=BD=D0=BE=D0=B2=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://bugs.gentoo.org/755023 --- dev-vcs/qgit/Manifest | 1 + dev-vcs/qgit/metadata.xml | 11 +++++++++++ dev-vcs/qgit/qgit-2.9-r1.ebuild | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 dev-vcs/qgit/Manifest create mode 100644 dev-vcs/qgit/metadata.xml create mode 100644 dev-vcs/qgit/qgit-2.9-r1.ebuild diff --git a/dev-vcs/qgit/Manifest b/dev-vcs/qgit/Manifest new file mode 100644 index 000000000..236635a67 --- /dev/null +++ b/dev-vcs/qgit/Manifest @@ -0,0 +1 @@ +DIST qgit-2.9.tar.gz 263875 BLAKE2B 8ec1235c760f2473a0700e7033ab99f3e72f019dee47761b86999a7de173132cf6592e9f5652b68285cd126adc4efffb5688944f34be2686683727354ab041c5 SHA512 2c91e02d0a7ea1e4620882520c77b47ff9b28fb9c9f9d178bf98b3e728e600e8d86a9e6e4cd60c33dbe63ced3636934fb7cdd6b0d5fa58182873675e3f97cc33 diff --git a/dev-vcs/qgit/metadata.xml b/dev-vcs/qgit/metadata.xml new file mode 100644 index 000000000..241d7194c --- /dev/null +++ b/dev-vcs/qgit/metadata.xml @@ -0,0 +1,11 @@ + + + + + qt@gentoo.org + Gentoo Qt Project + + + tibirna/qgit + + diff --git a/dev-vcs/qgit/qgit-2.9-r1.ebuild b/dev-vcs/qgit/qgit-2.9-r1.ebuild new file mode 100644 index 000000000..3e4241cad --- /dev/null +++ b/dev-vcs/qgit/qgit-2.9-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake xdg + +DESCRIPTION="Qt GUI for git repositories" +HOMEPAGE="https://github.com/tibirna/qgit" +SRC_URI="https://github.com/tibirna/qgit/archive/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" +IUSE="" + +DEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 +" +RDEPEND="${DEPEND} + dev-vcs/git + !dev-vcs/qgit:2 +" + +S="${WORKDIR}/${PN}-${P}" + +DOCS=( README.adoc ) + +src_prepare() { + cmake_src_prepare +}