From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/libhandy/
Date: Tue, 27 Apr 2021 22:17:13 +0000 (UTC) [thread overview]
Message-ID: <1619561826.53da12505c83fc60c541e07aec8952a7ced8acc1.mattst88@gentoo> (raw)
commit: 53da12505c83fc60c541e07aec8952a7ced8acc1
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 27 22:09:36 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Apr 27 22:17:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53da1250
gui-libs/libhandy: Version bump to 1.2.2
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
gui-libs/libhandy/Manifest | 1 +
gui-libs/libhandy/libhandy-1.2.2.ebuild | 56 +++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/gui-libs/libhandy/Manifest b/gui-libs/libhandy/Manifest
index 265eb6c4d80..1c5528ee7c2 100644
--- a/gui-libs/libhandy/Manifest
+++ b/gui-libs/libhandy/Manifest
@@ -1,4 +1,5 @@
DIST libhandy-1.0.3.tar.xz 389068 BLAKE2B 2892103a672551f9a48a2f877568548fe771aeddbf156427baf03f8654488b5a0a8218f621366a47097030eb0ecf5abeb4f021d320046602cda0a028d91ec566 SHA512 cc304acc53e0819dce4931292e395ba44c1eb8630ebfa56390637bf376de226f4545906892967815c3e144423409b5a85e293568d3ed8069a6c4775307aeef4f
DIST libhandy-1.2.0.tar.xz 481120 BLAKE2B 327a2b1d9bec68a705f0e1cd7ebecc35706a95fd9964482244ebc6fd36f84e1563918286e507b77ec70ba4bab118b0e508a2cebef7514685221b918994d2fa6a SHA512 34f84479fcef6fdd3b46a03a0b4806887708ce8295461eae655e34febdec5b62de56e34e58696545f086be8de1e2c0ac13a61a4bbe0a945a87e7d8e860a5f919
DIST libhandy-1.2.1.tar.xz 488324 BLAKE2B 9266671b0503971b80d9466673431624600c1ed0d061693187ab2dfe5a017235c985ba997882493f03bd7d6bb0d32c78a8858591dc57f6c101e64987d37eef4a SHA512 0474d1f15a1572ab3f622ec703fc4167beb3ed6062f566d8b50c20894a217c66d00c5b4616d54e65fac312b9836428e8cb83753566cf67abffb9eafbb87dc926
+DIST libhandy-1.2.2.tar.xz 488508 BLAKE2B 1b764c90710de8a7960308b6441657799e6c3a12de9688f720748ca57653f6592fb4ba9f75841d76ae477af7c1709dc4f303658cc543c8de3f6f64d1de7d03cf SHA512 2135d3e15931fa143698de9200803c90e93c87b82c96b4fff90b75075c218a8ef2f69a26210bda8c10fb7195f115b11b804bb6de0b2f65cd464a7cefe35d0af4
DIST libhandy-v0.0.13.tar.bz2 394811 BLAKE2B 318c226f20b4d8032e984dbd47b4634e828b922dcbc244e4f3f35b94c38f27ed38427196d553809bb1d6bfa7c4830db5d27701e3595cac8a05b58a27ba4a2472 SHA512 a0918c55c9ac14af223a83db542e7dc815d97c844d1f0830a1bee4bdcdf248d00d049fa90fd2be96265535a68d56de5143ddd9264b5e997a902ac9558d5096f3
diff --git a/gui-libs/libhandy/libhandy-1.2.2.ebuild b/gui-libs/libhandy/libhandy-1.2.2.ebuild
new file mode 100644
index 00000000000..1df7e54eddb
--- /dev/null
+++ b/gui-libs/libhandy/libhandy-1.2.2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome.org meson xdg vala virtualx
+
+DESCRIPTION="Building blocks for modern adaptive GNOME apps"
+HOMEPAGE="https://gitlab.gnome.org/GNOME/libhandy/"
+
+LICENSE="LGPL-2.1+"
+SLOT="1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+IUSE="examples glade gtk-doc +introspection test +vala"
+REQUIRED_USE="vala? ( introspection )"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-libs/glib-2.44:2
+ >=x11-libs/gtk+-3.24.1:3[introspection?]
+ glade? ( dev-util/glade:3.10= )
+ introspection? ( >=dev-libs/gobject-introspection-1.54:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ dev-libs/libxml2:2
+ dev-util/glib-utils
+ >=sys-devel/gettext-0.19.8
+ virtual/pkgconfig
+ gtk-doc? ( dev-util/gtk-doc
+ app-text/docbook-xml-dtd:4.3 )
+ vala? ( $(vala_depend) )
+"
+
+src_prepare() {
+ use vala && vala_src_prepare
+ xdg_src_prepare
+}
+
+src_configure() {
+ local emesonargs=(
+ -Dprofiling=false # -pg passing
+ $(meson_feature introspection)
+ $(meson_use vala vapi)
+ $(meson_use gtk-doc gtk_doc)
+ $(meson_use test tests)
+ $(meson_use examples)
+ $(meson_feature glade glade_catalog)
+ )
+ meson_src_configure
+}
+
+src_test() {
+ virtx meson_src_test
+}
next reply other threads:[~2021-04-27 22:17 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-27 22:17 Matt Turner [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-13 10:37 [gentoo-commits] repo/gentoo:master commit in: gui-libs/libhandy/ Mart Raudsepp
2024-04-07 7:40 Arthur Zamarin
2024-04-07 6:10 Arthur Zamarin
2024-02-09 22:26 Mart Raudsepp
2023-04-01 19:01 Arthur Zamarin
2023-03-30 17:44 Arthur Zamarin
2023-03-05 3:25 Matt Turner
2023-02-25 11:03 Joonas Niilola
2023-02-01 16:26 Matt Turner
2022-11-05 9:58 Arthur Zamarin
2022-10-30 23:21 Matt Turner
2022-09-16 2:40 Matt Turner
2022-09-04 3:07 Matt Turner
2022-08-15 19:13 Arthur Zamarin
2022-08-15 19:13 Arthur Zamarin
2022-07-29 2:59 Sam James
2022-07-09 23:39 Matt Turner
2022-05-28 5:05 Sam James
2022-04-23 5:00 Matt Turner
2022-03-20 19:54 Matt Turner
2022-01-24 14:49 Sam James
2022-01-24 3:39 Sam James
2022-01-20 10:02 Jakov Smolić
2022-01-20 9:42 Arthur Zamarin
2021-12-18 3:47 Matt Turner
2021-09-15 20:00 Mart Raudsepp
2021-07-26 7:15 Matt Turner
2021-07-24 17:08 Sam James
2021-07-11 20:48 Sam James
2021-06-21 23:59 Matt Turner
2021-05-29 15:27 Sam James
2021-05-28 19:20 Sam James
2021-04-14 20:45 Matt Turner
2021-04-12 23:11 Sam James
2021-02-26 19:02 Sam James
2021-01-08 4:15 Matt Turner
2020-12-19 11:04 Mart Raudsepp
2020-12-19 11:04 Mart Raudsepp
2020-12-11 3:24 Matt Turner
2020-04-25 20:17 Mart Raudsepp
2020-03-14 21:08 Mart Raudsepp
2020-01-31 20:10 Mart Raudsepp
2019-11-30 21:17 Sergei Trofimovich
2019-09-28 11:27 Sergei Trofimovich
2019-09-07 23:18 Thomas Deutschmann
2019-09-07 22:09 Mart Raudsepp
2019-08-25 1:10 Aaron Bauman
2019-08-17 17:50 Mart Raudsepp
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=1619561826.53da12505c83fc60c541e07aec8952a7ced8acc1.mattst88@gentoo \
--to=mattst88@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