forked from pool/rrdtool
This commit is contained in:
parent
82b2a31005
commit
b1401e84e1
@ -1,11 +0,0 @@
|
|||||||
--- bindings/python/setup.py
|
|
||||||
+++ bindings/python/setup.py
|
|
||||||
@@ -48,7 +48,7 @@
|
|
||||||
"rrdtoolmodule",
|
|
||||||
["rrdtoolmodule.c"],
|
|
||||||
libraries=['rrd'],
|
|
||||||
- runtime_library_dirs=[library_dir],
|
|
||||||
+# runtime_library_dirs=[library_dir],
|
|
||||||
library_dirs=[library_dir],
|
|
||||||
include_dirs=[include_dir],
|
|
||||||
)
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fd820918dad6dc4e96c9aae4d8c57f4e9e473cd523238d15da49bff79be3e15e
|
|
||||||
size 787130
|
|
3
rrdtool-1.2.27.tar.bz2
Normal file
3
rrdtool-1.2.27.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e4e270083a7ac26969bff5304dea6729c10710922e0098ad6cc7a163f76dcbb4
|
||||||
|
size 806581
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 10 15:03:46 CET 2008 - anicka@suse.cz
|
||||||
|
|
||||||
|
- update to 1.2.27
|
||||||
|
* bindings/ruby/main.c: be more helpful when raising rb_eTypeError
|
||||||
|
in string_arr string_arr_new(VALUE rb_strings).
|
||||||
|
* src/rrd_update.c: dropping cache after update does not help (in
|
||||||
|
this implementation)
|
||||||
|
* bindings/Makefile.am, bindings/python/setup.py: yet another
|
||||||
|
attempt to make the python build environment REALY cool
|
||||||
|
* bindings/Makefile.am, bindings/python/setup.py: make sure the
|
||||||
|
python extension gets the final resting place of the rrdlibrary
|
||||||
|
compiled in ...
|
||||||
|
* src/rrd_graph.c: don't use round since it is c99 ... use
|
||||||
|
floor(x+0.5) for positive numbers instead.
|
||||||
|
* src/rrd_graph.c: added some more rounding for int to float
|
||||||
|
comparisons
|
||||||
|
* src/rrd_graph.c: Testing an double and an integer for equality is
|
||||||
|
bound to produce odd results on times. Don't do it! --
|
||||||
|
* bugfixes, documentation fixes
|
||||||
|
- remove python patch (fixed in upstream)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 20 16:35:44 CET 2008 - dmueller@suse.de
|
Wed Feb 20 16:35:44 CET 2008 - dmueller@suse.de
|
||||||
|
|
||||||
|
29
rrdtool.spec
29
rrdtool.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package rrdtool (Version 1.2.23)
|
# spec file for package rrdtool (Version 1.2.27)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -17,13 +17,12 @@ License: GPL v2 or later
|
|||||||
Group: Productivity/Scientific/Math
|
Group: Productivity/Scientific/Math
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Requires: perl = %{perl_version}
|
Requires: perl = %{perl_version}
|
||||||
Version: 1.2.23
|
Version: 1.2.27
|
||||||
Release: 87
|
Release: 1
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
Source1: cgilib-0.5.tar.bz2
|
Source1: cgilib-0.5.tar.bz2
|
||||||
Patch: %{name}-%{version}-ssize.diff
|
Patch: %{name}-%{version}-ssize.diff
|
||||||
Patch1: %{name}-%{version}-python.diff
|
Url: http://oss.oetiker.ch/rrdtool/
|
||||||
Url: http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Summary: A tool for data logging and analysis
|
Summary: A tool for data logging and analysis
|
||||||
Requires: dejavu
|
Requires: dejavu
|
||||||
@ -43,7 +42,6 @@ Authors:
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -a1
|
%setup -q -a1
|
||||||
%patch
|
%patch
|
||||||
%patch1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# first prepare cgilib
|
# first prepare cgilib
|
||||||
@ -189,6 +187,25 @@ Authors:
|
|||||||
%{py_sitedir}/*
|
%{py_sitedir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Mar 10 2008 anicka@suse.cz
|
||||||
|
- update to 1.2.27
|
||||||
|
* bindings/ruby/main.c: be more helpful when raising rb_eTypeError
|
||||||
|
in string_arr string_arr_new(VALUE rb_strings).
|
||||||
|
* src/rrd_update.c: dropping cache after update does not help (in
|
||||||
|
this implementation)
|
||||||
|
* bindings/Makefile.am, bindings/python/setup.py: yet another
|
||||||
|
attempt to make the python build environment REALY cool
|
||||||
|
* bindings/Makefile.am, bindings/python/setup.py: make sure the
|
||||||
|
python extension gets the final resting place of the rrdlibrary
|
||||||
|
compiled in ...
|
||||||
|
* src/rrd_graph.c: don't use round since it is c99 ... use
|
||||||
|
floor(x+0.5) for positive numbers instead.
|
||||||
|
* src/rrd_graph.c: added some more rounding for int to float
|
||||||
|
comparisons
|
||||||
|
* src/rrd_graph.c: Testing an double and an integer for equality is
|
||||||
|
bound to produce odd results on times. Don't do it! --
|
||||||
|
* bugfixes, documentation fixes
|
||||||
|
- remove python patch (fixed in upstream)
|
||||||
* Wed Feb 20 2008 dmueller@suse.de
|
* Wed Feb 20 2008 dmueller@suse.de
|
||||||
- make dejavu font requirement unversioned again, as
|
- make dejavu font requirement unversioned again, as
|
||||||
there was no released openSUSE distro with the wrongly
|
there was no released openSUSE distro with the wrongly
|
||||||
|
Loading…
x
Reference in New Issue
Block a user