Blame SPECS/centos-logos.spec

7439b9
%global codename sphericalcow
7439b9
# Package is only arch specific due to missing deps on arm
7439b9
# Debuginfo package is useless.
7439b9
%global debug_package %{nil}
7439b9
7439b9
Name:       centos-logos
7439b9
Version:    80.5
7439b9
Release:    1%{?dist}
7439b9
Summary:    CentOS-related icons and pictures
7439b9
7439b9
Group:      System Environment/Base
7439b9
URL:        http://www.centos.org
7439b9
# No upstream, done in internal git
7439b9
Source0:    centos-logos-%{version}.tar.xz
7439b9
License:    Licensed only for approved usage, see COPYING for details.
7439b9
7439b9
Obsoletes:  centos-logos < 80.1-2
7439b9
Obsoletes:  redhat-logos < 80.1-2
7439b9
Provides:   system-logos = %{version}-%{release}
7439b9
Provides:   redhat-logos = %{version}-%{release}
7439b9
7439b9
Conflicts:  anaconda-images <= 10
7439b9
Conflicts:  redhat-artwork <= 5.0.5
7439b9
7439b9
# For splashtolss.sh
7439b9
%ifarch x86_64 i686
7439b9
BuildRequires: netpbm-progs
7439b9
%endif
7439b9
Requires(post): coreutils
7439b9
BuildRequires: hardlink
7439b9
7439b9
%description
7439b9
Licensed only for approved usage, see COPYING for details.
7439b9
7439b9
%package httpd
7439b9
Summary: CentOS-related icons and pictures used by httpd
7439b9
Provides: system-logos-httpd = %{version}-%{release}
7439b9
Provides: redhat-logos-httpd = %{version}-%{release}
7439b9
BuildArch: noarch
7439b9
7439b9
%description httpd
7439b9
Licensed only for approved usage, see COPYING for details.
7439b9
7439b9
%package ipa
7439b9
Summary: CentOS-related icons and pictures used by ipa
7439b9
Provides: system-logos-ipa = %{version}-%{release}
7439b9
Provides: redhat-logos-ipa = %{version}-%{release}
7439b9
BuildArch: noarch
7439b9
7439b9
%description ipa
7439b9
Licensed only for approved usage, see COPYING for details.
7439b9
7439b9
%package -n centos-backgrounds
7439b9
Summary: CentOS-related desktop backgrounds
7439b9
BuildArch: noarch
7439b9
7439b9
Obsoletes: redhat-logos < 80.1-2
7439b9
Provides:  system-backgrounds = %{version}-%{release}
7439b9
Requires:  redhat-logos = %{version}-%{release}
7439b9
7439b9
%description -n centos-backgrounds
7439b9
Licensed only for approved usage, see COPYING for details.
7439b9
7439b9
7439b9
%prep
7439b9
%setup -q
7439b9
7439b9
%build
7439b9
7439b9
%install
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/backgrounds/
7439b9
cp -r backgrounds/c8 $RPM_BUILD_ROOT%{_datadir}/backgrounds/
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/glib-2.0/schemas
7439b9
install -p -m 644 backgrounds/10_org.gnome.desktop.background.default.gschema.override $RPM_BUILD_ROOT%{_datadir}/glib-2.0/schemas
7439b9
install -p -m 644 backgrounds/10_org.gnome.desktop.screensaver.default.gschema.override $RPM_BUILD_ROOT%{_datadir}/glib-2.0/schemas
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/gnome-background-properties/
7439b9
install -p -m 644 backgrounds/desktop-backgrounds-default.xml $RPM_BUILD_ROOT%{_datadir}/gnome-background-properties/
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/firstboot/themes/fedora-%{codename}/
7439b9
for i in firstboot/* ; do
7439b9
  install -p -m 644 $i $RPM_BUILD_ROOT%{_datadir}/firstboot/themes/fedora-%{codename}/
7439b9
done
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
7439b9
for i in pixmaps/* ; do
7439b9
  install -p -m 644 $i $RPM_BUILD_ROOT%{_datadir}/pixmaps
7439b9
done
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/plymouth/themes/charge
7439b9
for i in plymouth/charge/* ; do
7439b9
  install -p -m 644 $i $RPM_BUILD_ROOT%{_datadir}/plymouth/themes/charge
7439b9
done
7439b9
7439b9
for size in 16x16 22x22 24x24 32x32 36x36 48x48 96x96 256x256 ; do
7439b9
  mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/$size/apps
7439b9
  for i in icons/hicolor/$size/apps/* ; do
7439b9
    install -p -m 644 $i $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/$size/apps
7439b9
  done
7439b9
done
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
7439b9
pushd $RPM_BUILD_ROOT%{_sysconfdir}
7439b9
ln -s %{_datadir}/icons/hicolor/16x16/apps/fedora-logo-icon.png favicon.png
7439b9
popd
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps
7439b9
install -p -m 644 icons/hicolor/scalable/apps/xfce4_xicon1.svg $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps
7439b9
install -p -m 644 icons/hicolor/scalable/apps/fedora-logo-icon.svg $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps/start-here.svg
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/places/
7439b9
pushd $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/places/
7439b9
ln -s ../apps/start-here.svg .
7439b9
popd
7439b9
7439b9
(cd anaconda; make DESTDIR=$RPM_BUILD_ROOT install)
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/redhat-logos
7439b9
cp -a fedora/*.svg $RPM_BUILD_ROOT%{_datadir}/redhat-logos
7439b9
7439b9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/ipa/ui/images
7439b9
cp -a ipa/*.png $RPM_BUILD_ROOT%{_datadir}/ipa/ui/images
7439b9
cp -a ipa/*.jpg $RPM_BUILD_ROOT%{_datadir}/ipa/ui/images
7439b9
7439b9
# save some dup'd icons
7439b9
# Except in /boot. Because some people think it is fun to use VFAT for /boot.
7439b9
/usr/sbin/hardlink -v %{buildroot}/usr
7439b9
7439b9
%ifnarch x86_64 i686
7439b9
rm -f $RPM_BUILD_ROOT%{_datadir}/anaconda/boot/splash.lss
7439b9
%endif
7439b9
7439b9
%post
7439b9
touch --no-create %{_datadir}/icons/hicolor || :
7439b9
7439b9
%postun
7439b9
if [ $1 -eq 0 ] ; then
7439b9
  touch --no-create %{_datadir}/icons/hicolor || :
7439b9
  gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
7439b9
fi
7439b9
7439b9
%posttrans
7439b9
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
7439b9
7439b9
%files
7439b9
%license COPYING
7439b9
%config(noreplace) %{_sysconfdir}/favicon.png
7439b9
%{_datadir}/glib-2.0/schemas/*.override
7439b9
%{_datadir}/firstboot/themes/fedora-%{codename}/
7439b9
%{_datadir}/plymouth/themes/charge/
7439b9
7439b9
%{_datadir}/pixmaps/*
7439b9
%exclude %{_datadir}/pixmaps/poweredby.png
7439b9
%{_datadir}/anaconda/pixmaps/*
7439b9
%ifarch x86_64 i686
7439b9
%{_datadir}/anaconda/boot/splash.lss
7439b9
%endif
7439b9
%{_datadir}/anaconda/boot/syslinux-splash.png
7439b9
%{_datadir}/icons/hicolor/*/apps/*
7439b9
%{_datadir}/icons/hicolor/*/places/*
7439b9
%{_datadir}/redhat-logos/
7439b9
7439b9
# we multi-own these directories, so as not to require the packages that
7439b9
# provide them, thereby dragging in excess dependencies.
7439b9
%dir %{_datadir}/backgrounds
7439b9
%dir %{_datadir}/icons/hicolor/
7439b9
%dir %{_datadir}/icons/hicolor/16x16/
7439b9
%dir %{_datadir}/icons/hicolor/16x16/apps/
7439b9
%dir %{_datadir}/icons/hicolor/22x22/
7439b9
%dir %{_datadir}/icons/hicolor/22x22/apps/
7439b9
%dir %{_datadir}/icons/hicolor/24x24/
7439b9
%dir %{_datadir}/icons/hicolor/24x24/apps/
7439b9
%dir %{_datadir}/icons/hicolor/32x32/
7439b9
%dir %{_datadir}/icons/hicolor/32x32/apps/
7439b9
%dir %{_datadir}/icons/hicolor/36x36/
7439b9
%dir %{_datadir}/icons/hicolor/36x36/apps/
7439b9
%dir %{_datadir}/icons/hicolor/48x48/
7439b9
%dir %{_datadir}/icons/hicolor/48x48/apps/
7439b9
%dir %{_datadir}/icons/hicolor/96x96/
7439b9
%dir %{_datadir}/icons/hicolor/96x96/apps/
7439b9
%dir %{_datadir}/icons/hicolor/256x256/
7439b9
%dir %{_datadir}/icons/hicolor/256x256/apps/
7439b9
%dir %{_datadir}/icons/hicolor/scalable/
7439b9
%dir %{_datadir}/icons/hicolor/scalable/apps/
7439b9
%dir %{_datadir}/icons/hicolor/scalable/places/
7439b9
%dir %{_datadir}/anaconda
7439b9
%dir %{_datadir}/anaconda/boot/
7439b9
%dir %{_datadir}/anaconda/pixmaps
7439b9
%dir %{_datadir}/firstboot/
7439b9
%dir %{_datadir}/firstboot/themes/
7439b9
%dir %{_datadir}/plymouth/
7439b9
%dir %{_datadir}/plymouth/themes/
7439b9
7439b9
%files httpd
7439b9
%license COPYING
7439b9
%{_datadir}/pixmaps/poweredby.png
7439b9
7439b9
%files ipa
7439b9
%license COPYING
7439b9
%{_datadir}/ipa/ui/images/*
7439b9
# we multi-own these directories, so as not to require the packages that
7439b9
# provide them, thereby dragging in excess dependencies.
7439b9
%dir %{_datadir}/ipa
7439b9
%dir %{_datadir}/ipa/ui
7439b9
%dir %{_datadir}/ipa/ui/images
7439b9
7439b9
%files -n centos-backgrounds
7439b9
%license COPYING
7439b9
%{_datadir}/backgrounds/*
7439b9
%{_datadir}/gnome-background-properties/*
7439b9
7439b9
7439b9
%changelog
7439b9
* Sun Apr 28 2019 Alain Reguera Delgado <alain.reguera@gmail.com> - 80.5-1
7439b9
- Add CentOS brands
7439b9
- Add CentOS backgrounds based on artistic motif sketch 4
7439b9
- Support rolling notes localization in CentOS installer
7439b9
7439b9
* Mon Oct 15 2018 Ray Strode <rstrode@redhat.com> - 80.5-1
7439b9
- Another wallpaper content update
7439b9
  Related: #1636822
7439b9
7439b9
* Mon Oct 15 2018 Thomas Woerner <twoerner@redhat.com> - 80.4-1
7439b9
- Moved ipa/idm logos and background to redhat-logos-ipa
7439b9
  Related: #1626507
7439b9
7439b9
* Wed Oct 10 2018 Ray Strode <rstrode@redhat.com> - 80.3-1
7439b9
- Make night time pattern lighter
7439b9
  Resolves: #1628092
7439b9
- Remove Alpha from logos
7439b9
  Resolves: #1637446
7439b9
- Remove Alpha from wallpapers
7439b9
  Resolves: #1636822
7439b9
7439b9
* Tue Sep 18 2018 Kalev Lember <klember@redhat.com> - 80.2-1
7439b9
- Install an override for GNOME lock screen background
7439b9
- Resolves: #1630296
7439b9
7439b9
* Fri Sep 07 2018 Stephen Gallagher <sgallagh@redhat.com> - 80.1-2
7439b9
- Separate desktop backgrounds into their own subpackage
7439b9
- Correct the description to match the license terms
7439b9
- Drop vestiges of fedora-logos
7439b9
7439b9
* Thu Aug 30 2018 Ray Strode <rstrode@redhat.com> - 80.1-1
7439b9
- Add new plymouth branding
7439b9
  Resolves: #1623525
7439b9
7439b9
* Mon Jul 16 2018 Ray Strode <rstrode@redhat.com> - 80.0-2
7439b9
- Drop the BR on png optimizers we don't use
7439b9
  Related: #1593166
7439b9
7439b9
* Thu Jun 28 2018 David Cantrell <dcantrell@redhat.com> - 80.0-1
7439b9
- Drop the BR on libicns-utils and other cleanups
7439b9
  Resolves: rhbz#1596389
7439b9
7439b9
* Thu May  3 2018 Jan Horak <jhorak@redhat.com> - 79.0.6-2
7439b9
- Removed ImageMagick buildrequire as no longer needed
7439b9
7439b9
* Tue Apr 10 2018 Ray Strode <rstrode@redhat.com> - 79.0.6-1
7439b9
- more background updates
7439b9
7439b9
* Wed Nov 29 2017 Ray Strode <rstrode@redhat.com> - 79.0.5-1
7439b9
- deduplicate patterncity wallpapers
7439b9
7439b9
* Wed Nov 29 2017 Ray Strode <rstrode@redhat.com> - 79.0.4-1
7439b9
- more background updates
7439b9
7439b9
* Wed Nov 29 2017 Ray Strode <rstrode@redhat.com> - 79.0.3-1
7439b9
- Add control-center wallpaper metadata files
7439b9
- Add latest update for backgrouns from jimmac
7439b9
7439b9
* Tue Nov 28 2017 Ray Strode <rstrode@redhat.com> - 79.0.2-1
7439b9
- Add update for backgrounds from jimmac
7439b9
7439b9
* Tue Nov 21 2017 Ray Strode <rstrode@redhat.com> - 79.0.1-1
7439b9
- Update artwork with first cut alpha content
7439b9
- Drop obsolete bits of package like KDE artwork and references
7439b9
  to Bluecurve
7439b9
7439b9
* Fri Nov  3 2017 Ray Strode <rstrode@redhat.com> - 79.0.0-1
7439b9
- Merge in latest changes from fedora-logos and rhel7 redhat-logos
7439b9
7439b9
* Fri Sep 22 2017 Troy Dawson <tdawson@redhat.com> - 79.0.0-0.1
7439b9
- Initial build for rhel-8
7439b9
- Imported from generic-logos 18.0.0-4
7439b9
7439b9
* Mon Apr 11 2016 Ray Strode <rstrode@redhat.com> - 70.0.3-6
7439b9
- fix Source line
7439b9
  Related: #1325373
7439b9
7439b9
* Mon Apr 11 2016 Ray Strode <rstrode@redhat.com> - 70.0.3-5
7439b9
- new developers³ banner
7439b9
  Resolves: #1325373
7439b9
7439b9
* Mon Mar 03 2014 Than Ngo <than@redhat.com> - 70.0.3-4
7439b9
- broken 24x24 icon fix
7439b9
7439b9
* Mon Feb 24 2014 Than Ngo <than@redhat.com> - 70.0.3-3
7439b9
- add backgrounds to KDE wallpaper, bz#1068687
7439b9
7439b9
* Mon Feb 17 2014 Ray Strode <rstrode@redhat.com> 70.0.3-2
7439b9
- Add default.xml back to the build
7439b9
  Related: #1053025
7439b9
7439b9
* Mon Feb 17 2014 Ray Strode <rstrode@redhat.com> 70.0.3-1
7439b9
- Shrink supplemental backgrounds by making them jpegs instead
7439b9
  of pngs.
7439b9
  Related: #1053025 1065938
7439b9
7439b9
* Tue Feb 11 2014 Ray Strode <rstrode@redhat.com> 70.0.2-1
7439b9
- Add supplemental backgrounds
7439b9
  Resolves: #1053025
7439b9
7439b9
* Tue Feb 11 2014 Ray Strode <rstrode@redhat.com> 70.0.1-1
7439b9
- Add anaconda branding
7439b9
  Related: #1045250 1063197
7439b9
7439b9
* Tue Feb 11 2014 Ray Strode <rstrode@redhat.com> 70.0.0-1
7439b9
- Add firstboot stuff
7439b9
  Resolves: #1058397
7439b9
7439b9
* Mon Feb 10 2014 Ray Strode <rstrode@redhat.com> 69.1.15-1
7439b9
- Drop bootloader stuff
7439b9
  Resolves: #1063246
7439b9
7439b9
* Wed Jan 22 2014 Ray Strode <rstrode@redhat.com> 69.1.14-1
7439b9
- Improve /usr/share/pixmaps/fedora-logo.png for control-center
7439b9
  Related: #1053000
7439b9
7439b9
* Wed Jan 22 2014 Ray Strode <rstrode@redhat.com> 69.1.13-1
7439b9
- more branding updates
7439b9
  Related: #1042818
7439b9
7439b9
* Tue Jan 21 2014 Ray Strode <rstrode@redhat.com> 69.1.12-1
7439b9
- Add back a login screen logo
7439b9
  Resolves: #1042818
7439b9
7439b9
* Tue Jan 21 2014 Ray Strode <rstrode@redhat.com> 69.1.11-1
7439b9
- Make the (R) symbol bigger in the panel logo
7439b9
  Resolves: #1052978
7439b9
7439b9
* Wed Jan  8 2014 David Shea <dshea@redhat.com> - 69.1.10-1
7439b9
- Added release notes images for anaconda
7439b9
  Resolves: #1049655
7439b9
7439b9
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 69.1.9-2
7439b9
- Mass rebuild 2013-12-27
7439b9
7439b9
* Mon Nov 04 2013 Ray Strode <rstrode@redhat.com> 69.1.9-1
7439b9
- Fix file conflict
7439b9
  Resolves: #1025559
7439b9
7439b9
* Fri Oct 25 2013 Ray Strode <rstrode@redhat.com> 69.1.8-1
7439b9
- Update plymouth theme
7439b9
  Related: #1002219
7439b9
7439b9
* Mon Oct 21 2013 Ray Strode <rstrode@redhat.com> 69.1.6-1
7439b9
- Update syslinux background to black
7439b9
  Resolves: #1003873
7439b9
- Prune unused images from anaconda/ after talking to #anaconda
7439b9
7439b9
* Wed Jul 31 2013 Ray Strode <rstrode@redhat.com> 69.1.5-1
7439b9
- Update header image
7439b9
  Resolves: #988066
7439b9
7439b9
* Tue Jul 30 2013 Than Ngo <than@redhat.com> - 69.1.4-1
7439b9
- cleanup kde theme
7439b9
7439b9
* Wed Jul 17 2013 Matthias Clasen <mclasen@redhat.com> 69.1.3-3
7439b9
- Drop unused old background (#918324)
7439b9
7439b9
* Thu Jul 11 2013 Ray Strode <rstrode@redhat.com> 69.1.3-2
7439b9
- Drop fedora.icns (It brings in an undesirable dependency,
7439b9
  and we don't support the platform it's designed for
7439b9
  anyway)
7439b9
7439b9
* Wed Apr 24 2013 Than Ngo <than@redhat.com> - 69.1.3-1
7439b9
- Resolves: #949670, rendering issue in kdm theme
7439b9
- fix background in kdm theme
7439b9
7439b9
* Mon Jan 21 2013 Ray Strode <rstrode@redhat.com> 69.1.2-1
7439b9
- background reversion fixes.
7439b9
  Resolves: #884841
7439b9
7439b9
* Thu Jan 17 2013 Ray Strode <rstrode@redhat.com> 69.1.1-1
7439b9
- Revert to earlier header image
7439b9
  Resolves: #884841
7439b9
7439b9
* Wed Nov 14 2012 Ray Strode <rstrode@redhat.com> 69.1.0-1
7439b9
- Update to latest backgrounds
7439b9
  Resolves: #860311
7439b9
- Drop Fedora icon theme
7439b9
  Resolves: #800475
7439b9
7439b9
* Fri Nov  9 2012 Matthias Clasen <mclasen@redhat.com> 69.0.9-3
7439b9
- Fix a typo in the default background override
7439b9
7439b9
* Wed Oct 31 2012 Tomas Bzatek <tbzatek@redhat.com> 69.0.9-2
7439b9
- Provide the virtual system-backgrounds-gnome for gnome-desktop3
7439b9
7439b9
* Tue Oct 30 2012 Ray Strode <rstrode@redhat.com> 69.0.9-1
7439b9
- Install default background override file here, now that
7439b9
  desktop-backgrounds-gnome is gone
7439b9
7439b9
* Tue Oct 30 2012 Than Ngo <than@redhat.com> - 69.0.8-1
7439b9
- bz#835922, missing kde wallpaper
7439b9
7439b9
* Mon Jun 18 2012 Ray Strode <rstrode@redhat.com> 69.0.7-1
7439b9
- Update background to RHEL7 branding
7439b9
  Related: #833137
7439b9
7439b9
* Thu May 10 2012 Than Ngo <than@redhat.com> - 69.0.6-1
7439b9
- add missing kde desktoptheme
7439b9
7439b9
* Tue Mar 06 2012 Than Ngo <than@redhat.com> - 69.0.5-1
7439b9
- bz#798621, add missing kde themes
7439b9
7439b9
* Tue Feb 07 2012 Ray Strode <rstrode@redhat.com> 69.0.4-1
7439b9
- More syslinux splash updates
7439b9
  Related: #786885
7439b9
7439b9
* Fri Feb 03 2012 Ray Strode <rstrode@redhat.com> 69.0.3-1
7439b9
- Three's a charm?
7439b9
  Resolves: #786885
7439b9
7439b9
* Thu Feb 02 2012 Ray Strode <rstrode@redhat.com> 69.0.2-1
7439b9
- syslinux splash updates
7439b9
  Resolves: #786885
7439b9
7439b9
* Thu Jan 26 2012 Ray Strode <rstrode@redhat.com> 69.0.1-1
7439b9
- More updates (problems spotted by stickster)
7439b9
7439b9
* Tue Nov 15 2011 Ray Strode <rstrode@redhat.com> - 69.0.0-1
7439b9
- Resync from fedora-logos-16.0.2-1
7439b9
7439b9
* Wed Aug 25 2010 Ray Strode <rstrode@redhat.com> 60.0.14-1
7439b9
- Update description and COPYING file
7439b9
  Resolves: #627374
7439b9
7439b9
* Fri Jul 30 2010 Ray Strode <rstrode@redhat.com> 60.0.13-1
7439b9
- Add header image
7439b9
  Related: #558608
7439b9
7439b9
* Fri Jul 16 2010 Ray Strode <rstrode@redhat.com> 60.0.12-1
7439b9
- Drop glow theme
7439b9
  Resolves: #615251
7439b9
7439b9
* Tue Jun 15 2010 Matthias Clasen <mclasen@redhat.com> 60.0.11-2
7439b9
- Silence gtk-update-icon-cache in %%post and %%postun
7439b9
Resolves: #589983
7439b9
7439b9
* Fri May 21 2010 Ray Strode <rstrode@redhat.com> 60.0.11-1
7439b9
- Update anaconda artwork based on feedback
7439b9
  Resolves: #594825
7439b9
7439b9
* Tue May 11 2010 Than Ngo <than@redhat.com> - 60.0.10-1
7439b9
- update ksplash theme to match the latest splash
7439b9
7439b9
* Thu May 06 2010 Ray Strode <rstrode@redhat.com> 60.0.9-1
7439b9
- Add back grub.splash
7439b9
  Resolves: 589703
7439b9
- Add extra frame to plymouth splash
7439b9
  Related: #558608
7439b9
7439b9
* Wed May 05 2010 Ray Strode <rstrode@redhat.com> 60.0.8-1
7439b9
- Add large logo for compiz easter egg
7439b9
  Resolves: #582411
7439b9
- Drop Bluecurve
7439b9
  Related: #559765
7439b9
- Install logo icons in System theme
7439b9
  Related: #566370
7439b9
7439b9
* Tue May 04 2010 Ray Strode <rstrode@redhat.com> 60.0.7-1
7439b9
- Rename firstboot theme to RHEL
7439b9
  Resolves: #566173
7439b9
- Add new plymouth artwork
7439b9
  Related: #558608
7439b9
- Update backgrounds
7439b9
- Update anaconda
7439b9
- Drop gnome-splash
7439b9
- Drop empty screensaver dir
7439b9
  Resolves: #576912
7439b9
- Drop grub splash at request of artists
7439b9
7439b9
* Thu Apr 22 2010 Than Ngo <than@redhat.com> - 60.0.6-1
7439b9
- fix many cosmetic issues in kdm/ksplash theme
7439b9
7439b9
* Mon Apr 12 2010 Ray Strode <rstrode@redhat.com> 60.0.5-3
7439b9
Resolves: #576912
7439b9
- Readd default.xml
7439b9
7439b9
* Fri Apr 09 2010 Ray Strode <rstrode@redhat.com> 60.0.5-2
7439b9
- Make the upgrade path from alpha a little smoother
7439b9
  Resolves: #580475
7439b9
7439b9
* Wed Apr 07 2010 Ray Strode <rstrode@redhat.com> 60.0.5-1
7439b9
Resolves: #576912
7439b9
- Update wallpapers
7439b9
7439b9
* Tue Feb 23 2010 Ray Strode <rstrode@redhat.com> 60.0.4-3
7439b9
Resolves: #559695
7439b9
- Drop xpm symlinking logic
7439b9
- hide anaconda image dir behind macro
7439b9
7439b9
* Wed Feb 17 2010 Ray Strode <rstrode@redhat.com> 60.0.4-1
7439b9
Resolves: #565886
7439b9
- One more update to the KDE artwork
7439b9
- Revert firstboot theme rename until later since compat link
7439b9
  is causing problems.
7439b9
7439b9
* Wed Feb 17 2010 Ray Strode <rstrode@redhat.com> 60.0.3-1
7439b9
Resolves: #565886
7439b9
- Put backgrounds here since they're "trade dress"
7439b9
- Rename firstboot theme from leonidas to RHEL (with compat link)
7439b9
7439b9
* Wed Feb 17 2010 Jaroslav Reznik <jreznik@redhat.com> 60.0.2-1
7439b9
- KDE theme merged into redhat-logos package
7439b9
- updated license (year in copyright)
7439b9
7439b9
* Fri Feb 05 2010 Ray Strode <rstrode@redhat.com> 60.0.1-3
7439b9
Resolves: #559695
7439b9
- spec file cleanups
7439b9
7439b9
* Mon Jan 25 2010 Than Ngo <than@redhat.com> - 60.0.1-2
7439b9
- drop useless leonidas in KDE
7439b9
7439b9
* Fri Jan 22 2010 Ray Strode <rstrode@redhat.com> 60.0.1-1
7439b9
Resolves: #556906
7439b9
- Add updated artwork for Beta
7439b9
7439b9
* Thu Jan 21 2010 Matthias Clasen <mclasen@redhat.com> 60.0.0-2
7439b9
- Remove a non-UTF-8 char from the spec
7439b9
 
7439b9
* Wed Jan 20 2010 Ray Strode <rstrode@redhat.com> 60.0.0-1
7439b9
Resolves: #556906
7439b9
- Add bits from glow plymouth theme
7439b9
7439b9
* Wed Jan 20 2010 Ray Strode <rstrode@redhat.com> - 11.90.4-1
7439b9
Resolves: #556906
7439b9
- Update artwork for Beta
7439b9
7439b9
* Tue Dec 08 2009 Dennis Gregorovic <dgregor@redhat.com> - 11.90.3-1.1
7439b9
- Rebuilt for RHEL 6
7439b9
7439b9
* Mon Jun 01 2009 Ray Strode <rstrode@redhat.com> - 11.90.3-1
7439b9
- remove some of the aliasing from the charge theme
7439b9
7439b9
* Fri May 29 2009 Ray Strode <rstrode@redhat.com> - 11.90.2-1
7439b9
- Drop backgrounds again because they don't actually contain logos
7439b9
7439b9
* Fri May 29 2009 Ray Strode <rstrode@redhat.com> - 11.90.1-1
7439b9
- Install new backgrounds
7439b9
7439b9
* Fri May 29 2009 Ray Strode <rstrode@redhat.com> - 11.90.0-2
7439b9
- Rebuild using tarball dist from cvs
7439b9
7439b9
* Thu May 28 2009 Ray Strode <rstrode@redhat.com> - 11.90.0-1
7439b9
- Update artwork for RHEL 6 alpha
7439b9
7439b9
* Thu Jan  4 2007 Jeremy Katz <katzj@redhat.com> - 4.9.16-1
7439b9
- Fix syslinux splash conversion, Resolves: #209201
7439b9
7439b9
* Fri Dec  1 2006 Matthias Clasen <mclasen@redhat.com> - 4.9.15-1
7439b9
- Readd rhgb/main-logo.png, Resolves: #214868
7439b9
7439b9
* Tue Nov 28 2006 David Zeuthen <davidz@redhat.com> - 4.9.14-1
7439b9
- Don't include LILO splash. Resolves: #216748
7439b9
- New syslinux-splash from Diana Fong. Resolves: #217493
7439b9
7439b9
* Tue Nov 21 2006 David Zeuthen <davidz@redhat.com> - 4.9.13-1
7439b9
- Make firstboot/splash-small.png completely transparent
7439b9
- Fix up date for last commit
7439b9
- Resolves: #216501
7439b9
7439b9
* Mon Nov 20 2006 David Zeuthen <davidz@redhat.com> - 4.9.12-1
7439b9
- New shadowman gdm logo from Diana Fong (#216370)
7439b9
7439b9
* Wed Nov 15 2006 David Zeuthen <davidz@redhat.com> - 4.9.10-1
7439b9
- New shadowman logos from Diana Fong (#215614)
7439b9
7439b9
* Fri Nov 10 2006 Than Ngo <than@redhat.com> - 4.9.9-1
7439b9
- add missing KDE splash (#212130)
7439b9
7439b9
* Wed Oct 25 2006 David Zeuthen <davidz@redhat.com> - 4.9.8-1
7439b9
- Add new shadowman logos (#211837)
7439b9
7439b9
* Mon Oct 23 2006 Matthias Clasen <mclasen@redhat.com> - 4.9.7-1 
7439b9
- Include the xml file in the tarball
7439b9
7439b9
* Mon Oct 23 2006 Matthias Clasen <mclasen@redhat.com> - 4.9.6-1
7439b9
- Add names for the default background (#211556)
7439b9
7439b9
* Tue Oct 17 2006 Matthias Clasen <mclasen@redhat.com> - 4.9.5-1
7439b9
- Update the url pointing to the trademark policy (#187124)
7439b9
7439b9
* Thu Oct  5 2006 Matthias Clasen <mclasen@redhat.com> - 4.9.4-1
7439b9
- Fix some colormap issues in the syslinux-splash (#209201)
7439b9
7439b9
* Wed Sep 20 2006 Ray Strode <rstrode@redhat.com> - 4.9.2-1
7439b9
- ship new artwork from Diana Fong for login screen
7439b9
7439b9
* Tue Sep 19 2006 John (J5) Palmieri <johnp@redhat.com> - 1.2.8-1
7439b9
- Fix packager to dist the xml background file
7439b9
7439b9
* Tue Sep 19 2006 John (J5) Palmieri <johnp@redhat.com> - 1.2.7-1
7439b9
- Add background xml file for the new backgrounds
7439b9
- Add po directory for translating the background xml
7439b9
7439b9
* Tue Sep 19 2006 John (J5) Palmieri <johnp@redhat.com> - 1.2.6-1
7439b9
- Add new RHEL graphics
7439b9
7439b9
* Fri Aug 25 2006 John (J5) Palmieri <johnp@redhat.com> - 1.2.5-1
7439b9
- Modify the anaconda/splash.png file to say Beta instead of Alpha
7439b9
7439b9
* Tue Aug 01 2006 John (J5) Palmieri <johnp@redhat.com> - 1.2.4-1
7439b9
- Add firstboot-left to the firstboot images
7439b9
7439b9
* Fri Jul 28 2006 John (J5) Palmieri <johnp@redhat.com> - 1.2.3-1
7439b9
- Add attributions to the background graphics metadata
7439b9
- Add a 4:3 asspect ratio version of the default background graphic
7439b9
7439b9
* Thu Jul 27 2006 John (J5) Palmieri <johnp@redhat.com> - 1.2.2-1
7439b9
- Add default backgrounds
7439b9
7439b9
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 1.2.1-1
7439b9
- Add system lock dialog
7439b9
7439b9
* Thu Jun 15 2006 Jeremy Katz <katzj@redhat.com> - 1.2.0-1
7439b9
- alpha graphics
7439b9
7439b9
* Wed Aug  3 2005 David Zeuthen <davidz@redhat.com> - 1.1.26-1
7439b9
- Add russian localisation for rnotes (#160738)
7439b9
7439b9
* Thu Dec  2 2004 Jeremy Katz <katzj@redhat.com> - 1.1.25-1
7439b9
- add rnotes
7439b9
7439b9
* Fri Nov 19 2004 Alexander Larsson <alexl@redhat.com> - 1.1.24-1
7439b9
- Add rhgb logo (#139788)
7439b9
7439b9
* Mon Nov  1 2004 Alexander Larsson <alexl@redhat.com> - 1.1.22-1
7439b9
- Move rh logo from redhat-artwork here (#137593)
7439b9
7439b9
* Fri Oct 29 2004 Alexander Larsson <alexl@redhat.com> - 1.1.21-1
7439b9
- Fix alignment of gnome splash screen (#137360)
7439b9
7439b9
* Fri Oct  1 2004 Alexander Larsson <alexl@redhat.com> - 1.1.20-1
7439b9
- New gnome splash
7439b9
7439b9
* Tue Aug 24 2004 Jeremy Katz <katzj@redhat.com> - 1.1.19-1
7439b9
- update firstboot splash
7439b9
7439b9
* Sat Jun  5 2004 Jeremy Katz <katzj@redhat.com> - 1.1.18-1
7439b9
- provides: system-logos
7439b9
7439b9
* Thu Jun  3 2004 Jeremy Katz <katzj@redhat.com> - 1.1.17-1
7439b9
- add anaconda bits
7439b9
7439b9
* Tue Mar 23 2004 Alexander Larsson <alexl@redhat.com> 1.1.16-1
7439b9
- fix the logos in the gdm theme
7439b9
7439b9
* Fri Jul 18 2003 Havoc Pennington <hp@redhat.com> 1.1.15-1
7439b9
- build new stuff from garrett
7439b9
7439b9
* Wed Feb 26 2003 Havoc Pennington <hp@redhat.com> 1.1.14-1
7439b9
- build new stuff in cvs
7439b9
7439b9
* Mon Feb 24 2003 Jeremy Katz <katzj@redhat.com> 1.1.12-1
7439b9
- updated again
7439b9
- actually update the grub splash
7439b9
7439b9
* Fri Feb 21 2003 Jeremy Katz <katzj@redhat.com> 1.1.11-1
7439b9
- updated splash screens from Garrett
7439b9
7439b9
* Tue Feb 18 2003 Havoc Pennington <hp@redhat.com> 1.1.10-1
7439b9
- move in a logo from gdm theme #84543
7439b9
7439b9
* Mon Feb  3 2003 Havoc Pennington <hp@redhat.com> 1.1.9-1
7439b9
- rebuild
7439b9
7439b9
* Wed Jan 15 2003 Brent Fox <bfox@redhat.com> 1.1.8-1
7439b9
- rebuild for completeness
7439b9
7439b9
* Mon Dec 16 2002 Havoc Pennington <hp@redhat.com>
7439b9
- rebuild
7439b9
7439b9
* Thu Sep  5 2002 Havoc Pennington <hp@redhat.com>
7439b9
- add firstboot images to makefile/specfile
7439b9
- add /usr/share/pixmaps stuff
7439b9
- add splash screen images
7439b9
- add COPYING
7439b9
7439b9
* Thu Sep  5 2002 Jeremy Katz <katzj@redhat.com>
7439b9
- add boot loader images
7439b9
7439b9
* Thu Sep  5 2002 Havoc Pennington <hp@redhat.com>
7439b9
- move package to CVS
7439b9
7439b9
* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
7439b9
- Add a shadowman-only derived from redhat-transparent.png
7439b9
7439b9
* Thu May 23 2002 Tim Powers <timp@redhat.com>
7439b9
- automated rebuild
7439b9
7439b9
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
7439b9
- automated rebuild
7439b9
7439b9
* Thu May 31 2001 Owen Taylor <otaylor@redhat.com>
7439b9
- Fix alpha channel in redhat-transparent.png
7439b9
7439b9
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
7439b9
- automatic rebuild
7439b9
7439b9
* Mon Jun 19 2000 Owen Taylor <otaylor@redhat.com>
7439b9
- Add %%defattr
7439b9
7439b9
* Mon Jun 19 2000 Owen Taylor <otaylor@redhat.com>
7439b9
- Add version of logo for embossing on the desktop
7439b9
7439b9
* Tue May 16 2000 Preston Brown <pbrown@redhat.com>
7439b9
- add black and white version of our logo (for screensaver).
7439b9
7439b9
* Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
7439b9
- rebuild for new description.
7439b9
7439b9
* Sat Sep 25 1999 Bill Nottingham <notting@redhat.com>
7439b9
- different.
7439b9
7439b9
* Mon Sep 13 1999 Preston Brown <pbrown@redhat.com>
7439b9
- added transparent mini and 32x32 round icons
7439b9
7439b9
* Sat Apr 10 1999 Michael Fulbright <drmike@redhat.com>
7439b9
- added rhad logos
7439b9
7439b9
* Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
7439b9
- added smaller redhat logo for use on web page
7439b9
7439b9
* Wed Apr 07 1999 Preston Brown <pbrown@redhat.com>
7439b9
- added transparent large redhat logo
7439b9
7439b9
* Tue Apr 06 1999 Bill Nottingham <notting@redhat.com>
7439b9
- added mini-* links to make AnotherLevel happy
7439b9
7439b9
* Mon Apr 05 1999 Preston Brown <pbrown@redhat.com>
7439b9
- added copyright
7439b9
7439b9
* Tue Mar 30 1999 Michael Fulbright <drmike@redhat.com>
7439b9
- added 48 pixel rounded logo image for gmc use
7439b9
7439b9
* Mon Mar 29 1999 Preston Brown <pbrown@redhat.com>
7439b9
- package created