From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DEA2D1382C5 for ; Fri, 21 May 2021 02:30:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D475E07FA; Fri, 21 May 2021 02:30:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 058C1E07FA for ; Fri, 21 May 2021 02:30:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A1B38335C8C for ; Fri, 21 May 2021 02:30:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30176787 for ; Fri, 21 May 2021 02:30:34 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1621564226.831009e86e8417eb977e9e031a622b847e9e2284.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/mm-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/mm-common/Manifest dev-cpp/mm-common/mm-common-1.0.3.ebuild X-VCS-Directories: dev-cpp/mm-common/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 831009e86e8417eb977e9e031a622b847e9e2284 X-VCS-Branch: master Date: Fri, 21 May 2021 02:30:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b4435eed-a72f-4e1c-a363-227c4980ffd4 X-Archives-Hash: db5953557d1f423eca75bdbcd2ebc71c commit: 831009e86e8417eb977e9e031a622b847e9e2284 Author: Matt Turner gentoo org> AuthorDate: Fri May 21 02:24:33 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri May 21 02:30:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=831009e8 dev-cpp/mm-common: Version bump to 1.0.3 Signed-off-by: Matt Turner gentoo.org> dev-cpp/mm-common/Manifest | 1 + dev-cpp/mm-common/mm-common-1.0.3.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-cpp/mm-common/Manifest b/dev-cpp/mm-common/Manifest index a36eb86e908..a4ab41c5327 100644 --- a/dev-cpp/mm-common/Manifest +++ b/dev-cpp/mm-common/Manifest @@ -1 +1,2 @@ DIST mm-common-1.0.2.tar.xz 271720 BLAKE2B 955a541290ffc9489a7061a1bdcc4b2cca7ac5e0a834a008b4e15173e3b6df38a5fb719f26fe6f83c073c025c7113bba3586f28a6341d37c7c98cfc93ec50f0a SHA512 106f3aae8bb836386148098037c52fef19c3779f5e8cfbafcbe52eca17340a6e2fb7e5c57154cc0a90b75c0bb23900a4274591a71d85f81391be780c53238de0 +DIST mm-common-1.0.3.tar.xz 272932 BLAKE2B 90459cfa75dbcab8bb9b0512f3f3f3703850000e4ea0124afb020c476fce9948ec0128d67510b13482d52f165ba0b7a8aa72e6b1afd4a88554fa52bc4f5598d2 SHA512 fdd79e9a2ca3d7ed311a6994bd04e7cbf2b1562c39968d309765ce3b5268128f98b3f1c08a434b460276e6d911d302a12ccc7aebd6cd67e4df13241a97034a70 diff --git a/dev-cpp/mm-common/mm-common-1.0.3.ebuild b/dev-cpp/mm-common/mm-common-1.0.3.ebuild new file mode 100644 index 00000000000..035d8e988cd --- /dev/null +++ b/dev-cpp/mm-common/mm-common-1.0.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +inherit gnome.org python-any-r1 meson + +DESCRIPTION="Build infrastructure and utilities for GNOME C++ bindings" +HOMEPAGE="https://www.gtkmm.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +BDEPEND="${PYTHON_DEPS}" + +src_prepare() { + default + + # Include project version in docdir name + sed -i -e "s:^install_docdir.*:& + '-' + meson.project_version():" meson.build || die +}