diff options
author | 2021-05-13 22:24:15 +0200 | |
---|---|---|
committer | 2021-05-13 22:24:15 +0200 | |
commit | 8cc6e83dbb02921c7d5f1997f07ce9d7d37a351c (patch) | |
tree | 96e9561239aa2554a4523908915ad33c8e4e4cec /sys-devel/gnuconfig/gnuconfig-20200621.ebuild | |
parent | sys-apps/kexec-tools: Remove old 2.0.20-r3 (diff) | |
download | gentoo-8cc6e83dbb02921c7d5f1997f07ce9d7d37a351c.tar.gz gentoo-8cc6e83dbb02921c7d5f1997f07ce9d7d37a351c.tar.bz2 gentoo-8cc6e83dbb02921c7d5f1997f07ce9d7d37a351c.zip |
sys-devel/gnuconfig: Remove old 20200621
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sys-devel/gnuconfig/gnuconfig-20200621.ebuild')
-rw-r--r-- | sys-devel/gnuconfig/gnuconfig-20200621.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/sys-devel/gnuconfig/gnuconfig-20200621.ebuild b/sys-devel/gnuconfig/gnuconfig-20200621.ebuild deleted file mode 100644 index 5dbe1179e09e..000000000000 --- a/sys-devel/gnuconfig/gnuconfig-20200621.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -if [[ ${PV} == "99999999" ]] ; then - EGIT_REPO_URI="https://git.savannah.gnu.org/r/config.git" - - inherit git-r3 -else - SRC_URI="https://dev.gentoo.org/~whissi/dist/${PN}/${P}.tar.bz2" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" - S="${WORKDIR}" -fi - -DESCRIPTION="Updated config.sub and config.guess file from GNU" -HOMEPAGE="https://savannah.gnu.org/projects/config" - -LICENSE="GPL-3+-with-autoconf-exception" -SLOT="0" -IUSE="" - -maint_pkg_create() { - cd "${S}" - - local ver=$(gawk '{ gsub(/-/, "", $1); print $1; exit }' ChangeLog) - [[ ${#ver} != 8 ]] && die "invalid version '${ver}'" - - cp "${FILESDIR}"/${PV}/*.patch . || die - - local tar="${T}/gnuconfig-${ver}.tar.bz2" - tar -jcf "${tar}" ./* || die "creating tar failed" - einfo "Packaged tar now available:" - einfo "$(du -b "${tar}")" -} - -src_unpack() { - if [[ ${PV} == "99999999" ]] ; then - git-r3_src_unpack - maint_pkg_create - else - unpack ${A} - fi -} - -src_prepare() { - default - eapply "${S}"/*.patch - use elibc_uclibc && sed -i 's:linux-gnu:linux-uclibc:' testsuite/config-guess.data #180637 -} - -src_compile() { :;} - -src_test() { - emake check -} - -src_install() { - insinto /usr/share/${PN} - doins config.{sub,guess} - fperms +x /usr/share/${PN}/config.{sub,guess} - dodoc ChangeLog -} |