Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gap-ferret for openSUSE:Factory 
checked in at 2024-04-26 23:26:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gap-ferret (Old)
 and      /work/SRC/openSUSE:Factory/.gap-ferret.new.1880 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gap-ferret"

Fri Apr 26 23:26:51 2024 rev:4 rq:1170177 version:1.0.11

Changes:
--------
--- /work/SRC/openSUSE:Factory/gap-ferret/gap-ferret.changes    2024-03-25 
21:15:06.868419620 +0100
+++ /work/SRC/openSUSE:Factory/.gap-ferret.new.1880/gap-ferret.changes  
2024-04-26 23:27:06.608595413 +0200
@@ -1,0 +2,6 @@
+Thu Apr 25 15:16:45 UTC 2024 - Jan Engelhardt <jeng...@inai.de>
+
+- Update to release 1.0.11
+  * Replace functions which were removed in C++17
+
+-------------------------------------------------------------------

Old:
----
  ferret-1.0.10.tar.gz

New:
----
  ferret-1.0.11.tar.gz

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

Other differences:
------------------
++++++ gap-ferret.spec ++++++
--- /var/tmp/diff_new_pack.AL3Zo2/_old  2024-04-26 23:27:07.220617785 +0200
+++ /var/tmp/diff_new_pack.AL3Zo2/_new  2024-04-26 23:27:07.224617931 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           gap-ferret
-Version:        1.0.10
+Version:        1.0.11
 Release:        0
 Summary:        GAP: Backtrack Search in Permutation Groups
 License:        MPL-2.0

++++++ ferret-1.0.10.tar.gz -> ferret-1.0.11.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/Makefile.gappkg 
new/ferret-1.0.11/Makefile.gappkg
--- old/ferret-1.0.10/Makefile.gappkg   2024-01-22 09:46:32.000000000 +0100
+++ new/ferret-1.0.11/Makefile.gappkg   2024-04-24 09:17:58.000000000 +0200
@@ -17,13 +17,6 @@
 #   KEXT_USE_AUTOCONF to 1 to enable dependency rules that enable
 #   regenerating the configure script etc. when necessary
 #
-# Only GAP >= 4.11 ships with this file. In order to keep your package
-# compatible with older GAP versions, we recommend to bundle a copy of
-# it with your package, but only as a fallback. So, your configure
-# scripts should check if GAP ships with this file, and use it then, and
-# only fall back to your own copy as a last resort. This way, you will
-# benefit from any fixes and improvements made by the GAP team.
-#
 # The contents of this file are released into the public domain; hence
 # you may edit this file as you wish, bundle and distribute it with your
 # package, etc.
@@ -46,7 +39,7 @@
   KEXT_CXXFLAGS += -I$(GAP_LIB_DIR)/src
 endif
 
-# honor used supplied flags
+# honor user supplied flags
 KEXT_CFLAGS += $(CPPFLAGS)
 KEXT_CFLAGS += $(CFLAGS)
 KEXT_CXXFLAGS += $(CPPFLAGS)
@@ -151,7 +144,9 @@
 distclean: distclean-kext
 distclean-kext:
        rm -rf bin gen Makefile
-       (cd doc && ./clean)
+       rm -rf doc/_*.xml
+       rm -rf doc/*.aux doc/*.bbl doc/*.blg doc/*.brf doc/*.idx doc/*.idx
+       rm -rf doc/*.ilg doc/*.ind doc/*.log doc/*.out doc/*.pnr doc/*.toc
 
 # hook into `make doc`
 doc: doc-kext
@@ -193,14 +188,14 @@
        @if test ! -f $@; then rm -f $<; else :; fi
        @if test ! -f $@; then $(MAKE) $<; else :; fi
 
-gen/pkgconfig.h.stamp: gen/pkgconfig.h.in config.status
+gen/pkgconfig.h.stamp: src/pkgconfig.h.in config.status
        @rm -f $@
        @mkdir -p $(@D)
        ./config.status gen/pkgconfig.h
        echo > $@
 
 ifneq ($(MAINTAINER_MODE),no)
-gen/pkgconfig.h.in: $(configure_deps)
+src/pkgconfig.h.in: $(configure_deps)
        @if command -v autoheader >/dev/null 2>&1 ; then \
           mkdir -p $(@D) ; \
           echo "running autoheader" ; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/PackageInfo.g 
new/ferret-1.0.11/PackageInfo.g
--- old/ferret-1.0.10/PackageInfo.g     2024-01-22 09:46:32.000000000 +0100
+++ new/ferret-1.0.11/PackageInfo.g     2024-04-24 09:17:58.000000000 +0200
@@ -2,8 +2,8 @@
 
 PackageName := "ferret",
 Subtitle := "Backtrack Search in Permutation Groups",
-Version := "1.0.10",
-Date := "22/01/2024", # dd/mm/yyyy format
+Version := "1.0.11",
+Date := "24/04/2024", # dd/mm/yyyy format
 License := "MPL-2.0",
 
 Persons := [
@@ -12,8 +12,9 @@
     IsMaintainer := true,
     FirstNames := "Christopher",
     LastName := "Jefferson",
-    WWWHome := "https://caj.host.cs.st-andrews.ac.uk/";,
+    WWWHome := "https://heather.cafe/";,
     Email := "ca...@st-andrews.ac.uk",
+    GitHubUsername := "ChrisJefferson",
     PostalAddress := Concatenation(
                "St Andrews\n",
                "Scotland\n",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/YAPB++/source/search/search.hpp 
new/ferret-1.0.11/YAPB++/source/search/search.hpp
--- old/ferret-1.0.10/YAPB++/source/search/search.hpp   2024-01-22 
09:46:32.000000000 +0100
+++ new/ferret-1.0.11/YAPB++/source/search/search.hpp   2024-04-24 
09:17:58.000000000 +0200
@@ -11,6 +11,9 @@
 bool doSearchBranch(const SearchOptions& so, Problem* p, SolutionStore* ss,
                     RBase* rbase, TraceFollowingQueue* tfq, int depth)
 {
+    std::minstd_rand rd;
+    static std::default_random_engine rng(rd());
+
     info_out(1, "search depth: " << depth);
     info_out(2, "Current partition: " <<  p->p_stack.dumpCurrentPartition());
     if(depth > rbase->depth())
@@ -41,7 +44,7 @@
         orderCell(firstbranch ? cell.begin() + 1 : cell.begin(),
                   cell.end(),
                   firstbranch ? so.heuristic.search_first_branch_value : 
so.heuristic.search_value,
-                  rbase);
+                  rbase, rng);
 
         for(int i : range1(cell.size()))
         {
@@ -127,7 +130,7 @@
         try {
             doSearchBranch<true>(so, p, &solutions, rb, &tfq, 1);
         }
-        catch(const EndOfSearch&) { 
+        catch(const EndOfSearch&) {
             debug_out(1, "search", "Node limit reached!");
         }
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/YAPB++/source/search/search_common.hpp 
new/ferret-1.0.11/YAPB++/source/search/search_common.hpp
--- old/ferret-1.0.10/YAPB++/source/search/search_common.hpp    2024-01-22 
09:46:32.000000000 +0100
+++ new/ferret-1.0.11/YAPB++/source/search/search_common.hpp    2024-04-24 
09:17:58.000000000 +0200
@@ -9,6 +9,8 @@
 #include "library/stats.hpp"
 #include "library/perm.hpp"
 
+#include <random>
+
 // Checks a solution satisfies all the constraints, and
 // adds to the solutionStore if it is. Returns true if
 // the solution is real
@@ -32,7 +34,7 @@
 // Orders a cell of a partition stack according to a given heuristic
 
 template<typename It>
-void orderCell(It begin, It end, SearchHeuristic sh, RBase* rbase)
+void orderCell(It begin, It end, SearchHeuristic sh, RBase* rbase, 
std::default_random_engine& rng)
 {
     switch(sh)
     {
@@ -45,7 +47,7 @@
                 ReverseSorter(IndirectSorter([&](auto i) -> auto& { return 
(rbase->inv_value_ordering)[i]; })));
             return;
         case SearchBranch_Random:
-            std::random_shuffle(begin, end);
+            std::shuffle(begin, end, rng);
             return;
         case SearchBranch_Sorted:
             std::sort(begin, end);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chap0.html 
new/ferret-1.0.11/doc/chap0.html
--- old/ferret-1.0.10/doc/chap0.html    2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/chap0.html    2024-04-24 09:18:45.000000000 +0200
@@ -29,10 +29,10 @@
 <h2>Backtrack Search in Permutation Groups</h2>
 
 <p>
-    1.0.10</p>
+    1.0.11</p>
 
 <p>
-    22 January 2024
+    24 April 2024
   </p>
 
 </div>
@@ -44,7 +44,7 @@
 
   </b>
 <br />Email: <span class="URL"><a 
href="mailto:ca...@st-andrews.ac.uk";>ca...@st-andrews.ac.uk</a></span>
-<br />Homepage: <span class="URL"><a 
href="https://caj.host.cs.st-andrews.ac.uk/";>https://caj.host.cs.st-andrews.ac.uk/</a></span>
+<br />Homepage: <span class="URL"><a 
href="https://heather.cafe/";>https://heather.cafe/</a></span>
 <br />Address: <br />St Andrews<br /> Scotland<br /> UK<br />
 </p>
 
@@ -98,6 +98,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0.html">Top</a>  <a href="chap1.html">1</a>  <a 
href="chap2.html">2</a>  <a href="chap3.html">3</a>  <a 
href="chapInd.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chap0.txt 
new/ferret-1.0.11/doc/chap0.txt
--- old/ferret-1.0.10/doc/chap0.txt     2024-01-22 09:55:41.000000000 +0100
+++ new/ferret-1.0.11/doc/chap0.txt     2024-04-24 09:18:42.000000000 +0200
@@ -6,10 +6,10 @@
                      Backtrack Search in Permutation Groups 
   
   
-                                     1.0.10
+                                     1.0.11
   
   
-                                22 January 2024
+                                 24 April 2024
   
   
                              Christopher Jefferson
@@ -18,7 +18,7 @@
   
   Christopher Jefferson
       Email:    mailto:ca...@st-andrews.ac.uk
-      Homepage: https://caj.host.cs.st-andrews.ac.uk/
+      Homepage: https://heather.cafe/
       Address:  St Andrews
                 Scotland
                 UK
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chap0_mj.html 
new/ferret-1.0.11/doc/chap0_mj.html
--- old/ferret-1.0.10/doc/chap0_mj.html 2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/chap0_mj.html 2024-04-24 09:18:45.000000000 +0200
@@ -6,7 +6,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
 <head>
 <script type="text/javascript"
-  
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
+  
src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
 </script>
 <title>GAP (Ferret) - Contents</title>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
@@ -32,10 +32,10 @@
 <h2>Backtrack Search in Permutation Groups</h2>
 
 <p>
-    1.0.10</p>
+    1.0.11</p>
 
 <p>
-    22 January 2024
+    24 April 2024
   </p>
 
 </div>
@@ -47,7 +47,7 @@
 
   </b>
 <br />Email: <span class="URL"><a 
href="mailto:ca...@st-andrews.ac.uk";>ca...@st-andrews.ac.uk</a></span>
-<br />Homepage: <span class="URL"><a 
href="https://caj.host.cs.st-andrews.ac.uk/";>https://caj.host.cs.st-andrews.ac.uk/</a></span>
+<br />Homepage: <span class="URL"><a 
href="https://heather.cafe/";>https://heather.cafe/</a></span>
 <br />Address: <br />St Andrews<br /> Scotland<br /> UK<br />
 </p>
 
@@ -101,6 +101,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0_mj.html">Top</a>  <a href="chap1_mj.html">1</a>  <a 
href="chap2_mj.html">2</a>  <a href="chap3_mj.html">3</a>  <a 
href="chapInd_mj.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chap1.html 
new/ferret-1.0.11/doc/chap1.html
--- old/ferret-1.0.10/doc/chap1.html    2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/chap1.html    2024-04-24 09:18:45.000000000 +0200
@@ -137,6 +137,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0.html">Top</a>  <a href="chap1.html">1</a>  <a 
href="chap2.html">2</a>  <a href="chap3.html">3</a>  <a 
href="chapInd.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chap1_mj.html 
new/ferret-1.0.11/doc/chap1_mj.html
--- old/ferret-1.0.10/doc/chap1_mj.html 2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/chap1_mj.html 2024-04-24 09:18:45.000000000 +0200
@@ -6,7 +6,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
 <head>
 <script type="text/javascript"
-  
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
+  
src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
 </script>
 <title>GAP (Ferret) - Chapter 1: The Ferret Package</title>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
@@ -140,6 +140,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0_mj.html">Top</a>  <a href="chap1_mj.html">1</a>  <a 
href="chap2_mj.html">2</a>  <a href="chap3_mj.html">3</a>  <a 
href="chapInd_mj.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chap2.html 
new/ferret-1.0.11/doc/chap2.html
--- old/ferret-1.0.10/doc/chap2.html    2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/chap2.html    2024-04-24 09:18:45.000000000 +0200
@@ -113,6 +113,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0.html">Top</a>  <a href="chap1.html">1</a>  <a 
href="chap2.html">2</a>  <a href="chap3.html">3</a>  <a 
href="chapInd.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chap2_mj.html 
new/ferret-1.0.11/doc/chap2_mj.html
--- old/ferret-1.0.10/doc/chap2_mj.html 2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/chap2_mj.html 2024-04-24 09:18:45.000000000 +0200
@@ -6,7 +6,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
 <head>
 <script type="text/javascript"
-  
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
+  
src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
 </script>
 <title>GAP (Ferret) - Chapter 2: The Solve Method</title>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
@@ -116,6 +116,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0_mj.html">Top</a>  <a href="chap1_mj.html">1</a>  <a 
href="chap2_mj.html">2</a>  <a href="chap3_mj.html">3</a>  <a 
href="chapInd_mj.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chap3.html 
new/ferret-1.0.11/doc/chap3.html
--- old/ferret-1.0.10/doc/chap3.html    2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/chap3.html    2024-04-24 09:18:45.000000000 +0200
@@ -39,7 +39,7 @@
 
 <h4>3.1 <span class="Heading">Unpacking the Ferret Package</span></h4>
 
-<p>If the Ferret package was obtained as a part of the <strong 
class="pkg">GAP</strong> distribution from the "Download" section of the 
<strong class="pkg">GAP</strong> website, you may proceed to Section <a 
href="chap3.html#X7DB615628530240D"><span class="RefLink">3.2</span></a>. 
Alternatively, the Ferret package may be installed using a separate archive, 
for example, for an update or an installation in a non-default location (see <a 
href="../../../doc/ref/chap9.html#X7A4973627A5DB27D"><span 
class="RefLink">Reference: GAP Root Directories</span></a>).</p>
+<p>If the Ferret package was obtained as a part of the <strong 
class="pkg">GAP</strong> distribution from the <q>Download</q> section of the 
<strong class="pkg">GAP</strong> website, you may proceed to Section <a 
href="chap3.html#X7DB615628530240D"><span class="RefLink">3.2</span></a>. 
Alternatively, the Ferret package may be installed using a separate archive, 
for example, for an update or an installation in a non-default location (see <a 
href="../../../doc/ref/chap9.html#X7A4973627A5DB27D"><span 
class="RefLink">Reference: GAP Root Directories</span></a>).</p>
 
 <p>Below we describe the installation procedure for the <code 
class="file">.tar.gz</code> archive format. Installation using other archive 
formats is performed in a similar way.</p>
 
@@ -104,6 +104,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0.html">Top</a>  <a href="chap1.html">1</a>  <a 
href="chap2.html">2</a>  <a href="chap3.html">3</a>  <a 
href="chapInd.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chap3_mj.html 
new/ferret-1.0.11/doc/chap3_mj.html
--- old/ferret-1.0.10/doc/chap3_mj.html 2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/chap3_mj.html 2024-04-24 09:18:45.000000000 +0200
@@ -6,7 +6,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
 <head>
 <script type="text/javascript"
-  
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
+  
src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
 </script>
 <title>GAP (Ferret) - Chapter 3: Installing and Loading the Ferret 
Package</title>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
@@ -42,7 +42,7 @@
 
 <h4>3.1 <span class="Heading">Unpacking the Ferret Package</span></h4>
 
-<p>If the Ferret package was obtained as a part of the <strong 
class="pkg">GAP</strong> distribution from the "Download" section of the 
<strong class="pkg">GAP</strong> website, you may proceed to Section <a 
href="chap3_mj.html#X7DB615628530240D"><span class="RefLink">3.2</span></a>. 
Alternatively, the Ferret package may be installed using a separate archive, 
for example, for an update or an installation in a non-default location (see <a 
href="../../../doc/ref/chap9_mj.html#X7A4973627A5DB27D"><span 
class="RefLink">Reference: GAP Root Directories</span></a>).</p>
+<p>If the Ferret package was obtained as a part of the <strong 
class="pkg">GAP</strong> distribution from the <q>Download</q> section of the 
<strong class="pkg">GAP</strong> website, you may proceed to Section <a 
href="chap3_mj.html#X7DB615628530240D"><span class="RefLink">3.2</span></a>. 
Alternatively, the Ferret package may be installed using a separate archive, 
for example, for an update or an installation in a non-default location (see <a 
href="../../../doc/ref/chap9_mj.html#X7A4973627A5DB27D"><span 
class="RefLink">Reference: GAP Root Directories</span></a>).</p>
 
 <p>Below we describe the installation procedure for the <code 
class="file">.tar.gz</code> archive format. Installation using other archive 
formats is performed in a similar way.</p>
 
@@ -107,6 +107,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0_mj.html">Top</a>  <a href="chap1_mj.html">1</a>  <a 
href="chap2_mj.html">2</a>  <a href="chap3_mj.html">3</a>  <a 
href="chapInd_mj.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chapInd.html 
new/ferret-1.0.11/doc/chapInd.html
--- old/ferret-1.0.10/doc/chapInd.html  2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/chapInd.html  2024-04-24 09:18:45.000000000 +0200
@@ -41,6 +41,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0.html">Top</a>  <a href="chap1.html">1</a>  <a 
href="chap2.html">2</a>  <a href="chap3.html">3</a>  <a 
href="chapInd.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chapInd.txt 
new/ferret-1.0.11/doc/chapInd.txt
--- old/ferret-1.0.10/doc/chapInd.txt   2024-01-22 09:55:41.000000000 +0100
+++ new/ferret-1.0.11/doc/chapInd.txt   2024-04-24 09:18:42.000000000 +0200
@@ -6,7 +6,7 @@
   ConStabilize, for a transformation or partial perm 2.1-1 
       for an object and an action 2.1-1 
   EnableFerretOverloads 1.1-1 
-  Ferret package 1. 
+  Ferret package 1.0 
   FerretOverloadsEnabled 1.1-2 
   Solve 2.1-3 
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/chapInd_mj.html 
new/ferret-1.0.11/doc/chapInd_mj.html
--- old/ferret-1.0.10/doc/chapInd_mj.html       2024-01-22 09:55:45.000000000 
+0100
+++ new/ferret-1.0.11/doc/chapInd_mj.html       2024-04-24 09:18:45.000000000 
+0200
@@ -6,7 +6,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
 <head>
 <script type="text/javascript"
-  
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
+  
src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS-MML_HTMLorMML";>
 </script>
 <title>GAP (Ferret) - Index</title>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
@@ -44,6 +44,6 @@
 <div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a 
href="chap0_mj.html">Top</a>  <a href="chap1_mj.html">1</a>  <a 
href="chap2_mj.html">2</a>  <a href="chap3_mj.html">3</a>  <a 
href="chapInd_mj.html">Ind</a>  </div>
 
 <hr />
-<p class="foot">generated by <a 
href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
+<p class="foot">generated by <a 
href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc";>GAPDoc2HTML</a></p>
 </body>
 </html>
Binary files old/ferret-1.0.10/doc/manual.pdf and 
new/ferret-1.0.11/doc/manual.pdf differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/manual.six 
new/ferret-1.0.11/doc/manual.six
--- old/ferret-1.0.10/doc/manual.six    2024-01-22 09:55:45.000000000 +0100
+++ new/ferret-1.0.11/doc/manual.six    2024-04-24 09:18:45.000000000 +0200
@@ -3,9 +3,11 @@
 encoding := "UTF-8",
 bookname := "Ferret",
 entries :=
-[ [ "Title page", ".", [ 0, 0, 0 ], 1, 1, "title page", "X7D2C85EC87DD46E5" ],
-  [ "Copyright", ".-1", [ 0, 0, 1 ], 29, 2, "copyright", "X81488B807F2A1CF1" ]
-    , [ "Table of Contents", ".-2", [ 0, 0, 2 ], 34, 3, "table of contents", 
+[ [ "Title page", "0.0", [ 0, 0, 0 ], 1, 1, "title page", "X7D2C85EC87DD46E5" 
+     ], 
+  [ "Copyright", "0.0-1", [ 0, 0, 1 ], 29, 2, "copyright", 
+      "X81488B807F2A1CF1" ], 
+  [ "Table of Contents", "0.0-2", [ 0, 0, 2 ], 34, 3, "table of contents", 
       "X8537FEB07AF2BEC8" ], 
   [ "\033[1X\033[33X\033[0;-2YThe Ferret Package\033[133X\033[101X", "1", 
       [ 1, 0, 0 ], 1, 4, "the ferret package", "X84F30BD780680D41" ], 
@@ -38,7 +40,7 @@
       "3.3", [ 3, 3, 0 ], 59, 10, "loading the ferret package", 
       "X7BA03640834E607E" ], 
   [ "Index", "ind", [ "Ind", 0, 0 ], 1, 11, "index", "X83A0356F839C696F" ], 
-  [ "Ferret package", "1.", [ 1, 0, 0 ], 1, 4, "ferret package", 
+  [ "Ferret package", "1.0", [ 1, 0, 0 ], 1, 4, "ferret package", 
       "X84F30BD780680D41" ], 
   [ "\033[2XEnableFerretOverloads\033[102X", "1.1-1", [ 1, 1, 1 ], 44, 4, 
       "enableferretoverloads", "X7E455E297809B021" ], 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ferret-1.0.10/doc/title.xml 
new/ferret-1.0.11/doc/title.xml
--- old/ferret-1.0.10/doc/title.xml     2024-01-22 09:55:41.000000000 +0100
+++ new/ferret-1.0.11/doc/title.xml     2024-04-24 09:18:42.000000000 +0200
@@ -9,7 +9,7 @@
     Backtrack Search in Permutation Groups
   </Subtitle>
   <Version>
-    1.0.10
+    1.0.11
   </Version>
   <Author>
     Christopher Jefferson<Alt Only="LaTeX"><Br/></Alt>
@@ -19,11 +19,11 @@
 UK<Br/>
 </Address>
 <Email>ca...@st-andrews.ac.uk</Email>
-<Homepage>https://caj.host.cs.st-andrews.ac.uk/</Homepage>
+<Homepage>https://heather.cafe/</Homepage>
 
   </Author>
   <Date>
-    22 January 2024
+    24 April 2024
   </Date>
   <Copyright>
     &copyright; by Christopher Jefferson

Reply via email to