diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-07-29 21:02:36 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-07-29 21:02:36 +0200 |
commit | f392d896f0940fe9f400afc46c10e9bfb3295608 (patch) | |
tree | 5774c071c7d63bd220eb7de063fce5b43a07ec43 /sys-apps/cpuid | |
parent | sys-apps/cpuid: x86 stable (diff) | |
download | gentoo-f392d896f0940fe9f400afc46c10e9bfb3295608.tar.gz gentoo-f392d896f0940fe9f400afc46c10e9bfb3295608.tar.bz2 gentoo-f392d896f0940fe9f400afc46c10e9bfb3295608.zip |
sys-apps/cpuid: drop 20220224
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-apps/cpuid')
-rw-r--r-- | sys-apps/cpuid/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/cpuid/cpuid-20220224.ebuild | 35 | ||||
-rw-r--r-- | sys-apps/cpuid/files/cpuid-20200203-makefile.patch | 37 |
3 files changed, 0 insertions, 73 deletions
diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest index 519d498c327a..86fd2a311a99 100644 --- a/sys-apps/cpuid/Manifest +++ b/sys-apps/cpuid/Manifest @@ -1,2 +1 @@ -DIST cpuid-20220224.src.tar.gz 130706 BLAKE2B 78e0d8296ffafa6eb5a668561bb5c1834c8cffd020f0c052438381f72cddbfe8e85c3e4d662c6aff5224a0b147cd5e20cbce2240f791f2c857c4f584c87b4359 SHA512 7cf41d2429d442b4dfd5d369e394c11916352e16fc56852ea4af71945192903482bc45c38367ff5ae3f8d386ffc65cc61a9b0bec4594589a057557daf54d8562 DIST cpuid-20220620.src.tar.gz 134487 BLAKE2B 37beeeef5bbeed47d762f093a568e18ac06b32b4c8c4d763656c5310c78b949c60aaf4e874b15485af15be1e31c389692a0ab277a95a0dcb0b66a7dbece50a52 SHA512 e06db43fb12efa1d112267993754965b8a2b07c914766a46a0fe6fdcf023606cfb132eac575726ad9ed7d0e6fc53d728a6d3d3d7abf2f484f002825c791da7b9 diff --git a/sys-apps/cpuid/cpuid-20220224.ebuild b/sys-apps/cpuid/cpuid-20220224.ebuild deleted file mode 100644 index d215e1baa0cf..000000000000 --- a/sys-apps/cpuid/cpuid-20220224.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Linux tool to dump x86 CPUID information about the CPUs" -HOMEPAGE="http://www.etallen.com/cpuid.html" -SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="-* amd64 x86" - -BDEPEND=" - app-arch/gzip - dev-lang/perl -" - -DOCS=( "ChangeLog" "FUTURE" ) - -PATCHES=( "${FILESDIR}/${PN}-20200203-makefile.patch" ) - -src_prepare() { - default - - tc-export CC -} - -src_install() { - emake BUILDROOT="${ED}" install - - einstalldocs -} diff --git a/sys-apps/cpuid/files/cpuid-20200203-makefile.patch b/sys-apps/cpuid/files/cpuid-20200203-makefile.patch deleted file mode 100644 index 9cfad5ef594d..000000000000 --- a/sys-apps/cpuid/files/cpuid-20200203-makefile.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -1,11 +1,11 @@ --CFLAGS+=-g -+CFLAGS+= - CPPFLAGS?= - LDFLAGS?= - ifneq (,$(findstring arch=i386,$(CFLAGS))) - CISA=-m32 - endif - CFL=$(CPPFLAGS) $(CFLAGS) $(CISA) -Wall -W -Wshadow -Wcast-align -Wredundant-decls -Wbad-function-cast -Wcast-qual -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wimplicit-fallthrough -Wunused-parameter -D_FILE_OFFSET_BITS=64 -DVERSION=$(VERSION) --INSTALL_STRIP=-s -+INSTALL_STRIP= - - PACKAGE=cpuid - VERSION=20200203 -@@ -40,7 +40,7 @@ - - BUILDROOT= - --default: $(PROG) $(PROG).man.gz cpuinfo2cpuid cpuinfo2cpuid.man.gz -+default: $(PROG) cpuinfo2cpuid - - $(PROG): cpuid.c Makefile - $(CC) $(CFL) $(LDFLAGS) -o $@ cpuid.c -@@ -56,9 +56,9 @@ - - install: $(PROG) $(PROG).man.gz cpuinfo2cpuid cpuinfo2cpuid.man.gz - install -D $(INSTALL_STRIP) -m 755 $(PROG) $(BUILDROOT)/usr/bin/$(PROG) -- install -D -m 444 $(PROG).man.gz $(BUILDROOT)/usr/share/man/man1/$(PROG).1.gz -+ install -D -m 444 $(PROG).man $(BUILDROOT)/usr/share/man/man1/$(PROG).1 - install -D -m 755 cpuinfo2cpuid $(BUILDROOT)/usr/bin/cpuinfo2cpuid -- install -D -m 444 cpuinfo2cpuid.man.gz $(BUILDROOT)/usr/share/man/man1/cpuinfo2cpuid.1.gz -+ install -D -m 444 cpuinfo2cpuid.man $(BUILDROOT)/usr/share/man/man1/cpuinfo2cpuid.1 - - clean: - rm -f $(PROG) $(PROG).i386 $(PROG).x86_64 |