automatic version update by autodist [release 15.04.3-1mamba;Thu Jul 02 2015]
This commit is contained in:
parent
e45de8a3de
commit
9b5c1b2755
@ -1,4 +1,4 @@
|
||||
# oxygen-icons
|
||||
|
||||
KDE Frameworks 5 Oxygen icons theme.
|
||||
Oxygen icons for the KDE Software Compilation 4.
|
||||
|
||||
|
@ -1,214 +1,342 @@
|
||||
%define majver %(echo %version | cut -d. -f1-2)
|
||||
|
||||
Name: oxygen-icons
|
||||
Version: 5.113.0
|
||||
Version: 15.04.3
|
||||
Release: 1mamba
|
||||
Summary: KDE Frameworks 5 Oxygen icons theme
|
||||
Summary: Oxygen icons for the KDE Software Compilation 4
|
||||
Group: Graphical Desktop/Look 'n' feel
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://kde.org/
|
||||
Source: https://download.kde.org/stable/frameworks/%{majver}/oxygen-icons-%{version}.tar.xz
|
||||
URL: http://www.oxygen-icons.org
|
||||
Source0: http://download.kde.org/stable/applications/%{version}/src/oxygen-icons-%{version}.tar.xz
|
||||
Source1: openmamba.svgz
|
||||
License: LGPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: cmake
|
||||
BuildRequires: rpm-macros-kde5
|
||||
BuildRequires: extra-cmake-modules
|
||||
BuildRequires: ImageMagick
|
||||
Provides: oxygen-icons5
|
||||
Obsoletes: oxygen-icons5 < 5.113.0
|
||||
Provides: oxygen-icons-svg
|
||||
Obsoletes: oxygen-icons-svg < 5.83.0
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
KDE Frameworks 5 Oxygen icons theme.
|
||||
Oxygen icons for the KDE Software Compilation 4.
|
||||
|
||||
%package svg
|
||||
Summary: Vectorial (SVG) Oxygen icons for KDE Software Compilation 4
|
||||
Group: Graphical Desktop/Look 'n' feel
|
||||
|
||||
%description svg
|
||||
Vectorial (SVG) Oxygen icons for KDE Software Compilation 4.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%cmake_kde5 -d build
|
||||
%cmake_kde4 -d build
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall -C build
|
||||
|
||||
cp -r scalable %{buildroot}%{_kde4_icondir}/oxygen/
|
||||
|
||||
# install openmamba icons
|
||||
for s in 16x16 22x22 32x32 48x48 64x64 128x128 256x256; do
|
||||
convert -background none -resize $s %{SOURCE1} \
|
||||
%{buildroot}%{_datadir}/icons/oxygen/base/$s/apps/openmamba.png
|
||||
rm %{buildroot}%{_datadir}/icons/oxygen/base/$s/places/start-here-kde.png
|
||||
rm %{buildroot}%{_datadir}/icons/oxygen/base/$s/places/start-here.png
|
||||
ln -s ../apps/openmamba.png %{buildroot}%{_datadir}/icons/oxygen/base/$s/places/start-here-kde.png
|
||||
ln -s ../apps/openmamba.png %{buildroot}%{_datadir}/icons/oxygen/base/$s/places/start-here.png
|
||||
%{buildroot}%{_kde4_icondir}/oxygen/$s/apps/openmamba.png
|
||||
rm %{buildroot}%{_kde4_icondir}/oxygen/$s/places/start-here-kde.png
|
||||
rm %{buildroot}%{_kde4_icondir}/oxygen/$s/places/start-here.png
|
||||
ln -s ../apps/openmamba.png %{buildroot}%{_kde4_icondir}/oxygen/$s/places/start-here-kde.png
|
||||
ln -s ../apps/openmamba.png %{buildroot}%{_kde4_icondir}/oxygen/$s/places/start-here.png
|
||||
done
|
||||
|
||||
#install -m0644 %{S:1} %{buildroot}%{_datadir}/icons/oxygen/scalable/places/start-here-kde.svgz
|
||||
#install -m0644 %{S:1} %{buildroot}%{_datadir}/icons/oxygen/scalable/apps/openmamba.svgz
|
||||
install -m0644 %{S:1} %{buildroot}%{_kde4_icondir}/oxygen/scalable/places/start-here-kde.svgz
|
||||
install -m0644 %{S:1} %{buildroot}%{_kde4_icondir}/oxygen/scalable/apps/openmamba.svgz
|
||||
|
||||
%post
|
||||
touch --no-create %{_kde4_iconsdir}/oxygen &>/dev/null || :
|
||||
|
||||
%posttrans
|
||||
gtk-update-icon-cache %{_kde4_iconsdir}/oxygen &>/dev/null || :
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
touch --no-create %{_kde4_iconsdir}/oxygen &>/dev/null
|
||||
gtk-update-icon-cache %{_kde4_iconsdir}/oxygen &>/dev/null
|
||||
fi
|
||||
exit 0
|
||||
|
||||
%post svg
|
||||
touch --no-create %{_kde4_iconsdir}/oxygen &>/dev/null || :
|
||||
|
||||
%posttrans svg
|
||||
gtk-update-icon-cache %{_kde4_iconsdir}/oxygen &>/dev/null || :
|
||||
|
||||
%postun svg
|
||||
if [ $1 -eq 0 ] ; then
|
||||
touch --no-create %{_kde4_iconsdir}/oxygen &>/dev/null
|
||||
gtk-update-icon-cache %{_kde4_iconsdir}/oxygen &>/dev/null
|
||||
fi
|
||||
exit 0
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%posttrans
|
||||
gtk-update-icon-cache %{_datadir}/icons/oxygen/base &>/dev/null || :
|
||||
%files svg
|
||||
%defattr(-,root,root)
|
||||
%{_kde4_icondir}/oxygen/scalable
|
||||
%doc AUTHORS COPYING
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%dir %{_datadir}/icons/oxygen/base
|
||||
%{_datadir}/icons/oxygen/index.theme
|
||||
%dir %{_datadir}/icons/oxygen/base
|
||||
%dir %{_datadir}/icons/oxygen/base/*/*
|
||||
%{_datadir}/icons/oxygen/base/*/*/*.png
|
||||
%doc AUTHORS COPYING COPYING.LIB
|
||||
%{_kde4_icondir}/oxygen/index.theme
|
||||
%dir %{_kde4_icondir}/oxygen
|
||||
%dir %{_kde4_icondir}/oxygen/8x8
|
||||
%{_kde4_icondir}/oxygen/8x8/*
|
||||
%dir %{_kde4_icondir}/oxygen/16x16
|
||||
%{_kde4_icondir}/oxygen/16x16/*
|
||||
%dir %{_kde4_icondir}/oxygen/22x22
|
||||
%{_kde4_icondir}/oxygen/22x22/*
|
||||
%dir %{_kde4_icondir}/oxygen/32x32
|
||||
%{_kde4_icondir}/oxygen/32x32/*
|
||||
%dir %{_kde4_icondir}/oxygen/48x48
|
||||
%{_kde4_icondir}/oxygen/48x48/*
|
||||
%dir %{_kde4_icondir}/oxygen/64x64
|
||||
%{_kde4_icondir}/oxygen/64x64/*
|
||||
%dir %{_kde4_icondir}/oxygen/128x128
|
||||
%{_kde4_icondir}/oxygen/128x128/*
|
||||
%dir %{_kde4_icondir}/oxygen/256x256
|
||||
%{_kde4_icondir}/oxygen/256x256/*
|
||||
|
||||
%changelog
|
||||
* Sun Dec 17 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 5.113.0-1mamba
|
||||
- update to 5.113.0
|
||||
|
||||
* Thu Nov 16 2023 Automatic Build System <autodist@mambasoft.it> 5.112.0-1mamba
|
||||
* Thu Jul 02 2015 Automatic Build System <autodist@mambasoft.it> 15.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 19 2023 Automatic Build System <autodist@mambasoft.it> 5.111.0-1mamba
|
||||
* Wed Jun 03 2015 Automatic Build System <autodist@mambasoft.it> 15.04.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 10 2023 Automatic Build System <autodist@mambasoft.it> 5.110.0-1mamba
|
||||
* Wed May 13 2015 Automatic Build System <autodist@mambasoft.it> 15.04.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Aug 18 2023 Automatic Build System <autodist@mambasoft.it> 5.109.0-1mamba
|
||||
* Sun Apr 19 2015 Automatic Build System <autodist@mambasoft.it> 15.04.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 09 2023 Automatic Build System <autodist@mambasoft.it> 5.108.0-1mamba
|
||||
* Tue Mar 10 2015 Automatic Build System <autodist@mambasoft.it> 14.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jun 12 2023 Automatic Build System <autodist@mambasoft.it> 5.107.0-1mamba
|
||||
* Sat Feb 07 2015 Automatic Build System <autodist@mambasoft.it> 14.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 14 2023 Automatic Build System <autodist@mambasoft.it> 5.106.0-1mamba
|
||||
* Mon Jan 26 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 14.12.1-1mamba
|
||||
- update to 14.12.1
|
||||
|
||||
* Thu Nov 20 2014 Automatic Build System <autodist@mambasoft.it> 4.14.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 09 2023 Automatic Build System <autodist@mambasoft.it> 5.105.0-1mamba
|
||||
* Mon Oct 20 2014 Automatic Build System <autodist@mambasoft.it> 4.14.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Mar 11 2023 Automatic Build System <autodist@mambasoft.it> 5.104.0-1mamba
|
||||
* Sat Sep 27 2014 Automatic Build System <autodist@mambasoft.it> 4.14.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Feb 13 2023 Automatic Build System <autodist@mambasoft.it> 5.103.0-1mamba
|
||||
* Thu Aug 21 2014 Automatic Build System <autodist@mambasoft.it> 4.14.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jan 16 2023 Automatic Build System <autodist@mambasoft.it> 5.102.0-1mamba
|
||||
* Tue Jul 15 2014 Automatic Build System <autodist@mambasoft.it> 4.13.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Dec 11 2022 Automatic Build System <autodist@mambasoft.it> 5.101.0-1mamba
|
||||
* Tue Jun 10 2014 Automatic Build System <autodist@mambasoft.it> 4.13.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Nov 15 2022 Automatic Build System <autodist@mambasoft.it> 5.100.0-1mamba
|
||||
* Mon May 19 2014 Automatic Build System <autodist@mambasoft.it> 4.13.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Oct 11 2022 Automatic Build System <autodist@mambasoft.it> 5.99.0-1mamba
|
||||
* Thu Apr 17 2014 Automatic Build System <autodist@mambasoft.it> 4.13.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 11 2022 Automatic Build System <autodist@mambasoft.it> 5.98.0-1mamba
|
||||
* Tue Apr 01 2014 Automatic Build System <autodist@mambasoft.it> 4.12.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 16 2022 Automatic Build System <autodist@mambasoft.it> 5.97.0-1mamba
|
||||
* Wed Mar 05 2014 Automatic Build System <autodist@mambasoft.it> 4.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 10 2022 Automatic Build System <autodist@mambasoft.it> 5.96.0-1mamba
|
||||
* Wed Feb 05 2014 Automatic Build System <autodist@mambasoft.it> 4.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jun 13 2022 Automatic Build System <autodist@mambasoft.it> 5.95.0-1mamba
|
||||
* Tue Jan 14 2014 Automatic Build System <autodist@mambasoft.it> 4.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 15 2022 Automatic Build System <autodist@mambasoft.it> 5.94.0-1mamba
|
||||
* Thu Dec 19 2013 Automatic Build System <autodist@mambasoft.it> 4.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 10 2022 Automatic Build System <autodist@mambasoft.it> 5.93.0-1mamba
|
||||
* Thu Dec 05 2013 Automatic Build System <autodist@mambasoft.it> 4.11.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Mar 13 2022 Automatic Build System <autodist@mambasoft.it> 5.92.0-1mamba
|
||||
* Wed Nov 06 2013 Automatic Build System <autodist@mambasoft.it> 4.11.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Feb 14 2022 Automatic Build System <autodist@mambasoft.it> 5.91.0-1mamba
|
||||
* Tue Oct 01 2013 Automatic Build System <autodist@mambasoft.it> 4.11.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jan 08 2022 Automatic Build System <autodist@mambasoft.it> 5.90.0-1mamba
|
||||
* Wed Sep 04 2013 Automatic Build System <autodist@mambasoft.it> 4.11.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Dec 14 2021 Automatic Build System <autodist@mambasoft.it> 5.89.0-1mamba
|
||||
* Wed Aug 14 2013 Automatic Build System <autodist@mambasoft.it> 4.11.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Nov 13 2021 Automatic Build System <autodist@mambasoft.it> 5.88.0-1mamba
|
||||
* Wed Jul 24 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 4.10.5-2mamba
|
||||
- update openmamba main icon for milestone3
|
||||
- use convert to generate png of different sizes from svg openmamba icon
|
||||
|
||||
* Tue Jul 02 2013 Automatic Build System <autodist@mambasoft.it> 4.10.5-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Oct 11 2021 Automatic Build System <autodist@mambasoft.it> 5.87.0-1mamba
|
||||
* Wed Jun 05 2013 Automatic Build System <autodist@mambasoft.it> 4.10.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 12 2021 Automatic Build System <autodist@mambasoft.it> 5.86.0-1mamba
|
||||
* Tue May 07 2013 Automatic Build System <autodist@mambasoft.it> 4.10.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 16 2021 Automatic Build System <autodist@mambasoft.it> 5.85.0-1mamba
|
||||
* Wed Apr 03 2013 Automatic Build System <autodist@mambasoft.it> 4.10.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 11 2021 Automatic Build System <autodist@mambasoft.it> 5.84.0-1mamba
|
||||
* Tue Mar 05 2013 Automatic Build System <autodist@mambasoft.it> 4.10.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jun 15 2021 Automatic Build System <autodist@mambasoft.it> 5.83.0-1mamba
|
||||
* Mon Feb 11 2013 Automatic Build System <autodist@mambasoft.it> 4.10.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 09 2021 Automatic Build System <autodist@mambasoft.it> 5.82.0-1mamba
|
||||
* Thu Jan 03 2013 Automatic Build System <autodist@mambasoft.it> 4.9.5-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Apr 10 2021 Automatic Build System <autodist@mambasoft.it> 5.81.0-1mamba
|
||||
* Wed Dec 05 2012 Automatic Build System <autodist@mambasoft.it> 4.9.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Mar 14 2021 Automatic Build System <autodist@mambasoft.it> 5.80.0-1mamba
|
||||
* Wed Nov 07 2012 Automatic Build System <autodist@mambasoft.it> 4.9.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Feb 13 2021 Automatic Build System <autodist@mambasoft.it> 5.79.0-1mamba
|
||||
* Wed Oct 03 2012 Automatic Build System <autodist@mambasoft.it> 4.9.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jan 14 2021 Automatic Build System <autodist@mambasoft.it> 5.78.0-1mamba
|
||||
* Wed Sep 05 2012 Automatic Build System <autodist@mambasoft.it> 4.9.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Dec 24 2020 Automatic Build System <autodist@mambasoft.it> 5.77.0-1mamba
|
||||
* Wed Aug 01 2012 Automatic Build System <autodist@mambasoft.it> 4.9.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Nov 16 2020 Automatic Build System <autodist@mambasoft.it> 5.76.0-1mamba
|
||||
* Fri Jun 08 2012 Automatic Build System <autodist@mambasoft.it> 4.8.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Oct 14 2020 Automatic Build System <autodist@mambasoft.it> 5.75.0-1mamba
|
||||
* Fri May 04 2012 Automatic Build System <autodist@mambasoft.it> 4.8.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 15 2020 Automatic Build System <autodist@mambasoft.it> 5.74.0-1mamba
|
||||
* Fri Apr 06 2012 Automatic Build System <autodist@mambasoft.it> 4.8.2-1mamba
|
||||
- update to 4.8.2
|
||||
|
||||
* Fri Mar 16 2012 Automatic Build System <autodist@mambasoft.it> 4.8.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 10 2020 Automatic Build System <autodist@mambasoft.it> 5.73.0-1mamba
|
||||
* Sun Dec 11 2011 Automatic Build System <autodist@mambasoft.it> 4.7.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jul 14 2020 Automatic Build System <autodist@mambasoft.it> 5.72.0-1mamba
|
||||
* Wed Nov 02 2011 Automatic Build System <autodist@mambasoft.it> 4.7.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jun 16 2020 Automatic Build System <autodist@mambasoft.it> 5.71.0-1mamba
|
||||
* Tue Oct 11 2011 Automatic Build System <autodist@mambasoft.it> 4.7.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 11 2020 Automatic Build System <autodist@mambasoft.it> 5.70.0-1mamba
|
||||
* Sat Sep 24 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 4.7.1-2mamba
|
||||
- also set openmamba icon for start-here, use symlinks to save some space
|
||||
|
||||
* Thu Sep 08 2011 Automatic Build System <autodist@mambasoft.it> 4.7.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Apr 14 2020 Automatic Build System <autodist@mambasoft.it> 5.69.0-1mamba
|
||||
* Thu Aug 04 2011 Automatic Build System <autodist@mambasoft.it> 4.7.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Mar 17 2020 Automatic Build System <autodist@mambasoft.it> 5.68.0-1mamba
|
||||
- automatic version update by autodist
|
||||
* Thu Jul 07 2011 Automatic Build System <autodist@mambasoft.it> 4.6.5-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Tue Feb 11 2020 Automatic Build System <autodist@mambasoft.it> 5.67.0-1mamba
|
||||
- automatic version update by autodist
|
||||
* Wed Jun 15 2011 Automatic Build System <autodist@mambasoft.it> 4.6.4-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Tue Jan 14 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 5.66.0-1mamba
|
||||
- update to 5.66.0
|
||||
* Fri May 06 2011 Automatic Build System <autodist@mambasoft.it> 4.6.3-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Wed Jan 01 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 5.65.0-1mamba
|
||||
- package created using the webbuild interface
|
||||
* Wed Apr 06 2011 Automatic Build System <autodist@mambasoft.it> 4.6.2-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Sat Mar 05 2011 Automatic Build System <autodist@mambasoft.it> 4.6.1-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Sat Jan 29 2011 Davide Madrisan <davide.madrisan@gmail.com> 4.6.0-1mamba
|
||||
- update to 4.6.0
|
||||
|
||||
* Mon Jan 10 2011 Automatic Build System <autodist@mambasoft.it> 4.5.5-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Mon Dec 06 2010 Automatic Build System <autodist@mambasoft.it> 4.5.4-1mamba
|
||||
- automatic update to 4.5.4 by autodist
|
||||
|
||||
* Wed Nov 03 2010 Automatic Build System <autodist@mambasoft.it> 4.5.3-1mamba
|
||||
- automatic update to 4.5.3 by autodist
|
||||
|
||||
* Tue Oct 05 2010 Automatic Build System <autodist@mambasoft.it> 4.5.2-1mamba
|
||||
- automatic update to 4.5.2 by autodist
|
||||
|
||||
* Tue Aug 31 2010 Davide Madrisan <davide.madrisan@gmail.com> 4.5.1-1mamba
|
||||
- update to 4.5.1
|
||||
|
||||
* Sat Aug 14 2010 Davide Madrisan <davide.madrisan@gmail.com> 4.5.0-1mamba
|
||||
- update to 4.5.0
|
||||
|
||||
* Thu Jul 01 2010 Automatic Build System <autodist@mambasoft.it> 4.4.5-1mamba
|
||||
- automatic update to 4.4.5 by autodist
|
||||
|
||||
* Wed Jun 02 2010 Automatic Build System <autodist@mambasoft.it> 4.4.4-1mamba
|
||||
- automatic update to 4.4.4 by autodist
|
||||
|
||||
* Fri May 07 2010 Automatic Build System <autodist@mambasoft.it> 4.4.3-1mamba
|
||||
- automatic update to 4.4.3 by autodist
|
||||
|
||||
* Tue Mar 30 2010 Davide Madrisan <davide.madrisan@gmail.com> 4.4.2-1mamba
|
||||
- update to 4.4.2 (Codename "Colibri")
|
||||
|
||||
* Sun Mar 21 2010 Davide Madrisan <davide.madrisan@gmail.com> 4.4.1-2mamba
|
||||
- run gtk-update-icon-cache when installing/uninstalling this package
|
||||
|
||||
* Tue Mar 02 2010 Davide Madrisan <davide.madrisan@gmail.com> 4.4.1-1mamba
|
||||
- update to 4.4.1 (Codename "Clara")
|
||||
|
||||
* Tue Feb 09 2010 Davide Madrisan <davide.madrisan@gmail.com> 4.4.0-1mamba
|
||||
- update to 4.4.0 (Codename "Caikaku")
|
||||
|
||||
* Wed Feb 03 2010 Davide Madrisan <davide.madrisan@gmail.com> 4.3.98-1mamba
|
||||
- update to 4.3.98 (KDE Software Compilation 4.4 rc3 Codename "Coming Closer")
|
||||
|
||||
* Wed Jan 27 2010 Davide Madrisan <davide.madrisan@gmail.com> 4.3.95-1mamba
|
||||
- update to 4.3.95 (KDE Software Compilation 4.4 rc2 Codename "CampKDE")
|
||||
|
||||
* Tue Jan 19 2010 Davide Madrisan <davide.madrisan@gmail.com> 4.3.90-1mamba
|
||||
- update to 4.3.90 (KDE Software Compilation 4.4 rc1 Codename "Cornelius")
|
||||
|
||||
* Mon Dec 21 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 4.3.4-3mamba
|
||||
- split svg icons in a package apart
|
||||
|
||||
* Wed Dec 16 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 4.3.4-2mamba
|
||||
- added 256x256 openmamba icon
|
||||
|
||||
* Mon Dec 07 2009 Automatic Build System <autodist@mambasoft.it> 4.3.4-1mamba
|
||||
- automatic update to 4.3.4 by autodist
|
||||
|
||||
* Sat Nov 07 2009 Automatic Build System <autodist@mambasoft.it> 4.3.3-1mamba
|
||||
- automatic update to 4.3.3 by autodist
|
||||
|
||||
* Tue Oct 06 2009 Automatic Build System <autodist@mambasoft.it> 4.3.2-1mamba
|
||||
- automatic update to 4.3.2 by autodist
|
||||
|
||||
* Tue Sep 01 2009 Davide Madrisan <davide.madrisan@gmail.com> 4.3.1-1mamba
|
||||
- update to 4.3.1
|
||||
|
||||
* Fri Aug 07 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 4.3.0-1mamba
|
||||
- package created by autospec
|
||||
|
Loading…
Reference in New Issue
Block a user