<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/lang/luv/Makefile, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2025-11-17T06:46:33Z</updated>
<entry>
<title>lua: move Lua packages under lang/lua sub-folder</title>
<updated>2025-11-17T06:46:33Z</updated>
<author>
<name>Alexandru Ardelean</name>
</author>
<published>2025-11-16T10:02:03Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=7eebedcdfc0d17e610a123fdff4d8edb21e8b098'/>
<id>urn:sha1:7eebedcdfc0d17e610a123fdff4d8edb21e8b098</id>
<content type='text'>
There are roughly 50 Lua packages.
It's about time we consider a proposal for moving all of them
under a lang/lua sub-folder.

Signed-off-by: Alexandru Ardelean &lt;alex@shruggie.ro&gt;
</content>
</entry>
<entry>
<title>luv: Update to 1.51.0-1</title>
<updated>2025-11-15T07:38:03Z</updated>
<author>
<name>Tianling Shen</name>
</author>
<published>2025-11-13T14:11:39Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=8efcd79a690328a7b540379c268f591a9b464089'/>
<id>urn:sha1:8efcd79a690328a7b540379c268f591a9b464089</id>
<content type='text'>
Changelog:
- https://github.com/luvit/luv/releases/tag/1.41.0-0
- https://github.com/luvit/luv/releases/tag/1.41.1-0
- https://github.com/luvit/luv/releases/tag/1.42.0-0
- https://github.com/luvit/luv/releases/tag/1.42.0-1
- https://github.com/luvit/luv/releases/tag/1.43.0-0
- https://github.com/luvit/luv/releases/tag/1.44.2-0
- https://github.com/luvit/luv/releases/tag/1.44.2-1
- https://github.com/luvit/luv/releases/tag/1.45.0-0
- https://github.com/luvit/luv/releases/tag/1.46.0-0
- https://github.com/luvit/luv/releases/tag/1.47.0-0
- https://github.com/luvit/luv/releases/tag/v1.48.0-0
- https://github.com/luvit/luv/releases/tag/1.48.0-1
- https://github.com/luvit/luv/releases/tag/v1.50.0-0
- https://github.com/luvit/luv/releases/tag/1.50.0-1
- https://github.com/luvit/luv/releases/tag/1.51.0-0
- https://github.com/luvit/luv/releases/tag/1.51.0-1

Signed-off-by: Tianling Shen &lt;cnsztl@immortalwrt.org&gt;
</content>
</entry>
<entry>
<title>luv: Make version apk compatible</title>
<updated>2024-11-17T06:46:26Z</updated>
<author>
<name>Hannu Nyman</name>
</author>
<published>2024-11-16T11:56:22Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=f95f1ba47a2d742755612c41f7b25867c31dd7bb'/>
<id>urn:sha1:f95f1ba47a2d742755612c41f7b25867c31dd7bb</id>
<content type='text'>
Make version apk compatible.

Signed-off-by: Hannu Nyman &lt;hannu.nyman@iki.fi&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.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: back to cmake.mk</title>
<updated>2021-06-13T04:05:01Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-06-10T23:27:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=2e654b19f38f1f941c70a5adcdac6311234362c3'/>
<id>urn:sha1:2e654b19f38f1f941c70a5adcdac6311234362c3</id>
<content type='text'>
Ninja was merged to base and therefore we can now use normal cmake.mk

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>luv: update to 1.40.0-0</title>
<updated>2021-04-14T21:17:22Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-04-14T03:13:47Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=00d0281671be8d16cb42d328c1870775cb5d146f'/>
<id>urn:sha1:00d0281671be8d16cb42d328c1870775cb5d146f</id>
<content type='text'>
Simplify CMake section.

Fix pkgconfig paths.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>luv: update to 1.36.0-0</title>
<updated>2021-03-26T18:25:10Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-03-21T01:33:01Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=cf4e026e2636072149893aa016eb5e08c8af6566'/>
<id>urn:sha1:cf4e026e2636072149893aa016eb5e08c8af6566</id>
<content type='text'>
Switch to AUTORELEASE for simplicity.

Switch to building with Ninja for faster compilation.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>luv: Update to 1.22.0-1</title>
<updated>2018-12-16T06:55:34Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2018-12-16T06:49:16Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=71332c0371b4dc5a091f8dc5ea666b98c8453a2b'/>
<id>urn:sha1:71332c0371b4dc5a091f8dc5ea666b98c8453a2b</id>
<content type='text'>
Switched to tarball and rearranged Makefile for consistency.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: add missing mirror hash</title>
<updated>2018-07-09T03:33:55Z</updated>
<author>
<name>Yousong Zhou</name>
</author>
<published>2018-07-09T02:58:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5eb07af2b718f94a28c02476ee4f85208c48824c'/>
<id>urn:sha1:5eb07af2b718f94a28c02476ee4f85208c48824c</id>
<content type='text'>
They are missed out from the FIXUP check probably because of a flaw in
the fixup-makefile.pl script

Signed-off-by: Yousong Zhou &lt;yszhou4tech@gmail.com&gt;
</content>
</entry>
<entry>
<title>luv: new package</title>
<updated>2017-02-16T13:21:13Z</updated>
<author>
<name>Morteza Milani</name>
</author>
<published>2017-01-17T06:52:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=927ca1346dd4464b0754a332b1826b2ee4fbd437'/>
<id>urn:sha1:927ca1346dd4464b0754a332b1826b2ee4fbd437</id>
<content type='text'>
Luv is libuv binding for lua.

Signed-off-by: Morteza Milani &lt;milani@pichak.co&gt;
</content>
</entry>
</feed>
