<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/utils/ap51-flash, 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>2023-04-21T20:46:58Z</updated>
<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>treewide: refactor to use PKG_BUILD_FLAGS:=lto</title>
<updated>2023-04-08T06:38:54Z</updated>
<author>
<name>Andre Heider</name>
</author>
<published>2023-03-23T08:27:01Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=e7d9c865036d7bc2ac30604e8573f25ae601aed1'/>
<id>urn:sha1:e7d9c865036d7bc2ac30604e8573f25ae601aed1</id>
<content type='text'>
See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS"
on the main repository.

Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This
fixes it and properly enables LTO.

Signed-off-by: Andre Heider &lt;a.heider@gmail.com&gt;
</content>
</entry>
<entry>
<title>ap51-flash: update to version 2022.0</title>
<updated>2022-03-29T02:55:41Z</updated>
<author>
<name>Sven Eckelmann</name>
</author>
<published>2022-03-16T13:39:20Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=9af41ecd9184d8ab05259f09db0d05ec91a3743b'/>
<id>urn:sha1:9af41ecd9184d8ab05259f09db0d05ec91a3743b</id>
<content type='text'>
* Improve listing of ethernet devices under Linux
* Add support for modern Npcap DLLs
* Fix embedding of images with modern GCC versions
* coding style cleanups and refactoring
* added support for:

  - Datto AP440
  - Datto AP840
  - Datto AP840E
  - Datto TW420
  - Plasma Cloud PAX1800

Signed-off-by: Sven Eckelmann &lt;sven@narfation.org&gt;
</content>
</entry>
<entry>
<title>ap51-flash: use $(AUTORELEASE) for PKG_RELEASE</title>
<updated>2022-03-29T02:55:41Z</updated>
<author>
<name>Sven Eckelmann</name>
</author>
<published>2022-03-16T13:37:27Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=082d41f3136e9bfd56bb71bc8dbc7ef7622d3ec0'/>
<id>urn:sha1:082d41f3136e9bfd56bb71bc8dbc7ef7622d3ec0</id>
<content type='text'>
Use `$(AUTORELEASE)` variable rather than setting a PKG_RELEASE
on every commit manually.

Signed-off-by: Sven Eckelmann &lt;sven@narfation.org&gt;
</content>
</entry>
<entry>
<title>ap51-flash: run through shellcheck</title>
<updated>2020-07-10T22:30:03Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-07-10T22:30:03Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=700b4e5cc1e116a5ba532be68d7b8ccd52c4ade8'/>
<id>urn:sha1:700b4e5cc1e116a5ba532be68d7b8ccd52c4ade8</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>ap51-flash: Update to 2019.0.1</title>
<updated>2019-10-30T17:26:11Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2019-10-30T17:25:16Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=8126f4ed081b735399f395425827700d473a47ab'/>
<id>urn:sha1:8126f4ed081b735399f395425827700d473a47ab</id>
<content type='text'>
Added some size optimizations.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: Change .*GPL.*+ licenses to SPDX compatible identifier</title>
<updated>2019-09-10T05:45:15Z</updated>
<author>
<name>Sven Eckelmann</name>
</author>
<published>2019-09-02T13:15:08Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=bbb1ea7345f367ed675dcfe40e36ac32ddf8a2e1'/>
<id>urn:sha1:bbb1ea7345f367ed675dcfe40e36ac32ddf8a2e1</id>
<content type='text'>
The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL
licenses. But a lot of packages did use a different, non-SPDX style with a
"+" at the end instead of "-or-later".

Signed-off-by: Sven Eckelmann &lt;sven@narfation.org&gt;
</content>
</entry>
<entry>
<title>ap51-flash: upgrade package to latest release 2019.0</title>
<updated>2019-09-01T14:34:23Z</updated>
<author>
<name>Sven Eckelmann</name>
</author>
<published>2019-09-01T12:16:12Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=22062b10c66b287597df5507173743683a85f9db'/>
<id>urn:sha1:22062b10c66b287597df5507173743683a85f9db</id>
<content type='text'>
* improved Zyxel firmware detection
* introduced optional MAC address filtering
* added support for:

  - Plasma Cloud PA300
  - Plasma Cloud PA1200
  - Plasma Cloud PA2200

Signed-off-by: Sven Eckelmann &lt;sven@narfation.org&gt;
</content>
</entry>
<entry>
<title>ap51-flash: Update to 2018.0 and switch to tarball</title>
<updated>2018-07-16T17:01:43Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2018-07-16T17:01:43Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=d8bf44f03282b17601cc50ad4399439a65251a2b'/>
<id>urn:sha1:d8bf44f03282b17601cc50ad4399439a65251a2b</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;</content>
</entry>
<entry>
<title>ap51-flash: Fix source repository URL</title>
<updated>2017-12-15T12:26:11Z</updated>
<author>
<name>Sven Eckelmann</name>
</author>
<published>2017-12-07T09:36:25Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=1c00bb9329129715d45d31f273490cfd4d10403d'/>
<id>urn:sha1:1c00bb9329129715d45d31f273490cfd4d10403d</id>
<content type='text'>
The URL git://dev.cloudtrax.com/ap51-flash.git is not the actual public
source repository URL for ap51-flash. It is not even accessible in the
moment. The official repository can now be found at github.

Signed-off-by: Sven Eckelmann &lt;sven@narfation.org&gt;
</content>
</entry>
</feed>
