SHA256
1
0
forked from pool/fIcy

Accepting request 572110 from home:alois:branches:multimedia:apps

Brought over from Packman

OBS-URL: https://build.opensuse.org/request/show/572110
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/fIcy?expand=0&rev=1
This commit is contained in:
Tomáš Chvátal 2018-02-03 13:04:39 +00:00 committed by Git OBS Bridge
commit 9941c3b46d
5 changed files with 113 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

3
fIcy-1.0.21.tar.gz Normal file
View File

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

31
fIcy.changes Normal file
View File

@ -0,0 +1,31 @@
-------------------------------------------------------------------
Fri Feb 2 18:03:24 UTC 2018 - aloisio@gmx.com
- Update to version 1.0.21
* fIcy can now append to output files directly using -A.
* Error messages about missing or incompatible flags are now
clearer.
version 1.0.20:
* fPls accepts more (broken) EXTM3U files.
* fIcy output file (-o) is no longer overwritten if -n is
requested without metadata-based splitting.
* fIcy output file is now correctly not interrupted if titles
are requested without flags affecting filename generation (-t, -E
or -m).
* fIcy now builds fine by default on systems using gcc 4.7.
* Support for building with pmake under IRIX has been removed.
version 1.0.19:
* fPls will now correctly retry loading remote playlists on
connection timeout/failures according to the requested limit (3 by
default).
* fPls/fIcy -T (maximum time) flag now takes connection/retry
delays into account, ensuring the requested time is never exceeded.
* Some examples in the documentation have been clarified.
- Spec cleanup
-------------------------------------------------------------------
Tue Mar 29 22:59:15 CET 2011 - pascal.bleser@opensuse.org
- initial version (1.0.18)

55
fIcy.spec Normal file
View File

@ -0,0 +1,55 @@
#
# spec file for package fIcy
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2011 Pascal Bleser <pascal.bleser@opensuse.org>
#
# 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: fIcy
Version: 1.0.21
Release: 0
Summary: Icecast/Shoutcast Stream Grabber
License: LGPL-2.1+
Group: Productivity/Multimedia/Other
URL: https://www.thregr.org/~wavexx/software/fIcy/
Source: https://www.thregr.org/~wavexx/software/fIcy/releases/%{name}-%{version}.tar.gz
BuildRequires: gcc-c++
BuildRequires: pkgconfig
%description
fIcy is a command line icecast/shoutcast stream grabber. Its goal is to cleanly
and automatically rip a stream into user-customizable files. It will work with
any ICY-compatible stream, allowing you to either to save the stream to disk,
pipe the output to a media player, or both.
%prep
%setup -q
%build
make %{?_smp_mflags} \
CXX="g++" \
CXXFLAGS="%{optflags}"
%install
install -d "%{buildroot}%{_bindir}"
install -m0755 fIcy fPls fResync "%{buildroot}%{_bindir}/"
%files
%doc COPYING.txt FAQ.rst NEWS.rst README.rst TODO.rst
%{_bindir}/fIcy
%{_bindir}/fPls
%{_bindir}/fResync
%changelog