From 000b8f8576e3d253070c09038343e4fe2057ca52c71b907fca5079665d4dac7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Thu, 8 Nov 2012 12:38:46 +0000 Subject: [PATCH] Accepting request 140614 from home:Fisiu:branches:multimedia:apps we need it for Clementine Google Drive support, lets make this prj as devel for Factory OBS-URL: https://build.opensuse.org/request/show/140614 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/sparsehash?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++ .gitignore | 1 + sparsehash-2.0.2.tar.gz | 3 ++ sparsehash.changes | 10 +++++++ sparsehash.spec | 65 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 102 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 sparsehash-2.0.2.tar.gz create mode 100644 sparsehash.changes create mode 100644 sparsehash.spec 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/sparsehash-2.0.2.tar.gz b/sparsehash-2.0.2.tar.gz new file mode 100644 index 0000000..f5f4709 --- /dev/null +++ b/sparsehash-2.0.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed639a7155607c097c2029af5f4287296595080b2e5dd2e2ebd9bbb7450b87c +size 340514 diff --git a/sparsehash.changes b/sparsehash.changes new file mode 100644 index 0000000..028bf00 --- /dev/null +++ b/sparsehash.changes @@ -0,0 +1,10 @@ +------------------------------------------------------------------- +Mon Nov 5 19:57:27 UTC 2012 - fisiu@opensuse.org + +- moved files do devel package + +------------------------------------------------------------------- +Thu May 24 15:24:36 CEST 2012 - kukuk@suse.de + +- Initial version + diff --git a/sparsehash.spec b/sparsehash.spec new file mode 100644 index 0000000..70dd108 --- /dev/null +++ b/sparsehash.spec @@ -0,0 +1,65 @@ +# +# spec file for package sparsehash +# +# Copyright (c) 2012 SUSE LINUX Products 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/ +# + +Name: sparsehash +Version: 2.0.2 +Release: 0 +License: BSD-3-Clause +Summary: Extremely memory-efficient hash_map implementation +Url: http://code.google.com/p/sparsehash +Group: Development/Libraries/C and C++ +Source: http://%{name}.googlecode.com/files/%{name}-%{version}.tar.gz +BuildRequires: gcc-c++ +BuildRequires: pkg-config +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +The Google SparseHash project contains several C++ template hash-map +implementations with different performance characteristics, including +an implementation that optimizes for space and one that optimizes for +speed. + +%package devel +Summary: Extremely memory-efficient C++ hash_map implementation +Group: Development/Libraries/C and C++ + +%description devel +The Google SparseHash project contains several C++ template hash-map +implementations with different performance characteristics, including +an implementation that optimizes for space and one that optimizes for +speed. + +%prep +%setup -q + +%build +%configure +make %{?_smp_mflags} + +%install +%make_install +rm %{buildroot}%{_datadir}/doc/%{name}-%{version}/INSTALL +rm %{buildroot}%{_datadir}/doc/%{name}-%{version}/README_windows.txt + +%files devel +%defattr(-,root,root) +%doc %{_datadir}/doc/%{name}-%{version}/ +%{_includedir}/google/ +%{_includedir}/sparsehash/ +%{_libdir}/pkgconfig/*.pc + +%changelog