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 572F3138E4A for ; Sun, 16 Oct 2016 10:05:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E5C6E0BC9; Sun, 16 Oct 2016 10:04:46 +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 305C3E0BC9 for ; Sun, 16 Oct 2016 10:04:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2BBA43414A6 for ; Sun, 16 Oct 2016 10:04:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 086DA248E for ; Sun, 16 Oct 2016 10:04:37 +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: <1476612172.24f9f1533826c860b17df471092dca7b8d183b9f.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/pyzy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/pyzy/pyzy-0.1.0.ebuild X-VCS-Directories: app-i18n/pyzy/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 24f9f1533826c860b17df471092dca7b8d183b9f X-VCS-Branch: master Date: Sun, 16 Oct 2016 10:04:37 +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: 0cd83f67-956b-48f7-8f46-33d89c3789a3 X-Archives-Hash: dff19947cfa72e997283579d2d7d0b05 commit: 24f9f1533826c860b17df471092dca7b8d183b9f Author: Pacho Ramos gentoo org> AuthorDate: Sun Oct 16 10:02:52 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Oct 16 10:02:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24f9f153 app-i18n/pyzy: Drop old Package-Manager: portage-2.3.1 app-i18n/pyzy/pyzy-0.1.0.ebuild | 51 ----------------------------------------- 1 file changed, 51 deletions(-) diff --git a/app-i18n/pyzy/pyzy-0.1.0.ebuild b/app-i18n/pyzy/pyzy-0.1.0.ebuild deleted file mode 100644 index daf9fdc..00000000 --- a/app-i18n/pyzy/pyzy-0.1.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils python autotools - -PY_DATABASE=${PN}-database-1.0.0 -DESCRIPTION="The Chinese PinYin and Bopomofo conversion library" -HOMEPAGE="https://github.com/pyzy/pyzy" -SRC_URI="https://pyzy.googlecode.com/files/${P}.tar.gz - https://pyzy.googlecode.com/files/${PY_DATABASE}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="boost doc opencc test" - -RDEPEND="dev-libs/glib:2 - dev-db/sqlite:3 - sys-apps/util-linux - boost? ( dev-libs/boost ) - opencc? ( app-i18n/opencc )" - -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -# Currently it fails to build test code -RESTRICT="test" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-dont-download-dictionary-file.patch - mv ../db ./data/db/open-phrase/ || die - python_convert_shebangs 2 "${S}"/data/db/android/create_db.py - eautoreconf -} - -src_configure() { - econf \ - --enable-db-open-phrase \ - --enable-db-android \ - $(use_enable boost) \ - $(use_enable opencc) \ - $(use_enable test tests) -} - -src_install() { - default - use doc && dohtml -r docs/html/* -}