Hello community, here is the log from the commit of package ansilove for openSUSE:Factory checked in at 2019-12-05 17:34:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ansilove (Old) and /work/SRC/openSUSE:Factory/.ansilove.new.4691 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ansilove" Thu Dec 5 17:34:10 2019 rev:2 rq:753982 version:4.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/ansilove/ansilove.changes 2019-12-04 14:19:13.950380092 +0100 +++ /work/SRC/openSUSE:Factory/.ansilove.new.4691/ansilove.changes 2019-12-05 17:34:41.037445248 +0100 @@ -1,0 +2,8 @@ +Tue Nov 19 18:16:58 UTC 2019 - Martin Hauke <[email protected]> + +- Update to version 4.0.5 + * Add ENABLE_SECCOMP build option, to allow building seccomp + support conditionally + * Use ${CMAKE_INSTALL_BINDIR} instead of hardcoding 'bin' + +------------------------------------------------------------------- Old: ---- ansilove-4.0.4.tar.gz New: ---- ansilove-4.0.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ansilove.spec ++++++ --- /var/tmp/diff_new_pack.2sjMSq/_old 2019-12-05 17:34:41.957445118 +0100 +++ /var/tmp/diff_new_pack.2sjMSq/_new 2019-12-05 17:34:41.961445117 +0100 @@ -17,7 +17,7 @@ Name: ansilove -Version: 4.0.4 +Version: 4.0.5 Release: 0 Summary: ANSI and ASCII art to PNG converter License: BSD-2-Clause ++++++ ansilove-4.0.4.tar.gz -> ansilove-4.0.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/.travis.yml new/ansilove-4.0.5/.travis.yml --- old/ansilove-4.0.4/.travis.yml 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/.travis.yml 2019-11-19 11:40:41.000000000 +0100 @@ -35,7 +35,7 @@ coverity_scan: project: name: "ansilove/ansilove" - version: 4.0.4 + version: 4.0.5 description: "ANSi / ASCII art to PNG converter in C" notification_email: [email protected] build_command_prepend: cmake . diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/CMakeLists.txt new/ansilove-4.0.5/CMakeLists.txt --- old/ansilove-4.0.4/CMakeLists.txt 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/CMakeLists.txt 2019-11-19 11:40:41.000000000 +0100 @@ -5,20 +5,26 @@ include(CheckFunctionExists) include(GNUInstallDirs) +# Conditional build options +set(ENABLE_SECCOMP 0 + CACHE BOOL "Enable building with seccomp") + # Check if system has pledge and strtonum list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_OPENBSD_SOURCE) check_function_exists(pledge HAVE_PLEDGE) check_function_exists(strtonum HAVE_STRTONUM) -# Check if system has seccomp -message(STATUS "Looking for seccomp") -find_path(SECCOMP NAMES "linux/seccomp.h") -if(SECCOMP) - message(STATUS "Looking for seccomp - found") - add_definitions(-DHAVE_SECCOMP=1) -else() - message(STATUS "Looking for seccomp - not found") -endif() +if(ENABLE_SECCOMP) + # Check if system has seccomp + message(STATUS "Looking for seccomp") + find_path(SECCOMP NAMES "linux/seccomp.h") + if(SECCOMP) + message(STATUS "Looking for seccomp - found") + add_definitions(-DHAVE_SECCOMP=1) + else() + message(STATUS "Looking for seccomp - not found") + endif() +endif(ENABLE_SECCOMP) # Additional include directories for compat functions include_directories("compat") @@ -43,7 +49,7 @@ target_link_libraries(ansilove ${ANSILOVE_LIBRARIES} m) -install(TARGETS ansilove DESTINATION bin) +install(TARGETS ansilove DESTINATION ${CMAKE_INSTALL_BINDIR}) install(FILES ansilove.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1/) enable_testing() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/ChangeLog new/ansilove-4.0.5/ChangeLog --- old/ansilove-4.0.4/ChangeLog 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/ChangeLog 2019-11-19 11:40:41.000000000 +0100 @@ -1,3 +1,12 @@ +AnsiLove/C 4.0.5 (2019-11-19) + +- Add ENABLE_SECCOMP build option, to allow building seccomp support + conditionally +- Disable seccomp by default, it needs more testing on non !amd64 platforms +- Use ${CMAKE_INSTALL_BINDIR} instead of hardcoding 'bin' + + + AnsiLove/C 4.0.4 (2019-10-28) - Add initial seccomp support to Ansilove diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/FILE_ID.DIZ new/ansilove-4.0.5/FILE_ID.DIZ --- old/ansilove-4.0.4/FILE_ID.DIZ 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/FILE_ID.DIZ 2019-11-19 11:40:41.000000000 +0100 @@ -17,7 +17,7 @@ - -----------//______|----------------- - : : | | - | Ansilove/C 4.0.4 | + | Ansilove/C 4.0.5 | | | | ANSi=>PNG converter & library | | | diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/README.md new/ansilove-4.0.5/README.md --- old/ansilove-4.0.4/README.md 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/README.md 2019-11-19 11:40:41.000000000 +0100 @@ -23,7 +23,7 @@ This is a complete rewrite of [AnsiLove/PHP][3] in the C programming language. It converts ANSi and artscene related file formats into PNG images. The project is considered as stable, current version -is `4.0.4`. +is `4.0.5`. # Specs diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/src/ansilove.c new/ansilove-4.0.5/src/ansilove.c --- old/ansilove-4.0.4/src/ansilove.c 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/src/ansilove.c 2019-11-19 11:40:41.000000000 +0100 @@ -1,6 +1,6 @@ /* * ansilove.c - * Ansilove 4.0.4 + * Ansilove 4.0.5 * https://www.ansilove.org * * Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/src/config.h new/ansilove-4.0.5/src/config.h --- old/ansilove-4.0.4/src/config.h 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/src/config.h 2019-11-19 11:40:41.000000000 +0100 @@ -1,6 +1,6 @@ /* * config.h - * Ansilove 4.0.4 + * Ansilove 4.0.5 * https://www.ansilove.org * * Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus @@ -16,6 +16,6 @@ #include <stdint.h> /* configuration defines */ -#define VERSION "4.0.4" +#define VERSION "4.0.5" #endif /* CONFIG_H */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/src/fonts.h new/ansilove-4.0.5/src/fonts.h --- old/ansilove-4.0.4/src/fonts.h 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/src/fonts.h 2019-11-19 11:40:41.000000000 +0100 @@ -1,6 +1,6 @@ /* * fonts.h - * Ansilove 4.0.4 + * Ansilove 4.0.5 * https://www.ansilove.org * * Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/src/sauce.c new/ansilove-4.0.5/src/sauce.c --- old/ansilove-4.0.4/src/sauce.c 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/src/sauce.c 2019-11-19 11:40:41.000000000 +0100 @@ -1,6 +1,6 @@ /* * sauce.c - * Ansilove 4.0.4 + * Ansilove 4.0.5 * https://www.ansilove.org * * Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/src/sauce.h new/ansilove-4.0.5/src/sauce.h --- old/ansilove-4.0.4/src/sauce.h 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/src/sauce.h 2019-11-19 11:40:41.000000000 +0100 @@ -1,6 +1,6 @@ /* * sauce.h - * Ansilove 4.0.4 + * Ansilove 4.0.5 * https://www.ansilove.org * * Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/src/seccomp.h new/ansilove-4.0.5/src/seccomp.h --- old/ansilove-4.0.4/src/seccomp.h 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/src/seccomp.h 2019-11-19 11:40:41.000000000 +0100 @@ -1,6 +1,6 @@ /* * seccomp.h - * Ansilove 4.0.4 + * Ansilove 4.0.5 * https://www.ansilove.org * * Copyright (c) 2019, Frederic Cambus diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/src/strtolower.c new/ansilove-4.0.5/src/strtolower.c --- old/ansilove-4.0.4/src/strtolower.c 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/src/strtolower.c 2019-11-19 11:40:41.000000000 +0100 @@ -1,6 +1,6 @@ /* * strtolower.c - * Ansilove 4.0.4 + * Ansilove 4.0.5 * https://www.ansilove.org * * Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.0.4/src/strtolower.h new/ansilove-4.0.5/src/strtolower.h --- old/ansilove-4.0.4/src/strtolower.h 2019-10-28 17:22:44.000000000 +0100 +++ new/ansilove-4.0.5/src/strtolower.h 2019-11-19 11:40:41.000000000 +0100 @@ -1,6 +1,6 @@ /* * strtolower.h - * Ansilove 4.0.4 + * Ansilove 4.0.5 * https://www.ansilove.org * * Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
