forked from pool/humanity-icon-theme
This commit is contained in:
commit
ce123f5cc6
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
34
humanity-icon-theme.changes
Normal file
34
humanity-icon-theme.changes
Normal file
@ -0,0 +1,34 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 5 23:06:13 UTC 2015 - sor.alexei@meowr.ru
|
||||
|
||||
- Update to 0.6.8:
|
||||
* Set MaxSize for directories with scalable icons.
|
||||
This fixes bug lp#1435607 and pixelated app icons in unity's
|
||||
alt-tab dialog.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 27 17:34:12 UTC 2015 - sor.alexei@meowr.ru
|
||||
|
||||
- Update to 0.6.7:
|
||||
* Revert 0.6.6. We're now getting ready to transition to
|
||||
adwaita-icon-theme by default and we'll get these icons from
|
||||
there.
|
||||
* Depend on and inherit from the Adwaita icon theme (lp#1414613).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 5 14:46:34 UTC 2014 - sor.alexei@meowr.ru
|
||||
|
||||
- Update to 0.6.6:
|
||||
* Add pan-* and open-menu-symbolic icons required by GTK 3.14,
|
||||
copied from adwaita-icon-theme.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 26 10:42:12 UTC 2014 - sor.alexei@meowr.ru
|
||||
|
||||
- Update to 0.6.5:
|
||||
* Replace vintage circle of friends logo with modern.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 4 12:23:26 UTC 2013 - sor.alexei@meowr.ru
|
||||
|
||||
- Initial package.
|
68
humanity-icon-theme.spec
Normal file
68
humanity-icon-theme.spec
Normal file
@ -0,0 +1,68 @@
|
||||
#
|
||||
# spec file for package humanity-icon-theme
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define _name Humanity
|
||||
Name: humanity-icon-theme
|
||||
Version: 0.6.8
|
||||
Release: 0
|
||||
Summary: Ayatana Humanity icon theme
|
||||
License: GPL-2.0+
|
||||
Group: System/GUI/Other
|
||||
Url: https://launchpad.net/humanity
|
||||
Source: http://archive.ubuntu.com/ubuntu/pool/main/h/%{name}/%{name}_%{version}.tar.gz
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: hicolor-icon-theme
|
||||
Requires: adwaita-icon-theme
|
||||
Requires: hicolor-icon-theme
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Humanity and Humanity Dark are nice and well polished icon themes for the Gtk
|
||||
desktop.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
for doc in AUTHORS CONTRIBUTORS COPYING; do
|
||||
mv -f %{_name}/$doc .
|
||||
rm -f %{_name}-Dark/$doc
|
||||
done
|
||||
|
||||
%build
|
||||
# Nothing to build.
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{_datadir}/icons/
|
||||
cp -a {%{_name},%{_name}-Dark} %{buildroot}%{_datadir}/icons/
|
||||
find -L %{buildroot}%{_datadir}/icons/ -type l -delete
|
||||
%icon_theme_cache_create_ghost %{_name}
|
||||
%icon_theme_cache_create_ghost %{_name}-Dark
|
||||
%fdupes %{buildroot}%{_datadir}/icons/
|
||||
|
||||
%post
|
||||
%icon_theme_cache_post %{_name}
|
||||
%icon_theme_cache_post %{_name}-Dark
|
||||
|
||||
# No need for %%icon_theme_cache_postun in %%postun since the theme won't exist anymore.
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS CONTRIBUTORS COPYING
|
||||
%ghost %{_datadir}/icons/%{_name}*/icon-theme.cache
|
||||
%{_datadir}/icons/%{_name}*
|
||||
|
||||
%changelog
|
3
humanity-icon-theme_0.6.8.tar.gz
Normal file
3
humanity-icon-theme_0.6.8.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9187da55d24fffa311175140c525ce48e8fd0a80370b48b30f34dccfb28538aa
|
||||
size 4167344
|
Loading…
x
Reference in New Issue
Block a user