1
0

Accepting request 693964 from home:hellcp

- Initial package

OBS-URL: https://build.opensuse.org/request/show/693964
OBS-URL: https://build.opensuse.org/package/show/Base:System/distribution-logos-openSUSE?expand=0&rev=1
This commit is contained in:
Andreas Jaeger 2019-04-18 06:13:59 +00:00 committed by Git OBS Bridge
commit 9004cfc04c
5 changed files with 141 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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
View File

@ -0,0 +1 @@
.osc

View File

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

View File

@ -0,0 +1,5 @@
-------------------------------------------------------------------
Sat Apr 13 23:01:06 UTC 2019 - Stasiek Michalski <hellcp@mailbox.org>
- Initial package

View File

@ -0,0 +1,109 @@
#
# spec file for package distribution-logos-openSUSE
#
# Copyright (c) 2019 Stasiek Michalski <hellcp@opensuse.org>.
#
# 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/
#
Name: distribution-logos-openSUSE
Summary: Logos for openSUSE Distros
Version: 20190414
Release: 0
License: CC-BY-SA-4.0
Group: System/GUI/Other
Url: https://github.com/openSUSE/distribution-logos
Source: distribution-logos-master.zip
BuildRequires: unzip
BuildArch: noarch
%description
Logos for openSUSE Distributions
%package Leap
Summary: Logos for openSUSE Leap
Obsoletes: distribution-logos
Provides: distribution-logos
Conflicts: distribution-logos
RemovePathPostfixes: .Leap
BuildArch: noarch
%description Leap
Logos for openSUSE Leap
%package Tumbleweed
Summary: Logos for openSUSE Tumbleweed
Obsoletes: distribution-logos
Provides: distribution-logos
Conflicts: distribution-logos
RemovePathPostfixes: .Tumbleweed
BuildArch: noarch
%description Tumbleweed
Logos for openSUSE Tumbleweed
%package Kubic
Summary: Logos for openSUSE Kubic
Obsoletes: distribution-logos
Provides: distribution-logos
Conflicts: distribution-logos
RemovePathPostfixes: .Kubic
BuildArch: noarch
%description Kubic
Logos for openSUSE Kubic
%package MicroOS
Summary: Logos for openSUSE MicroOS
Obsoletes: distribution-logos
Provides: distribution-logos
Conflicts: distribution-logos
RemovePathPostfixes: .MicroOS
BuildArch: noarch
%description MicroOS
Logos for openSUSE MicroOS
%prep
%setup -qn distribution-logos-master
%build
# Skip build
%install
for distro in Leap Tumbleweed Kubic MicroOS; do \
mkdir -p %{buildroot}%{_datadir}/pixmaps/distribution-logos; \
for file in `ls ${distro}`; do \
cp -r ${distro}/${file} %{buildroot}%{_datadir}/pixmaps/distribution-logos/${file}.${distro}; \
done; \
done \
%files
%dir %{_datadir}/pixmaps/distribution-logos
%files Leap
%{_datadir}/pixmaps/distribution-logos/*.Leap
%files Tumbleweed
%{_datadir}/pixmaps/distribution-logos/*.Tumbleweed
%files Kubic
%{_datadir}/pixmaps/distribution-logos/*.Kubic
%files MicroOS
%{_datadir}/pixmaps/distribution-logos/*.MicroOS
%changelog