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 93546158090 for ; Thu, 5 May 2022 09:50:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5BEFE069C; Thu, 5 May 2022 09:50:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A22D9E069C for ; Thu, 5 May 2022 09:50:53 +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 791C83415F9 for ; Thu, 5 May 2022 09:50:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D57D73BF for ; Thu, 5 May 2022 09:50:50 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1651744218.75594c64d4c1bf0393487a918daa451dffebf873.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/ubi_reader/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/ubi_reader/Manifest sys-fs/ubi_reader/ubi_reader-0.8.0.ebuild X-VCS-Directories: sys-fs/ubi_reader/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 75594c64d4c1bf0393487a918daa451dffebf873 X-VCS-Branch: master Date: Thu, 5 May 2022 09:50: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: 1529be00-61f8-48f4-b0f4-9a81cc1096bf X-Archives-Hash: d967eb233207ee79adbb1d0a264f3e83 commit: 75594c64d4c1bf0393487a918daa451dffebf873 Author: Jakov Smolić gentoo org> AuthorDate: Thu May 5 08:21:00 2022 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu May 5 09:50:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75594c64 sys-fs/ubi_reader: add 0.8.0 Signed-off-by: Jakov Smolić gentoo.org> sys-fs/ubi_reader/Manifest | 1 + sys-fs/ubi_reader/ubi_reader-0.8.0.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/sys-fs/ubi_reader/Manifest b/sys-fs/ubi_reader/Manifest index 888bf8bacbed..55a42a680988 100644 --- a/sys-fs/ubi_reader/Manifest +++ b/sys-fs/ubi_reader/Manifest @@ -1 +1,2 @@ DIST ubi_reader-0.7.2.tar.gz 42882 BLAKE2B c3ec72ab9642b7ece61611824f1052c5db1a2e12744c2bb6347f3682c3292dfe78f55c37403c9539556745d308891d0d03eb9f4f329461d2de864f40a941f011 SHA512 fa9193b897f0daf6d8879c8613ad1111137e2e4fcb92043df2f67c820d0da6723da3cece36705ead6afc622a24448a924b5758ed63804acfe703331a0dce60af +DIST ubi_reader-0.8.0.tar.gz 42913 BLAKE2B e802833fcc633739da6cb3cfffb8f398ad27261df55301b6322ea7303aeccbc57f6a685cefa4005ecf80e2a968139d091a8b5c6a9783dd613a5016ba56d55425 SHA512 c22a0b056a2ce74c16683dafd8e2592ba3c73df32ca49cce19fe14f60d254249849769364993cabff5ce03c8049e1758f7bdb77583d745ed21efa0c62be20532 diff --git a/sys-fs/ubi_reader/ubi_reader-0.8.0.ebuild b/sys-fs/ubi_reader/ubi_reader-0.8.0.ebuild new file mode 100644 index 000000000000..88f0ab7805aa --- /dev/null +++ b/sys-fs/ubi_reader/ubi_reader-0.8.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +MY_PN="${PN/_/-}" +DESCRIPTION="Collection of Python scripts for extracting data from UBI and UBIFS images" +HOMEPAGE="https://github.com/jrspruitt/ubi_reader" +SRC_URI="https://github.com/jrspruitt/ubi_reader/archive/refs/tags/v${PV}-master.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P}-master" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/python-lzo[${PYTHON_USEDEP}]"