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 CFDDF138359 for ; Tue, 14 Jul 2020 00:55:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F533E087B; Tue, 14 Jul 2020 00:55:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0ACA0E087B for ; Tue, 14 Jul 2020 00:55:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A62A634F41A for ; Tue, 14 Jul 2020 00:55:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D08E2D3 for ; Tue, 14 Jul 2020 00:55:50 +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: <1594687512.561d1b482b3bb65426d2805037d9a32dfc3c81a5.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.1.ebuild X-VCS-Directories: dev-cpp/mm-common/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 561d1b482b3bb65426d2805037d9a32dfc3c81a5 X-VCS-Branch: master Date: Tue, 14 Jul 2020 00:55:50 +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: 2e9fe383-a92d-4d56-b323-564c588683fd X-Archives-Hash: d771bc5df8ee7c69c60a150db14f3550 commit: 561d1b482b3bb65426d2805037d9a32dfc3c81a5 Author: Matt Turner gentoo org> AuthorDate: Tue Jul 14 00:22:11 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Jul 14 00:45:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=561d1b48 dev-cpp/mm-common: Version bump to 1.0.1 Signed-off-by: Matt Turner gentoo.org> dev-cpp/mm-common/Manifest | 1 + dev-cpp/mm-common/mm-common-1.0.1.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-cpp/mm-common/Manifest b/dev-cpp/mm-common/Manifest index 00a918b3133..16fb8f43e70 100644 --- a/dev-cpp/mm-common/Manifest +++ b/dev-cpp/mm-common/Manifest @@ -1 +1,2 @@ DIST mm-common-1.0.0.tar.xz 269312 BLAKE2B 549708486f3c7df699b966e818dde4888048f30db94a78b721b8ba0e6cffa949f0c6b32e3f03861a3646f4547724997441a2f4eee1a597fb78c28e89882344e6 SHA512 5f90964ae7f47ef16919c5ae20fa38436d04e0cf6eb4b868c3a498631e1995dc5363728ebfed2678266de08adbd1c326d1a77755b232d98d02acc034f08412db +DIST mm-common-1.0.1.tar.xz 271144 BLAKE2B a5c540c9004103298627146e6483de1345f1c3c1c6a48e3f0821a42f1e875f1753df5d5e8164d4c95e844a3b0229a45e697a49596a0671c9717a7561bfc621de SHA512 1dd5fe5fbcc04c6d42cbf4ff33a06058fdb247f6ed9ce958f7231eb99ca7e4b41ea2b91611e0d3909e0fcc9f45a6a4b2c119c0bd3da8afb1741256ca31e1a33b diff --git a/dev-cpp/mm-common/mm-common-1.0.1.ebuild b/dev-cpp/mm-common/mm-common-1.0.1.ebuild new file mode 100644 index 00000000000..ba4c89f0371 --- /dev/null +++ b/dev-cpp/mm-common/mm-common-1.0.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit gnome.org 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" +IUSE="" + +RDEPEND="" +DEPEND="" + +src_prepare() { + default + + # Include project version in docdir name + sed -i -e "s:^install_docdir.*:& + '-' + meson.project_version():" meson.build || die +}