commit 9004cfc04cc3798618e13fa4a9830ec88c3cbdcf7faa546a03b517c4ba0fb674 Author: Andreas Jaeger Date: Thu Apr 18 06:13:59 2019 +0000 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 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/distribution-logos-master.zip b/distribution-logos-master.zip new file mode 100644 index 0000000..d5586d4 --- /dev/null +++ b/distribution-logos-master.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1d9b7e5b3c5a43fd9da5c7469168dc5a30d5d7044fb3cbdb1dfa4d7c67eee8f +size 56630 diff --git a/distribution-logos-openSUSE.changes b/distribution-logos-openSUSE.changes new file mode 100644 index 0000000..18a73c0 --- /dev/null +++ b/distribution-logos-openSUSE.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Sat Apr 13 23:01:06 UTC 2019 - Stasiek Michalski + +- Initial package + diff --git a/distribution-logos-openSUSE.spec b/distribution-logos-openSUSE.spec new file mode 100644 index 0000000..916ff99 --- /dev/null +++ b/distribution-logos-openSUSE.spec @@ -0,0 +1,109 @@ +# +# spec file for package distribution-logos-openSUSE +# +# Copyright (c) 2019 Stasiek Michalski . +# +# 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