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 C4863138350 for ; Sun, 26 Apr 2020 14:57:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AD17E0957; Sun, 26 Apr 2020 14:57:44 +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 7F9C4E0957 for ; Sun, 26 Apr 2020 14:57:44 +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 60D8834F72D for ; Sun, 26 Apr 2020 14:57:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 215991EE for ; Sun, 26 Apr 2020 14:57:42 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1587913020.e8ce840a6baa86384a33db3ebad053b2bac3c498.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/networkmanager-pptp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/networkmanager-pptp/networkmanager-pptp-1.2.8-r1.ebuild X-VCS-Directories: net-vpn/networkmanager-pptp/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: e8ce840a6baa86384a33db3ebad053b2bac3c498 X-VCS-Branch: master Date: Sun, 26 Apr 2020 14:57:42 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 02753783-2a42-4977-8ef2-a2efbec4794c X-Archives-Hash: e2674e3ac8721dd3894b9ee1552d8c69 commit: e8ce840a6baa86384a33db3ebad053b2bac3c498 Author: Mart Raudsepp gentoo org> AuthorDate: Sun Apr 26 14:34:22 2020 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Sun Apr 26 14:57:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8ce840a net-vpn/networkmanager-pptp: remove old Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp gentoo.org> .../networkmanager-pptp-1.2.8-r1.ebuild | 53 ---------------------- 1 file changed, 53 deletions(-) diff --git a/net-vpn/networkmanager-pptp/networkmanager-pptp-1.2.8-r1.ebuild b/net-vpn/networkmanager-pptp/networkmanager-pptp-1.2.8-r1.ebuild deleted file mode 100644 index f1715f8f01a..00000000000 --- a/net-vpn/networkmanager-pptp/networkmanager-pptp-1.2.8-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -GNOME_ORG_MODULE="NetworkManager-${PN##*-}" - -inherit gnome2 - -DESCRIPTION="NetworkManager PPTP VPN plugin" -HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager/VPN" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="gtk" - -RDEPEND=" - >=net-misc/networkmanager-1.2.0:= - >=dev-libs/dbus-glib-0.74 - >=dev-libs/glib-2.32:2 - net-dialup/ppp:= - net-dialup/pptpclient - gtk? ( - >=app-crypt/libsecret-0.18 - =gnome-extra/nm-applet-1.2.0[gtk] - >=x11-libs/gtk+-3.4:3 - ) -" -# libxml2 required for glib-compile-resources -DEPEND="${RDEPEND} - sys-devel/gettext - dev-libs/libxml2:2 - dev-util/gdbus-codegen - dev-util/intltool - virtual/pkgconfig -" - -src_configure() { - local myconf - # Same hack as net-dialup/pptpd to get proper plugin dir for ppp, bug #519986 - local PPPD_VER=`best_version net-dialup/ppp` - PPPD_VER=${PPPD_VER#*/*-} #reduce it to ${PV}-${PR} - PPPD_VER=${PPPD_VER%%[_-]*} # main version without beta/pre/patch/revision - myconf="${myconf} --with-pppd-plugin-dir=/usr/$(get_libdir)/pppd/${PPPD_VER}" - - gnome2_src_configure \ - --disable-more-warnings \ - --disable-static \ - --with-dist-version=Gentoo \ - $(use_with gtk gnome) \ - ${myconf} -}