Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package omping for openSUSE:Factory checked in at 2021-06-04 00:33:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/omping (Old) and /work/SRC/openSUSE:Factory/.omping.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "omping" Fri Jun 4 00:33:54 2021 rev:2 rq:897176 version:0.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/omping/omping.changes 2017-07-21 22:47:56.845016273 +0200 +++ /work/SRC/openSUSE:Factory/.omping.new.1898/omping.changes 2021-06-04 00:34:14.336988002 +0200 @@ -1,0 +2,15 @@ +Thu May 27 10:43:06 UTC 2021 - [email protected] + +- Update to version 0.0.5: + * spec: Tidy specfile a bit + * spec: Use license and set_build_flags macros + * Makefile: Use install -p to preserve timestamps + * Makefile: Add -O to CFLAGS + * Remove fedorahosted references + * Add banner + * Add README file + * Move is_dup_packet to rhfunc + * Move msg mcast prefix check to msg + * Pass omping_instance to cli_parse + +------------------------------------------------------------------- Old: ---- omping-0.0.5.tar.gz New: ---- _service _servicedata omping-0.0.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ omping.spec ++++++ --- /var/tmp/diff_new_pack.diBMBZ/_old 2021-06-04 00:34:14.736989155 +0200 +++ /var/tmp/diff_new_pack.diBMBZ/_new 2021-06-04 00:34:14.740989166 +0200 @@ -1,7 +1,7 @@ # # spec file for package omping # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,18 +12,18 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: omping Version: 0.0.5 -Release: 1%{?dist} +Release: 0%{?dist} Summary: Utility to test IP multicast functionality License: ISC Group: Productivity/Networking/Diagnostic -Url: https://github.com/jfriesse/omping -Source0: %{name}-%{version}.tar.gz +URL: https://github.com/jfriesse/omping +Source0: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build %description ++++++ _service ++++++ <services> <service name="tar_scm" mode="disabled"> <param name="url">[email protected]:jfriesse/omping.git</param> <param name="scm">git</param> <param name="exclude">.git</param> <param name="filename">omping</param> <param name="versionformat">0.0.5</param> <param name="revision">master</param> <param name="changesgenerate">enable</param> </service> <service name="recompress" mode="disabled"> <param name="file">omping*.tar</param> <param name="compression">bz2</param> </service> <service name="set_version" mode="disabled"> <param name="basename">omping</param> </service> </services> ++++++ _servicedata ++++++ <servicedata> <service name="tar_scm"> <param name="url">[email protected]:jfriesse/omping.git</param> <param name="changesrevision">ea82ba7a43782901400934af3da7ef25e591f43a</param></service></servicedata>++++++ omping-0.0.5.tar.gz -> omping-0.0.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/omping-0.0.5/Makefile new/omping-0.0.5/Makefile --- old/omping-0.0.5/Makefile 2017-04-27 07:41:02.752756145 +0200 +++ new/omping-0.0.5/Makefile 2019-03-20 17:34:49.000000000 +0100 @@ -87,9 +87,9 @@ install: $(PROGRAM_NAME) test -z "$(DESTDIR)/$(BINDIR)" || mkdir -p "$(DESTDIR)/$(BINDIR)" - $(INSTALL_PROGRAM) -c $< $(DESTDIR)/$(BINDIR) + $(INSTALL_PROGRAM) -c -p $< $(DESTDIR)/$(BINDIR) test -z "$(DESTDIR)/$(MANDIR)/man8" || mkdir -p "$(DESTDIR)/$(MANDIR)/man8" - $(INSTALL_PROGRAM) -c -m 0644 $<.8 $(DESTDIR)/$(MANDIR)/man8 + $(INSTALL_PROGRAM) -c -p -m 0644 $<.8 $(DESTDIR)/$(MANDIR)/man8 uninstall: rm -f $(DESTDIR)/$(BINDIR)/$(PROGRAM_NAME) @@ -101,10 +101,7 @@ TAGS: ctags *.[ch] -spec: - sed -i "s/Version:.*/Version: $(VERSION_SH)/" omping.spec - -dist: spec +dist: mkdir -p $(PROGRAM_NAME)-$(VERSION_SH) cp AUTHORS COPYING Makefile *.[ch] $(PROGRAM_NAME).8 $(PROGRAM_NAME).spec $(PROGRAM_NAME)-$(VERSION_SH)/ tar -czf $(PROGRAM_NAME)-$(VERSION_SH).tar.gz $(PROGRAM_NAME)-$(VERSION_SH) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/omping-0.0.5/README.md new/omping-0.0.5/README.md --- old/omping-0.0.5/README.md 1970-01-01 01:00:00.000000000 +0100 +++ new/omping-0.0.5/README.md 2019-03-20 17:34:49.000000000 +0100 @@ -0,0 +1,35 @@ + + +### Overview +Omping (Open Multicast Ping) is tool to test IP multicast functionality primarily in local network. + +### Features + * Similar user experience as classic ping tool + * Ping multiple hosts at once + * Implementation of RFC Draft [http://tools.ietf.org/html/draft-ietf-mboned-ssmping-08] + * Any-source and Source-specific Multicast + +### Installation +#### Fedora +Fedora contain omping package. Use yum for installation. +``` +$ yum install omping +``` + +#### Source code +For stable version, use https://github.com/jfriesse/omping/releases/download/0.0.4/omping-0.0.4.tar.gz. For newest git, use +``` +$ git clone git://github.com/jfriesse/omping.git +$ cd omping +$ make +``` + +#### Support +Please use GitHub issues. + +#### Defects +If a defect is found in omping, please create new issue. You can also try to find and fix bug and create pull +request. + +#### Who +This project is maintained by [Jan Friesse](mailto:jfriesseATredhatDOTcom) ([Red Hat](http://www.redhat.com)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/omping-0.0.5/extras/img/omping-banner-url.svg new/omping-0.0.5/extras/img/omping-banner-url.svg --- old/omping-0.0.5/extras/img/omping-banner-url.svg 1970-01-01 01:00:00.000000000 +0100 +++ new/omping-0.0.5/extras/img/omping-banner-url.svg 2019-03-20 17:34:49.000000000 +0100 @@ -0,0 +1,201 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.1" + width="510" + height="100" + id="svg2826"> + <defs + id="defs2828"> + <linearGradient + id="linearGradient7490"> + <stop + id="stop7492" + style="stop-color:#008000;stop-opacity:1" + offset="0" /> + <stop + id="stop7494" + style="stop-color:#80ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Send" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + id="path4254" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Sstart" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(0.2,0,0,0.2,1.2,0)" + id="path4251" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Mstart" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(0.4,0,0,0.4,4,0)" + id="path4245" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Lstart" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(0.8,0,0,0.8,10,0)" + id="path4239" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <radialGradient + cx="41.967937" + cy="19.055782" + r="7.7730289" + fx="41.967937" + fy="19.055782" + id="radialGradient7514" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.3690259,-1.7159517,-31.117666)" + spreadMethod="pad" /> + <linearGradient + x1="34.25" + y1="40.75" + x2="52.75" + y2="40.75" + id="linearGradient7522" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.5798975,-1.7159517,-35.13599)" /> + <linearGradient + x1="24.005676" + y1="41.372581" + x2="36.883934" + y2="41.372581" + id="linearGradient7530" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.5798975,-1.7159517,-35.13599)" /> + <linearGradient + x1="14.702796" + y1="39.103951" + x2="26.191545" + y2="39.103951" + id="linearGradient7538" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.5798975,-1.7159517,-35.13599)" /> + <linearGradient + x1="10.93156" + y1="22.015535" + x2="29.137823" + y2="22.015535" + id="linearGradient7546" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.5798975,-1.7159517,-35.13599)" /> + </defs> + <g + transform="translate(0,36)" + id="layer1"> + <path + d="M 43.59236,11.858856 31.66536,0.49439228 33.0482,-1.5410339 30.109663,-0.35370144 27.689693,0.66401008 33.73962,-5.2726492 22.331185,-0.18408207 32.183925,-7.9865513 16.281256,-1.3714145 28.553967,-9.5131194 23.886882,-7.6473125 20.775488,-12.227021 21.1212,-12.56626" + id="path3866" + style="fill:none;stroke:url(#linearGradient7546);stroke-width:1.45292902;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.36323226, 0.36323226;stroke-dashoffset:0" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,-20.957628,-179.84931)" + id="path2836-9" + style="fill:none;stroke:#000000;stroke-width:1.75012136;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.43753035, 0.43753035;stroke-dashoffset:0;marker-mid:none" /> + <path + d="m 38.935028,18.064955 -4.428778,5.372886 -3.066078,-1.906508 1.703376,5.026249 -5.110131,-4.159655 3.577092,7.452713 -7.494858,-8.665945 6.302495,13.518875 -5.110131,-6.239481 0.681351,2.946423 -3.747428,3.813015" + id="path3868" + style="fill:none;stroke:url(#linearGradient7538);stroke-width:1.45795655;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.36448915, 0.36448915;stroke-dashoffset:0;marker-mid:none;marker-end:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,-21.670241,-117.36602)" + id="path2836-3" + style="fill:none;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.43750001, 0.43750001;stroke-dashoffset:0" /> + <path + d="m 45.763188,38.793315 0,-4.09624 3.537663,-1.675734 -5.399589,-0.372385 -6.900757,-0.597944 18.766432,-3.989107 -15.775723,-1.557309 5.585782,-1.675734 -0.186193,-3.165276" + id="path4234" + style="fill:none;stroke:url(#linearGradient7530);stroke-width:1.57989752;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,9.2150963,-109.59179)" + id="path2836-1" + style="fill:none;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 53.185487,17.395602 9.084411,7.504513 6.714564,-5.529641 -8.886924,14.416565 7.307026,-6.912052 6.714565,5.134667 5.529641,-3.159795 -6.714564,7.899487 5.134667,-1.974872 2.76482,6.319591" + id="path6018" + style="fill:none;stroke:url(#linearGradient7522);stroke-width:1.57989752;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,49.425147,-109.46654)" + id="path2836-93" + style="fill:none;stroke:#000000;stroke-width:1.75012147;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:none" /> + <path + d="M 53.098447,4.0251062 60.758874,-0.52940974 60.062473,-6.1349635 64.589088,0.87197831 60.176808,-14.881336 70.6956,4.8217221 68.117874,-5.542502 76.079728,-8.9377412" + id="path6020" + style="fill:none;stroke:url(#radialGradient7514);stroke-width:1.57989752;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,49.425147,-172.66244)" + id="path2836-94" + style="fill:none;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,9.2150963,-147.53875)" + id="path2836" + style="fill:#000000;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <text + x="132.09723" + y="24.323118" + transform="scale(0.85845931,1.1648776)" + id="text2853" + xml:space="preserve" + style="font-size:48px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"><tspan + x="132.09723" + y="24.323118" + id="tspan2855"><tspan + x="132.09723" + y="24.323118" + id="tspan2857" + style="font-weight:bold;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans Bold">Open Multicast Ping</tspan></tspan></text> + <text + x="166.25879" + y="53.35474" + id="text2859" + xml:space="preserve" + style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"><tspan + x="166.25879" + y="53.35474" + id="tspan2861"><tspan + x="166.25879" + y="53.35474" + id="tspan2863">https://github.com/jfriesse/omping</tspan></tspan></text> + </g> +</svg> Binary files old/omping-0.0.5/extras/img/omping-banner.png and new/omping-0.0.5/extras/img/omping-banner.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/omping-0.0.5/extras/img/omping-banner.svg new/omping-0.0.5/extras/img/omping-banner.svg --- old/omping-0.0.5/extras/img/omping-banner.svg 1970-01-01 01:00:00.000000000 +0100 +++ new/omping-0.0.5/extras/img/omping-banner.svg 2019-03-20 17:34:49.000000000 +0100 @@ -0,0 +1,189 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.1" + width="510" + height="100" + id="svg2826"> + <defs + id="defs2828"> + <linearGradient + id="linearGradient7490"> + <stop + id="stop7492" + style="stop-color:#008000;stop-opacity:1" + offset="0" /> + <stop + id="stop7494" + style="stop-color:#80ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Send" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + id="path4254" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Sstart" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(0.2,0,0,0.2,1.2,0)" + id="path4251" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Mstart" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(0.4,0,0,0.4,4,0)" + id="path4245" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Lstart" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(0.8,0,0,0.8,10,0)" + id="path4239" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <radialGradient + cx="41.967937" + cy="19.055782" + r="7.7730289" + fx="41.967937" + fy="19.055782" + id="radialGradient7514" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.3690259,-1.7159517,-31.117666)" + spreadMethod="pad" /> + <linearGradient + x1="34.25" + y1="40.75" + x2="52.75" + y2="40.75" + id="linearGradient7522" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.5798975,-1.7159517,-35.13599)" /> + <linearGradient + x1="24.005676" + y1="41.372581" + x2="36.883934" + y2="41.372581" + id="linearGradient7530" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.5798975,-1.7159517,-35.13599)" /> + <linearGradient + x1="14.702796" + y1="39.103951" + x2="26.191545" + y2="39.103951" + id="linearGradient7538" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.5798975,-1.7159517,-35.13599)" /> + <linearGradient + x1="10.93156" + y1="22.015535" + x2="29.137823" + y2="22.015535" + id="linearGradient7546" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5798975,0,0,1.5798975,-1.7159517,-35.13599)" /> + </defs> + <g + transform="translate(0,36)" + id="layer1"> + <path + d="M 43.59236,11.858856 31.66536,0.49439228 33.0482,-1.5410339 30.109663,-0.35370144 27.689693,0.66401008 33.73962,-5.2726492 22.331185,-0.18408207 32.183925,-7.9865513 16.281256,-1.3714145 28.553967,-9.5131194 23.886882,-7.6473125 20.775488,-12.227021 21.1212,-12.56626" + id="path3866" + style="fill:none;stroke:url(#linearGradient7546);stroke-width:1.45292902;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.36323226, 0.36323226;stroke-dashoffset:0" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,-20.957628,-179.84931)" + id="path2836-9" + style="fill:none;stroke:#000000;stroke-width:1.75012136;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.43753035, 0.43753035;stroke-dashoffset:0;marker-mid:none" /> + <path + d="m 38.935028,18.064955 -4.428778,5.372886 -3.066078,-1.906508 1.703376,5.026249 -5.110131,-4.159655 3.577092,7.452713 -7.494858,-8.665945 6.302495,13.518875 -5.110131,-6.239481 0.681351,2.946423 -3.747428,3.813015" + id="path3868" + style="fill:none;stroke:url(#linearGradient7538);stroke-width:1.45795655;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.36448915, 0.36448915;stroke-dashoffset:0;marker-mid:none;marker-end:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,-21.670241,-117.36602)" + id="path2836-3" + style="fill:none;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.43750001, 0.43750001;stroke-dashoffset:0" /> + <path + d="m 45.763188,38.793315 0,-4.09624 3.537663,-1.675734 -5.399589,-0.372385 -6.900757,-0.597944 18.766432,-3.989107 -15.775723,-1.557309 5.585782,-1.675734 -0.186193,-3.165276" + id="path4234" + style="fill:none;stroke:url(#linearGradient7530);stroke-width:1.57989752;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,9.2150963,-109.59179)" + id="path2836-1" + style="fill:none;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 53.185487,17.395602 9.084411,7.504513 6.714564,-5.529641 -8.886924,14.416565 7.307026,-6.912052 6.714565,5.134667 5.529641,-3.159795 -6.714564,7.899487 5.134667,-1.974872 2.76482,6.319591" + id="path6018" + style="fill:none;stroke:url(#linearGradient7522);stroke-width:1.57989752;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,49.425147,-109.46654)" + id="path2836-93" + style="fill:none;stroke:#000000;stroke-width:1.75012147;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:none" /> + <path + d="M 53.098447,4.0251062 60.758874,-0.52940974 60.062473,-6.1349635 64.589088,0.87197831 60.176808,-14.881336 70.6956,4.8217221 68.117874,-5.542502 76.079728,-8.9377412" + id="path6020" + style="fill:none;stroke:url(#radialGradient7514);stroke-width:1.57989752;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,49.425147,-172.66244)" + id="path2836-94" + style="fill:none;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(2.8707002,0,0,2.8707002,9.2150963,-147.53875)" + id="path2836" + style="fill:#000000;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <text + x="132.09723" + y="24.323118" + transform="scale(0.85845931,1.1648776)" + id="text2849" + xml:space="preserve" + style="font-size:48px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"><tspan + x="132.09723" + y="24.323118" + id="tspan2851"><tspan + x="132.09723" + y="24.323118" + id="tspan2853" + style="font-weight:bold;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans Bold">Open Multicast Ping</tspan></tspan></text> + </g> +</svg> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/omping-0.0.5/extras/img/omping-icon.svg new/omping-0.0.5/extras/img/omping-icon.svg --- old/omping-0.0.5/extras/img/omping-icon.svg 1970-01-01 01:00:00.000000000 +0100 +++ new/omping-0.0.5/extras/img/omping-icon.svg 2019-03-20 17:34:49.000000000 +0100 @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.1" + width="64" + height="64" + id="svg2826"> + <defs + id="defs2828"> + <linearGradient + id="linearGradient7490"> + <stop + id="stop7492" + style="stop-color:#008000;stop-opacity:1" + offset="0" /> + <stop + id="stop7494" + style="stop-color:#80ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Send" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + id="path4254" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Sstart" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(0.2,0,0,0.2,1.2,0)" + id="path4251" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Mstart" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(0.4,0,0,0.4,4,0)" + id="path4245" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <marker + refX="0" + refY="0" + orient="auto" + id="Arrow1Lstart" + style="overflow:visible"> + <path + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + transform="matrix(0.8,0,0,0.8,10,0)" + id="path4239" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" /> + </marker> + <radialGradient + cx="41.967937" + cy="19.055782" + r="7.7730289" + fx="41.967937" + fy="19.055782" + id="radialGradient7514" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.86652829,0,2.5434079)" + spreadMethod="pad" /> + <linearGradient + x1="34.25" + y1="40.75" + x2="52.75" + y2="40.75" + id="linearGradient7522" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="24.005676" + y1="41.372581" + x2="36.883934" + y2="41.372581" + id="linearGradient7530" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="14.702796" + y1="39.103951" + x2="26.191545" + y2="39.103951" + id="linearGradient7538" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="10.93156" + y1="22.015535" + x2="29.137823" + y2="22.015535" + id="linearGradient7546" + xlink:href="#linearGradient7490" + gradientUnits="userSpaceOnUse" /> + </defs> + <g + id="layer1"> + <path + d="m 28.678007,29.745503 -7.549224,-7.193165 0.875272,-1.288328 -1.859954,0.751525 -1.531726,0.644163 3.829316,-3.757623 -7.220997,3.220821 6.236316,-4.938592 -10.065633,4.187067 7.768042,-5.153312 -2.954043,1.180967 -1.969364,-2.898738 0.218819,-0.214722" + id="path3866" + style="fill:none;stroke:url(#linearGradient7546);stroke-width:0.919635;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.22990875, 0.22990875;stroke-dashoffset:0" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(1.8170167,0,0,1.8170167,-12.179066,-91.596651)" + id="path2836-9" + style="fill:none;stroke:#000000;stroke-width:1.75012136;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.43753035, 0.43753035;stroke-dashoffset:0;marker-mid:none" /> + <path + d="m 25.730137,33.673669 -2.803206,3.400781 -1.940681,-1.206729 1.078156,3.181377 -3.23447,-2.632864 2.264129,4.717213 -4.743889,-5.485131 3.98918,8.556805 -3.23447,-3.949295 0.431263,1.864946 -2.371944,2.413457" + id="path3868" + style="fill:none;stroke:url(#linearGradient7538);stroke-width:0.92281717;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.2307043, 0.2307043;stroke-dashoffset:0;marker-mid:none;marker-end:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(1.8170167,0,0,1.8170167,-12.630116,-52.047701)" + id="path2836-3" + style="fill:none;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.43750001, 0.43750001;stroke-dashoffset:0" /> + <path + d="m 30.052038,46.793735 0,-2.592725 2.239172,-1.06066 -3.417683,-0.235702 -4.367851,-0.37847 11.878259,-2.524915 -9.985282,-0.985703 3.535534,-1.06066 -0.117851,-2.003469" + id="path4234" + style="fill:none;stroke:url(#linearGradient7530);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(1.8170167,0,0,1.8170167,6.9188336,-47.126981)" + id="path2836-1" + style="fill:none;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="M 34.75,33.25 40.5,38 44.75,34.5 39.125,43.625 43.75,39.25 48,42.5 l 3.5,-2 -4.25,5 3.25,-1.25 1.75,4" + id="path6018" + style="fill:none;stroke:url(#linearGradient7522);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(1.8170167,0,0,1.8170167,32.369884,-47.047701)" + id="path2836-93" + style="fill:none;stroke:#000000;stroke-width:1.75012147;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:none" /> + <path + d="m 34.694908,24.787112 4.848686,-2.882792 -0.440789,-3.548049 2.865132,4.435061 -2.792763,-9.971099 6.657895,12.471099 -1.631578,-6.560061 5.039475,-2.149025" + id="path6020" + style="fill:none;stroke:url(#radialGradient7514);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(1.8170167,0,0,1.8170167,32.369884,-87.047701)" + id="path2836-94" + style="fill:none;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 15.454545,55.363636 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(1.8170167,0,0,1.8170167,6.9188336,-71.145601)" + id="path2836" + style="fill:#000000;stroke:#000000;stroke-width:1.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> +</svg> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/omping-0.0.5/omping.spec new/omping-0.0.5/omping.spec --- old/omping-0.0.5/omping.spec 2017-04-27 07:41:02.752756145 +0200 +++ new/omping-0.0.5/omping.spec 2019-03-20 17:34:49.000000000 +0100 @@ -1,12 +1,12 @@ Name: omping -Version: 0.0.5 -Release: 1%{?dist} +Version: 0.0.4 +Release: 2%{?dist} Summary: Utility to test IP multicast functionality -Group: Applications/Internet License: ISC URL: https://github.com/jfriesse/omping Source0: https://github.com/jfriesse/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: gcc %description Omping (Open Multicast Ping) is tool to test IP multicast functionality @@ -16,22 +16,25 @@ %setup -q %build -make %{?_smp_mflags} CFLAGS="%{optflags}" +%set_build_flags +make %{?_smp_mflags} %install -rm -rf %{buildroot} make DESTDIR="%{buildroot}" PREFIX="%{_prefix}" install -%clean -rm -rf %{buildroot} - %files -%defattr(-,root,root,-) -%doc AUTHORS COPYING +%doc AUTHORS +%license COPYING %{_bindir}/%{name} %{_mandir}/man8/* %changelog +* Wed Mar 20 2019 Jan Friesse <[email protected]> - 0.0.4-2 +- Use license and set_build_flags macro +- Remove deprecated Group and Buildroot options +- Remove deprecated clean section +- Remove unneeded defattr + * Mon Jun 22 2011 Jan Friesse <[email protected]> - 0.0.4-1 - Update to version 0.0.4
