diff options
author | Davide Pesavento <pesa@gentoo.org> | 2017-04-22 21:05:55 +0200 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2017-04-22 21:06:19 +0200 |
commit | 7a297d8b8d313a36f9356463122f4b59e560b49a (patch) | |
tree | ef02f8359e5e90afe88807d68f63697f2253ee49 /dev-vcs/qgit | |
parent | sys-process/tini: activate static use flag by default to fix docker (diff) | |
download | gentoo-7a297d8b8d313a36f9356463122f4b59e560b49a.tar.gz gentoo-7a297d8b8d313a36f9356463122f4b59e560b49a.tar.bz2 gentoo-7a297d8b8d313a36f9356463122f4b59e560b49a.zip |
dev-vcs/qgit: version bump
Switched to cmake, as the qmake-based buildsystem
is broken in multiple ways.
Gentoo-Bug: 612390
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-vcs/qgit')
-rw-r--r-- | dev-vcs/qgit/Manifest | 1 | ||||
-rw-r--r-- | dev-vcs/qgit/qgit-2.7.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-vcs/qgit/Manifest b/dev-vcs/qgit/Manifest index 87e8a0c7e1a3..0da6a74b6084 100644 --- a/dev-vcs/qgit/Manifest +++ b/dev-vcs/qgit/Manifest @@ -1 +1,2 @@ DIST qgit-2.6.tar.gz 252491 SHA256 f463e4fa3571dcfb1ffe4c83bc5d7e1be8d2caa3513d28dbe0591a6d988239af SHA512 3bc1e68f8c92951eec52f73c21d3fc9bc8e41ede19468e89aec8ed43e127b38d11f391ee1a363e448ae94fa51d360092840422ddeb4b4b8eb141036dfa83204b WHIRLPOOL e014428bfc40d22928dc1e9e9c0fa6a811649b36338ba7644c32b5cb6b2a7964b2ad463a98223d176e92ecfc22828e16c1a395818b77fb2da4ba57713e588d77 +DIST qgit-2.7.tar.gz 259624 SHA256 183d116b2fb38c6a76c99577f6cc86f0241f8b6bdc74042be4cb8631567f5e9e SHA512 024fd825aaec64301f0bcbe0ca1d02eb8da0d754d79d09075b1cd87a507d44c97092b824949f2637b37f0e71b36723cad6963cd00dcb2f7597832aba3a5ab842 WHIRLPOOL cbe9f3c241b0f8fc01351a92e3a4b31bc49de61e3486abb427b81ef129e6b90670b809bfaf4bbd9caa46b8a18143f3b4ae7b19f621978e9c1b1b5bf15626c037 diff --git a/dev-vcs/qgit/qgit-2.7.ebuild b/dev-vcs/qgit/qgit-2.7.ebuild new file mode 100644 index 000000000000..5dc7e20ae956 --- /dev/null +++ b/dev-vcs/qgit/qgit-2.7.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="Qt GUI for git repositories" +HOMEPAGE="http://libre.tibirna.org/projects/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} |