<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/multimedia/v4l2rtspserver/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-24T23:57:10Z</updated>
<entry>
<title>v4l2rtspserver: bump to 0.3.12</title>
<updated>2025-11-24T23:57:10Z</updated>
<author>
<name>Christian Marangi</name>
</author>
<published>2025-11-24T23:13:11Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=dd03c61851aef92cb59816f0c1c55f2e4edae496'/>
<id>urn:sha1:dd03c61851aef92cb59816f0c1c55f2e4edae496</id>
<content type='text'>
Bump v4l2rtspserver to 0.3.12 to fix support for CMake &gt;= 4.0 version.

Signed-off-by: Christian Marangi &lt;ansuelsmth@gmail.com&gt;
</content>
</entry>
<entry>
<title>v4l2rtspserver: update to v0.3.11 and enable sound</title>
<updated>2024-08-16T23:01:57Z</updated>
<author>
<name>Michel Promonet</name>
</author>
<published>2024-08-03T21:44:54Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=db4ab96064458422df6f30b7ee8d2b24209fcaea'/>
<id>urn:sha1:db4ab96064458422df6f30b7ee8d2b24209fcaea</id>
<content type='text'>
Signed-off-by: Michel Promonet &lt;michel.promonet@free.fr&gt;
</content>
</entry>
<entry>
<title>v4l2rtspserver: update to v0.3.10</title>
<updated>2024-05-08T21:20:51Z</updated>
<author>
<name>Michel Promonet</name>
</author>
<published>2024-05-06T16:21:21Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=274e39e909760be25f6dc077c055c29e6469b0e8'/>
<id>urn:sha1:274e39e909760be25f6dc077c055c29e6469b0e8</id>
<content type='text'>
Signed-off-by: Michel Promonet &lt;michel.promonet@free.fr&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.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>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: 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.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>treewide: refactor to use PKG_BUILD_FLAGS:=gc-sections</title>
<updated>2023-04-08T06:38:54Z</updated>
<author>
<name>Andre Heider</name>
</author>
<published>2023-03-23T08:09:13Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=35f4ef76e0c88b690ec55f26aed072c4c5989eff'/>
<id>urn:sha1:35f4ef76e0c88b690ec55f26aed072c4c5989eff</id>
<content type='text'>
See commit da370098 "treewide: add support for "gc-sections" in
PKG_BUILD_FLAGS" on the main repository.

Note: This only touches packages which use all three parts
(-ffunction-sections, -fdata-sections and -Wl,--gc-sections) enabled by
this build flag. Some packages only use a subset, and these are left
unchanged for now.

Signed-off-by: Andre Heider &lt;a.heider@gmail.com&gt;
</content>
</entry>
<entry>
<title>v4l2rtspserver: upgrade to v0.3.7</title>
<updated>2022-10-21T22:04:35Z</updated>
<author>
<name>Michel Promonet</name>
</author>
<published>2022-10-12T13:26:48Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=40d516b15610fcf4b6e9e9f6b0f373b8aa09643f'/>
<id>urn:sha1:40d516b15610fcf4b6e9e9f6b0f373b8aa09643f</id>
<content type='text'>
Signed-off-by: Michel Promonet &lt;michel.promonet@free.fr&gt;
</content>
</entry>
<entry>
<title>v4l2rtspserver: patch live555</title>
<updated>2021-11-03T15:13:33Z</updated>
<author>
<name>Michel Promonet</name>
</author>
<published>2021-10-31T11:17:09Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=022799483e592c93c7f58d635bca05e66c8d8277'/>
<id>urn:sha1:022799483e592c93c7f58d635bca05e66c8d8277</id>
<content type='text'>
Signed-off-by: Michel Promonet &lt;michel.promonet@free.fr&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>
</feed>
