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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BD95D15808B for ; Mon, 21 Mar 2022 23:48:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 537D9E0923; Mon, 21 Mar 2022 23:48:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DA326E0923 for ; Mon, 21 Mar 2022 23:48:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A94DB343068 for ; Mon, 21 Mar 2022 23:48:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B4F1320 for ; Mon, 21 Mar 2022 23:48:24 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1647906315.c316770aa70a75b2f5cec558bc2491571713d509.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mate-base/mate-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: mate-base/mate-common/Manifest mate-base/mate-common/mate-common-1.26.0.ebuild X-VCS-Directories: mate-base/mate-common/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c316770aa70a75b2f5cec558bc2491571713d509 X-VCS-Branch: master Date: Mon, 21 Mar 2022 23:48:24 +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: 17f13a70-adf8-4f0c-8f52-24d9eea48c55 X-Archives-Hash: 7ca3dfe97c52d4cfe13c42505ea62e44 commit: c316770aa70a75b2f5cec558bc2491571713d509 Author: Oz N Tiram gmail com> AuthorDate: Thu Feb 17 11:56:07 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 21 23:45:15 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c316770a mate-base/mate-common: add 1.26.0 Signed-off-by: Oz N Tiram gmail.com> Signed-off-by: Sam James gentoo.org> mate-base/mate-common/Manifest | 1 + mate-base/mate-common/mate-common-1.26.0.ebuild | 32 +++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/mate-base/mate-common/Manifest b/mate-base/mate-common/Manifest index f89c5afd5c38..39fc82430e61 100644 --- a/mate-base/mate-common/Manifest +++ b/mate-base/mate-common/Manifest @@ -1 +1,2 @@ DIST mate-common-1.24.2.tar.xz 69612 BLAKE2B 31010b5417824153046e07c4724c70e5ce9f69c0ad6945ccf276026c7f1d0238b6313cbe13a64a329a889f97a994fa749de152a0e6f02e8bc88e5f7ecf73febf SHA512 aae7cf6f4537b125d363e7be1f349cb4ba9515405d1e48704f87c647b2489647cfa14399f41b65a8c1b2a8851dfe8077ce47a3b618355767cc61a6e0037ba3d0 +DIST mate-common-1.26.0.tar.xz 69604 BLAKE2B 73c4b065eba0287d3f16ec3fdff8145dd97b765283f4017b31a7b86cb45949a4f7dde0207c244dc5c8047570830b85714955c23165889ae994a566f2f00a752c SHA512 9bfde79c9243d394f9ebc743f6a3c27199ec1e857f80020be0ff8b64a48cf1183fffd88783c1d375f2983a32c7437ca49b2f03b3e844e147c5750f71dbfb93bd diff --git a/mate-base/mate-common/mate-common-1.26.0.ebuild b/mate-base/mate-common/mate-common-1.26.0.ebuild new file mode 100644 index 000000000000..2032d986c8a6 --- /dev/null +++ b/mate-base/mate-common/mate-common-1.26.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit mate-desktop.org + +if [[ ${PV} == 9999 ]]; then + inherit autotools +else + KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +fi + +DESCRIPTION="Common files for development of MATE packages" +LICENSE="GPL-3+" +SLOT="0" + +src_prepare() { + default + if [[ ${PV} == 9999 ]]; then + eautoreconf + fi +} + +src_install() { + mv doc-build/README README.doc-build \ + || die "Failed to rename doc-build/README." + + default + + dodoc doc/usage.txt +}