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 368141382C5 for ; Sun, 25 Feb 2018 20:36:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C955E082D; Sun, 25 Feb 2018 20:36:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 18AD8E082D for ; Sun, 25 Feb 2018 20:36:24 +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 BB915335C0A for ; Sun, 25 Feb 2018 20:36:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 360C521C for ; Sun, 25 Feb 2018 20:36:21 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1519590693.23769019326f5c6c53c5bce306a95bf420e10da9.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/mwavem/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/mwavem/mwavem-2.0-r1.ebuild X-VCS-Directories: net-dialup/mwavem/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 23769019326f5c6c53c5bce306a95bf420e10da9 X-VCS-Branch: master Date: Sun, 25 Feb 2018 20:36:21 +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: 44c0fdca-9616-421f-a146-64698b99b98c X-Archives-Hash: cd865fe821d907cc639cd1eef4150948 commit: 23769019326f5c6c53c5bce306a95bf420e10da9 Author: Pacho Ramos gentoo org> AuthorDate: Sun Feb 25 20:31:33 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Feb 25 20:31:33 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23769019 net-dialup/mwavem: Drop old Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-dialup/mwavem/mwavem-2.0-r1.ebuild | 63 ---------------------------------- 1 file changed, 63 deletions(-) diff --git a/net-dialup/mwavem/mwavem-2.0-r1.ebuild b/net-dialup/mwavem/mwavem-2.0-r1.ebuild deleted file mode 100644 index 1ff1d46784f..00000000000 --- a/net-dialup/mwavem/mwavem-2.0-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -AT_M4DIR="m4" - -inherit autotools eutils - -DESCRIPTION="User level application for IBM Mwave modem" -HOMEPAGE="http://oss.software.ibm.com/acpmodem/" -SRC_URI="ftp://www-126.ibm.com/pub/acpmodem/${PV}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 x86" -IUSE="" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-gentoo.patch \ - "${FILESDIR}"/${P}-glibc-2.10.patch - eautoreconf -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - dosbin "${FILESDIR}/mwave-dev-handler" - - insinto /etc/devfs.d - newins "${FILESDIR}/mwave.devfs" mwave - - insinto /etc/modprobe.d - newins "${FILESDIR}/mwave.modules" mwave.conf - - dodoc AUTHORS ChangeLog FAQ NEWS README README.devfs THANKS - docinto doc - dodoc doc/mwave.sgml doc/mwave.txt - dohtml doc/mwave.html -} - -pkg_postinst() { - # Below is to get /etc/modules.d/mwave loaded into /etc/modules.conf - if [ "$ROOT" = "/" ]; then - [ -x /sbin/update-modules ] && /sbin/update-modules || /sbin/modules-update - fi - - if [ -e "${ROOT}/dev/.devfsd" ]; then - # device node is created by devfs - ebegin "Restarting devfsd to reread devfs rules" - killall -HUP devfsd - eend $? - elif [ -e "${ROOT}/dev/.udev" ]; then - #the device should be created by udev - ebegin "Restarting udev to reread udev rules" - udevadm control --reload-rules - eend $? - else - [ ! -d "${ROOT}/dev/modem" ] && mkdir --mode=0755 "${ROOT}/dev/modems" - mknod --mode=0660 "${ROOT}/dev/modems/mwave" c 10 219 - fi -}