1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
# This rpmbuild.spec is designed for the OpenSUSE Build Service
# to build packages for CentOS, Fedora, and OpenSUSE.
# Fedora docs deprecate:
# * Group
# * BuildRoot
# * %clean
# https://docs.fedoraproject.org/en-US/packaging-guidelines/
# openSUSE docs deprecate:
# * Group
# * %clean
# https://en.opensuse.org/openSUSE:Specfile_guidelines
# Standard macro definitions on OBS.
# openSUSE:Leap:15.6 reports suse_version 1500
# openSUSE:Leap:16.0 reports suse_version 1600
# openSUSE:Slowroll reports suse_version=1699
# openSUSE:Tumbleweed reports suse_version=1699
# CentOS_9_Stream reports centos_version=900
# Fedora 41 reports fedora_version=41
%define pyexe %{__python3}
%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version} || 0%{?almalinux_version} || 0%{?rocky_version}
%define is_redhat_family 1
%else
%define is_redhat_family 0
%endif
%if 0%{?is_opensuse}
%define pyprefix %{modern_python}
%define is_leap 0
%if 0%{?suse_version} <= 1600
%define is_leap 1
%endif # suse_version <= 1600
%if 0%{?suse_version} == 1500
%define pyexe /usr/bin/python3.11
%endif # suse_version == 1500
%endif # is_opensuse
%if !0%{?is_opensuse} && !%{is_redhat_family}
%{error:This package is only for openSUSE or Red Hat family distributions}
%endif
%if 0%{?almalinux_version}
%define has_fdupes 0
%else
%define has_fdupes 1
%endif
# Fedora 42 unified /usr/sbin https://fedoraproject.org/wiki/Changes/Unify_bin_and_sbin
%if "%{_bindir}" == "%{_sbindir}"
%define has_sbin 0
%else
%define has_sbin 1
%endif
Name: bleachbit
Version: 5.0.2
Release: 1%{?dist}
Summary: Remove unnecessary files, free space, and maintain privacy
License: GPL-3.0-or-later
URL: https://www.bleachbit.org
Source0: %{name}-%{version}.tar.gz
BuildArch: noarch
%if %{is_redhat_family}
BuildRequires: desktop-file-utils
BuildRequires: gettext
BuildRequires: python3-chardet
BuildRequires: python3-psutil
BuildRequires: python3-setuptools
Requires(post): desktop-file-utils
Requires(postun): desktop-file-utils
Requires: python3
Requires: gtk3
Requires: python3-chardet
Requires: python3-gobject
Requires: python3-psutil
%endif
%if 0%{?is_opensuse}
BuildRequires: desktop-file-utils
BuildRequires: make
BuildRequires: %{pyprefix}
BuildRequires: python-rpm-macros
BuildRequires: %{pyprefix}-base
BuildRequires: %{pyprefix}-chardet
BuildRequires: %{pyprefix}-psutil
BuildRequires: %{pyprefix}-setuptools
%if ! %{is_leap}
BuildRequires: %{pyprefix}-sqlite-utils
%endif
BuildRequires: %{pyprefix}-xml
BuildRequires: update-desktop-files
Requires: gobject-introspection
Requires: %{pyprefix}
Requires: %{pyprefix}-chardet
Requires: %{pyprefix}-gobject
Requires: %{pyprefix}-gobject-Gdk
Requires: %{pyprefix}-psutil
%if ! %{is_leap}
Requires: %{pyprefix}-sqlite-utils
%endif
Requires: %{pyprefix}-xml
Requires: typelib(Gtk) = 3.0
Requires: typelib(Notify)
Requires: xdg-utils
%endif
%if %{has_fdupes}
BuildRequires: fdupes
%endif
%description
BleachBit frees disk space and maintains privacy by quickly removing
unnecessary files such as cache, cookies, browser history, temporary
files, and system logs. It can also shred files and clean free disk
space to prevent data recovery.
%prep
%setup -q
%{pyexe} -V
%build
%{pyexe} setup.py build
cp org.bleachbit.BleachBit.desktop org.bleachbit.BleachBit-root.desktop
sed -i -e 's/Name=BleachBit$/Name=BleachBit as Administrator/g' org.bleachbit.BleachBit-root.desktop
%if %{is_redhat_family}
cat > bleachbit.pam <<EOF
#%%PAM-1.0
auth include config-util
account include config-util
session include config-util
EOF
cat > bleachbit.console <<EOF
USER=root
PROGRAM=/usr/bin/bleachbit
SESSION=true
EOF
%endif
make delete_windows_files
%install
make install PYTHON=%{pyexe} DESTDIR=%{buildroot} prefix=%{_prefix}
%if %{is_redhat_family}
sed -i -e 's/Exec=bleachbit$/Exec=bleachbit-root/g' org.bleachbit.BleachBit-root.desktop
desktop-file-install \
--dir=%{buildroot}/%{_datadir}/applications/ \
--vendor="" org.bleachbit.BleachBit-root.desktop
# consolehelper and userhelper
ln -s consolehelper %{buildroot}/%{_bindir}/%{name}-root
%if %{has_sbin}
mkdir -p %{buildroot}/%{_sbindir}
ln -s ../..%{_bindir}/%{name} %{buildroot}/%{_sbindir}/%{name}-root
%endif
mkdir -p %{buildroot}%{_sysconfdir}/pam.d
install -m 644 %{name}.pam %{buildroot}%{_sysconfdir}/pam.d/%{name}-root
mkdir -p %{buildroot}%{_sysconfdir}/security/console.apps
install -m 644 %{name}.console %{buildroot}%{_sysconfdir}/security/console.apps/%{name}-root
%endif
%if 0%{?is_opensuse}
sed -i -e 's/^Exec=bleachbit$/Exec=xdg-su -c bleachbit/g' org.bleachbit.BleachBit-root.desktop
desktop-file-install \
--dir=%{buildroot}/%{_datadir}/applications/ \
--vendor="" org.bleachbit.BleachBit-root.desktop
%suse_update_desktop_file -i org.bleachbit.BleachBit-root Utility Filesystem
%suse_update_desktop_file org.bleachbit.BleachBit Utility Filesystem
%endif
desktop-file-validate %{buildroot}/%{_datadir}/applications/org.bleachbit.BleachBit.desktop
desktop-file-validate %{buildroot}/%{_datadir}/applications/org.bleachbit.BleachBit-root.desktop
make -C po install DESTDIR=%{buildroot}
%find_lang %{name}
%if %{has_fdupes}
# Make symlinks for redundant .pyc files.
%fdupes -s %{buildroot}
%endif
%check
%{pyexe} bleachbit.py --sysinfo
%{pyexe} bleachbit.py -l | wc -l
%{pyexe} bleachbit.py -p system.cache | wc -l
%{pyexe} -m unittest -v tests.TestFileUtilities tests.TestUnix
%if %{is_redhat_family}
%post
update-desktop-database &> /dev/null ||:
%postun
update-desktop-database &> /dev/null ||:
%endif
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc README.md
%license COPYING
%if %{is_redhat_family}
%config(noreplace) %{_sysconfdir}/pam.d/%{name}-root
%config(noreplace) %{_sysconfdir}/security/console.apps/%{name}-root
%{_bindir}/%{name}-root
%if %{has_sbin}
%{_sbindir}/%{name}-root
%endif
%endif
%{_bindir}/%{name}
%{_datadir}/metainfo/org.bleachbit.BleachBit.metainfo.xml
%{_datadir}/applications/org.bleachbit.BleachBit.desktop
%{_datadir}/applications/org.bleachbit.BleachBit-root.desktop
%{_datadir}/%{name}/
%{_datadir}/pixmaps/%{name}.png
%{_datadir}/pixmaps/%{name}-indicator.svg
%dir %{_datadir}/polkit-1
%dir %{_datadir}/polkit-1/actions
%{_datadir}/polkit-1/actions/org.bleachbit.policy
%changelog
* Tue Mar 18 2025 Andrew Ziem <andrew@bleachbit.org> - 5.0.2-1
- Update to 5.0.2
- See https://www.bleachbit.org/news
|