SHA256
8
0
forked from pool/utfcpp

Accepting request 281427 from home:yac:ledger

Submitting new package: utfcpp

OBS-URL: https://build.opensuse.org/request/show/281427
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/utfcpp?expand=0&rev=1
This commit is contained in:
Michal Hrusecky (old before rename to _miska_)
2015-01-15 20:01:30 +00:00
committed by Git OBS Bridge
commit f06e9c1b6b
6 changed files with 91 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

3
_service Normal file
View File

@@ -0,0 +1,3 @@
<services>
<service name="download_files"/>
</services>

View File

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

5
utfcpp.changes Normal file
View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Thu Jan 15 13:23:24 UTC 2015 - jmatejka@suse.cz
- Initial package version 2.3.4

56
utfcpp.spec Normal file
View File

@@ -0,0 +1,56 @@
#
# spec file for package utfcpp
#
# Copyright (c) 2015 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/
#
%define uglyver 2_3_4
Name: utfcpp
Version: 2.3.4
Release: 0
Summary: A library for handling UTF-8 encoded strings
License: BSL-1.0
Group: Development/Libraries/C
Url: http://sourceforge.net/projects/utfcpp/
Source: http://download.sourceforge.net/%{name}/utf8_v%{uglyver}.zip
BuildRequires: unzip
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
A library for handling UTF-8 encoded strings.
%prep
%setup -q -n source
%build
%install
install -d %{buildroot}/%{_includedir}/utf8
install -m0644 utf8.h %{buildroot}/%{_includedir}
install -m0644 utf8/{checked,unchecked,core}.h %{buildroot}/%{_includedir}/utf8
%package devel
Summary: A library for handling UTF-8 encoded strings
%description devel
A library for handling UTF-8 encoded strings.
%files devel
%defattr(-,root,root)
%dir %{_includedir}/utf8
%{_includedir}/utf8.h
%{_includedir}/utf8/*
%changelog