From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B5C8C1382D5 for ; Sun, 26 Jun 2016 17:26:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F7ABE0BE8; Sun, 26 Jun 2016 17:26:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B1504E0BE5 for ; Sun, 26 Jun 2016 17:26:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8EF26340C08 for ; Sun, 26 Jun 2016 17:26:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5273242D for ; Sun, 26 Jun 2016 17:26:26 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1466961974.f1f1fd5e778146b973aa7037f2b4bd8c9b50432e.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libgpod/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libgpod/libgpod-0.8.3.ebuild X-VCS-Directories: media-libs/libgpod/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: f1f1fd5e778146b973aa7037f2b4bd8c9b50432e X-VCS-Branch: master Date: Sun, 26 Jun 2016 17:26:26 +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: 08bebca9-40af-4eff-83e0-cf26e9cba14c X-Archives-Hash: 1274b1924e7264bdb872533c4b51c1b4 commit: f1f1fd5e778146b973aa7037f2b4bd8c9b50432e Author: Michael Palimaka gentoo org> AuthorDate: Sun Jun 26 17:23:58 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Jun 26 17:26:14 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f1fd5e media-libs/libgpod: remove old Package-Manager: portage-2.3.0 media-libs/libgpod/libgpod-0.8.3.ebuild | 73 --------------------------------- 1 file changed, 73 deletions(-) diff --git a/media-libs/libgpod/libgpod-0.8.3.ebuild b/media-libs/libgpod/libgpod-0.8.3.ebuild deleted file mode 100644 index 5b2a7f1..0000000 --- a/media-libs/libgpod/libgpod-0.8.3.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -# TODO: Use python-r1 instead and support Python 3.x? - -PYTHON_COMPAT=( python2_7 ) - -inherit eutils mono-env python-single-r1 udev - -DESCRIPTION="Shared library to access the contents of an iPod" -HOMEPAGE="http://www.gtkpod.org/libgpod/" -SRC_URI="mirror://sourceforge/gtkpod/${P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="+gtk python +udev ios mono static-libs" - -RDEPEND=">=app-pda/libplist-1.0:= - >=dev-db/sqlite-3 - >=dev-libs/glib-2.16:2 - dev-libs/libxml2 - sys-apps/sg3_utils - gtk? ( x11-libs/gdk-pixbuf:2 ) - ios? ( app-pda/libimobiledevice:= ) - python? ( - ${PYTHON_DEPS} - >=media-libs/mutagen-1.8[${PYTHON_USEDEP}] - >=dev-python/pygobject-2.8:2[${PYTHON_USEDEP}] - ) - udev? ( virtual/udev ) - mono? ( - >=dev-lang/mono-1.9.1 - >=dev-dotnet/gtk-sharp-2.12 - )" -DEPEND="${RDEPEND} - python? ( >=dev-lang/swig-1.3.24 ) - dev-libs/libxslt - dev-util/intltool - sys-devel/gettext - virtual/pkgconfig" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -DOCS="AUTHORS NEWS README* TROUBLESHOOTING" - -pkg_setup() { - use mono && mono-env_pkg_setup - use python && python-single-r1_pkg_setup -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_enable udev) \ - $(use_enable gtk gdk-pixbuf) \ - $(use_enable python pygobject) \ - --without-hal \ - $(use_with ios libimobiledevice) \ - --with-udev-dir="$(get_udevdir)" - --with-html-dir=/usr/share/doc/${PF}/html \ - $(use_with python) \ - $(use_with mono) -} - -src_install() { - default - rmdir "${ED}"/tmp - prune_libtool_files --all -}