rpms/vlc/F-10 vlc.spec,1.17,1.18
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv8909
Modified Files:
vlc.spec
Log Message:
yep that's a scray testing build
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-10/vlc.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- vlc.spec 6 Mar 2009 18:23:51 -0000 1.17
+++ vlc.spec 17 Mar 2009 11:31:20 -0000 1.18
@@ -20,7 +20,7 @@
%else
Version: 0.9.9
%define _version %{version}
-%define release_tag 0.4rc2
+%define release_tag 0.5rc2
%endif
Release: %{release_tag}%{?dist}
License: GPLv2+
@@ -43,7 +43,7 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
-%if 0
+%if 1
BuildRequires: gettext-devel
BuildRequires: libtool
%endif
@@ -54,7 +54,7 @@
BuildRequires: avahi-devel
BuildRequires: cdparanoia-devel
BuildRequires: dbus-devel
-%{?_with_dirac: BuildRequires: dirac-devel >= 1.0.0}
+%{?_with_dirac: BuildRequires: dirac-devel >= 0.10.0 }
%if %with_directfb
BuildRequires: directfb-devel
%endif
@@ -86,7 +86,7 @@
BuildRequires: libmp4v2-devel
BuildRequires: libmpcdec-devel
BuildRequires: libnotify-devel
-BuildRequires: librsvg2-devel >= 2.5.0
+BuildRequires: librsvg2-devel >= 2.9.0
BuildRequires: libsysfs-devel
BuildRequires: libshout-devel
BuildRequires: libtar-devel
@@ -97,7 +97,11 @@
BuildRequires: libv4l-devel
%endif
BuildRequires: libvorbis-devel
-BuildRequires: libxml2-devel
+%if 0%{?fedora} < 11
+BuildRequires: libxml2 < 2.7.3
+BuildRequires: libxml2-devel < 2.7.3
+BuildRequires: libxml2-static < 2.7.3
+%endif
BuildRequires: lirc-devel
%if %with_internal_live555
BuildConflicts: live-devel
@@ -275,7 +279,13 @@
%patch5 -p1 -b .pulse0071
chmod -x modules/gui/qt4/qt4*
-#./bootstrap
+./bootstrap
+%endif
+
+%if 0%{?fedora} > 10
+%else
+cp -p %{_bindir}/xml2-config .
+sed -i.libxml2_static -e 's|-lxml2|-static -lxml2 -shared -L%{_libdir} -lc |g' xml2-config configure.ac configure
%endif
@@ -359,6 +369,7 @@
%if %with_mozilla
--enable-mozilla \
%endif
+ --with-xml2-config-path=`pwd`
# remove rpath from libtool
@@ -543,6 +554,9 @@
%changelog
+* Tue Mar 16 2009 kwizart < kwizart at gmail.com > - 0.9.9-0.5rc2
+- Use libxml2-static 2.6.2 from the Fedora GA repository
+
* Fri Mar 6 2009 kwizart < kwizart at gmail.com > - 0.9.9-0.4rc2
- Update to 0.9.9-rc2
- Add lua support by default
15 years, 9 months
rpms/mac/F-9 mac-3.99-u4-b5-analyse.patch, NONE, 1.1 mac-3.99-u4-b5-gcc44.patch, NONE, 1.1 mac-permission_to_redistribute.txt, NONE, 1.1 mac.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/mac/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv6025/F-9
Modified Files:
.cvsignore sources
Added Files:
mac-3.99-u4-b5-analyse.patch mac-3.99-u4-b5-gcc44.patch
mac-permission_to_redistribute.txt mac.spec
Log Message:
Initial import for F-9
mac-3.99-u4-b5-analyse.patch:
--- NEW FILE mac-3.99-u4-b5-analyse.patch ---
--- mac-3.99-u4-b5/src/Examples/Analyze/Sample1/Sample1.cpp~ 2006-06-01 05:00:58.000000000 -0400
+++ mac-3.99-u4-b5/src/Examples/Analyze/Sample1/Sample1.cpp 2009-03-13 11:48:50.000000000 -0400
@@ -81,15 +81,15 @@ int main(int argc, char* argv[])
// audio format information
printf("Audio Format:\r\n");
- printf("\tSamples per second: %d\r\n", pAPEDecompress->GetInfo(APE_INFO_SAMPLE_RATE));
- printf("\tBits per sample: %d\r\n", pAPEDecompress->GetInfo(APE_INFO_BITS_PER_SAMPLE));
- printf("\tNumber of channels: %d\r\n", pAPEDecompress->GetInfo(APE_INFO_CHANNELS));
- printf("\tPeak level: %d\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_PEAK_LEVEL));
+ printf("\tSamples per second: %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_SAMPLE_RATE));
+ printf("\tBits per sample: %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_BITS_PER_SAMPLE));
+ printf("\tNumber of channels: %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_CHANNELS));
+ printf("\tPeak level: %zd\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_PEAK_LEVEL));
// size and duration information
printf("Size and Duration:\r\n");
- printf("\tLength of file (s): %d\r\n", pAPEDecompress->GetInfo(APE_INFO_LENGTH_MS) / 1000);
- printf("\tFile Size (kb): %d\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_APE_TOTAL_BYTES) / 1024);
+ printf("\tLength of file (s): %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_LENGTH_MS) / 1000);
+ printf("\tFile Size (kb): %zd\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_APE_TOTAL_BYTES) / 1024);
// tag information
printf("Tag Information:\r\n");
mac-3.99-u4-b5-gcc44.patch:
--- NEW FILE mac-3.99-u4-b5-gcc44.patch ---
diff -up mac-3.99-u4-b5/src/MACLib/APELink.cpp.gcc44 mac-3.99-u4-b5/src/MACLib/APELink.cpp
--- mac-3.99-u4-b5/src/MACLib/APELink.cpp.gcc44 2006-06-01 11:00:57.000000000 +0200
+++ mac-3.99-u4-b5/src/MACLib/APELink.cpp 2009-03-13 16:08:05.000000000 +0100
@@ -63,10 +63,10 @@ void CAPELink::ParseData(const char * pD
if (pData != NULL)
{
// parse out the information
- char * pHeader = strstr(pData, APE_LINK_HEADER);
- char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
- char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
- char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
+ const char * pHeader = strstr(pData, APE_LINK_HEADER);
+ const char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
+ const char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
+ const char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
if (pHeader && pImageFile && pStartBlock && pFinishBlock)
{
@@ -81,7 +81,7 @@ void CAPELink::ParseData(const char * pD
// get the path
char cImageFile[MAX_PATH + 1]; int nIndex = 0;
- char * pImageCharacter = &pImageFile[strlen(APE_LINK_IMAGE_FILE_TAG)];
+ const char * pImageCharacter = &pImageFile[strlen(APE_LINK_IMAGE_FILE_TAG)];
while ((*pImageCharacter != 0) && (*pImageCharacter != '\r') && (*pImageCharacter != '\n'))
cImageFile[nIndex++] = *pImageCharacter++;
cImageFile[nIndex] = 0;
--- NEW FILE mac-permission_to_redistribute.txt ---
>From matt(a)jriver.com Mon Feb 2 12:33:34 2009
Delivered-To: ogetbilo(a)gmail.com
Received: by 10.90.34.1 with SMTP id h1cs188794agh;
Mon, 2 Feb 2009 09:33:34 -0800 (PST)
Received: by 10.64.63.16 with SMTP id l16mr2760800qba.6.1233596013505;
Mon, 02 Feb 2009 09:33:33 -0800 (PST)
Return-Path: <matt(a)jriver.com>
Received: from linux.jriver.com (nm.jriver.com [204.29.156.98])
by mx.google.com with SMTP id k29si6326715qba.7.2009.02.02.09.33.33;
Mon, 02 Feb 2009 09:33:33 -0800 (PST)
Received-SPF: pass (google.com: domain of matt(a)jriver.com designates 204.29.156.98 as permitted sender) client-ip=204.29.156.98;
Authentication-Results: mx.google.com; spf=pass (google.com: domain of matt(a)jriver.com designates 204.29.156.98 as permitted sender) smtp.mail=matt(a)jriver.com
Received: (qmail 23096 invoked from network); 2 Feb 2009 17:33:34 -0000
Received: from unknown (HELO ?199.242.131.144?) (199.242.131.144)
by 0 with SMTP; 2 Feb 2009 17:33:34 -0000
Message-ID: <49872E6E.5090609(a)jriver.com>
Date: Mon, 02 Feb 2009 11:33:34 -0600
From: Matt Ashland <matt(a)jriver.com>
User-Agent: Thunderbird 2.0.0.19 (Windows/20081209)
MIME-Version: 1.0
To: "Orcan B. Ogetbil" <ogetbilo(a)gmail.com>
Subject: Re: Including MAC at rpmfusion?
References: <200812121517.16055.ogetbilo(a)gmail.com> <4942C9D9.1000301(a)jriver.com> <200902021215.15415.ogetbilo(a)gmail.com>
In-Reply-To: <200902021215.15415.ogetbilo(a)gmail.com>
Content-Type: text/plain;
charset=ISO-8859-1;
format=flowed
Content-Transfer-Encoding: 7bit
X-Length: 3296
X-UID: 1187
Hi Orcan,
Here's the license:
http://www.monkeysaudio.com/license.html
Like I said, my intent is to make the code free without restrictions and
complications. Per the language of the license, consider this "express
written consent" to do as you like.
I'm not too interested in getting into a horse-trading arrangement to
give code away. I hope you understand.
Best,
-Matt
Orcan B. Ogetbil wrote:
> Hi Matt,
> It's me again. People I talked to say it is not appropriate to distribute MAC
> as is right now. They claim that, an email is not enough for permission to
> redistribute.
>
> Could you add some text (that will allow redistribution of MAC) in the
> tarball, perhaps a line in the src/License.htm file? This will solve most
> questions about this issue.
>
> Thanks a lot,
> Orcan
>
>
>
> On Friday 12 December 2008 15:30:17 you wrote:
>
>> Hi Orcan,
>>
>> Please feel free to modify or distribute Monkey's Audio to your liking.
>> I intend the license to Monkey's Audio to be free and open. I have no
>> interest in monetizing Monkey's Audio or restricting it.
>>
>> Thanks for your support.
>>
>> -Matt
>>
>> Orcan B. Ogetbil wrote:
>>
>>> Hi Matt,
>>> I would like to ask permission for distributing the linux port of MAC at
>>> rpmfusion, one of the widest known 3rd party repositories that
>>> distributes content that cannot be directly included in Fedora Linux.
>>>
>>> I have seen in the forums that you have no interest in (L)GPL'ing your
>>> code and I respect that. But your current license says nothing about the
>>> distribution of MAC. Hence we can't distribute any MAC code or binary
>>> without your permission.
>>>
>>> I hope to hear back from you soon.
>>> Regards,
>>>
>
>
--- NEW FILE mac.spec ---
Name: mac
Version: 3.99
Release: 6.u4b5%{?dist}
Summary: Monkey's Audio Codec (MAC) utility
Group: Applications/Multimedia
License: Monkey's Audio Source Code License Agreement
URL: http://supermmx.org/linux/mac/
Source0: http://supermmx.org/resources/linux/mac/mac-%{version}-u4-b5.tar.gz
Source1: mac-permission_to_redistribute.txt
Patch0: mac-3.99-u4-b5-gcc44.patch
Patch1: mac-3.99-u4-b5-analyse.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%ifarch i686 x86_64
BuildRequires: yasm
%endif
BuildRequires: prelink
Requires: %{name}-libs = %{version}-%{release}
%description
Monkey’s Audio is a fast and easy way to compress digital music. Unlike
traditional methods such as mp3, ogg, or lqt that permanently discard
quality to save space, Monkey’s Audio only makes perfect, bit-for-bit
copies of your music. That means it always sounds perfect – exactly the
same as the original. Even though the sound is perfect, it still saves a
lot of space.
Permission to redistribute is granted by the AUTHOR to rpmfusion.org only.
See mac-permission_to_redistribute.txt
%package libs
Summary: Library for Monkey's Audio Codec
Group: System Environment/Libraries
# Introduced in F-9 to solve multilib transition
Obsoletes: %{name} < 3.99-3
%description libs
The %{name}-libs package contains library for Monkey's Audio Codec.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name}-libs = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
%setup -q -n %{name}-%{version}-u4-b5
%patch0 -p1 -b .gcc44
%patch1 -p1 -b .an
#Copy permission to redistribute
cp -p %{SOURCE1} .
# Fix encoding issues:
for txtfile in src/Credits.txt ; do
iconv -f iso-8859-1 -t UTF8 $txtfile -o $txtfile.utf8
touch -r $txtfile $txtfile.utf8
mv -f $txtfile.utf8 $txtfile
done
# Disable CXXFLAGS override
sed -i.cxxflags -e 's/ -O3 -Wall -pedantic -Wno-long-long//g' configure configure.in
touch -r configure.in.cxxflags configure.in
touch -r configure.cxxflags configure
%build
%configure --disable-static \
%ifarch i686 x86_64
--enable-assembly=yes
%endif
# remove rpath from libtool
sed -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i.rpath 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
execstack -c $RPM_BUILD_ROOT%{_libdir}/libmac.so.2.0.0
%clean
rm -rf $RPM_BUILD_ROOT
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README
%{_bindir}/mac
%files libs
%defattr(-,root,root,-)
%doc mac-permission_to_redistribute.txt
%doc src/License.htm
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root,-)
%doc TODO src/Readme.htm src/Credits.txt src/History.txt
%{_includedir}/mac/
%{_libdir}/*.so
%changelog
* Fri Mar 13 2009 kwizart < kwizart at gmail.com > - 3.99-6.u4b5
- Add permission to redistribute for RPM Fusion. (bundled with -libs)
- Fix for gcc44
* Mon Feb 2 2009 kwizart < kwizart at gmail.com > - 3.99-4.u4b5
- Fix the main package category
- Fix the execstack on libmac.so.2
- Move some docs from main to -devel
* Fri Dec 12 2008 kwizart < kwizart at gmail.com > - 3.99-3.u4b5
- Multilib compliance
- Disable rpath (libtool patch)
- Fix doc encoding
- Enable asm optimization with yasm when possible
- Disable CXXFLAGS override
* Mon Jul 10 2006 Matthias Saou <http://freshrpms.net/> 3.99-2.u4b5
- Update to 3.99-u4-b5.
- Remove no longer needed 64bit patch.
* Fri Mar 17 2006 Matthias Saou <http://freshrpms.net/> 3.99-2.u4b4
- Release bump to drop the disttag number in FC5 build.
* Thu Jan 19 2006 Matthias Saou <http://freshrpms.net/> 3.99-1.u4b4
- Update to 3.99-u4-b4.
- Port over 64bit patch from the gstreamer-monkeysaudio package.
* Thu May 26 2005 Matthias Saou <http://freshrpms.net/> 3.99-1.u4b3
- Initial RPM release.
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mac/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 13 Mar 2009 18:52:59 -0000 1.1
+++ .cvsignore 17 Mar 2009 10:40:21 -0000 1.2
@@ -0,0 +1 @@
+mac-3.99-u4-b5.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mac/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 13 Mar 2009 18:52:59 -0000 1.1
+++ sources 17 Mar 2009 10:40:21 -0000 1.2
@@ -0,0 +1 @@
+75716b342e07deae58f56a2522362006 mac-3.99-u4-b5.tar.gz
15 years, 9 months
rpms/mac/F-10 mac-3.99-u4-b5-analyse.patch, NONE, 1.1 mac-3.99-u4-b5-gcc44.patch, NONE, 1.1 mac-permission_to_redistribute.txt, NONE, 1.1 mac.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/mac/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5769/F-10
Modified Files:
.cvsignore sources
Added Files:
mac-3.99-u4-b5-analyse.patch mac-3.99-u4-b5-gcc44.patch
mac-permission_to_redistribute.txt mac.spec
Log Message:
Import for F-10
mac-3.99-u4-b5-analyse.patch:
--- NEW FILE mac-3.99-u4-b5-analyse.patch ---
--- mac-3.99-u4-b5/src/Examples/Analyze/Sample1/Sample1.cpp~ 2006-06-01 05:00:58.000000000 -0400
+++ mac-3.99-u4-b5/src/Examples/Analyze/Sample1/Sample1.cpp 2009-03-13 11:48:50.000000000 -0400
@@ -81,15 +81,15 @@ int main(int argc, char* argv[])
// audio format information
printf("Audio Format:\r\n");
- printf("\tSamples per second: %d\r\n", pAPEDecompress->GetInfo(APE_INFO_SAMPLE_RATE));
- printf("\tBits per sample: %d\r\n", pAPEDecompress->GetInfo(APE_INFO_BITS_PER_SAMPLE));
- printf("\tNumber of channels: %d\r\n", pAPEDecompress->GetInfo(APE_INFO_CHANNELS));
- printf("\tPeak level: %d\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_PEAK_LEVEL));
+ printf("\tSamples per second: %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_SAMPLE_RATE));
+ printf("\tBits per sample: %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_BITS_PER_SAMPLE));
+ printf("\tNumber of channels: %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_CHANNELS));
+ printf("\tPeak level: %zd\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_PEAK_LEVEL));
// size and duration information
printf("Size and Duration:\r\n");
- printf("\tLength of file (s): %d\r\n", pAPEDecompress->GetInfo(APE_INFO_LENGTH_MS) / 1000);
- printf("\tFile Size (kb): %d\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_APE_TOTAL_BYTES) / 1024);
+ printf("\tLength of file (s): %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_LENGTH_MS) / 1000);
+ printf("\tFile Size (kb): %zd\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_APE_TOTAL_BYTES) / 1024);
// tag information
printf("Tag Information:\r\n");
mac-3.99-u4-b5-gcc44.patch:
--- NEW FILE mac-3.99-u4-b5-gcc44.patch ---
diff -up mac-3.99-u4-b5/src/MACLib/APELink.cpp.gcc44 mac-3.99-u4-b5/src/MACLib/APELink.cpp
--- mac-3.99-u4-b5/src/MACLib/APELink.cpp.gcc44 2006-06-01 11:00:57.000000000 +0200
+++ mac-3.99-u4-b5/src/MACLib/APELink.cpp 2009-03-13 16:08:05.000000000 +0100
@@ -63,10 +63,10 @@ void CAPELink::ParseData(const char * pD
if (pData != NULL)
{
// parse out the information
- char * pHeader = strstr(pData, APE_LINK_HEADER);
- char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
- char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
- char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
+ const char * pHeader = strstr(pData, APE_LINK_HEADER);
+ const char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
+ const char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
+ const char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
if (pHeader && pImageFile && pStartBlock && pFinishBlock)
{
@@ -81,7 +81,7 @@ void CAPELink::ParseData(const char * pD
// get the path
char cImageFile[MAX_PATH + 1]; int nIndex = 0;
- char * pImageCharacter = &pImageFile[strlen(APE_LINK_IMAGE_FILE_TAG)];
+ const char * pImageCharacter = &pImageFile[strlen(APE_LINK_IMAGE_FILE_TAG)];
while ((*pImageCharacter != 0) && (*pImageCharacter != '\r') && (*pImageCharacter != '\n'))
cImageFile[nIndex++] = *pImageCharacter++;
cImageFile[nIndex] = 0;
--- NEW FILE mac-permission_to_redistribute.txt ---
>From matt(a)jriver.com Mon Feb 2 12:33:34 2009
Delivered-To: ogetbilo(a)gmail.com
Received: by 10.90.34.1 with SMTP id h1cs188794agh;
Mon, 2 Feb 2009 09:33:34 -0800 (PST)
Received: by 10.64.63.16 with SMTP id l16mr2760800qba.6.1233596013505;
Mon, 02 Feb 2009 09:33:33 -0800 (PST)
Return-Path: <matt(a)jriver.com>
Received: from linux.jriver.com (nm.jriver.com [204.29.156.98])
by mx.google.com with SMTP id k29si6326715qba.7.2009.02.02.09.33.33;
Mon, 02 Feb 2009 09:33:33 -0800 (PST)
Received-SPF: pass (google.com: domain of matt(a)jriver.com designates 204.29.156.98 as permitted sender) client-ip=204.29.156.98;
Authentication-Results: mx.google.com; spf=pass (google.com: domain of matt(a)jriver.com designates 204.29.156.98 as permitted sender) smtp.mail=matt(a)jriver.com
Received: (qmail 23096 invoked from network); 2 Feb 2009 17:33:34 -0000
Received: from unknown (HELO ?199.242.131.144?) (199.242.131.144)
by 0 with SMTP; 2 Feb 2009 17:33:34 -0000
Message-ID: <49872E6E.5090609(a)jriver.com>
Date: Mon, 02 Feb 2009 11:33:34 -0600
From: Matt Ashland <matt(a)jriver.com>
User-Agent: Thunderbird 2.0.0.19 (Windows/20081209)
MIME-Version: 1.0
To: "Orcan B. Ogetbil" <ogetbilo(a)gmail.com>
Subject: Re: Including MAC at rpmfusion?
References: <200812121517.16055.ogetbilo(a)gmail.com> <4942C9D9.1000301(a)jriver.com> <200902021215.15415.ogetbilo(a)gmail.com>
In-Reply-To: <200902021215.15415.ogetbilo(a)gmail.com>
Content-Type: text/plain;
charset=ISO-8859-1;
format=flowed
Content-Transfer-Encoding: 7bit
X-Length: 3296
X-UID: 1187
Hi Orcan,
Here's the license:
http://www.monkeysaudio.com/license.html
Like I said, my intent is to make the code free without restrictions and
complications. Per the language of the license, consider this "express
written consent" to do as you like.
I'm not too interested in getting into a horse-trading arrangement to
give code away. I hope you understand.
Best,
-Matt
Orcan B. Ogetbil wrote:
> Hi Matt,
> It's me again. People I talked to say it is not appropriate to distribute MAC
> as is right now. They claim that, an email is not enough for permission to
> redistribute.
>
> Could you add some text (that will allow redistribution of MAC) in the
> tarball, perhaps a line in the src/License.htm file? This will solve most
> questions about this issue.
>
> Thanks a lot,
> Orcan
>
>
>
> On Friday 12 December 2008 15:30:17 you wrote:
>
>> Hi Orcan,
>>
>> Please feel free to modify or distribute Monkey's Audio to your liking.
>> I intend the license to Monkey's Audio to be free and open. I have no
>> interest in monetizing Monkey's Audio or restricting it.
>>
>> Thanks for your support.
>>
>> -Matt
>>
>> Orcan B. Ogetbil wrote:
>>
>>> Hi Matt,
>>> I would like to ask permission for distributing the linux port of MAC at
>>> rpmfusion, one of the widest known 3rd party repositories that
>>> distributes content that cannot be directly included in Fedora Linux.
>>>
>>> I have seen in the forums that you have no interest in (L)GPL'ing your
>>> code and I respect that. But your current license says nothing about the
>>> distribution of MAC. Hence we can't distribute any MAC code or binary
>>> without your permission.
>>>
>>> I hope to hear back from you soon.
>>> Regards,
>>>
>
>
--- NEW FILE mac.spec ---
Name: mac
Version: 3.99
Release: 6.u4b5%{?dist}
Summary: Monkey's Audio Codec (MAC) utility
Group: Applications/Multimedia
License: Monkey's Audio Source Code License Agreement
URL: http://supermmx.org/linux/mac/
Source0: http://supermmx.org/resources/linux/mac/mac-%{version}-u4-b5.tar.gz
Source1: mac-permission_to_redistribute.txt
Patch0: mac-3.99-u4-b5-gcc44.patch
Patch1: mac-3.99-u4-b5-analyse.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%ifarch i686 x86_64
BuildRequires: yasm
%endif
BuildRequires: prelink
Requires: %{name}-libs = %{version}-%{release}
%description
Monkey’s Audio is a fast and easy way to compress digital music. Unlike
traditional methods such as mp3, ogg, or lqt that permanently discard
quality to save space, Monkey’s Audio only makes perfect, bit-for-bit
copies of your music. That means it always sounds perfect – exactly the
same as the original. Even though the sound is perfect, it still saves a
lot of space.
Permission to redistribute is granted by the AUTHOR to rpmfusion.org only.
See mac-permission_to_redistribute.txt
%package libs
Summary: Library for Monkey's Audio Codec
Group: System Environment/Libraries
# Introduced in F-9 to solve multilib transition
Obsoletes: %{name} < 3.99-3
%description libs
The %{name}-libs package contains library for Monkey's Audio Codec.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name}-libs = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
%setup -q -n %{name}-%{version}-u4-b5
%patch0 -p1 -b .gcc44
%patch1 -p1 -b .an
#Copy permission to redistribute
cp -p %{SOURCE1} .
# Fix encoding issues:
for txtfile in src/Credits.txt ; do
iconv -f iso-8859-1 -t UTF8 $txtfile -o $txtfile.utf8
touch -r $txtfile $txtfile.utf8
mv -f $txtfile.utf8 $txtfile
done
# Disable CXXFLAGS override
sed -i.cxxflags -e 's/ -O3 -Wall -pedantic -Wno-long-long//g' configure configure.in
touch -r configure.in.cxxflags configure.in
touch -r configure.cxxflags configure
%build
%configure --disable-static \
%ifarch i686 x86_64
--enable-assembly=yes
%endif
# remove rpath from libtool
sed -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i.rpath 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
execstack -c $RPM_BUILD_ROOT%{_libdir}/libmac.so.2.0.0
%clean
rm -rf $RPM_BUILD_ROOT
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README
%{_bindir}/mac
%files libs
%defattr(-,root,root,-)
%doc mac-permission_to_redistribute.txt
%doc src/License.htm
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root,-)
%doc TODO src/Readme.htm src/Credits.txt src/History.txt
%{_includedir}/mac/
%{_libdir}/*.so
%changelog
* Fri Mar 13 2009 kwizart < kwizart at gmail.com > - 3.99-6.u4b5
- Add permission to redistribute for RPM Fusion. (bundled with -libs)
- Fix for gcc44
* Mon Feb 2 2009 kwizart < kwizart at gmail.com > - 3.99-4.u4b5
- Fix the main package category
- Fix the execstack on libmac.so.2
- Move some docs from main to -devel
* Fri Dec 12 2008 kwizart < kwizart at gmail.com > - 3.99-3.u4b5
- Multilib compliance
- Disable rpath (libtool patch)
- Fix doc encoding
- Enable asm optimization with yasm when possible
- Disable CXXFLAGS override
* Mon Jul 10 2006 Matthias Saou <http://freshrpms.net/> 3.99-2.u4b5
- Update to 3.99-u4-b5.
- Remove no longer needed 64bit patch.
* Fri Mar 17 2006 Matthias Saou <http://freshrpms.net/> 3.99-2.u4b4
- Release bump to drop the disttag number in FC5 build.
* Thu Jan 19 2006 Matthias Saou <http://freshrpms.net/> 3.99-1.u4b4
- Update to 3.99-u4-b4.
- Port over 64bit patch from the gstreamer-monkeysaudio package.
* Thu May 26 2005 Matthias Saou <http://freshrpms.net/> 3.99-1.u4b3
- Initial RPM release.
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mac/F-10/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 13 Mar 2009 18:52:59 -0000 1.1
+++ .cvsignore 17 Mar 2009 10:39:42 -0000 1.2
@@ -0,0 +1 @@
+mac-3.99-u4-b5.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mac/F-10/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 13 Mar 2009 18:52:59 -0000 1.1
+++ sources 17 Mar 2009 10:39:42 -0000 1.2
@@ -0,0 +1 @@
+75716b342e07deae58f56a2522362006 mac-3.99-u4-b5.tar.gz
15 years, 9 months
rpms/mac/devel mac-3.99-u4-b5-analyse.patch, NONE, 1.1 mac-3.99-u4-b5-gcc44.patch, NONE, 1.1 mac-permission_to_redistribute.txt, NONE, 1.1 mac.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/mac/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4935/devel
Modified Files:
.cvsignore sources
Added Files:
mac-3.99-u4-b5-analyse.patch mac-3.99-u4-b5-gcc44.patch
mac-permission_to_redistribute.txt mac.spec
Log Message:
Initial import for Rawhide
mac-3.99-u4-b5-analyse.patch:
--- NEW FILE mac-3.99-u4-b5-analyse.patch ---
--- mac-3.99-u4-b5/src/Examples/Analyze/Sample1/Sample1.cpp~ 2006-06-01 05:00:58.000000000 -0400
+++ mac-3.99-u4-b5/src/Examples/Analyze/Sample1/Sample1.cpp 2009-03-13 11:48:50.000000000 -0400
@@ -81,15 +81,15 @@ int main(int argc, char* argv[])
// audio format information
printf("Audio Format:\r\n");
- printf("\tSamples per second: %d\r\n", pAPEDecompress->GetInfo(APE_INFO_SAMPLE_RATE));
- printf("\tBits per sample: %d\r\n", pAPEDecompress->GetInfo(APE_INFO_BITS_PER_SAMPLE));
- printf("\tNumber of channels: %d\r\n", pAPEDecompress->GetInfo(APE_INFO_CHANNELS));
- printf("\tPeak level: %d\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_PEAK_LEVEL));
+ printf("\tSamples per second: %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_SAMPLE_RATE));
+ printf("\tBits per sample: %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_BITS_PER_SAMPLE));
+ printf("\tNumber of channels: %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_CHANNELS));
+ printf("\tPeak level: %zd\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_PEAK_LEVEL));
// size and duration information
printf("Size and Duration:\r\n");
- printf("\tLength of file (s): %d\r\n", pAPEDecompress->GetInfo(APE_INFO_LENGTH_MS) / 1000);
- printf("\tFile Size (kb): %d\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_APE_TOTAL_BYTES) / 1024);
+ printf("\tLength of file (s): %zd\r\n", pAPEDecompress->GetInfo(APE_INFO_LENGTH_MS) / 1000);
+ printf("\tFile Size (kb): %zd\r\n\r\n", pAPEDecompress->GetInfo(APE_INFO_APE_TOTAL_BYTES) / 1024);
// tag information
printf("Tag Information:\r\n");
mac-3.99-u4-b5-gcc44.patch:
--- NEW FILE mac-3.99-u4-b5-gcc44.patch ---
diff -up mac-3.99-u4-b5/src/MACLib/APELink.cpp.gcc44 mac-3.99-u4-b5/src/MACLib/APELink.cpp
--- mac-3.99-u4-b5/src/MACLib/APELink.cpp.gcc44 2006-06-01 11:00:57.000000000 +0200
+++ mac-3.99-u4-b5/src/MACLib/APELink.cpp 2009-03-13 16:08:05.000000000 +0100
@@ -63,10 +63,10 @@ void CAPELink::ParseData(const char * pD
if (pData != NULL)
{
// parse out the information
- char * pHeader = strstr(pData, APE_LINK_HEADER);
- char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
- char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
- char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
+ const char * pHeader = strstr(pData, APE_LINK_HEADER);
+ const char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
+ const char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
+ const char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
if (pHeader && pImageFile && pStartBlock && pFinishBlock)
{
@@ -81,7 +81,7 @@ void CAPELink::ParseData(const char * pD
// get the path
char cImageFile[MAX_PATH + 1]; int nIndex = 0;
- char * pImageCharacter = &pImageFile[strlen(APE_LINK_IMAGE_FILE_TAG)];
+ const char * pImageCharacter = &pImageFile[strlen(APE_LINK_IMAGE_FILE_TAG)];
while ((*pImageCharacter != 0) && (*pImageCharacter != '\r') && (*pImageCharacter != '\n'))
cImageFile[nIndex++] = *pImageCharacter++;
cImageFile[nIndex] = 0;
--- NEW FILE mac-permission_to_redistribute.txt ---
>From matt(a)jriver.com Mon Feb 2 12:33:34 2009
Delivered-To: ogetbilo(a)gmail.com
Received: by 10.90.34.1 with SMTP id h1cs188794agh;
Mon, 2 Feb 2009 09:33:34 -0800 (PST)
Received: by 10.64.63.16 with SMTP id l16mr2760800qba.6.1233596013505;
Mon, 02 Feb 2009 09:33:33 -0800 (PST)
Return-Path: <matt(a)jriver.com>
Received: from linux.jriver.com (nm.jriver.com [204.29.156.98])
by mx.google.com with SMTP id k29si6326715qba.7.2009.02.02.09.33.33;
Mon, 02 Feb 2009 09:33:33 -0800 (PST)
Received-SPF: pass (google.com: domain of matt(a)jriver.com designates 204.29.156.98 as permitted sender) client-ip=204.29.156.98;
Authentication-Results: mx.google.com; spf=pass (google.com: domain of matt(a)jriver.com designates 204.29.156.98 as permitted sender) smtp.mail=matt(a)jriver.com
Received: (qmail 23096 invoked from network); 2 Feb 2009 17:33:34 -0000
Received: from unknown (HELO ?199.242.131.144?) (199.242.131.144)
by 0 with SMTP; 2 Feb 2009 17:33:34 -0000
Message-ID: <49872E6E.5090609(a)jriver.com>
Date: Mon, 02 Feb 2009 11:33:34 -0600
From: Matt Ashland <matt(a)jriver.com>
User-Agent: Thunderbird 2.0.0.19 (Windows/20081209)
MIME-Version: 1.0
To: "Orcan B. Ogetbil" <ogetbilo(a)gmail.com>
Subject: Re: Including MAC at rpmfusion?
References: <200812121517.16055.ogetbilo(a)gmail.com> <4942C9D9.1000301(a)jriver.com> <200902021215.15415.ogetbilo(a)gmail.com>
In-Reply-To: <200902021215.15415.ogetbilo(a)gmail.com>
Content-Type: text/plain;
charset=ISO-8859-1;
format=flowed
Content-Transfer-Encoding: 7bit
X-Length: 3296
X-UID: 1187
Hi Orcan,
Here's the license:
http://www.monkeysaudio.com/license.html
Like I said, my intent is to make the code free without restrictions and
complications. Per the language of the license, consider this "express
written consent" to do as you like.
I'm not too interested in getting into a horse-trading arrangement to
give code away. I hope you understand.
Best,
-Matt
Orcan B. Ogetbil wrote:
> Hi Matt,
> It's me again. People I talked to say it is not appropriate to distribute MAC
> as is right now. They claim that, an email is not enough for permission to
> redistribute.
>
> Could you add some text (that will allow redistribution of MAC) in the
> tarball, perhaps a line in the src/License.htm file? This will solve most
> questions about this issue.
>
> Thanks a lot,
> Orcan
>
>
>
> On Friday 12 December 2008 15:30:17 you wrote:
>
>> Hi Orcan,
>>
>> Please feel free to modify or distribute Monkey's Audio to your liking.
>> I intend the license to Monkey's Audio to be free and open. I have no
>> interest in monetizing Monkey's Audio or restricting it.
>>
>> Thanks for your support.
>>
>> -Matt
>>
>> Orcan B. Ogetbil wrote:
>>
>>> Hi Matt,
>>> I would like to ask permission for distributing the linux port of MAC at
>>> rpmfusion, one of the widest known 3rd party repositories that
>>> distributes content that cannot be directly included in Fedora Linux.
>>>
>>> I have seen in the forums that you have no interest in (L)GPL'ing your
>>> code and I respect that. But your current license says nothing about the
>>> distribution of MAC. Hence we can't distribute any MAC code or binary
>>> without your permission.
>>>
>>> I hope to hear back from you soon.
>>> Regards,
>>>
>
>
--- NEW FILE mac.spec ---
Name: mac
Version: 3.99
Release: 6.u4b5%{?dist}
Summary: Monkey's Audio Codec (MAC) utility
Group: Applications/Multimedia
License: Monkey's Audio Source Code License Agreement
URL: http://supermmx.org/linux/mac/
Source0: http://supermmx.org/resources/linux/mac/mac-%{version}-u4-b5.tar.gz
Source1: mac-permission_to_redistribute.txt
Patch0: mac-3.99-u4-b5-gcc44.patch
Patch1: mac-3.99-u4-b5-analyse.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%ifarch i686 x86_64
BuildRequires: yasm
%endif
BuildRequires: prelink
Requires: %{name}-libs = %{version}-%{release}
%description
Monkey’s Audio is a fast and easy way to compress digital music. Unlike
traditional methods such as mp3, ogg, or lqt that permanently discard
quality to save space, Monkey’s Audio only makes perfect, bit-for-bit
copies of your music. That means it always sounds perfect – exactly the
same as the original. Even though the sound is perfect, it still saves a
lot of space.
Permission to redistribute is granted by the AUTHOR to rpmfusion.org only.
See mac-permission_to_redistribute.txt
%package libs
Summary: Library for Monkey's Audio Codec
Group: System Environment/Libraries
# Introduced in F-9 to solve multilib transition
Obsoletes: %{name} < 3.99-3
%description libs
The %{name}-libs package contains library for Monkey's Audio Codec.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name}-libs = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
%setup -q -n %{name}-%{version}-u4-b5
%patch0 -p1 -b .gcc44
%patch1 -p1 -b .an
#Copy permission to redistribute
cp -p %{SOURCE1} .
# Fix encoding issues:
for txtfile in src/Credits.txt ; do
iconv -f iso-8859-1 -t UTF8 $txtfile -o $txtfile.utf8
touch -r $txtfile $txtfile.utf8
mv -f $txtfile.utf8 $txtfile
done
# Disable CXXFLAGS override
sed -i.cxxflags -e 's/ -O3 -Wall -pedantic -Wno-long-long//g' configure configure.in
touch -r configure.in.cxxflags configure.in
touch -r configure.cxxflags configure
%build
%configure --disable-static \
%ifarch i686 x86_64
--enable-assembly=yes
%endif
# remove rpath from libtool
sed -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i.rpath 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
execstack -c $RPM_BUILD_ROOT%{_libdir}/libmac.so.2.0.0
%clean
rm -rf $RPM_BUILD_ROOT
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README
%{_bindir}/mac
%files libs
%defattr(-,root,root,-)
%doc mac-permission_to_redistribute.txt
%doc src/License.htm
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root,-)
%doc TODO src/Readme.htm src/Credits.txt src/History.txt
%{_includedir}/mac/
%{_libdir}/*.so
%changelog
* Fri Mar 13 2009 kwizart < kwizart at gmail.com > - 3.99-6.u4b5
- Add permission to redistribute for RPM Fusion. (bundled with -libs)
- Fix for gcc44
* Mon Feb 2 2009 kwizart < kwizart at gmail.com > - 3.99-4.u4b5
- Fix the main package category
- Fix the execstack on libmac.so.2
- Move some docs from main to -devel
* Fri Dec 12 2008 kwizart < kwizart at gmail.com > - 3.99-3.u4b5
- Multilib compliance
- Disable rpath (libtool patch)
- Fix doc encoding
- Enable asm optimization with yasm when possible
- Disable CXXFLAGS override
* Mon Jul 10 2006 Matthias Saou <http://freshrpms.net/> 3.99-2.u4b5
- Update to 3.99-u4-b5.
- Remove no longer needed 64bit patch.
* Fri Mar 17 2006 Matthias Saou <http://freshrpms.net/> 3.99-2.u4b4
- Release bump to drop the disttag number in FC5 build.
* Thu Jan 19 2006 Matthias Saou <http://freshrpms.net/> 3.99-1.u4b4
- Update to 3.99-u4-b4.
- Port over 64bit patch from the gstreamer-monkeysaudio package.
* Thu May 26 2005 Matthias Saou <http://freshrpms.net/> 3.99-1.u4b3
- Initial RPM release.
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mac/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 13 Mar 2009 18:52:59 -0000 1.1
+++ .cvsignore 17 Mar 2009 10:33:35 -0000 1.2
@@ -0,0 +1 @@
+mac-3.99-u4-b5.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mac/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 13 Mar 2009 18:52:59 -0000 1.1
+++ sources 17 Mar 2009 10:33:35 -0000 1.2
@@ -0,0 +1 @@
+75716b342e07deae58f56a2522362006 mac-3.99-u4-b5.tar.gz
15 years, 9 months
rpms/xine-lib-extras-freeworld/F-10 xine-lib-extras-freeworld.spec, 1.12, 1.13
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/xine-lib-extras-freeworld/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13973
Modified Files:
xine-lib-extras-freeworld.spec
Log Message:
* Mon Mar 16 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-3
- Requires: xine-lib(plugin-abi)%{?_isa} = ...
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/F-10/xine-lib-extras-freeworld.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- xine-lib-extras-freeworld.spec 11 Feb 2009 03:40:18 -0000 1.12
+++ xine-lib-extras-freeworld.spec 16 Mar 2009 16:31:27 -0000 1.13
@@ -11,7 +11,7 @@
Name: xine-lib-extras-freeworld
Summary: Extra codecs for the Xine multimedia library
Version: 1.1.16.2
-Release: 1%{?dist}
+Release: 3%{?dist}
License: GPLv2+
Group: System Environment/Libraries
URL: http://xinehq.de/
@@ -47,7 +47,7 @@
BuildConflicts: libfame-devel
Requires: vcdimager >= 0.7.23
-Requires: xine-lib(plugin-abi) = %{abiver}
+Requires: xine-lib(plugin-abi)%{?_isa} = %{abiver}
# obsolete old livna package
Provides: xine-lib-extras-nonfree = %{version}-%{release}
@@ -187,6 +187,12 @@
%changelog
+* Mon Mar 16 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-3
+- Requires: xine-lib(plugin-abi)%%{?_isa} = ...
+
+* Thu Mar 12 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-2
+- respin for newer rpm/hashes
+
* Tue Feb 10 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-1
- xine-lib-1.1.16.2
15 years, 9 months
rpms/xine-lib-extras-freeworld/devel xine-lib-extras-freeworld.spec, 1.23, 1.24
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/xine-lib-extras-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4921
Modified Files:
xine-lib-extras-freeworld.spec
Log Message:
* Mon Mar 16 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-3
- Requires: xine-lib(plugin-abi)%{?_isa} = ...
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/devel/xine-lib-extras-freeworld.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- xine-lib-extras-freeworld.spec 12 Mar 2009 14:52:38 -0000 1.23
+++ xine-lib-extras-freeworld.spec 16 Mar 2009 13:43:21 -0000 1.24
@@ -11,7 +11,7 @@
Name: xine-lib-extras-freeworld
Summary: Extra codecs for the Xine multimedia library
Version: 1.1.16.2
-Release: 2%{?dist}
+Release: 3%{?dist}
License: GPLv2+
Group: System Environment/Libraries
URL: http://xinehq.de/
@@ -47,7 +47,7 @@
BuildConflicts: libfame-devel
Requires: vcdimager >= 0.7.23
-Requires: xine-lib(plugin-abi) = %{abiver}
+Requires: xine-lib(plugin-abi)%{?_isa} = %{abiver}
# obsolete old livna package
Provides: xine-lib-extras-nonfree = %{version}-%{release}
@@ -187,6 +187,9 @@
%changelog
+* Mon Mar 16 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-3
+- Requires: xine-lib(plugin-abi)%%{?_isa} = ...
+
* Thu Mar 12 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-2
- respin for newer rpm/hashes
15 years, 9 months
rpms/nvidia-173xx-kmod/devel sources, 1.4, 1.5 .cvsignore, 1.4, 1.5 nvidia-173xx-kmod.spec, 1.18, 1.19
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29335
Modified Files:
sources .cvsignore nvidia-173xx-kmod.spec
Log Message:
Update to 173.14.18 (stable)
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 25 Feb 2009 13:36:58 -0000 1.4
+++ sources 16 Mar 2009 11:07:12 -0000 1.5
@@ -1 +1 @@
-0f09f330851d6eea9304e2a3168b8b5f nvidia-kmod-data-173.14.17.tar.bz2
+88444ba1c5c95fd90f527f8b89078499 nvidia-kmod-data-173.14.18.tar.bz2
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 25 Feb 2009 13:36:58 -0000 1.4
+++ .cvsignore 16 Mar 2009 11:07:12 -0000 1.5
@@ -1 +1 @@
-nvidia-kmod-data-173.14.17.tar.bz2
+nvidia-kmod-data-173.14.18.tar.bz2
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/devel/nvidia-173xx-kmod.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- nvidia-173xx-kmod.spec 25 Feb 2009 13:50:17 -0000 1.18
+++ nvidia-173xx-kmod.spec 16 Mar 2009 11:07:12 -0000 1.19
@@ -3,12 +3,12 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%define buildforkernels akmod
+#define buildforkernels akmod
Name: nvidia-173xx-kmod
-Version: 173.14.17
+Version: 173.14.18
# Taken over by kmodtool
-Release: 1%{?dist}.1
+Release: 1%{?dist}
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Mon Mar 16 2009 kwizart < kwizart at gmail.com > - 173.14.18-1
+- Update to 173.14.18 (stable)
+
* Wed Feb 25 2009 kwizart < kwizart at gmail.com > - 173.14.17-1
- Update to 173.14.17 (beta)
- Build for i586 again since 173xx doesn't requires sse.
15 years, 9 months
rpms/xorg-x11-drv-nvidia-173xx/devel sources, 1.4, 1.5 .cvsignore, 1.4, 1.5
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-173xx/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28884
Modified Files:
sources .cvsignore
Log Message:
Update
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-173xx/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 25 Feb 2009 13:25:56 -0000 1.4
+++ sources 16 Mar 2009 11:00:52 -0000 1.5
@@ -1,2 +1,2 @@
-9d73573a254ce79f33f461820d83f69e NVIDIA-Linux-x86-173.14.17-pkg0.run
-18ee112f2296f805ace32579a099a685 NVIDIA-Linux-x86_64-173.14.17-pkg0.run
+480c10f3d861fd2c3cc2a46bccc961a4 NVIDIA-Linux-x86-173.14.18-pkg0.run
+39e26816de3b7d3692d28f9bd396eaf6 NVIDIA-Linux-x86_64-173.14.18-pkg0.run
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-173xx/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 25 Feb 2009 13:25:56 -0000 1.4
+++ .cvsignore 16 Mar 2009 11:00:52 -0000 1.5
@@ -1,2 +1,2 @@
-NVIDIA-Linux-x86-173.14.17-pkg0.run
-NVIDIA-Linux-x86_64-173.14.17-pkg0.run
+NVIDIA-Linux-x86-173.14.18-pkg0.run
+NVIDIA-Linux-x86_64-173.14.18-pkg0.run
15 years, 9 months
rpms/xorg-x11-drv-nvidia-173xx/devel xorg-x11-drv-nvidia-173xx.spec, 1.4, 1.5
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-173xx/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28806
Modified Files:
xorg-x11-drv-nvidia-173xx.spec
Log Message:
Update to 173.14.18 (stable)
Index: xorg-x11-drv-nvidia-173xx.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-173xx/devel/xorg-x11-drv-nvidia-173xx.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xorg-x11-drv-nvidia-173xx.spec 25 Feb 2009 13:25:56 -0000 1.4
+++ xorg-x11-drv-nvidia-173xx.spec 16 Mar 2009 11:00:24 -0000 1.5
@@ -7,7 +7,7 @@
%endif
Name: xorg-x11-drv-nvidia-173xx
-Version: 173.14.17
+Version: 173.14.18
Release: 1%{?dist}
Summary: NVIDIA's 173xx serie proprietary display driver for NVIDIA graphic cards
@@ -271,6 +271,9 @@
%changelog
+* Mon Mar 16 2009 kwizart < kwizart at gmail.com > - 173.14.18-1
+- Update to 173.14.18 (stable)
+
* Wed Feb 25 2009 kwizart < kwizart at gmail.com > - 173.14.17-1
- Update to 173.14.17 (beta)
15 years, 9 months
rpms/mednafen/devel mednafen.spec,1.5,1.6
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mednafen/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26372
Modified Files:
mednafen.spec
Log Message:
ExcludeArch: ppc64 on Fedora 11+
Index: mednafen.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/devel/mednafen.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mednafen.spec 11 Mar 2009 17:12:37 -0000 1.5
+++ mednafen.spec 15 Mar 2009 18:42:36 -0000 1.6
@@ -19,6 +19,10 @@
BuildRequires: zlib-devel
BuildRequires: jack-audio-connection-kit-devel
+%if 0%{?fedora} >= 11
+ExcludeArch: ppc64
+%endif
+
%description
A portable command-line driven, multi-system emulator which uses OpenGL and
SDL. It emulates the following:
@@ -72,6 +76,7 @@
%changelog
* Sun Mar 08 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.8.11-1.0.8.B
- Updated to 0.8.B
+- ExcludeArch: ppc64 on Fedora 11+
* Thu Nov 6 2008 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.8.10-2.0.8.A
- Rebuilt. Something has mangled the x86_64 rpm
15 years, 9 months