rpms/stormbaancoureur/F-8 stormbaancoureur-2.0.0-pulseaudio.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 stormbaancoureur.desktop, 1.2, 1.3 stormbaancoureur.spec, 1.5, 1.6
by fedora-extras-commitsï¼ redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/stormbaancoureur/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15278
Modified Files:
.cvsignore sources stormbaancoureur.desktop
stormbaancoureur.spec
Added Files:
stormbaancoureur-2.0.0-pulseaudio.patch
Log Message:
* Mon Dec 31 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0.0-1
- New upstream release 2.0.0
- Fix sound when using pulseaudio
stormbaancoureur-2.0.0-pulseaudio.patch:
--- NEW FILE stormbaancoureur-2.0.0-pulseaudio.patch ---
--- stormbaancoureur-2.0.0/src-common/soundenginealsa.cxx 2007-10-13 19:38:04.000000000 +0200
+++ stormbaancoureur-2.0.0.new/src-common/soundenginealsa.cxx 2007-12-31 23:15:47.000000000 +0100
@@ -89,8 +90,11 @@
}
snd_pcm_uframes_t frames = framelag;
- snd_pcm_hw_params_set_period_size_near(handle, params, &frames, &dir);
+ snd_pcm_hw_params_set_buffer_size_near(handle, params, &frames);
+ frames = framelag / 10;
+ snd_pcm_hw_params_set_period_size_near(handle, params, &frames, NULL);
+
/* Write the parameters to the driver */
rc = snd_pcm_hw_params(handle, params);
if (rc < 0)
@@ -99,8 +103,8 @@
return;
}
snd_pcm_hw_params_get_period_size(params, &periodsz, &dir);
- batchsize = (int) ceilf(framelag / (float) periodsz);
- fprintf(stderr,"soundenginealsa.cxx: requested period %d, got period %d, use batchsize %d\n", framelag, (int) periodsz, batchsize);
+ batchsize = (int) ceilf((framelag/10) / (float) periodsz);
+ fprintf(stderr,"soundenginealsa.cxx: requested period %d, got period %d, use batchsize %d\n", framelag/10, (int) periodsz, batchsize);
simplefeed = new SoundFeedSimple(periodsz);
complexfeed = new SoundFeedComplex(periodsz);
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/stormbaancoureur/F-8/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore 18 Oct 2007 13:55:55 -0000 1.8
+++ .cvsignore 31 Dec 2007 23:13:53 -0000 1.9
@@ -1 +1 @@
-stormbaancoureur-1.5.3.tar.gz
+stormbaancoureur-2.0.0.tar.gz
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/stormbaancoureur/F-8/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources 18 Oct 2007 13:55:55 -0000 1.8
+++ sources 31 Dec 2007 23:13:53 -0000 1.9
@@ -1 +1 @@
-fa8890941964cf7144367a4f53a4da85 stormbaancoureur-1.5.3.tar.gz
+2d20b536c7616c74376b277132bd09c9 stormbaancoureur-2.0.0.tar.gz
Index: stormbaancoureur.desktop
===================================================================
RCS file: /cvs/extras/rpms/stormbaancoureur/F-8/stormbaancoureur.desktop,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- stormbaancoureur.desktop 25 Sep 2007 07:07:22 -0000 1.2
+++ stormbaancoureur.desktop 31 Dec 2007 23:13:53 -0000 1.3
@@ -1,9 +1,8 @@
[Desktop Entry]
-Encoding=UTF-8
Name=Stormbaan Coureur
Comment=Simulated obstacle course for automobiles
Exec=stormbaancoureur-wrapper
-Icon=stormbaancoureur.png
+Icon=stormbaancoureur
Terminal=false
StartupNotify=false
Type=Application
Index: stormbaancoureur.spec
===================================================================
RCS file: /cvs/extras/rpms/stormbaancoureur/F-8/stormbaancoureur.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- stormbaancoureur.spec 18 Oct 2007 13:55:55 -0000 1.5
+++ stormbaancoureur.spec 31 Dec 2007 23:13:53 -0000 1.6
@@ -1,5 +1,5 @@
Name: stormbaancoureur
-Version: 1.5.3
+Version: 2.0.0
Release: 1%{?dist}
Summary: Simulated obstacle course for automobiles
Group: Amusements/Games
@@ -9,6 +9,7 @@
Source1: %{name}.desktop
Source2: sturmbahnfahrer.png
Patch0: stormbaancoureur-1.5.3-no-static-ode.patch
+Patch1: stormbaancoureur-2.0.0-pulseaudio.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: plib-devel ode-devel freeglut-devel desktop-file-utils
BuildRequires: alsa-lib-devel
@@ -25,6 +26,7 @@
%prep
%setup -q
%patch0 -p1
+%patch1 -p1
sed -i 's|/usr/share/games/%{name}|%{_datadir}/%{name}|' src-%{name}/main.cxx
@@ -88,6 +90,10 @@
%changelog
+* Mon Dec 31 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0.0-1
+- New upstream release 2.0.0
+- Fix sound when using pulseaudio
+
* Thu Oct 18 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 1.5.3-1
- New upstream bugfix release 1.5.3
15Â years, 8Â months
rpms/stormbaancoureur/devel stormbaancoureur.desktop,1.2,1.3
by fedora-extras-commitsï¼ redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/stormbaancoureur/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15240
Modified Files:
stormbaancoureur.desktop
Log Message:
* Mon Dec 31 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0.0-1
- New upstream release 2.0.0
- Fix sound when using pulseaudio
Index: stormbaancoureur.desktop
===================================================================
RCS file: /cvs/extras/rpms/stormbaancoureur/devel/stormbaancoureur.desktop,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- stormbaancoureur.desktop 25 Sep 2007 07:07:22 -0000 1.2
+++ stormbaancoureur.desktop 31 Dec 2007 23:13:07 -0000 1.3
@@ -1,9 +1,8 @@
[Desktop Entry]
-Encoding=UTF-8
Name=Stormbaan Coureur
Comment=Simulated obstacle course for automobiles
Exec=stormbaancoureur-wrapper
-Icon=stormbaancoureur.png
+Icon=stormbaancoureur
Terminal=false
StartupNotify=false
Type=Application
15Â years, 8Â months
rpms/stormbaancoureur/devel stormbaancoureur-2.0.0-pulseaudio.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 stormbaancoureur.spec, 1.5, 1.6
by fedora-extras-commitsï¼ redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/stormbaancoureur/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15140
Modified Files:
.cvsignore sources stormbaancoureur.spec
Added Files:
stormbaancoureur-2.0.0-pulseaudio.patch
Log Message:
* Mon Dec 31 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0.0-1
- New upstream release 2.0.0
- Fix sound when using pulseaudio
stormbaancoureur-2.0.0-pulseaudio.patch:
--- NEW FILE stormbaancoureur-2.0.0-pulseaudio.patch ---
--- stormbaancoureur-2.0.0/src-common/soundenginealsa.cxx 2007-10-13 19:38:04.000000000 +0200
+++ stormbaancoureur-2.0.0.new/src-common/soundenginealsa.cxx 2007-12-31 23:15:47.000000000 +0100
@@ -89,8 +90,11 @@
}
snd_pcm_uframes_t frames = framelag;
- snd_pcm_hw_params_set_period_size_near(handle, params, &frames, &dir);
+ snd_pcm_hw_params_set_buffer_size_near(handle, params, &frames);
+ frames = framelag / 10;
+ snd_pcm_hw_params_set_period_size_near(handle, params, &frames, NULL);
+
/* Write the parameters to the driver */
rc = snd_pcm_hw_params(handle, params);
if (rc < 0)
@@ -99,8 +103,8 @@
return;
}
snd_pcm_hw_params_get_period_size(params, &periodsz, &dir);
- batchsize = (int) ceilf(framelag / (float) periodsz);
- fprintf(stderr,"soundenginealsa.cxx: requested period %d, got period %d, use batchsize %d\n", framelag, (int) periodsz, batchsize);
+ batchsize = (int) ceilf((framelag/10) / (float) periodsz);
+ fprintf(stderr,"soundenginealsa.cxx: requested period %d, got period %d, use batchsize %d\n", framelag/10, (int) periodsz, batchsize);
simplefeed = new SoundFeedSimple(periodsz);
complexfeed = new SoundFeedComplex(periodsz);
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/stormbaancoureur/devel/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore 18 Oct 2007 13:55:55 -0000 1.8
+++ .cvsignore 31 Dec 2007 23:12:02 -0000 1.9
@@ -1 +1 @@
-stormbaancoureur-1.5.3.tar.gz
+stormbaancoureur-2.0.0.tar.gz
15Â years, 8Â months
rpms/PyOpenGL/devel .cvsignore, 1.2, 1.3 PyOpenGL.spec, 1.3, 1.4 sources, 1.2, 1.3
by fedora-extras-commitsï¼ redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/PyOpenGL/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15132
Modified Files:
.cvsignore PyOpenGL.spec sources
Log Message:
* Mon Dec 31 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 3.0.0-0.5.b1
- New upstream release 3.0.0b1
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/PyOpenGL/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 2 Apr 2007 05:24:57 -0000 1.2
+++ .cvsignore 31 Dec 2007 23:12:00 -0000 1.3
@@ -1 +1 @@
-PyOpenGL-3.0.0a6.tar.gz
+PyOpenGL-3.0.0b1.tar.gz
Index: PyOpenGL.spec
===================================================================
RCS file: /cvs/extras/rpms/PyOpenGL/devel/PyOpenGL.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- PyOpenGL.spec 30 Aug 2007 06:54:55 -0000 1.3
+++ PyOpenGL.spec 31 Dec 2007 23:12:00 -0000 1.4
@@ -1,9 +1,9 @@
-%define prever a6
+%define prever b1
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Name: PyOpenGL
Version: 3.0.0
-Release: 0.4.%{prever}%{?dist}
+Release: 0.5.%{prever}%{?dist}
Summary: Python bindings for OpenGL
License: BSD
Group: System Environment/Libraries
@@ -59,6 +59,7 @@
rm -rf $RPM_BUILD_ROOT
python setup.py install -O1 --skip-build --root="$RPM_BUILD_ROOT" \
--prefix="%{_prefix}" --single-version-externally-managed
+chmod -x $RPM_BUILD_ROOT%{python_sitelib}/%{name}-%{version}%{prever}-py2.5.egg-info/*
# don't package the tests files
rm -r $RPM_BUILD_ROOT%{python_sitelib}/OpenGL/tests
# for %%doc
@@ -85,8 +86,11 @@
%changelog
+* Mon Dec 31 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 3.0.0-0.5.b1
+- New upstream release 3.0.0b1
+
* Thu Aug 30 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 3.0.0-0.4.a6
-- Change BuildRequiresL python-setuptools to python-setuptools-devel for
+- Change BuildRequires python-setuptools to python-setuptools-devel for
the python-setuptools package split
* Fri Apr 13 2007 Hans de Goede <j.w.r.degoede(a)hhs.nl> 3.0.0-0.3.a6
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/PyOpenGL/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 2 Apr 2007 05:24:57 -0000 1.2
+++ sources 31 Dec 2007 23:12:00 -0000 1.3
@@ -1 +1 @@
-9cc61f382c8a97d5697608de18caaddb PyOpenGL-3.0.0a6.tar.gz
+8a5536e4ec9fd4eddcc5bd954096205f PyOpenGL-3.0.0b1.tar.gz
15Â years, 8Â months
rpms/selinux-policy/F-8 policy-20070703.patch,1.164,1.165
by fedora-extras-commitsï¼ redhat.com
Author: dwalsh
Update of /cvs/extras/rpms/selinux-policy/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv8248
Modified Files:
policy-20070703.patch
Log Message:
* Mon Dec 31 2007 Dan Walsh <dwalsh(a)redhat.com> 3.0.8-73
- Fix specification for clamav and clamd log files
policy-20070703.patch:
Index: policy-20070703.patch
===================================================================
RCS file: /cvs/extras/rpms/selinux-policy/F-8/policy-20070703.patch,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- policy-20070703.patch 31 Dec 2007 22:39:38 -0000 1.164
+++ policy-20070703.patch 31 Dec 2007 22:53:38 -0000 1.165
@@ -13699,7 +13699,7 @@
diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/spamassassin.if serefpolicy-3.0.8/policy/modules/services/spamassassin.if
--- nsaserefpolicy/policy/modules/services/spamassassin.if 2007-10-22 13:21:39.000000000 -0400
-+++ serefpolicy-3.0.8/policy/modules/services/spamassassin.if 2007-12-26 18:17:32.000000000 -0500
++++ serefpolicy-3.0.8/policy/modules/services/spamassassin.if 2007-12-31 17:49:25.000000000 -0500
@@ -286,6 +286,12 @@
userdom_manage_user_home_content_symlinks($1,spamd_t)
')
@@ -13717,7 +13717,7 @@
')
files_search_var_lib($1)
-+ read_dirs_pattern($1,spamd_var_lib_t,spamd_var_lib_t)
++ list_dirs_pattern($1,spamd_var_lib_t,spamd_var_lib_t)
read_files_pattern($1,spamd_var_lib_t,spamd_var_lib_t)
')
15Â years, 8Â months
rpms/nexcontrol/F-8 nexcontrol.spec,NONE,1.1 sources,1.1,1.2
by fedora-extras-commitsï¼ redhat.com
Author: mmahut
Update of /cvs/pkgs/rpms/nexcontrol/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv8060
Modified Files:
sources
Added Files:
nexcontrol.spec
Log Message:
Initial import.
--- NEW FILE nexcontrol.spec ---
Name: nexcontrol
Version: 0.2
Release: 1%{?dist}
Summary: Software to control your Celestron NexStar Telescope
License: GPLv2+
Group: Applications/Communications
URL: http://www.mybrainhurts.com/projects/nexcontrol/
Source0: http://www.mybrainhurts.com/projects/nexcontrol/%{name}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
%description
NexControl is a perl code to interface with
the NexStar series of scopes from Celestron.
%prep
%setup -q
%build
%install
rm -rf $RPM_BUILD_ROOT
install -Dpm 755 nexcontrol.pl $RPM_BUILD_ROOT%{_bindir}/nexcontrol
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc LICENSE README
%{_bindir}/nexcontrol
%changelog
* Mon Dec 31 2007 Marek Mahut <mmahut(a)fedoraproject.org> - 0.2-1
- Initial release.
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/nexcontrol/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 31 Dec 2007 18:06:35 -0000 1.1
+++ sources 31 Dec 2007 22:43:21 -0000 1.2
@@ -0,0 +1 @@
+7eba08240de22d2baf794b00d9731440 nexcontrol.tar.gz
15Â years, 8Â months
rpms/nexcontrol/devel nexcontrol.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by fedora-extras-commitsï¼ redhat.com
Author: mmahut
Update of /cvs/pkgs/rpms/nexcontrol/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv7982/devel
Modified Files:
.cvsignore sources
Added Files:
nexcontrol.spec
Log Message:
Initial import
--- NEW FILE nexcontrol.spec ---
Name: nexcontrol
Version: 0.2
Release: 1%{?dist}
Summary: Software to control your Celestron NexStar Telescope
License: GPLv2+
Group: Applications/Communications
URL: http://www.mybrainhurts.com/projects/nexcontrol/
Source0: http://www.mybrainhurts.com/projects/nexcontrol/%{name}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
%description
NexControl is a perl code to interface with
the NexStar series of scopes from Celestron.
%prep
%setup -q
%build
%install
rm -rf $RPM_BUILD_ROOT
install -Dpm 755 nexcontrol.pl $RPM_BUILD_ROOT%{_bindir}/nexcontrol
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc LICENSE README
%{_bindir}/nexcontrol
%changelog
* Mon Dec 31 2007 Marek Mahut <mmahut(a)fedoraproject.org> - 0.2-1
- Initial release.
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/nexcontrol/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 31 Dec 2007 18:06:35 -0000 1.1
+++ .cvsignore 31 Dec 2007 22:41:16 -0000 1.2
@@ -0,0 +1 @@
+nexcontrol.tar.gz
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/nexcontrol/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 31 Dec 2007 18:06:35 -0000 1.1
+++ sources 31 Dec 2007 22:41:16 -0000 1.2
@@ -0,0 +1 @@
+7eba08240de22d2baf794b00d9731440 nexcontrol.tar.gz
15Â years, 8Â months
rpms/tetex-elsevier/EL-4 tetex-elsevier.spec,1.3,1.4
by fedora-extras-commitsï¼ redhat.com
Author: pertusus
Update of /cvs/extras/rpms/tetex-elsevier/EL-4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv7952
Modified Files:
tetex-elsevier.spec
Log Message:
add a BR tetex-lineno
Index: tetex-elsevier.spec
===================================================================
RCS file: /cvs/extras/rpms/tetex-elsevier/EL-4/tetex-elsevier.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tetex-elsevier.spec 28 Dec 2007 14:00:41 -0000 1.3
+++ tetex-elsevier.spec 31 Dec 2007 22:40:36 -0000 1.4
@@ -4,7 +4,7 @@
# upstream is unversionned, the version is constructed with the latest
# file timestamp, in the format YYYYMMDD
Version: 0.1.20071024
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: Elsevier LaTeX style files and documentation
Group: Applications/Publishing
@@ -27,7 +27,7 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Buildarch: noarch
-BuildRequires: tetex-latex
+BuildRequires: tetex-latex tetex-lineno
Requires: tetex-latex
@@ -79,7 +79,7 @@
%changelog
-* Fri Dec 28 2007 Patrice Dumas <pertusus(a)free.fr> 0.1.20071024-1
+* Fri Dec 28 2007 Patrice Dumas <pertusus(a)free.fr> 0.1.20071024-1.1
- update to the new version
- correct urls
- build the manuals
15Â years, 8Â months
rpms/selinux-policy/F-8 policy-20070703.patch,1.163,1.164
by fedora-extras-commitsï¼ redhat.com
Author: dwalsh
Update of /cvs/extras/rpms/selinux-policy/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv7847
Modified Files:
policy-20070703.patch
Log Message:
* Mon Dec 31 2007 Dan Walsh <dwalsh(a)redhat.com> 3.0.8-73
- Fix specification for clamav and clamd log files
policy-20070703.patch:
Index: policy-20070703.patch
===================================================================
RCS file: /cvs/extras/rpms/selinux-policy/F-8/policy-20070703.patch,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- policy-20070703.patch 31 Dec 2007 22:31:33 -0000 1.163
+++ policy-20070703.patch 31 Dec 2007 22:39:38 -0000 1.164
@@ -16347,7 +16347,7 @@
+')
diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/init.te serefpolicy-3.0.8/policy/modules/system/init.te
--- nsaserefpolicy/policy/modules/system/init.te 2007-10-22 13:21:40.000000000 -0400
-+++ serefpolicy-3.0.8/policy/modules/system/init.te 2007-12-31 09:16:41.000000000 -0500
++++ serefpolicy-3.0.8/policy/modules/system/init.te 2007-12-31 17:39:13.000000000 -0500
@@ -10,6 +10,20 @@
# Declarations
#
@@ -16411,7 +16411,7 @@
userdom_shell_domtrans_sysadm(init_t)
+',`
+ optional_policy(`
-+ unconfined_shel_domtrans(init_t)
++ unconfined_shell_domtrans(init_t)
+ unconfined_domain(init_t)
+ ')
')
15Â years, 8Â months
rpms/selinux-policy/devel policy-20071130.patch,1.24,1.25
by fedora-extras-commitsï¼ redhat.com
Author: dwalsh
Update of /cvs/extras/rpms/selinux-policy/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv7726
Modified Files:
policy-20071130.patch
Log Message:
* Mon Dec 31 2007 Dan Walsh <dwalsh(a)redhat.com> 3.2.5-7
- Fix munin log,
- Eliminate duplicate mozilla file context
- fix wpa_supplicant spec
policy-20071130.patch:
Index: policy-20071130.patch
===================================================================
RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-20071130.patch,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- policy-20071130.patch 31 Dec 2007 21:47:39 -0000 1.24
+++ policy-20071130.patch 31 Dec 2007 22:34:58 -0000 1.25
@@ -9113,7 +9113,7 @@
# Fix pptp sockets
diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/ppp.te serefpolicy-3.2.5/policy/modules/services/ppp.te
--- nsaserefpolicy/policy/modules/services/ppp.te 2007-12-19 05:32:17.000000000 -0500
-+++ serefpolicy-3.2.5/policy/modules/services/ppp.te 2007-12-31 08:54:45.000000000 -0500
++++ serefpolicy-3.2.5/policy/modules/services/ppp.te 2007-12-31 17:30:15.000000000 -0500
@@ -162,6 +162,8 @@
init_read_utmp(pppd_t)
init_dontaudit_write_utmp(pppd_t)
@@ -9137,7 +9137,7 @@
-
-optional_policy(`
- nscd_socket_use(pppd_t)
-+ NetworkManager_signal(pppd_t)
++ networkmanager_signal(pppd_t)
')
optional_policy(`
15Â years, 8Â months