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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3AD23158012 for ; Sat, 10 Sep 2022 23:06:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61B72E0982; Sat, 10 Sep 2022 23:06: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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45B9EE0982 for ; Sat, 10 Sep 2022 23:06:27 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48B81340FFF for ; Sat, 10 Sep 2022 23:06:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC2465B1 for ; Sat, 10 Sep 2022 23:06:24 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1662851166.e91bd3fb6defafb7f8d9208b4e42e7a0d61cb92d.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/merge-usr/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/merge-usr/Manifest sys-apps/merge-usr/merge-usr-1.ebuild X-VCS-Directories: sys-apps/merge-usr/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: e91bd3fb6defafb7f8d9208b4e42e7a0d61cb92d X-VCS-Branch: master Date: Sat, 10 Sep 2022 23:06: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: d050edc3-dd93-48a5-800e-b6057f68af7c X-Archives-Hash: 1757a53f681bbefcd43e603298f0f9bd commit: e91bd3fb6defafb7f8d9208b4e42e7a0d61cb92d Author: Mike Gilbert gentoo org> AuthorDate: Sat Sep 10 23:06:06 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Sep 10 23:06:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e91bd3fb sys-apps/merge-usr: add 1 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/merge-usr/Manifest | 1 + sys-apps/merge-usr/merge-usr-1.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/sys-apps/merge-usr/Manifest b/sys-apps/merge-usr/Manifest index 6e9d2106baf5..4965602067d2 100644 --- a/sys-apps/merge-usr/Manifest +++ b/sys-apps/merge-usr/Manifest @@ -1 +1,2 @@ DIST merge-usr-0.tar.gz 9022 BLAKE2B b8590bbdff92f1297fb0a3335a3a380464661025c1d57e526df1c665966c3732e4cb1b7333d5108aac34b59d70032978cea4b6e93dd4c5e0a9069174e412d8e3 SHA512 3ccba0360cf576f3d2c5fca63a4b8119e85840165f085172d6d3b8fcab212285fc8511c2004e303144870ba7738305d4030360f14196a6b73df40c6842abc40b +DIST merge-usr-1.tar.gz 9217 BLAKE2B e826025e27341d69ec700be9fb9b57d354710275896fb33d98c49f72a97c360f02f663cfad957a9d71d1e73d961affca84221cc4d08b6b114906f6f8b55f920f SHA512 3a81e1b737ffc2a51d59c18b4733d4df000ea66c55ab3cf5042f034148d7ef1a393bb09650b0d0c7a63ce07bdcb833a00d4cf3f6acc838073059a8879f6af5d3 diff --git a/sys-apps/merge-usr/merge-usr-1.ebuild b/sys-apps/merge-usr/merge-usr-1.ebuild new file mode 100644 index 000000000000..6ae74a2fc288 --- /dev/null +++ b/sys-apps/merge-usr/merge-usr-1.ebuild @@ -0,0 +1,23 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +inherit python-single-r1 + +DESCRIPTION="Script to migrate from split-usr to merged-usr" +HOMEPAGE="https://github.com/floppym/merge-usr" +SRC_URI="https://github.com/floppym/merge-usr/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sparc" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +BDEPEND="${PYTHON_DEPS}" +RDEPEND="${PYTHON_DEPS}" + +src_install() { + python_doscript merge-usr +}