source: trunk/debian/changelog @ 360

Last change on this file since 360 was 360, checked in by bas, 6 years ago

updated all versions to 4.6.3

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