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 1BEC8158094 for ; Sat, 20 Aug 2022 11:40:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 505CCE085A; Sat, 20 Aug 2022 11:40:40 +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 C6AD6E084A for ; Sat, 20 Aug 2022 11:40:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B9B413410EA for ; Sat, 20 Aug 2022 11:40:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A0FE580 for ; Sat, 20 Aug 2022 11:40:37 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1660995622.44f56d6430cf8b1d5adb47494ea1e2b609d70f31.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/avrdude/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/avrdude/avrdude-6.3.ebuild X-VCS-Directories: dev-embedded/avrdude/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 44f56d6430cf8b1d5adb47494ea1e2b609d70f31 X-VCS-Branch: master Date: Sat, 20 Aug 2022 11:40:37 +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: 27fa7ce7-a5e4-4937-921a-fed8cfd2581a X-Archives-Hash: 4b7e481ce35b4a669ddb01cf2f4068d7 commit: 44f56d6430cf8b1d5adb47494ea1e2b609d70f31 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 16 21:40:39 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Aug 20 11:40:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f56d64 dev-embedded/avrdude: drop 6.3, EAPI-6-- Closes: https://bugs.gentoo.org/832769 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-embedded/avrdude/avrdude-6.3.ebuild | 62 --------------------------------- 1 file changed, 62 deletions(-) diff --git a/dev-embedded/avrdude/avrdude-6.3.ebuild b/dev-embedded/avrdude/avrdude-6.3.ebuild deleted file mode 100644 index 6e1f5db129f9..000000000000 --- a/dev-embedded/avrdude/avrdude-6.3.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="AVR Downloader/UploaDEr" -HOMEPAGE="https://savannah.nongnu.org/projects/avrdude" -SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz - doc? ( - mirror://nongnu/${PN}/${PN}-doc-${PV}.tar.gz - mirror://nongnu/${PN}/${PN}-doc-${PV}.pdf - )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm ppc ppc64 x86" -IUSE="doc ftdi ncurses readline" - -RDEPEND="virtual/libusb:1 - virtual/libusb:0 - ftdi? ( dev-embedded/libftdi:= ) - ncurses? ( sys-libs/ncurses:0= ) - readline? ( sys-libs/readline:0= )" -DEPEND="${RDEPEND}" - -DOCS="AUTHORS ChangeLog* NEWS README" - -src_prepare() { - default - - # let the build system re-generate these, bug #120194 - rm -f lexer.c config_gram.c config_gram.h || die -} - -src_configure() { - # somehow this doesnt get set when cross-compiling and breaks build - tc-export AR - export ac_cv_lib_ftdi_ftdi_usb_get_strings=$(usex ftdi) - export ac_cv_lib_ncurses_tputs=$(usex ncurses) - export ac_cv_lib_readline_readline=$(usex readline) - econf --disable-static -} - -src_compile() { - # The automake target for these files does not use tempfiles or create - # these atomically, confusing a parallel build. So we force them first. - emake lexer.c config_gram.c config_gram.h - emake -} - -src_install() { - default - - if use doc ; then - newdoc "${DISTDIR}/${PN}-doc-${PV}.pdf" avrdude.pdf - dodoc -r "${WORKDIR}/avrdude-html/" - fi - - find "${ED}" -name '*.la' -delete || die -}