| 12
 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
 
 | java-package (0.64) unstable; urgency=medium
  * Team upload.
  * Update java-package Depends for time64 transition (Closes: #1067929)
 -- tony mancill <tmancill@debian.org>  Sun, 07 Apr 2024 10:05:17 -0700
java-package (0.63) unstable; urgency=medium
  [ Emmanuel Bourg ]
  * Team upload.
  * Removed support for the browser plugin (Closes: #779725)
  * Suggest openjdk-8-jre instead of openjdk-7-jre
  * Use salsa.debian.org Vcs-* URLs
  [ Sven Hoexter ]
  * Add override_dh_strip to disable striping the binaries.
    Breaks debugging tools like jmap. (Closes: #852342)
  [ Jelmer Vernooij ]
  * Use secure copyright file specification URI.
  [ tony mancill ]
  * Replace dependency on libgl1-mesa-glx (Closes: #941808)
  * Add lintian override for debhelper dependency
  * Use dh sequencer in debian/rules
  * Use debhelper 12 for Build-Depends
  * Use dh sequencer in debian/rules
  * Bump Standards-Version to 4.4.1
 -- tony mancill <tmancill@debian.org>  Sun, 10 Sep 2023 08:32:31 -0700
java-package (0.62) unstable; urgency=medium
  * Team upload.
  * Bump Standards-Version to 3.9.8 (no changes)
  * Add --distribution option to override hard-coded value of unstable.
    Thank you to Martin Gerhard Loschwitz for the patch. (Closes: #819537)
  * Add --jce-policy <policy.zip> option to build with JCE policy file.
    Thank you to Alex Brown for the patch. (Closes: #833301)
  * Freshen the manpage example for JDK 8.
  * Implement --priority <priority> option. (Closes: #820857)
  * Bump Standards-Version of generated source package to 3.9.8.
  * Generated JDK/JRE packages now depend on java-common (Closes: #799974)
 -- tony mancill <tmancill@debian.org>  Sat, 10 Sep 2016 17:39:56 -0700
java-package (0.61) unstable; urgency=medium
  * Team upload.
  * Bump Standards-Version to 3.9.7 (no changes)
  * Use package name plus architecture as directory in /usr/lib/jvm
  * Add support for server JRE (Closes: #776389)
  * Update Vcs-Browser and Vcs-Git to use HTTPS
 -- Benjamin Drung <benjamin.drung@profitbricks.com>  Fri, 18 Mar 2016 17:50:51 +0100
java-package (0.60) unstable; urgency=medium
  * Team upload.
  [ Emmanuel Bourg ]
  * Added jcontrol to the command line alternatives (Closes: #799370)
  * Fixed the detection of the latest Java 8 documentation archives.
  * Fixed the dh_shlibdeps error when generating a documentation package
    (Closes: #753071)
  * Changed the architecture of the documentation packages from any to all.
  * Changed the section of the documentation packages to non-free/doc
  * Disabled dh_strip_nondeterminism when generating the Java packages
    to speed up the build and fix a corruption issue (Closes: #806463)
  [ tony mancill ]
  * Update the package long description.
  * Add build-essential as a dependency and drop the (now redundant)
    recommends on gcc. (Closes: #787809)
  * Use du --apparent-size when checking the size of the unpacked
    distribution. (Closes: #794401)
 -- Emmanuel Bourg <ebourg@apache.org>  Mon, 30 Nov 2015 14:23:05 +0100
java-package (0.59) unstable; urgency=medium
  * Team upload.
  * Upload to unstable.
  * Add following dependencies to address build failures for dpkg-shlibdeps
    errors during make-jpkg of JDK/JRE:
    libgl1-mesa-glx libfontconfig1 libxslt1.1 libxtst6 libxxf86vm1 libgtk2.0-0
    (Closes: #782132)
 -- tony mancill <tmancill@debian.org>  Sat, 16 May 2015 13:46:27 -0700
java-package (0.58) experimental; urgency=medium
  [ Francesc Zacarias ]
  * New --with-system-certs option to use the system keystore (Closes: #776395)
  [ Emmanuel Bourg ]
  * Removed the generated package mistakenly included in the source package
    (Closes: #779727)
 -- Emmanuel Bourg <ebourg@apache.org>  Thu, 05 Mar 2015 00:09:05 +0100
java-package (0.57) experimental; urgency=medium
  * Team upload.
  * Include Java 8 in the help message of make-jpkg (Closes: #775977)
  * Provide all runtimes since Java 5, thanks to Laurens Blankers
    (Closes: #775987)
  * Added more command line tool alternatives: jmc and jvisualvm
    (Closes: #676877)
  * Standards-Version updated to 3.9.6 (no changes)
 -- Emmanuel Bourg <ebourg@apache.org>  Sun, 25 Jan 2015 00:02:59 +0100
java-package (0.56) unstable; urgency=medium
  * Team upload.
  * Do not Build-Depends libavcodec53 and libavformat53 for Java 8.
    Thanks to Chris Jester-Young for the patch. (Closes: #751974)
  * Set the urcency of the guest package to medium.
 -- Benjamin Drung <benjamin.drung@profitbricks.com>  Fri, 20 Jun 2014 11:10:45 +0200
java-package (0.55) unstable; urgency=medium
  [ tony mancill ]
  * Team upload.
  * Add lsb-release to Depends (used in make-jpkg).
  * Apply patch to honor --revision argument.
    Thanks to Alberto Caso Palomino. (Closes: #743919)
  [ Emmanuel Bourg ]
  * Bumped the Standards-Version of the generated package to 3.9.5
  * Use debhelper level 9 in the generated package
  [ Benjamin Drung ]
  * Add a debian/rules file to the generated source package.
  * Use dpkg-buildpackage to build the guest package.
  * Add ${misc:Depends} to the guest dependency.
  * Add --source option to build a source package instead of a binary deb
    package. (Closes: #745762)
  * Replace lsb_release call by dpkg-vendor call.
  * Convert copyright file content to UTF-8 for guest debian/copyright.
  * Remove trailing spaces from copyright file.
  * Create build depends for JDK guest package.
 -- Benjamin Drung <benjamin.drung@profitbricks.com>  Tue, 17 Jun 2014 20:41:39 +0200
java-package (0.54) unstable; urgency=medium
  * Team upload.
  * Added support for ARM VFP/hard-float JDK releases.
    Thanks to Christopher Huhn <C.Huhn@gsi.de> (Closes: #724455)
  * Added more command line tool alternatives: jcmd, jdeps, jhat, jrunscript,
    schemagen, wsgen, wsimport and xjc
  * Standards-Version updated to 3.9.5 (no changes)
  * Removed the suggested dependency on openjdk-6-jre
  * Switch to debhelper level 9
 -- Emmanuel Bourg <ebourg@apache.org>  Mon, 24 Mar 2014 18:44:58 +0100
java-package (0.53) unstable; urgency=low
  * Team upload.
  * Added support for early access releases (Closes: #721136)
  * Added support for GA and FCS releases
  * Excluded the fxavcodecplugin libraries used by JavaFX from the dependency
    calculation performed by dh_shlibdeps to avoid errors (Closes: #687075)
  * Updated the package description and debian/README.Debian:
    - no longer recommend openjdk-6
    - mention the compatibility with Java 8
  * Removed 'Replaces: ${j2se_package}debian' from the generated control file
  * Adjusted the disk space required to unpack the Java 8 documentation
  * Updated the manpages for Java 8
  * Updated debhelper level to 7
  * debian/rules: Use dh_prep instead of dh_clean -k
  * Removed the recommended dependency on libstdc++5 from the generated
    control file (used by the now unsupported IBM JDK 5)
  * Removed the recommended dependency on libgtk1.2 from the generated
    control file (removed from Squeeze)
  * Removed the recommended dependency on libx11-6 and libasound2 from
    the generated control file (these dependencies are already injected
    by dh_shlibdeps)
  * Removed the references to "Java 2" from the description of the generated
    JRE package
  * Changed the short description of the generate packages to match
    the official name
 -- Emmanuel Bourg <ebourg@apache.org>  Tue, 10 Sep 2013 14:42:43 +0200
java-package (0.52) unstable; urgency=low
  [ Sylvestre Ledru ]
  * Team upload
  * Upload to unstable
  * Ack the NMU of David Prévot (thanks!)
  * Standards-Version updated to version 3.9.4
  * Remove obsolete variable from the changelog
  * Add support of ARM upstream binary by James Page and Matthias Vill.
    Thanks guys! (Closes: #687375)
  * Change the installation path from
    /usr/lib/jvm/jdk-6.38-oracle-x64 or /usr/lib/jvm/jdk-7.10-oracle-x64
    to
    /usr/lib/jvm/jdk-6-oracle-x64 and /usr/lib/jvm/jdk-7-oracle-x64
    Thanks to Constantin Makshin for the patch (Closes: #696227)
  [ Cédric Pineau ]
  * Fix lintian errors and warnings
  [ Gabriele Giacone ]
  * Add {mozilla,firefox}-javaplugin.so for update-java-alternatives.
  * Fix plugin directories. Closes: #686216
  [ Emmanuel Bourg ]
  * Switched to the 3.0 (native) package format
  * debian/control: Use canonical URLs for the Vcs-* fields
  * debian/copyright: Switched to the Machine-readable format 1.0
  * Updated the manpages to reflect the latest naming changes
  * Removed the unused provided dependencies (j2sdk<version>, j2re<version>)
  * Provide the java<version-1>-runtime and java<version-2>-runtime dependencies
    (Closes: #691063)
  * Provide the java<version>-sdk dependencies to match the openjdk package
  * Use the upstream versioning scheme (i.e 7u13 instead of 7.13)
    to match the convention used by the new openjdk packages
  * Renamed the script files (j2sdk->jdk, j2re->jre, j2se->javase)
 -- Sylvestre Ledru <sylvestre@debian.org>  Wed, 05 Jun 2013 13:43:55 +0200
java-package (0.51~exp1) experimental; urgency=low
  * Add firefox-javaplugin.so alternative Closes: #673670 and LP: #1024368
  * Add java5 and 6-{runtime|sdk|...} to the provides line in generated packages Closes: #684993 and LP: #995655
  * Drop installation debconf note Closes: #685082
  * Correct handling of amd64 in oracle-jdk6.1->4 and improve error message when used with unknown archives
  * Add support for earlier oracle-jdk6 version
  [Emmanuel Bourg]
  * Improved detection of the JRE/JDK version (supports 2 digits Java 7 updates) Closes: #597294
  * Brand and naming cleanup
  * Documentation directory changed to be /usr/share/doc/oracle-javaV-doc (for oracle)
  [Joerg Schirottke]
  * Add mozilla-javaplugin.so alternative
 -- Cédric Pineau <cedric.pineau@gmail.com>  Sat, 18 Aug 2012 11:00:34 +0200
java-package (0.50+nmu2) unstable; urgency=high
  * Non-maintainer upload.
  * Allow two digits in Java 7 updates. Closes: #597294, #698108
 -- David Prévot <taffit@debian.org>  Tue, 15 Jan 2013 15:06:26 -0400
java-package (0.50+nmu1) unstable; urgency=low
  * Non-maintainer upload.
  * Drop installation debconf note. Closes: #685082
 -- David Prévot <taffit@debian.org>  Thu, 06 Sep 2012 18:38:03 -0400
java-package (0.50) unstable; urgency=low
  * Java-package reset for reintroduction in debian (removal of all
    previously supported jvm, global refactoring).
  * Add support for Oracle Java 6 (update >= 10)
  * Add support for Oracle Java 7
  * Add support for .jinfo file (update-java-alternatives tool)
  * Use jdk included jre binaries (jdk/jre/bin/*)
  * Print usage information on install
  [ Sylvestre Ledru ]
  * Long description removed
  * debian-rules-missing-recommended-target removed
  * maintainer-script-lacks-debhelper-token removed
  * Declare the debian/compat to 7 to avoid warnings
  [ Michael Koch ]
  * Remove Java plugins for all browsers (Closes: #367887).
  * Add support for Sun Java 6 Update XX (Closes: #514364).
 -- Cédric Pineau <cedric.pineau@gmail.com>  Thu, 22 Dec 2011 11:42:13 +0100
java-package (0.42) unstable; urgency=low
  * Provide java*-runtime-headless and java*-sdk names for generated
    packages.
  * Recommend dpkg-dev and gcc. Closes: #281766, #405814.
 -- Matthias Klose <doko@debian.org>  Sat, 02 Aug 2008 12:10:52 +0200
java-package (0.41) unstable; urgency=low
  * Added support for new SUN JDK/JRE for amd64 downloads. Thanks to
    Artyom Gavrichenkov for the initial patch.
 -- Michael Koch <konqueror@gmx.de>  Fri, 21 Mar 2008 17:20:35 +0100
java-package (0.40) unstable; urgency=low
  * Add support for ibm-java2-sdk-5.0-6.0-linux-$arch.tgz. Closes: #462399
    Thanks to Evgeni Dobrev for the patch.
  * Fixed spelling error in long description: debian -> Debian.
 -- Michael Koch <konqueror@gmx.de>  Thu, 24 Jan 2008 22:48:46 +0100
java-package (0.39) unstable; urgency=low
  * Added support for IBM JDK 6.0 final release.
  * Updated Standard-Version to 3.7.3.
  * Updated debhelper level to 5.
 -- Michael Koch <konqueror@gmx.de>  Tue, 18 Dec 2007 07:38:34 +0100
java-package (0.38) unstable; urgency=low
  * Mention SUN JDK 6 in REAME.Debian. Closes: #448258.
  * Fixed typo when creating version number for SUN JDK 6. Closes: #451935.
  * Fix handling of symlinks for ControlPanel, HtmlConverter and java-rmi.cgi
    from SUN JDK 6. Closes: #448351.
 -- Michael Koch <konqueror@gmx.de>  Fri, 30 Nov 2007 00:03:50 +0100
java-package (0.37) unstable; urgency=low
  * Added libstdc++5 to Recommends of generated package. Closes: #446334.
 -- Michael Koch <konqueror@gmx.de>  Thu, 25 Oct 2007 22:45:42 +0200
java-package (0.36) unstable; urgency=low
  * Fixed package description to include more supported JDKs.
    Closes: #447615, #447617.
 -- Michael Koch <konqueror@gmx.de>  Wed, 24 Oct 2007 09:56:52 +0200
java-package (0.35) unstable; urgency=low
  * Use 'date -R' instead of the deprecated '822-date'. Closes: #441229.
  * Fix generation of .changes file. Closes: #332643.
    Thanks to Christoph Goehre for the patch.
  * Add possibility to add a configured revision to the version.
    Closes: #442246. Thanks to Christoph Goehre again for the patch.
 -- Michael Koch <konqueror@gmx.de>  Fri, 14 Sep 2007 17:28:13 +0200
java-package (0.34) unstable; urgency=low
  * Fixed SUN JDK on amd64. Closes: #439221.
 -- Michael Koch <konqueror@gmx.de>  Fri, 24 Aug 2007 00:41:54 +0200
java-package (0.33) unstable; urgency=low
  * Fixed postinst scripts for SUN JDK 1.4, 5 and 6. Closes: #435632.
 -- Michael Koch <konqueror@gmx.de>  Thu, 02 Aug 2007 18:43:40 +0200
java-package (0.32) unstable; urgency=low
  * Added support for iceweasel. Closes: #433445.
  * Fix dangling links for SUN Java 5. Closes: #305053.
  * Depend on libx11-6 and libasound2. Closes: #289004.
  * Fix building on ia64. Closes: #355465.
 -- Michael Koch <konqueror@gmx.de>  Thu, 19 Jul 2007 22:51:31 +0200
java-package (0.31) unstable; urgency=low
  * Reapplied changes from 0.28 to 0.29. Closes: 322843.
 -- Michael Koch <konqueror@gmx.de>  Tue, 10 Jul 2007 08:16:14 +0200
java-package (0.30) unstable; urgency=low
  * Added support for SUN JDK 6u2 (and following updates).
  * Added support for ibm-java2-jre-5.0-5.0-linux-ppc.tgz.
    Thanks to B. Zhang.
 -- Michael Koch <konqueror@gmx.de>  Sun, 08 Jul 2007 09:33:29 +0200
java-package (0.29) unstable; urgency=low
  * Added support for SUN Java 6 and IBM Java 6.
    Closes: #322843, #402642, #418592, #425508, #430026.
  * Added myself to Uploaders.
 -- Michael Koch <konqueror@gmx.de>  Tue, 26 Jun 2007 17:40:04 -0100
java-package (0.28) unstable; urgency=low
  * Modified to reflect migration to Subversion
  * Bumped standards to version 3.7.2, no changes
  * Corrected test for AMD64 architecture during plug-in detection
  * Corrected detected version for IBM Java 5 JDK on AMD64 (Closes: #345775)
  * Repaired alternatives handling for IBM Java 5 JREs and JDKs
    (Closes: #338569)
  * Corrected pathing for alternatives installation for Mozilla and
    Firefox plugins (Closes: #341751)
  * Relaxed architectural restrictions on plugin alternative
    installation for IBM Java 5 JREs and JDKs (Closes: #343837)
  * Added plugin installation for the new packaging of Firefox 1.5 and
    later (Closes: #341749)
  * Modified warning suppression for dh_shlibdeps to accommodate
    changes in dpkg-dev (Closes: #354427)
  * Added quotes to variable tests for maintainer name and email
    (Closes: #342623)
  * Refactored architecture evaluation to eliminate repetition and
    evaluate DEB_BUILD_GNU_TYPE correctly for i486-linux-gnu
  * Removed dependency on 'coreutils | stat' from control file, as
    the dependency is satisfied within essential (Closes: #370002)
 -- Barry Hawkins <barry@alltc.com>  Mon, 26 Jun 2006 11:19:08 -0400
java-package (0.27) unstable; urgency=low
  * Added support for IBM Java2 5.0 JREs and JDKs (Closes: #337129)
  * Corrected missing alternatives links for all JREs and JDKs
    (Closes: #317492)
  * Added conditional wrapping around dh_compress to account for
    JRE/JDKs that do not ship manpages (Closes: 301738)
  * Removed java-common from Provides: for JRE and JDK packages.
 -- Barry Hawkins <barry@bytemason.org>  Tue, 08 Nov 2005 12:16:24 -0500
java-package (0.26) unstable; urgency=low
  * Update standards version to 3.6.2
  * Resolve issues with powerpc-linux support detection (Closes: #317671)
  * Added support for Blackdown 1.4.2+02 release (Closes: #316831)
  * Added support for packaging Sun JDK documentation (Closes: #272971)
  * Modified make-jpkg behavior to default the generated packages'
    name and email address for the maintainer to Debian Java Maintainers
    (Closes: #325554)
 -- Barry Hawkins <barry@bytemason.org>  Thu, 18 Aug 2005 00:43:17 -0400
java-package (0.25) unstable; urgency=low
  * Cope with dpkg's new way of expressing architectures (Closes: #313555)
  * Re-exec with fakeroot if needed (Closes: #310132)
 -- Jeroen van Wolffelaar <jeroen@wolffelaar.nl>  Sun, 10 Jul 2005 18:50:40 +0200
java-package (0.24) unstable; urgency=low
  * Added plugin alternatives support for i386 IBM JREs and JDKs
  * Corrected pathing for plugin alternatives to reflect difference in
    layout between JREs and JDKs for Sun and Blackdown (Closes: #305219,
    #301806)
 -- Barry Hawkins <barry@bytemason.org>  Wed, 21 Apr 2005 01:02:03 -0400
java-package (0.23.1) experimental; urgency=low
  * Added architecture-specific pathing for plugin alternatives for
    Blackdown 1.3 and 1.4 JREs and JDKs
 -- Barry Hawkins <barry@bytemason.org>  Wed, 06 Apr 2005 00:03:40 -0500
java-package (0.23) unstable; urgency=low
  * Further expanded 1.3.1 Blackdown JRE/JDK support for i386
  * Added architecture-specific pathing for plugin alternatives for
    Sun 1.4 and 1.5 JREs and JDKs (Closes: #301806)
  * Added recommends for system elements required by applets and
    graphical user interface elements (Closes: #300817)
  * Jeroen van Wolffelaar:
    + Fixed packages description to not have too long lines, and make the 3
      items an enumeration
 -- Barry Hawkins <barry@bytemason.org>  Fri, 01 Apr 2005 00:36:40 -0500
java-package (0.22.1) experimental; urgency=low
  * Corrected IBM and Blackdown JRE/JDK file size specifications
  * Added support for additional 1.3.1 Blackdown JREs and JDKs for i386,
    powerpc (Closes: #301092)
  * Added installation of javaws alternative for Sun 1.5 JREs and JDKs
    (Closes: #300303)
 -- Barry Hawkins <barry@bytemason.org>  Thu, 24 Mar 2005 13:20:18 -0500
java-package (0.22) unstable; urgency=low
  * Corrected IBM JRE/JDK scripts to accurately reflect the supported
    IBM JDKs and JREs in the generated SUPPORTED file
 -- Barry Hawkins <barry@alltc.com>  Fri, 18 Mar 2005 10:21:53 -0500
java-package (0.21) unstable; urgency=low
  * Enable support for IBM JDKs and JREs for x86, amd64, powerpc,
    powerpc64, and s390 architectures, based upon a patch by Rico
    Schiekel (Closes: #264137)
  * Enable suppport for Blackdown 1.3.1 JDK and JRE for PowerPC
    architecture. (Closes: #296205)
  * Update documentation and to reflect current supported JDKs and JREs
 -- Barry Hawkins <barry@alltc.com>  Mon, 14 Mar 2005 03:18:39 -0500
java-package (0.20) unstable; urgency=low
  * Make the postinst & rm for generated packages #!/bin/bash, as we use
    bash-specific features (Closes: #292179)
  * Drop the df output parsing, use '/usr/bin/stat' instead (Closes: #293487,
    #289006, #293350)
  * Drop the now obsolete peer stuff from the source package
  * Change priorities, 313 for 1.3, 314 for 1.4, etc (Closes: #292451)
  * Don't dh_strip, fiddling with upstream's binaries apparantly breaks stuff
    (Closes: #291238)
 -- Jeroen van Wolffelaar <jeroen@wolffelaar.nl>  Tue, 08 Feb 2005 15:04:51 +0100
java-package (0.19) unstable; urgency=low
  The "Joshua Kwan <joshk@debian.org> rocks!" release.
  Joshua Kwan:
  * Unclutter Debian build system and rework package slightly so that
    *debian packages are not needed anymore. The necessary files will be
    included in the generated packages. (Closes: #291145, #289245, #284779)
  * Add support for Blackdown 1.4.2+01 build. (Closes: #285405)
  * Fix support for Sun 1.5.0 amd64 builds due to typo. (Closes: #290879)
  * Mozilla browser plugin name changed in 1.4.2 versions. Detect and correct.
    (Closes: #273730)
  * Use --block-size=1M instead of -BM. (Closes: #289005, #291161)
  * Disable support for Sun JDK 1.3 due to its dependencies on libraries
    that are simply not available anymore. (Closes: #272972)
  * Fix up short description a little bit.
  * Bump Standards-Version to 3.6.1 (no changes)
  * Be a bit more conservative with the real-root test.
  * Remove last j2se-package references.
  * Change Suggests on fakeroot to a Depends because it is worthless both
    as real root and as a normal user without fakeroot.
  Jeroen van Wolffelaar:
  * Use DEBFULLNAME, DEBNAME and DEBEMAIL if available, and don't ask for
    those values in that case. (Closes: #279653)
  * Updated documentation regarding dropped Sun 1.3 support
  * Work around multiline df output caused by long device names
    (Closes: #289006)
  * Add Replaces: for the generated packages on their *debian counterparts
 -- Jeroen van Wolffelaar <jeroen@wolffelaar.nl>  Tue, 25 Jan 2005 00:05:06 +0100
java-package (0.18) unstable; urgency=low
  * Added myself to Uploaders
  * Fix security hole (inscure temp file creation) plus lots of needless I/O
    in free disk checking function
  * Added support for Sun's JDK/JRE 1.5 patch levels, based on a patch by
    Peter Marschall <peter@adpm.de> (Closes: #286718, #287857)
  * Bail out if running as real root (works around the evil parts of Sun's
    install script that unconditionally writes to /etc, see #266273, #280707)
  * Fix typo in j2re.sh that apparantly with some versions of
    bash/dpkg/whatever cause package build failure (Closes: #281780, #282902)
  * Reduce minimum expected size a bit Sun's 1.5.0 amd64 package, it was set
    too high (Closes: #284033)
  * Substitute package version number at build time in the make-jpkg
    executable (Closes: #282221)
  * Added a README.Debian explaining the existance of make-jpkg and what
    binary packages are supported and where to get them. Thanks Thijs
    Kinkhorst for the draft (Closes: #283362)
  * Added automatically-generated file SUPPORTED that lists all binary
    filenames that are supported, thanks Alex Owen <owen@cus.org.uk> for the
    idea (Closes: #275296)
 -- Jeroen van Wolffelaar <jeroen@wolffelaar.nl>  Mon,  3 Jan 2005 18:47:47 +0100
java-package (0.17) unstable; urgency=low
  * added a patch for detecting the architecture (Closes: #274844,
    #270949, #271846). This patch should also close this one (Closes:
    #280685).
 -- Arnaud Vandyck <avdyk@debian.org>  Fri, 12 Nov 2004 17:28:38 +0100
java-package (0.16) unstable; urgency=low
  * added myself as an uploader.
  * Carlos already closed the support for 1.5 request but it seems he did
    not upload the package (Closes: #277088).
 -- Arnaud Vandyck <avdyk@debian.org>  Wed, 10 Nov 2004 16:38:44 +0100
java-package (0.15) unstable; urgency=low
  * lib/sun-j2re.sh: Added support for JRE 1.5.0 (aka "Java 5.0").
  * lib/sun-j2sdk.sh: Added support for Java SDK 1.5.0.
 -- Carlos Laviola <claviola@debian.org>  Mon, 11 Oct 2004 21:08:59 -0300
java-package (0.14) unstable; urgency=low
  * debian/control: Commented out the lines that generate the Debian-specific
    packages, thus making alternatives available.
    - Also made all of the generated packages depend on their Debian-specific
    counterparts by default.  (Closes: #266671)
 -- Carlos Laviola <claviola@debian.org>  Mon, 13 Sep 2004 03:38:31 -0300
java-package (0.13) unstable; urgency=low
  * References to j2se-package are gone.  (Closes: #267642)
  * Added support for Blackdown Java 1.4.2 RC1 JRE/SDK.  (Closes: #267643)
 -- Carlos Laviola <claviola@debian.org>  Mon, 13 Sep 2004 03:17:54 -0300
java-package (0.12) unstable; urgency=low
  * remove to contrib because this package depend on non-free J2SE.
 -- Takashi Okamoto <tora@debian.org>  Tue,  3 Aug 2004 00:37:13 +0900
java-package (0.11) unstable; urgency=low
  * change package name java-package and the command build package is
    make-jpkg.
 -- Takashi Okamoto <tora@debian.org>  Sat, 31 Jul 2004 15:07:36 +0900
java-package (0.10) unstable; urgency=low
  * change package name mpkg-j2se.
  * not use *-j2[re|sdk]debian package. Instead of this, add package
    dependency to generated package. This reduce the installation for
    such extra package.
  * SUN's jdk1.5 beta2 support.
 -- Takashi Okamoto <tora@debian.org>  Sun, 18 Jul 2004 13:53:36 +0900
java-package (0.9) unstable; urgency=low
  * more generic support for j2re1.3.1/j2sdk1.3.1 from SUN.
  * add alternative for jarsigner (in j2sdk1.4 and j2sdk1.5 from SUN).
 -- Hubert Schmid <ude2@z42.de>  Sun, 23 May 2004 23:35:14 +0200
java-package (0.8) unstable; urgency=low
  * java plugin: support for mozilla-firefox.
 -- Hubert Schmid <ude2@z42.de>  Tue,  4 May 2004 22:39:39 +0200
java-package (0.7) unstable; urgency=low
  * Optionally create .changes file.
  * Add command line options: --help, --version, --full-name,
    --email, --changes.
  * Add environment variables: J2SE_PACKAGE_FULL_NAME,
    J2SE_PACKAGE_EMAIL.
 -- Hubert Schmid <ude2@z42.de>  Sat, 27 Mar 2004 23:01:08 +0100
java-package (0.6) unstable; urgency=low
  * More generic support for Java2 1.4.2 from SUN.
 -- Hubert Schmid <ude2@z42.de>  Thu, 11 Mar 2004 20:39:51 +0100
java-package (0.5) unstable; urgency=low
  * NEW: build Blackdown J2RE 1.4.1 (gcc-2.95) and J2SDK 1.4.1 (gcc-2.95).
  * NEW: support for SUN J2RE 1.5.0 beta, SUN J2SDK 1.5.0 beta.
 -- Hubert Schmid <ude2@z42.de>  Sat,  7 Feb 2004 21:57:09 +0100
java-package (0.4) unstable; urgency=low
  * Added support for: SUN J2RE 1.4.2_03, SUN J2SDK 1.4.2_03
 -- Hubert Schmid <ude2@z42.de>  Thu, 15 Jan 2004 22:27:52 +0100
java-package (0.3) unstable; urgency=low
  * Added support for: Blackdown J2RE 1.3, 1.4, J2SDK 1.3, 1.4
  * Removed usage of "du --apparent-size". This should fix a problem
    with old fileutils.
 -- Hubert Schmid <ude2@z42.de>  Sun,  9 Nov 2003 21:13:38 +0100
java-package (0.2) unstable; urgency=low
  * Added support for: Sun J2RE 1.3, Sun J2SDK 1.3, Sun J2SDK 1.4
  * Moved peer packages into this source package.
 -- Hubert Schmid <ude2@z42.de>  Thu, 30 Oct 2003 00:10:01 +0100
java-package (0.1) unstable; urgency=low
  * Initial Release.
 -- Hubert Schmid <j2se-package@z42.de>  Sun, 26 Oct 2003 20:06:57 +0100
 |