<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/utils/beep, 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>2026-04-03T19:24:03Z</updated>
<entry>
<title>utils/beep: assign PKG_CPE_ID</title>
<updated>2026-04-03T19:24:03Z</updated>
<author>
<name>Fabrice Fontaine</name>
</author>
<published>2026-03-17T22:07:10Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=8c583808c71ef9bebf87efc1769274b0a5240d0e'/>
<id>urn:sha1:8c583808c71ef9bebf87efc1769274b0a5240d0e</id>
<content type='text'>
cpe:/a:beep_project:beep is the correct CPE ID for beep:
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:beep_project:beep

Indeed, spkr-beep is a fork of https://github.com/johnath/beep as
clearly stated in README.md: "This version of beep has been forked from
Johnathan Nightingales' original beep when johnath/beep#11 required
fixes in 2018, while Johnathan Nightingales' github.com/johnath/beep/
and johnath.com/beep/ was only maintained from around 2000 until around
2013.

So, it is still appropriate to use beep_project:beep CPE ID since the
code base remains the same and no new CPE has been assigned to the fork
(as there have been no new CVEs since 2018).

Signed-off-by: Fabrice Fontaine &lt;fontaine.fabrice@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-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>beep: change git repository to fix CVE-2018-0492 and CVE-2018-1000532</title>
<updated>2022-06-08T14:53:56Z</updated>
<author>
<name>Josef Schlehofer</name>
</author>
<published>2019-01-01T02:38:00Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=6488eaf2502c75ffc8ac11fffd539f5c070f77c3'/>
<id>urn:sha1:6488eaf2502c75ffc8ac11fffd539f5c070f77c3</id>
<content type='text'>
1. Changed Git repository, which is used for Fedora packaging
https://github.com/johnath/beep/issues/11#issuecomment-450277122

Fixed CVEs:
CVE-2018-0492 - https://nvd.nist.gov/vuln/detail/CVE-2018-0492
CVE-2018-1000532 - https://nvd.nist.gov/vuln/detail/CVE-2018-1000532

2. Fixed SPDX License Identifier

3. Add patch to comment out -D_FORTIFY_SOURCE
Otherwise, it can not be built by default.

Signed-off-by: Josef Schlehofer &lt;pepe.schlehofer@gmail.com&gt;
</content>
</entry>
<entry>
<title>beep: restore a dependency definition to the previous one on x86 target</title>
<updated>2020-12-05T11:18:03Z</updated>
<author>
<name>Yanase Yuki</name>
</author>
<published>2020-12-03T12:50:16Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=8b1216fb49dbc4f444606d0fb8c32297d66336c0'/>
<id>urn:sha1:8b1216fb49dbc4f444606d0fb8c32297d66336c0</id>
<content type='text'>
Commit 9bcea2de2cf552d544786d1e4b82f55cda7015b1 causes a dependency
problem with some out-of-tree packages which expect "DEPENDS:=+kmod-pcspkr".

To fix this problem, this commit restores a dependency definition to
the previous one on x86 target.

Signed-off-by: Yanase Yuki &lt;dev@zpc.sakura.ne.jp&gt;
</content>
</entry>
<entry>
<title>beep: fix dependency to support non-x86 target and kmod-gpio-beeper</title>
<updated>2020-10-03T05:13:24Z</updated>
<author>
<name>Yanase Yuki</name>
</author>
<published>2020-10-02T08:06:25Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=9bcea2de2cf552d544786d1e4b82f55cda7015b1'/>
<id>urn:sha1:9bcea2de2cf552d544786d1e4b82f55cda7015b1</id>
<content type='text'>
Beep is a target-independent software that can handle buzzers controlled by kmod-gpio-beeper.

This change is useful for some non-x86 enterprise APs and development boards
that have a buzzer connected to GPIO.

Compile-tested: ath79, ELECOM WAB-I1750-PS, 3fab4ac + device support patch
Run-tested: ath79, ELECOM WAB-I1750-PS, 3fab4ac + device support patch

Signed-off-by: Yanase Yuki &lt;dev@zpc.sakura.ne.jp&gt;
</content>
</entry>
<entry>
<title>beep: add missing PKG_MIRROR_HASH</title>
<updated>2020-10-03T05:13:11Z</updated>
<author>
<name>Yanase Yuki</name>
</author>
<published>2020-10-03T05:09:01Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=ac52356c0bdb11127013e291ad10add6b44784b2'/>
<id>urn:sha1:ac52356c0bdb11127013e291ad10add6b44784b2</id>
<content type='text'>
Signed-off-by: Yanase Yuki &lt;dev@zpc.sakura.ne.jp&gt;
</content>
</entry>
<entry>
<title>Update Makefile</title>
<updated>2017-01-16T09:10:38Z</updated>
<author>
<name>Chris Blake</name>
</author>
<published>2017-01-16T09:10:38Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=99605fb63069befb79db8b0cc62f9520734b8263'/>
<id>urn:sha1:99605fb63069befb79db8b0cc62f9520734b8263</id>
<content type='text'>
</content>
</entry>
<entry>
<title>util/beep: Add beep package</title>
<updated>2017-01-13T17:32:30Z</updated>
<author>
<name>Chris Blake</name>
</author>
<published>2017-01-13T17:32:30Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=2568b67875dc2a5d16453a29595a2150d648cc96'/>
<id>urn:sha1:2568b67875dc2a5d16453a29595a2150d648cc96</id>
<content type='text'>
This adds the beep utility, which allows users to control a pc speaker device.

Maintainer: me / @riptidewave93
Compile tested: x86/64, LEDE Reboot SNAPSHOT r2709-b7677f0 
Run tested: x86/64, LEDE Reboot SNAPSHOT r2709-b7677f0. Verify program works.
Signed-off-by: Chris Blake &lt;chrisrblake93@gmail.com&gt;</content>
</entry>
</feed>
