* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2020-10-14 16:37 Andrew Ammerlaan
0 siblings, 0 replies; 16+ messages in thread
From: Andrew Ammerlaan @ 2020-10-14 16:37 UTC (permalink / raw
To: gentoo-commits
commit: 777fbb7bbb8252e2c63643d73414ab49f333ef0b
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Oct 11 21:41:55 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Oct 11 21:47:09 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=777fbb7b
dev-vcs/gitqlient: new package
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/Manifest | 2 ++
dev-vcs/gitqlient/gitqlient-1.2.0.ebuild | 58 ++++++++++++++++++++++++++++++++
dev-vcs/gitqlient/gitqlient-9999.ebuild | 47 ++++++++++++++++++++++++++
dev-vcs/gitqlient/metadata.xml | 15 +++++++++
4 files changed, 122 insertions(+)
diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
new file mode 100644
index 00000000..1767e9ca
--- /dev/null
+++ b/dev-vcs/gitqlient/Manifest
@@ -0,0 +1,2 @@
+DIST QLogger-d33cb64.tar.gz 15378 BLAKE2B adb5bed0c9cc3692b384542306466046242ff50d0c7dd176f439172047991ce4252e315e8289524a9e346abc225aeb9ca89b958f00cd11710294b2885ca0f69d SHA512 bec4785dcdb4cf3434621f68830628c737ee0664223228ec68f09991b5a2090eac024fbce86d6d0614d8a709efd55e0f126c1bbf8451c1c100080df3b8cdd17f
+DIST gitqlient-1.2.0.tar.gz 3768498 BLAKE2B 0daa49b79c6390e367b24d8843f37c6a633d1e12c8e3d2b7d3245fb06ea0f89c6fb3b360fdc3dfaae13568d36a413353c67fbb29e60f19221341dcb71469491a SHA512 4dd4a21a7b222c6d7586bcbf5eec26f321fc18dd6ef52507a4eb4004675b04f437f8801c817a12f16f5b5ea9b3c2e2930f445e8bb09e64d33b89f69dbf310c74
diff --git a/dev-vcs/gitqlient/gitqlient-1.2.0.ebuild b/dev-vcs/gitqlient/gitqlient-1.2.0.ebuild
new file mode 100644
index 00000000..276fda5d
--- /dev/null
+++ b/dev-vcs/gitqlient/gitqlient-1.2.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils xdg
+
+MY_PN="GitQlient"
+QLogger_sha="d33cb645bb6ffc4dd929c348ca011c007351d605"
+
+DESCRIPTION="Multi-platform Git client written with Qt"
+HOMEPAGE="https://github.com/francescmm/GitQlient"
+
+SRC_URI="
+ https://github.com/francescmm/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
+ https://github.com/francescmm/QLogger/archive/d33cb645bb6ffc4dd929c348ca011c007351d605.tar.gz -> QLogger-d33cb64.tar.gz
+"
+KEYWORDS="~amd64 ~x86"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+ dev-qt/qtwidgets:5
+ dev-qt/qtcore:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtsvg:5
+ dev-qt/qtgui:5
+"
+
+RDEPEND="
+ ${DEPEND}
+ dev-vcs/git
+"
+
+src_prepare() {
+ default
+ mv -T "${WORKDIR}"/QLogger-"${QLogger_sha}" "${S}"/QLogger || die
+
+ sed -i -e "s:target.path = /\$\$(HOME)/\$\${TARGET}/bin:target.path = /usr/bin:" \
+ -i -e "s:TARGET = ${MY_PN}:TARGET = ${PN}:" "${MY_PN}".pro || die
+
+ sed -i -e "s:Office:Development:" -i -e "s:Exec=${MY_PN}:Exec=${PN}:" \
+ "${S}/AppImage/${MY_PN}/usr/share/applications/${MY_PN}.desktop" || die
+}
+
+src_configure() {
+ eqmake5 "${MY_PN}".pro
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install
+
+ domenu "${S}/AppImage/${MY_PN}/usr/share/applications/${MY_PN}.desktop" || die
+ doicon -s 48 "${S}/AppImage/${MY_PN}/usr/share/icons/hicolor/48x48/apps/${MY_PN}.png" || die
+}
diff --git a/dev-vcs/gitqlient/gitqlient-9999.ebuild b/dev-vcs/gitqlient/gitqlient-9999.ebuild
new file mode 100644
index 00000000..5ee0e3c9
--- /dev/null
+++ b/dev-vcs/gitqlient/gitqlient-9999.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit git-r3 qmake-utils xdg
+
+MY_PN="GitQlient"
+
+DESCRIPTION="Multi-platform Git client written with Qt"
+HOMEPAGE="https://github.com/francescmm/GitQlient"
+
+EGIT_BRANCH="develop"
+EGIT_SUBMODULES=( QLogger )
+EGIT_REPO_URI="https://github.com/francescmm/${MY_PN}.git"
+SRC_URI=""
+KEYWORDS=""
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+ dev-qt/qtwidgets:5
+ dev-qt/qtcore:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtsvg:5
+ dev-qt/qtgui:5
+"
+
+RDEPEND="
+ ${DEPEND}
+ dev-vcs/git
+"
+
+src_prepare() {
+ default
+ sed -i -e "s:Office:Development:" "${S}/src/resources/${PN}.desktop"
+}
+
+src_configure() {
+ eqmake5 PREFIX=/usr "${MY_PN}".pro
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install
+}
diff --git a/dev-vcs/gitqlient/metadata.xml b/dev-vcs/gitqlient/metadata.xml
new file mode 100644
index 00000000..da4033e9
--- /dev/null
+++ b/dev-vcs/gitqlient/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>torokhov-s-a@yandex.ru</email>
+ <name>Sergey Torokhov</name>
+ </maintainer>
+<longdescription lang="en">
+ GitQlient, pronounced as git+client is a multi-platform Git client originally forked from QGit.
+ Nowadays it goes beyond of just a fork and adds a lot of new functionality.
+</longdescription>
+<upstream>
+ <remote-id type="github">francescmm/GitQlient</remote-id>
+</upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2020-10-16 8:37 Andrew Ammerlaan
0 siblings, 0 replies; 16+ messages in thread
From: Andrew Ammerlaan @ 2020-10-16 8:37 UTC (permalink / raw
To: gentoo-commits
commit: 313a5260c63b62e168953402b6cfc4921f428c0e
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Thu Oct 15 21:55:12 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Oct 15 21:59:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=313a5260
dev-vcs/lazygit: remove '-Werror' compiler flag; sort DEPEND
Closes: https://github.com/gentoo/guru/issues/22
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/gitqlient-1.2.0.ebuild | 7 ++++---
dev-vcs/gitqlient/gitqlient-9999.ebuild | 6 ++++--
2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/dev-vcs/gitqlient/gitqlient-1.2.0.ebuild b/dev-vcs/gitqlient/gitqlient-1.2.0.ebuild
index 276fda5d..f8eba984 100644
--- a/dev-vcs/gitqlient/gitqlient-1.2.0.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-1.2.0.ebuild
@@ -23,11 +23,11 @@ SLOT="0"
IUSE=""
DEPEND="
- dev-qt/qtwidgets:5
dev-qt/qtcore:5
+ dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtsvg:5
- dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
"
RDEPEND="
@@ -39,7 +39,8 @@ src_prepare() {
default
mv -T "${WORKDIR}"/QLogger-"${QLogger_sha}" "${S}"/QLogger || die
- sed -i -e "s:target.path = /\$\$(HOME)/\$\${TARGET}/bin:target.path = /usr/bin:" \
+ sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" \
+ -i -e "s:target.path = /\$\$(HOME)/\$\${TARGET}/bin:target.path = /usr/bin:" \
-i -e "s:TARGET = ${MY_PN}:TARGET = ${PN}:" "${MY_PN}".pro || die
sed -i -e "s:Office:Development:" -i -e "s:Exec=${MY_PN}:Exec=${PN}:" \
diff --git a/dev-vcs/gitqlient/gitqlient-9999.ebuild b/dev-vcs/gitqlient/gitqlient-9999.ebuild
index 5ee0e3c9..747e15db 100644
--- a/dev-vcs/gitqlient/gitqlient-9999.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-9999.ebuild
@@ -21,11 +21,11 @@ SLOT="0"
IUSE=""
DEPEND="
- dev-qt/qtwidgets:5
dev-qt/qtcore:5
+ dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtsvg:5
- dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
"
RDEPEND="
@@ -35,6 +35,8 @@ RDEPEND="
src_prepare() {
default
+ sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" "${MY_PN}".pro || die
+
sed -i -e "s:Office:Development:" "${S}/src/resources/${PN}.desktop"
}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2020-10-21 9:02 Andrew Ammerlaan
0 siblings, 0 replies; 16+ messages in thread
From: Andrew Ammerlaan @ 2020-10-21 9:02 UTC (permalink / raw
To: gentoo-commits
commit: 428658e9f9d2f77aa71767ebabdadbe908ccfc25
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Mon Oct 19 21:56:36 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Oct 19 22:00:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=428658e9
dev-vcs/gitqlient: 1.3.0_beta version bump
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/Manifest | 1 +
dev-vcs/gitqlient/gitqlient-1.3.0_beta.ebuild | 48 +++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index 1767e9ca..df05a28c 100644
--- a/dev-vcs/gitqlient/Manifest
+++ b/dev-vcs/gitqlient/Manifest
@@ -1,2 +1,3 @@
DIST QLogger-d33cb64.tar.gz 15378 BLAKE2B adb5bed0c9cc3692b384542306466046242ff50d0c7dd176f439172047991ce4252e315e8289524a9e346abc225aeb9ca89b958f00cd11710294b2885ca0f69d SHA512 bec4785dcdb4cf3434621f68830628c737ee0664223228ec68f09991b5a2090eac024fbce86d6d0614d8a709efd55e0f126c1bbf8451c1c100080df3b8cdd17f
DIST gitqlient-1.2.0.tar.gz 3768498 BLAKE2B 0daa49b79c6390e367b24d8843f37c6a633d1e12c8e3d2b7d3245fb06ea0f89c6fb3b360fdc3dfaae13568d36a413353c67fbb29e60f19221341dcb71469491a SHA512 4dd4a21a7b222c6d7586bcbf5eec26f321fc18dd6ef52507a4eb4004675b04f437f8801c817a12f16f5b5ea9b3c2e2930f445e8bb09e64d33b89f69dbf310c74
+DIST gitqlient-1.3.0_beta.tar.gz 4320202 BLAKE2B f45e615fd9d4ee8a90df872c40b1c1b4eaefd7612458cf51bbeb69a920f6ea00704de61ba2446f41d2d4f847919cb6b119b397e0a910bf4244bbf3bf41dfa98c SHA512 79ca8211eaa84016d9eb43dea6b1773fd11121e7b0c47152642a03ab0e3d37bafbfc2cc5749f4864d5877699333a47d5bf6afede85246365ce3d281857247637
diff --git a/dev-vcs/gitqlient/gitqlient-1.3.0_beta.ebuild b/dev-vcs/gitqlient/gitqlient-1.3.0_beta.ebuild
new file mode 100644
index 00000000..b1e18e0a
--- /dev/null
+++ b/dev-vcs/gitqlient/gitqlient-1.3.0_beta.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils xdg
+
+MY_PN="GitQlient"
+MY_PV=$(ver_rs 3 -)
+
+DESCRIPTION="Multi-platform Git client written with Qt"
+HOMEPAGE="https://github.com/francescmm/GitQlient"
+
+SRC_URI="https://github.com/francescmm/${MY_PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+S="${WORKDIR}/${MY_PN}-${MY_PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtsvg:5
+ dev-qt/qtwidgets:5
+"
+
+RDEPEND="
+ ${DEPEND}
+ dev-vcs/git
+"
+
+src_prepare() {
+ default
+ sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" "${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
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2021-02-13 11:42 Andrew Ammerlaan
0 siblings, 0 replies; 16+ messages in thread
From: Andrew Ammerlaan @ 2021-02-13 11:42 UTC (permalink / raw
To: gentoo-commits
commit: 00c6f1df41248ac3294c960c44c25bc5b23eca7c
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Fri Feb 12 17:40:31 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Feb 12 17:40:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=00c6f1df
dev-vcs/gitqlient: 1.3.0 version bump
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/Manifest | 1 +
dev-vcs/gitqlient/gitqlient-1.3.0.ebuild | 50 ++++++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index df05a28c..acd973ff 100644
--- a/dev-vcs/gitqlient/Manifest
+++ b/dev-vcs/gitqlient/Manifest
@@ -1,3 +1,4 @@
DIST QLogger-d33cb64.tar.gz 15378 BLAKE2B adb5bed0c9cc3692b384542306466046242ff50d0c7dd176f439172047991ce4252e315e8289524a9e346abc225aeb9ca89b958f00cd11710294b2885ca0f69d SHA512 bec4785dcdb4cf3434621f68830628c737ee0664223228ec68f09991b5a2090eac024fbce86d6d0614d8a709efd55e0f126c1bbf8451c1c100080df3b8cdd17f
DIST gitqlient-1.2.0.tar.gz 3768498 BLAKE2B 0daa49b79c6390e367b24d8843f37c6a633d1e12c8e3d2b7d3245fb06ea0f89c6fb3b360fdc3dfaae13568d36a413353c67fbb29e60f19221341dcb71469491a SHA512 4dd4a21a7b222c6d7586bcbf5eec26f321fc18dd6ef52507a4eb4004675b04f437f8801c817a12f16f5b5ea9b3c2e2930f445e8bb09e64d33b89f69dbf310c74
+DIST gitqlient-1.3.0.tar.gz 4337675 BLAKE2B efa041cc863ea0c5820841804a32dab8e212979367cf9b59be163c7322183facadddd788fd077be0566eb8d906c47b9486036558de8f8ae9b2365d90c3069349 SHA512 8011426aed84a7611b3b2253b377fe66690b0ad2b54c1b6c85a85b1d1b9adabeea9fe0e763340d67f3139d4c43de7e368a0f2c4d9c9640d911aac3a48d111ebc
DIST gitqlient-1.3.0_beta.tar.gz 4320202 BLAKE2B f45e615fd9d4ee8a90df872c40b1c1b4eaefd7612458cf51bbeb69a920f6ea00704de61ba2446f41d2d4f847919cb6b119b397e0a910bf4244bbf3bf41dfa98c SHA512 79ca8211eaa84016d9eb43dea6b1773fd11121e7b0c47152642a03ab0e3d37bafbfc2cc5749f4864d5877699333a47d5bf6afede85246365ce3d281857247637
diff --git a/dev-vcs/gitqlient/gitqlient-1.3.0.ebuild b/dev-vcs/gitqlient/gitqlient-1.3.0.ebuild
new file mode 100644
index 00000000..e7561ccb
--- /dev/null
+++ b/dev-vcs/gitqlient/gitqlient-1.3.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils xdg
+
+MY_PN="GitQlient"
+MY_PV=$(ver_rs 3 -)
+
+DESCRIPTION="Multi-platform Git client written with Qt"
+HOMEPAGE="https://github.com/francescmm/GitQlient"
+
+SRC_URI="https://github.com/francescmm/${MY_PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+S="${WORKDIR}/${MY_PN}-${MY_PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtsvg:5
+ dev-qt/qtwebchannel:5
+ dev-qt/qtwebengine:5[widgets]
+ dev-qt/qtwidgets:5
+"
+
+RDEPEND="
+ ${DEPEND}
+ dev-vcs/git
+"
+
+src_prepare() {
+ default
+ sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" -e "/^GQ_SHA/d" "${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
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2021-02-13 11:42 Andrew Ammerlaan
0 siblings, 0 replies; 16+ messages in thread
From: Andrew Ammerlaan @ 2021-02-13 11:42 UTC (permalink / raw
To: gentoo-commits
commit: c85699cb09c4ffdb890bb4be510fe0f7c8d0e0d4
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Fri Feb 12 17:50:58 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Feb 12 17:51:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c85699cb
dev-vcs/gitqlient: update live ebuild
Update -9999.ebuild and swithc to master branch
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/gitqlient-9999.ebuild | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/dev-vcs/gitqlient/gitqlient-9999.ebuild b/dev-vcs/gitqlient/gitqlient-9999.ebuild
index 747e15db..dad91e6c 100644
--- a/dev-vcs/gitqlient/gitqlient-9999.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-9999.ebuild
@@ -1,16 +1,16 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit git-r3 qmake-utils xdg
+inherit desktop git-r3 qmake-utils xdg
MY_PN="GitQlient"
DESCRIPTION="Multi-platform Git client written with Qt"
HOMEPAGE="https://github.com/francescmm/GitQlient"
-EGIT_BRANCH="develop"
+#EGIT_BRANCH="develop"
EGIT_SUBMODULES=( QLogger )
EGIT_REPO_URI="https://github.com/francescmm/${MY_PN}.git"
SRC_URI=""
@@ -25,6 +25,8 @@ DEPEND="
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtsvg:5
+ dev-qt/qtwebchannel:5
+ dev-qt/qtwebengine:5[widgets]
dev-qt/qtwidgets:5
"
@@ -37,7 +39,7 @@ src_prepare() {
default
sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" "${MY_PN}".pro || die
- sed -i -e "s:Office:Development:" "${S}/src/resources/${PN}.desktop"
+ sed -i -e "s:Office:Development:" "${S}/src/resources/${PN}.desktop" || die
}
src_configure() {
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2021-07-19 9:55 Andrew Ammerlaan
0 siblings, 0 replies; 16+ messages in thread
From: Andrew Ammerlaan @ 2021-07-19 9:55 UTC (permalink / raw
To: gentoo-commits
commit: 1e50fc0056dc7b61efa898011583b1de0bb96b59
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Jul 18 11:58:01 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun Jul 18 11:58:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1e50fc00
dev-vcs/gitqlient: 1.4.0 version bump
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/Manifest | 1 +
dev-vcs/gitqlient/gitqlient-1.4.0.ebuild | 49 ++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index 0a85c7a06..de7e30282 100644
--- a/dev-vcs/gitqlient/Manifest
+++ b/dev-vcs/gitqlient/Manifest
@@ -1 +1,2 @@
DIST gitqlient-1.3.2.tar.gz 4360445 BLAKE2B 81764b64b5cc6868377795d170c766e4693350602482a3c223defaf43b96c4e10cef3c812ab5b5ad11e91df44896225fb7fe7c31299ffdbf2a3c59888bc8e4b4 SHA512 239c89bbde1d5adbb5b5a74420a1bc42f88f1a7db4030e5dceba3ebff9d269009dfc0e1450a32e1c042fa2ac5285dac882a29350ff22791dc9db11a6275bfde0
+DIST gitqlient-1.4.0.tar.gz 4370922 BLAKE2B f317e523c43d846b88974bb391ae4dbbac4f846f9b848b51ac73e34dd321ffb5bad1dfe31292fedcae21e0ed6b754950fb3b364fd7cc8c74a9ab79ba57d12873 SHA512 64588449201a51ee0c35589056bbe5e1bb36c5dead99a8e697b1c9ead7883be8339b8a9aec6210154e3d9ad365497cce002fbfbc48f786288e315d2cafea2ed4
diff --git a/dev-vcs/gitqlient/gitqlient-1.4.0.ebuild b/dev-vcs/gitqlient/gitqlient-1.4.0.ebuild
new file mode 100644
index 000000000..2caf1d965
--- /dev/null
+++ b/dev-vcs/gitqlient/gitqlient-1.4.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils xdg
+
+MY_PN="GitQlient"
+MY_PV=$(ver_rs 3 -)
+
+DESCRIPTION="Multi-platform Git client written with Qt"
+HOMEPAGE="https://github.com/francescmm/GitQlient"
+
+SRC_URI="https://github.com/francescmm/${MY_PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+S="${WORKDIR}/${MY_PN}-${MY_PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtwebchannel:5
+ dev-qt/qtwebengine:5[widgets]
+ dev-qt/qtwidgets:5
+"
+
+RDEPEND="
+ ${DEPEND}
+ dev-vcs/git
+"
+
+src_prepare() {
+ default
+ sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" -e "/^GQ_SHA/d" "${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
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
2021-12-15 11:02 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2021-12-15 11:02 ` Andrew Ammerlaan
0 siblings, 0 replies; 16+ messages in thread
From: Andrew Ammerlaan @ 2021-12-15 11:02 UTC (permalink / raw
To: gentoo-commits
commit: 23a74c129addc52f65d347f850bc35921efb89a9
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 15 11:00:04 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Dec 15 11:00:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=23a74c12
dev-vcs/gitqlient: drop UnusedInherits
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-vcs/gitqlient/gitqlient-1.4.3.ebuild | 3 +--
dev-vcs/gitqlient/gitqlient-9999.ebuild | 5 +----
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/dev-vcs/gitqlient/gitqlient-1.4.3.ebuild b/dev-vcs/gitqlient/gitqlient-1.4.3.ebuild
index 2caf1d965..f811cc23d 100644
--- a/dev-vcs/gitqlient/gitqlient-1.4.3.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-1.4.3.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit desktop qmake-utils xdg
+inherit qmake-utils xdg
MY_PN="GitQlient"
MY_PV=$(ver_rs 3 -)
@@ -17,7 +17,6 @@ S="${WORKDIR}/${MY_PN}-${MY_PV}"
LICENSE="LGPL-2.1"
SLOT="0"
-IUSE=""
DEPEND="
dev-qt/qtcore:5
diff --git a/dev-vcs/gitqlient/gitqlient-9999.ebuild b/dev-vcs/gitqlient/gitqlient-9999.ebuild
index 278ff0978..0b7f70742 100644
--- a/dev-vcs/gitqlient/gitqlient-9999.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit desktop git-r3 qmake-utils xdg
+inherit git-r3 qmake-utils xdg
MY_PN="GitQlient"
@@ -12,12 +12,9 @@ HOMEPAGE="https://github.com/francescmm/GitQlient"
#EGIT_BRANCH="develop"
EGIT_REPO_URI="https://github.com/francescmm/${MY_PN}.git"
-SRC_URI=""
-KEYWORDS=""
LICENSE="LGPL-2.1"
SLOT="0"
-IUSE=""
DEPEND="
dev-qt/qtcore:5
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2022-07-23 17:36 Haelwenn Monnier
0 siblings, 0 replies; 16+ messages in thread
From: Haelwenn Monnier @ 2022-07-23 17:36 UTC (permalink / raw
To: gentoo-commits
commit: 0b369b5c110f88d6d076da97e8f7423cebd371c4
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Wed Jul 20 23:22:53 2022 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Wed Jul 20 23:22:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0b369b5c
dev-vcs/gitqlient: 1.5.0 version bump
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/Manifest | 5 +++
dev-vcs/gitqlient/gitqlient-1.5.0.ebuild | 65 ++++++++++++++++++++++++++++++++
2 files changed, 70 insertions(+)
diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index 262b77dc1..45a9cfee7 100644
--- a/dev-vcs/gitqlient/Manifest
+++ b/dev-vcs/gitqlient/Manifest
@@ -1 +1,6 @@
DIST gitqlient-1.4.3.tar.gz 4477433 BLAKE2B 859d75f7e88aa6e4944dedf3b5b3b84a72d4b37bcf980cf5281849f79ccbd526959ce11e28c7f19ebaf602887eda373146503e573fbbb76f0a5ac874aaf7a571 SHA512 81e54e5bc39066379d650042287e1ff9fd4c86ca9229f1459a20d2bdde0fd60b060409c25461b77343ad6cc4759c28e997b8fea3c4b447004eaf9fbd095f6dcd
+DIST gitqlient-1.5.0.tar.gz 4452568 BLAKE2B fcbe8f9f9f176d4c68ddc89796d6362264734d0f30ae4a82f494dfd96d5bbb121f74e9ea0aa54b7aacb8aec0d948ce5a1d5240b0c60ed7976092eaa30dcc9aea SHA512 3e8573d16b346c45b3026d8c5cc0e2f25b9ec42d43120c56ac5e57417119724dd0c949a582ced218e8cb0775957494cb82a27b15a36f9c2e111d56acafc4f13e
+DIST gitqlient-1.5.0_AuxiliarCustomWidgets.tar.gz 438731 BLAKE2B 2b5b9dcd700a92e13cc9655183da2472c77dbf4bc68d9fe30cf615bae57f827296a33d223e7477a5dabc9e973a8afa97ecf8f416e5c7825add87c18222851a9a SHA512 5937a52ab6c3d023c39d7ef64b02e7f2870538076b63ef9bf77ceecd87d3eb1334940de2d8086a25070307e26424c262994298d87ae16ff1bf8c7dad69d7ffa2
+DIST gitqlient-1.5.0_QLogger.tar.gz 20307 BLAKE2B 0c5f4cc8a19ec6ca2508d80d02b5fd6ba759049116bad4883d0bc62ed06a6d1278eea9864a4001312d54f5ec2813c5348c3c2a91a80547fb27224d70dce46b21 SHA512 be6a0a5a2c334ac798eea2f2dfd3154b06e17040883b8309de2158fd118bc2a3cab20276d6a36a21018f850c43bd5bd834744f5911aabd771c2f43530a0a3553
+DIST gitqlient-1.5.0_QPinnableTabWidget.tar.gz 13299 BLAKE2B 9c8fce7c955963b97c5337bacfa8032f761bc763bb56a56ad34ff68cc3ece1aad75f279edec78e6770a7598caa5372049ffbe8d16b5ade07350166893035656a SHA512 ea0bc7c023fdf792c0aaab5feb10eb2551581a0fcd32ebac779e358f198057d282a1f9de7004cde8eaa6aa2b0e0028966f948362b335e3288b650a4830cee1db
+DIST gitqlient-1.5.0_git.tar.gz 28824 BLAKE2B 302aede313f1c2be044854089fc80c004df9660c527addafc984f514eb57c676d2fef15f1ed5d9443fc239242ec196d81e12b253db47f4882de8df661c0ee2ff SHA512 94d1a267cd49f0a2ea68a5cdc014a1b63b1ae659e27f21d2104cd689ede8fab7b85de6a6e3af514f7ec28ac468264126c076b0dce84c77f62472fd6b120eda38
diff --git a/dev-vcs/gitqlient/gitqlient-1.5.0.ebuild b/dev-vcs/gitqlient/gitqlient-1.5.0.ebuild
new file mode 100644
index 000000000..6dd457f67
--- /dev/null
+++ b/dev-vcs/gitqlient/gitqlient-1.5.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature qmake-utils xdg
+
+MY_PN="GitQlient"
+MY_PV=$(ver_rs 3 -)
+
+# subprojects on GitQlient 1.5 release:
+AuxiliarCustomWidgets_SHA="835f538b4a79e4d6bb70eef37a32103e7b2a1fd1"
+QLogger_SHA="d1ed24e080521a239d5d5e2c2347fe211f0f3e4f"
+QPinnableTabWidget_SHA="cc937794e910d0452f0c07b4961c6014a7358831"
+git_SHA="b62750f4da4b133faff49e6f53950d659b18c948"
+
+DESCRIPTION="Multi-platform Git client written with Qt"
+HOMEPAGE="https://github.com/francescmm/GitQlient"
+
+SRC_URI="
+ https://github.com/francescmm/${MY_PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz
+ https://github.com/francescmm/AuxiliarCustomWidgets/archive/${AuxiliarCustomWidgets_SHA}.tar.gz -> ${P}_AuxiliarCustomWidgets.tar.gz
+ https://github.com/francescmm/QLogger/archive/${QLogger_SHA}.tar.gz -> ${P}_QLogger.tar.gz
+ https://github.com/francescmm/QPinnableTabWidget/archive/${QPinnableTabWidget_SHA}.tar.gz -> ${P}_QPinnableTabWidget.tar.gz
+ https://github.com/francescmm/git/archive/${git_SHA}.tar.gz -> ${P}_git.tar.gz
+ "
+KEYWORDS="~amd64 ~x86"
+S="${WORKDIR}/${MY_PN}-${MY_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() {
+ mv -T "${WORKDIR}"/AuxiliarCustomWidgets-"${AuxiliarCustomWidgets_SHA}" "${S}"/src/AuxiliarCustomWidgets || die
+ mv -T "${WORKDIR}"/QLogger-"${QLogger_SHA}" "${S}"/src/QLogger || die
+ mv -T "${WORKDIR}"/QPinnableTabWidget-"${QPinnableTabWidget_SHA}" "${S}"/src/QPinnableTabWidget || die
+ mv -T "${WORKDIR}"/git-"${git_SHA}" "${S}"/src/git || die
+
+ default
+ sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" -e "/^GQ_SHA/d" "${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 "Jenkins and/or GitServer plugins support" dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets]
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2022-07-23 17:36 Haelwenn Monnier
0 siblings, 0 replies; 16+ messages in thread
From: Haelwenn Monnier @ 2022-07-23 17:36 UTC (permalink / raw
To: gentoo-commits
commit: 61b9458776c228b16e2019fabfe9f7f0042e2070
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Wed Jul 20 23:25:42 2022 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Wed Jul 20 23:25:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=61b94587
dev-vcs/gitqlient: 9999.ebuild update
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/gitqlient-9999.ebuild | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/dev-vcs/gitqlient/gitqlient-9999.ebuild b/dev-vcs/gitqlient/gitqlient-9999.ebuild
index 0b7f70742..478fc453f 100644
--- a/dev-vcs/gitqlient/gitqlient-9999.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-9999.ebuild
@@ -1,16 +1,14 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-inherit git-r3 qmake-utils xdg
+inherit git-r3 optfeature qmake-utils xdg
MY_PN="GitQlient"
DESCRIPTION="Multi-platform Git client written with Qt"
HOMEPAGE="https://github.com/francescmm/GitQlient"
-
-#EGIT_BRANCH="develop"
EGIT_REPO_URI="https://github.com/francescmm/${MY_PN}.git"
LICENSE="LGPL-2.1"
@@ -20,11 +18,8 @@ DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
- dev-qt/qtwebchannel:5
- dev-qt/qtwebengine:5[widgets]
dev-qt/qtwidgets:5
"
-
RDEPEND="
${DEPEND}
dev-vcs/git
@@ -33,7 +28,6 @@ RDEPEND="
src_prepare() {
default
sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" "${MY_PN}".pro || die
-
sed -i -e "s:Office:Development:" "${S}/src/resources/${PN}.desktop" || die
}
@@ -44,3 +38,7 @@ src_configure() {
src_install() {
emake INSTALL_ROOT="${D}" install
}
+
+pkg_postinst() {
+ optfeature "Jenkins and/or GitServer plugins support" dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets]
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2023-02-13 11:28 Andrew Ammerlaan
0 siblings, 0 replies; 16+ messages in thread
From: Andrew Ammerlaan @ 2023-02-13 11:28 UTC (permalink / raw
To: gentoo-commits
commit: e3eb31ca99ad7d39e779536e3ac3dcfd6184a642
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Feb 12 17:01:44 2023 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun Feb 12 17:01:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e3eb31ca
dev-vcs/gitqlient: update pkg_postinst messages
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/gitqlient-1.6.1.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dev-vcs/gitqlient/gitqlient-1.6.1.ebuild b/dev-vcs/gitqlient/gitqlient-1.6.1.ebuild
index 2e48887c5..12d53c9ff 100644
--- a/dev-vcs/gitqlient/gitqlient-1.6.1.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-1.6.1.ebuild
@@ -48,6 +48,8 @@ src_install() {
pkg_postinst() {
optfeature "Terminal tab plugin support" x11-libs/qtermwidget
- optfeature "Jenkins and/or GitServer plugins support" dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets]
+ 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
}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2023-02-13 11:28 Andrew Ammerlaan
0 siblings, 0 replies; 16+ messages in thread
From: Andrew Ammerlaan @ 2023-02-13 11:28 UTC (permalink / raw
To: gentoo-commits
commit: 4e0b65b11462bd55455a2335983f18e14e94891d
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Feb 12 17:07:05 2023 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun Feb 12 17:07:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4e0b65b1
dev-vcs/gitqlient: update 9999.ebuild
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/gitqlient-9999.ebuild | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/dev-vcs/gitqlient/gitqlient-9999.ebuild b/dev-vcs/gitqlient/gitqlient-9999.ebuild
index 4d9726869..7e5ab5757 100644
--- a/dev-vcs/gitqlient/gitqlient-9999.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -25,12 +25,6 @@ RDEPEND="
dev-vcs/git
"
-src_prepare() {
- default
- sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" "${MY_PN}".pro || die
- sed -i -e "s:Office:Development:" "${S}/src/resources/${PN}.desktop" || die
-}
-
src_configure() {
eqmake5 PREFIX=/usr "${MY_PN}".pro
}
@@ -40,6 +34,9 @@ src_install() {
}
pkg_postinst() {
- optfeature "Jenkins and/or GitServer plugins support" dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets]
+ 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
}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2023-05-28 15:01 Viorel Munteanu
0 siblings, 0 replies; 16+ messages in thread
From: Viorel Munteanu @ 2023-05-28 15:01 UTC (permalink / raw
To: gentoo-commits
commit: 92863a6ec16e5c50278d8d5bcd5c6208623f04f2
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sat May 27 21:26:24 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat May 27 21:26:42 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=92863a6e
dev-vcs/gitqlient: 1.6.2_pre20230519 version bump
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/Manifest | 5 ++
.../gitqlient/gitqlient-1.6.2_pre20230519.ebuild | 71 ++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index 8b5007a51..485c1ba5f 100644
--- a/dev-vcs/gitqlient/Manifest
+++ b/dev-vcs/gitqlient/Manifest
@@ -1 +1,6 @@
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
+DIST gitqlient-1.6.2_pre20230519_QPinnableTabWidget.tar.gz 13442 BLAKE2B 8c4ee4f1329ec94792ea15402fb922a83e7cb38ff5bd8d5b2dfe26bd312cd898653fe1d7abc013bb76ba826c4d6db1803a31240a22a9fcbc0578bf2ded04fe4c SHA512 dab9220ac6dbd3795276d5432b4366aa124d6c147160452009341868b4c5af0644816070c8dc82178ff7fea5a13e92822182ed9cecbeba7deda45107c40c5e28
+DIST gitqlient-1.6.2_pre20230519_git.tar.gz 29744 BLAKE2B 9de7aa2ef301284f115aa641cb76faeb514e993c46eb8a47a26f331042cc30c17fbd7ffbbca17d3c4b2897f77890111a869edc58bcdbe32c63391288a052e567 SHA512 6fce2357bf54e96410e7023b7150f02a7c9e7b17b3df386db0de561fdf1874101880ec6f393052f2b7ea9fd634df9e59e3941d04310fd4b50c4dbf066fc4b8dc
diff --git a/dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild b/dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild
new file mode 100644
index 000000000..93a655dc5
--- /dev/null
+++ b/dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild
@@ -0,0 +1,71 @@
+# 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"
+gitqlient_sha="5a6175431261b99c0f9c37e2194f92a8bafe29f9"
+AuxiliarCustomWidgets_sha="f86e72abd442f73b1e3b10ac922908d03444f115"
+QLogger_sha="ce2f35bad6440a14802fed6c043323d4227ef9a9"
+QPinnableTabWidget_sha="40d0a02e5bdf2f49f9ea41ca533093b2808b0140"
+git_sha="fd6588d07bcbf77c86265392809b9a92ee3f8189"
+
+DESCRIPTION="Multi-platform Git client written with Qt"
+HOMEPAGE="https://github.com/francescmm/GitQlient"
+
+SRC_URI="
+ https://github.com/francescmm/${MY_PN}/archive/${gitqlient_sha}.tar.gz -> ${P}.tar.gz
+ https://github.com/francescmm/AuxiliarCustomWidgets/archive/${AuxiliarCustomWidgets_sha}.tar.gz -> ${P}_AuxiliarCustomWidgets.tar.gz
+ https://github.com/francescmm/QLogger/archive/${QLogger_sha}.tar.gz -> ${P}_QLogger.tar.gz
+ https://github.com/francescmm/QPinnableTabWidget/archive/${QPinnableTabWidget_sha}.tar.gz -> ${P}_QPinnableTabWidget.tar.gz
+ https://github.com/francescmm/git/archive/${git_sha}.tar.gz -> ${P}_git.tar.gz
+"
+KEYWORDS="~amd64 ~x86"
+S="${WORKDIR}/${MY_PN}-${gitqlient_sha}"
+
+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
+
+ mv -T "${WORKDIR}/AuxiliarCustomWidgets-${AuxiliarCustomWidgets_sha}" "${S}/src/AuxiliarCustomWidgets" || die
+ mv -T "${WORKDIR}/QLogger-${QLogger_sha}" "${S}/src/QLogger" || die
+ mv -T "${WORKDIR}/QPinnableTabWidget-${QPinnableTabWidget_sha}" "${S}/src/QPinnableTabWidget" || die
+ mv -T "${WORKDIR}/git-${git_sha}" "${S}/src/git" || die
+
+ # Drop 'fatal' warning on version detection via git command:
+ sed -i -e '/message("Submodule update:")/d' \
+ -e "/system(git submodule update --init --recursive)/d" \
+ -e "/GQ_SHA =/s| \$\$system(git rev-parse --short HEAD)||" \
+ -e "/VERSION =/s| \$\$system(git describe --abbrev=0)||" "${MY_PN}".pro || 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
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2023-05-28 15:01 Viorel Munteanu
0 siblings, 0 replies; 16+ messages in thread
From: Viorel Munteanu @ 2023-05-28 15:01 UTC (permalink / raw
To: gentoo-commits
commit: 943f694bf551dec2a2b6021f15a1920cab6106ad
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 22:23:17 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat May 27 22:23:17 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=943f694b
dev-vcs/gitqlient: update SRC_URI
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild b/dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild
index 93a655dc5..3c4342d6a 100644
--- a/dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild
@@ -17,9 +17,11 @@ HOMEPAGE="https://github.com/francescmm/GitQlient"
SRC_URI="
https://github.com/francescmm/${MY_PN}/archive/${gitqlient_sha}.tar.gz -> ${P}.tar.gz
- https://github.com/francescmm/AuxiliarCustomWidgets/archive/${AuxiliarCustomWidgets_sha}.tar.gz -> ${P}_AuxiliarCustomWidgets.tar.gz
+ https://github.com/francescmm/AuxiliarCustomWidgets/archive/${AuxiliarCustomWidgets_sha}.tar.gz \
+ -> ${P}_AuxiliarCustomWidgets.tar.gz
https://github.com/francescmm/QLogger/archive/${QLogger_sha}.tar.gz -> ${P}_QLogger.tar.gz
- https://github.com/francescmm/QPinnableTabWidget/archive/${QPinnableTabWidget_sha}.tar.gz -> ${P}_QPinnableTabWidget.tar.gz
+ https://github.com/francescmm/QPinnableTabWidget/archive/${QPinnableTabWidget_sha}.tar.gz \
+ -> ${P}_QPinnableTabWidget.tar.gz
https://github.com/francescmm/git/archive/${git_sha}.tar.gz -> ${P}_git.tar.gz
"
KEYWORDS="~amd64 ~x86"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2023-09-12 13:46 David Roman
0 siblings, 0 replies; 16+ messages in thread
From: David Roman @ 2023-09-12 13:46 UTC (permalink / raw
To: gentoo-commits
commit: 183aaf28d2d42a1f76d448c853f253a755536df1
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Tue Sep 12 13:05:46 2023 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Sep 12 13:05:46 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=183aaf28
dev-vcs/gitqlient: drop old 1.6.1
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/Manifest | 1 -
dev-vcs/gitqlient/gitqlient-1.6.1.ebuild | 55 --------------------------------
2 files changed, 56 deletions(-)
diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index 485c1ba5f9..def182b5f5 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 12d53c9ff1..0000000000
--- 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
-}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2023-09-12 13:46 David Roman
0 siblings, 0 replies; 16+ messages in thread
From: David Roman @ 2023-09-12 13:46 UTC (permalink / raw
To: gentoo-commits
commit: 3b0e17f3cb14b5034c8ea0d8f9389b5f7a4b7d50
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Tue Sep 12 13:11:02 2023 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Sep 12 13:11:02 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3b0e17f3
dev-vcs/gitqlient: 1.6.2 version bump (replace 1.6.2_pre20230519)
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/Manifest | 6 +-----
...2_pre20230519.ebuild => gitqlient-1.6.2.ebuild} | 22 ++--------------------
2 files changed, 3 insertions(+), 25 deletions(-)
diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index def182b5f5..82a1745559 100644
--- a/dev-vcs/gitqlient/Manifest
+++ b/dev-vcs/gitqlient/Manifest
@@ -1,5 +1 @@
-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
-DIST gitqlient-1.6.2_pre20230519_QPinnableTabWidget.tar.gz 13442 BLAKE2B 8c4ee4f1329ec94792ea15402fb922a83e7cb38ff5bd8d5b2dfe26bd312cd898653fe1d7abc013bb76ba826c4d6db1803a31240a22a9fcbc0578bf2ded04fe4c SHA512 dab9220ac6dbd3795276d5432b4366aa124d6c147160452009341868b4c5af0644816070c8dc82178ff7fea5a13e92822182ed9cecbeba7deda45107c40c5e28
-DIST gitqlient-1.6.2_pre20230519_git.tar.gz 29744 BLAKE2B 9de7aa2ef301284f115aa641cb76faeb514e993c46eb8a47a26f331042cc30c17fbd7ffbbca17d3c4b2897f77890111a869edc58bcdbe32c63391288a052e567 SHA512 6fce2357bf54e96410e7023b7150f02a7c9e7b17b3df386db0de561fdf1874101880ec6f393052f2b7ea9fd634df9e59e3941d04310fd4b50c4dbf066fc4b8dc
+DIST gitqlient-1.6.2.tar.gz 4975350 BLAKE2B 86edd00f8b5647d9e9f7096f5306d330c66e0eb474447df94a320734126c37e370384ddf12fdec58764d57834c1a0b9489911db1b4f590368da1de904eafb51a SHA512 ca8c6c30b7acade8120afa9df568d6b61f4f521b13f5541bc136810a014d4ace30c54ca973ddd4a4368a6f59f22ec3d91b87bac8a6c9861953ac1ee0195d717e
diff --git a/dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild b/dev-vcs/gitqlient/gitqlient-1.6.2.ebuild
similarity index 50%
rename from dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild
rename to dev-vcs/gitqlient/gitqlient-1.6.2.ebuild
index 3c4342d6a8..683c5b9c49 100644
--- a/dev-vcs/gitqlient/gitqlient-1.6.2_pre20230519.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-1.6.2.ebuild
@@ -6,26 +6,13 @@ EAPI=8
inherit optfeature qmake-utils xdg
MY_PN="GitQlient"
-gitqlient_sha="5a6175431261b99c0f9c37e2194f92a8bafe29f9"
-AuxiliarCustomWidgets_sha="f86e72abd442f73b1e3b10ac922908d03444f115"
-QLogger_sha="ce2f35bad6440a14802fed6c043323d4227ef9a9"
-QPinnableTabWidget_sha="40d0a02e5bdf2f49f9ea41ca533093b2808b0140"
-git_sha="fd6588d07bcbf77c86265392809b9a92ee3f8189"
DESCRIPTION="Multi-platform Git client written with Qt"
HOMEPAGE="https://github.com/francescmm/GitQlient"
-SRC_URI="
- https://github.com/francescmm/${MY_PN}/archive/${gitqlient_sha}.tar.gz -> ${P}.tar.gz
- https://github.com/francescmm/AuxiliarCustomWidgets/archive/${AuxiliarCustomWidgets_sha}.tar.gz \
- -> ${P}_AuxiliarCustomWidgets.tar.gz
- https://github.com/francescmm/QLogger/archive/${QLogger_sha}.tar.gz -> ${P}_QLogger.tar.gz
- https://github.com/francescmm/QPinnableTabWidget/archive/${QPinnableTabWidget_sha}.tar.gz \
- -> ${P}_QPinnableTabWidget.tar.gz
- https://github.com/francescmm/git/archive/${git_sha}.tar.gz -> ${P}_git.tar.gz
-"
+SRC_URI="https://github.com/francescmm/${MY_PN}/releases/download/v${PV}/${PN}_${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
-S="${WORKDIR}/${MY_PN}-${gitqlient_sha}"
+S="${WORKDIR}/${PN}_${PV}"
LICENSE="LGPL-2.1"
SLOT="0"
@@ -44,11 +31,6 @@ RDEPEND="
src_prepare() {
default
- mv -T "${WORKDIR}/AuxiliarCustomWidgets-${AuxiliarCustomWidgets_sha}" "${S}/src/AuxiliarCustomWidgets" || die
- mv -T "${WORKDIR}/QLogger-${QLogger_sha}" "${S}/src/QLogger" || die
- mv -T "${WORKDIR}/QPinnableTabWidget-${QPinnableTabWidget_sha}" "${S}/src/QPinnableTabWidget" || die
- mv -T "${WORKDIR}/git-${git_sha}" "${S}/src/git" || die
-
# Drop 'fatal' warning on version detection via git command:
sed -i -e '/message("Submodule update:")/d' \
-e "/system(git submodule update --init --recursive)/d" \
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/
@ 2024-11-09 0:53 David Roman
0 siblings, 0 replies; 16+ messages in thread
From: David Roman @ 2024-11-09 0:53 UTC (permalink / raw
To: gentoo-commits
commit: 669997476ef14f6266518b6ad7e4559b3211a37c
Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Fri Nov 8 21:40:00 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Nov 8 21:40:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=66999747
dev-vcs/gitqlient: 1.6.3 drop '-Werror' flag
Closes: https://bugs.gentoo.org/942807
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
dev-vcs/gitqlient/gitqlient-1.6.3.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-vcs/gitqlient/gitqlient-1.6.3.ebuild b/dev-vcs/gitqlient/gitqlient-1.6.3.ebuild
index a1047e8fd..b05843eb2 100644
--- a/dev-vcs/gitqlient/gitqlient-1.6.3.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-1.6.3.ebuild
@@ -30,7 +30,8 @@ src_prepare() {
sed -i -e '/message("Submodule update:")/d' \
-e "/system(git submodule update --init --recursive)/d" \
-e "/GQ_SHA =/s| \$\$system(git rev-parse --short HEAD)||" \
- -e "/VERSION =/s| \$\$system(git describe --abbrev=0)||" "${MY_PN}".pro || die
+ -e "/VERSION =/s| \$\$system(git describe --abbrev=0)||" \
+ -e "s/ -Werror//" "${MY_PN}".pro || die
}
src_configure() {
^ permalink raw reply related [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-11-09 0:53 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-13 11:42 [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/ Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2024-11-09 0:53 David Roman
2023-09-12 13:46 David Roman
2023-09-12 13:46 David Roman
2023-05-28 15:01 Viorel Munteanu
2023-05-28 15:01 Viorel Munteanu
2023-02-13 11:28 Andrew Ammerlaan
2023-02-13 11:28 Andrew Ammerlaan
2022-07-23 17:36 Haelwenn Monnier
2022-07-23 17:36 Haelwenn Monnier
2021-12-15 11:02 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-12-15 11:02 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-07-19 9:55 Andrew Ammerlaan
2021-02-13 11:42 Andrew Ammerlaan
2020-10-21 9:02 Andrew Ammerlaan
2020-10-16 8:37 Andrew Ammerlaan
2020-10-14 16:37 Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox