Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pysmssend/
Date: Wed, 28 Feb 2018 22:21:25
Message-Id: 1519856456.b864980b452a8521c48bec82fe0db637b905b547.asturm@gentoo
1 commit: b864980b452a8521c48bec82fe0db637b905b547
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 28 21:50:34 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 28 22:20:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b864980b
7
8 app-misc/pysmssend: Drop live ebuild
9
10 Outdated, no more development.
11
12 Package-Manager: Portage-2.3.24, Repoman-2.3.6
13
14 app-misc/pysmssend/pysmssend-9999.ebuild | 59 --------------------------------
15 1 file changed, 59 deletions(-)
16
17 diff --git a/app-misc/pysmssend/pysmssend-9999.ebuild b/app-misc/pysmssend/pysmssend-9999.ebuild
18 deleted file mode 100644
19 index fcdaece171c..00000000000
20 --- a/app-misc/pysmssend/pysmssend-9999.ebuild
21 +++ /dev/null
22 @@ -1,59 +0,0 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=5
27 -
28 -PYTHON_COMPAT=( python2_7 )
29 -EGIT_REPO_URI="https://github.com/hwoarang/${PN}.git"
30 -
31 -inherit distutils-r1 eutils git-r3
32 -
33 -DESCRIPTION="Python Application for sending sms over multiple ISPs"
34 -HOMEPAGE="http://pysmssend.silverarrow.org/"
35 -
36 -LICENSE="GPL-3"
37 -SLOT="0"
38 -KEYWORDS=""
39 -IUSE="qt4"
40 -
41 -DEPEND=">=dev-python/mechanize-0.1.9[${PYTHON_USEDEP}]
42 - qt4? ( >=dev-python/PyQt4-4.3[X,${PYTHON_USEDEP}] )"
43 -RDEPEND="${DEPEND}"
44 -
45 -python_install() {
46 - distutils-r1_python_install
47 -
48 - python_doscript pysmssendcmd
49 - if use qt4; then
50 - python_doscript pysmssend
51 - else
52 - ln -s pysmssendcmd "${D}$(python_get_scriptdir)"/pysmssend || die
53 - fi
54 -}
55 -
56 -src_install() {
57 - distutils-r1_src_install
58 - if use qt4; then
59 - insinto /usr/share/${PN}/Icons
60 - doins Icons/*
61 - doicon Icons/pysmssend.png
62 - domenu ${PN}.desktop
63 - else
64 - dosym pysmssendcmd /usr/bin/pysmssend
65 - fi
66 - dodoc README AUTHORS TODO
67 -}
68 -
69 -pkg_postinst() {
70 - elog "${PN} can use dev-python/python-gnupg"
71 - elog "for keeping your account data encrypted"
72 - elog "and secured. If you want to use it,"
73 - elog "first install dev-python/python-gnupg using"
74 - elog "emerge -av dev-python/python/gnupg"
75 - elog "and then edit your ~/.pysmssend/config"
76 - elog "file and set:"
77 - elog
78 - elog "pysmssend_gpg_support=1"
79 - elog "pysmssend_gpg_key=<your_gpg_key_id>"
80 - elog
81 -}