|
|
e88d32 |
Summary: GNOME icon theme
|
|
|
e88d32 |
Name: gnome-icon-theme
|
|
|
e88d32 |
Version: 3.8.2
|
|
|
25f426 |
Release: 3%{?dist}
|
|
|
e88d32 |
#VCS: git:git://git.gnome.org/gnome-icon-theme
|
|
|
e88d32 |
Source0: http://download.gnome.org/sources/gnome-icon-theme/3.8/%{name}-%{version}.tar.xz
|
|
|
e88d32 |
Source1: legacy-icon-mapping.xml
|
|
|
e88d32 |
License: GPL+
|
|
|
e88d32 |
BuildArch: noarch
|
|
|
e88d32 |
Group: User Interface/Desktops
|
|
|
e88d32 |
BuildRequires: icon-naming-utils >= 0.8.7
|
|
|
e88d32 |
BuildRequires: gettext
|
|
|
e88d32 |
BuildRequires: librsvg2
|
|
|
e88d32 |
BuildRequires: intltool
|
|
|
e88d32 |
BuildRequires: gtk2
|
|
|
e88d32 |
Requires: hicolor-icon-theme
|
|
|
25f426 |
Requires: pkgconfig
|
|
|
e88d32 |
|
|
|
e88d32 |
%description
|
|
|
e88d32 |
This package contains the default icon theme used by the GNOME desktop.
|
|
|
e88d32 |
|
|
|
e88d32 |
%package legacy
|
|
|
e88d32 |
Summary: Old names for icons in gnome-icon-theme
|
|
|
e88d32 |
Group: User Interface/Desktops
|
|
|
e88d32 |
Requires: %{name} = %{version}-%{release}
|
|
|
e88d32 |
|
|
|
e88d32 |
%description legacy
|
|
|
e88d32 |
This package contains symlinks to make the icons in gnome-icon-theme
|
|
|
e88d32 |
available under old names.
|
|
|
e88d32 |
|
|
|
e88d32 |
%prep
|
|
|
e88d32 |
%setup -q
|
|
|
e88d32 |
|
|
|
e88d32 |
%build
|
|
|
e88d32 |
%configure --enable-icon-mapping
|
|
|
e88d32 |
|
|
|
e88d32 |
%install
|
|
|
e88d32 |
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
e88d32 |
|
|
|
e88d32 |
rm $RPM_BUILD_ROOT%{_datadir}/icons/gnome/icon-theme.cache
|
|
|
e88d32 |
touch $RPM_BUILD_ROOT%{_datadir}/icons/gnome/icon-theme.cache
|
|
|
e88d32 |
|
|
|
e88d32 |
cp %{SOURCE1} .
|
|
|
e88d32 |
export INU_DATA_DIR=$PWD
|
|
|
e88d32 |
(cd $RPM_BUILD_ROOT%{_datadir}/icons/gnome
|
|
|
e88d32 |
for size in 8x8 16x16 22x22 24x24 32x32 48x48 256x256; do
|
|
|
e88d32 |
cd $size || continue;
|
|
|
e88d32 |
echo -e "Adding rtl variants for $size"
|
|
|
e88d32 |
for dir in `find . -type d`; do
|
|
|
e88d32 |
context="`echo $dir | cut -c 3-`"
|
|
|
e88d32 |
if [ $context ]; then
|
|
|
e88d32 |
icon-name-mapping -c $context
|
|
|
e88d32 |
fi
|
|
|
e88d32 |
done
|
|
|
e88d32 |
cd ..
|
|
|
e88d32 |
done
|
|
|
e88d32 |
)
|
|
|
e88d32 |
|
|
|
e88d32 |
# Add scalable directories for symbolic icons
|
|
|
e88d32 |
(cd $RPM_BUILD_ROOT%{_datadir}/icons/gnome
|
|
|
e88d32 |
|
|
|
e88d32 |
mkdir -p scalable/actions
|
|
|
e88d32 |
mkdir -p scalable/apps
|
|
|
e88d32 |
mkdir -p scalable/devices
|
|
|
e88d32 |
mkdir -p scalable/emblems
|
|
|
e88d32 |
mkdir -p scalable/mimetypes
|
|
|
e88d32 |
mkdir -p scalable/places
|
|
|
e88d32 |
mkdir -p scalable/status
|
|
|
e88d32 |
)
|
|
|
e88d32 |
|
|
|
e88d32 |
touch files.txt
|
|
|
e88d32 |
|
|
|
e88d32 |
(cd $RPM_BUILD_ROOT%{_datadir}
|
|
|
e88d32 |
echo "%%defattr(-,root,root)"
|
|
|
e88d32 |
find icons/gnome \( -name *-rtl.png -or -name *-ltr.png -or -type f \) -printf "%%%%{_datadir}/%%p\n"
|
|
|
e88d32 |
find icons/gnome -type d -printf "%%%%dir %%%%{_datadir}/%%p\n"
|
|
|
e88d32 |
) > files.txt
|
|
|
e88d32 |
|
|
|
e88d32 |
(cd $RPM_BUILD_ROOT%{_datadir}
|
|
|
e88d32 |
echo "%%defattr(-,root,root)"
|
|
|
e88d32 |
find icons/gnome \( -type l -and -not -name *-rtl.png -and -not -name *-ltr.png \) -printf "%%%%{_datadir}/%%p\n"
|
|
|
e88d32 |
) > legacy.txt
|
|
|
e88d32 |
|
|
|
e88d32 |
%post
|
|
|
e88d32 |
touch --no-create %{_datadir}/icons/gnome &>/dev/null || :
|
|
|
e88d32 |
|
|
|
e88d32 |
%postun
|
|
|
e88d32 |
if [ $1 -eq 0 ] ; then
|
|
|
e88d32 |
touch --no-create %{_datadir}/icons/gnome &>/dev/null
|
|
|
e88d32 |
gtk-update-icon-cache %{_datadir}/icons/gnome &>/dev/null || :
|
|
|
e88d32 |
fi
|
|
|
e88d32 |
|
|
|
e88d32 |
%posttrans
|
|
|
e88d32 |
gtk-update-icon-cache %{_datadir}/icons/gnome &>/dev/null || :
|
|
|
e88d32 |
|
|
|
e88d32 |
%post legacy
|
|
|
e88d32 |
touch --no-create %{_datadir}/icons/gnome &>/dev/null || :
|
|
|
e88d32 |
|
|
|
e88d32 |
%postun legacy
|
|
|
e88d32 |
if [ $1 -eq 0 ] ; then
|
|
|
e88d32 |
touch --no-create %{_datadir}/icons/gnome &>/dev/null
|
|
|
e88d32 |
gtk-update-icon-cache %{_datadir}/icons/gnome &>/dev/null || :
|
|
|
e88d32 |
fi
|
|
|
e88d32 |
|
|
|
e88d32 |
%posttrans legacy
|
|
|
e88d32 |
gtk-update-icon-cache %{_datadir}/icons/gnome &>/dev/null || :
|
|
|
e88d32 |
|
|
|
e88d32 |
%files -f files.txt
|
|
|
e88d32 |
%doc COPYING AUTHORS
|
|
|
e88d32 |
%{_datadir}/pkgconfig/gnome-icon-theme.pc
|
|
|
e88d32 |
%ghost %{_datadir}/icons/gnome/icon-theme.cache
|
|
|
e88d32 |
|
|
|
e88d32 |
%files legacy -f legacy.txt
|
|
|
e88d32 |
|
|
|
e88d32 |
%changelog
|
|
|
25f426 |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.8.2-3
|
|
|
25f426 |
- Mass rebuild 2013-12-27
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon May 13 2013 Richard Hughes <rhughes@redhat.com> - 3.8.2-1
|
|
|
e88d32 |
- Update to 3.8.2
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 26 2013 Richard Hughes <rhughes@redhat.com> - 3.8.0-1
|
|
|
e88d32 |
- Update to 3.8.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 5 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.91-1
|
|
|
e88d32 |
- Update to 3.7.91
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.4-2
|
|
|
e88d32 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Jan 17 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.4-1
|
|
|
e88d32 |
- Update to 3.7.4
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Jan 03 2013 Debarshi Ray <rishi@fedoraproject.org> - 3.7.3-1
|
|
|
e88d32 |
- Update to 3.7.3
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Nov 14 2012 Kalev Lember <kalevlember@gmail.com> - 3.6.2-1
|
|
|
e88d32 |
- Update to 3.6.2
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Sep 25 2012 Matthias Clasen <mclasen@redhat.com> - 3.6.0-1
|
|
|
e88d32 |
- Update to 3.6.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Aug 28 2012 Richard Hughes <hughsient@gmail.com> - 3.5.90-1
|
|
|
e88d32 |
- Update to 3.5.90
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Aug 21 2012 Richard Hughes <hughsient@gmail.com> - 3.5.5-1
|
|
|
e88d32 |
- Update to 3.5.5
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-2
|
|
|
e88d32 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Mar 28 2012 Richard Hughes <hughsient@gmail.com> - 3.4.0-1
|
|
|
e88d32 |
- Update to 3.4.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Mar 5 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.91-1
|
|
|
e88d32 |
- Update to 3.3.91
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1.2-2
|
|
|
e88d32 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Nov 2 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.1.2-1
|
|
|
e88d32 |
- Update to 3.2.1.2
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Oct 19 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.1.1-1
|
|
|
e88d32 |
- Update to 3.2.1.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.1-1
|
|
|
e88d32 |
- Update to 3.2.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 3.2.0-1
|
|
|
e88d32 |
- Update to 3.2.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Aug 31 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.90-1
|
|
|
e88d32 |
- Update to 3.1.90
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.4-1
|
|
|
e88d32 |
- Update to 3.1.4
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 3.0.0-2
|
|
|
e88d32 |
- Update icon cache scriptlet
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Apr 5 2011 Christopher Aillon <caillon@redhat.com> 3.0.0-1
|
|
|
e88d32 |
- Update to 3.0.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Mar 30 2011 Matthias Clasen <mclasen@redhat.com> 2.91.93-1
|
|
|
e88d32 |
- Update to 2.91.93
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 29 2011 Matthias Clasen <mclasen@redhat.com> 2.91.92-6
|
|
|
e88d32 |
- Drop the logos package; there shall be no system-logos
|
|
|
e88d32 |
other than fedora-logos...
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Mar 24 2011 Matthias Clasen <mclasen@redhat.com> 2.91.92-3
|
|
|
e88d32 |
- Make the logos package noarch
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Mar 24 2011 Matthias Clasen <mclasen@redhat.com> 2.91.92-2
|
|
|
e88d32 |
- Add a logos subpackage
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 22 2011 Christopher Aillon <caillon@redhat.com> 2.91.92-1
|
|
|
e88d32 |
- Update to 2.91.92
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> 2.91.7-1
|
|
|
e88d32 |
- Update to 2.91.7
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.91.6-4
|
|
|
e88d32 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Feb 8 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6-3
|
|
|
e88d32 |
- Don't include icon cache
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Feb 7 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6-2
|
|
|
e88d32 |
- No longer ship gtk- legacy symlinks in the main package,
|
|
|
e88d32 |
GTK+ doesn't use them anymore
|
|
|
e88d32 |
- Do ship -rtl/-ltr symlinks for some names
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 2.91.6-1
|
|
|
e88d32 |
- Update to 2.91.6
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Aug 5 2010 Matthias Clasen <mclasen@redhat.com> 2.31.0-1
|
|
|
e88d32 |
- Update to 2.31.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Jun 13 2010 Matthias Clasen <mclasen@redhat.com> 2.30.3-2
|
|
|
e88d32 |
- Another attempt to split legacy off
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> 2.30.3-1
|
|
|
e88d32 |
- Update to 2.30.3
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri May 21 2010 Matthias Clasen <mclasen@redhat.com> 2.30.2.1-2
|
|
|
e88d32 |
- Add scalable directories for symbolic icons
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Apr 29 2010 Bastien Nocera <bnocera@redhat.com> 2.30.2.1-1
|
|
|
e88d32 |
- Update to 2.30.2.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Apr 27 2010 Matthias Clasen <mclasen@redhat.com> 2.30.2-1
|
|
|
e88d32 |
- Update to 2.30.2
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Apr 20 2010 Matthias Clasen <mclasen@redhat.com> 2.30.1-2
|
|
|
e88d32 |
- Drop extra icons
|
|
|
e88d32 |
- Split off a legacy subpackage
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Apr 18 2010 Matthias Clasen <mclasen@redhat.com> 2.30.1-1
|
|
|
e88d32 |
- Update to 2.30.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Apr 2 2010 Matthias Clasen <mclasen@redhat.com> 2.30.0-2
|
|
|
e88d32 |
- Fix a zoom icon
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> 2.30.0-1
|
|
|
e88d32 |
- Update to 2.30.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Mar 28 2010 Matthias Clasen <mclasen@redhat.com> 2.29.3-1
|
|
|
e88d32 |
- 2.29.3
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 23 2010 Bastien Nocera <bnocera@redhat.com> 2.29.2-3
|
|
|
e88d32 |
- Update scriptlets
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 16 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.2-2
|
|
|
e88d32 |
- Add gtk-missing-image to legacy mapping
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 9 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.2-1
|
|
|
e88d32 |
- Update to 2.29.2
|
|
|
e88d32 |
- The .pc file is back
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Mar 1 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.0-3
|
|
|
e88d32 |
- Add process-working animation back
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Feb 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.0-2
|
|
|
e88d32 |
- Fix up some issues with icons that got lost
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Feb 26 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.0-1
|
|
|
e88d32 |
- Update to 2.29.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Sep 21 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
|
|
|
e88d32 |
- Update to 2.28.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Aug 18 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.90-2
|
|
|
e88d32 |
- Add gtk print icons.
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Aug 14 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.90-1
|
|
|
e88d32 |
- Update to 2.27.90
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.26.0-3
|
|
|
e88d32 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 17 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-2
|
|
|
e88d32 |
- Add a window icon so we don't show missing icons in window frames
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
|
|
|
e88d32 |
- Update to 2.26.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sat Mar 7 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.91-3
|
|
|
e88d32 |
- Add a 48x48 spinner back
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.91-2
|
|
|
e88d32 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Feb 17 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.91-1
|
|
|
e88d32 |
- Update to 2.25.91
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Feb 17 2009 David Zeuthen <davidz@redhat.com> - 2.24.0-3
|
|
|
e88d32 |
- Update device icons
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Nov 23 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-2
|
|
|
e88d32 |
- Tweak summary and description
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Sep 23 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-1
|
|
|
e88d32 |
- Update to 2.24.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Sep 8 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.92-1
|
|
|
e88d32 |
- Update to 2.23.92
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Sep 2 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.91-1
|
|
|
e88d32 |
- Update to 2.23.91
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.90-1
|
|
|
e88d32 |
- Update to 2.23.90
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Jul 23 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.3-2
|
|
|
e88d32 |
- Re-add the symlinks for gtk stock icons again
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jul 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.3-1
|
|
|
e88d32 |
- Update to 2.23.3
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Jun 20 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.2-2
|
|
|
e88d32 |
- Re-add the symlinks for gtk stock icons, remove some other symlinks
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jun 17 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.2-1
|
|
|
e88d32 |
- Update to 2.23.2
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Apr 16 2008 David Zeuthen <davidz@redhat.com> - 2.22.0-6
|
|
|
e88d32 |
- Refresh disc icons
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Apr 1 2008 David Zeuthen <davidz@redhat.com> - 2.22.0-5
|
|
|
e88d32 |
- Switch open and close padlock encrypted drives/media
|
|
|
e88d32 |
- Replace the flash media icons with something that is compatible
|
|
|
e88d32 |
with the GPL that gnome-icon-theme is under (thanks Mike Langlie)
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Mar 24 2008 David Zeuthen <davidz@redhat.com> - 2.22.0-4
|
|
|
e88d32 |
- Rebuild
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Mar 24 2008 David Zeuthen <davidz@redhat.com> - 2.22.0-3
|
|
|
e88d32 |
- Switch media-encrypted and drive-encrypted
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Mar 24 2008 David Zeuthen <davidz@redhat.com> - 2.22.0-2
|
|
|
e88d32 |
- Add a bunch of device icons from Mike Langlie
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 11 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-1
|
|
|
e88d32 |
- Update to 2.22.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.92-1
|
|
|
e88d32 |
- Update to 2.21.92
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Dec 18 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.4-1
|
|
|
e88d32 |
- Update to 2.21.4
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Sep 18 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-2
|
|
|
e88d32 |
- Rebuild with newer icon-naming-utils
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Sep 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
|
|
|
e88d32 |
- Update to 2.20.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Sep 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.91-1
|
|
|
e88d32 |
- Update to 2.19.91
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Aug 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.90-1
|
|
|
e88d32 |
- Update to 2.19.90
|
|
|
e88d32 |
- Further correction of the license field
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Aug 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.6-1
|
|
|
e88d32 |
- Update to 2.19.6
|
|
|
e88d32 |
- Update license field
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Jun 27 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-1
|
|
|
e88d32 |
- Update to 2.19.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-1
|
|
|
e88d32 |
- Update to 2.18.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Feb 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.91-1
|
|
|
e88d32 |
- Update to 2.17.91
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Jan 10 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.5-1
|
|
|
e88d32 |
- Update to 2.17.5
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Dec 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.4.1-1
|
|
|
e88d32 |
- Update to 2.17.4.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Dec 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.4-1
|
|
|
e88d32 |
- Update to 2.17.4
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Dec 5 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.3-1
|
|
|
e88d32 |
- Update to 2.17.3
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Nov 28 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.2.1-2
|
|
|
e88d32 |
- Fix duplicate emblems in nautilus (#217090)
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Nov 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.2.1-1
|
|
|
e88d32 |
- Update to 2.17.2.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Nov 7 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.2-1
|
|
|
e88d32 |
- Update to 2.17.2
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Oct 4 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0.1-2
|
|
|
e88d32 |
- Fix broken symlinks (#208399)
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Sep 4 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0.1-1
|
|
|
e88d32 |
- Update to 2.16.0.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Sep 3 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-1
|
|
|
e88d32 |
- Update to 2.16.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> 2.15.92-1.fc6
|
|
|
e88d32 |
- Update to 2.15.92
|
|
|
e88d32 |
- Require pkgconfig
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sat Aug 12 2006 Matthias Clasen <mclasen@redhat.com> 2.15.91-1.fc6
|
|
|
e88d32 |
- Update to 2.15.91
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Aug 2 2006 Matthias Clasen <mclasen@redhat.com> 2.15.90-1.fc6
|
|
|
e88d32 |
- Update to 2.15.90
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> 2.15.3-1
|
|
|
e88d32 |
- Update to 2.15.3
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Jun 7 2006 Matthias Clasen <mclasen@redhat.com> 2.15.2-3
|
|
|
e88d32 |
- Fix a problem in %%post (#194323)
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jun 6 2006 Matthias Clasen <mclasen@redhat.com> 2.15.2-2
|
|
|
e88d32 |
- Add BuildRequires for perl-XML-Parser
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue May 16 2006 Matthias Clasen <mclasen@redhat.com> 2.15.2-1
|
|
|
e88d32 |
- Update to 2.15.2
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue May 9 2006 Matthias Clasen <mclasen@redhat.com> 2.15.1-1
|
|
|
e88d32 |
- Update to 2.15.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Mar 22 2006 Matthias Clasen <mclasen@redhat.com> 2.14.2-2
|
|
|
e88d32 |
- Update to 2.14.2
|
|
|
e88d32 |
- Add symlinks to make application/xml work
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sat Feb 25 2006 Matthias Clasen <mclasen@redhat.com> 2.14.1-1
|
|
|
e88d32 |
- Update to 2.14.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Feb 15 2006 Matthias Clasen <mclasen@redhat.com> 2.14.0-2
|
|
|
e88d32 |
- Add small epiphany icon (again!!)
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Feb 12 2006 Ray Strode <rstrode@redhat.com> 2.14.0-1
|
|
|
e88d32 |
- Update to 2.14.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Feb 9 2006 Matthias Clasen <mclasen@redhat.com> 2.13.7-4
|
|
|
e88d32 |
- Add better shutdown icon
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Feb 9 2006 Matthias Clasen <mclasen@redhat.com> 2.13.7-3
|
|
|
e88d32 |
- Add the spinner back
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Feb 7 2006 Matthias Clasen <mclasen@redhat.com> 2.13.7-2
|
|
|
e88d32 |
- Add back some icons that went missing
|
|
|
e88d32 |
- Fix redhat- symlinks that were broken since FC1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Feb 6 2006 Matthias Clasen <mclasen@redhat.com> 2.13.7-1
|
|
|
e88d32 |
- Update to 2.13.7
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Jan 23 2006 Matthias Clasen <mclasen@redhat.com> 2.13.5.1-2
|
|
|
e88d32 |
- Fix a typo in index.theme
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jan 17 2006 Matthias Clasen <mclasen@redhat.com> 2.13.5.1-1
|
|
|
e88d32 |
- Update to 2.13.5.1
|
|
|
e88d32 |
- BuildRequire icon-naming-utils
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jan 03 2006 Matthias Clasen <mclasen@redhat.com> 2.13.4-1
|
|
|
e88d32 |
- Update to 2.13.4
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
e88d32 |
- rebuilt
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Dec 2 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.2-1
|
|
|
e88d32 |
- Update to 2.13.2
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Oct 6 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.1-2
|
|
|
e88d32 |
- Update to 2.12.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sat Oct 1 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.0-2
|
|
|
e88d32 |
- Only call gtk-update-icon-cache on directories which have a
|
|
|
e88d32 |
theme index file
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Sep 8 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.0-1
|
|
|
e88d32 |
- update to 2.12.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Jul 08 2005 John (J5) Palmieri <johnp@redhat.com> - 2.10.1-6
|
|
|
e88d32 |
- update the redone icons with new ones from dfong
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jul 05 2005 John (J5) Palmieri <johnp@redhat.com> - 2.10.1-5
|
|
|
e88d32 |
- replace some upstream icons with redone ones
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Apr 13 2005 John (J5) Palmieri <johnp@redhat.com> - 2.10.1-4
|
|
|
e88d32 |
- Fix redhat-office link
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Apr 13 2005 John (J5) Palmieri <johnp@redhat.com> - 2.10.1-3
|
|
|
e88d32 |
- More relative symlink fixes
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Apr 12 2005 Matthias Clasen <mclasen@redhat.com> - 2.10.1-2
|
|
|
e88d32 |
- Use relative symlinks instead of absolute ones,
|
|
|
e88d32 |
which the build system no longer accepts.
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Mar 25 2005 Christopher Aillon <caillon@redhat.com> - 2.10.1-1
|
|
|
e88d32 |
- Update to upstream version 2.10.1
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Mar 17 2005 John (J5) Palmieri <johnp@redhat.com> - 2.9.92-1
|
|
|
e88d32 |
- Update to upstream version 2.9.92
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Mar 7 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.91-2
|
|
|
e88d32 |
- Fix %%post
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Feb 9 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.91-1
|
|
|
e88d32 |
- Update to 2.9.91
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Feb 4 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.90-3
|
|
|
e88d32 |
- Silence %%post
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Jan 28 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.90-2
|
|
|
e88d32 |
- Prereq gtk2 since we use gtk-update-icon-cache in %%post
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Jan 27 2005 Matthias Clasen <mclasen@redhat.com> - 2.9.90-1
|
|
|
e88d32 |
- Update to 2.9.90
|
|
|
e88d32 |
- Update icon caches in %%post
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Sep 22 2004 Alexander Larsson <alexl@redhat.com> - 2.8.0-1
|
|
|
e88d32 |
- Update to 2.8.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Sep 1 2004 Alexander Larsson <alexl@redhat.com> - 2.7.90-2
|
|
|
e88d32 |
- Import copies of fallback icon in other packages (#128800, #114534)
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Aug 31 2004 Alex Larsson <alexl@redhat.com> 2.7.90-1
|
|
|
e88d32 |
- update to 2.7.90
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Aug 4 2004 Owen Taylor <otaylor@redhat.com> - 1.3.6-1
|
|
|
e88d32 |
- Update to 1.3.6
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
e88d32 |
- rebuilt
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Apr 1 2004 Alex Larsson <alexl@redhat.com> 1.2.0-1
|
|
|
e88d32 |
- update to 1.2.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Mar 10 2004 Alexander Larsson <alexl@redhat.com> 1.1.90-1
|
|
|
e88d32 |
- update to 1.1.90
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Mar 3 2004 Alexander Larsson <alexl@redhat.com> 1.1.8-2
|
|
|
e88d32 |
- remove redhat-main-menu symlink (#100407)
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Feb 23 2004 Alexander Larsson <alexl@redhat.com> 1.1.8-1
|
|
|
e88d32 |
- update to 1.1.8
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
e88d32 |
- rebuilt
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Jan 19 2004 Alexander Larsson <alexl@redhat.com> 1.1.5-1
|
|
|
e88d32 |
- 1.1.5
|
|
|
e88d32 |
- Removed hidden patch. Why should gnome not be visible?
|
|
|
e88d32 |
Its not like you don't see all the kde themes from Gnome, and
|
|
|
e88d32 |
they don't work well in Gnome.
|
|
|
e88d32 |
|
|
|
e88d32 |
* Thu Oct 9 2003 Alexander Larsson <alexl@redhat.com> 1.0.9-2
|
|
|
e88d32 |
- Fix symlinks for redhat menu icons
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Oct 3 2003 Alexander Larsson <alexl@redhat.com> 1.0.9-1
|
|
|
e88d32 |
- update to 1.0.9
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jul 15 2003 Matt Wilson <msw@redhat.com> 1.0.6-1
|
|
|
e88d32 |
- update to 1.0.6
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Jul 9 2003 Alexander Larsson <alexl@redhat.com> 1.0.5-1.E
|
|
|
e88d32 |
- Rebuild
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jul 1 2003 Alexander Larsson <alexl@redhat.com> 1.0.5-1
|
|
|
e88d32 |
- Update to 1.0.5
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Jun 13 2003 Elliot Lee <sopwithredhat.com> 1.0.2-3
|
|
|
e88d32 |
- Update evolution icon link again
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri May 16 2003 Alexander Larsson <alexl@redhat.com> 1.0.2-2
|
|
|
e88d32 |
- Update evolution icon link (#90050)
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Mar 31 2003 Alexander Larsson <alexl@redhat.com> 1.0.2-1
|
|
|
e88d32 |
- Update to 1.0.2
|
|
|
e88d32 |
|
|
|
e88d32 |
* Sun Feb 16 2003 Than Ngo <than@redhat.com> 1.0.0-4
|
|
|
e88d32 |
- remove kde hicolor patch, it's not required anymore
|
|
|
e88d32 |
- add patch to make gnome icon theme hidden in KDE
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Feb 10 2003 Alexander Larsson <alexl@redhat.com> 1.0.0-3
|
|
|
e88d32 |
- inherit from hicolor to make kde work
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
e88d32 |
- rebuilt
|
|
|
e88d32 |
|
|
|
e88d32 |
* Tue Jan 21 2003 Alexander Larsson <alexl@redhat.com> 1.0.0-1
|
|
|
e88d32 |
- Update to 1.0.0
|
|
|
e88d32 |
|
|
|
e88d32 |
* Fri Jan 17 2003 Havoc Pennington <hp@redhat.com> 0.1.5-2
|
|
|
e88d32 |
- make the gnome theme contain some symlinks to cover
|
|
|
e88d32 |
the redhat-*.png names
|
|
|
e88d32 |
|
|
|
e88d32 |
* Mon Dec 16 2002 Alexander Larsson <alexl@redhat.com> 0.1.5-1
|
|
|
e88d32 |
- Update to 0.1.5
|
|
|
e88d32 |
|
|
|
e88d32 |
* Wed Dec 4 2002 Alexander Larsson <alexl@redhat.com> 0.1.3-1
|
|
|
e88d32 |
- Initial build.
|