Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aml for openSUSE:Factory checked in at 2021-11-02 19:19:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aml (Old) and /work/SRC/openSUSE:Factory/.aml.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aml" Tue Nov 2 19:19:09 2021 rev:4 rq:928791 version:0.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/aml/aml.changes 2021-04-22 18:06:18.110728166 +0200 +++ /work/SRC/openSUSE:Factory/.aml.new.1890/aml.changes 2021-11-02 19:19:50.711115287 +0100 @@ -1,0 +2,6 @@ +Thu Oct 21 14:52:13 UTC 2021 - Ferdinand Thiessen <r...@fthiessen.de> + +- Update to 0.2.1 + * epoll: Fix fd deletion + +------------------------------------------------------------------- Old: ---- aml-0.2.0.tar.gz New: ---- aml-0.2.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aml.spec ++++++ --- /var/tmp/diff_new_pack.uSyWLX/_old 2021-11-02 19:19:51.087115575 +0100 +++ /var/tmp/diff_new_pack.uSyWLX/_new 2021-11-02 19:19:51.087115575 +0100 @@ -17,7 +17,7 @@ Name: aml -Version: 0.2.0 +Version: 0.2.1 Release: 0 Summary: Another Main Loop License: ISC ++++++ aml-0.2.0.tar.gz -> aml-0.2.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aml-0.2.0/FUNDING.yml new/aml-0.2.1/FUNDING.yml --- old/aml-0.2.0/FUNDING.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/aml-0.2.1/FUNDING.yml 2021-10-16 15:26:42.000000000 +0200 @@ -0,0 +1 @@ +patreon: andriyngvason diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aml-0.2.0/meson.build new/aml-0.2.1/meson.build --- old/aml-0.2.0/meson.build 2020-12-31 13:37:18.000000000 +0100 +++ new/aml-0.2.1/meson.build 2021-10-16 15:26:42.000000000 +0200 @@ -1,7 +1,7 @@ project( 'aml', 'c', - version: '0.2.0', + version: '0.2.1', license: 'ISC', default_options: [ 'c_std=c11', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aml-0.2.0/src/epoll.c new/aml-0.2.1/src/epoll.c --- old/aml-0.2.0/src/epoll.c 2020-12-31 13:37:18.000000000 +0100 +++ new/aml-0.2.1/src/epoll.c 2021-10-16 15:26:42.000000000 +0200 @@ -156,7 +156,7 @@ struct epoll_state* self = state; // Dummy event to appease valgrind struct epoll_event event = { 0 }; - return epoll_ctl(self->epoll_fd, EPOLL_CTL_MOD, aml_get_fd(handler), + return epoll_ctl(self->epoll_fd, EPOLL_CTL_DEL, aml_get_fd(handler), &event); }