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 272D5138330 for ; Sat, 26 May 2018 10:27:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2475AE087E; Sat, 26 May 2018 10:27:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F0D43E087E for ; Sat, 26 May 2018 10:26:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84CF4335C9F for ; Sat, 26 May 2018 10:26:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EECDE2AA for ; Sat, 26 May 2018 10:26:55 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1527330410.2a5e49f5c45ee940ed6801c4d46feb5b2130d0b4.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pcmciautils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/pcmciautils/pcmciautils-018_p8.ebuild X-VCS-Directories: sys-apps/pcmciautils/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 2a5e49f5c45ee940ed6801c4d46feb5b2130d0b4 X-VCS-Branch: master Date: Sat, 26 May 2018 10:26:55 +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-Archives-Salt: ae3e714c-dae0-46e1-b60a-48a53dd54204 X-Archives-Hash: c7ac210ae2dd5536e108801b289c9512 commit: 2a5e49f5c45ee940ed6801c4d46feb5b2130d0b4 Author: Mikle Kolyada gentoo org> AuthorDate: Sat May 26 10:26:39 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat May 26 10:26:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a5e49f5 sys-apps/pcmciautils: Drop old Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-apps/pcmciautils/pcmciautils-018_p8.ebuild | 72 -------------------------- 1 file changed, 72 deletions(-) diff --git a/sys-apps/pcmciautils/pcmciautils-018_p8.ebuild b/sys-apps/pcmciautils/pcmciautils-018_p8.ebuild deleted file mode 100644 index ccfdd306b05..00000000000 --- a/sys-apps/pcmciautils/pcmciautils-018_p8.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit eutils flag-o-matic linux-info toolchain-funcs udev - -DEB_REV=${PV#*_p} -MY_PV=${PV%_p*} - -DESCRIPTION="PCMCIA userspace utilities for Linux" -HOMEPAGE="https://packages.qa.debian.org/pcmciautils" -SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${MY_PV}.orig.tar.gz - mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${MY_PV}-${DEB_REV}.debian.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm ppc sh x86" -IUSE="debug staticsocket" - -RDEPEND="virtual/modutils" -DEPEND="${RDEPEND} - virtual/yacc - sys-devel/flex" - -S=${WORKDIR}/${PN}-${MY_PV} - -pkg_setup() { - CONFIG_CHECK="~PCMCIA" - linux-info_pkg_setup - - kernel_is lt 2 6 32 && ewarn "${P} requires at least kernel 2.6.32." - - mypcmciaopts=( - STARTUP=$(usex staticsocket true false) - exec_prefix=/usr - UDEV=true - DEBUG=false - STATIC=false - V=true - udevdir="$(get_udevdir)" - CC="$(tc-getCC)" - LD="$(tc-getCC)" - AR="$(tc-getAR)" - STRIP=true - RANLIB="$(tc-getRANLIB)" - OPTIMIZATION="${CFLAGS} ${CPPFLAGS}" - DESTDIR="${D}" - ) - - use debug && append-cppflags -DDEBUG -} - -src_prepare() { - epatch \ - "${WORKDIR}"/debian/patches/no-modprobe-rules.patch \ - "${WORKDIR}"/debian/patches/remove-libsysfs-dep.patch - - sed -i \ - -e '/CFLAGS/s:-fomit-frame-pointer::' \ - -e '/dir/s:sbin:bin:g' \ - Makefile || die -} - -src_compile() { - emake "${mypcmciaopts[@]}" -} - -src_install() { - emake "${mypcmciaopts[@]}" install - - dodoc doc/*.txt -}