OBS User unknown 2008-03-14 16:46:53 +00:00 committed by Git OBS Bridge
parent 3644d8d497
commit c31dfd3da0
5 changed files with 15 additions and 27 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3fcdcd043067859830eef9b1bfea86f5cfc95c488b03cbd4b93a3a8bcf4cfebb
size 14818046

3
kst-1.5.0.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c5f577ce5d69d86b9a79c5370c51cabb0f6bb974efb6af93fa40c05ae8311fb7
size 15374437

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Mar 14 12:20:35 CET 2008 - dmueller@suse.de
- fixed specfile
-------------------------------------------------------------------
Thu Mar 13 17:59:53 CET 2008 - dmueller@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package kst (Version 1.4.0)
# spec file for package kst (Version 1.5.0)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -20,13 +20,12 @@ BuildRequires: fdupes
License: GPL v2 or later
Group: Productivity/Graphics/Visualization/Graph
Summary: Real-Time Data Viewing and Plotting Tool with Basic Data Analysis Functionality
Version: 1.4.0
Release: 87
Version: 1.5.0
Release: 1
Url: http://extragear.kde.org/apps/kst/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: %name-%version.tar.bz2
Patch: FIXME.diff
Patch1: r703517.diff
Patch2: kst-gplv3-relicense.diff
Requires: %{name}-lang = %{version}
@ -104,8 +103,9 @@ Authors:
%prep
%setup -q
%patch
%patch1
pushd kst
%patch2
popd
. /etc/opt/kde3/common_options
update_admin --no-unsermake
@ -162,6 +162,8 @@ rm -rf ${RPM_BUILD_ROOT}
/opt/kde3/share/config/colors
%changelog
* Fri Mar 14 2008 dmueller@suse.de
- fixed specfile
* Thu Mar 13 2008 dmueller@suse.de
- update to 1.5.0:
* Fast real-time display and manipulation of streaming data

View File

@ -1,19 +0,0 @@
------------------------------------------------------------------------
r703517 | wiebe | 2007-08-22 20:33:03 +0200 (Wed, 22 Aug 2007) | 4 lines
Apply Matt's patch to supply the third argument to open to allow compilation
with gcc -D_FORTIFY_SOURCE=2
------------------------------------------------------------------------
--- kst/src/datasources/dirfile/getdata.c
+++ kst/src/datasources/dirfile/getdata.c
@@ -2252,7 +2252,7 @@ static int DoIfRawOut(struct FormatType
return(1);
}
}else{
- R->fp = open(datafilename, O_RDWR | O_CREAT);
+ R->fp = open(datafilename, O_RDWR | O_CREAT, 0644);
if (R->fp < 0) {
*n_write = 0;
*error_code = PD_E_OPEN_RAWFIELD;