source: trunk/debian/changelog @ 329

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

Dennis Stam:

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