source: trunk/debian/changelog @ 279

Last change on this file since 279 was 279, checked in by bas, 12 years ago

fix a bug in getjob could not hamdle short jobname

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