17
0

6 Commits

Author SHA256 Message Date
e8b2edc91d Accepting request 1326919 from X11:xfce
OBS-URL: https://build.opensuse.org/request/show/1326919
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/elementary-xfce-icon-theme?expand=0&rev=22
2026-01-13 20:30:36 +00:00
b4384d51f7 - Update to version 0.22+git0.98ad7e92:
* Address some icons not showing in Gtk4 apps
  * MimeTypes: Add lossless audio symlinks
  * Actions: Remove 96px, 128px action icons

OBS-URL: https://build.opensuse.org/package/show/X11:xfce/elementary-xfce-icon-theme?expand=0&rev=48
2026-01-13 08:04:34 +00:00
7e17398650 Accepting request 1308119 from X11:xfce
OBS-URL: https://build.opensuse.org/request/show/1308119
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/elementary-xfce-icon-theme?expand=0&rev=21
2025-09-30 15:42:46 +00:00
2271590a2e - Rename elementary-xfce-gdb-pixbuf+glycin-loaders-workaround.patch
into elementary-xfce-gdk-pixbuf+glycin-loaders-workaround.patch

OBS-URL: https://build.opensuse.org/package/show/X11:xfce/elementary-xfce-icon-theme?expand=0&rev=46
2025-09-30 07:49:00 +00:00
f39613c2a8 - Update to version 0.21+git12.dff5c11f with the following highlights:
* Major New Feature: HiDPI Support
  * Application Icons: Many application icons were added or redesigned from
    scratch
  * File Type Icons (Mimetypes): icons for different file types were added
    or updated
  * System & Status Icons: A major effort was made to colorize and unify
    the panel and status indicator icons.
  * Theme Removal: The -darker and -darkest theme variants have been removed
  * File Deletion: A massive number of unused, duplicate, and broken symlinks
    were removed across all icon categories.
  * App Icon Removal: Icons for old or less common applications were removed
    to streamline the theme.
  * Better Standards Compliance: The theme was updated to improve compliance 
    with the FreeDesktop.org Icon Specification.
  * License Update: The project's license was updated to GPLv3.
- Rebased elementary-xfce-gdb-pixbuf+glycin-loaders-workaround.patch

OBS-URL: https://build.opensuse.org/package/show/X11:xfce/elementary-xfce-icon-theme?expand=0&rev=45
2025-09-30 07:39:25 +00:00
Maurizio Galli
af74cd475c - _service: Change "localonly" into "manual".
- Add elementary-xfce-gdb-pixbuf+glycin-loaders-workaround.patch
- Use autosetup instead of setup to get the new patch automatically
  applied.

OBS-URL: https://build.opensuse.org/package/show/X11:xfce/elementary-xfce-icon-theme?expand=0&rev=44
2025-09-29 03:13:29 +00:00
8 changed files with 79 additions and 21 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<services>
<service name="obs_scm" mode="localonly">
<service name="obs_scm" mode="manual">
<param name="url">https://github.com/shimmerproject/elementary-xfce.git</param>
<param name="scm">git</param>
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@.%h</param>
@@ -8,9 +8,9 @@
<param name="changesauthor">tux93@opensuse.org</param>
<param name="versionrewrite-pattern">v(.*)</param>
</service>
<service name="set_version" mode="localonly"/>
<service name="tar" mode="localonly"/>
<service name="recompress" mode="localonly">
<service name="set_version" mode="manual"/>
<service name="tar" mode="manual"/>
<service name="recompress" mode="manual">
<param name="compression">xz</param>
<param name="file">*.tar</param>
</service>

View File

@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/shimmerproject/elementary-xfce.git</param>
<param name="changesrevision">7885371f5c1d3fb0cd5027ff1a7fab0d840be798</param></service></servicedata>
<param name="changesrevision">98ad7e9236ca70c08742c9970f1a1ffc4080762a</param></service></servicedata>

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:64e5ce26b316d7ff0348bf568bc8d6dc6cd907e650421218d8723471f4702e77
size 3221648

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ec48379c1824c47dbdcc3efd4c70e822a749f297c0cb3aa9ca3edcbb0ba4b436
size 3789348

View File

@@ -0,0 +1,18 @@
diff -rup a/svgtopng/pngtheme.sh b/svgtopng/pngtheme.sh
--- a/svgtopng/pngtheme.sh 2025-09-29 11:21:07.201841022 +0800
+++ b/svgtopng/pngtheme.sh 2025-09-29 11:37:00.306667812 +0800
@@ -27,8 +27,9 @@ echo " * Deleting svg files"
find "$icondir" -iname '*.svg' -not \( -wholename "*/scalable/*" -o -wholename "*/symbolic/*" -o -wholename "*-symbolic.svg" -o -wholename "*-symbolic-rtl.svg" -o -wholename "*/animations/*process-*" \) -delete
#ignore the output if the theme depends on another one (e.g. elementary-xfce-dark needs to be converted before elementary-xfce)
-echo " * Checking dangling symlinks"
-if find -L "elementary-xfce" -type l -exec /bin/ls -go {} \; | grep .; then
- echo "Found some dangling symlinks, please go fix those.";
- exit 1;
-fi
+# Introduction of gdk-pixbuf-2.44 together with the new glycin-loaders-2.0.0
+# results in some icons not having the right size:
+# Message: 15:45:20.670: Skipping build/elementary-xfce/actions/16/list-remove.png, size too big (17x17 instead of 16x16)
+# Remove them instantly:
+echo " * Checking and cleaning up dangling symlinks"
+find -L "$icondir" -type l -exec rm -vf {} \;

View File

@@ -1,3 +1,46 @@
-------------------------------------------------------------------
Tue Jan 13 03:13:41 UTC 2026 - maurizio.galli@suse.com
- Update to version 0.22+git0.98ad7e92:
* Address some icons not showing in Gtk4 apps
* MimeTypes: Add lossless audio symlinks
* Actions: Remove 96px, 128px action icons
-------------------------------------------------------------------
Tue Sep 30 07:45:39 UTC 2025 - Manfred Hollstein <manfred.h@gmx.net>
- Rename elementary-xfce-gdb-pixbuf+glycin-loaders-workaround.patch
into elementary-xfce-gdk-pixbuf+glycin-loaders-workaround.patch
-------------------------------------------------------------------
Mon Sep 29 03:15:43 UTC 2025 - maurizio.galli@suse.com
- Update to version 0.21+git12.dff5c11f with the following highlights:
* Major New Feature: HiDPI Support
* Application Icons: Many application icons were added or redesigned from
scratch
* File Type Icons (Mimetypes): icons for different file types were added
or updated
* System & Status Icons: A major effort was made to colorize and unify
the panel and status indicator icons.
* Theme Removal: The -darker and -darkest theme variants have been removed
* File Deletion: A massive number of unused, duplicate, and broken symlinks
were removed across all icon categories.
* App Icon Removal: Icons for old or less common applications were removed
to streamline the theme.
* Better Standards Compliance: The theme was updated to improve compliance
with the FreeDesktop.org Icon Specification.
* License Update: The project's license was updated to GPLv3.
- Rebased elementary-xfce-gdb-pixbuf+glycin-loaders-workaround.patch
-------------------------------------------------------------------
Sun Sep 28 09:41:29 UTC 2025 - Manfred Hollstein <manfred.h@gmx.net>
- _service: Change "localonly" into "manual".
- Add elementary-xfce-gdb-pixbuf+glycin-loaders-workaround.patch
- Use autosetup instead of setup to get the new patch automatically
applied.
-------------------------------------------------------------------
Mon Aug 28 06:52:55 UTC 2023 - Bernhard Wiedemann <bwiedemann@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package elementary-xfce-icon-theme
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,14 @@
%define _name elementary-xfce
Name: elementary-xfce-icon-theme
Version: 0.15.2+git0.2e2ca316
Version: 0.22+git0.98ad7e92
Release: 0
Summary: Icon theme inspired by Tango and Elementary
License: GPL-2.0-only
License: GPL-3.0-only
Group: System/GUI/Other
URL: https://github.com/shimmerproject/elementary-xfce
Source: %{_name}-%{version}.tar.xz
Patch01: elementary-xfce-gdk-pixbuf+glycin-loaders-workaround.patch
BuildRequires: bitstream-vera-fonts
BuildRequires: fdupes
BuildRequires: gdk-pixbuf-loader-rsvg
@@ -45,7 +46,7 @@ which took place because the team decided to
drop a lot of desktop-specific symlinks.
%prep
%setup -q -n %{_name}-%{version}
%autosetup -n %{_name}-%{version} -p1
%build
%configure
@@ -55,10 +56,7 @@ drop a lot of desktop-specific symlinks.
%make_install
# Cleanup unused docs
rm %{buildroot}%{_datadir}/icons/%{_name}{,-dark,-darker}/{CONTRIBUTORS,AUTHORS,README.md,LICENSE}
# We don't want to install Darkest as it's not very useful
rm -rf %{buildroot}%{_datadir}/icons/%{_name}-darkest/
rm %{buildroot}%{_datadir}/icons/%{_name}{,-dark,-hidpi}/{CONTRIBUTORS,AUTHORS,README.md,LICENSE}
# fix duplicate files
%fdupes -s %{buildroot}%{_datadir}/icons/
@@ -67,7 +65,7 @@ rm -rf %{buildroot}%{_datadir}/icons/%{_name}-darkest/
%doc AUTHORS CONTRIBUTORS README.md
%license LICENSE
%{_datadir}/icons/elementary-xfce/
%{_datadir}/icons/elementary-xfce-hidpi/
%{_datadir}/icons/elementary-xfce-dark/
%{_datadir}/icons/elementary-xfce-darker/
%changelog

View File

@@ -1,5 +1,4 @@
name: elementary-xfce
version: 0.15.2+git0.2e2ca316
mtime: 1610319272
commit: 2e2ca316322f9c69a8fb5d555f42d121ba5412b4
version: 0.22+git0.98ad7e92
mtime: 1764023461
commit: 98ad7e9236ca70c08742c9970f1a1ffc4080762a