public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/meteo-qt/
@ 2023-04-02  3:41 Anna Vyalkova
  0 siblings, 0 replies; 4+ messages in thread
From: Anna Vyalkova @ 2023-04-02  3:41 UTC (permalink / raw
  To: gentoo-commits

commit:     68f5230b9d40ec51982cb87dbb7885843dc14fe3
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Apr  2 03:35:31 2023 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Apr  2 03:35:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68f5230b

gui-apps/meteo-qt: new package, add 3.3

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 gui-apps/meteo-qt/Manifest            |  1 +
 gui-apps/meteo-qt/metadata.xml        | 11 ++++++++++
 gui-apps/meteo-qt/meteo-qt-3.3.ebuild | 40 +++++++++++++++++++++++++++++++++++
 3 files changed, 52 insertions(+)

diff --git a/gui-apps/meteo-qt/Manifest b/gui-apps/meteo-qt/Manifest
new file mode 100644
index 000000000..7922ae828
--- /dev/null
+++ b/gui-apps/meteo-qt/Manifest
@@ -0,0 +1 @@
+DIST meteo-qt-3.3.gh.tar.gz 931450 BLAKE2B 0f8128ba768510b278862e2dbe33267cb339cb6fb6299e6448f49a6d5efaf98db045bd07833695e2eea936ce78bece4bc62bb62322a1df43767438e72c26dc86 SHA512 e52d05b98b99ecc01b9d584cf15db495f5c1eaa6e3ac1f429542d9d43e3890b03d93e3c7a55059821a32ea614cce7bb104b9353c59da04f164b561c920cca415

diff --git a/gui-apps/meteo-qt/metadata.xml b/gui-apps/meteo-qt/metadata.xml
new file mode 100644
index 000000000..71b2eabaa
--- /dev/null
+++ b/gui-apps/meteo-qt/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>cyber+gentoo@sysrq.in</email>
+		<name>Anna</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">dglent/meteo-qt</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/gui-apps/meteo-qt/meteo-qt-3.3.ebuild b/gui-apps/meteo-qt/meteo-qt-3.3.ebuild
new file mode 100644
index 000000000..7c916f7f2
--- /dev/null
+++ b/gui-apps/meteo-qt/meteo-qt-3.3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_SINGLE_IMPL=1
+inherit distutils-r1 qmake-utils xdg
+
+DESCRIPTION="A system tray application for the weather status"
+HOMEPAGE="https://github.com/dglent/meteo-qt"
+SRC_URI="https://github.com/dglent/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	$(python_gen_cond_dep '
+		dev-python/PyQt5[${PYTHON_USEDEP}]
+		dev-python/lxml[${PYTHON_USEDEP}]
+	')
+"
+BDEPEND="
+	dev-python/PyQt5
+	dev-qt/linguist-tools
+"
+
+src_compile() {
+	local -x PATH="$(qt5_get_bindir):${PATH}"
+	distutils-r1_src_compile
+}
+
+python_install() {
+	mv "${BUILD_DIR}/install$(python_get_sitedir)/usr" "${ED}" || die
+	rm -r "${ED}/usr/share/doc" || die
+
+	distutils-r1_python_install
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/meteo-qt/
@ 2023-12-04 19:45 Anna Vyalkova
  0 siblings, 0 replies; 4+ messages in thread
From: Anna Vyalkova @ 2023-12-04 19:45 UTC (permalink / raw
  To: gentoo-commits

commit:     5fb6904e1bf559d7180cbcfd39dc835ddeeceb25
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Dec  3 15:08:27 2023 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Mon Dec  4 19:44:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5fb6904e

gui-apps/meteo-qt: enable py3.12

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 gui-apps/meteo-qt/meteo-qt-3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/meteo-qt/meteo-qt-3.3.ebuild b/gui-apps/meteo-qt/meteo-qt-3.3.ebuild
index 7c916f7f2d..4423fd1813 100644
--- a/gui-apps/meteo-qt/meteo-qt-3.3.ebuild
+++ b/gui-apps/meteo-qt/meteo-qt-3.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 DISTUTILS_SINGLE_IMPL=1
 inherit distutils-r1 qmake-utils xdg


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/meteo-qt/
@ 2024-08-20 10:03 Anna Vyalkova
  0 siblings, 0 replies; 4+ messages in thread
From: Anna Vyalkova @ 2024-08-20 10:03 UTC (permalink / raw
  To: gentoo-commits

commit:     836341b36c601e29cacd57ce1d4a4ec8edd8aae4
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Aug 20 09:06:06 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue Aug 20 09:06:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=836341b3

gui-apps/meteo-qt: add 3.4

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 gui-apps/meteo-qt/Manifest            |  1 +
 gui-apps/meteo-qt/meteo-qt-3.4.ebuild | 40 +++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/gui-apps/meteo-qt/Manifest b/gui-apps/meteo-qt/Manifest
index 7922ae828..f68e3054a 100644
--- a/gui-apps/meteo-qt/Manifest
+++ b/gui-apps/meteo-qt/Manifest
@@ -1 +1,2 @@
 DIST meteo-qt-3.3.gh.tar.gz 931450 BLAKE2B 0f8128ba768510b278862e2dbe33267cb339cb6fb6299e6448f49a6d5efaf98db045bd07833695e2eea936ce78bece4bc62bb62322a1df43767438e72c26dc86 SHA512 e52d05b98b99ecc01b9d584cf15db495f5c1eaa6e3ac1f429542d9d43e3890b03d93e3c7a55059821a32ea614cce7bb104b9353c59da04f164b561c920cca415
+DIST meteo-qt-3.4.gh.tar.gz 970247 BLAKE2B 44980c54c4fd746b487192e621b84ec278db22fdea534646535f49535dc1937a815d79ede3870e49f14c95c051c73c90f4e1cdd25099ebf311bc3ecb540d727c SHA512 3e9221ba460a0be874c2e1edb8eac3d363bae68f7d333977196230e3d37f28b12ed1d02b3d729830fbcd68288994cc27d1d940989f36e44475bf8eb01529bbf1

diff --git a/gui-apps/meteo-qt/meteo-qt-3.4.ebuild b/gui-apps/meteo-qt/meteo-qt-3.4.ebuild
new file mode 100644
index 000000000..aa2f9f9ec
--- /dev/null
+++ b/gui-apps/meteo-qt/meteo-qt-3.4.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_SINGLE_IMPL=1
+inherit distutils-r1 qmake-utils xdg
+
+DESCRIPTION="A system tray application for the weather status"
+HOMEPAGE="https://github.com/dglent/meteo-qt"
+SRC_URI="https://github.com/dglent/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	$(python_gen_cond_dep '
+		dev-python/PyQt5[${PYTHON_USEDEP}]
+		dev-python/lxml[${PYTHON_USEDEP}]
+	')
+"
+BDEPEND="
+	dev-python/PyQt5
+	dev-qt/linguist-tools
+"
+
+src_compile() {
+	local -x PATH="$(qt5_get_bindir):${PATH}"
+	distutils-r1_src_compile
+}
+
+python_install() {
+	mv "${BUILD_DIR}/install$(python_get_sitedir)/usr" "${ED}" || die
+	rm -r "${ED}/usr/share/doc" || die
+
+	distutils-r1_python_install
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/meteo-qt/
@ 2024-10-07  0:31 Anna Vyalkova
  0 siblings, 0 replies; 4+ messages in thread
From: Anna Vyalkova @ 2024-10-07  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     c8c3d2005f0ac678bb3c921001acfb7737f529d7
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon Oct  7 00:29:18 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Mon Oct  7 00:31:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c8c3d200

gui-apps/meteo-qt: add myself as a maintainer

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 gui-apps/meteo-qt/metadata.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gui-apps/meteo-qt/metadata.xml b/gui-apps/meteo-qt/metadata.xml
index c08732690..2f1696855 100644
--- a/gui-apps/meteo-qt/metadata.xml
+++ b/gui-apps/meteo-qt/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>cyber+gentoo@sysrq.in</email>
+		<name>Anna</name>
+	</maintainer>	
 	<upstream>
 		<remote-id type="github">dglent/meteo-qt</remote-id>
 	</upstream>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-07  0:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-07  0:31 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/meteo-qt/ Anna Vyalkova
  -- strict thread matches above, loose matches on Subject: below --
2024-08-20 10:03 Anna Vyalkova
2023-12-04 19:45 Anna Vyalkova
2023-04-02  3:41 Anna Vyalkova

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox