<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/multimedia/grilo/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>2026-03-15T07:19:46Z</updated>
<entry>
<title>multimedia/grilo: assign PKG_CPE_ID</title>
<updated>2026-03-15T07:19:46Z</updated>
<author>
<name>Fabrice Fontaine</name>
</author>
<published>2026-03-14T20:38:50Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=c9291027631820e41d866dcc27b1251af718a4d6'/>
<id>urn:sha1:c9291027631820e41d866dcc27b1251af718a4d6</id>
<content type='text'>
cpe:/a:gnome:grilo is the correct CPE ID for grilo:
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:gnome:grilo

Signed-off-by: Fabrice Fontaine &lt;fontaine.fabrice@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: fix spelling and grammar in Makefiles</title>
<updated>2025-12-31T07:12:36Z</updated>
<author>
<name>George Sapkin</name>
</author>
<published>2025-12-26T04:26:18Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=de64f871b0f00b885039997eb46f914bdac687a5'/>
<id>urn:sha1:de64f871b0f00b885039997eb46f914bdac687a5</id>
<content type='text'>
Fix spelling and grammar in package definitions, configs, comments and
other strings.

Signed-off-by: George Sapkin &lt;george@sapk.in&gt;
</content>
</entry>
<entry>
<title>grilo: update to 0.3.19</title>
<updated>2025-07-16T07:50:33Z</updated>
<author>
<name>W. Michael Petullo</name>
</author>
<published>2025-06-22T21:13:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=8c182aa38263731a7941646c79a9c7de0a1f1f44'/>
<id>urn:sha1:8c182aa38263731a7941646c79a9c7de0a1f1f44</id>
<content type='text'>
Changes since the last packaged version, 0.3.16, include:

  * Updates to the playlist handling functions.
  * Translation updates.
  * Documentation updates, including reference to Discourse.
  * Fixes related to the use of GTask.
  * Updates to CI definitions.

Signed-off-by: W. Michael Petullo &lt;mike@flyn.org&gt;
</content>
</entry>
<entry>
<title>treewide: make all GNOME URLs consistent</title>
<updated>2023-07-11T15:37:37Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2023-07-02T00:55:13Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b044ba7b37e8166edd2ffe98eaa41ed2c51a45bc'/>
<id>urn:sha1:b044ba7b37e8166edd2ffe98eaa41ed2c51a45bc</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>grilo: update to 0.3.16</title>
<updated>2023-07-01T11:47:02Z</updated>
<author>
<name>W. Michael Petullo</name>
</author>
<published>2023-06-30T18:21:51Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=9ce1067a5f9656e81ecd7274c34528e17e046d43'/>
<id>urn:sha1:9ce1067a5f9656e81ecd7274c34528e17e046d43</id>
<content type='text'>
Signed-off-by: W. Michael Petullo &lt;mike@flyn.org&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: remove PKG_INSTALL for meson projects</title>
<updated>2022-06-16T01:07:46Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2022-06-15T21:29:34Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=df5d7245b9f888b21e2c9c02fd002c606e9c7c6e'/>
<id>urn:sha1:df5d7245b9f888b21e2c9c02fd002c606e9c7c6e</id>
<content type='text'>
It doesn't seem to be used by meson.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>grilo: update to 0.3.14</title>
<updated>2021-10-25T00:48:07Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-10-24T20:53:36Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5bee2f45fee040941e2b76ad0150f4aaefced3c2'/>
<id>urn:sha1:5bee2f45fee040941e2b76ad0150f4aaefced3c2</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: compile with tools/meson</title>
<updated>2021-09-18T05:06:52Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-09-07T22:24:45Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5ccd4d1c250acb3d3e65f16e55926ef0bc80153d'/>
<id>urn:sha1:5ccd4d1c250acb3d3e65f16e55926ef0bc80153d</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>grilo: update to 0.3.13</title>
<updated>2020-09-20T08:22:25Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-09-20T08:18:20Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=e2fca271bc19cf65df05a590750b01338e57f859'/>
<id>urn:sha1:e2fca271bc19cf65df05a590750b01338e57f859</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
</feed>
