From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/libadwaita/
Date: Sat, 13 Apr 2024 10:37:26 +0000 (UTC) [thread overview]
Message-ID: <1713003406.399ccb2abf4562531ffcdb36c6b785d32ad49b91.leio@gentoo> (raw)
commit: 399ccb2abf4562531ffcdb36c6b785d32ad49b91
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 13 10:16:46 2024 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 10:16:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=399ccb2a
gui-libs/libadwaita: drop 1.4.2, 1.4.3
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
gui-libs/libadwaita/Manifest | 2 -
gui-libs/libadwaita/libadwaita-1.4.2.ebuild | 66 -----------------------------
gui-libs/libadwaita/libadwaita-1.4.3.ebuild | 66 -----------------------------
3 files changed, 134 deletions(-)
diff --git a/gui-libs/libadwaita/Manifest b/gui-libs/libadwaita/Manifest
index 6879775b8cd7..a2745e5f7843 100644
--- a/gui-libs/libadwaita/Manifest
+++ b/gui-libs/libadwaita/Manifest
@@ -1,3 +1 @@
-DIST libadwaita-1.4.2.tar.xz 4063684 BLAKE2B 5c4bfc939698ef7413dd60d2818c7e1041b6fe5af4b619063c24379a730e62903ed22c10d7741f31fb39ae846e18ff1af983566017a23a6b524d25353dca4e32 SHA512 4639e727ed0a9e9d468d814f74f5f40a1f69ee90a355708ffc7a17f3a9eab5f0004fea0a1888080d0d3fff845b4993db2440bce6a66712a8b7c64fa8b1d09a78
-DIST libadwaita-1.4.3.tar.xz 3955960 BLAKE2B fd68dcab96e968d8833cb9e1783eb5843ac35335ae259dd8ba06e730db3383f9ed0501bda2f442fd81e274283e308644eae1c954fdcb9cb86163fa855bb9ced2 SHA512 3402f2fcf307c07137364f92ec734f0e082080cbd80cde71da6c8859cdf504d343f6bd8816cbaa5523f9f5077cd45b6aa7619f32c2b81bc1c89eeb2eb8b1f8be
DIST libadwaita-1.4.4.tar.xz 3957408 BLAKE2B ba165260677d3dabd47d31e6895271e793ccca5525253eca1147e6ac44326563f5dc8d30e01997b6c8ffe984d32d17ab5652b7f98fcbdab1e031b9025d7c019f SHA512 3b5110753efca53133ab2d5e4dc50b50727e43427744e517c8afb15ec6ff9da2cd6b280d3c590034b3f4e0960084cc1354942831d528732d5649218743a56c71
diff --git a/gui-libs/libadwaita/libadwaita-1.4.2.ebuild b/gui-libs/libadwaita/libadwaita-1.4.2.ebuild
deleted file mode 100644
index 4856b19e694c..000000000000
--- a/gui-libs/libadwaita/libadwaita-1.4.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-inherit gnome.org meson python-any-r1 vala virtualx
-
-DESCRIPTION="Building blocks for modern GNOME applications"
-HOMEPAGE="https://gnome.pages.gitlab.gnome.org/libadwaita/ https://gitlab.gnome.org/GNOME/libadwaita"
-
-LICENSE="LGPL-2.1+"
-SLOT="1"
-IUSE="+introspection test +vala"
-REQUIRED_USE="vala? ( introspection )"
-
-KEYWORDS="amd64 ~arm arm64 ~loong ppc ppc64 ~riscv x86"
-
-RDEPEND="
- >=dev-libs/glib-2.76:2
- >=gui-libs/gtk-4.11.3:4[introspection?]
- dev-libs/appstream:=
- dev-libs/fribidi
- introspection? ( >=dev-libs/gobject-introspection-1.54:= )
-"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-BDEPEND="
- ${PYTHON_DEPS}
- vala? ( $(vala_depend) )
- dev-util/glib-utils
- sys-devel/gettext
- virtual/pkgconfig
-"
-
-src_prepare() {
- default
- use vala && vala_setup
-}
-
-src_configure() {
- local emesonargs=(
- # Never use gi-docgen subproject
- --wrap-mode nofallback
-
- -Dprofiling=false
- $(meson_feature introspection)
- $(meson_use vala vapi)
- -Dgtk_doc=false # we ship pregenerated docs
- $(meson_use test tests)
- -Dexamples=false
- )
- meson_src_configure
-}
-
-src_test() {
- virtx meson_src_test --timeout-multiplier 2
-}
-
-src_install() {
- meson_src_install
-
- insinto /usr/share/gtk-doc/html
- # This will install libadwaita API docs unconditionally, but this is intentional
- doins -r "${S}"/doc/libadwaita-1
-}
diff --git a/gui-libs/libadwaita/libadwaita-1.4.3.ebuild b/gui-libs/libadwaita/libadwaita-1.4.3.ebuild
deleted file mode 100644
index c3c582c28c39..000000000000
--- a/gui-libs/libadwaita/libadwaita-1.4.3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-inherit gnome.org meson python-any-r1 vala virtualx
-
-DESCRIPTION="Building blocks for modern GNOME applications"
-HOMEPAGE="https://gnome.pages.gitlab.gnome.org/libadwaita/ https://gitlab.gnome.org/GNOME/libadwaita"
-
-LICENSE="LGPL-2.1+"
-SLOT="1"
-IUSE="+introspection test +vala"
-REQUIRED_USE="vala? ( introspection )"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
-
-RDEPEND="
- >=dev-libs/glib-2.76:2
- >=gui-libs/gtk-4.11.3:4[introspection?]
- dev-libs/appstream:=
- dev-libs/fribidi
- introspection? ( >=dev-libs/gobject-introspection-1.54:= )
-"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-BDEPEND="
- ${PYTHON_DEPS}
- vala? ( $(vala_depend) )
- dev-util/glib-utils
- sys-devel/gettext
- virtual/pkgconfig
-"
-
-src_prepare() {
- default
- use vala && vala_setup
-}
-
-src_configure() {
- local emesonargs=(
- # Never use gi-docgen subproject
- --wrap-mode nofallback
-
- -Dprofiling=false
- $(meson_feature introspection)
- $(meson_use vala vapi)
- -Dgtk_doc=false # we ship pregenerated docs
- $(meson_use test tests)
- -Dexamples=false
- )
- meson_src_configure
-}
-
-src_test() {
- virtx meson_src_test --timeout-multiplier 2
-}
-
-src_install() {
- meson_src_install
-
- insinto /usr/share/gtk-doc/html
- # This will install libadwaita API docs unconditionally, but this is intentional
- doins -r "${S}"/doc/libadwaita-1
-}
next reply other threads:[~2024-04-13 10:37 UTC|newest]
Thread overview: 81+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-13 10:37 Mart Raudsepp [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-09-28 15:53 [gentoo-commits] repo/gentoo:master commit in: gui-libs/libadwaita/ Pacho Ramos
2024-09-28 15:53 Pacho Ramos
2024-09-07 10:31 Arthur Zamarin
2024-09-07 10:31 Arthur Zamarin
2024-09-07 10:31 Arthur Zamarin
2024-09-07 10:31 Arthur Zamarin
2024-09-07 10:31 Arthur Zamarin
2024-07-15 19:22 Pacho Ramos
2024-07-15 19:22 Pacho Ramos
2024-05-25 21:04 Mart Raudsepp
2024-04-28 20:44 Mart Raudsepp
2024-04-09 19:59 Arthur Zamarin
2024-04-07 8:38 Arthur Zamarin
2024-04-07 5:55 Arthur Zamarin
2024-04-07 5:55 Arthur Zamarin
2024-04-07 5:55 Arthur Zamarin
2024-03-03 20:55 Mart Raudsepp
2024-02-11 14:21 Mart Raudsepp
2024-02-10 14:21 Arthur Zamarin
2024-02-10 14:16 Arthur Zamarin
2024-02-09 22:26 Mart Raudsepp
2024-02-03 15:57 Mart Raudsepp
2024-02-03 11:50 Arthur Zamarin
2024-02-03 11:50 Arthur Zamarin
2024-01-08 7:03 Sam James
2023-12-18 10:19 Pacho Ramos
2023-11-17 7:47 Sam James
2023-09-22 3:52 Matt Turner
2023-09-22 3:52 Matt Turner
2023-09-22 2:33 Matt Turner
2023-09-16 13:55 Matt Turner
2023-09-03 14:01 Matt Turner
2023-09-03 14:01 Matt Turner
2023-09-01 16:07 Arthur Zamarin
2023-08-16 22:32 Matt Turner
2023-08-06 16:16 Matt Turner
2023-08-06 16:16 Matt Turner
2023-08-03 10:28 Arthur Zamarin
2023-07-11 8:43 Jakov Smolić
2023-07-02 11:18 Sam James
2023-07-02 8:33 Sam James
2023-07-02 8:04 Sam James
2023-06-29 13:34 Joonas Niilola
2023-06-10 1:15 Matt Turner
2023-06-09 3:01 Matt Turner
2023-05-05 6:16 Arthur Zamarin
2023-05-04 18:47 Arthur Zamarin
2023-05-04 18:47 Arthur Zamarin
2023-05-04 18:45 Arthur Zamarin
2023-05-04 18:43 Arthur Zamarin
2023-04-22 14:45 Matt Turner
2023-03-30 17:44 Arthur Zamarin
2023-03-17 15:59 Matt Turner
2023-03-17 14:54 Matt Turner
2023-03-05 3:25 Matt Turner
2023-02-20 17:32 Matt Turner
2023-02-17 8:23 Arthur Zamarin
2023-02-16 18:39 Arthur Zamarin
2023-02-11 20:48 Matt Turner
2023-01-07 17:42 Matt Turner
2023-01-01 14:48 David Seifert
2022-10-30 23:21 Matt Turner
2022-09-15 19:52 Matt Turner
2022-09-03 15:31 Matt Turner
2022-07-09 23:39 Matt Turner
2022-06-01 15:53 Matt Turner
2022-05-26 3:57 WANG Xuerui
2022-05-15 3:10 Sam James
2022-05-10 4:06 Arthur Zamarin
2022-05-07 18:28 Arthur Zamarin
2022-04-23 5:00 Matt Turner
2022-03-20 19:54 Matt Turner
2022-03-16 21:38 Mart Raudsepp
2022-03-10 11:45 Jakov Smolić
2022-02-13 22:44 Jakov Smolić
2022-02-11 20:56 Matt Turner
2022-02-06 7:40 Sam James
2022-02-05 6:34 Sam James
2022-01-22 6:03 Arthur Zamarin
2022-01-14 15:35 Marek Szuba
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1713003406.399ccb2abf4562531ffcdb36c6b785d32ad49b91.leio@gentoo \
--to=leio@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox