source: trunk/debian/changelog @ 304

Last change on this file since 304 was 304, checked in by bas, 10 years ago

Make sure that all files have version 4.4.0

File size: 9.8 KB
Line 
1pbs-python (4.4.0-1) UNRELEASED; urgency=low
2
3  * See CHANGES
4
5 -- Bas van der Vlies <bas.vandervlies@surfsara.nl>  Fri, 17 Jan 2014 14:13:07 +0100
6
7pbs-python (4.3.7-1) lenny; urgency=low
8
9  * See CHANGESk
10
11 -- Bas van der Vlies <bas.vandervlies@surfsara.nl>  Thu, 19 Sep 2013 14:11:56 +0200
12
13pbs-python (4.3.6-1) lenny; urgency=low
14
15  * See Changes
16
17 -- Dennis Stam <dennis.stam@surfsara.nl>  Thu, 16 May 2013 09:07:03 +0200
18
19pbs-python (4.3.5-1) lenny; urgency=low
20
21  * sara is now surfsara.nl, changed all references
22  * added a new code example for EVENT node parsing
23  * See Changes
24
25 -- Bas van der Vlies <bas.vandervlies@surfsara.nl>  Mon, 29 Apr 2013 17:21:39 +0200
26
27pbs-python (4.3.4-2) lenny; urgency=low
28
29  * Removed gb- from REGEX new_rack
30
31 -- Dennis Stam <dennis.stam@surfsara.nl>  Tue, 19 Feb 2013 16:54:39 +0100
32
33pbs-python (4.3.4-1) lenny; urgency=low
34
35  * See CHANGES
36  * install pbs_jobmonitor and pbs_joblogin in /usr/bin
37
38 -- Bas van der Vlies <basv@sara.nl>  Fri, 27 Apr 2012 09:54:54 +0200
39
40pbs-python (4.3.3-1) lenny; urgency=low
41
42  * see CHANGES
43
44 -- Bas van der Vlies <basv@sara.nl>  Tue, 03 Jan 2012 12:01:15 +0100
45
46pbs-python (4.3.1-1) lenny; urgency=low
47
48  * see CHANGES
49
50 -- Bas van der Vlies <bas@sara.nl>  Wed, 24 Aug 2011 14:08:09 +0200
51
52pbs-python (4.3.0-1) lenny; urgency=low
53
54  * See CHANGES
55
56 -- Bas van der Vlies <bas@sara.nl>  Fri, 05 Nov 2010 09:04:29 +0100
57
58pbs-python (4.2.0-2) lenny; urgency=low
59
60  * Update LICENSE file to LGPLV3
61  * patched pbsmon.py for torque 2.5
62  * see CHANGES for complete list
63
64 -- Bas van der Vlies <bas@sara.nl>  Thu, 10 Jun 2010 10:27:43 +0200
65
66pbs-python (4.1.2-1) lenny; urgency=low
67
68  * See changes not yes finishedm but some important fixes
69
70 -- bas van der Vlies <basv@sara.nl>  Thu, 20 May 2010 11:11:21 +0200
71
72pbs-python (4.1.0-1) lenny; urgency=low
73
74  * See CHANGES file
75
76 -- bas van der Vlies <bas@sara.nl>  Thu, 29 Apr 2010 13:24:24 +0200
77
78pbs-python (4.0.2-1) lenny; urgency=low
79
80  * See CHANGES file
81
82 -- bas van der Vlies <bas@sara.nl>  Fri, 23 Apr 2010 10:27:58 +0200
83
84pbs-python (4.0.1-1) lenny; urgency=low
85
86  * See CHANGES file
87
88 -- bas van der Vlies <bas@sara.nl>  Wed, 21 Apr 2010 08:26:02 +0200
89
90pbs-python (4.0.0-1) lenny; urgency=low
91
92  * See CHANGES file
93
94 -- Bas van der Vlies <basv@sara.nl>  Fri, 09 Apr 2010 09:43:24 +0200
95
96pbs-python (3.6.0-1) lenny; urgency=low
97
98  * New generated files pbs_wrap.c and pbs.py fixes an error in pbs_runjob()
99
100 -- Bas van der Vlies <basv@sara.nl>  Fri, 15 Jan 2010 04:40:35 +0100
101
102pbs-python (3.5.0-1) lenny; urgency=low
103
104  * PBSQuery
105        The class functions of node, job and queue support old and new data
106        structure.
107
108    Changed the behaviour of the new data stucture, We can use it as
109    dictionary and as class attribute, this is equivalent, eg:
110      - print node['np'] and print node.np
111
112    for a node we parse the 'status' line and split on '=' char, You now can
113    use these statements, eg
114     - print node.status.arch     (node['status'].arch or node['status']['arch'])
115     - print node.status.nsession
116
117    for a job we parse the 'Variable_List' line and split on '=' char, You now can
118    use the statements, eg:
119     - print job.Variable_List.PBS_O_WORKDIR
120     - print job.Variable_List.PBS_O_HOME
121
122    for more info see examples/new_interface.py
123
124    Author: Bas van der Vlies
125
126  * new_rack_pbsmon.py
127    Rewrite to new data structure and automatically determine how many nodes
128    and racks cluster has and skip printing of empty racks (default), use -w/--wide
129    for old behaviour.
130
131    Author: Bas van der Vlies
132
133 -- Bas van der Vlies <bas@sara.nl>  Mon, 12 Nov 2009 15:03:16 +0200
134
135pbs-python (3.2.0-1) intrepid; urgency=low
136
137  *  PBSQuery:
138     New data structure. In the old structure it is a dictionary
139     with a value and the value is a string. This is changed that
140     dictionary values are now of type list or dictionary depends
141     on the value of keyword, eg for a node:
142       - np = 2:
143       - node['np'] = [ '2' ]
144       - properties = cores2, mem4gb, parallel
145       - node['properties'] = [ 'cores2', 'mem4gb', 'parallel' ]
146       - status = arch=x86_64,sessions=22599,,size=70627864kb, ...
147       - node['status']['arch'] = [ 'x86_64' ]
148       - node['status']['sessions'] = [ '222599' ]
149       - ...
150
151         The data structure is activated by the function:
152          - new_data_structure()
153
154         In a future release it will be come the default.
155         example:
156         p = PBSQuery()
157         p.new_data_structure()
158
159        nodes = p.getnodes()
160        print nodes.np, nodes['np']
161
162         Author: Bas van der Vlies
163
164  *  PBSQuery:
165        For old and new data structure we now can use another syntax:
166     - node['np'] and node.np are equivalent
167
168        This new syntax works for all keywords.
169        Author: Bas van der Vlies
170
171  *  PBSQuery:
172        Added iter object for job, node, queue and server objects, eg:
173        node = p.getnode('gb-r1n1')
174        print node.name
175        for attrib in node:
176           print '%\t%s = %s' %(attrib, node[attrib])
177        Author: Bas van der Vlies
178
179  *  PBSQuery:
180        fixed an error in getnode, getqueue and getjob, return
181        empty dictionary if not found.
182        Author: Bas van der Vlies
183
184  *  PBSQuery:
185        New build system for rpm packages, make -f Makefile.rpm
186        Author: Michel Jouvin <jouvin add lal dot in2p3 dot fr>
187        Applied: Bas van der Vlies
188
189 -- Bas van der Vlies <bas@rc.sara.nl>  Thu, 14 May 2009 13:41:00 +0200
190
191pbs-python (3.0.1-2) intrepid; urgency=low
192
193  * adjust number of nodes to 32
194
195 -- root <root@rc.sara.nl>  Tue, 17 Mar 2009 18:17:18 +0100
196
197pbs-python (3.0.1-1) intrepid; urgency=low
198
199  * Small bug fix
200
201 -- root <root@rc.sara.nl>  Wed, 28 Jan 2009 13:58:43 +0100
202
203pbs-python (3.0.0-1) intrepid; urgency=low
204
205  * New api for PBSQuery and build on any architecture
206
207 -- Bas van der Vlies <bas@sara.nl>  Tue, 11 Nov 2008 12:48:39 +0100
208
209pbs-python (2.9.8-3) intrepid; urgency=low
210
211  * New functions added to PBSQuery
212
213 -- Bas van der Vlies <basv@sara.nl>  Fri, 10 Oct 2008 11:18:38 +0200
214
215pbs-python (2.9.8-2) intrepid; urgency=low
216
217  * New PBSQuery module
218
219 -- Bas van der Vlies <bas@sara.nl>  Wed,  8 Oct 2008 14:05:44 +0200
220
221pbs-python (2.9.8-1) intrepid; urgency=low
222
223  * New version with updated torque header file (version 2.X)
224
225 -- Bas van der Vlies <bas@rc.sara.nl>  Wed, 24 Sep 2008 12:32:29 +0200
226
227pbs-python (2.9.6-1) intrepid; urgency=low
228
229  * pbs_python.spec file patch added libdir and python defines so it
230    will build for RHEL5.1/CentOS 5.1 (by Michael Sternberg) and some
231    minor changes to the pbs_ifl.h file
232
233 -- Dennis Stam <dennis.stam@sara.nl>  Thu, 18 Sep 2008 11:23:16 +0200
234
235pbs-python (2.9.4-1) unstable; urgency=low
236
237  * New version with all the fixes as mentioned below
238
239 -- Bas van der Vlies <bas@rc.sara.nl>  Thu, 16 Nov 2006 14:29:16 +0100
240
241pbs-python (2.9.2-4) unstable; urgency=low
242
243  * PBSQuery: Make use of UserDict module
244
245 -- Bas van der Vlies <bas@rc.sara.nl>  Wed, 18 Oct 2006 11:46:34 +0200
246
247pbs-python (2.9.2-3) unstable; urgency=low
248
249  *  Fixed a has_key bug must return zero instead of None
250     Thanks to Ramon Bastiaans for reporting
251
252 -- Bas van der Vlies <bas@rc.sara.nl>  Fri, 13 Oct 2006 15:33:25 +0200
253
254pbs-python (2.9.2-2) unstable; urgency=low
255
256  * new_rack_pbsmon.py fixes serial/parallel calculations
257
258 -- Bas van der Vlies <bas@rc.sara.nl>  Tue, 10 Oct 2006 12:13:25 +0200
259
260pbs-python (2.9.2-1) unstable; urgency=low
261
262  * New upstream version, read CHANGES file
263
264 -- Bas van der Vlies <bas@rc.sara.nl>  Tue, 19 Sep 2006 16:17:54 +0200
265
266pbs-python (2.9.1-6) unstable; urgency=low
267
268  *  New torque build system
269
270 -- Bas van der Vlies <bas@rc.sara.nl>  Fri, 21 Jul 2006 10:41:31 +0200
271
272pbs-python (2.9.1-5) unstable; urgency=low
273
274  * Down state has most priority. So display it
275
276 -- Bas van der Vlies <bas@rc.sara.nl>  Fri, 16 Jun 2006 14:44:48 +0200
277
278pbs-python (2.9.1-4) unstable; urgency=low
279
280  *  Added sara_install to Makefile.in. Else
281     no new pbsmon for SARA
282
283 -- Bas van der Vlies <bas@rc.sara.nl>  Thu, 15 Jun 2006 12:23:54 +0200
284
285pbs-python (2.9.1-3) unstable; urgency=low
286
287  * New version adjusted new_rack_pbsmon.py to 39 racks
288
289 -- Bas van der Vlies <bas@rc.sara.nl>  Mon, 12 Jun 2006 11:56:26 +0200
290
291pbs-python (2.9.1-2) unstable; urgency=low
292
293  * Fixed a bug in new_rack_pbsmon.py
294
295 -- Bas van der Vlies <bas@rc.sara.nl>  Fri, 26 May 2006 16:41:35 +0200
296
297pbs-python (2.9.0-1) unstable; urgency=low
298
299  * Added new build system for torque 2.1.0 and higher
300
301 -- Bas van der Vlies <bas@rc.sara.nl>  Thu, 20 Apr 2006 14:25:21 +0200
302
303pbs-python (2.8.2-3) unstable; urgency=low
304
305  * Changed new_rack_pbsmon.py script by walter
306
307 -- Bas van der Vlies <bas@rc.sara.nl>  Thu, 13 Apr 2006 14:10:36 +0200
308
309pbs-python (2.8.2-2) unstable; urgency=low
310
311  *  Fixed Makefile.in, now right script
312
313 -- Bas van der Vlies <bas@rc.sara.nl>  Fri,  7 Apr 2006 10:59:35 +0200
314
315pbs-python (2.8.2-1) unstable; urgency=low
316
317  *  Added new pbsmon example: new_rack_pbsmon.py uses PBSQuery
318
319 -- Bas van der Vlies <bas@rc.sara.nl>  Thu,  6 Apr 2006 15:12:03 +0200
320
321pbs-python (2.8.0-2) unstable; urgency=medium
322
323  * Used swig 1.3.24 with python2.1 works also on higher python versions
324
325 -- Bas van der Vlies <bas@rc.sara.nl>  Mon,  7 Nov 2005 14:55:00 +0100
326
327pbs-python (2.8.0-1) unstable; urgency=low
328
329  * New pbs_python release, See CHANGES
330
331 -- Bas van der Vlies <bas@rc.sara.nl>  Fri,  4 Nov 2005 15:58:44 +0100
332
333pbs-python (2.7.10-1) unstable; urgency=low
334
335  * Added examples/LICENSE.sara to /usr/share/doc directory
336  * Made an sara_install section for pbsmon --> examples/rack_pbsmon.py
337
338 -- Bas van der Vlies <basv@sara.nl>  Mon, 26 Sep 2005 16:32:06 +0200
339
340pbs-python (2.7.9-2) unstable; urgency=low
341
342  * Bumped up version
343  * Fixed  DEBUG mode
344
345 -- Bas van der Vlies <bas@rc.sara.nl>  Fri, 24 Jun 2005 11:23:30 +0200
346
347pbs-python (2.7.5-1) unstable; urgency=low
348
349  * Initial version
350
351 -- Yaroslav Halchenko <debian@onerussian.com>  Mon, 1 Nov 2004 12:13:08 -0400
352
Note: See TracBrowser for help on using the repository browser.