source: trunk/debian/changelog @ 282

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

renamed some file and added documentation

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