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 BD1A61382C5 for ; Fri, 26 Jan 2018 00:08:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F225E08DB; Fri, 26 Jan 2018 00:08:55 +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 E5C3DE08DB for ; Fri, 26 Jan 2018 00:08:54 +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 E35A9335C2E for ; Fri, 26 Jan 2018 00:08:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAF541CC for ; Fri, 26 Jan 2018 00:08:52 +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: <1516925318.db0903f0b1da28cf331e9809e7db2731b466cb92.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pysmssend/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/pysmssend/pysmssend-1.48-r1.ebuild X-VCS-Directories: app-misc/pysmssend/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: db0903f0b1da28cf331e9809e7db2731b466cb92 X-VCS-Branch: master Date: Fri, 26 Jan 2018 00:08:52 +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: 9e1de0c6-66e3-4304-ae46-5a4fe676dc4e X-Archives-Hash: 2eb25a667d51a4928b66bdb881507ea5 commit: db0903f0b1da28cf331e9809e7db2731b466cb92 Author: Mikle Kolyada gentoo org> AuthorDate: Fri Jan 26 00:08:38 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Fri Jan 26 00:08:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db0903f0 app-misc/pysmssend: Drop old Closes: https://bugs.gentoo.org/645632 Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-misc/pysmssend/pysmssend-1.48-r1.ebuild | 48 ----------------------------- 1 file changed, 48 deletions(-) diff --git a/app-misc/pysmssend/pysmssend-1.48-r1.ebuild b/app-misc/pysmssend/pysmssend-1.48-r1.ebuild deleted file mode 100644 index aa7d392f382..00000000000 --- a/app-misc/pysmssend/pysmssend-1.48-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 eutils - -DESCRIPTION="Python Application for sending sms over multiple ISPs" -HOMEPAGE="http://pysmssend.silverarrow.org/" -SRC_URI="http://pysmssend.silverarrow.org/files/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="qt4" - -DEPEND=">dev-python/mechanize-0.1.7b[${PYTHON_USEDEP}] - qt4? ( dev-python/PyQt4[X,${PYTHON_USEDEP}] )" -RDEPEND="${DEPEND}" - -S=${WORKDIR} - -python_install() { - distutils-r1_python_install - - python_doscript pysmssendcmd - if use qt4; then - python_doscript pysmssend - else - ln -s pysmssendcmd "${D}$(python_get_scriptdir)"/pysmssend || die - fi -} - -src_install() { - distutils-r1_src_install - if use qt4; then - insinto /usr/share/${PN}/Icons - doins Icons/* - doicon Icons/pysmssend.png - make_desktop_entry pysmssend pySMSsend pysmssend \ - "Applications;Network" - else - dosym pysmssendcmd /usr/bin/pysmssend - fi - dodoc README AUTHORS TODO -}