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: Tue, 02 Jun 2020 04:33:38
Message-Id: 1591072219.1651bbbc6a4f2446396d3c98baf73665546cab55.bman@gentoo
1 commit: 1651bbbc6a4f2446396d3c98baf73665546cab55
2 Author: Christian Tietz <christian.tietz <AT> mailbox <DOT> org>
3 AuthorDate: Sun May 31 22:49:53 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 2 04:30:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1651bbbc
7
8 sys-apps/bleachbit: Remove old
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Christian Tietz <christian.tietz <AT> mailbox.org>
12 Closes: https://github.com/gentoo/gentoo/pull/16038
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 sys-apps/bleachbit/Manifest | 1 -
16 sys-apps/bleachbit/bleachbit-3.0.ebuild | 59 ---------------------------------
17 2 files changed, 60 deletions(-)
18
19 diff --git a/sys-apps/bleachbit/Manifest b/sys-apps/bleachbit/Manifest
20 index e12f04e9bab..fff9dd54226 100644
21 --- a/sys-apps/bleachbit/Manifest
22 +++ b/sys-apps/bleachbit/Manifest
23 @@ -1,2 +1 @@
24 -DIST bleachbit-3.0.tar.bz2 562646 BLAKE2B 4acdd5469ac1b36ff149231ad0b1b2e4e85a54a81c24c7751ceeed569526b905c1cc6be5201c4fb6929eb48e0553f0b27016de2584ee2f702492cc3fe659c2f9 SHA512 0d61f0b183c0d453275913741020c54c2915be9df45be706203e2278b125f4a02c75865117a7a2d587a034caa9bf109b2f498a4d522cc103c3879cc4a5d4854d
25 DIST bleachbit-4.0.0.tar.bz2 599756 BLAKE2B 05a4dbf9e0b6bbcba528875a82e36eb9f91ae84c5bdc6f8f69063a54bd192332f5dd1d22ee5a737243eb5fb74cf0362eace1b50a73f7c1d0557a8cba146dea01 SHA512 ce120239b411c6e177af0e22a16b583ac3ae8903ba13579878942492e4e221355da28f737d6c78811312bfcc888af7c8dba6c153673f4e1542cc2aceedf2d2c9
26
27 diff --git a/sys-apps/bleachbit/bleachbit-3.0.ebuild b/sys-apps/bleachbit/bleachbit-3.0.ebuild
28 deleted file mode 100644
29 index 6129e74e6df..00000000000
30 --- a/sys-apps/bleachbit/bleachbit-3.0.ebuild
31 +++ /dev/null
32 @@ -1,59 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python2_7 )
39 -PYTHON_REQ_USE="sqlite(+)"
40 -
41 -inherit desktop distutils-r1
42 -
43 -DESCRIPTION="Clean junk to free disk space and to maintain privacy"
44 -HOMEPAGE="https://www.bleachbit.org"
45 -SRC_URI="https://download.bleachbit.org/${P}.tar.bz2"
46 -
47 -LICENSE="GPL-3"
48 -SLOT="0"
49 -KEYWORDS="amd64 x86"
50 -IUSE=""
51 -
52 -RDEPEND="
53 - dev-python/chardet[$PYTHON_USEDEP]
54 - dev-python/pygobject:3[$PYTHON_USEDEP]
55 - dev-python/scandir[$PYTHON_USEDEP]
56 -"
57 -BDEPEND="
58 - dev-python/setuptools[$PYTHON_USEDEP]
59 - sys-devel/gettext
60 -"
61 -
62 -python_prepare_all() {
63 - # choose correct Python implementation, bug #465254
64 - sed -i 's/python/${EPYTHON}/g' po/Makefile || die
65 -
66 - distutils-r1_python_prepare_all
67 -}
68 -
69 -python_compile_all() {
70 - emake -C po local
71 -}
72 -
73 -python_install() {
74 - distutils-r1_python_install
75 - python_newscript ${PN}.py ${PN}
76 -}
77 -
78 -python_install_all() {
79 - distutils-r1_python_install_all
80 - emake -C po DESTDIR="${D}" install
81 -
82 - # https://bugs.gentoo.org/388999
83 - insinto /usr/share/bleachbit/cleaners
84 - doins cleaners/*.xml
85 -
86 - insinto /usr/share/bleachbit
87 - doins data/app-menu.ui
88 -
89 - doicon ${PN}.png
90 - domenu ${PN}.desktop
91 -}