From 7ef671985645c9538500c79f55fad66cad276f34dbec776a5ff63e18e18b0152 Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Thu, 26 Sep 2019 13:18:13 +0000 Subject: [PATCH] - Initial version 0.1.0 OBS-URL: https://build.opensuse.org/package/show/devel:languages:ocaml/ocaml-stdlib-shims?expand=0&rev=1 --- .gitattributes | 23 +++++++++ .gitignore | 1 + _service | 14 ++++++ ocaml-stdlib-shims-0.1.0.tar.xz | 3 ++ ocaml-stdlib-shims.changes | 5 ++ ocaml-stdlib-shims.spec | 85 +++++++++++++++++++++++++++++++++ 6 files changed, 131 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 _service create mode 100644 ocaml-stdlib-shims-0.1.0.tar.xz create mode 100644 ocaml-stdlib-shims.changes create mode 100644 ocaml-stdlib-shims.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/_service b/_service new file mode 100644 index 0000000..0570556 --- /dev/null +++ b/_service @@ -0,0 +1,14 @@ + + + https://github.com/ocaml/stdlib-shims.git + git + 0.1.0 + master + ocaml-stdlib-shims + + + *.tar + xz + + + diff --git a/ocaml-stdlib-shims-0.1.0.tar.xz b/ocaml-stdlib-shims-0.1.0.tar.xz new file mode 100644 index 0000000..07c9d8e --- /dev/null +++ b/ocaml-stdlib-shims-0.1.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecdc97bb7632ee886442654b7ef277ae6662e598b1221ae87dee226196c4cbc +size 15632 diff --git a/ocaml-stdlib-shims.changes b/ocaml-stdlib-shims.changes new file mode 100644 index 0000000..051ef40 --- /dev/null +++ b/ocaml-stdlib-shims.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Mon Sep 23 16:35:39 UTC 2019 - ohering@suse.de + +- Initial version 0.1.0 + diff --git a/ocaml-stdlib-shims.spec b/ocaml-stdlib-shims.spec new file mode 100644 index 0000000..14d597e --- /dev/null +++ b/ocaml-stdlib-shims.spec @@ -0,0 +1,85 @@ +# +# spec file for package ocaml-stdlib-shims +# +# Copyright (c) 2019 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/ +# + + +Name: ocaml-stdlib-shims +Version: 0.1.0 +Release: 0 +%{?ocaml_preserve_bytecode} +Summary: Shim to substitute Pervasives with Stdlib before 4.08. +License: GPL-2.0 +Group: Development/Languages/OCaml +Url: https://github.com/ocaml/stdlib-shims +Source: %{name}-%{version}.tar.xz +BuildRequires: ocaml +BuildRequires: ocaml-dune +BuildRequires: ocaml-rpm-macros + +%description +Compiling against this library allows to replace your uses of Pervasives with Stdlib before 4.08. For example you can use Stdlib.compare instead of Pervasives.compare. It does not however provide the new functions and modules that are being added in Stdlib module. + +%package devel +Summary: Development files for %{name} +Group: Development/Languages/OCaml +Requires: %{name} = %{version} + +%description devel +The %{name}-devel package contains libraries and signature files for +developing applications that use %{name}. + +%prep +%autosetup -p1 + +%build +%ocaml_dune_setup +%ocaml_dune_build + +%install +%ocaml_dune_install + +%check +%ocaml_dune_test + +%files +%license LICENSE +%doc README.md +%dir %{_libdir}/ocaml +%dir %{_libdir}/ocaml/* +%if 0%{?ocaml_native_compiler} +%{_libdir}/ocaml/*/*.cmxs +%endif + +%files devel +%dir %{_libdir}/ocaml +%dir %{_libdir}/ocaml/* +%if 0%{?ocaml_native_compiler} +%{_libdir}/ocaml/*/*.a +%{_libdir}/ocaml/*/*.cmx +%{_libdir}/ocaml/*/*.cmxa +%endif +%{_libdir}/ocaml/*/*.cma +%{_libdir}/ocaml/*/*.cmi +%{_libdir}/ocaml/*/*.cmt +%{_libdir}/ocaml/*/*.cmti +%{_libdir}/ocaml/*/*.ml +%{_libdir}/ocaml/*/*.mli +%{_libdir}/ocaml/*/META +%{_libdir}/ocaml/*/opam +%{_libdir}/ocaml/*/dune-package + +%changelog +