Commit 3791cdb0 authored by Led's avatar Led

0.12.0-alt1

parent b2edd63d
tar.gz: @version@:.
copy: *.conf *.patch
tar.bz2: @version@:.
copy: *.conf
object 3e53b9d5b04994a2cfe878bc5649e64c274e5473
type commit
tag 0.12.0
tagger Led <led@altlinux.org> 1226282077 +0200
object 7473f7ea8b0af73d22b1921b22e405cf537fe3cc
type commit
tag 0.11.5
tagger Led <led@altlinux.org> 1226281965 +0200
4337a1eeca28129ff15f640330b8abfc2980a824 0.11.5
08d5fe90e4828cd4abdbfaffc3b08250afcff254 0.12.0
--- mpd-0.11.5/src/song.c.orig 2005-11-02 09:24:16 +0300
+++ mpd-0.11.5/src/song.c 2005-11-02 09:25:29 +0300
@@ -247,6 +247,9 @@ void readSongInfoIntoList(FILE * fp, Son
else if(0==strncmp(SONG_MTIME,buffer,strlen(SONG_MTIME))) {
song->mtime = atoi(&(buffer[strlen(SONG_TITLE)]));
}
+ else if (0==strlen(buffer)) {
+ /*do nothing (empty line in song database fix)*/
+ }
else {
ERROR("songinfo: unknown line in db: %s\n",buffer);
exit(EXIT_FAILURE);
music_directory "~/MyMusic"
playlist_directory "~/MyMusic"
log_file "~/MyMusic/mpd.log"
db_file "~/MyMusic/mpd.db"
error_file "~/MyMusic/mpd.err"
state_file "~/MyMusic/mpd.state"
port "6600"
bind_to_address "127.0.0.1"
audio_output {
type "ao"
name "ao_alsa_out"
device "alsa09"
}
Name: mpd
Version: 0.11.5
Release: alt1.2
Version: 0.12.0
Release: alt1
Summary: Music Player Daemon (MPD) allows remote access for playing music and managing playlists.
License: GPL
......@@ -8,13 +8,12 @@ Group: Sound
Url: http://musicpd.org/
Source: %name-%version.tar.gz
Source: %name-%version.tar.bz2
Source1: %name.conf
Patch0: %name-empty-db-line-fix.patch
# Automatically added by buildreq on Thu Feb 10 2005
BuildRequires: gcc-c++ gcc-g77 hostinfo libalsa-devel libao-devel libaudiofile-devel libfaad-devel libflac-devel libid3tag-devel libmikmod-devel libogg-devel libstdc++-devel libvorbis-devel zlib-devel
# Automatically added by buildreq on Fri Sep 15 2006
BuildRequires: libalsa-devel libaudiofile-devel libfaad-devel libflac-devel libid3tag-devel libmad-devel libmikmod-devel libmpcdec-devel liboggflac-devel libpulseaudio-devel libvorbis-devel zlib-devel libao-devel
%description
......@@ -27,10 +26,16 @@ like frontend options, or restart X often.
%prep
%setup -q
%patch0 -p1
%build
%configure
%configure --enable-ao \
--enable-mod \
--enable-mp3 \
--enable-mpc \
--enable-mvp \
--enable-oggvorbis \
--enable-oss \
--enable-pulse
%make_build
%install
......@@ -43,8 +48,18 @@ like frontend options, or restart X often.
%config(noreplace) %_sysconfdir/%name.conf
%_bindir/%name
%_man1dir/%name.1.gz
%_man5dir/%name.conf.5.gz
%changelog
* Mon Sep 25 2006 Alex Gorbachenko (agent_007) <algor@altlinux.ru> 0.12.0-alt1
- 0.12.
* Fri Sep 15 2006 Alex Gorbachenko (agent_007) <algor@altlinux.ru> 0.12.0rc4-alt1
- 0.12.0rc4.
- libao support;
- pulseaudio support;
- support for more media formats.
* Wed Nov 02 2005 Alex Gorbachenko (agent_007) <algor@altlinux.ru> 0.11.5-alt1.2
- fix for #8395 (10x to Alexei V. Mezin).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment