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 504CC158088 for ; Thu, 7 Oct 2021 18:54:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37153E0827; Thu, 7 Oct 2021 18:54:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 20B8CE0827 for ; Thu, 7 Oct 2021 18:54:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EE39E34338F for ; Thu, 7 Oct 2021 18:54:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6452E13F for ; Thu, 7 Oct 2021 18:54:17 +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: <1633632844.ccb6e0fa1513ad869ff7935ab80bf6e477464705.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/avrdude/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/avrdude/avrdude-9999.ebuild X-VCS-Directories: dev-embedded/avrdude/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: ccb6e0fa1513ad869ff7935ab80bf6e477464705 X-VCS-Branch: master Date: Thu, 7 Oct 2021 18:54:17 +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: 10d93b80-3564-485b-afd6-ae705113e674 X-Archives-Hash: 7df482c06673c32c30fe4355811a0bbd commit: ccb6e0fa1513ad869ff7935ab80bf6e477464705 Author: Jakov Smolić gentoo org> AuthorDate: Thu Oct 7 18:48:40 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu Oct 7 18:54:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccb6e0fa dev-embedded/avrdude: drop 9999 - Live ebuild hasn't been updated in years, it doesn't make much sense to keep it around any longer Signed-off-by: Jakov Smolić gentoo.org> dev-embedded/avrdude/avrdude-9999.ebuild | 73 -------------------------------- 1 file changed, 73 deletions(-) diff --git a/dev-embedded/avrdude/avrdude-9999.ebuild b/dev-embedded/avrdude/avrdude-9999.ebuild deleted file mode 100644 index 22e68dc39da..00000000000 --- a/dev-embedded/avrdude/avrdude-9999.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools subversion toolchain-funcs - -DESCRIPTION="AVR Downloader/UploaDEr" -HOMEPAGE="https://savannah.nongnu.org/projects/avrdude" -ESVN_REPO_URI="svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude" -MY_DOC_PV=6.3 -SRC_URI=" - doc? ( - mirror://nongnu/${PN}/${PN}-doc-${MY_DOC_PV}.tar.gz - mirror://nongnu/${PN}/${PN}-doc-${MY_DOC_PV}.pdf - )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -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_unpack() { - default - subversion_src_unpack -} - -src_prepare() { - default - - # let the build system re-generate these, bug #120194 - rm -f lexer.c config_gram.c config_gram.h || die - - eautoreconf -} - -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-${MY_DOC_PV}.pdf" avrdude.pdf - dodoc -r "${WORKDIR}/avrdude-html/" - - dodoc -r atmel-docs - fi - - find "${ED}" -name '*.la' -delete || die -}