Hello community, here is the log from the commit of package bleachbit for openSUSE:Factory checked in at 2016-09-12 13:27:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bleachbit (Old) and /work/SRC/openSUSE:Factory/.bleachbit.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bleachbit" Changes: -------- --- /work/SRC/openSUSE:Factory/bleachbit/bleachbit.changes 2016-07-15 12:54:09.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.bleachbit.new/bleachbit.changes 2016-09-12 13:28:01.000000000 +0200 @@ -1,0 +2,5 @@ +Sat Sep 10 15:18:11 UTC 2016 - [email protected] + +- Add appdata.patch for https://en.opensuse.org/openSUSE:AppStore + +------------------------------------------------------------------- New: ---- appdata.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bleachbit.spec ++++++ --- /var/tmp/diff_new_pack.9fPkCN/_old 2016-09-12 13:28:02.000000000 +0200 +++ /var/tmp/diff_new_pack.9fPkCN/_new 2016-09-12 13:28:02.000000000 +0200 @@ -26,6 +26,8 @@ Group: Productivity/File utilities Url: http://www.bleachbit.org/ Source: http://download.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 +# PATCH-FEATURE-UPSTREAM https://github.com/az0/bleachbit/pull/142 +Patch0: appdata.patch BuildRequires: fdupes BuildRequires: python-setuptools BuildRequires: update-desktop-files @@ -48,6 +50,7 @@ %prep %setup -q +%patch0 -p1 sed -i -e 's|%{_bindir}/env python|%{_bindir}/python|g' \ bleachbit/{CLI.py,GUI.py} bleachbit.py @@ -91,6 +94,8 @@ %{_datadir}/%{name}/ %{_datadir}/applications/%{name}.desktop %{_datadir}/applications/%{name}-root.desktop +%dir %{_datadir}/appdata/ +%{_datadir}/appdata/%{name}.appdata.xml %{_datadir}/pixmaps/%{name}.png %doc COPYING README.md doc/* ++++++ appdata.patch ++++++ >From 192589635f6c239a0248a9cdc71f63dced92c840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 10 Sep 2016 17:14:02 +0200 Subject: [PATCH] Add an appdata.xml file. --- Makefile | 4 ++++ bleachbit.appdata.xml | 23 +++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 bleachbit.appdata.xml diff --git a/Makefile b/Makefile index a25087d..1ebc0fd 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,10 @@ install: mkdir -p $(DESTDIR)$(datadir)/applications $(INSTALL_DATA) bleachbit.desktop $(DESTDIR)$(datadir)/applications/ + # .desktop + mkdir -p $(DESTDIR)$(datadir)/appdata + $(INSTALL_DATA) bleachbit.appdata.xml $(DESTDIR)$(datadir)/appdata/ + # Python code mkdir -p $(DESTDIR)$(datadir)/bleachbit $(INSTALL_DATA) bleachbit/*.py $(DESTDIR)$(datadir)/bleachbit diff --git a/bleachbit.appdata.xml b/bleachbit.appdata.xml new file mode 100644 index 0000000..2a3b7ca --- /dev/null +++ b/bleachbit.appdata.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<application> + <id type="desktop">bleachbit.desktop</id> + <metadata_license>CC0-1.0</metadata_license> + <project_license>GPL-3.0</project_license> + <name>BleachBit</name> + <summary>Cleans files to free disk space and to maintain privacy</summary> + <description> + <p> + BleachBit quickly frees disk space and tirelessly guards your privacy. Free cache, delete cookies, clear Internet history, shred temporary files, delete logs, and discard junk you didn't know was there. It wipes clean a thousand applications including Firefox, Internet Explorer, Adobe Flash, Google Chrome, Opera, Safari, and more. + </p> + <p> + Beyond simply deleting files, BleachBit includes advanced features such as shredding files to prevent recovery, wiping free disk space to hide traces of files deleted by other applications, and vacuuming Firefox to make it faster. + </p> + </description> + <screenshots> + <screenshot type="default"> + <image>http://lh5.ggpht.com/_1XYQfEGGEIw/SsN7hSH0IVI/AAAAAAAACfw/BltI_Fvhgzo/s800/BleachBit-065-Fedora-11-Google-Chrome.png</image> + </screenshot> + </screenshots> + <url type="homepage">http://www.bleachbit.org/</url> + <updatecontact>[email protected]</updatecontact> +</application>
