aboutsummaryrefslogtreecommitdiff
blob: 4cade8939cba5555ae0a70b9a892c6553f0b7eda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
2009-05-21 08:11  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/Virtual.py, src/testsuite/Virtual.py,
	  src/testsuite/virtual_configs/jmx,
	  src/testsuite/virtual_configs/jmx2,
	  src/testsuite/vm_configs/blackdown-jdk-1.4.2,
	  src/testsuite/vm_configs/sun-jre-bin-1.6: Add support for
	  virtual/[jdk|jre] deps in virtuals.

2009-05-21 08:10  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/VersionManager.py: Moved EnvironmentManager
	  import to allow Virtuals to import VersionManager functionality.

2009-05-02 11:32  Alistair Bush <ali_bush@gentoo.org>

	* src/depend-java-query, src/java_config_2/EnvironmentManager.py:
	  Re-add print statement, with correct indentation and remove
	  another unneeded print.

2009-05-02 10:51  Alistair Bush <ali_bush@gentoo.org>

	* src/depend-java-query: remove debug print statement

2009-04-25 09:34  Alistair Bush <ali_bush@gentoo.org>

	* setup.cfg: Add symlinks for all jdk/jre tools

2009-04-24 11:10  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/VersionManager.py,
	  src/testsuite/VersionManager.py: Add support for slotted
	  java-virtuals.

2009-04-24 10:07  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2: Add support for querying a packages
	  package.env

2009-04-24 10:04  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/VersionManager.py,
	  src/testsuite/VersionManager.py: Add support for
	  virtual/(jre|jdk):slot parsing.

2009-04-10 11:47  Petteri Räty <betelgeuse@gentoo.org>

	* REWRITE: Add file listing goals for a java-config rewrite.

2009-03-01 10:08  Alistair Bush <ali_bush@gentoo.org>

	* src/testsuite/VersionManager.py: VersionManager unittests.

2009-02-25 10:31  Alistair Bush <ali_bush@gentoo.org>

	* src/testsuite/VersionManager.py: Being adding more unittests.

2009-02-24 10:54  Alistair Bush <ali_bush@gentoo.org>

	* src/testsuite/Package.py, src/testsuite/Virtual.py,
	  src/testsuite/packages/ant-cores/package.env,
	  src/testsuite/packages/jdbc-mysql,
	  src/testsuite/packages/jdbc-mysql/package.env,
	  src/testsuite/packages/jdbc-postgresql,
	  src/testsuite/packages/jdbc-postgresql/package.env: Updated
	  unittests. Made unittests provide there own packages, vms,
	  virtuals, etc to provide known state to test against.

2009-02-24 10:52  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/Package.py: Remove commented out code and extra
	  lines.

2009-02-24 09:58  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2: Fix Formatting

2009-02-22 10:38  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/Virtual.py: Updated to print all pass all
	  possible providers to ProviderUnavailableError

2009-02-22 10:03  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/VersionManager.py,
	  src/java_config_2/Virtual.py: Fix bugs.

2009-02-21 21:45  Alistair Bush <ali_bush@gentoo.org>

	* src/testsuite/EnvironmentManager.py, src/testsuite/Package.py,
	  src/testsuite/Virtual.py, src/testsuite/__init__.py,
	  src/testsuite/packages, src/testsuite/packages/ant-cores,
	  src/testsuite/packages/ant-cores/package.env,
	  src/testsuite/virtual_configs/jdbc: Improving testsuites by
	  making it more independent from the env.

2009-02-21 21:43  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/EnvironmentManager.py,
	  src/java_config_2/FileParser.py, src/java_config_2/Package.py,
	  src/java_config_2/VersionManager.py,
	  src/java_config_2/Virtual.py: Add initial support for jdbc like
	  virtuals. Which return all providers instead of just one.

2009-01-13 09:43  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/__init__.py: Update Version 2.1.7

2008-11-20 10:34  Alistair Bush <ali_bush@gentoo.org>

	* ChangeLog, src/gjl, src/java-config-2,
	  src/java_config_2/EnvironmentManager.py: Migrate from depreciated
	  Set class and fix bug 247608.

2008-10-12 20:03  serkan

	* src/java_config_2/Virtual.py: Fix returning empty classpath if
	  the provider doesnt have VIRTUAL_CLASSPATH

2008-10-12 18:30  serkan

	* src/java_config_2/Virtual.py: Fix indentation.

2008-10-12 18:19  serkan

	* src/java_config_2/Package.py, src/java_config_2/Virtual.py:
	  Support VIRTUAL_CLASSPATH variable in non-jvm virtual provider.

2008-07-04 18:35  serkan

	* config/jdk-defaults-sparc64-solaris.conf,
	  config/jdk-defaults-x64-solaris.conf: Copy configurations of 64
	  bit Solaris's from 32 bit's. Suggested by grobian.

2008-07-02 17:25  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config_2/VersionManager.py: Make the portage import
	  backwards compatible.

2008-06-21 13:25  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/VersionManager.py: Update VersionManager to new
	  portage module

2008-04-27 23:44  Petteri Räty <betelgeuse@gentoo.org>

	* NEWS, setup.py, src/java_config_2/__init__.py: Increase version
	  number to 2.1.6 and add NEWS entry.

2008-04-27 23:23  Petteri Räty <betelgeuse@gentoo.org>

	* src/testsuite/vm_configs/sun-jdk-1.7: Add sun-jdk-1.7 config for
	  the vm_configs so that the virtual test code tests a more complex
	  scenario.

2008-04-27 23:22  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config_2/VersionManager.py: Iterate over all matching
	  vms so that >=virtual/jdk-1.5 java-virtuals/jaf works when 1.7
	  comes out of the jdk part but isn't marked as providing the
	  virtual.

2008-04-27 22:39  Petteri Räty <betelgeuse@gentoo.org>

	* src/testsuite/VersionManager.py, src/testsuite/__init__.py,
	  src/testsuite/vm_configs/sun-jdk-1.6: Add test for
	  VersionManager.get_vm

2008-04-27 22:38  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config_2/VersionManager.py: Remove leading space from
	  the result of parse_depend_virtuals.

2008-04-27 14:31  Petteri Räty <betelgeuse@gentoo.org>

	* src/testsuite/VM.py, src/testsuite/Virtual.py,
	  src/testsuite/__init__.py, src/testsuite/virtual_configs,
	  src/testsuite/virtual_configs/jaf: Add test for Virtual.get_vms.

2008-04-27 12:53  Petteri Räty <betelgeuse@gentoo.org>

	* src/testsuite/VM.py, src/testsuite/__init__.py,
	  src/testsuite/provides.py, src/testsuite/vm_configs,
	  src/testsuite/vm_configs/ibm-jdk-bin-1.5: Add own vm_configs
	  directory for VM tests and test that name is not dependent on the
	  path.

2008-04-27 12:51  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config_2/VM.py: Use os.path.basename instead of
	  hardcoding the vm file directory.

2008-04-27 12:33  Petteri Räty <betelgeuse@gentoo.org>

	* src/run-test-suite.py, src/test, src/test.sh, src/testsuite,
	  src/testsuite/__init__.py: Rename test to testsuite so that it
	  does not collide with the standard python test directory. Add
	  framework for running tests from multiple modules.

2008-04-25 00:32  Petteri Räty <betelgeuse@gentoo.org>

	* src/test, src/test.sh, src/test/provides.py: Add unit test for
	  VM.provides

2008-04-25 00:31  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config_2/VM.py: Fix provides not to return True when a
	  VM does not have a PROVIDES entry at all.

2008-02-26 16:48  Petteri Räty <betelgeuse@gentoo.org>

	* MANIFEST.in, setup.py, src/java_config_2/__init__.py: Increase
	  version number to 2.1.5 and add data to MANIFEST.in.

2008-02-26 16:41  Petteri Räty <betelgeuse@gentoo.org>

	* NEWS: Update NEWS for 2.1.5.

2008-02-26 16:35  Petteri Räty <betelgeuse@gentoo.org>

	* src/run-java-tool: Make the tool bold in the desktop notification
	  message.

2008-02-26 16:34  Petteri Räty <betelgeuse@gentoo.org>

	* src/java-config-2: Rename get_virtuals_packages to
	  get_virtual_providers.

2008-02-26 16:33  Petteri Räty <betelgeuse@gentoo.org>

	* data/javaws.desktop, data/x-java-jnlp-file.desktop, setup.py:
	  Make the jnlp association work in KDE 3.

2008-02-25 23:54  Petteri Räty <betelgeuse@gentoo.org>

	* src/run-java-tool: Add notify-send notification when a wrapper is
	  not provided by the selected vm.

2008-02-25 23:09  Petteri Räty <betelgeuse@gentoo.org>

	* src/eselect/java-vm.eselect: Make eselect java-vm set foobar
	  foobar throw an error. Fixes bug #211454.

2008-02-12 14:02  Petteri Räty <betelgeuse@gentoo.org>

	* data/javaws.desktop: Remove TryExec for gimp that was
	  accidentally left in.

2008-02-11 22:09  Petteri Räty <betelgeuse@gentoo.org>

	* setup.py: copy_file is not able to handle --root with relative
	  symbolic links

2008-02-11 21:18  Petteri Räty <betelgeuse@gentoo.org>

	* setup.py: Mixed up the argument order for copy_file.

2008-02-11 21:05  Petteri Räty <betelgeuse@gentoo.org>

	* data, data/application-x-java-jnlp-file.png,
	  data/java-icon48.png, data/javaws.desktop, setup.py: Install
	  .desktop files for Java Web Start. Icon taken from OpenJDK repo
	  src/solaris/classes/sun/awt/X11/java-icon48.png. Fix for
	  http://bugs.gentoo.org/show_bug.cgi?id=35024.

2008-01-29 05:31  Alistair Bush <ali_bush@gentoo.org>

	* setup.py, src/java_config_2/__init__.py: Updated version to
	  2.1.4.

2008-01-29 04:58  Alistair Bush <ali_bush@gentoo.org>

	* make-release: Updating make-release to support new module name
	  (java_config_2). This was the reason for the latest java-config-2
	  releases not having the correct version.

2008-01-24 07:04  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/Virtual.py: Added fix to Virtual support for
	  querying a virtuals LIBRARY_PATH.

2008-01-21 05:58  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2, src/java_config_2/EnvironmentManager.py,
	  src/java_config_2/Virtual.py: Fix message, clean up comments

2008-01-21 04:05  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2: Revert this back, didn't mean to commit it.

2008-01-21 04:03  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2, src/java_config_2/Virtual.py: Fix another tiny
	  bug.

2008-01-21 03:41  Alistair Bush <ali_bush@gentoo.org>

	* src/launcher.bash: Fixed debug print line.

2008-01-20 07:36  Alistair Bush <ali_bush@gentoo.org>

	* src/launcher.bash: Fixed launcher.bash option parsing. see
	  #193350

2008-01-20 01:32  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/EnvironmentManager.py, src/java_config_2/VM.py,
	  src/java_config_2/VersionManager.py: Clean up and bug fix.

2008-01-19 01:42  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/EnvironmentManager.py,
	  src/java_config_2/VersionManager.py,
	  src/java_config_2/Virtual.py: Various fixes (hopefully)

2008-01-14 09:24  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2, src/java_config_2/EnvironmentManager.py,
	  src/java_config_2/VersionManager.py,
	  src/java_config_2/Virtual.py: Lots of little changes.

2008-01-13 05:50  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/Errors.py, src/java_config_2/VersionManager.py,
	  src/java_config_2/Virtual.py: Added further fixes, now virtuals
	  can handle slot depends etc.

2008-01-13 03:02  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/VersionManager.py: Fxi syntax error.

2008-01-13 02:44  Alistair Bush <ali_bush@gentoo.org>

	* src/depend-java-query, src/java_config_2/VersionManager.py,
	  src/java_config_2/Virtual.py: Updated reg exp fix errors in
	  virtuals handling

2008-01-07 20:08  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config_2/Virtual.py: Fix vim modeline and one
	  indentation fix.

2008-01-07 20:03  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config_2/EnvironmentManager.py: Add missing return to
	  get_virtual

2007-11-28 07:56  Alistair Bush <ali_bush@gentoo.org>

	* setup.py: Updated Version.

2007-11-26 04:25  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/EnvironmentManager.py,
	  src/java_config_2/Virtual.py: Uncommented virtual conf code and
	  cleaned up tab error in EnvironmentManager.

2007-11-25 13:43  Vlastimil Babka <caster@gentoo.org>

	* config/jdk-defaults-ppc-macos.conf,
	  config/jdk-defaults-sparc-solaris.conf,
	  config/jdk-defaults-x86-macos.conf,
	  config/jdk-defaults-x86-solaris.conf: Add jdk configuration files
	  for macos and solaris, provided by grobian.

2007-11-20 08:51  Alistair Bush <ali_bush@gentoo.org>

	* src/depend-java-query, src/java_config_2/EnvironmentManager.py:
	  Fixed issue where depend-java-query wasn't able to find a
	  suitable vm, when it should have.

2007-11-19 07:37  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/EnvironmentManager.py,
	  src/java_config_2/Virtual.py: Fix bug in EnvironmentManager where
	  dep resolving of optional dependencies had been broken by the
	  lazy package loading. Cleaned up Virtual.py

2007-11-19 06:34  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/Virtual.py: Fixed issue where package was being
	  provided instead of vm.

2007-11-17 21:04  Alistair Bush <ali_bush@gentoo.org>

	* src/depend-java-query, src/gjl,
	  src/java_config_2/EnvironmentManager.py,
	  src/java_config_2/Package.py, src/java_config_2/Virtual.py:
	  Support for Virtuals that declare list of VM names to use.
	  Testing needed before releaseable.

2007-11-10 12:08  Petteri Räty <betelgeuse@gentoo.org>

	* src/java-config-2, src/java_config_2/EnvironmentManager.py,
	  src/java_config_2/Errors.py: Speedup java-config by moving to
	  lazy loading of packages in EnvironmentManager instead of always
	  loading all installed packages to memory.

2007-10-20 12:03  Alistair Bush <ali_bush@gentoo.org>

	* config/virtuals, src/java_config_2/Virtual.py: Updated virtuals
	  conf examples and fixed issue in Virtual.py where incorrect
	  active_package was being selected.

2007-10-14 07:38  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/EnvironmentManager.py: Fix issue when
	  EnvironmentManager does not compile with python-2.4 but does with
	  2.5.

2007-10-13 11:30  Alistair Bush <ali_bush@gentoo.org>

	* setup.py: Updating version

2007-10-13 10:21  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2: Updating message in java-config as I fudge the
	  last one

2007-10-13 10:14  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2: Updating message in java-config to increase
	  clarity.

2007-10-13 09:45  Alistair Bush <ali_bush@gentoo.org>

	* src/depend-java-query, src/gjl: Migrating depend-java-query and
	  gjl to new module layout.

2007-10-13 09:38  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/Virtual.py: Set providing variables in
	  Virtual.py as empty strings by default

2007-10-13 09:34  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2, src/java_config_2/Errors.py: Fixing bug in
	  handling Exception.

2007-10-13 09:16  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/Errors.py, src/java_config_2/Virtual.py: Fixing
	  inconsistent use of tabs.

2007-10-13 09:08  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2, src/java_config_2/Errors.py,
	  src/java_config_2/Virtual.py: Adding new Exception to handle when
	  a virtual does not have a provider.

2007-10-12 07:41  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/EnvironmentManager.py: Added except to try to
	  stop exceptions on initialisation on EnvironmentManager.

2007-10-12 07:19  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/EnvironmentManager.py: Added try finally to
	  stop exceptions on initialisation on EnvironmentManager.

2007-10-12 07:06  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/EnvironmentManager.py: Adding raise
	  InvalidVMError back when there is no active vm.

2007-10-12 06:33  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config_2/VersionManager.py: Migrate VersonManager to new
	  namespace.

2007-10-12 06:25  Alistair Bush <ali_bush@gentoo.org>

	* setup.py: Commiting update to setup.oy for test purposes.

2007-10-11 11:00  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2, src/java_config, src/java_config_2,
	  src/java_config_2/EnvironmentManager.py,
	  src/java_config_2/Errors.py, src/java_config_2/FileParser.py,
	  src/java_config_2/OutputFormatter.py,
	  src/java_config_2/Package.py, src/java_config_2/VM.py,
	  src/java_config_2/VersionManager.py,
	  src/java_config_2/Virtual.py, src/java_config_2/__init__.py: In
	  process on refactoring java-config-2 as part of move to
	  /usr/lib/python*/site-packages

2007-10-11 10:26  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config/Virtual.py: More fixes for bug #195320.

2007-10-11 10:24  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config/Virtual.py: More fixes for bug #195320.

2007-10-11 08:28  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config/EnvironmentManager.py,
	  src/java_config/Virtual.py: Bug#:195382 Fixed multiple issues
	  where vm's were being used without checking they were actually
	  available.

2007-10-08 09:12  Alistair Bush <ali_bush@gentoo.org>

	* setup.py, src/java_config/__init__.py: Updated Version.

2007-10-05 10:48  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config/EnvironmentManager.py: Fixed bug where variable
	  was being referenced as global instead on instance.

2007-10-04 10:52  Alistair Bush <ali_bush@gentoo.org>

	* src/java-config-2: Retabbed java-config-2

2007-10-04 10:45  Alistair Bush <ali_bush@gentoo.org>

	* src/java_config/EnvironmentManager.py,
	  src/java_config/VersionManager.py: Removing stray comments that
	  were missed.

2007-10-04 10:16  Alistair Bush <ali_bush@gentoo.org>

	* setup.py, src/java_config/__init__.py: Updated version to 2.1.0

2007-10-02 07:14  Alistair Bush <ali_bush@gentoo.org>

	* src/depend-java-query, src/gjl, src/java-config-2,
	  src/java_config/EnvironmentManager.py,
	  src/java_config/FileParser.py, src/java_config/VersionManager.py,
	  src/java_config/Virtual.py: Merged virtuals-support changes
	  r4995:5437 into trunk

2007-07-21 11:35  Petteri Räty <betelgeuse@gentoo.org>

	* src/run-java-tool: Add detection for run-java-tool being invoked
	  directly. Fixes bug #181967.

2007-07-21 11:33  Petteri Räty <betelgeuse@gentoo.org>

	* src/run-java-tool: Run retab in vim to change spaces to tabs.

2007-05-28 12:00  Vlastimil Babka <caster@gentoo.org>

	* ., src, src/gjl, src/java_config/EnvironmentManager.py,
	  src/java_config/Package.py: Support for OPTIONAL_DEPEND in
	  package.env, bug #176182.

2007-05-27 15:43  Vlastimil Babka <caster@gentoo.org>

	* src/java_config/VersionManager.py: Fix "Unable to determine VM
	  for building from dependencies." exception when neither jdk.conf
	  nor jdk-defaults.conf provide a usable JDK, and the lowest
	  possible VM specified in DEPEND is not installed. Fixes bug
	  #157380.

2007-05-25 21:49  Petteri Räty <betelgeuse@gentoo.org>

	* setup.cfg: Add setup.cfg. Part of 2.0.33 tarball but forgot to
	  add.

2007-05-25 18:41  Petteri Räty <betelgeuse@gentoo.org>

	* NEWS, setup.py, src/java_config/__init__.py: Increase version and
	  write NEWS entry for 2.0.33.

2007-05-25 18:35  Petteri Räty <betelgeuse@gentoo.org>

	* src/profile.d/java-config-2.csh, src/profile.d/java-config-2.sh:
	  Prepend JAVA_HOME to MANPATH instead of appending so that it
	  comes before generation 1.

2007-05-25 17:46  Petteri Räty <betelgeuse@gentoo.org>

	* MANIFEST.in, setup.py: Add support to the setup.py file for
	  creating the run-java-tool symlinks and fix MANIFEST.in file to
	  include new directories and TODO.

2007-05-25 17:44  Petteri Räty <betelgeuse@gentoo.org>

	* AUTHORS, README, make-release: Use the new authors file support
	  in svn2cl,add a short README and force MANIFEST recreation in
	  make-release.

2007-05-25 17:42  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config/VersionManager.py: Use sys.path.append instead of
	  insert(0 for portage imports

2007-05-20 19:23  Vlastimil Babka <caster@gentoo.org>

	* src/gjl, src/java_config/EnvironmentManager.py: Add support for
	  ENV_VARS in package.env to gjl.

2007-05-20 17:48  Joshua Nichols <nichoj@gentoo.org>

	* setup.py, src/java-config-2.profiled, src/profile.d,
	  src/profile.d/java-config-2.csh, src/profile.d/java-config-2.sh,
	  src/revdep-rebuild, src/revdep-rebuild/60-java: Created profile.d
	  directory, and brought most recent version of the profile.d files
	  from tree in. Also brought in the revdep-rebuild files. Addressed
	  bug #175883 by updating the profile.d files, and removing the
	  entry from the env.d file.

2007-05-19 01:19  Alistair Bush <ali_bush@gentoo.org>

	* src/gjl: Commiting changes to gjl so it respects
	  JAVA_LIBRARY_PATH and LD_LIBRARY_PATH

2007-05-18 18:51  Vlastimil Babka <caster@gentoo.org>

	* src/gjl: Change the instructions when missing dependency to run
	  emerge with -1Da instead of -uDa to also force remerging of the
	  package itself, and
	  not to record it in world.

2007-05-01 10:59  Petteri Räty <betelgeuse@gentoo.org>

	* make-release, setup.py, src/java_config/__init__.py: Change
	  version to 2.0.32 add make make-release use cp -v.

2007-05-01 10:56  Petteri Räty <betelgeuse@gentoo.org>

	* make-release: Add svn up so svn2cl gets the ChangeLog right.

2007-05-01 10:39  Petteri Räty <betelgeuse@gentoo.org>

	* NEWS: Add a note about including NEWS in the release.

2007-05-01 10:36  Petteri Räty <betelgeuse@gentoo.org>

	* MANIFEST.in: Include NEWS.

2007-05-01 10:34  Petteri Räty <betelgeuse@gentoo.org>

	* NEWS: Update NEWS for 2.0.32 release.

2007-04-24 16:34  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config/Package.py: Fix a typo.

2007-04-24 16:34  Petteri Räty <betelgeuse@gentoo.org>

	* config/20java-config: /etc/java-config/vms is not used by
	  java-config-2 so no need to CONFIG_PROTECT_MASK it

2007-04-15 20:25  Petteri Räty <betelgeuse@gentoo.org>

	* config/symlink-tools: Add keytool to java-config wrappers.

2007-03-31 19:24  Petteri Räty <betelgeuse@gentoo.org>

	* MANIFEST.in, TODO, make-release: Add svn2l to make-release and
	  add ChangeLog to the generated tarball.

2007-03-31 19:17  Petteri Räty <betelgeuse@gentoo.org>

	* ChangeLog: Use svn2cl from now on to generate ChangeLog for
	  releases.

2007-03-01 13:50  Petteri Räty <betelgeuse@gentoo.org>

	* ChangeLog, src/gjl: Separate error message for broken package.env
	  files with commas in DEPEND and for missing dependencies.

2007-03-01 13:22  Petteri Räty <betelgeuse@gentoo.org>

	* ChangeLog, src/gjl: Make gjl report missing dependencies with a
	  useful error message instead of a stack trace. Bug #168855.

2007-02-28 19:40  Petteri Räty <betelgeuse@gentoo.org>

	* ChangeLog, man/java-config-2.1: The default browser plugin can be
	  set by eselect java-nsplugin so that is not a bug any more.

2007-02-16 19:37  Petteri Räty <betelgeuse@gentoo.org>

	* ChangeLog, config/jdk-defaults-amd64.conf,
	  config/jdk-defaults-x86.conf: java-config-2/trunk: prefer sun-jdk
	  over blackdown-jdk when both are installed

2007-02-16 19:35  Petteri Räty <betelgeuse@gentoo.org>

	* NEWS: Rename ChangeLog to NEWS. NEWS contains higlights of
	  releases and ChangeLog messages for every commit.

2007-01-27 01:20  Vlastimil Babka <caster@gentoo.org>

	* ChangeLog, config/jdk-defaults-ia64.conf: Fixed jrockit in
	  jdk-defaults.conf for ia64

2006-12-31 13:02  Petteri Räty <betelgeuse@gentoo.org>

	* TODO, src/java_config/EnvironmentManager.py: Added a note about
	  get_packages returning a dictionary.

2006-12-17 14:38  Petteri Räty <betelgeuse@gentoo.org>

	* TODO: TODO items for 2.1

2006-12-17 14:30  Petteri Räty <betelgeuse@gentoo.org>

	* setup.py, src/java_config/__init__.py: Marking 2.0.31

2006-12-17 14:27  Petteri Räty <betelgeuse@gentoo.org>

	* ChangeLog: added jdk-defaults-x86-fbsd.conf

2006-12-17 14:19  Petteri Räty <betelgeuse@gentoo.org>

	* ChangeLog: Added ChangeLog entry for 2.0.31.

2006-12-09 16:58  Petteri Räty <betelgeuse@gentoo.org>

	* src/java-config-2: Applied patch from bug #149460 so that
	  --select-vm= behaves the same way as it would not have been given
	  at all.

2006-12-09 16:53  Petteri Räty <betelgeuse@gentoo.org>

	* src/java-config-2: Move -n and --nocolor to always be the first
	  arguments passed to the OptionParse so that we will never output
	  coloured output in the callbacks that come after it. Fixes bug
	  #154493.

2006-12-08 01:23  Vlastimil Babka <caster@gentoo.org>

	* config/jdk-defaults-x86-fbsd.conf: Add jdk-defaults.conf for
	  x86-fbsd.

2006-12-07 14:25  Petteri Räty <betelgeuse@gentoo.org>

	* config/jdk-defaults-amd64.conf, config/jdk-defaults-x86.conf:
	  Prefer sun-jdk over ibm-jdk-bin on x86 and amd64.

2006-12-06 19:06  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config/VersionManager.py: Moving portage import code to
	  inside the only function it is used in.

2006-12-06 19:04  Petteri Räty <betelgeuse@gentoo.org>

	* src/java_config/VersionManager.py: Added use flag handling code.

2006-12-01 18:47  Petteri Räty <betelgeuse@gentoo.org>

	* src/launcher.bash: Adding GJL_DEBUG printing of the gjl call.

2006-11-30 17:25  Petteri Räty <betelgeuse@gentoo.org>

	* AUTHORS: Updated AUTHORS file with some people who have
	  contributed and in general brought it closer to present
	  situation.

2006-11-30 17:23  Petteri Räty <betelgeuse@gentoo.org>

	* src/java-config-2: Changing java-config-2 to return !0 values
	  when there is an error condition or something is not found.

2006-11-01 06:43  Vlastimil Babka <caster@gentoo.org>

	* src/launcher.bash: Print notice about GENTOO_VM set only with
	  GJL_DEBUG=1 (looks suspiciously when compiling with ejavac() and
	  ecj-3.2).

2006-10-21 18:00  Petteri Räty <betelgeuse@gentoo.org>

	* src/launcher.bash: launcher.bash can now be used without gjl_jar
	  and gjl_main variables if the package only installs one jar with
	  Main-class attribute set.

2006-09-23 00:18  Joshua Nichols <nichoj@gentoo.org>

	* setup.py, src/java_config/__init__.py: Updated version to 2.0.30

2006-09-23 00:18  Joshua Nichols <nichoj@gentoo.org>

	* src/java-config-2: Removed uneeded branching logic. It was used
	  to highlight JDKs when doing -L, but we don't do that anymore.

2006-09-23 00:17  Joshua Nichols <nichoj@gentoo.org>

	* make-release: Fixed make-release script

2006-09-23 00:10  Joshua Nichols <nichoj@gentoo.org>

	* src/java-config-2: Made java-config-2 -L match java-config-1 -L

2006-09-21 01:57  Joshua Nichols <nichoj@gentoo.org>

	* src/java-config-2: Added messages for when setting user/system
	  vm.

2006-09-19 21:29  Joshua Nichols <nichoj@gentoo.org>

	* make-release, setup.py, src/java_config/__init__.py: Updated
	  version. Fixed make-release so it fixes __init__.py to have right
	  version.

2006-09-19 03:55  Joshua Nichols <nichoj@gentoo.org>

	* src/java-config-2: Added --tools to java-config-2

2006-09-19 03:42  Joshua Nichols <nichoj@gentoo.org>

	* src/run-java-tool: Added saner error message for when a tool
	  isn't available.

2006-09-19 03:12  Joshua Nichols <nichoj@gentoo.org>

	* src/eselect/java-nsplugin.eselect: Use a slightly smarter way of
	  checking multilibness

2006-09-19 02:44  Joshua Nichols <nichoj@gentoo.org>

	* src/eselect/java-nsplugin.eselect: Minor fixes.

2006-09-19 02:17  Joshua Nichols <nichoj@gentoo.org>

	* src/eselect/java-nsplugin.eselect: Updated java-nsplugin.eselect
	  to support multilib stuff.

2006-09-14 19:43  Vlastimil Babka <caster@gentoo.org>

	* src/java_config/EnvironmentManager.py: Rewrite code depending on
	  python 2.4 wrt bug #147594.

2006-09-12 14:07  Vlastimil Babka <caster@gentoo.org>

	* src/gjl: Fix the previous change for cases when CLASSPATH is
	  completely unset.

2006-09-08 20:27  Vlastimil Babka <caster@gentoo.org>

	* src/gjl: Honour CLASSPATH environment variable, to fix bug
	  #146870

2006-09-08 18:49  Joshua Nichols <nichoj@gentoo.org>

	* setup.py: Updated version.

2006-09-08 06:14  Vlastimil Babka <caster@gentoo.org>

	* src/eselect/java-vm.eselect, src/java-config-2,
	  src/java_config/EnvironmentManager.py: Give nice error message
	  instead of traceback if trying to set system/user vm symlink over
	  existing non-symlink file/directory. Fixes bug #140926

2006-09-07 23:40  Vlastimil Babka <caster@gentoo.org>

	* src/gjl: Remove the dep class/library path stuff from gjl, make
	  it use java-config functionality where
	  it was moved to in previous commit.

2006-09-07 23:21  Vlastimil Babka <caster@gentoo.org>

	* src/java-config-2, src/java_config/EnvironmentManager.py: Added
	  -d (--with-dependencies) trigger for --library and --classpath
	  calls.

2006-09-07 21:23  Vlastimil Babka <caster@gentoo.org>

	* config/symlink-tools: Added apt (annotation processing tool) into
	  run-java-tool's symlinks.

2006-09-07 20:49  Vlastimil Babka <caster@gentoo.org>

	* config/jdk.conf: Replaced http://some.where with link to gentoo
	  java guide.

2006-09-06 11:03  Vlastimil Babka <caster@gentoo.org>

	* src/java_config/EnvironmentManager.py: Leave out empty parts of
	  package.env's CLASSPATH (i.e. if CLASSPATH looks like
	  ':/usr/share/junit/lib/junit.jar:', omit the ':'s) to behave like
	  java-config-1 and prevent
	  breakages of eclass jar-from and friends functions with packages
	  merged long-ago which
	  apparently can have those stray ':'s.

2006-08-25 04:04  Joshua Nichols <nichoj@gentoo.org>

	* src/java-config-2.profiled: Updates to java-config-2, to export
	  JAVAC, JDK_HOME

2006-08-24 14:48  Joshua Nichols <nichoj@gentoo.org>

	* src/java-config-2.profiled: Added profile.d file

2006-08-24 14:46  Joshua Nichols <nichoj@gentoo.org>

	* src/eselect/java-nsplugin.eselect: Applied
	  java-config-2.0.26-nsplugin_ls_stderr.patch

2006-08-24 14:46  Joshua Nichols <nichoj@gentoo.org>

	* config/symlink-tools: Applied java-config-2.0.26-jconsole.patch

2006-08-24 00:52  Joshua Nichols <nichoj@gentoo.org>

	* src/java_config/EnvironmentManager.py: Patch to fix bug #144856.

2006-08-10 00:07  Joshua Nichols <nichoj@gentoo.org>

	* .: Moved axxo branch to trunk.

2006-07-17 20:20  Joshua Nichols <nichoj@gentoo.org>

	* Moved java-config into projects.

2006-07-07 02:25  Joshua Nichols <nichoj@gentoo.org>

	* Updated setup.py for version

2006-07-07 02:19  Joshua Nichols <nichoj@gentoo.org>

	* Patch from caster for better error handling.

2006-07-07 02:17  Joshua Nichols <nichoj@gentoo.org>

	* Allow vm to be set by number

2006-07-03 17:13  Joshua Nichols <nichoj@gentoo.org>

	* Added fix to correctly mark current plugin.

2006-06-30 12:06  Joshua Nichols <nichoj@gentoo.org>

	* Added java-nsplugin.eselect

2006-06-28 14:25  Joshua Nichols <nichoj@gentoo.org>

	* Updates and tweaks to run-java-tool.

2006-06-28 13:33  Joshua Nichols <nichoj@gentoo.org>

	* Undoing unintentional changes

2006-06-28 13:29  Joshua Nichols <nichoj@gentoo.org>

	* Renamed java-config.1 to java-config-2.1, and updated setup.py
	  accordingly.

2006-06-24 22:26  Joshua Nichols <nichoj@gentoo.org>

	* Applied a forgotten patch.

2006-06-24 18:55  Joshua Nichols <nichoj@gentoo.org>

	* Updated setup.py to reflect eselect rename.

2006-06-24 18:34  Joshua Nichols <nichoj@gentoo.org>

	* Renamed java to java-vm.

2006-05-02 03:50  Joshua Nichols <nichoj@gentoo.org>

	* Moved java-config to java-config-2, and updated to reflect it.
	  Updated version to 2.0.22.

2006-05-02 03:44  Joshua Nichols <nichoj@gentoo.org>

	* Cosmetic fixes

2006-03-24 13:56  Joshua Nichols <nichoj@gentoo.org>

	* Some fixes regarding the version number.

2006-02-08 01:42  Joshua Nichols <nichoj@gentoo.org>

	* Made a number of changes needed for migration-overlay.

2006-01-26 13:40  Thomas Matthijs <axxo@gentoo.org>

	* remove me

2005-12-25 19:02  Thomas Matthijs <axxo@gentoo.org>

	* add some useless comments, and make it python-updater proof

2005-12-25 10:00  Thomas Matthijs <axxo@gentoo.org>

	* dont default to ecj

2005-11-26 16:07  Petteri Räty <betelgeuse@gentoo.org>

	* Documented --library in the man page.

2005-11-22 13:26  Thomas Matthijs <axxo@gentoo.org>

	* stupid stupid

2005-11-14 16:34  Petteri Räty <betelgeuse@gentoo.org>

	* java-config now outputs help when called without arguments.

2005-11-14 10:12  Thomas Matthijs <axxo@gentoo.org>

	* fix normpath

2005-11-14 10:02  Thomas Matthijs <axxo@gentoo.org>

	* fix -jar stuff

2005-11-10 13:39  Thomas Matthijs <axxo@gentoo.org>

	* fix manual loc

2005-11-09 19:34  Petteri Räty <betelgeuse@gentoo.org>

	* A little code cleanup. Hope it works.

2005-11-06 18:00  Thomas Matthijs <axxo@gentoo.org>

	* jre|jdk -> java

2005-11-06 17:55  Thomas Matthijs <axxo@gentoo.org>

	* jdk/jre-home is silly

2005-10-29 12:42  Thomas Matthijs <axxo@gentoo.org>

	* Dont assume uid 0 has super powers

2005-10-29 12:23  Thomas Matthijs <axxo@gentoo.org>

	* note

2005-10-26 08:01  Thomas Matthijs <axxo@gentoo.org>

	* for nichoj

2005-10-21 18:47  Thomas Matthijs <axxo@gentoo.org>

	* fix

2005-10-10 20:53  Thomas Matthijs <axxo@gentoo.org>

	* add example virtuals file

2005-10-10 20:50  Thomas Matthijs <axxo@gentoo.org>

	* virtual packages support

2005-10-09 18:09  Thomas Matthijs <axxo@gentoo.org>

	* Move location of the vm symlink, and symlink too JAVA_HOME

2005-09-25 20:18  Thomas Matthijs <axxo@gentoo.org>

	* ##

2005-09-24 18:43  Thomas Matthijs <axxo@gentoo.org>

	* updates

2005-09-24 00:06  Thomas Matthijs <axxo@gentoo.org>

	* 2.0.5

2005-09-23 20:53  Thomas Matthijs <axxo@gentoo.org>

	* i no longer think this was a good idea

2005-09-14 20:42  Thomas Matthijs <axxo@gentoo.org>

	* new java-config: saner launcher, still needs improving

2005-09-12 07:00  Thomas Matthijs <axxo@gentoo.org>

	* revert some of my previous changes

2005-09-11 14:29  Thomas Matthijs <axxo@gentoo.org>

	* Do not let --select_vm fallback onto system/user vm, exit with
	  non-zero on error

2005-07-27 11:00  Thomas Matthijs <axxo@gentoo.org>

	* Complain loudly about vm files that are missing some vars

2005-07-26 22:16  Thomas Matthijs <axxo@gentoo.org>

	* fix argument passing

2005-07-24 19:46  Thomas Matthijs <axxo@gentoo.org>

	* config mask env.d/java

2005-07-24 10:50  Thomas Matthijs <axxo@gentoo.org>

	* gentoo_javacflags

2005-07-24 10:49  Thomas Matthijs <axxo@gentoo.org>

	* allow cwd too be changed

2005-07-24 10:49  Thomas Matthijs <axxo@gentoo.org>

	* bugfix on empty cp

2005-07-19 14:55  Thomas Matthijs <axxo@gentoo.org>

	* bugfix

2005-07-18 19:34  Thomas Matthijs <axxo@gentoo.org>

	* take into account GENTOO_VM when finding active vm

2005-07-16 19:57  Thomas Matthijs <axxo@gentoo.org>

	* spaces betwean args goood

2005-07-16 09:24  Thomas Matthijs <axxo@gentoo.org>

	* echo ran cmd

2005-07-16 09:23  Thomas Matthijs <axxo@gentoo.org>

	* add fallback on vm

2005-07-15 14:14  Thomas Matthijs <axxo@gentoo.org>

	* fix

2005-07-15 14:12  Thomas Matthijs <axxo@gentoo.org>

	* fix

2005-07-15 10:51  Thomas Matthijs <axxo@gentoo.org>

	* fix

2005-07-15 10:45  Thomas Matthijs <axxo@gentoo.org>

	* fix redirect

2005-07-12 18:52  Thomas Matthijs <axxo@gentoo.org>

	* fix fallback + allow jre+jdk provides

2005-07-12 15:10  Thomas Matthijs <axxo@gentoo.org>

	* nuke my blocker code, since portage doesnt support it in a way
	  that is usefull

2005-07-12 12:59  Thomas Matthijs <axxo@gentoo.org>

	* prefix launcher vars/avoid collisions

2005-07-11 22:51  Thomas Matthijs <axxo@gentoo.org>

	* bugfix

2005-07-11 22:31  Thomas Matthijs <axxo@gentoo.org>

	* handle versions better

2005-07-11 19:49  Thomas Matthijs <axxo@gentoo.org>

	* getjar

2005-07-10 14:39  Thomas Matthijs <axxo@gentoo.org>

	* bugfix: find_vm didn't check vm type

2005-07-10 13:20  Thomas Matthijs <axxo@gentoo.org>

	* undo last commit

2005-07-10 13:13  Thomas Matthijs <axxo@gentoo.org>

	* fix bug where it would print empty line when pkg can't be found

2005-07-09 01:21  Thomas Matthijs <axxo@gentoo.org>

	* add some deprecation notices

2005-07-08 22:29  Thomas Matthijs <axxo@gentoo.org>

	* Lotsa classpath fixes, make it actualy work

2005-07-08 20:17  Thomas Matthijs <axxo@gentoo.org>

	* change help output to make sense

2005-07-08 20:14  Thomas Matthijs <axxo@gentoo.org>

	* bugfix

2005-07-08 20:06  Thomas Matthijs <axxo@gentoo.org>

	* bug fix

2005-07-08 19:52  Thomas Matthijs <axxo@gentoo.org>

	* sort jdk/jre

2005-07-08 14:52  Thomas Matthijs <axxo@gentoo.org>

	* fix bug

2005-07-08 13:11  Thomas Matthijs <axxo@gentoo.org>

	* welcome launcher (needs some cleaning but 'works')

2005-07-07 18:05  Thomas Matthijs <axxo@gentoo.org>

	* oeps, comment debug code

2005-07-07 18:04  Thomas Matthijs <axxo@gentoo.org>

	* fix bug i introduced

2005-07-07 14:19  Thomas Matthijs <axxo@gentoo.org>

	* fix imports, and get_active_vm

2005-07-07 13:46  Thomas Matthijs <axxo@gentoo.org>

	* exit 1 on failure

2005-07-07 11:53  Thomas Matthijs <axxo@gentoo.org>

	* Group file parser, rename versioantor to versionmanager

2005-07-04 18:41  Thomas Matthijs <axxo@gentoo.org>

	* id -u ->>

2005-07-04 18:35  Thomas Matthijs <axxo@gentoo.org>

	* change user|system args to show/set too be more the eselect way

2005-07-04 12:07  Thomas Matthijs <axxo@gentoo.org>

	* eselect module to switch system and user vm

2005-07-04 10:57  Thomas Matthijs <axxo@gentoo.org>

	* fix symlink creation to work for user-vm

2005-07-03 23:15  Thomas Matthijs <axxo@gentoo.org>

	* simple lil script to make a rls

2005-07-03 22:59  Thomas Matthijs <axxo@gentoo.org>

	* update paths for symlink things

2005-07-03 22:01  Thomas Matthijs <axxo@gentoo.org>

	* bah i'm making a mess :((( no sleep == bad, added symlink stuff
	  in previous rev, there files where missing

2005-07-03 22:00  Thomas Matthijs <axxo@gentoo.org>

	* remove symlink branch

2005-07-03 16:34  Thomas Matthijs <axxo@gentoo.org>

	* nuke run-java-tool

2005-07-03 14:08  Thomas Matthijs <axxo@gentoo.org>

	* typo

2005-07-03 14:04  Thomas Matthijs <axxo@gentoo.org>

	* cleanup

2005-07-03 14:03  Thomas Matthijs <axxo@gentoo.org>

	* group env-update calls

2005-07-03 13:56  Thomas Matthijs <axxo@gentoo.org>

	* fix classpath setting

2005-07-03 13:41  Thomas Matthijs <axxo@gentoo.org>

	* remove some code duplication

2005-07-03 13:24  Thomas Matthijs <axxo@gentoo.org>

	* bye

2005-07-02 12:41  Thomas Matthijs <axxo@gentoo.org>

	* catch some exceptions for when the active vm can't be found

2005-07-02 11:41  Thomas Matthijs <axxo@gentoo.org>

	* make sure line is stripped, and change the loop a bit

2005-07-02 11:14  Thomas Matthijs <axxo@gentoo.org>

	* Split on the first occurence of =

2005-07-01 20:49  Thomas Matthijs <axxo@gentoo.org>

	* runtime stuff

2005-07-01 14:58  Thomas Matthijs <axxo@gentoo.org>

	* dont import java_config

2005-06-30 14:50  Thomas Matthijs <axxo@gentoo.org>

	* add option to select a diffrend-vm

2005-06-30 14:21  Thomas Matthijs <axxo@gentoo.org>

	* more style fixes

2005-06-30 13:56  Thomas Matthijs <axxo@gentoo.org>

	* 4spaces are way better then 3

2005-06-30 13:40  Thomas Matthijs <axxo@gentoo.org>

	* Only load what is needed when it is needed, store the active vm
	  in the envmanagaer

2005-06-30 13:39  Thomas Matthijs <axxo@gentoo.org>

	* format fix

2005-06-28 09:22  Thomas Matthijs <axxo@gentoo.org>

	* handle wrong deps better

2005-06-24 19:28  Thomas Matthijs <axxo@gentoo.org>

	* added todo

2005-06-23 11:26  Thomas Matthijs <axxo@gentoo.org>

	* change how things are displayed a bit

2005-06-23 11:26  Thomas Matthijs <axxo@gentoo.org>

	* make name/file functions actualy work and not get overriden by
	  the string objects

2005-06-22 19:54  Thomas Matthijs <axxo@gentoo.org>

	* remove debug statement

2005-06-22 19:50  Thomas Matthijs <axxo@gentoo.org>

	* fix vm selection bug(code needs some cleanup)

2005-06-21 22:44  Thomas Matthijs <axxo@gentoo.org>

	* have wildcards now

2005-06-21 22:20  Thomas Matthijs <axxo@gentoo.org>

	* willcards

2005-06-21 21:25  Thomas Matthijs <axxo@gentoo.org>

	* formatting fix, and allow wildcards in prefs

2005-06-21 16:16  Thomas Matthijs <axxo@gentoo.org>

	* move things around a bit more ;)

2005-06-21 16:11  Thomas Matthijs <axxo@gentoo.org>

	* cleanup - move authors to AUTHORS, update copy right, move
	  Changelog to ChangeLog

2005-06-21 15:42  Thomas Matthijs <axxo@gentoo.org>

	* should have working get_vm with prefernses now

2005-06-21 15:41  Thomas Matthijs <axxo@gentoo.org>

	* str the message, so the iteration always works

2005-06-20 23:34  Thomas Matthijs <axxo@gentoo.org>

	* config files

2005-06-20 23:22  Thomas Matthijs <axxo@gentoo.org>

	* kill more deploy

2005-06-20 21:41  Thomas Matthijs <axxo@gentoo.org>

	* mainly commiting for structure changes, things don't work yet

2005-06-20 21:10  Thomas Matthijs <axxo@gentoo.org>

	* copy of trunk -r 190

2005-06-19 12:36  Thomas Matthijs <axxo@gentoo.org>

	* too everyone reading this, sleepy axxo says hi

2005-06-19 12:35  Thomas Matthijs <axxo@gentoo.org>

	* catch exception in callback

2005-06-19 00:02  Thomas Matthijs <axxo@gentoo.org>

	* print output of env-update

2005-06-18 23:51  Thomas Matthijs <axxo@gentoo.org>

	* correct the way env-update is run, add a general exception caller
	  around the option parsers so we catch all errors, removed
	  /etc/.java hack

2005-06-18 23:49  Thomas Matthijs <axxo@gentoo.org>

	* extend Exception

2005-06-18 15:34  Thomas Matthijs <axxo@gentoo.org>

	* add -E to shebang

2005-06-18 15:29  Thomas Matthijs <axxo@gentoo.org>

	* copied manual/tarball.sh from java-config cvs, made a java_config
	  module, stole the setup.py so we can easily create a snapshort

2005-04-22 04:09  Saleem Abdulrasool <compnerd@gentoo.org>

	* Updates to Preference Manager -- this may be all that is needed
	  for the time being for 1.5 unmasking

2005-04-21 02:57  Saleem Abdulrasool <compnerd@gentoo.org>

	* Preferences Management Code --- Tree is broken

2005-04-19 18:28  Saleem Abdulrasool <compnerd@gentoo.org>

	* Removed #!/usr/bin/python from files; these are not executables!

2005-04-19 15:30  Saleem Abdulrasool <compnerd@gentoo.org>

	* Reverting to the proper #!/usr/bin/python

2005-04-09 19:46  Saleem Abdulrasool <compnerd@gentoo.org>

	* Nicer message

2005-04-09 19:43  Saleem Abdulrasool <compnerd@gentoo.org>

	* Dont die silently!

2005-04-09 18:49  Saleem Abdulrasool <compnerd@gentoo.org>

	* More fixes :-p

2005-04-09 18:47  Saleem Abdulrasool <compnerd@gentoo.org>

	* Fixing OutputFormatter

2005-04-09 18:38  Saleem Abdulrasool <compnerd@gentoo.org>

	* Fixing dropped -E

2005-04-09 18:34  Saleem Abdulrasool <compnerd@gentoo.org>

	* Updated to callbacks

2005-03-19 21:51  Saleem Abdulrasool <compnerd@gentoo.org>

	* Render touchups!

2005-03-19 21:47  Saleem Abdulrasool <compnerd@gentoo.org>

	* Fixing the goofy mistakes

2005-03-12 22:38  Saleem Abdulrasool <compnerd@gentoo.org>

	* All options are now implemented!

2005-03-12 00:11  Saleem Abdulrasool <compnerd@gentoo.org>

	* Wee cleaning the classpaths!

2005-03-05 22:39  Saleem Abdulrasool <compnerd@gentoo.org>

	* More fixing

2005-03-05 22:33  Saleem Abdulrasool <compnerd@gentoo.org>

	* Yey! I broke it and fixed it all on my own! :-d

2005-03-05 22:15  Saleem Abdulrasool <compnerd@gentoo.org>

	* Oh the joys of breaking things -- time to see what I can break
	  now :-d

2005-02-22 02:01  Saleem Abdulrasool <compnerd@gentoo.org>

	* Modified JavaErrors calls
	  Removed unneeded import in Package.py

2005-02-13 18:54  Saleem Abdulrasool <compnerd@gentoo.org>

	* Fixes from axxo

2005-02-13 17:20  Saleem Abdulrasool <compnerd@gentoo.org>

	* imports

2005-02-13 17:18  Saleem Abdulrasool <compnerd@gentoo.org>

	* Fixed minor issue with setting the user vm; added library
	  functionality from axxo; cleaned up path usage; added more TODOs

2005-02-13 07:09  Saleem Abdulrasool <compnerd@gentoo.org>

	* Added broken -s support; Need to determine if user is running
	  csh' or sh' and set vm options appropriately

2005-02-13 02:42  Saleem Abdulrasool <compnerd@gentoo.org>

	* More Fixes! -g fixed

2005-02-13 02:17  Saleem Abdulrasool <compnerd@gentoo.org>

	* More fixes!! -P works too now, I think -- well in default mode
	  atleast

2005-02-13 01:18  Saleem Abdulrasool <compnerd@gentoo.org>

	* aye, stuid commas

2005-02-13 00:44  Saleem Abdulrasool <compnerd@gentoo.org>

	* Fixing more boogs, Bug #22390 Resolved

2005-02-12 17:49  Saleem Abdulrasool <compnerd@gentoo.org>

	* Replicate old java-config behavior

2005-02-12 17:44  Saleem Abdulrasool <compnerd@gentoo.org>

	* OutputFormatter is hungry, it wants spaces, so gave it some food
	  :-p

2005-02-12 17:42  Saleem Abdulrasool <compnerd@gentoo.org>

	* Speeling Error!

2005-02-12 17:33  Saleem Abdulrasool <compnerd@gentoo.org>

	* Replicating old behavior

2005-02-12 06:10  Saleem Abdulrasool <compnerd@gentoo.org>

	* -p functional

2005-02-12 04:10  Saleem Abdulrasool <compnerd@gentoo.org>

	* java-config -L fixed!!

2005-02-11 19:35  Saleem Abdulrasool <compnerd@gentoo.org>

	* java-config -L broken, -l added

2005-02-11 18:41  Saleem Abdulrasool <compnerd@gentoo.org>

	* -g added

2005-02-11 05:43  Saleem Abdulrasool <compnerd@gentoo.org>

	* Updates galore

2005-02-10 17:49  Saleem Abdulrasool <compnerd@gentoo.org>

	* OutputFormatter now does '% ' as % for axxo ;-)

2005-02-10 12:17  Thomas Matthijs <axxo@gentoo.org>

	* get_vm: machine is a str now

2005-02-09 23:05  Saleem Abdulrasool <compnerd@gentoo.org>

	* Stupid JAVA WS

2005-02-09 22:40  Saleem Abdulrasool <compnerd@gentoo.org>

	* More stuff

2005-02-09 22:28  Saleem Abdulrasool <compnerd@gentoo.org>

	* Removed VM validity checking; Fixed consistency with previous
	  behavior on SET WM

2005-02-09 22:23  Saleem Abdulrasool <compnerd@gentoo.org>

	* I swear I didnt bork it!

2005-02-09 20:22  Thomas Matthijs <axxo@gentoo.org>

	* make set_vm and valid_vm work on a vm

2005-02-09 19:22  Saleem Abdulrasool <compnerd@gentoo.org>

	* axxo++; .isdigit exception prevention

2005-02-09 18:59  Saleem Abdulrasool <compnerd@gentoo.org>

	* syntax errors--

2005-02-09 18:48  Saleem Abdulrasool <compnerd@gentoo.org>

	* axxo++

2005-02-09 18:36  Saleem Abdulrasool <compnerd@gentoo.org>

	* Removed Exception Logic

2005-02-09 17:59  Saleem Abdulrasool <compnerd@gentoo.org>

	* axxo++

2005-02-09 17:20  Saleem Abdulrasool <compnerd@gentoo.org>

	* Fixing bug #60606

2005-02-07 22:59  Saleem Abdulrasool <compnerd@gentoo.org>

	* More updates to env stuff!

2005-02-06 13:02  Thomas Matthijs <axxo@gentoo.org>

	* tweak what is put in the env file

2005-02-05 17:29  Saleem Abdulrasool <compnerd@gentoo.org>

	* More Updates!

2005-02-04 23:53  Saleem Abdulrasool <compnerd@gentoo.org>

	* Resolving bug #60606

2005-02-04 23:16  Saleem Abdulrasool <compnerd@gentoo.org>

	* More fixes

2005-02-04 23:04  Saleem Abdulrasool <compnerd@gentoo.org>

	* Added alerts.

2005-02-04 22:45  Saleem Abdulrasool <compnerd@gentoo.org>

	* Added the env file that the script expects (minor changes to the
	  existing ones

2005-02-04 22:33  Saleem Abdulrasool <compnerd@gentoo.org>

	* Look mama! I can set the system VM!!

2005-02-04 19:01  Saleem Abdulrasool <compnerd@gentoo.org>

	* Fix a stupid testing thing

2005-02-04 18:12  Saleem Abdulrasool <compnerd@gentoo.org>

	* Ladies and germs, we now have the ability to validate VMs!!

2005-01-12 21:04  Saleem Abdulrasool <compnerd@gentoo.org>

	* Java VM Listing enabled :-d

2005-01-09 23:40  Saleem Abdulrasool <compnerd@gentoo.org>

	* List the VMs ye mighty and grand java-config!

2005-01-09 22:22  Saleem Abdulrasool <compnerd@gentoo.org>

	* java-config --exec sexiness!

2005-01-09 21:50  Saleem Abdulrasool <compnerd@gentoo.org>

	* Moved java-config.py to java-config; We not have a vm list inside
	  the EnvMgr! :-d

2005-01-05 18:39  Saleem Abdulrasool <compnerd@gentoo.org>

	* Attempt at "gentooization" of classes

2005-01-04 23:26  Saleem Abdulrasool <compnerd@gentoo.org>

	* Updated email address

2005-01-04 23:08  Karl Trygve Kalleberg <karltk@gentoo.org>

	* Moved outside the portree.

2005-01-03 07:57  Saleem Abdulrasool <compnerd@gentoo.org>

	* Added support for JRE_HOME and JDK_HOME

2005-01-03 06:36  Saleem Abdulrasool <compnerd@gentoo.org>

	* JavaExceptions.py : Initial Import

2005-01-03 06:33  Saleem Abdulrasool <compnerd@gentoo.org>

	* EnvironmentManager : FindExec
	  java-config : Added functionality to find the java{c?}
	  executables
	  OutputFormatter : _PrintError functionality

2005-01-03 00:42  Saleem Abdulrasool <compnerd@gentoo.org>

	* Updated Environment File list; Fixes search path

2005-01-03 00:27  Saleem Abdulrasool <compnerd@gentoo.org>

	* Initial svn import