Accepting request 1126509 from home:bmwiedemann

New package

I am the upstream developer of this simple application.

OBS-URL: https://build.opensuse.org/request/show/1126509
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audioclock?expand=0&rev=1
This commit is contained in:
Takashi Iwai 2023-11-15 07:11:33 +00:00 committed by Git OBS Bridge
commit da433cfc7c
8 changed files with 120 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

23
_service Normal file
View File

@ -0,0 +1,23 @@
<services>
<service name="obs_scm" mode="manual">
<param name="url">https://github.com/bmwiedemann/audioclock</param>
<param name="filename">audioclock</param>
<param name="revision">d399fee1c9e31d8200bdbdd94c54845b37513f1b</param>
<param name="match-tag">v*</param>
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
<param name="versionrewrite-pattern">v(.*)(-[0-9]*)?</param>
<param name="versionrewrite-replacement">\1</param>
<param name="scm">git</param>
<param name="changesgenerate">enable</param>
</service>
<service name="extract_file" mode="manual">
<param name="archive">*audioclock-*.obscpio</param>
<param name="files">audioclock-*/audioclock.spec</param>
</service>
<service name="set_version" mode="buildtime"/>
<service name="tar" mode="buildtime"/>
<service name="recompress" mode="buildtime">
<param name="compression">gz</param>
<param name="file">*.tar</param>
</service>
</services>

4
_servicedata Normal file
View File

@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/bmwiedemann/audioclock</param>
<param name="changesrevision">d399fee1c9e31d8200bdbdd94c54845b37513f1b</param></service></servicedata>

3
audioclock-1.2+0.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f60209e9b1c087376a75bc42ed9c6b80c73b4d53380fd7ecb4da6a17425e855e
size 5689357

15
audioclock.changes Normal file
View File

@ -0,0 +1,15 @@
-------------------------------------------------------------------
Tue Nov 14 08:43:14 UTC 2023 - bwiedemann@suse.de
- Update to version 1.2:
* Handle signals
-------------------------------------------------------------------
Wed Jun 15 21:03:14 UTC 2022 - Bernhard Wiedemann <bwiedemann@suse.com>
- upgrade to 1.1 with cleaner audio samples
-------------------------------------------------------------------
Wed Jun 15 19:54:47 UTC 2022 - Bernhard Wiedemann <bwiedemann@suse.com>
- Initial package version 1.0

4
audioclock.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: audioclock
version: 1.2+0
mtime: 1699875103
commit: d399fee1c9e31d8200bdbdd94c54845b37513f1b

47
audioclock.spec Normal file
View File

@ -0,0 +1,47 @@
#
# spec file for package audioclock
#
# Copyright (c) 2022 Bernhard M. Wiedemann / SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: audioclock
Version: 1.2.1
Release: 0
Summary: An audible clock
License: GPL-2.0+
Url: https://github.com/bmwiedemann/audioclock
Group: Amusements/Toys/Clocks
BuildArch: noarch
Source0: https://github.com/bmwiedemann/audioclock/archive/refs/tags/v%version.tar.gz#/%name-%version.tar.gz
Requires: perl(SDL::Mixer)
%description
This tool emulates the audio of a mechanical clock.
It shall help to notice the passing of time.
%prep
%setup
%build
%install
make install DESTDIR=%{buildroot}/usr
%files
%{_bindir}/audioclock
%{_datadir}/%name
%license COPYING README.md
%changelog