- Rename a single opam file to $dune_release_pkgs.opam

OBS-URL: https://build.opensuse.org/package/show/devel:languages:ocaml/ocaml-rpm-macros?expand=0&rev=62
This commit is contained in:
Olaf Hering 2021-09-17 09:47:17 +00:00 committed by Git OBS Bridge
parent 9af80c8807
commit cac384f384
2 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Sat Sep 11 12:34:56 UTC 2021 - ohering@suse.de
- Rename a single opam file to $dune_release_pkgs.opam
-------------------------------------------------------------------
Wed Apr 21 12:34:56 UTC 2021 - ohering@suse.de

View File

@ -1,7 +1,7 @@
#
# spec file for package ocaml-rpm-macros
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,7 +17,7 @@
Name: ocaml-rpm-macros
Version: 20210421
Version: 20210911
Release: 0
Summary: RPM macros for building OCaml source packages
License: GPL-2.0-only
@ -414,6 +414,13 @@ ocaml setup.ml -configure \\\
%ifarch ppc64 ppc64le
ulimit -s $((1024 * 64)) ; \
%endif
%if 0
# obviously this works just with a single entry in dune_release_pkgs=
%endif
if test -n "${dune_release_pkgs}" ; \
then \
test -f 'opam' && mv -v 'opam' "${dune_release_pkgs}.opam" ; \
fi ; \
echo '%%{version}' | tee VERSION ; \
for opam in *.opam \
do\