File tree Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 1
1
Name: vibes
2
- Version: 0.2.0
3
- Date: 2015-11-12
2
+ Version: %VERSION%
3
+ Date: %DATE%
4
4
Author: Oliver Heimlich <
[email protected] >
5
5
Maintainer: ENSTA Bretagne Robotics
6
6
Title: Interface to VIBes, Visualizer for Intervals and Boxes
7
- Description: VIBes is a visualization system that aims at providing people
8
- working with interval methods a way to display results (boxes, pavings),
9
- without worrying with GUI programming. It provides drawing functions
10
- accessible from a lot of programming languages, without complex installation
11
- and library dependencies. The main design goal of VIBes is to be
12
- cross-platform, available from different programming languages, simple to
13
- set-up, easy to port to a new language.
7
+ Description: The VIBes API allows one to easily display results (boxes, pavings)
8
+ from interval methods.
14
9
15
10
VIBes consists in two parts: (1) the VIBes application that features viewing,
16
11
annotating and exporting figures, and (2) the VIBes API that enables your
17
12
program to communicate with the viewer in order to draw figures.
18
13
19
14
This package integrates the VIBes API into Octave. The VIBes application
20
15
is required for operation and must be installed seperately. Data types from
21
- third-party interval arithmetic libraries for Octave are also supportd .
16
+ third-party interval arithmetic libraries for Octave are also supported .
22
17
Depends: octave (>= 4.0.0)
23
18
License: GPLv3+
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ SHELL = /bin/sh
20
20
21
21
CUT ?= cut
22
22
PACKAGE = $(shell grep "^Name: " DESCRIPTION | $(CUT ) -f2 -d" ")
23
- VERSION = $(shell grep "^Version: " DESCRIPTION | $(CUT ) -f2 -d" ")
24
- DATE = $(shell grep "^Date: " DESCRIPTION | $( CUT ) -f2 -d" ")
23
+ VERSION = $(shell grep "^/// \\\\version " ../C++/src/vibes.h | $(CUT ) -f3 -d" " | sed -e "s/[^0-9.]//g ")
24
+ DATE = $(shell date "+ % Y- % m- % d ")
25
25
26
26
# #
27
27
# # Release Process
@@ -44,6 +44,7 @@ $(RELEASE_TARBALL): ../../.git/index
44
44
(cd " $( PACKAGE) -bundle" && tar xf -)
45
45
@ (cd ../C++/; git archive --format=tar --prefix=" $( PACKAGE) -$( VERSION) /" HEAD src) | \
46
46
(cd " $( PACKAGE) -bundle" && tar xf -)
47
+ @sed -e " s/%VERSION%/$( VERSION) /" -e " s/%DATE%/$( DATE) /" -i " $( PACKAGE) -bundle/$( PACKAGE) -$( VERSION) /DESCRIPTION"
47
48
@ (cd " $( PACKAGE) -bundle" && tar czf " ../$@ " " $( PACKAGE) -$( VERSION) " )
48
49
49
50
# #
You can’t perform that action at this time.
0 commit comments