Projects
mass
atmos
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 22
View file
atmos.changes
Changed
@@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Wed Apr 26 07:48:52 UTC 2017 - matwey@sai.msu.ru + +- Version 2.97.9 + +------------------------------------------------------------------- Sun Jan 8 15:09:39 UTC 2017 - matwey@sai.msu.ru - Version 2.97.8
View file
atmos.spec
Changed
@@ -21,7 +21,7 @@ License: GPL-3.0+ Group: Productivity/Scientific/Astronomy Name: atmos -Version: 2.97.8 +Version: 2.97.9 Release: 0 Url: http://curl.sai.msu.ru/~matwey/atmos Source: http://curl.sai.msu.ru/pub/%{name}/%{name}-%{version}.tar.gz
View file
atmos-2.97.8.tar.gz/configure -> atmos-2.97.9.tar.gz/configure
Changed
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for atmos 2.97.8. +# Generated by GNU Autoconf 2.69 for atmos 2.97.9. # # Report bugs to <mass-general@curl.sai.msu.ru>. # @@ -580,8 +580,8 @@ # Identity of this package. PACKAGE_NAME='atmos' PACKAGE_TARNAME='atmos' -PACKAGE_VERSION='2.97.8' -PACKAGE_STRING='atmos 2.97.8' +PACKAGE_VERSION='2.97.9' +PACKAGE_STRING='atmos 2.97.9' PACKAGE_BUGREPORT='mass-general@curl.sai.msu.ru' PACKAGE_URL='' @@ -1273,7 +1273,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures atmos 2.97.8 to adapt to many kinds of systems. +\`configure' configures atmos 2.97.9 to adapt to many kinds of systems. Usage: $0 OPTION... VAR=VALUE... @@ -1339,7 +1339,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of atmos 2.97.8:";; + short | recursive ) echo "Configuration of atmos 2.97.9:";; esac cat <<\_ACEOF @@ -1433,7 +1433,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -atmos configure 2.97.8 +atmos configure 2.97.9 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1735,7 +1735,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by atmos $as_me 2.97.8, which was +It was created by atmos $as_me 2.97.9, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2598,7 +2598,7 @@ # Define the identity of the package. PACKAGE='atmos' - VERSION='2.97.8' + VERSION='2.97.9' cat >>confdefs.h <<_ACEOF @@ -4665,7 +4665,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by atmos $as_me 2.97.8, which was +This file was extended by atmos $as_me 2.97.9, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -4731,7 +4731,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/\\""\`\$/\\\\&/g'`" ac_cs_version="\\ -atmos config.status 2.97.8 +atmos config.status 2.97.9 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\"
View file
atmos-2.97.8.tar.gz/configure.in -> atmos-2.97.9.tar.gz/configure.in
Changed
@@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(atmos, 2.97.8, mass-general@curl.sai.msu.ru) +AC_INIT(atmos, 2.97.9, mass-general@curl.sai.msu.ru) AM_INIT_AUTOMAKE() AC_CONFIG_HEADERS(src/config.h) AC_CONFIG_SRCDIR(src/atmos.h)
View file
atmos-2.97.8.tar.gz/src/file_input.cpp -> atmos-2.97.9.tar.gz/src/file_input.cpp
Changed
@@ -1,5 +1,5 @@ /* - $Id: file_input.cpp 276 2012-02-22 10:59:50Z matwey $ + $Id: file_input.cpp 301 2017-04-26 07:39:45Z matwey $ Copyright (C) 2009 Sternberg Astronomical Institute, MSU This program is free software: you can redistribute it and/or modify @@ -128,6 +128,7 @@ } else if ( stm.str().find("Flux") != std::string::npos ) { on_flux( timestamp ); } else { // unknown mode + on_unknown_mode( timestamp ); throw failure("Unknown mode"); } }
View file
atmos-2.97.8.tar.gz/src/file_input.h -> atmos-2.97.9.tar.gz/src/file_input.h
Changed
@@ -1,5 +1,5 @@ /* - $Id: file_input.h 180 2011-01-30 15:56:33Z matwey $ + $Id: file_input.h 301 2017-04-26 07:39:45Z matwey $ Copyright (C) 2009 Sternberg Astronomical Institute, MSU This program is free software: you can redistribute it and/or modify @@ -96,6 +96,7 @@ virtual void on_background( const time_type& time ) = 0; virtual void on_normal( const time_type& time ) = 0; virtual void on_flux( const time_type& time ) = 0; + virtual void on_unknown_mode( const time_type& time ) = 0; virtual void on_measurements( const time_type& time, const flux_type& mean, const vars_type& vars, const rho1_type& rho1, const rho2_type& rho2 ) = 0; virtual void on_dimm( const time_type& time, unsigned int framenum, const dimm_flux_type& left, const dimm_flux_type& right, const dimm_vars_type& xvars, const dimm_flux_type& yvars ) = 0; };
View file
atmos-2.97.8.tar.gz/src/worksheet.cpp -> atmos-2.97.9.tar.gz/src/worksheet.cpp
Changed
@@ -1,5 +1,5 @@ /* - $Id: worksheet.cpp 279 2012-02-23 14:27:56Z matwey $ + $Id: worksheet.cpp 301 2017-04-26 07:39:45Z matwey $ Copyright (C) 2009 Sternberg Astronomical Institute, MSU This program is free software: you can redistribute it and/or modify @@ -529,6 +529,9 @@ void worksheet::input::on_flux( const time_type& time ) { switch_accumulator<dummy_accumulator>( time ); // dummy no throw } +void worksheet::input::on_unknown_mode( const time_type& time ) { + switch_accumulator<dummy_accumulator>( time ); // dummy no throw +} void worksheet::input::on_measurements( const time_type& time, const flux_type& mean, const vars_type& vars, const rho1_type& rho1, const rho2_type& rho2 ) { m_maccum->accumulate( time, mean, vars, rho1, rho2 ); }
View file
atmos-2.97.8.tar.gz/src/worksheet.h -> atmos-2.97.9.tar.gz/src/worksheet.h
Changed
@@ -1,5 +1,5 @@ /* - $Id: worksheet.h 227 2011-07-12 15:50:47Z matwey $ + $Id: worksheet.h 301 2017-04-26 07:39:45Z matwey $ Copyright (C) 2009 Sternberg Astronomical Institute, MSU This program is free software: you can redistribute it and/or modify @@ -99,6 +99,7 @@ void on_background( const time_type& time ); void on_normal( const time_type& time ); void on_flux( const time_type& time ); + void on_unknown_mode( const time_type& time ); void on_measurements( const time_type& time, const flux_type& mean, const vars_type& vars, const rho1_type& rho1, const rho2_type& rho2 ); void on_dimm( const time_type& time, unsigned int framenum, const dimm_flux_type& left, const dimm_flux_type& right, const dimm_vars_type& xvars, const dimm_flux_type& yvars ); public:
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.