Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/bleachbit/
Date: Fri, 06 Apr 2018 02:38:06
Message-Id: 1522982273.cf220eee7da2c4aee5e8fbe7c20addb4fa32e467.bman@gentoo
1 commit: cf220eee7da2c4aee5e8fbe7c20addb4fa32e467
2 Author: Christian Tietz <christian.tietz <AT> mailbox <DOT> org>
3 AuthorDate: Fri Apr 6 00:02:26 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 6 02:37:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf220eee
7
8 sys-apps/bleachbit: Cleanup old.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11 Closes: https://github.com/gentoo/gentoo/pull/7830
12
13 sys-apps/bleachbit/Manifest | 1 -
14 sys-apps/bleachbit/bleachbit-1.12.ebuild | 62 --------------------------------
15 2 files changed, 63 deletions(-)
16
17 diff --git a/sys-apps/bleachbit/Manifest b/sys-apps/bleachbit/Manifest
18 index bd5f5014eb5..43f85d60fbf 100644
19 --- a/sys-apps/bleachbit/Manifest
20 +++ b/sys-apps/bleachbit/Manifest
21 @@ -1,2 +1 @@
22 -DIST bleachbit-1.12.tar.bz2 396838 BLAKE2B 1784b5bc6602e5599b29ffbd0ad0f27f05ffe3aaab25756e3e07fff56c72517493b551063975c943a0e16efc2ecb30fdf69878577b8a5b27eccfdfb3bdd59c40 SHA512 b9c13a75b86eebbedaf928394714ac4d7847b8d53d345a4884acee68cd9c46ff1d5f4108479d7695109bad03c0fcdbb6f89e77d8794a60697fd5c6acdb34530c
23 DIST bleachbit-2.0.tar.gz 886357 BLAKE2B f63ded34d245df892b2c14683ceaae8b57e786a8ab3111e7f76d484c6d3db404996119ab4114c3ae025848936a784878b3f100cf2ca8737401a6daaaf74a077e SHA512 adf5c2f2382b2eaab0eb2b4a173b392c160af7974f223c74ae51a30423514a15b98f04194b9ccde209b5c067d8481f0f1ee28651896d3002fcfa3927d8db056b
24
25 diff --git a/sys-apps/bleachbit/bleachbit-1.12.ebuild b/sys-apps/bleachbit/bleachbit-1.12.ebuild
26 deleted file mode 100644
27 index 927359b5e59..00000000000
28 --- a/sys-apps/bleachbit/bleachbit-1.12.ebuild
29 +++ /dev/null
30 @@ -1,62 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PLOCALES="ar ast be bg bn bs ca cs da de el en_AU en_CA en_GB eo es et eu fa fi fo fr gl he hi hr hu hy ia id it ja ko ku ky lt lv
37 -ms my nb nds nl nn pl pt_BR pt ro ru se si sk sl sr sv ta te th tr ug uk uz vi zh_CN zh_TW"
38 -PYTHON_COMPAT=( python2_7 )
39 -PYTHON_REQ_USE="sqlite"
40 -
41 -inherit distutils-r1 eutils l10n
42 -
43 -DESCRIPTION="Clean junk to free disk space and to maintain privacy"
44 -HOMEPAGE="https://www.bleachbit.org"
45 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
46 -
47 -LICENSE="GPL-3"
48 -SLOT="0"
49 -KEYWORDS="amd64 x86"
50 -IUSE="+gtk nls"
51 -
52 -RDEPEND="
53 - dev-python/notify-python[$PYTHON_USEDEP]
54 - gtk? ( dev-python/pygtk:2[$PYTHON_USEDEP] )"
55 -
56 -DEPEND="${RDEPEND}
57 - nls? ( sys-devel/gettext )"
58 -
59 -DOCS=( README.md )
60 -
61 -python_prepare_all() {
62 - rem_locale() {
63 - rm "po/${1}.po" || die "removing of ${1}.po failed"
64 - }
65 -
66 - l10n_find_plocales_changes po "" ".po"
67 - l10n_for_each_disabled_locale_do rem_locale
68 -
69 - # choose correct Python implementation, bug #465254
70 - sed -i -e 's/python/$(PYTHON)/g' po/Makefile || die
71 -
72 - distutils-r1_python_prepare_all
73 -}
74 -
75 -python_compile_all() {
76 - use nls && emake -C po
77 -}
78 -
79 -python_install_all() {
80 - distutils-r1_python_install_all
81 - use nls && emake -C po DESTDIR="${D}" install
82 -
83 - # https://bugs.gentoo.org/388999
84 - insinto /usr/share/${PN}/cleaners
85 - doins cleaners/*.xml
86 -
87 - newbin ${PN}.py ${PN}
88 - python_replicate_script "${D}/usr/bin/${PN}"
89 -
90 - doicon ${PN}.png
91 - domenu ${PN}.desktop
92 -}