source: trunk/debian/changelog @ 339

Last change on this file since 339 was 339, checked in by bas, 9 years ago

applied PBSQuery patch to handle cpuid range for torque5, see #47

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