commit 73fa6aa5c2ade2a85d58b61f253ba00935b83bcae0a0a66096d1a3491111d9a0 Author: Pavol Rusnak Date: Fri Aug 26 16:13:44 2011 +0000 Accepting request 78034 from home:TheBlackCat Since openSUSE:Factory will not accept packages using source services, I have submitted a new version that doesn't use them. To enter in Factory. Needed by some KDE packages, see: http://lists.opensuse.org/opensuse-kde/2011-08/msg00036.html OBS-URL: https://build.opensuse.org/request/show/78034 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libmms?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/libmms-0.6.2.tar.bz2 b/libmms-0.6.2.tar.bz2 new file mode 100644 index 0000000..047f2b4 --- /dev/null +++ b/libmms-0.6.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d027bdd5cfe36eb397e356b9212ba39cdb8e321d830f8c466602858375a56d1 +size 282424 diff --git a/libmms.changes b/libmms.changes new file mode 100644 index 0000000..fbb416d --- /dev/null +++ b/libmms.changes @@ -0,0 +1,9 @@ +------------------------------------------------------------------- +Thu Aug 4 15:21:22 UTC 2011 - toddrme2178@gmail.com + +- Switch to stored tarball rather that using the download service + +------------------------------------------------------------------- +Sun Jan 23 13:43:16 UTC 2011 - reddwarf@opensuse.org + +- Update to 0.6.2 diff --git a/libmms.spec b/libmms.spec new file mode 100644 index 0000000..6fc7b5f --- /dev/null +++ b/libmms.spec @@ -0,0 +1,82 @@ +# +# spec file for package libmms +# +# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# 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/ +# + + +%define soname 0 + +Name: libmms +Version: 0.6.2 +Release: 0 +License: LGPLv2+ +Summary: MMS stream protocol library +Url: http://www.sf.net/projects/%{name} +Group: System/Libraries +Source0: %{name}-%{version}.tar.bz2 +BuildRequires: pkg-config +BuildRequires: pkgconfig(glib-2.0) + +%description +LibMMS is a common library for parsing mms:// and mmsh:// type network streams. +These are commonly used to stream Windows Media Video content over the web. +LibMMS itself is only for receiving MMS stream, it doesn't handle sending at +all. + +%package -n %{name}%{soname} +Summary: MMS stream protocol library +Group: System/Libraries + +%description -n %{name}%{soname} +LibMMS is a common library for parsing mms:// and mmsh:// type network streams. +These are commonly used to stream Windows Media Video content over the web. +LibMMS itself is only for receiving MMS stream, it doesn't handle sending at +all. + +%package -n %{name}-devel +Summary: Libmms development files +Group: Development/Libraries/C and C++ +Requires: %{name}%{soname} = %{version} + +%description -n %{name}-devel +Headers and libraries to program against %{name} + +%prep +%setup -q + +%build +%configure --disable-static +%{__make} %{?_smp_mflags} + +%install +%make_install +%{__rm} -f '%{buildroot}%{_libdir}/%{name}.la' + +%post -n %{name}%{soname} -p /sbin/ldconfig + +%postun -n %{name}%{soname} -p /sbin/ldconfig + +%files -n %{name}%{soname} +%defattr(0644, root, root, 0755) +%doc AUTHORS ChangeLog COPYING.LIB README README.LICENSE +%{_libdir}/%{name}.so.%{soname}* + +%files -n %{name}-devel +%defattr(0644, root, root, 0755) +%{_libdir}/%{name}.so +%{_includedir}/%{name} +%{_libdir}/pkgconfig/%{name}.pc + +%changelog