diff options
author | Sergey Torokhov <torokhov-s-a@yandex.ru> | 2023-09-12 16:05:46 +0300 |
---|---|---|
committer | Sergey Torokhov <torokhov-s-a@yandex.ru> | 2023-09-12 16:05:46 +0300 |
commit | 183aaf28d2d42a1f76d448c853f253a755536df1 (patch) | |
tree | 91bad2c64f13ea367b042533803e40671f14e0ca /dev-vcs | |
parent | dev-python/sphinx-argparse-cli: drop 1.11.0 (diff) | |
download | guru-183aaf28d2d42a1f76d448c853f253a755536df1.tar.gz guru-183aaf28d2d42a1f76d448c853f253a755536df1.tar.bz2 guru-183aaf28d2d42a1f76d448c853f253a755536df1.zip |
dev-vcs/gitqlient: drop old 1.6.1
Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/gitqlient/Manifest | 1 | ||||
-rw-r--r-- | dev-vcs/gitqlient/gitqlient-1.6.1.ebuild | 55 |
2 files changed, 0 insertions, 56 deletions
diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest index 485c1ba5f..def182b5f 100644 --- a/dev-vcs/gitqlient/Manifest +++ b/dev-vcs/gitqlient/Manifest @@ -1,4 +1,3 @@ -DIST gitqlient-1.6.1.tar.gz 4971880 BLAKE2B b793dd406d1dff7aa193916a08dc5c10159eb54f79d2d9930b672aed5ee5d98fe3d6afb1869032bdeee1790b078a5fefa8064506353d56e870ea95bb24ebcc26 SHA512 e115c9fca6c8fe17b32d326a7f649d35ea55fd1f4c1df7c30962e9f07382d246cd23b8dbdbf6759620d1ba7ba9c48c7a391b2e0a730a58bba9f1ba6425a2da9e DIST gitqlient-1.6.2_pre20230519.tar.gz 4460989 BLAKE2B 1d78f1e9314df2e6519925fa88b7a69bb3c719333c0f687beaaef2ed8d7dbf4b1a364298bc4e5882f5301f6f6ca083668f1b417c7706c622369bccf2fb6cad1a SHA512 f9f83162ed83811604cd9b25a79160bb89997bdf53d930f7466c02d9c725b3300d282d86c83ac967fbcfe5c080b47e23ef4691d081f82c5356d17204867ed661 DIST gitqlient-1.6.2_pre20230519_AuxiliarCustomWidgets.tar.gz 438806 BLAKE2B 67bf89225c661f63c8db72aad0c77213250b928394b65e1829a48994bde4856901287cc9d2f54070b16be8184b0219575ccb92fdfaedf7888d50e2f159dbcbb4 SHA512 2b2fc8e6cac17c60406c5e7ecef0d0a0eb330aec316132f207c39ba2908e169bdbd1b66196c0a8c574c7361bc12374c53167cec1886c6db19ca2aa9203937dc6 DIST gitqlient-1.6.2_pre20230519_QLogger.tar.gz 20306 BLAKE2B 44bb82e964a2ca5fa5332056cbc868880d867e06da6f2a6e7684275910d9addd23c0c9f1dd20c21d90b75658306468865894848ea8338cfd5c8b0a3b8db92484 SHA512 97e717c78244d3da659b279e43bf6ea0d2033295dadf05cbb97b4640d55f0fa94ccac9c69e22798d7ba4ec12bcb7c9e5e8840bfdf62b118711d9a2da298b1515 diff --git a/dev-vcs/gitqlient/gitqlient-1.6.1.ebuild b/dev-vcs/gitqlient/gitqlient-1.6.1.ebuild deleted file mode 100644 index 12d53c9ff..000000000 --- a/dev-vcs/gitqlient/gitqlient-1.6.1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit optfeature qmake-utils xdg - -MY_PN="GitQlient" - -DESCRIPTION="Multi-platform Git client written with Qt" -HOMEPAGE="https://github.com/francescmm/GitQlient" - -SRC_URI="https://github.com/francescmm/${MY_PN}/releases/download/v${PV}/${PN}_${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="~amd64 ~x86" -S="${WORKDIR}/${PN}_${PV}" - -LICENSE="LGPL-2.1" -SLOT="0" - -DEPEND=" - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 -" -RDEPEND=" - ${DEPEND} - dev-vcs/git -" - -src_prepare() { - default - - # Drop 'fatal' warning on version detection via git command: - sed -i -e "/^GQ_SHA/d" \ - -e "/VERSION =/s| \$\$system(git rev-parse --short HEAD)||" "${MY_PN}".pro || die - - sed -i -e "s/Office/Development/" "${S}/src/resources/${PN}.desktop" || die -} - -src_configure() { - eqmake5 PREFIX=/usr "${MY_PN}".pro -} - -src_install() { - emake INSTALL_ROOT="${D}" install -} - -pkg_postinst() { - optfeature "Terminal tab plugin support" x11-libs/qtermwidget - optfeature "GitServer plugin support" dev-vcs/gitqlient-gitserver-plugin - optfeature "Jenkins plugin support" dev-vcs/gitqlient-jenkins-plugin - elog "To use plugins set PluginFolder in GitQlient settings Plugin tab to /usr/$(get_libdir)" - xdg_pkg_postinst -} |