Compare commits
1 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| f12b99645f |
8
_service
8
_service
@@ -1,7 +1,7 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<service name="tar_scm" mode="manual">
|
||||
<param name="filename">ocaml-jsonm</param>
|
||||
<param name="revision">15ba785854b8b6e45958570d23238b603cd3f8d6</param>
|
||||
<param name="revision">6e32959c508bba67e6e4e773ca8160b4723f3ee0</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="submodules">disable</param>
|
||||
<param name="url">https://github.com/dbuenzli/jsonm.git</param>
|
||||
@@ -9,9 +9,9 @@
|
||||
<param name="versionrewrite-pattern">[v]?([^\+]+)(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<service name="recompress" mode="manual">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service name="set_version" mode="disabled"/>
|
||||
<service name="set_version" mode="manual"/>
|
||||
</services>
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:902f2bc243fb9861cbdda1d597a4e7c2fed90339c9fa66d6327addd1992a86d7
|
||||
size 20476
|
||||
BIN
ocaml-jsonm-1.0.2.tar.xz
LFS
Normal file
BIN
ocaml-jsonm-1.0.2.tar.xz
LFS
Normal file
Binary file not shown.
@@ -1,51 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 11 12:34:56 UTC 2021 - ohering@suse.de
|
||||
Fri Apr 4 04:04:04 UTC 2025 - ohering@suse.de
|
||||
|
||||
- Require current ocaml-rpm-macros
|
||||
- Remove ExclusiveArch 64bit
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 21 21:21:21 UTC 2021 - ohering@suse.de
|
||||
Wed Mar 26 12:34:56 UTC 2025 - ohering@suse.de
|
||||
|
||||
- Build with dune via ocaml-jsonm.patch
|
||||
- allow only 64bit to follow other packages
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 1 12:34:56 UTC 2019 - ohering@suse.de
|
||||
Sun Mar 19 19:19:19 UTC 2023 - ohering@suse.de
|
||||
|
||||
- Require current dune macros
|
||||
- Use _service file
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 20 08:15:14 UTC 2018 - andy@onthewings.net
|
||||
|
||||
- Fix Source: url.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 25 13:04:54 UTC 2017 - ohering@suse.de
|
||||
|
||||
- Use Group: Development/Languages/OCaml
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 17 12:48:58 UTC 2017 - ohering@suse.de
|
||||
|
||||
- Wrap specfile conditionals to fix quilt setup
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 31 07:07:33 UTC 2017 - olaf@aepfle.de
|
||||
|
||||
- Replace tabs with spaces in generated _oasis file
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 17 10:34:57 UTC 2017 - olaf@aepfle.de
|
||||
|
||||
- Version 1.0.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 16 11:14:08 UTC 2017 - olaf@aepfle.de
|
||||
|
||||
- Build with oasis
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 24 17:20:22 UTC 2016 - antoine.belvire@opensuse.org
|
||||
|
||||
- Create package ocaml-jsonm-1.0.0
|
||||
- Initial version 1.0.2
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ocaml-jsonm
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,18 +17,17 @@
|
||||
|
||||
|
||||
Name: ocaml-jsonm
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
Release: 0
|
||||
%{?ocaml_preserve_bytecode}
|
||||
Summary: Non-blocking streaming JSON codec for OCaml
|
||||
License: ISC
|
||||
Group: Development/Languages/OCaml
|
||||
URL: https://opam.ocaml.org/packages/jsonm
|
||||
Source0: %{name}-%{version}.tar.xz
|
||||
Source0: %name-%version.tar.xz
|
||||
Patch0: ocaml-jsonm.patch
|
||||
BuildRequires: ocaml
|
||||
BuildRequires: ocaml-dune
|
||||
BuildRequires: ocaml-rpm-macros >= 20210911
|
||||
BuildRequires: ocaml-rpm-macros >= 20231101
|
||||
BuildRequires: ocamlfind(uutf)
|
||||
|
||||
%description
|
||||
@@ -40,13 +39,13 @@ The uncut codec also processes whitespace and (non-standard) JSON with
|
||||
JavaScript comments.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Summary: Development files for %name
|
||||
Group: Development/Languages/OCaml
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: %name = %version-%release
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries and signature files for
|
||||
developing applications that use %{name}.
|
||||
The %name-devel package contains libraries and signature files for
|
||||
developing applications that use %name.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
@@ -63,8 +62,8 @@ dune_release_pkgs='jsonm'
|
||||
%check
|
||||
%ocaml_dune_test
|
||||
|
||||
%files -f %{name}.files
|
||||
%files -f %name.files
|
||||
|
||||
%files devel -f %{name}.files.devel
|
||||
%files devel -f %name.files.devel
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user