public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/iverilog/
Date: Sun, 28 Feb 2021 17:39:11 +0000 (UTC)	[thread overview]
Message-ID: <1614533947.123a8fca20c9ad42fef0d58e2312bb7e65caab55.sam@gentoo> (raw)

commit:     123a8fca20c9ad42fef0d58e2312bb7e65caab55
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 28 17:36:55 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 17:39:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=123a8fca

sci-electronics/iverilog: cleanup old where possible

Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-electronics/iverilog/iverilog-10.3-r1.ebuild | 75 ------------------------
 sci-electronics/iverilog/iverilog-10.3-r2.ebuild | 71 ----------------------
 2 files changed, 146 deletions(-)

diff --git a/sci-electronics/iverilog/iverilog-10.3-r1.ebuild b/sci-electronics/iverilog/iverilog-10.3-r1.ebuild
deleted file mode 100644
index 8a107b99189..00000000000
--- a/sci-electronics/iverilog/iverilog-10.3-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-GITHUB_PV=$(ver_rs 1- '_')
-
-DESCRIPTION="A Verilog simulation and synthesis tool"
-HOMEPAGE="
-	http://iverilog.icarus.com
-	https://github.com/steveicarus/iverilog
-"
-
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/steveicarus/${PN}.git"
-else
-	SRC_URI="https://github.com/steveicarus/${PN}/archive/v${GITHUB_PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-	S="${WORKDIR}/${PN}-${GITHUB_PV}"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="examples"
-
-# If you are building from git, you will also need gperf to generate
-# the configure scripts.
-RDEPEND="
-	sys-libs/readline:=
-	sys-libs/zlib
-"
-
-DEPEND="
-	dev-util/gperf
-	sys-devel/bison
-	sys-devel/flex
-	${RDEPEND}
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-10.3-file-missing.patch #705412
-	"${FILESDIR}"/${PN}-10.3-fno-common.patch #706366
-)
-
-src_prepare() {
-	default
-
-	# From upstreams autoconf.sh, to make it utilize the autotools eclass
-	# Here translate the autoconf.sh, equivalent to the following code
-	# > sh autoconf.sh
-
-	# Autoconf in root ...
-	eautoconf --force
-	# Precompiling lexor_keyword.gperf
-	gperf -o -i 7 -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die
-	# Precompiling vhdlpp/lexor_keyword.gperf
-	cd vhdlpp || die
-	gperf -o -i 7 --ignore-case -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die
-}
-
-src_install() {
-	local DOCS=( *.txt )
-	# Default build fails with parallel jobs,
-	# https://github.com/steveicarus/iverilog/pull/294
-	emake installdirs DESTDIR="${D}"
-	default
-
-	if use examples; then
-		dodoc -r examples
-		docompress -x /usr/share/doc/${PF}/examples
-	fi
-}

diff --git a/sci-electronics/iverilog/iverilog-10.3-r2.ebuild b/sci-electronics/iverilog/iverilog-10.3-r2.ebuild
deleted file mode 100644
index be0e7690095..00000000000
--- a/sci-electronics/iverilog/iverilog-10.3-r2.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-GITHUB_PV=$(ver_rs 1- '_')
-
-DESCRIPTION="A Verilog simulation and synthesis tool"
-HOMEPAGE="
-	http://iverilog.icarus.com
-	https://github.com/steveicarus/iverilog
-"
-
-if [[ ${PV} == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/steveicarus/${PN}.git"
-else
-	SRC_URI="https://github.com/steveicarus/${PN}/archive/v${GITHUB_PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
-	S="${WORKDIR}/${PN}-${GITHUB_PV}"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-
-DEPEND="
-	sys-libs/readline:=
-	sys-libs/zlib
-"
-RDEPEND="${DEPEND}"
-BDEPEND="dev-util/gperf
-	sys-devel/bison
-	sys-devel/flex
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-10.3-file-missing.patch #705412
-	"${FILESDIR}"/${PN}-10.3-fno-common.patch #706366
-	"${FILESDIR}"/${PN}-10.3-gen-bison-header.patch #734760
-)
-
-src_prepare() {
-	default
-
-	# From upstreams autoconf.sh, to make it utilize the autotools eclass
-	# Here translate the autoconf.sh, equivalent to the following code
-	# > sh autoconf.sh
-
-	# Autoconf in root ...
-	eautoconf
-
-	# Precompiling lexor_keyword.gperf
-	gperf -o -i 7 -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die
-	# Precompiling vhdlpp/lexor_keyword.gperf
-	cd vhdlpp || die
-	gperf -o -i 7 --ignore-case -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die
-}
-
-src_install() {
-	local DOCS=( *.txt )
-
-	# Default build fails with parallel jobs,
-	# https://github.com/steveicarus/iverilog/pull/294
-	emake installdirs DESTDIR="${ED}"
-	default
-
-	dodoc -r examples
-	docompress -x /usr/share/doc/${PF}/examples
-}


             reply	other threads:[~2021-02-28 17:39 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-28 17:39 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-12-09 17:01 [gentoo-commits] repo/gentoo:master commit in: sci-electronics/iverilog/ Arthur Zamarin
2023-06-25  4:48 Sam James
2023-06-25  3:13 Sam James
2023-04-10  7:37 Joonas Niilola
2023-04-10  7:37 Joonas Niilola
2021-02-28 21:37 Sam James
2021-02-28 21:37 Sam James
2021-02-28 17:39 Sam James
2021-02-27 17:08 Sam James
2021-02-25 13:54 Agostino Sarubbo
2020-10-17 16:41 Joonas Niilola
2020-10-17 16:41 Joonas Niilola
2020-10-17 16:41 Joonas Niilola
2020-10-11  9:30 Joonas Niilola
2020-10-11  9:30 Joonas Niilola
2020-10-11  9:30 Joonas Niilola
2020-09-14 18:36 Sam James
2020-09-14 18:26 Sam James
2020-09-14 18:26 Sam James
2020-06-29  6:24 Agostino Sarubbo
2020-06-28 20:41 Agostino Sarubbo
2020-06-18 12:08 Joonas Niilola
2020-06-18 12:08 Joonas Niilola
2020-03-22 10:37 Agostino Sarubbo
2020-03-22  8:51 Mikle Kolyada
2020-02-18 10:07 Sergei Trofimovich
2020-02-18 10:07 Sergei Trofimovich
2020-01-07  6:20 Joonas Niilola
2020-01-07  6:20 Joonas Niilola
2020-01-07  6:20 Joonas Niilola
2020-01-07  6:20 Joonas Niilola
2020-01-05 10:10 Joonas Niilola
2018-01-26 21:36 David Seifert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1614533947.123a8fca20c9ad42fef0d58e2312bb7e65caab55.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox