Gentoo Archives: gentoo-commits

From: "Amadeusz Piotr Żołnowski" <aidecoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/alot/
Date: Mon, 29 May 2017 11:50:22
Message-Id: 1496058554.a2c72eb636a6ff0370dd206573203876e6f54f27.aidecoe@gentoo
1 commit: a2c72eb636a6ff0370dd206573203876e6f54f27
2 Author: Amadeusz Żołnowski <aidecoe <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 29 11:47:25 2017 +0000
4 Commit: Amadeusz Piotr Żołnowski <aidecoe <AT> gentoo <DOT> org>
5 CommitDate: Mon May 29 11:49:14 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2c72eb6
7
8 mail-client/alot: Remove oldest version
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 mail-client/alot/Manifest | 1 -
13 mail-client/alot/alot-0.3.6.ebuild | 84 --------------------------------------
14 2 files changed, 85 deletions(-)
15
16 diff --git a/mail-client/alot/Manifest b/mail-client/alot/Manifest
17 index f9151ecfa95..388e3b7cca1 100644
18 --- a/mail-client/alot/Manifest
19 +++ b/mail-client/alot/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST alot-0.3.6.tar.gz 1492278 SHA256 b8e6092f18e503a528e934231c448db0e03d00e11d844192ba7eeb483838fee7 SHA512 30037ca1d2c169dda6c1660a24dadee12c6b5858d733ec7cd78e49d633850eecb763852c16565340596e32a6831ff8c36764d3f812de7f7947584defe05322b4 WHIRLPOOL cd4aab9dd84a441b92f5d4c62c783d58d8c4fafca614bf8bf462c1b3f0ffb4266e083380712b16f9469a0b418af1672625a21a6ae1f82f6623c6c22e005be6e9
22 DIST alot-0.3.7.tar.gz 1475759 SHA256 fe281f6b5fbfcd371a1810c8f59084e8cbc3f69068269e3f787adb1df6f977b5 SHA512 a0b7e5a7b77f8cdee38c273eec2822bee2e7c409ab4b8803817a49d679dd53ff29750ba7f8a9214368cc7b0b17bd76a40b0263b4701b2ef695c7669316b1b116 WHIRLPOOL 3c37a037fc5543ff569f6a5364302462f71f5599c14d17661707cd4beb0e2a8597098dd4f4a42aec27793ace7095bba4eb80c35ed5fd8e470f6b7b9dbbecc46e
23 DIST alot-0.5.1.tar.gz 1490645 SHA256 e8404db01bfe41030f7df9f559ac6c61edc473bfc1ae86bcb58c4018703352c7 SHA512 0194f163724fc5485aa89fe5354d16bdfdd3f539f6f3cfdb715e61835f3e632b8ac0daed44983a95c20eb0244c44c1d7801d262a5fd16ad63c3efd046e05b787 WHIRLPOOL 2539956ab4f286c0db27837f5897f3dd8868c07422aca2845df76da8d0c2aa3b5915ec8de0b35d78f8f296406adb6d31c4d47b00c2c74a7453630e936d4aee98
24
25 diff --git a/mail-client/alot/alot-0.3.6.ebuild b/mail-client/alot/alot-0.3.6.ebuild
26 deleted file mode 100644
27 index 3e6b4c4ad5c..00000000000
28 --- a/mail-client/alot/alot-0.3.6.ebuild
29 +++ /dev/null
30 @@ -1,84 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python2_7 )
37 -
38 -inherit distutils-r1 vcs-snapshot
39 -
40 -DESCRIPTION="Experimental terminal UI for net-mail/notmuch written in Python"
41 -HOMEPAGE="https://github.com/pazz/alot"
42 -SRC_URI="${HOMEPAGE}/tarball/${PV} -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="doc"
48 -
49 -DEPEND="
50 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
51 - "
52 -RDEPEND="
53 - >=dev-python/configobj-4.6.0[${PYTHON_USEDEP}]
54 - dev-python/pygpgme[${PYTHON_USEDEP}]
55 - >=dev-python/twisted-core-10.2.0
56 - >=dev-python/urwid-1.1.0[${PYTHON_USEDEP}]
57 - net-mail/mailbase
58 - >=net-mail/notmuch-0.13[crypt,python]
59 - sys-apps/file[python]
60 - "
61 -
62 -ALOT_UPDATE=""
63 -
64 -pkg_setup() {
65 - if has_version "<${CATEGORY}/${PN}-0.3.2"; then
66 - ALOT_UPDATE="yes"
67 - fi
68 -}
69 -
70 -src_prepare() {
71 - find "${S}" -name '*.py' -print0 | xargs -0 -- sed \
72 - -e '1i# -*- coding: utf-8 -*-' -i || die
73 -
74 - distutils-r1_src_prepare
75 -
76 - local md
77 - for md in *.md; do
78 - mv "${md}" "${md%.md}"
79 - done
80 -}
81 -
82 -src_compile() {
83 - distutils-r1_src_compile
84 -
85 - if use doc; then
86 - pushd docs || die
87 - emake html
88 - popd || die
89 - fi
90 -}
91 -
92 -src_install() {
93 - distutils-r1_src_install
94 -
95 - dodir /usr/share/alot
96 - insinto /usr/share/alot
97 - doins -r extra
98 -
99 - if use doc; then
100 - dohtml -r docs/build/html/*
101 - fi
102 -}
103 -
104 -pkg_postinst() {
105 - if [[ ${ALOT_UPDATE} = yes ]]; then
106 - ewarn "The syntax of theme-files and custom tags-sections of the config"
107 - ewarn "has been changed. You have to revise your config. There are"
108 - ewarn "converter scripts in /usr/share/alot/extra to help you out with"
109 - ewarn "this:"
110 - ewarn ""
111 - ewarn " * tagsections_convert.py for your ~/.config/alot/config"
112 - ewarn " * theme_convert.py to update your custom theme files"
113 - fi
114 -}