Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package nauty for openSUSE:Factory checked in at 2026-02-03 21:35:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/nauty (Old) and /work/SRC/openSUSE:Factory/.nauty.new.1995 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nauty" Tue Feb 3 21:35:44 2026 rev:15 rq:1330807 version:2.9.3 Changes: -------- --- /work/SRC/openSUSE:Factory/nauty/nauty.changes 2025-10-12 22:28:47.152831073 +0200 +++ /work/SRC/openSUSE:Factory/.nauty.new.1995/nauty.changes 2026-02-03 21:36:33.765379902 +0100 @@ -1,0 +2,26 @@ +Tue Feb 3 16:45:02 UTC 2026 - Jan Engelhardt <[email protected]> + +- Update to release 2.9.3 + * The `-r` and `-R` switches in complg were badly broken for a + long time. The core functionality of complg was fine, however. + As well as fixing this problem, complg has a new switch `-S` + that outputs only the input graphs that are self-complementary. + * vcolg has a new switch ``-F#`` that says to use the group that + fixes the first n(#) vertices setwise and also to use only + colour 0 on the first n vertices. + * genrang has a new switch `-G#` that provides an approximation + of random unlabelled graphs. The greater the parameter, the + better the approximation and the worse the efficiency. In + particular graphs whose automorphism groups have order at most + # come out in the correct relative proportions. + * uniqg has a new switch `-J` that writes 32-byte hash codes as + lines ending with LF newline. Note that it is still binary, but + now it is good for sorting. + * A labelling error with Traces when an initial partition is + specified was corrected. A minor standards violation with + memcpy was also fixed. + * `cubhamg -V -c` now displays all hamiltonian cycles. In + addition, cubhamg has a facility for user-written code to be + called for each cycle. + +------------------------------------------------------------------- Old: ---- nauty2_9_1.tar.gz New: ---- nauty2_9_3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ nauty.spec ++++++ --- /var/tmp/diff_new_pack.xc5pPL/_old 2026-02-03 21:36:34.497410667 +0100 +++ /var/tmp/diff_new_pack.xc5pPL/_new 2026-02-03 21:36:34.501410835 +0100 @@ -17,9 +17,9 @@ Name: nauty -%define lname libnauty-2_9_1 -%define fuv 2_9_1 -Version: 2.9.1 +%define lname libnauty-2_9_3 +%define fuv 2_9_3 +Version: 2.9.3 Release: 0 Summary: Tools for computing automorphism groups of graphs License: Apache-2.0 ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.xc5pPL/_old 2026-02-03 21:36:34.545412685 +0100 +++ /var/tmp/diff_new_pack.xc5pPL/_new 2026-02-03 21:36:34.549412852 +0100 @@ -1,5 +1,5 @@ -mtime: 1760208415 -commit: 8d1459332471634f31eb5b85d2c5abd7b3447ab075cf50a18e19c3fee8a746f9 +mtime: 1770137212 +commit: f1ada29142b8a1d8a0981a766ccadc21f07726ab86021d6bd178d2311c02a212 url: https://src.opensuse.org/jengelh/nauty revision: master ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-02-03 17:47:00.000000000 +0100 @@ -0,0 +1 @@ +.osc ++++++ nauty-am.diff ++++++ --- /var/tmp/diff_new_pack.xc5pPL/_old 2026-02-03 21:36:34.749421258 +0100 +++ /var/tmp/diff_new_pack.xc5pPL/_new 2026-02-03 21:36:34.753421426 +0100 @@ -7,14 +7,14 @@ `./configure --enable-generic` is broken: still uses -march=native. Rewrite in automake. --- - Makefile.am | 123 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Makefile.am | 124 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 11 ++++- - 2 files changed, 132 insertions(+), 2 deletions(-) + 2 files changed, 133 insertions(+), 2 deletions(-) -Index: nauty2_9_1/Makefile.am +Index: nauty2_9_3/Makefile.am =================================================================== --- /dev/null -+++ nauty2_9_1/Makefile.am ++++ nauty2_9_3/Makefile.am @@ -0,0 +1,124 @@ +ACLOCAL_AMFLAGS = -I m4 +bin_PROGRAMS = addedgeg amtog assembleg biplabg catg checks6 complg converseg copyg \ @@ -140,13 +140,13 @@ +libnautyW1_la_SOURCES = ${libnauty_la_SOURCES} +libnautyW1_la_LIBADD = -lpthread +libnautyW1_la_LDFLAGS = ${libnauty_la_LDFLAGS} -Index: nauty2_9_1/configure.ac +Index: nauty2_9_3/configure.ac =================================================================== ---- nauty2_9_1.orig/configure.ac -+++ nauty2_9_1/configure.ac +--- nauty2_9_3.orig/configure.ac ++++ nauty2_9_3/configure.ac @@ -1,6 +1,12 @@ # Process this file with autoconf to produce a configure script. - AC_INIT([nauty],[2.9.1],[[email protected]]) + AC_INIT([nauty],[2.9.3],[[email protected]]) AC_CONFIG_SRCDIR([nauty-h.in]) +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_MACRO_DIR([m4]) @@ -174,9 +174,9 @@ dnl Checks for library functions. AC_CHECK_FUNC(isatty,have_isatty=1,have_isatty=0) -@@ -571,7 +578,7 @@ AC_SUBST(have_gunzip) - - LT_INIT +@@ -577,7 +584,7 @@ AS_IF([test "x$enable_static" = "xyes"], + AC_SUBST([osuffix]) + AC_SUBST([olist]) -AC_CONFIG_FILES([makefile:makefile.in nauty.h:nauty-h.in +AC_CONFIG_FILES([Makefile nauty.h:nauty-h.in ++++++ nauty2_9_1.tar.gz -> nauty2_9_3.tar.gz ++++++ ++++ 14236 lines of diff (skipped)
