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 7F324138359 for ; Tue, 7 Jul 2020 07:19:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADB9BE08AD; Tue, 7 Jul 2020 07:19:13 +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 95AF1E08AD for ; Tue, 7 Jul 2020 07:19:13 +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 9134C34EF52 for ; Tue, 7 Jul 2020 07:19:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6405C2A4 for ; Tue, 7 Jul 2020 07:19:03 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1594106331.f593ae21fe4e8f4f2e92a4c3a802e2f8e9baefb7.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/dtc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/dtc/dtc-1.5.0-r1.ebuild X-VCS-Directories: sys-apps/dtc/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: f593ae21fe4e8f4f2e92a4c3a802e2f8e9baefb7 X-VCS-Branch: master Date: Tue, 7 Jul 2020 07:19:03 +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: 896bc83b-f22c-4902-9fbd-2f61beb8591f X-Archives-Hash: 05ed2f6d8b28d8597d1fcb8edd7e2ed8 commit: f593ae21fe4e8f4f2e92a4c3a802e2f8e9baefb7 Author: Sergei Trofimovich gentoo org> AuthorDate: Tue Jul 7 07:18:51 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Jul 7 07:18:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f593ae21 sys-apps/dtc: drop old Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Sergei Trofimovich gentoo.org> sys-apps/dtc/dtc-1.5.0-r1.ebuild | 64 ---------------------------------------- 1 file changed, 64 deletions(-) diff --git a/sys-apps/dtc/dtc-1.5.0-r1.ebuild b/sys-apps/dtc/dtc-1.5.0-r1.ebuild deleted file mode 100644 index 466cd72eb84..00000000000 --- a/sys-apps/dtc/dtc-1.5.0-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit multilib toolchain-funcs eutils - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git" - inherit git-r3 -else - SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -fi - -DESCRIPTION="Open Firmware device tree compiler" -HOMEPAGE="https://devicetree.org/ https://git.kernel.org/cgit/utils/dtc/dtc.git/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="static-libs yaml" - -BDEPEND=" - sys-devel/bison - sys-devel/flex - virtual/pkgconfig -" -RDEPEND="yaml? ( dev-libs/libyaml )" -DEPEND="${RDEPEND}" - -DOCS=" - Documentation/dt-object-internal.txt - Documentation/dts-format.txt - Documentation/manual.txt -" - -PATCHES=( - "${FILESDIR}"/${PN}-1.4.4-posix-shell.patch - "${FILESDIR}"/${PN}-1.5.0-fdt_check_full-visibility.patch - "${FILESDIR}"/${PN}-1.5.0-gcc-10.patch -) - -src_prepare() { - default - - sed -i \ - -e '/^CFLAGS =/s:=:+=:' \ - -e '/^CPPFLAGS =/s:=:+=:' \ - -e 's:-Werror::' \ - -e 's:-g -Os::' \ - -e "/^PREFIX =/s:=.*:= ${EPREFIX}/usr:" \ - -e "/^LIBDIR =/s:=.*:= \$(PREFIX)/$(get_libdir):" \ - Makefile || die - - tc-export AR CC PKG_CONFIG - export V=1 - export NO_YAML=$(usex !yaml 1 0) - export NO_VALGRIND=1 # used only in 'make checkm' -} - -src_install() { - default - - use static-libs || find "${ED}" -name '*.a' -delete -}