Hello community,

here is the log from the commit of package ocaml-qtest for openSUSE:Factory 
checked in at 2019-12-05 17:34:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ocaml-qtest (Old)
 and      /work/SRC/openSUSE:Factory/.ocaml-qtest.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ocaml-qtest"

Thu Dec  5 17:34:45 2019 rev:6 rq:754312 version:2.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/ocaml-qtest/ocaml-qtest.changes  2019-11-11 
21:29:05.928092972 +0100
+++ /work/SRC/openSUSE:Factory/.ocaml-qtest.new.4691/ocaml-qtest.changes        
2019-12-05 17:35:59.553425115 +0100
@@ -1,0 +2,6 @@
+Thu Nov 28 07:07:07 UTC 2019 - [email protected]
+
+- Update to 2.10
+  no changelog provided by upstream
+
+-------------------------------------------------------------------

Old:
----
  ocaml-qtest-2.9.tar.xz

New:
----
  ocaml-qtest-2.10.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ocaml-qtest.spec ++++++
--- /var/tmp/diff_new_pack.c2r7lQ/_old  2019-12-05 17:36:00.857424644 +0100
+++ /var/tmp/diff_new_pack.c2r7lQ/_new  2019-12-05 17:36:00.857424644 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           ocaml-qtest
-Version:        2.9
+Version:        2.10
 Release:        0
 %{?ocaml_preserve_bytecode}
 Summary:        Inline (Unit) Tests for OCaml

++++++ _service ++++++
--- /var/tmp/diff_new_pack.c2r7lQ/_old  2019-12-05 17:36:00.881424635 +0100
+++ /var/tmp/diff_new_pack.c2r7lQ/_new  2019-12-05 17:36:00.881424635 +0100
@@ -2,8 +2,8 @@
   <service name="tar_scm" mode="disabled">
     <param name="url">https://github.com/vincent-hugot/qtest.git</param>
     <param name="scm">git</param>
-    <param name="versionformat">2.9</param>
-    <param name="revision">074da5e3a0d480937ddc379fc6f4feeab9da85e3</param>
+    <param name="versionformat">2.10</param>
+    <param name="revision">a0517614759387867b185f19831280516b543c62</param>
     <param name="filename">ocaml-qtest</param>
   </service>
   <service name="recompress" mode="disabled">

++++++ ocaml-qtest-2.9.tar.xz -> ocaml-qtest-2.10.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ocaml-qtest-2.9/Makefile 
new/ocaml-qtest-2.10/Makefile
--- old/ocaml-qtest-2.9/Makefile        2018-11-29 18:15:52.000000000 +0100
+++ new/ocaml-qtest-2.10/Makefile       2019-11-27 02:57:10.000000000 +0100
@@ -5,9 +5,6 @@
 clean:
        @dune clean
 
-doc:
-       @dune doc
-
 test: build
        cd tests && ./testfoo.sh || true
        cd tests && ./testcppo.sh || true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ocaml-qtest-2.9/qtest.opam 
new/ocaml-qtest-2.10/qtest.opam
--- old/ocaml-qtest-2.9/qtest.opam      2018-11-29 18:15:52.000000000 +0100
+++ new/ocaml-qtest-2.10/qtest.opam     2019-11-27 02:57:10.000000000 +0100
@@ -1,29 +1,28 @@
-opam-version: "1.2"
+opam-version: "2.0"
 maintainer: "Simon Cruanes <[email protected]"
-name: "qtest"
-version: "2.9"
+version: "2.10"
 authors: [
   "Vincent Hugot <[email protected]>"
   "Simon Cruanes <[email protected]"
 ]
+synopsis: "Lightweight inline test extraction from comments"
 homepage: "https://github.com/vincent-hugot/qtest";
 bug-reports: "https://github.com/vincent-hugot/qtest/issues";
 doc:
   "https://github.com/vincent-hugot/qtest/blob/master/README.adoc#introduction";
-dev-repo: "[email protected]:vincent-hugot/qtest.git"
+dev-repo: "git+https://github.com/vincent-hugot/qtest.git";
 build: [
-  [ "dune" "build" "-j" jobs "-p" name ]
+  [ "dune" "build" "@install" "-j" jobs "-p" name ]
 ]
 depends: [
   "base-bytes"
   "ounit" { >= "2.0.0" }
-  "dune" {build}
+  "dune" { >= "1.1" & < "2.0" }
   "qcheck" { >= "0.5" }
-  "odoc" {doc}
+  "ocaml" { >= "4.02.0" }
 ]
 tags: [
   "test"
   "property"
   "quickcheck"
 ]
-available: [ocaml-version >= "4.02.0"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ocaml-qtest-2.9/src/dune 
new/ocaml-qtest-2.10/src/dune
--- old/ocaml-qtest-2.9/src/dune        2018-11-29 18:15:52.000000000 +0100
+++ new/ocaml-qtest-2.10/src/dune       2019-11-27 02:57:10.000000000 +0100
@@ -14,7 +14,5 @@
   (name qtestlib)
   (modules)
   (inline_tests.backend
-    (generate_runner (run qtest extract ${impl-files} ${intf-files}))
-     (runner_libraries qcheck oUnit bytes)
-    )
-  )
+    (generate_runner (run qtest extract %{impl-files} %{intf-files}))
+    (runner_libraries qcheck oUnit bytes)))


Reply via email to