commit freealut for openSUSE:Factory

2018-03-28 Thread root
Hello community,

here is the log from the commit of package freealut for openSUSE:Factory 
checked in at 2018-03-28 10:31:39

Comparing /work/SRC/openSUSE:Factory/freealut (Old)
 and  /work/SRC/openSUSE:Factory/.freealut.new (New)


Package is "freealut"

Wed Mar 28 10:31:39 2018 rev:22 rq:591123 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/freealut/freealut.changes2017-11-07 
10:02:21.644805939 +0100
+++ /work/SRC/openSUSE:Factory/.freealut.new/freealut.changes   2018-03-28 
10:31:54.131921826 +0200
@@ -1,0 +2,7 @@
+Mon Mar 26 12:12:15 UTC 2018 - crrodrig...@opensuse.org
+
+- turn WARNINGS and OPTIMIZATION CMAKE options off, this 
+  disables -ansi again and sets uses only the distribution
+  default CFLAGS.
+
+---



Other differences:
--
++ freealut.spec ++
--- /var/tmp/diff_new_pack.oXLSNC/_old  2018-03-28 10:31:56.619832348 +0200
+++ /var/tmp/diff_new_pack.oXLSNC/_new  2018-03-28 10:31:56.623832205 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package freealut
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 Version:1.1.0
 Release:0
 Summary:freealut is a free implementation of OpenAL's ALUT standard
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  Development/Libraries/C and C++
 Url:http://connect.creativelabs.com/openal/default.aspx
 Source: %{name}-%{version}.tar.bz2
@@ -58,6 +58,8 @@
 %build
 %cmake \
   -DBUILD_STATIC=OFF \
+  -DWARNINGS=OFF \
+  -DOPTIMIZATION=OFF \
   -Wno-dev
 %make_jobs
 




commit freealut for openSUSE:Factory

2017-11-07 Thread root
Hello community,

here is the log from the commit of package freealut for openSUSE:Factory 
checked in at 2017-11-07 10:01:09

Comparing /work/SRC/openSUSE:Factory/freealut (Old)
 and  /work/SRC/openSUSE:Factory/.freealut.new (New)


Package is "freealut"

Tue Nov  7 10:01:09 2017 rev:21 rq:539223 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/freealut/freealut.changes2013-01-07 
15:11:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.freealut.new/freealut.changes   2017-11-07 
10:02:21.644805939 +0100
@@ -1,0 +2,6 @@
+Fri Nov  3 14:09:54 UTC 2017 - mplus...@suse.com
+
+- Switch to cmake build
+- Drop not needed freealut-noansiflag.patch
+
+---

Old:

  freealut-noansiflag.patch



Other differences:
--
++ freealut.spec ++
--- /var/tmp/diff_new_pack.6k4ibs/_old  2017-11-07 10:02:22.516774303 +0100
+++ /var/tmp/diff_new_pack.6k4ibs/_new  2017-11-07 10:02:22.520774158 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package freealut
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,8 +16,9 @@
 #
 
 
+%define sover   0
+%define lname   libalut%{sover}
 Name:   freealut
-%define lname  libalut0
 Version:1.1.0
 Release:0
 Summary:freealut is a free implementation of OpenAL's ALUT standard
@@ -26,31 +27,24 @@
 Url:http://connect.creativelabs.com/openal/default.aspx
 Source: %{name}-%{version}.tar.bz2
 Source2:baselibs.conf
-# PATCH-FIX-UPSTREAM freealut-noansiflag.patch
-Patch0: freealut-noansiflag.patch
-BuildRequires:  autoconf >= 2.60
-BuildRequires:  libtool
+BuildRequires:  cmake
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(openal)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 freealut is a free implementation of OpenAL's ALUT standard.
 
-%package -n %lname
+%package -n %{lname}
 Summary:freealut is a free implementation of OpenAL's ALUT standard
 Group:  System/Libraries
-# O/P added in 12.3
-Provides:   freealut = %{version}-%{release}
-Obsoletes:  freealut < %{version}-%{release}
 
-%description -n %lname
+%description -n %{lname}
 freealut is a free implementation of OpenAL's ALUT standard.
 
 %package devel
 Summary:Static libraries, header files and tests for openal library
 Group:  Development/Libraries/C and C++
-Requires:   %lname = %{version}
+Requires:   %{lname} = %{version}
 Requires:   glibc-devel
 
 %description devel
@@ -60,28 +54,28 @@
 
 %prep
 %setup -q
-%patch0
 
 %build
-autoreconf -fiv
-%configure --disable-static --with-pic
-make %{?_smp_mflags}
+%cmake \
+  -DBUILD_STATIC=OFF \
+  -Wno-dev
+%make_jobs
 
 %install
-make DESTDIR=%{buildroot} install
-rm %{buildroot}%{_libdir}/*.la
+%cmake_install
+# FIXME: should be fixed upstream
+%if %__isa_bits == 64
+mv %{buildroot}/usr/lib/ %{buildroot}/%{_libdir}
+%endif
 
-%post -n %lname -p /sbin/ldconfig
+%post -n %{lname} -p /sbin/ldconfig
+%postun -n %{lname} -p /sbin/ldconfig
 
-%postun -n %lname -p /sbin/ldconfig
-
-%files -n %lname
-%defattr(-,root,root)
+%files -n %{lname}
 %doc AUTHORS COPYING ChangeLog NEWS README
-%{_libdir}/libalut.so.0*
+%{_libdir}/libalut.so.%{sover}*
 
 %files devel
-%defattr(-,root,root)
 %{_bindir}/*-config
 %{_includedir}/AL
 %{_libdir}/libalut.so




commit freealut for openSUSE:Factory

2013-01-07 Thread h_root
Hello community,

here is the log from the commit of package freealut for openSUSE:Factory 
checked in at 2013-01-07 15:11:43

Comparing /work/SRC/openSUSE:Factory/freealut (Old)
 and  /work/SRC/openSUSE:Factory/.freealut.new (New)


Package is freealut, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/freealut/freealut.changes2012-11-28 
10:19:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.freealut.new/freealut.changes   2013-01-07 
15:11:44.0 +0100
@@ -1,0 +2,16 @@
+Sun Jan  6 19:30:35 UTC 2013 - reddw...@opensuse.org
+
+- Removed absurd libopenal1 BuildRequires
+- Use pkgconfig(openal) BuildRequires instead of the package name
+- Removed openal:/usr/include/AL/alut.h Provides from very old
+  package split
+- Delete manual -devel requirement specification since they are
+  added automatically through rpm/pkgconfig magic
+
+---
+Wed Dec 26 10:50:49 UTC 2012 - joop.boo...@opensuse.org
+
+- openal-devel is now called openal-soft-devel
+- cleaned the spec file a bit up
+
+---



Other differences:
--
++ freealut.spec ++
--- /var/tmp/diff_new_pack.9AjBl6/_old  2013-01-07 15:11:47.0 +0100
+++ /var/tmp/diff_new_pack.9AjBl6/_new  2013-01-07 15:11:47.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package freealut
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -20,19 +20,19 @@
 %define lname  libalut0
 Version:1.1.0
 Release:0
-Url:http://connect.creativelabs.com/openal/default.aspx
 Summary:freealut is a free implementation of OpenAL's ALUT standard
 License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
-
+Url:http://connect.creativelabs.com/openal/default.aspx
 Source: %{name}-%{version}.tar.bz2
 Source2:baselibs.conf
-Patch:  freealut-noansiflag.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# PATCH-FIX-UPSTREAM freealut-noansiflag.patch
+Patch0: freealut-noansiflag.patch
 BuildRequires:  autoconf = 2.60
 BuildRequires:  libtool
-BuildRequires:  openal-devel
 BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(openal)
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 freealut is a free implementation of OpenAL's ALUT standard.
@@ -41,8 +41,8 @@
 Summary:freealut is a free implementation of OpenAL's ALUT standard
 Group:  System/Libraries
 # O/P added in 12.3
-Provides:   freealut = %version-%release
-Obsoletes:  freealut  %version-%release
+Provides:   freealut = %{version}-%{release}
+Obsoletes:  freealut  %{version}-%{release}
 
 %description -n %lname
 freealut is a free implementation of OpenAL's ALUT standard.
@@ -50,10 +50,8 @@
 %package devel
 Summary:Static libraries, header files and tests for openal library
 Group:  Development/Libraries/C and C++
-Provides:   openal:/usr/include/AL/alut.h
-Requires:   %lname = %version
+Requires:   %lname = %{version}
 Requires:   glibc-devel
-Requires:   openal-devel
 
 %description devel
 OpenAL is an audio library designed in the spirit of OpenGL - machine
@@ -62,7 +60,7 @@
 
 %prep
 %setup -q
-%patch
+%patch0
 
 %build
 autoreconf -fiv
@@ -70,7 +68,7 @@
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install
+make DESTDIR=%{buildroot} install
 rm %{buildroot}%{_libdir}/*.la
 
 %post -n %lname -p /sbin/ldconfig
@@ -84,7 +82,7 @@
 
 %files devel
 %defattr(-,root,root)
-%{_prefix}/bin/*-config
+%{_bindir}/*-config
 %{_includedir}/AL
 %{_libdir}/libalut.so
 %{_libdir}/pkgconfig/*.pc

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit freealut for openSUSE:Factory

2012-11-28 Thread h_root
Hello community,

here is the log from the commit of package freealut for openSUSE:Factory 
checked in at 2012-11-28 10:19:42

Comparing /work/SRC/openSUSE:Factory/freealut (Old)
 and  /work/SRC/openSUSE:Factory/.freealut.new (New)


Package is freealut, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/freealut/freealut.changes2012-05-10 
14:31:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.freealut.new/freealut.changes   2012-11-28 
10:19:43.0 +0100
@@ -1,0 +2,8 @@
+Sun Nov 25 15:05:48 UTC 2012 - jeng...@inai.de
+
+- Employ shared library packaging guidelines
+- Parallel build with %_smp_mflags
+- Require pkgconfig so that automatic Provides work
+- Remove redundant sections/tags from specfile
+
+---



Other differences:
--
++ freealut.spec ++
--- /var/tmp/diff_new_pack.4yCY1h/_old  2012-11-28 10:19:45.0 +0100
+++ /var/tmp/diff_new_pack.4yCY1h/_new  2012-11-28 10:19:45.0 +0100
@@ -17,36 +17,41 @@
 
 
 Name:   freealut
-BuildRequires:  openal-devel
+%define lname  libalut0
 Version:1.1.0
 Release:0
 Url:http://connect.creativelabs.com/openal/default.aspx
 Summary:freealut is a free implementation of OpenAL's ALUT standard
 License:LGPL-2.1+
-Group:  System/Libraries
+Group:  Development/Libraries/C and C++
+
 Source: %{name}-%{version}.tar.bz2
 Source2:baselibs.conf
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Patch:  freealut-noansiflag.patch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  autoconf = 2.60
 BuildRequires:  libtool
+BuildRequires:  openal-devel
+BuildRequires:  pkgconfig
 
 %description
 freealut is a free implementation of OpenAL's ALUT standard.
 
+%package -n %lname
+Summary:freealut is a free implementation of OpenAL's ALUT standard
+Group:  System/Libraries
+# O/P added in 12.3
+Provides:   freealut = %version-%release
+Obsoletes:  freealut  %version-%release
 
-
-Authors:
-
-Steve Baker sjbak...@airmail.net
-Sven Panne sven.pa...@aedion.de
-Erik Hofman e...@ehofman.com
-Prakash Punnoor prak...@punnoor.de
+%description -n %lname
+freealut is a free implementation of OpenAL's ALUT standard.
 
 %package devel
 Summary:Static libraries, header files and tests for openal library
 Group:  Development/Libraries/C and C++
 Provides:   openal:/usr/include/AL/alut.h
-Requires:   %{name} = %{version}
+Requires:   %lname = %version
 Requires:   glibc-devel
 Requires:   openal-devel
 
@@ -55,35 +60,27 @@
 independent, cross platform, and data format neutral, with a clean,
 simple C-based API.
 
-
-
-Authors:
-
-Garin Hiebert ghieb...@creativelabs.com
-
 %prep
 %setup -q
 %patch
+
 %build
 autoreconf -fiv
 %configure --disable-static --with-pic
-make %{?jobs:-j %jobs}
+make %{?_smp_mflags}
 
 %install
 make DESTDIR=$RPM_BUILD_ROOT install
 rm %{buildroot}%{_libdir}/*.la
 
-%post -p /sbin/ldconfig
-
-%postun -p /sbin/ldconfig
+%post -n %lname -p /sbin/ldconfig
 
-%clean
-rm -rf $RPM_BUILD_ROOT
+%postun -n %lname -p /sbin/ldconfig
 
-%files
+%files -n %lname
 %defattr(-,root,root)
 %doc AUTHORS COPYING ChangeLog NEWS README
-%{_libdir}/libalut.so.*
+%{_libdir}/libalut.so.0*
 
 %files devel
 %defattr(-,root,root)

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.4yCY1h/_old  2012-11-28 10:19:45.0 +0100
+++ /var/tmp/diff_new_pack.4yCY1h/_new  2012-11-28 10:19:45.0 +0100
@@ -1 +1,3 @@
-freealut
+libalut0
+   provides freealut = %version-%release
+   obsoletes freealut  %version-%release

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit freealut for openSUSE:Factory

2012-05-10 Thread h_root
Hello community,

here is the log from the commit of package freealut for openSUSE:Factory 
checked in at 2012-05-10 14:31:44

Comparing /work/SRC/openSUSE:Factory/freealut (Old)
 and  /work/SRC/openSUSE:Factory/.freealut.new (New)


Package is freealut, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/freealut/freealut.changes2011-12-25 
17:34:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.freealut.new/freealut.changes   2012-05-10 
14:31:48.0 +0200
@@ -1,0 +2,5 @@
+Thu May 10 00:49:23 UTC 2012 - crrodrig...@opensuse.org
+
+- Do not use -ansi as default dialect. 
+
+---

New:

  freealut-noansiflag.patch



Other differences:
--
++ freealut.spec ++
--- /var/tmp/diff_new_pack.UUA07W/_old  2012-05-10 14:31:51.0 +0200
+++ /var/tmp/diff_new_pack.UUA07W/_new  2012-05-10 14:31:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package freealut
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -27,6 +27,8 @@
 Source: %{name}-%{version}.tar.bz2
 Source2:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Patch:  freealut-noansiflag.patch
+BuildRequires:  libtool
 
 %description
 freealut is a free implementation of OpenAL's ALUT standard.
@@ -44,7 +46,9 @@
 Summary:Static libraries, header files and tests for openal library
 Group:  Development/Libraries/C and C++
 Provides:   openal:/usr/include/AL/alut.h
-Requires:   %{name} = %{version} glibc-devel openal-devel
+Requires:   %{name} = %{version}
+Requires:   glibc-devel
+Requires:   openal-devel
 
 %description devel
 OpenAL is an audio library designed in the spirit of OpenGL - machine
@@ -59,8 +63,9 @@
 
 %prep
 %setup -q
-
+%patch
 %build
+autoreconf -fiv
 %configure --disable-static --with-pic
 make %{?jobs:-j %jobs}
 

++ freealut-noansiflag.patch ++
--- configure.ac.orig
+++ configure.ac
@@ -2,15 +2,16 @@
 # Process this file with autoconf to produce a configure script.
 

 
-AC_INIT([freealut library], [1.1.0], [openal-de...@opensource.creative.com], 
[freealut])
+AC_INIT([freealut 
library],[1.1.0],[openal-de...@opensource.creative.com],[freealut])
 AC_CONFIG_AUX_DIR([admin/autotools])
+AC_CONFIG_MACRO_DIR([admin/autotools/m4])
 AM_INIT_AUTOMAKE
-AC_PREREQ([2.56])
+AC_PREREQ([2.60])
 AC_CONFIG_SRCDIR([AUTHORS])
 AC_CONFIG_HEADERS([config.h])
 
 # Compatibility hack for older autoconf versions
-m4_ifdef([AS_HELP_STRING], [], [AC_DEFUN([AS_HELP_STRING], 
[AC_HELP_STRING($][@)])])
+m4_ifdef([AS_HELP_STRING], [], [AC_DEFUN([AS_HELP_STRING], 
[AS_HELP_STRING([$@])])])
 
 

 ## libtool shared library version.
@@ -55,16 +56,17 @@ AC_SUBST([VERSIONINFO], [$CURRENT:$REVI
 # Checks for programs.
 

 
-AC_PROG_CC
+AC_PROG_CC_STDC
+AC_USE_SYSTEM_EXTENSIONS
+AC_SYS_LARGEFILE
 AC_C_CONST
 ALUT_C__ATTRIBUTE__
+AM_PROG_CC_C_O
 
 # Note that -fvisibility=... support implies __attribute__((visibility(...))) 
 # support.
-ALUT_CHECK_FLAG([-fvisibility=hidden],
-[AM_CFLAGS=$AM_CFLAGS -fvisibility=hidden
- AC_DEFINE([HAVE_GCC_VISIBILITY], [1],
-   [Define to 1 if we are using a GCC with symbol 
visibility support.])])
+AM_CFLAGS=$AM_CFLAGS -fvisibility=hidden
+AC_DEFINE([HAVE_GCC_VISIBILITY], [1], [HAVE visibility support])
 
 # test_suite/test_retrostuff tests deprecated functions, but we don't want to
 # get compiler warnings because of that.
@@ -75,8 +77,7 @@ AM_CONDITIONAL([WNO_DEPRECATED_DECLARATI
[test x$alut_wno_deprecated_declarations = xyes])
 
 AC_EXEEXT
-AC_LIBTOOL_WIN32_DLL
-AC_PROG_LIBTOOL
+LT_INIT([win32-dll disable-static pic-only])
 AC_SUBST([LIBTOOL_DEPS])
 
 AC_DEFINE([ALUT_BUILD_LIBRARY], [1], [Define to 1 if you want to build the 
ALUT DLL.])
@@ -89,18 +90,6 @@ AC_SEARCH_LIBS([alGetError], [openal32 o
 # Checks for header files.
 

 
-# We could possibly need struct timespec and random(), which are not ANSI.
-AC_DEFINE([_XOPEN_SOURCE], [500], [Define to 500 if Single Unix conformance is 
wanted, 600 for sixth revision.])
-
-# We might need nanosleep, which is a POSIX IEEE Std 

commit freealut for openSUSE:Factory

2011-12-25 Thread h_root
Hello community,

here is the log from the commit of package freealut for openSUSE:Factory 
checked in at 2011-12-25 17:34:12

Comparing /work/SRC/openSUSE:Factory/freealut (Old)
 and  /work/SRC/openSUSE:Factory/.freealut.new (New)


Package is freealut, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/freealut/freealut.changes2011-09-23 
01:58:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.freealut.new/freealut.changes   2011-12-25 
17:34:13.0 +0100
@@ -1,0 +2,5 @@
+Tue Dec 20 20:29:15 UTC 2011 - co...@suse.com
+
+- remove call to suse_update_config (very old work around)
+
+---



Other differences:
--
++ freealut.spec ++
--- /var/tmp/diff_new_pack.fiwKJp/_old  2011-12-25 17:34:13.0 +0100
+++ /var/tmp/diff_new_pack.fiwKJp/_new  2011-12-25 17:34:13.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package freealut (Version 1.1.0)
+# spec file for package freealut
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,18 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   freealut
 BuildRequires:  openal-devel
-License:LGPL-2.1+
-Group:  System/Libraries
-AutoReqProv:on
 Version:1.1.0
-Release:210
+Release:0
 Url:http://connect.creativelabs.com/openal/default.aspx
 Summary:freealut is a free implementation of OpenAL's ALUT standard
+License:LGPL-2.1+
+Group:  System/Libraries
 Source: %{name}-%{version}.tar.bz2
 Source2:baselibs.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -44,11 +41,10 @@
 Prakash Punnoor prak...@punnoor.de
 
 %package devel
-License:LGPL-2.1+
 Summary:Static libraries, header files and tests for openal library
+Group:  Development/Libraries/C and C++
 Provides:   openal:/usr/include/AL/alut.h
 Requires:   %{name} = %{version} glibc-devel openal-devel
-Group:  Development/Libraries/C and C++
 
 %description devel
 OpenAL is an audio library designed in the spirit of OpenGL - machine
@@ -65,7 +61,6 @@
 %setup -q
 
 %build
-%{?suse_update_config:%{suse_update_config -f linux}}
 %configure --disable-static --with-pic
 make %{?jobs:-j %jobs}
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit freealut for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package freealut for openSUSE:Factory 
checked in at 2011-12-06 18:10:03

Comparing /work/SRC/openSUSE:Factory/freealut (Old)
 and  /work/SRC/openSUSE:Factory/.freealut.new (New)


Package is freealut, Maintainer is sbra...@suse.com

Changes:




Other differences:
--
++ freealut.spec ++
--- /var/tmp/diff_new_pack.rA7gYO/_old  2011-12-06 18:15:07.0 +0100
+++ /var/tmp/diff_new_pack.rA7gYO/_new  2011-12-06 18:15:07.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   freealut
 BuildRequires:  openal-devel
-License:LGPLv2.1+
+License:LGPL-2.1+
 Group:  System/Libraries
 AutoReqProv:on
 Version:1.1.0
@@ -44,7 +44,7 @@
 Prakash Punnoor prak...@punnoor.de
 
 %package devel
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:Static libraries, header files and tests for openal library
 Provides:   openal:/usr/include/AL/alut.h
 Requires:   %{name} = %{version} glibc-devel openal-devel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org