Compare commits
43 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
03c83cc477 | ||
|
|
3c133d9e34 | ||
|
|
57e1d336b8 | ||
|
|
4697af52e0 | ||
|
|
3207e186bf | ||
|
|
d05d757b64 | ||
|
|
ac4e09a02c | ||
|
|
1cb1544375 | ||
|
|
e11898073c | ||
|
|
cc7b64aeed | ||
|
|
bdcc70091a | ||
|
|
7b4e4c9f9e | ||
|
|
24958d4831 | ||
|
|
bd4f8addeb | ||
|
|
698582ac49 | ||
|
|
e4571393b1 | ||
|
|
ef038e4ea7 | ||
|
|
47d19ca8fb | ||
|
|
4a513c887f | ||
|
|
c7032d3765 | ||
|
|
3e678feefd | ||
|
|
4989d4a7f3 | ||
|
|
8d050db7cc | ||
|
|
3926561aa5 | ||
|
|
74674faf18 | ||
|
|
9ac4e16ee1 | ||
|
|
97bcb978d4 | ||
|
|
b89de01c88 | ||
|
|
eeec5749f3 | ||
|
|
cf0ac04709 | ||
|
|
6585171286 | ||
|
|
c856d6be9c | ||
|
|
2b9e64956b | ||
|
|
c3ad7fc60d | ||
|
|
47695ab281 | ||
|
|
05b52566e2 | ||
|
|
e3e5a10920 | ||
|
|
c0fc048978 | ||
|
|
b17da1af4c | ||
|
|
24330ac51e | ||
|
|
4f70157bb9 | ||
|
|
a794ec4747 | ||
|
|
b8d4138ba1 |
6 changed files with 375 additions and 190 deletions
117
README.fedora
117
README.fedora
|
|
@ -1,48 +1,67 @@
|
||||||
Content
|
Content
|
||||||
=======
|
=======
|
||||||
|
|
||||||
1. Load the pkspkr.ko Kernel Driver Module (required)
|
1. Load the `pkspkr.ko` Kernel Driver Module (required)
|
||||||
2. Add non-root users to the "beep" group
|
2. Permission setup for non-root users (for non-local logins)
|
||||||
3. Avoid using `beep`
|
3. When and how to avoid using `beep`
|
||||||
4. Example Usage
|
4. Example usage of `beep`
|
||||||
|
|
||||||
|
|
||||||
1. Load the pkspkr.ko Kernel Driver Module (required)
|
1. Load the `pkspkr.ko` Kernel Driver Module (required)
|
||||||
-----------------------------------------------------
|
-------------------------------------------------------
|
||||||
|
|
||||||
To have a working PC speaker beep on Fedora >= 12, you must load the
|
To have a working PC speaker beep, the kernel driver module
|
||||||
kernel driver module `pcspkr.ko` first.
|
`pcspkr.ko` must be loaded.
|
||||||
|
|
||||||
You can do this manually as root as follows:
|
On Fedora >= 32, you need to install the `kernel-modules-extra`
|
||||||
|
package first which contains the `pcspkr.ko` kernel driver module.
|
||||||
|
|
||||||
|
On Fedora >= 12, you need to explicitly make the kernel load the
|
||||||
|
driver module `pcspkr.ko`. You can do this manually as root as
|
||||||
|
follows:
|
||||||
|
|
||||||
[root@host ~]# modprobe pcspkr
|
[root@host ~]# modprobe pcspkr
|
||||||
|
|
||||||
If you want the system to automatically load the pcspkr driver the
|
If you want the system to automatically load the pcspkr driver the
|
||||||
next time it boots, uncomment the
|
next time it boots (very much recommended), uncomment the line
|
||||||
|
|
||||||
alias platform:pcspkr pcspkr
|
alias platform:pcspkr pcspkr
|
||||||
|
|
||||||
line in the `/etc/modprobe.d/beep.conf` config file.
|
in the `/etc/modprobe.d/beep.conf` config file.
|
||||||
|
|
||||||
You can check whether pcspkr.ko is loaded by running
|
You can check whether pcspkr.ko is loaded by running
|
||||||
|
|
||||||
[root@host ~]# lsmod | grep pcspkr
|
[user@host ~]$ lsmod | grep pcspkr
|
||||||
|
|
||||||
as root.
|
|
||||||
|
|
||||||
When pcspkr is loaded, you can run
|
When pcspkr is loaded, you can run
|
||||||
|
|
||||||
[root@host ~]# beep
|
[root@host ~]# beep
|
||||||
|
|
||||||
as root and verify that you hear the beep coming from the PC speaker.
|
as root and as a non-root user
|
||||||
|
|
||||||
|
[user@host ~]$ beep
|
||||||
|
|
||||||
|
and verify that you hear the beep coming from the PC speaker.
|
||||||
|
|
||||||
|
|
||||||
2. Add non-root users to the "beep" group
|
2. Permission setup for non-root users (for non-local logins)
|
||||||
-----------------------------------------
|
-------------------------------------------------------------
|
||||||
|
|
||||||
For more information on permission setup, please consult
|
For more information on permission setup, please consult
|
||||||
/usr/share/doc/beep/PERMISSIONS.md file.
|
/usr/share/doc/beep/PERMISSIONS.md file.
|
||||||
|
|
||||||
|
On Fedora, if a user is currently logged in locally via either a
|
||||||
|
graphical session or a getty@ttyN.service text session on the virtual
|
||||||
|
console, that user will automatically be able to access the device
|
||||||
|
special file `/dev/input/by-path/platform-pcspkr-event-spkr` which
|
||||||
|
`beep` uses to access the PC speaker.
|
||||||
|
|
||||||
|
This means that for many cases, no special permission setup is
|
||||||
|
required for a user to run beep.
|
||||||
|
|
||||||
|
For other cases (such as e.g. users only logged in via ssh sessions),
|
||||||
|
you can add the respective user to the `beep` group.
|
||||||
|
|
||||||
To add user `jane` to the `beep` group, have root run
|
To add user `jane` to the `beep` group, have root run
|
||||||
|
|
||||||
[root@host ~]# usermod jane -a -G beep
|
[root@host ~]# usermod jane -a -G beep
|
||||||
|
|
@ -51,7 +70,7 @@ You can check which users are members of the `beep` group by running
|
||||||
|
|
||||||
[user@host ~]$ getent group beep
|
[user@host ~]$ getent group beep
|
||||||
beep:x:951:jane,bill
|
beep:x:951:jane,bill
|
||||||
[user@host ~]$
|
[user@host ~]$ _
|
||||||
|
|
||||||
However, any user newly added to the `beep` group must re-login so
|
However, any user newly added to the `beep` group must re-login so
|
||||||
their processes can pick up the group membership. A user can check
|
their processes can pick up the group membership. A user can check
|
||||||
|
|
@ -59,48 +78,80 @@ their group membership as follows:
|
||||||
|
|
||||||
[jane@host ~]$ id
|
[jane@host ~]$ id
|
||||||
uid=1000(jane) gid=1000(jane) groups=1000(jane),10(wheel),951(beep) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
|
uid=1000(jane) gid=1000(jane) groups=1000(jane),10(wheel),951(beep) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
|
||||||
[jane@host ~]$
|
[jane@host ~]$ _
|
||||||
|
|
||||||
To check the permission of the PC speaker device file, run
|
To check the permission of the PC speaker device file, run
|
||||||
|
|
||||||
[user@host ~]$ ls -lH /dev/input/by-path/platform-pcspkr-event-spkr
|
[user@host ~]$ ls -lH /dev/input/by-path/platform-pcspkr-event-spkr
|
||||||
crw-rw----+ 1 root input 13, 85 29. Dez 02:52 /dev/input/by-path/platform-pcspkr-event-spkr
|
crw-rw----+ 1 root input 13, 85 Dec 29 13:52 /dev/input/by-path/platform-pcspkr-event-spkr
|
||||||
[user@host ~]$ getfacl /dev/input/by-path/platform-pcspkr-event-spkr
|
[user@host ~]$ getfacl /dev/input/by-path/platform-pcspkr-event-spkr
|
||||||
getfacl: Removing leading '/' from absolute path names
|
getfacl: Removing leading '/' from absolute path names
|
||||||
# file: dev/input/by-path/platform-pcspkr-event-spkr
|
# file: dev/input/by-path/platform-pcspkr-event-spkr
|
||||||
# owner: root
|
# owner: root
|
||||||
# group: input
|
# group: input
|
||||||
user::rw-
|
user::rw-
|
||||||
group:beep:-w-
|
user:user:rw-
|
||||||
group::rw-
|
group::rw-
|
||||||
|
group:beep:-w-
|
||||||
mask::rw-
|
mask::rw-
|
||||||
other::---
|
other::---
|
||||||
|
|
||||||
[user@host ~]$
|
[user@host ~]$ _
|
||||||
|
|
||||||
|
|
||||||
3. Avoid using `beep`
|
3. Set up the audio mixer (required on some hardware)
|
||||||
---------------------
|
-----------------------------------------------------
|
||||||
|
|
||||||
|
On some systems with integrated speakers like e.g. laptops from the
|
||||||
|
IBM/Lenovo Thinkpad series, there is no separate physical speaker for
|
||||||
|
the PC speaker.
|
||||||
|
|
||||||
|
Instead, the square wave sound generated by the PC speaker goes to the
|
||||||
|
integrated speakers through a mixer chip, where it is mixed with PCM
|
||||||
|
sound, CD drive audio, line in, microphone in, and other sources.
|
||||||
|
|
||||||
|
On these systems, you might need to configure the mixer to make the PC
|
||||||
|
speaker audible through the laptop speakers, e.g.
|
||||||
|
|
||||||
|
* Start alsamixer.
|
||||||
|
* Find the correct card (switch with the `F6` key).
|
||||||
|
* Maybe enable loopback.
|
||||||
|
* Unmute the appropriate PC speaker source (`m` key) and turn up
|
||||||
|
its volume.
|
||||||
|
* Weirdly, a microphone volume below 0% apparently can also
|
||||||
|
silence the PC speaker beeps.
|
||||||
|
|
||||||
|
Some experimentation might be required.
|
||||||
|
|
||||||
|
Of course, these mixer settings must be saved before the next system
|
||||||
|
reboot so that the reboot can restore the mixer settings. Some systems
|
||||||
|
save the mixer settings as part of their shutdown procedure, others
|
||||||
|
may need you to save them explicitly.
|
||||||
|
|
||||||
|
TBD: How does Fedora handle saving alsamixer state across reboots?
|
||||||
|
|
||||||
|
|
||||||
|
4. When and how to avoid using `beep`
|
||||||
|
-------------------------------------
|
||||||
|
|
||||||
An alternative way to get sound output for non-root users works if the
|
An alternative way to get sound output for non-root users works if the
|
||||||
system has a sound card set up with a speaker connected to it.
|
system has a sound card set up with a speaker connected to it.
|
||||||
|
|
||||||
The standard 440Hz square wave which `beep` emits can be played
|
E.g. the standard 440Hz square wave which `beep` emits can be played
|
||||||
through the standard sound infrastructure with the command `play` from
|
through the standard sound infrastructure with the command `play` from
|
||||||
the `sox` package (more pleasant examples are in the `sox(1)` man
|
the `sox` package (more pleasant examples are shown in the `sox(1)`
|
||||||
page):
|
man page):
|
||||||
|
|
||||||
[jane@host ~]$ play -q -n synth 0.3 square 440
|
[jane@host ~]$ play -q -n synth 0.3 square 440
|
||||||
|
|
||||||
However, modern desktop systems with the freedesktop.org suite of
|
However, modern desktop systems with the freedesktop.org suite of
|
||||||
middleware (systemd user sessions, pulseaudio audio routing, etc.)
|
middleware (systemd user sessions, pulseaudio audio routing, etc.)
|
||||||
will probably not be set up to allow use of the sound infrastructure
|
may not be set up to allow use of the sound infrastructure for users
|
||||||
for users other than the user currently logged into the current
|
other than the user currently logged into the current virtual console.
|
||||||
virtual console.
|
|
||||||
|
|
||||||
|
|
||||||
4. Example Usage
|
5. Example Usage of `beep`
|
||||||
----------------
|
--------------------------
|
||||||
|
|
||||||
An acoustic notification when a long running compile job finishes
|
An acoustic notification when a long running compile job finishes
|
||||||
(whether the build was successful or not) could be done with
|
(whether the build was successful or not) could be done with
|
||||||
|
|
@ -109,4 +160,4 @@ An acoustic notification when a long running compile job finishes
|
||||||
|
|
||||||
or
|
or
|
||||||
|
|
||||||
[bill@host ~/rpms/foobar]$ fedpkg mockbuild; beep
|
[bill@host ~/rpms/foobar]$ if fedpkg mockbuild; then /usr/share/doc/beep/contrib/success-beeps; else /usr/share/doc/beep/contrib/failure-beeps; fi
|
||||||
|
|
|
||||||
246
beep.spec
246
beep.spec
|
|
@ -1,9 +1,10 @@
|
||||||
Summary: Beep the PC speaker any number of ways
|
Summary: Beep the PC speaker any number of ways
|
||||||
Name: beep
|
Name: beep
|
||||||
Version: 1.4.4
|
Version: 1.4.12
|
||||||
Release: 1%{?dist}
|
Release: %autorelease
|
||||||
|
|
||||||
License: GPLv2+
|
# Automatically converted from old format: GPLv2+ - review is highly recommended.
|
||||||
|
License: GPL-2.0-or-later
|
||||||
URL: https://github.com/spkr-beep/beep/
|
URL: https://github.com/spkr-beep/beep/
|
||||||
|
|
||||||
# Upstream github repo: https://github.com/spkr-beep/beep
|
# Upstream github repo: https://github.com/spkr-beep/beep
|
||||||
|
|
@ -24,191 +25,132 @@ Source4: pcspkr-beep.conf
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: glibc-kernheaders
|
BuildRequires: glibc-kernheaders
|
||||||
|
%{!?el7:BuildRequires: libubsan}
|
||||||
|
|
||||||
# for the udev macros
|
# for the udev macros
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
|
BuildRequires: make
|
||||||
|
|
||||||
|
# Until https://bugzilla.redhat.com/show_bug.cgi?id=1652823 has been
|
||||||
|
# fixed (which makes dnf pull in a completely new debug kernel, while
|
||||||
|
# absolutely not installing the kernel module for the non-debug kernel
|
||||||
|
# actually in use), we cannot use the kmod(pcspkr.ko) recommends
|
||||||
|
# below. The boolean recommends also do not work (they do not pull in
|
||||||
|
# any package on "dnf install"), so we can only keep those here to
|
||||||
|
# document that they do not work.
|
||||||
|
#
|
||||||
|
# So people need to install the required package by hand.
|
||||||
|
#
|
||||||
|
# We would "recommend" the kernel driver and not "require" it in
|
||||||
|
# order to not break cases where beep is installed on systems other
|
||||||
|
# than bare-metal PC hardware such as containers.
|
||||||
|
#
|
||||||
|
# This assumes the people using the "beep" package can deal with a
|
||||||
|
# "beep" invocation not producing a beep on those other systems.
|
||||||
|
#
|
||||||
|
# The alternative would be to "require" the kernel driver which would
|
||||||
|
# mean that you could not install beep inside a container, even if
|
||||||
|
# that container is run in a priviledged way with access to the host's
|
||||||
|
# pcspkr.ko.
|
||||||
|
#
|
||||||
|
# While the kernel supports more speaker drivers, the only hardware
|
||||||
|
# platforms with a speaker driver supported by Fedora use pcspkr.ko
|
||||||
|
# (PCSPKR_PLATFORM in the kernel config).
|
||||||
|
#
|
||||||
|
# Recommends: kmod(pcspkr.ko)
|
||||||
|
# Recommends: (kernel-modules-extras if kernel-modules)
|
||||||
|
# Recommends: (kernel-debug-modules-extras if kernel-debug-modules)
|
||||||
|
|
||||||
Requires(pre): shadow-utils
|
|
||||||
|
|
||||||
# /etc/modprobe.d/
|
# /etc/modprobe.d/
|
||||||
Requires: kmod
|
Requires: kmod
|
||||||
|
|
||||||
# /etc/udev/rules.d/ and /usr/lib/udev/rules.d/
|
# /etc/udev/rules.d/ and /usr/lib/udev/rules.d/
|
||||||
Requires: systemd-udev
|
%{?el7:Requires: systemd}
|
||||||
|
%{!?el7:Requires: systemd-udev}
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Beep allows the user to control the PC speaker with precision,
|
Beep allows the user to control the PC speaker with precision,
|
||||||
allowing different sounds to indicate different events. While it
|
allowing different sounds to indicate different events. While it
|
||||||
can be run quite happily on the command line, its intended place
|
can be run quite happily from the command line, its intended place
|
||||||
of residence is within shell/Perl scripts, notifying the user when
|
of use is within scripts, notifying the user when something
|
||||||
something interesting occurs. Of course, it has no notion of
|
interesting occurs. Of course, it has no notion of what is
|
||||||
what's interesting, but it's real good at that notifying part.
|
interesting, but it is really good at the notifying part.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
install -m 0644 -p %{SOURCE1} README.fedora
|
|
||||||
sed -i 's|^\.\\" \(\.BR .*\)README.Distro\(.*\)|\1README.fedora\2|' beep.1.in && : #"
|
sed -i 's|^\.\\" \(\.BR .*\)README.Distro\(.*\)|\1README.fedora\2|' beep.1.in && : #"
|
||||||
|
|
||||||
|
# Create a sysusers.d config file
|
||||||
|
cat >beep.sysusers.conf <<EOF
|
||||||
|
g beep -
|
||||||
|
EOF
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?_smp_mflags} COMPILERS=gcc CFLAGS_gcc="-Wall -Wextra -std=gnu99 -pedantic -Werror ${RPM_OPT_FLAGS}" LDFLAGS="${RPM_LD_FLAGS}" CPPFLAGS_gcc=""
|
if test "x%{build_cppflags}" = "x%%{build_cppflags}"; then
|
||||||
|
BUILD_CPPFLAGS=""
|
||||||
|
else
|
||||||
|
BUILD_CPPFLAGS="%{build_cppflags}"
|
||||||
|
fi
|
||||||
|
cat>local.mk<<EOF
|
||||||
|
# generated by beep.spec %%build
|
||||||
|
CC = %{__cc}
|
||||||
|
CFLAGS = %{build_cflags}
|
||||||
|
CFLAGS += ${CFLAGS}
|
||||||
|
CPPFLAGS = ${BUILD_CPPFLAGS}
|
||||||
|
CPPFLAGS += ${CPPFLAGS}
|
||||||
|
LDFLAGS = %{build_ldflags}
|
||||||
|
LDFLAGS += ${LDFLAGS}
|
||||||
|
prefix = %{_prefix}
|
||||||
|
exec_prefix = %{_exec_prefix}
|
||||||
|
bindir = %{_bindir}
|
||||||
|
docdir = %{_pkgdocdir}
|
||||||
|
mandir = %{_mandir}
|
||||||
|
EOF
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
%{?el7:sed -i '1s|.*|#!/bin/sed -f|' contrib/morse/morse2beep.sed}
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf "$RPM_BUILD_ROOT"
|
rm -rf "%{buildroot}"
|
||||||
make install DESTDIR="$RPM_BUILD_ROOT" COMPILERS=gcc CFLAGS_gcc="-Wall -Wextra -std=gnu99 -pedantic -Werror ${RPM_OPT_FLAGS}" LDFLAGS="${RPM_LD_FLAGS}" CPPFLAGS_gcc=""
|
make %{?_smp_mflags} install DESTDIR="%{buildroot}" CC=false
|
||||||
|
|
||||||
install -d -m 0755 "$RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/"
|
install -p -m 0644 "%{SOURCE1}" "%{buildroot}%{_pkgdocdir}/README.fedora"
|
||||||
install -p -m 0644 "%{SOURCE4}" "$RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/beep.conf"
|
|
||||||
|
|
||||||
install -d -m 0755 "$RPM_BUILD_ROOT%{_udevrulesdir}/"
|
install -d -m 0755 "%{buildroot}%{_sysconfdir}/modprobe.d/"
|
||||||
install -p -m 0644 "%{SOURCE2}" "$RPM_BUILD_ROOT%{_udevrulesdir}/"
|
install -p -m 0644 "%{SOURCE4}" "%{buildroot}%{_sysconfdir}/modprobe.d/beep.conf"
|
||||||
install -p -m 0644 "%{SOURCE3}" "$RPM_BUILD_ROOT%{_udevrulesdir}/"
|
|
||||||
|
|
||||||
# Fedora Packaging GL says Fedora wants to choose and do the compression itself
|
install -d -m 0755 "%{buildroot}%{_udevrulesdir}/"
|
||||||
gunzip "$RPM_BUILD_ROOT%{_mandir}/man1/beep.1.gz"
|
install -p -m 0644 "%{SOURCE2}" "%{buildroot}%{_udevrulesdir}/"
|
||||||
|
install -p -m 0644 "%{SOURCE3}" "%{buildroot}%{_udevrulesdir}/"
|
||||||
|
|
||||||
|
install -m0644 -D beep.sysusers.conf %{buildroot}%{_sysusersdir}/beep.conf
|
||||||
|
|
||||||
|
|
||||||
%pre
|
|
||||||
getent group beep >/dev/null || groupadd -r beep
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc README.fedora
|
|
||||||
%license %{_pkgdocdir}/COPYING
|
%license %{_pkgdocdir}/COPYING
|
||||||
%doc %{_pkgdocdir}/CHANGELOG
|
%doc %{_pkgdocdir}/CREDITS.md
|
||||||
%doc %{_pkgdocdir}/CREDITS
|
%doc %{_pkgdocdir}/NEWS.md
|
||||||
%doc %{_pkgdocdir}/README.md
|
|
||||||
%doc %{_pkgdocdir}/PERMISSIONS.md
|
%doc %{_pkgdocdir}/PERMISSIONS.md
|
||||||
%attr(0755,root,root) %{_bindir}/beep
|
%doc %{_pkgdocdir}/README.fedora
|
||||||
|
%doc %{_pkgdocdir}/README.md
|
||||||
|
%doc %{_pkgdocdir}/contrib/failure-beeps
|
||||||
|
%doc %{_pkgdocdir}/contrib/morse2beep.pl
|
||||||
|
%doc %{_pkgdocdir}/contrib/morse2beep.sed
|
||||||
|
%doc %{_pkgdocdir}/contrib/success-beeps
|
||||||
|
%{_bindir}/beep
|
||||||
%{_mandir}/man1/beep.1*
|
%{_mandir}/man1/beep.1*
|
||||||
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/modprobe.d/beep.conf
|
%config(noreplace) %{_sysconfdir}/modprobe.d/beep.conf
|
||||||
%{_udevrulesdir}/70-pcspkr-beep.rules
|
%{_udevrulesdir}/70-pcspkr-beep.rules
|
||||||
%{_udevrulesdir}/90-pcspkr-beep.rules
|
%{_udevrulesdir}/90-pcspkr-beep.rules
|
||||||
|
%{_sysusersdir}/beep.conf
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Apr 2 2019 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.4-1
|
%autochangelog
|
||||||
- Update to beep-1.4.4
|
|
||||||
- Install default udev rules to /usr/lib/udev/rules.d/ (not /etc/udev/)
|
|
||||||
- Give the currently locally logged in user PC speaker access out of the box
|
|
||||||
- Have beep(1) man page mention README.fedora
|
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 18 2019 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.3-1
|
|
||||||
- Update to beep-1.4.3
|
|
||||||
|
|
||||||
* Tue Jan 8 2019 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.1-1
|
|
||||||
- Update to beep-1.4.1
|
|
||||||
|
|
||||||
* Fri Jan 4 2019 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.0-1
|
|
||||||
- Update to beep-1.4.0
|
|
||||||
|
|
||||||
* Sat Dec 29 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-26
|
|
||||||
- Stop shipping old sudo related config files
|
|
||||||
- Refuse to run when run via sudo
|
|
||||||
- Set up group 'beep' for write access to evdev device with new udev rule
|
|
||||||
- Update README.fedora to reflect new group permission setup on evdev device
|
|
||||||
|
|
||||||
* Fri Dec 28 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-25
|
|
||||||
- guard against directory traversal in /dev/input/ check
|
|
||||||
- refuse to run if setuid or setgid root
|
|
||||||
- make the evdev device the first device to look for (does not require root)
|
|
||||||
|
|
||||||
* Fri Dec 28 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-24
|
|
||||||
- Actually apply the patches
|
|
||||||
- Update COPYING with new FSF address
|
|
||||||
- Fix Patch9 to work as non-git patch (do the rest with shell)
|
|
||||||
- Proper naming of Patch14
|
|
||||||
- Exit beep when error accessing API
|
|
||||||
|
|
||||||
* Fri Dec 28 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-23
|
|
||||||
- Fix CVE-2018-1000532 and mitigate against related issues (#1595592)
|
|
||||||
- Fix a number of potential integer overflows
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-22
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Apr 3 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-21
|
|
||||||
- Add CVE-2018-0492 fix.
|
|
||||||
- Behaviour of multiple -f parameters matches documentation now.
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-20
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-19
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-18
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-17
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue May 31 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-16
|
|
||||||
- Use more appropriate sox play example in README.fedora
|
|
||||||
- Make command line examples more readable in README.fedora
|
|
||||||
|
|
||||||
* Tue May 31 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-15
|
|
||||||
- Add shell aliases to allow non-root users to run beep from the shell
|
|
||||||
- Fix mail address in %%changelog
|
|
||||||
|
|
||||||
* Tue May 31 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-14
|
|
||||||
- Document how non-root users can run beep via sudo (#1133231)
|
|
||||||
- Remove spec file conditional required in Fedora 12 times
|
|
||||||
|
|
||||||
* Mon May 16 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-13
|
|
||||||
- Remove useless %%defattr for clarity
|
|
||||||
|
|
||||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Jan 17 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-11
|
|
||||||
- Do not replace config file modprobe.d/beep.conf (#1087616)
|
|
||||||
|
|
||||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Nov 19 2013 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-7
|
|
||||||
- Use new upstream tarball beep-1.3.tar.gz (yes, it has changed!)
|
|
||||||
- Add a few fixes from upstream git repo
|
|
||||||
- Move our Makefile cleanup to upstream pull request
|
|
||||||
|
|
||||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 16 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-1
|
|
||||||
- Update to upstream release beep-1.3
|
|
||||||
|
|
||||||
* Fri Jan 22 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.2.2-6
|
|
||||||
- Ship modprobe config file with alias for pcspkr on F12 and later
|
|
||||||
|
|
||||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Sep 7 2008 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.2.2-3
|
|
||||||
- Initial package for submission to Fedora
|
|
||||||
|
|
|
||||||
176
changelog
Normal file
176
changelog
Normal file
|
|
@ -0,0 +1,176 @@
|
||||||
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.12-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 28 2022 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.12-1
|
||||||
|
- Update to beep-1.4.12 with simplified makefile
|
||||||
|
|
||||||
|
* Thu Jan 27 2022 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.11-4
|
||||||
|
- fix broken rpm build from 1.4.11-3 (missing COMPILERS= in %%install)
|
||||||
|
|
||||||
|
* Thu Jan 27 2022 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.11-3
|
||||||
|
- only use %%doc with absolute paths (removes duplicate listings)
|
||||||
|
- stop using env vars in favour of rpm macros
|
||||||
|
- remove non-functional explicit %%attr
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.11-2
|
||||||
|
- rebuild to have common sources for all branches
|
||||||
|
|
||||||
|
* Sat Jan 15 2022 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.11-1
|
||||||
|
- Update to beep-1.4.11
|
||||||
|
|
||||||
|
* Sat Jan 15 2022 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.10-1
|
||||||
|
- Update to beep-1.4.10
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.7-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Mar 25 2021 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.7-6
|
||||||
|
- Remove any kmod(pcspkr.ko) dependencies as they install the wrong package
|
||||||
|
|
||||||
|
* Wed Mar 24 2021 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.7-5
|
||||||
|
- Add "Recommends: kmod(pcspkr.ko)" to install the driver if available (#1942670)
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.7-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.7-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 1 2020 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.7-1
|
||||||
|
- Update to beep-1.4.7
|
||||||
|
- Install contrib scripts for both successfully and failing sounding beeps.
|
||||||
|
|
||||||
|
* Fri Dec 20 2019 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.6-1
|
||||||
|
- Update to beep-1.4.6
|
||||||
|
- Use BEEP_LOG_LEVEL environment variable for default log level
|
||||||
|
- Avoid possible bug related to not using va_copy() with a va_list parameter
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Apr 2 2019 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.4-1
|
||||||
|
- Update to beep-1.4.4
|
||||||
|
- Install default udev rules to /usr/lib/udev/rules.d/ (not /etc/udev/)
|
||||||
|
- Give the currently locally logged in user PC speaker access out of the box
|
||||||
|
- Have beep(1) man page mention README.fedora
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 18 2019 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.3-1
|
||||||
|
- Update to beep-1.4.3
|
||||||
|
|
||||||
|
* Tue Jan 8 2019 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.1-1
|
||||||
|
- Update to beep-1.4.1
|
||||||
|
|
||||||
|
* Fri Jan 4 2019 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.4.0-1
|
||||||
|
- Update to beep-1.4.0
|
||||||
|
|
||||||
|
* Sat Dec 29 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-26
|
||||||
|
- Stop shipping old sudo related config files
|
||||||
|
- Refuse to run when run via sudo
|
||||||
|
- Set up group 'beep' for write access to evdev device with new udev rule
|
||||||
|
- Update README.fedora to reflect new group permission setup on evdev device
|
||||||
|
|
||||||
|
* Fri Dec 28 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-25
|
||||||
|
- guard against directory traversal in /dev/input/ check
|
||||||
|
- refuse to run if setuid or setgid root
|
||||||
|
- make the evdev device the first device to look for (does not require root)
|
||||||
|
|
||||||
|
* Fri Dec 28 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-24
|
||||||
|
- Actually apply the patches
|
||||||
|
- Update COPYING with new FSF address
|
||||||
|
- Fix Patch9 to work as non-git patch (do the rest with shell)
|
||||||
|
- Proper naming of Patch14
|
||||||
|
- Exit beep when error accessing API
|
||||||
|
|
||||||
|
* Fri Dec 28 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-23
|
||||||
|
- Fix CVE-2018-1000532 and mitigate against related issues (#1595592)
|
||||||
|
- Fix a number of potential integer overflows
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-22
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Apr 3 2018 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-21
|
||||||
|
- Add CVE-2018-0492 fix.
|
||||||
|
- Behaviour of multiple -f parameters matches documentation now.
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-20
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-19
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-18
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 31 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-16
|
||||||
|
- Use more appropriate sox play example in README.fedora
|
||||||
|
- Make command line examples more readable in README.fedora
|
||||||
|
|
||||||
|
* Tue May 31 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-15
|
||||||
|
- Add shell aliases to allow non-root users to run beep from the shell
|
||||||
|
- Fix mail address in %%changelog
|
||||||
|
|
||||||
|
* Tue May 31 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-14
|
||||||
|
- Document how non-root users can run beep via sudo (#1133231)
|
||||||
|
- Remove spec file conditional required in Fedora 12 times
|
||||||
|
|
||||||
|
* Mon May 16 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-13
|
||||||
|
- Remove useless %%defattr for clarity
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 17 2016 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-11
|
||||||
|
- Do not replace config file modprobe.d/beep.conf (#1087616)
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 19 2013 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-7
|
||||||
|
- Use new upstream tarball beep-1.3.tar.gz (yes, it has changed!)
|
||||||
|
- Add a few fixes from upstream git repo
|
||||||
|
- Move our Makefile cleanup to upstream pull request
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 16 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.3-1
|
||||||
|
- Update to upstream release beep-1.3
|
||||||
|
|
||||||
|
* Fri Jan 22 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.2.2-6
|
||||||
|
- Ship modprobe config file with alias for pcspkr on F12 and later
|
||||||
|
|
||||||
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Sep 7 2008 Hans Ulrich Niedermann <hun@n-dimensional.de> - 1.2.2-3
|
||||||
|
- Initial package for submission to Fedora
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
[koji]
|
|
||||||
targets = master fedora
|
|
||||||
|
|
@ -1,3 +1,21 @@
|
||||||
# Uncomment the following line to have the pcspkr.ko driver
|
# Uncomment the alias line to have the pcspkr.ko driver load
|
||||||
# load automatically on boot
|
# automatically on boot.
|
||||||
|
#
|
||||||
|
# The pcspkr.ko driver module is shipped in the kernel-modules-extra
|
||||||
|
# which you need to install manually at this time.
|
||||||
|
#
|
||||||
|
# An automatic installation via "requires" or "recommends" is not
|
||||||
|
# possible due to "dnf install 'kmod(pcspkr.ko)'" likely installing an
|
||||||
|
# unrelated (-debug) kernel (see
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1652823).
|
||||||
|
#
|
||||||
|
# Note that the kernel-modules-extra package and the pcspkr.ko module
|
||||||
|
# might also not be available inside a container, while the hosts's
|
||||||
|
# actual pcspkr.ko API might or might not be available inside the
|
||||||
|
# container depending on how the container is launched.
|
||||||
|
#
|
||||||
|
# So inside a container, the "beep" command might or might not produce
|
||||||
|
# sound depending on things entirely outside of the control of "beep"
|
||||||
|
# or even the container.
|
||||||
|
#
|
||||||
# alias platform:pcspkr pcspkr
|
# alias platform:pcspkr pcspkr
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (beep-1.4.4.tar.gz) = cfaecbebbbd0596bee5f304c3bd74968d06873037d054def0907dfd36e5bd6e7fbd7d7051eacedd20480b88f8b4e343db05eb5d3dde0fdced33756545b630373
|
SHA512 (beep-1.4.12.tar.gz) = 18fed77bc4820ecc84ac12e903d516d5228fa2038df1788cc68db76e40b3c47a271911cc45bc48ce94e3f215803c5c05cb6c08ebb47ae6d7fcf1e0bc1ac169cd
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue