public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/granite/
Date: Wed, 21 Dec 2022 22:47:52 +0000 (UTC)	[thread overview]
Message-ID: <1671661548.345293fe6741a78a6889534ea9c9539e90e66dd0.sam@gentoo> (raw)

commit:     345293fe6741a78a6889534ea9c9539e90e66dd0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 21 22:21:48 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec 21 22:25:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=345293fe

dev-libs/granite: drop 5.2.5-r1, 6.0.0

Bug: https://bugs.gentoo.org/886697
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/granite/Manifest                |  2 -
 dev-libs/granite/granite-5.2.5-r1.ebuild | 79 --------------------------------
 dev-libs/granite/granite-6.0.0.ebuild    | 41 -----------------
 3 files changed, 122 deletions(-)

diff --git a/dev-libs/granite/Manifest b/dev-libs/granite/Manifest
index 315b9b62a856..abee51b5481a 100644
--- a/dev-libs/granite/Manifest
+++ b/dev-libs/granite/Manifest
@@ -1,3 +1 @@
-DIST granite-5.2.5.tar.gz 392987 BLAKE2B 507c3b810b750257a66195b45842a7664eb544f86a8606124d30d277c03680296f1ace7a9233d6e094ad5ce3357564e13b61d946f8ed926ccf22a5d9b5e98648 SHA512 64a08293bc4b33d77206c7070b4e2002dd8e2da8a358e43074b681a9228790dcb342d3a705cfc0309a7e1e7f498a2a656e972c2fee085ba99fb5214e33758fc3
-DIST granite-6.0.0.tar.gz 442902 BLAKE2B b142e13467f88522b910338f7921801914186ae567e99dc640474f0edff2ee464ff98c755fac742cabee90dba55a302e1642fc65989f50fe4d0eebc509b5c78d SHA512 7e856eed992a81b896c39c753897f95997682a8c754d33c0c4b032645a77d191111767968e07831948786088fb0cc52441551ce1c5f585f58a25cc147196f0e4
 DIST granite-6.2.0.tar.gz 462780 BLAKE2B bb0df3649eab212e36a20ebd365521fc4ad87d1d10e54155905585fdb39874525b3a59ec2b9a1fd19a427c9a67a94bc6e4df433560a6208370dd90d27125e24f SHA512 4d9c21a653505812c8d99508166b411d1931bd251bf51c4bff8e6a0d905b5efc60832f3e7fbf6f8d52b67b55edf299969865542db33a8276b90e05b3b4731a87

diff --git a/dev-libs/granite/granite-5.2.5-r1.ebuild b/dev-libs/granite/granite-5.2.5-r1.ebuild
deleted file mode 100644
index 56f8f0eaaf6f..000000000000
--- a/dev-libs/granite/granite-5.2.5-r1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-VALA_MIN_API_VERSION=0.40
-BUILD_DIR="${WORKDIR}/${P}-build"
-
-inherit meson vala xdg
-
-DESCRIPTION="Elementary OS library that extends GTK+"
-HOMEPAGE="https://github.com/elementary/granite"
-SRC_URI="https://github.com/elementary/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-	$(vala_depend)
-	virtual/pkgconfig
-	doc? (
-		>=dev-lang/vala-0.40.20[valadoc]
-		dev-util/gtk-doc
-	)
-"
-DEPEND="
-	>=dev-libs/glib-2.50:2
-	dev-libs/libgee:0.8[introspection]
-	>=x11-libs/gtk+-3.22:3[introspection]
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	default
-	vala_src_prepare
-	if use doc; then
-		sed -i \
-			"s/find_program('valadoc')/find_program('valadoc-$(vala_best_api_version)')/g" \
-			doc/meson.build || die "Failed to replace valadoc"
-		local doc_sed_list=(
-			"lib/Widgets/AboutDialog.vala"
-			"lib/Widgets/AlertView.vala"
-			"lib/Widgets/AsyncImage.vala"
-			"lib/Widgets/Avatar.vala"
-			"lib/Widgets/CellRendererBadge.vala"
-			"lib/Widgets/DynamicNotebook.vala"
-			"lib/Widgets/MessageDialog.vala"
-			"lib/Widgets/ModeButton.vala"
-			"lib/Widgets/OverlayBar.vala"
-			"lib/Widgets/SeekBar.vala"
-			"lib/Widgets/StorageBar.vala"
-			"lib/Widgets/Toast.vala"
-			"lib/Widgets/Welcome.vala"
-		)
-		for src_file in "${doc_sed_list[@]}"; do
-			sed -ie "s@{{../doc@{{${BUILD_DIR}/doc@g" \
-				"./${src_file}" || die "Failed to fix docs for ./${src_file}"
-		done
-	fi
-}
-
-src_configure() {
-	local emesonargs=(
-		$(meson_use doc documentation)
-	)
-	meson_src_configure
-
-	if use doc; then
-		cp -r ./doc/images "${BUILD_DIR}/doc/" || die "Failed to copy doc images"
-	fi
-}
-
-src_install() {
-	use doc && local HTML_DOCS=( "${BUILD_DIR}/doc/granite/html/." )
-	meson_src_install
-}

diff --git a/dev-libs/granite/granite-6.0.0.ebuild b/dev-libs/granite/granite-6.0.0.ebuild
deleted file mode 100644
index 219a9015fa54..000000000000
--- a/dev-libs/granite/granite-6.0.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-VALA_MIN_API_VERSION=0.40
-BUILD_DIR="${WORKDIR}/${P}-build"
-
-inherit meson vala xdg
-
-DESCRIPTION="Elementary OS library that extends GTK+"
-HOMEPAGE="https://github.com/elementary/granite"
-SRC_URI="https://github.com/elementary/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-3+"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-
-BDEPEND="
-	$(vala_depend)
-	virtual/pkgconfig
-"
-DEPEND="
-	>=dev-libs/glib-2.50:2
-	>=x11-libs/gtk+-3.22:3[introspection]
-	dev-libs/libgee:0.8[introspection]
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	default
-	vala_src_prepare
-}
-
-src_configure() {
-	# docs disabled due to: https://github.com/elementary/granite/issues/482
-	local emesonargs=(
-		-Ddocumentation=false
-	)
-	meson_src_configure
-}


             reply	other threads:[~2022-12-21 22:48 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-21 22:47 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-01-01 14:48 [gentoo-commits] repo/gentoo:master commit in: dev-libs/granite/ David Seifert
2022-12-19  0:58 Sam James
2022-12-18 11:41 Sam James
2022-01-22 12:44 Maciej Barć
2021-12-26 19:05 Sam James
2021-12-26  0:23 Sam James
2021-12-26  0:23 Sam James
2021-12-19 16:47 Maciej Barć
2021-12-19 16:47 Maciej Barć
2021-11-25  2:03 Maciej Barć
2021-04-09 12:48 Joonas Niilola
2021-03-11 17:06 Sam James
2021-02-01 13:22 Joonas Niilola
2021-02-01 13:22 Joonas Niilola
2019-10-22 10:09 Michał Górny
2019-10-22 10:09 Michał Górny
2019-10-22  7:25 Agostino Sarubbo
2019-10-22  7:24 Agostino Sarubbo
2019-10-14 17:39 Joonas Niilola
2019-09-26 19:02 Thomas Deutschmann
2019-09-07  8:11 Joonas Niilola
2019-09-07  8:11 Joonas Niilola
2019-08-29 13:27 Joonas Niilola
2019-08-29 13:27 Joonas Niilola
2018-07-11  8:16 Tony Vroon
2018-06-11  8:13 Agostino Sarubbo
2018-06-10 18:46 Thomas Deutschmann
2018-05-18 21:15 Andreas Sturmlechner
2018-03-10 13:19 Amy Liffey
2017-01-28 17:01 Johannes Huber

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=1671661548.345293fe6741a78a6889534ea9c9539e90e66dd0.sam@gentoo \
    --to=sam@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