Hello community, here is the log from the commit of package bustle for openSUSE:Factory checked in at 2016-02-01 19:56:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bustle (Old) and /work/SRC/openSUSE:Factory/.bustle.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bustle" Changes: -------- --- /work/SRC/openSUSE:Factory/bustle/bustle.changes 2016-01-22 01:08:48.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.bustle.new/bustle.changes 2016-02-01 19:57:21.000000000 +0100 @@ -1,0 +2,7 @@ +Fri Jan 29 12:27:04 UTC 2016 - [email protected] + +- update 0.5.4 +* A single-byte functional change! +* Use `DLT_DBUS` link type in pcap files + +------------------------------------------------------------------- Old: ---- bustle-0.5.3.tar.gz New: ---- bustle-0.5.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bustle.spec ++++++ --- /var/tmp/diff_new_pack.E1h0GY/_old 2016-02-01 19:57:22.000000000 +0100 +++ /var/tmp/diff_new_pack.E1h0GY/_new 2016-02-01 19:57:22.000000000 +0100 @@ -18,7 +18,7 @@ %bcond_with tests Name: bustle -Version: 0.5.3 +Version: 0.5.4 Release: 0 Summary: Draw sequence diagrams of D-Bus traffic Group: System/Libraries ++++++ bustle-0.5.3.tar.gz -> bustle-0.5.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bustle-0.5.3/Bustle/Loader/Pcap.hs new/bustle-0.5.4/Bustle/Loader/Pcap.hs --- old/bustle-0.5.3/Bustle/Loader/Pcap.hs 2016-01-11 14:52:06.000000000 +0100 +++ new/bustle-0.5.4/Bustle/Loader/Pcap.hs 2016-01-27 23:44:20.000000000 +0100 @@ -254,4 +254,7 @@ readPcap path = try $ do p <- openOffline path + -- TODO: check link type header is DLT_DBUS or DLT_NULL (for + -- backwards-compatibility) + liftM partitionEithers $ evalStateT (mapBodies p convert) Map.empty diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bustle-0.5.3/HACKING.md new/bustle-0.5.4/HACKING.md --- old/bustle-0.5.3/HACKING.md 2016-01-11 14:52:06.000000000 +0100 +++ new/bustle-0.5.4/HACKING.md 2016-01-27 23:44:20.000000000 +0100 @@ -23,8 +23,6 @@ ```sh # Tag release, build and sign the tarballs make maintainer-make-release -gpg --detach-sign --armor dist/bustle-x.y.z.tar.gz -gpg --detach-sign --armor dist/bustle-x.y.z-x86_64.tar.bz2 # Stick source and binaries on freedesktop.org mkdir x.y.z diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bustle-0.5.3/Makefile new/bustle-0.5.4/Makefile --- old/bustle-0.5.3/Makefile 2016-01-11 14:52:06.000000000 +0100 +++ new/bustle-0.5.4/Makefile 2016-01-27 23:44:20.000000000 +0100 @@ -123,6 +123,8 @@ git tag -s -m 'Bustle '`cat dist/build/autogen/version.txt` \ bustle-`cat dist/build/autogen/version.txt` make maintainer-binary-tarball + gpg --detach-sign --armor dist/bustle-`cat dist/build/autogen/version.txt`.tar.gz + gpg --detach-sign --armor dist/bustle-`cat dist/build/autogen/version.txt`-x86_64.tar.bz2 .travis.yml: bustle.cabal make_travis_yml.hs ./make_travis_yml.hs $< libpcap-dev libgtk-3-dev libcairo2-dev happy-1.19.4 alex-3.1.3 > $@ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bustle-0.5.3/NEWS.md new/bustle-0.5.4/NEWS.md --- old/bustle-0.5.3/NEWS.md 2016-01-11 14:52:06.000000000 +0100 +++ new/bustle-0.5.4/NEWS.md 2016-01-27 23:44:20.000000000 +0100 @@ -1,3 +1,9 @@ +Bustle 0.5.4 (2016-01-27) +------------------------- + +* A single-byte functional change! +* Use `DLT_DBUS` link type in pcap files + Bustle 0.5.3 (2016-01-11) ------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bustle-0.5.3/bustle.cabal new/bustle-0.5.4/bustle.cabal --- old/bustle-0.5.3/bustle.cabal 2016-01-11 14:52:06.000000000 +0100 +++ new/bustle-0.5.4/bustle.cabal 2016-01-27 23:44:20.000000000 +0100 @@ -1,6 +1,6 @@ Name: bustle Category: Network, Desktop -Version: 0.5.3 +Version: 0.5.4 Cabal-Version: >= 1.18 Tested-With: GHC >= 7.8.4 && < 7.11 Synopsis: Draw sequence diagrams of D-Bus traffic diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bustle-0.5.3/c-sources/pcap-monitor.c new/bustle-0.5.4/c-sources/pcap-monitor.c --- old/bustle-0.5.3/c-sources/pcap-monitor.c 2016-01-11 14:52:06.000000000 +0100 +++ new/bustle-0.5.4/c-sources/pcap-monitor.c 2016-01-27 23:44:20.000000000 +0100 @@ -23,6 +23,11 @@ #include <string.h> #include <pcap/pcap.h> +#ifndef DLT_DBUS +# define DLT_DBUS 231 +#endif + + typedef struct { struct timeval ts; GByteArray *blob; @@ -428,8 +433,7 @@ return FALSE; } - /* FIXME: use DLT_DBUS when it makes it into libpcap. */ - priv->p = pcap_open_dead (DLT_NULL, 1 << 27); + priv->p = pcap_open_dead (DLT_DBUS, 1 << 27); if (priv->p == NULL) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
