* [gentoo-commits] repo/gentoo:master commit in: x11-terms/ptyxis/
@ 2024-08-09 9:54 Pacho Ramos
0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2024-08-09 9:54 UTC (permalink / raw
To: gentoo-commits
commit: f21bbf4de7231160807b8db5af75662dae3d740a
Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
AuthorDate: Sat Jun 15 00:01:14 2024 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Aug 9 09:53:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f21bbf4d
x11-terms/ptyxis: New package 46.5
Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34844
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-terms/ptyxis/Manifest | 1 +
x11-terms/ptyxis/metadata.xml | 11 ++++++++
x11-terms/ptyxis/ptyxis-46.5.ebuild | 53 +++++++++++++++++++++++++++++++++++++
3 files changed, 65 insertions(+)
diff --git a/x11-terms/ptyxis/Manifest b/x11-terms/ptyxis/Manifest
new file mode 100644
index 000000000000..e595aced6717
--- /dev/null
+++ b/x11-terms/ptyxis/Manifest
@@ -0,0 +1 @@
+DIST ptyxis-46.5.tar.xz 3866528 BLAKE2B 784085167461ceeb737005b506e43d1a3fb96f04a501a694a002eee2d17457bfd06e23ad7c8fcec6c5f746f5d07e06e9559ec35e65f7de3942e9dd239bf6fcac SHA512 d66f67ea0bba5a6c449faae75f2bcc0c20254a59cf7ae27f7c67fc11008593d7a3a5cb8ff445b46925e9b6e5aab5f72d4aeee80b9053b0682d6ae1708df02dac
diff --git a/x11-terms/ptyxis/metadata.xml b/x11-terms/ptyxis/metadata.xml
new file mode 100644
index 000000000000..436a7a9f3f66
--- /dev/null
+++ b/x11-terms/ptyxis/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="project">
+ <email>gnome@gentoo.org</email>
+ <name>Gentoo GNOME Desktop</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="gnome-gitlab">chergert/ptyxis</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/x11-terms/ptyxis/ptyxis-46.5.ebuild b/x11-terms/ptyxis/ptyxis-46.5.ebuild
new file mode 100644
index 000000000000..94be6d392082
--- /dev/null
+++ b/x11-terms/ptyxis/ptyxis-46.5.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org gnome2-utils meson xdg
+
+DESCRIPTION="Ptyxis is a terminal for GNOME with first-class support for containers."
+HOMEPAGE="https://gitlab.gnome.org/chergert/ptyxis"
+
+LICENSE="LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-libs/glib-2.76:2
+ >=gui-libs/gtk-4.12.2:4
+ >=gui-libs/libadwaita-1.4_alpha:1
+ >=gui-libs/vte-0.75.0:2.91-gtk4[-vanilla]
+ gnome-base/libgtop:2=
+ >=dev-libs/libpcre2-10.32:0=
+ gnome-base/gsettings-desktop-schemas
+
+ x11-libs/pango
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ test? (
+ dev-util/desktop-file-utils
+ dev-libs/appstream-glib
+ )
+"
+
+src_configure() {
+ local emesonargs=(
+ -Ddevelopment=false
+ -Dgeneric=terminal
+ )
+ meson_src_configure
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+ gnome2_schemas_update
+}
+
+pkg_postrm() {
+ xdg_pkg_postrm
+ gnome2_schemas_update
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-terms/ptyxis/
@ 2024-08-09 9:54 Pacho Ramos
0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2024-08-09 9:54 UTC (permalink / raw
To: gentoo-commits
commit: 19526cb066505c86f577134557679a76230e31eb
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 9 09:29:07 2024 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Aug 9 09:53:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19526cb0
x11-terms/ptyxis: update DESCRIPTION
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-terms/ptyxis/ptyxis-46.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-terms/ptyxis/ptyxis-46.5.ebuild b/x11-terms/ptyxis/ptyxis-46.5.ebuild
index 94be6d392082..457bc4b2a175 100644
--- a/x11-terms/ptyxis/ptyxis-46.5.ebuild
+++ b/x11-terms/ptyxis/ptyxis-46.5.ebuild
@@ -5,7 +5,7 @@ EAPI=8
inherit gnome.org gnome2-utils meson xdg
-DESCRIPTION="Ptyxis is a terminal for GNOME with first-class support for containers."
+DESCRIPTION="A terminal for a container-oriented desktop"
HOMEPAGE="https://gitlab.gnome.org/chergert/ptyxis"
LICENSE="LGPL-3+"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-terms/ptyxis/
@ 2024-08-09 10:46 Pacho Ramos
0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2024-08-09 10:46 UTC (permalink / raw
To: gentoo-commits
commit: 62945684a800ee7b4ccc528c9d05fbf7fb53dbc8
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 9 10:45:49 2024 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Aug 9 10:46:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62945684
x11-terms/ptyxis: Fix dependencies
Closes: https://bugs.gentoo.org/937615
Thanks-to: Agostino Sarubbo
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-terms/ptyxis/ptyxis-46.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-terms/ptyxis/ptyxis-46.5.ebuild b/x11-terms/ptyxis/ptyxis-46.5.ebuild
index 457bc4b2a175..18220a0fc97e 100644
--- a/x11-terms/ptyxis/ptyxis-46.5.ebuild
+++ b/x11-terms/ptyxis/ptyxis-46.5.ebuild
@@ -15,7 +15,7 @@ IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
- >=dev-libs/glib-2.76:2
+ >=dev-libs/glib-2.80:2
>=gui-libs/gtk-4.12.2:4
>=gui-libs/libadwaita-1.4_alpha:1
>=gui-libs/vte-0.75.0:2.91-gtk4[-vanilla]
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-terms/ptyxis/
@ 2024-11-08 18:16 Pacho Ramos
0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2024-11-08 18:16 UTC (permalink / raw
To: gentoo-commits
commit: 702e94f73cecc64cde40ed9a0d9a6d22f8c4f94b
Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
AuthorDate: Sat Aug 10 05:22:30 2024 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Nov 8 18:16:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=702e94f7
x11-terms/ptyxis: Bump to 46.8
Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/38040
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-terms/ptyxis/Manifest | 1 +
x11-terms/ptyxis/ptyxis-46.8.ebuild | 53 +++++++++++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/x11-terms/ptyxis/Manifest b/x11-terms/ptyxis/Manifest
index e595aced6717..3444ce36ef6f 100644
--- a/x11-terms/ptyxis/Manifest
+++ b/x11-terms/ptyxis/Manifest
@@ -1 +1,2 @@
DIST ptyxis-46.5.tar.xz 3866528 BLAKE2B 784085167461ceeb737005b506e43d1a3fb96f04a501a694a002eee2d17457bfd06e23ad7c8fcec6c5f746f5d07e06e9559ec35e65f7de3942e9dd239bf6fcac SHA512 d66f67ea0bba5a6c449faae75f2bcc0c20254a59cf7ae27f7c67fc11008593d7a3a5cb8ff445b46925e9b6e5aab5f72d4aeee80b9053b0682d6ae1708df02dac
+DIST ptyxis-46.8.tar.xz 3903600 BLAKE2B 69c36633c4bf14d2caab86adcf738665cc362b26bf1bdceddeb9765b94dded6f353a6b80e16149b016521d4407346be63fc2fff8c4621030026a496c38c25eb9 SHA512 d351fe271f2c70707d5a4885fd7fd64794969a408fb37e18bbd5719efedc4a52ce15e0aeb42b2468beb5d20667ddf93589796457fbfeaf44ecee30d4bd963f9b
diff --git a/x11-terms/ptyxis/ptyxis-46.8.ebuild b/x11-terms/ptyxis/ptyxis-46.8.ebuild
new file mode 100644
index 000000000000..18220a0fc97e
--- /dev/null
+++ b/x11-terms/ptyxis/ptyxis-46.8.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org gnome2-utils meson xdg
+
+DESCRIPTION="A terminal for a container-oriented desktop"
+HOMEPAGE="https://gitlab.gnome.org/chergert/ptyxis"
+
+LICENSE="LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-libs/glib-2.80:2
+ >=gui-libs/gtk-4.12.2:4
+ >=gui-libs/libadwaita-1.4_alpha:1
+ >=gui-libs/vte-0.75.0:2.91-gtk4[-vanilla]
+ gnome-base/libgtop:2=
+ >=dev-libs/libpcre2-10.32:0=
+ gnome-base/gsettings-desktop-schemas
+
+ x11-libs/pango
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ test? (
+ dev-util/desktop-file-utils
+ dev-libs/appstream-glib
+ )
+"
+
+src_configure() {
+ local emesonargs=(
+ -Ddevelopment=false
+ -Dgeneric=terminal
+ )
+ meson_src_configure
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+ gnome2_schemas_update
+}
+
+pkg_postrm() {
+ xdg_pkg_postrm
+ gnome2_schemas_update
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-11-08 18:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-08 18:16 [gentoo-commits] repo/gentoo:master commit in: x11-terms/ptyxis/ Pacho Ramos
-- strict thread matches above, loose matches on Subject: below --
2024-08-09 10:46 Pacho Ramos
2024-08-09 9:54 Pacho Ramos
2024-08-09 9:54 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox