<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/sound/mpc, 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-05-08T20:28:27Z</updated>
<entry>
<title>treewide: cleanup URLs</title>
<updated>2026-05-08T20:28:27Z</updated>
<author>
<name>Yanase Yuki</name>
</author>
<published>2026-01-02T09:06:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b0d8a3d384915c2de1c5b473fcfb8b3996bb849b'/>
<id>urn:sha1:b0d8a3d384915c2de1c5b473fcfb8b3996bb849b</id>
<content type='text'>
This commit converts plain HTTP URLs to HTTPS, and updates
old or outdated URLs.

Signed-off-by: Yanase Yuki &lt;dev@zpc.st&gt;
</content>
</entry>
<entry>
<title>mpc: update to 0.35</title>
<updated>2024-02-15T01:24:05Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2024-02-14T23:24:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=8834711487b8a08b888a1272c4864aa6b08bba8d'/>
<id>urn:sha1:8834711487b8a08b888a1272c4864aa6b08bba8d</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@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: 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>mpc: update to 0.34</title>
<updated>2021-12-17T01:19:56Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-12-16T06:35:37Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=a7b8509817d8320f6a2f66ed6b40dd8db9de21a3'/>
<id>urn:sha1:a7b8509817d8320f6a2f66ed6b40dd8db9de21a3</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>mpc: update to 0.33</title>
<updated>2020-02-21T01:21:50Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-02-20T03:31:09Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=4fba03d6d16af923199ea876da4fe992f8cbdb91'/>
<id>urn:sha1:4fba03d6d16af923199ea876da4fe992f8cbdb91</id>
<content type='text'>
Small Makefile cleanups.

Ran script through shellcheck.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>mpc: update to v0.32 and build with meson</title>
<updated>2019-11-05T09:28:30Z</updated>
<author>
<name>Andre Heider</name>
</author>
<published>2019-09-20T15:18:34Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0469c0715b10e8b32fe41e3b3b7248379ffe6046'/>
<id>urn:sha1:0469c0715b10e8b32fe41e3b3b7248379ffe6046</id>
<content type='text'>
Signed-off-by: Andre Heider &lt;a.heider@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.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>mpc: Update to 0.30. Use autotools</title>
<updated>2018-07-30T14:22:54Z</updated>
<author>
<name>Ted Hess</name>
</author>
<published>2018-07-25T20:39:29Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=36ff5a1769dc6c2f8fcd9bfdeea80a6439ec4c6c'/>
<id>urn:sha1:36ff5a1769dc6c2f8fcd9bfdeea80a6439ec4c6c</id>
<content type='text'>
Package versions newer than 0.28 require meson/ninja which OpenWrt does not
    support in its build environment. These files provide the minimum autotool
    configuration necessary to build later versions.

Signed-off-by: Ted Hess &lt;thess@kitschensync.net&gt;
</content>
</entry>
</feed>
