<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/net/apinger/Makefile, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git-03.infra.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/'/>
<updated>2024-06-29T23:51:22Z</updated>
<entry>
<title>apinger: fix time_t format</title>
<updated>2024-06-29T23:51:22Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2024-06-24T21:42:36Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=b2a00dacb0caf9f49ef32de6f7a5b3dc53623718'/>
<id>urn:sha1:b2a00dacb0caf9f49ef32de6f7a5b3dc53623718</id>
<content type='text'>
Needs to be 64-bit.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>apinger: fix compilation with GCC 14</title>
<updated>2024-05-14T23:37:10Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2024-05-13T03:38:57Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=aa5e04605435cf1d65de24e6308f54b72e6c44f7'/>
<id>urn:sha1:aa5e04605435cf1d65de24e6308f54b72e6c44f7</id>
<content type='text'>
Header is missing.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: refresh hashes after move to use ZSTD as default</title>
<updated>2024-04-07T10:06:34Z</updated>
<author>
<name>Robert Marko</name>
</author>
<published>2024-04-06T10:47:54Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=272f55e87f0731b3f04aefd39598a127b317abf4'/>
<id>urn:sha1:272f55e87f0731b3f04aefd39598a127b317abf4</id>
<content type='text'>
With the recent move to using ZSTD as the default compression format
for packaging git repo clones we must refresh all of the hashes for
the packages feed as well.

Signed-off-by: Robert Marko &lt;robimarko@gmail.com&gt;
</content>
</entry>
<entry>
<title>apinger: fixed bugs in apinger.init and apinger.rpc</title>
<updated>2023-10-28T10:16:43Z</updated>
<author>
<name>Jochen Dolze</name>
</author>
<published>2023-10-25T16:58:12Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=83d5a0851595deeb2a112ece9149aefa45fb6283'/>
<id>urn:sha1:83d5a0851595deeb2a112ece9149aefa45fb6283</id>
<content type='text'>
Fix bug in init_apinger_config - debug/status_interval/rrd_interval were never set correctly
Fix bug in apinger_status - send and receive were swapped
Fix bug in apinger_status - added ability to use ipv6 on wan6

Signed-off-by: Jochen Dolze &lt;jochen.dolze@schulergroup.com&gt;
</content>
</entry>
<entry>
<title>treewide: remove AUTORELEASE</title>
<updated>2023-04-21T20:46:58Z</updated>
<author>
<name>Paul Fertser</name>
</author>
<published>2023-04-21T16:32:27Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=0c10c224be81f9221dabfab449855ab6718d2a0c'/>
<id>urn:sha1:0c10c224be81f9221dabfab449855ab6718d2a0c</id>
<content type='text'>
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser &lt;fercerpav@gmail.com&gt;
</content>
</entry>
<entry>
<title>apinger: add rrd graph support</title>
<updated>2022-07-29T08:42:45Z</updated>
<author>
<name>Jaymin Patel</name>
</author>
<published>2022-07-26T13:14:32Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=4281b7639c79ece68b50031f37ee8c693f32b4ef'/>
<id>urn:sha1:4281b7639c79ece68b50031f37ee8c693f32b4ef</id>
<content type='text'>
- add package apinger-rrd for RRD graphs
- add RPC to get an overview and update graphs
- fix interface hotplug to restart apinger instance
- add patch to split alarms list in the status

Signed-off-by: Jaymin Patel &lt;jem.patel@gmail.com&gt;
</content>
</entry>
<entry>
<title>apinger: improve uci and procd support</title>
<updated>2022-07-12T06:57:05Z</updated>
<author>
<name>Jaymin Patel</name>
</author>
<published>2022-07-06T09:45:59Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=e4e3206f3283e673bfac717e00332deb8dd2c079'/>
<id>urn:sha1:e4e3206f3283e673bfac717e00332deb8dd2c079</id>
<content type='text'>
- convert apinger into procd instances
- generate instance specific apinger.conf from uci
- hotplug handling for apinger alarms
- restart apinger interface instance on ifup action of interface
- don't exit on packet count mismatch, allows to use apinger as monitor
  for multiple targets handling
- add srcip option to target configuration, allows specifying source ip
  used to monitor target
- allow creating status file in script parseable format

Patches are ported against latest version of apinger and referenced from
https://git.pld-linux.org/?p=packages/apinger.git;a=summary

Signed-off-by: Jaymin Patel &lt;jem.patel@gmail.com&gt;
</content>
</entry>
<entry>
<title>apinger: fix compilation with GCC 10</title>
<updated>2020-07-18T03:35:34Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-07-17T23:15:47Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=ef646f2a70658262e40ef01cdee5d32edad70e5f'/>
<id>urn:sha1:ef646f2a70658262e40ef01cdee5d32edad70e5f</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>apinger: Fix PKG_SOURCE_VERSION</title>
<updated>2019-09-02T00:09:20Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2019-09-02T00:09:20Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=684b7a858fd5fbfc2f6ddd1cea71a5c7f0fc93c3'/>
<id>urn:sha1:684b7a858fd5fbfc2f6ddd1cea71a5c7f0fc93c3</id>
<content type='text'>
Too short

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>apinger: Update to latest git revision</title>
<updated>2019-06-28T18:38:42Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2019-06-28T17:53:53Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=dff6d2639eabb93e2d3782bfc1262bb6f7dccc33'/>
<id>urn:sha1:dff6d2639eabb93e2d3782bfc1262bb6f7dccc33</id>
<content type='text'>
This project seems abandoned. Updated to latest version.

Also cleaned up the Makefile quite a bit.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
</feed>
