Accepting request 967077 from devel:languages:ocaml
- Update to version 20220325 OBS-URL: https://build.opensuse.org/request/show/967077 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ocaml-pyml?expand=0&rev=4
This commit is contained in:
commit
e487a0fcfc
2
_service
2
_service
@ -1,7 +1,7 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="filename">ocaml-pyml</param>
|
<param name="filename">ocaml-pyml</param>
|
||||||
<param name="revision">8521e337944b651db2eb791ef561348d0ecfcf7a</param>
|
<param name="revision">c2fcdcfe2169ff8a57c8a905dba3352047f95c16</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="submodules">disable</param>
|
<param name="submodules">disable</param>
|
||||||
<param name="url">https://github.com/thierry-martinez/pyml.git</param>
|
<param name="url">https://github.com/thierry-martinez/pyml.git</param>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a34d3dccdfdf3674825000be42d5354b53244946483786cd52de708221549054
|
|
||||||
size 69704
|
|
3
ocaml-pyml-20220325.tar.xz
Normal file
3
ocaml-pyml-20220325.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8530876af610ac410bf14240dd8a8cc2a9dcb534796e50170c967c41bededeff
|
||||||
|
size 72000
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 4 04:04:04 UTC 2022 - ohering@suse.de
|
||||||
|
|
||||||
|
- Update to version 20220325
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Sep 25 20:58:01 UTC 2021 - Matej Cepl <mcepl@suse.com>
|
Sat Sep 25 20:58:01 UTC 2021 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ocaml-pyml
|
# spec file for package ocaml-pyml
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,17 +17,17 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: ocaml-pyml
|
Name: ocaml-pyml
|
||||||
Version: 20210924
|
Version: 20220325
|
||||||
Release: 0
|
Release: 0
|
||||||
%{?ocaml_preserve_bytecode}
|
%{?ocaml_preserve_bytecode}
|
||||||
Summary: Stdcompat: compatibility module for OCaml standard library
|
Summary: Stdcompat: compatibility module for OCaml standard library
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
Group: Development/Languages/OCaml
|
Group: Development/Languages/OCaml
|
||||||
URL: https://opam.ocaml.org/packages/pyml
|
URL: https://opam.ocaml.org/packages/pyml
|
||||||
Source0: %{name}-%{version}.tar.xz
|
Source0: %name-%version.tar.xz
|
||||||
BuildRequires: ocaml
|
BuildRequires: ocaml
|
||||||
BuildRequires: ocaml-dune >= 2.8
|
BuildRequires: ocaml-dune >= 2.8
|
||||||
BuildRequires: ocaml-rpm-macros >= 20210911
|
BuildRequires: ocaml-rpm-macros >= 20220222
|
||||||
BuildRequires: ocamlfind(bigarray)
|
BuildRequires: ocamlfind(bigarray)
|
||||||
BuildRequires: ocamlfind(stdcompat)
|
BuildRequires: ocamlfind(stdcompat)
|
||||||
BuildRequires: ocamlfind(unix)
|
BuildRequires: ocamlfind(unix)
|
||||||
@ -43,14 +43,14 @@ BuildRequires: which
|
|||||||
Stdcompat is a compatibility layer allowing programs to use some recent additions to the OCaml standard library while preserving the ability to be compiled on former versions of OCaml.
|
Stdcompat is a compatibility layer allowing programs to use some recent additions to the OCaml standard library while preserving the ability to be compiled on former versions of OCaml.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %name
|
||||||
Group: Development/Languages/OCaml
|
Group: Development/Languages/OCaml
|
||||||
Requires: %{name} = %{version}
|
Requires: %name = %version
|
||||||
Requires: which
|
Requires: which
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
The %{name}-devel package contains libraries and signature files for
|
The %name-devel package contains libraries and signature files for
|
||||||
developing applications that use %{name}.
|
developing applications that use %name.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1
|
%autosetup -p1
|
||||||
@ -67,8 +67,8 @@ dune_release_pkgs='pyml'
|
|||||||
%check
|
%check
|
||||||
%ocaml_dune_test
|
%ocaml_dune_test
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %name.files
|
||||||
|
|
||||||
%files devel -f %{name}.files.devel
|
%files devel -f %name.files.devel
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user