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
|
josm (0.0.svn14760+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
* Add license & copyright for AppStream metadata.
-- Bas Couwenberg <sebastic@debian.org> Tue, 05 Feb 2019 07:06:28 +0100
josm (0.0.svn14620+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Bump Standards-Version to 4.3.0, no changes.
* Refresh patches.
* Add license & copyright for junit-toolbox sources.
* Bump minimum required jmapviewer version to 2.9.
-- Bas Couwenberg <sebastic@debian.org> Tue, 01 Jan 2019 10:36:34 +0100
josm (0.0.svn14460+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Drop license & copyright for gnu/getopt sources, removed upstream.
* Refresh patches.
* Update filenames for desktop file, icons, etc.
-- Bas Couwenberg <sebastic@debian.org> Wed, 28 Nov 2018 08:01:38 +0100
josm (0.0.svn14382+dfsg-2) unstable; urgency=medium
* Re-enable OpenJFX support, available for OpenJDK 11 again.
-- Bas Couwenberg <sebastic@debian.org> Sat, 03 Nov 2018 08:13:20 +0100
josm (0.0.svn14382+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Use embedded svgsalamander for setImageDataInlineOnly symbol.
* Add license & copyright for svgsalamander sources.
* Refresh patches.
* Remove obsolete jars from CLASSPATH.
-- Bas Couwenberg <sebastic@debian.org> Mon, 29 Oct 2018 10:42:53 +0100
josm (0.0.svn14289+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Bump Standards-Version to 4.2.1, no changes.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Tue, 02 Oct 2018 07:20:09 +0200
josm (0.0.svn14178+dfsg-1) unstable; urgency=medium
* New hotfix tested snapshot.
See: #900912
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Wed, 22 Aug 2018 20:56:22 +0200
josm (0.0.svn14163+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Bump Standards-Version to 4.2.0, no changes.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Sat, 18 Aug 2018 22:24:22 +0200
josm (0.0.svn14066+dfsg-2) unstable; urgency=medium
* Drop autopkgtest to test installability.
(closes: #905118)
* Add lintian override for testsuite-autopkgtest-missing.
-- Bas Couwenberg <sebastic@debian.org> Tue, 31 Jul 2018 19:27:00 +0200
josm (0.0.svn14066+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Mon, 30 Jul 2018 18:39:05 +0200
josm (0.0.svn14026+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Drop svn-r14000_fix-16462-NPE.patch, included upstream.
Refresh remaining patches.
-- Bas Couwenberg <sebastic@debian.org> Mon, 09 Jul 2018 07:41:57 +0200
josm (0.0.svn13996+dfsg-3) unstable; urgency=medium
* Bump Standards-Version to 4.1.5, no changes.
* Add upstream patch to fix NPE.
See: https://josm.openstreetmap.de/ticket/16474
-- Bas Couwenberg <sebastic@debian.org> Sun, 08 Jul 2018 16:43:06 +0200
josm (0.0.svn13996+dfsg-2) unstable; urgency=medium
* Drop remove_https_remote_control2.patch, ant fixed in Debian.
-- Bas Couwenberg <sebastic@debian.org> Tue, 03 Jul 2018 18:06:10 +0200
josm (0.0.svn13996+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
* Add upstream patch to disable HTTPS support in remote control.
ant (1.10.3-2) broke inclusion of sun.security classes.
See: https://josm.openstreetmap.de/ticket/16451
-- Bas Couwenberg <sebastic@debian.org> Tue, 03 Jul 2018 07:11:36 +0200
josm (0.0.svn13878+dfsg-1) unstable; urgency=medium
* New hotfix tested snapshot.
-- Bas Couwenberg <sebastic@debian.org> Thu, 31 May 2018 07:11:52 +0200
josm (0.0.svn13860+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
* Rename java-9 patch to no-java-8, because of openjdk-10.
-- Bas Couwenberg <sebastic@debian.org> Mon, 28 May 2018 07:42:50 +0200
josm (0.0.svn13710+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Bump Standards-Version to 4.1.4, no changes.
* Refresh patches.
* Update copyright years for Andrey Ponomarenko's ABI Laboratory.
* Remove empty data/security directory.
* Strip trailing whitespace from control & rules files.
-- Bas Couwenberg <sebastic@debian.org> Mon, 07 May 2018 08:11:37 +0200
josm (0.0.svn13576+dfsg-3) unstable; urgency=medium
* Add patch to remove java-8 JREs from list of possible Java commands.
* Update Vcs-* URLs for Salsa.
* Drop override for vcs-deprecated-in-debian-infrastructure.
-- Bas Couwenberg <sebastic@debian.org> Tue, 03 Apr 2018 20:33:05 +0200
josm (0.0.svn13576+dfsg-2) unstable; urgency=medium
* Bump Java dependencies from 8 to 9.
java9-runtime is required when built with java9-sdk.
-- Bas Couwenberg <sebastic@debian.org> Wed, 28 Mar 2018 07:21:38 +0200
josm (0.0.svn13576+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
* Disable OpenJFX, not available for OpenJDK 9.
* Add lintian override for vcs-deprecated-in-debian-infrastructure,
* Bump minimum required jmapviewer version to 2.7.
-- Bas Couwenberg <sebastic@debian.org> Tue, 27 Mar 2018 07:25:20 +0200
josm (0.0.svn13500+dfsg-2) unstable; urgency=medium
* Explicitly build with OpenJDK 8, OpenJFX not available for OpenJDK 9.
See: #893348
-- Bas Couwenberg <sebastic@debian.org> Sun, 18 Mar 2018 08:54:30 +0100
josm (0.0.svn13500+dfsg-1) unstable; urgency=medium
* New hotfix tested snapshot.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Sun, 04 Mar 2018 19:02:35 +0100
josm (0.0.svn13478+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Update watch file to not use URL on Alioth (will be shutdown).
* Bump minimum required jmapviewer version to 2.6.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Thu, 01 Mar 2018 16:08:28 +0100
josm (0.0.svn13367+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Update license for translations from BSD-3-Clause to GPL-2+ (same as JOSM).
* Bump Standards-Version to 4.1.3, no changes.
* Update copyright-format URL to use HTTPS.
* Add license & copyright for XZ Java sources.
* Refresh patches.
* Bump minimum required jmapviewer version to 2.5.
-- Bas Couwenberg <sebastic@debian.org> Mon, 29 Jan 2018 07:55:09 +0100
josm (0.0.svn13265+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Update copyright years for JSON sources.
* Refresh patches.
* Bump Standards-Version to 4.1.2, no changes.
-- Bas Couwenberg <sebastic@debian.org> Sun, 31 Dec 2017 20:46:08 +0100
josm (0.0.svn13170+dfsg-2) unstable; urgency=medium
* Bump minimum required jmapviewer version to 2.4.
-- Bas Couwenberg <sebastic@debian.org> Mon, 27 Nov 2017 08:29:53 +0100
josm (0.0.svn13170+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Update copyright holders for metadata-extractor sources.
* Drop 'Update multipolygon' patch, included upstream.
Refresh remaining patches.
-- Bas Couwenberg <sebastic@debian.org> Sun, 26 Nov 2017 17:45:24 +0100
josm (0.0.svn13053+dfsg-2) unstable; urgency=medium
* Add patch to fix 'Update multipolygon' action.
-- Bas Couwenberg <sebastic@debian.org> Wed, 01 Nov 2017 20:04:04 +0100
josm (0.0.svn13053+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Remove BTS link from About > Info tab.
* Refresh patches.
* Strip trailing whitespace from control & changelog files.
-- Bas Couwenberg <sebastic@debian.org> Mon, 30 Oct 2017 16:44:52 +0100
josm (0.0.svn12921+dfsg-1) unstable; urgency=medium
* New hotfix tested snapshot.
-- Bas Couwenberg <sebastic@debian.org> Tue, 03 Oct 2017 23:30:24 +0200
josm (0.0.svn12914+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Change priority from extra to optional.
* Bump Standards-Version to 4.1.1, changes: priority.
* Update license & copyright for AlphanumComparator.java.
* Drop bashisms.patch, applied upstream. Refresh remaining patches.
* Add lintian overrides for copyright-year-in-future false positives.
-- Bas Couwenberg <sebastic@debian.org> Tue, 03 Oct 2017 14:58:18 +0200
josm (0.0.svn12712+dfsg-2) unstable; urgency=medium
* Add patch to fix bashism in josm launcher.
-- Bas Couwenberg <sebastic@debian.org> Sun, 03 Sep 2017 19:42:36 +0200
josm (0.0.svn12712+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Sun, 03 Sep 2017 11:23:11 +0200
josm (0.0.svn12545+dfsg-1) unstable; urgency=medium
* New hotfix tested snapshot.
* Drop AppSteam patch, included upstream. Refresh other patches.
-- Bas Couwenberg <sebastic@debian.org> Sun, 13 Aug 2017 11:58:50 +0200
josm (0.0.svn12542+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
* Drop license & copyright for DNSNameFix.java, removed upstream.
* Bump minimum required jmapviewer version to 2.3.
* Add upstream patch to fix AppSteam metadata.
-- Bas Couwenberg <sebastic@debian.org> Sun, 30 Jul 2017 22:58:36 +0200
josm (0.0.svn12450+dfsg-1) unstable; urgency=medium
* New hotfix tested snapshot.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Mon, 03 Jul 2017 07:46:45 +0200
josm (0.0.svn12443+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
* Add openjfx to (build) dependencies for audio mapping support.
* Bump Standards-Version to 4.0.0, no changes.
* Add autopkgtest to test installability.
* Use pkg-info.mk variables instead of dpkg-parsechangelog output.
-- Bas Couwenberg <sebastic@debian.org> Sat, 01 Jul 2017 11:46:14 +0200
josm (0.0.svn12275+dfsg-1) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 18 Jun 2017 11:33:51 +0200
josm (0.0.svn12275+dfsg-1~exp1) experimental; urgency=medium
* New hotfix tested snapshot.
-- Bas Couwenberg <sebastic@debian.org> Mon, 29 May 2017 17:12:45 +0200
josm (0.0.svn12271+dfsg-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Add DNSNameFix.java to copyright file.
* Refresh patches.
* Bump minimum required jmapviewer version to 2.2.
-- Bas Couwenberg <sebastic@debian.org> Mon, 29 May 2017 07:12:30 +0200
josm (0.0.svn12039+dfsg-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Drop webkit-image-* packages from Recommends.
Yahoo imagery is no longer available (since 13 September 2011).
* Bump minimum required jmapviewer version to 2.1.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Wed, 03 May 2017 07:39:18 +0200
josm (0.0.svn11826+dfsg-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Drop josm-plugins from Recommends, package will be removed.
See also: https://josm.openstreetmap.de/ticket/7483
* Add josm-plugins to Conflicts, as it Breaks newer josm revisions.
* Add proj-data to dependencies for grid shift files.
* Update copyright for japicc.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Mon, 03 Apr 2017 08:04:55 +0200
josm (0.0.svn11639+dfsg-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Update public-domain i18n scripts in copyright file.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Tue, 28 Feb 2017 07:56:18 +0100
josm (0.0.svn11526+dfsg-1~exp1) experimental; urgency=medium
* New hotfix tested snapshot.
-- Bas Couwenberg <sebastic@debian.org> Thu, 02 Feb 2017 19:38:39 +0100
josm (0.0.svn11514+dfsg-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Add license & copyright for OSM test data.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Tue, 31 Jan 2017 08:02:44 +0100
josm (0.0.svn11427+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Don't remove icons from JOSM source, icons from OSM SVN no longer used.
* Drop openstreetmap-map-icons dependency, icons included in JOSM now.
* Add license & copyright for preset icons.
* Drop 02-elemstyles.patch, openstreetmap-map-icons package no longer used.
-- Bas Couwenberg <sebastic@debian.org> Sat, 07 Jan 2017 23:52:18 +0100
josm (0.0.svn11223+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Use the Debian BTS instead of JOSM Trac in BugReportSender class.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Mon, 07 Nov 2016 08:01:23 +0100
josm (0.0.svn10966+dfsg-2) unstable; urgency=medium
* Fix 'Contributors' typo in copyright file.
* Update 06-move_data_out_of_jar.patch to also handle help-browser.css.
(closes: #838247)
-- Bas Couwenberg <sebastic@debian.org> Mon, 19 Sep 2016 16:42:27 +0200
josm (0.0.svn10966+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Drop Debian OpenStreetMap Team from Uploaders.
* Include epoch in default-jdk version requirement.
* Update copyright file, changes:
- Update copyright for src/com/drew/*
- Add license & copyright for japi-compliance-checker.pl
* Drop svn-r10789-fix-two-svg-files.patch, included upstream.
Refresh remaining patches.
* Drop unused override for incompatible-java-bytecode-format.
-- Bas Couwenberg <sebastic@debian.org> Tue, 06 Sep 2016 10:31:26 +0200
josm (0.0.svn10786+dfsg-2) unstable; urgency=medium
* Add patch to fix two SVG files, causing exception.
-- Bas Couwenberg <sebastic@debian.org> Fri, 12 Aug 2016 17:11:41 +0200
josm (0.0.svn10786+dfsg-1) unstable; urgency=medium
* New tested snapshot.
- switch to Java 8
* Update JDK & JRE dependencies to require at least version 1.8.
* Switch more URLs to HTTPS.
* Bump minimum required openstreetmap-map-icons-classic to 1:0.0.svn32805.
* Bump minimum required jmapviewer version to 2.0.
* Refresh patches.
* Update copyright file, changes:
- Drop license & copyright for FileDrop.java, removed upstream
-- Bas Couwenberg <sebastic@debian.org> Fri, 12 Aug 2016 15:17:12 +0200
josm (0.0.svn10526+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Use /etc/default/josm to configure Java options.
(LP: #287717)
* Require at least openstreetmap-map-icons-classic 1:0.0.svn32641.
* Drop 09-josm-default-options.patch, applied upstream.
Refresh remaining patches.
* Update copyright comment with updates from CONTRIBUTION file.
* Drop unused override for license-problem-json-evil false positive.
* Bump minimum required jmapviewer version to 1.17.
-- Bas Couwenberg <sebastic@debian.org> Tue, 12 Jul 2016 13:39:21 +0200
josm (0.0.svn10327+dfsg-1) unstable; urgency=medium
* New hotfix tested snapshot.
-- Bas Couwenberg <sebastic@debian.org> Mon, 06 Jun 2016 20:03:12 +0200
josm (0.0.svn10301+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Tue, 31 May 2016 21:58:08 +0200
josm (0.0.svn10168+dfsg-2) unstable; urgency=medium
* Use groovy instead of the deprecated groovy2.
(closes: #824189)
-- Bas Couwenberg <sebastic@debian.org> Fri, 13 May 2016 16:52:10 +0200
josm (0.0.svn10168+dfsg-1) unstable; urgency=medium
* New hotfix tested snapshot.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Wed, 04 May 2016 07:39:08 +0200
josm (0.0.svn10161+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Install additional icon sizes in hicolor theme.
* Bump Standards-Version to 3.9.8, changes:
additional icon sizes in hicolor theme.
* Update copyright years for translations.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Fri, 29 Apr 2016 22:30:48 +0200
josm (0.0.svn9979+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Sun, 13 Mar 2016 18:59:42 +0100
josm (0.0.svn9963+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Sat, 12 Mar 2016 15:05:21 +0100
josm (0.0.svn9900+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Update Vcs-Git URL to use HTTPS.
* Bump Standards-Version to 3.9.7, no changes.
* Update copyright file, changes:
- Add license & copyright for test validation routines
- Drop © character from copyright statements
* Refresh patches.
* Bump minimum required jmapviewer version to 1.15.
* Update missing-sources for overpass-wizard.
-- Bas Couwenberg <sebastic@debian.org> Tue, 01 Mar 2016 22:27:07 +0100
josm (0.0.svn9329+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Thu, 07 Jan 2016 21:27:22 +0100
josm (0.0.svn9229+dfsg-2) unstable; urgency=medium
* Fix custom-epsg file generation due to missing JMapViewer classes.
Empty file caused 'Unknown projection code' error at startup.
epsg build target now also includes packaged JARs in its classpath.
-- Bas Couwenberg <sebastic@debian.org> Fri, 01 Jan 2016 01:56:30 +0100
josm (0.0.svn9229+dfsg-1) unstable; urgency=medium
* New hotfix tested snapshot.
-- Bas Couwenberg <sebastic@debian.org> Thu, 31 Dec 2015 18:25:12 +0100
josm (0.0.svn9224+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Bump minimum required jmapviewer version to 1.14.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Thu, 31 Dec 2015 15:50:52 +0100
josm (0.0.svn9060+dfsg-2) unstable; urgency=medium
* Fix loading of translation files by using the absolute filesystem path.
(closes: #807751)
-- Bas Couwenberg <sebastic@debian.org> Sat, 12 Dec 2015 16:49:12 +0100
josm (0.0.svn9060+dfsg-1) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Tue, 24 Nov 2015 23:16:32 +0100
josm (0.0.svn9060+dfsg-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Drop 08-josm-alternatives.patch, applied upstream.
Refresh remaining patches.
* Bump minimum required jmapviewer version to 1.13.
-- Bas Couwenberg <sebastic@debian.org> Tue, 24 Nov 2015 09:51:39 +0100
josm (0.0.svn8969+dfsg-4) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Thu, 12 Nov 2015 11:39:03 +0100
josm (0.0.svn8969+dfsg-4~exp1) experimental; urgency=medium
* Use Noto instead of Droid fonts.
(closes: #804683)
-- Bas Couwenberg <sebastic@debian.org> Tue, 10 Nov 2015 21:52:28 +0100
josm (0.0.svn8969+dfsg-3) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Fri, 06 Nov 2015 10:37:38 +0100
josm (0.0.svn8969+dfsg-3~exp1) experimental; urgency=medium
* Add commons-codec.jar to classpath again, required for signpost-core.jar.
-- Bas Couwenberg <sebastic@debian.org> Wed, 04 Nov 2015 19:39:04 +0100
josm (0.0.svn8969+dfsg-2) unstable; urgency=medium
* Drop libandroid-json-org-java & libcommons-codec-java dependencies,
no longer required (since r6756 & r8149 respectively).
Thanks to Vincent Privat for the report.
-- Bas Couwenberg <sebastic@debian.org> Sat, 31 Oct 2015 14:17:00 +0100
josm (0.0.svn8969+dfsg-1) unstable; urgency=medium
* New tested snapshot.
* Drop patch applied upstream, refresh remaining patches.
* Update josm executable to support OpenJDK 8 & 9 too.
-- Bas Couwenberg <sebastic@debian.org> Fri, 30 Oct 2015 13:10:04 +0100
josm (0.0.svn8800+dfsg3-1) unstable; urgency=medium
* Don't mark the Debian package build as a local build in MANIFEST.MF.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 18 Oct 2015 13:41:32 +0200
josm (0.0.svn8800+dfsg3-1~exp1) experimental; urgency=medium
* Also remove OSX support from upstream source.
* Improve DEP3 patch headers, use HTTPS URLS in BTS patch.
* Re-enable i18n build for core translations.
-- Bas Couwenberg <sebastic@debian.org> Sat, 10 Oct 2015 23:12:39 +0200
josm (0.0.svn8800+dfsg2-1~exp1) experimental; urgency=medium
* New tested snapshot.
(closes: #785416, #785417)
* Add dependencies for commons-logging.
* Update copyright file.
* Update patches, drop disabled patches, use groovy2 package.
* Bump minimum required jmapviewer version to 1.11.
* Drop xjc command for removed wms-cache.xsd.
* Use embedded metadata-extractor for getFirstDirectoryOfType symbol.
* Add missing-sources for overpass-turbo-ffs.js & opening_hours.js.
* Use desktop file in favor of menu file per CTTE #741573.
* Install logo per Icon Theme Specification.
* Enable parallel builds.
* Update watch file and SVN URLs to use HTTPS.
-- Bas Couwenberg <sebastic@debian.org> Sat, 10 Oct 2015 00:00:53 +0200
josm (0.0.svn8159+dfsg1-2) unstable; urgency=medium
* Patch REVISION file to add Build-Name property for identification of the
Debian build. (closes: #789161)
* Update Vcs-Browser URL to use HTTPS.
-- Bas Couwenberg <sebastic@debian.org> Mon, 31 Aug 2015 21:35:05 +0200
josm (0.0.svn8159+dfsg1-1) unstable; urgency=medium
* Update branch in gbp.conf and Vcs-Git URL.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Mon, 01 Jun 2015 21:44:58 +0200
josm (0.0.svn8159+dfsg1-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Bump minimum required libmetadata-extractor-java to 2.7.2.
* Bump minimum required jmapviewer version to 1.07.
-- Bas Couwenberg <sebastic@debian.org> Wed, 01 Apr 2015 23:00:38 +0200
josm (0.0.svn8109+dfsg1-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Update my email to @debian.org address.
* Update copyright file, changes:
- Update copyright years
- Indent multiline copyright
- Add i18n/convmaps.pl, remove i18n/convwms.pl
* Bump minimum required jmapviewer version to 1.06, JOSM uses the new
TemplatedTMSTileSource() method introduced in JMapViewer 1.06.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Thu, 05 Mar 2015 19:23:59 +0100
josm (0.0.svn7995+dfsg1-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Drop runtime dependency on ant, its bzip2 support is no longer used.
* Refresh patches.
-- Bas Couwenberg <sebastic@xs4all.nl> Sun, 01 Feb 2015 20:00:18 +0100
josm (0.0.svn7906+dfsg2-1~exp1) experimental; urgency=medium
* New tested snapshot.
* Add (build) dependency on libcommons-compress-java,
its bzip2 support is now used instead of Apache Ant.
* Install upstream man page.
* Also remove Windows installer from upstream tarball.
* Refresh patches.
* Bump minimum requires jmapviewer version to 1.05, JOSM uses the
TMSFileCacheTileLoader class introduced in JMapViewer 1.05.
-- Bas Couwenberg <sebastic@xs4all.nl> Tue, 30 Dec 2014 19:09:10 +0100
josm (0.0.svn7778+dfsg1-1~exp2) experimental; urgency=medium
* Add alternative dependency on minimum required JRE.
* Update Vcs-* fields to use pkg-grass instead of pkg-osm,
and cgit instead of gitweb.
* Disable FTBFS causing translation in d/rules instead of removing it
in d/clean.
-- Bas Couwenberg <sebastic@xs4all.nl> Sun, 14 Dec 2014 13:49:10 +0100
josm (0.0.svn7778+dfsg1-1~exp1) experimental; urgency=medium
* New tested snapshot (7777) + next revision to include logo fix for Linux.
Thanks to Vincent Privat for the notification about the logo fix.
* Update watch file to use the pkg-grass JOSM Redirector.
* Update copyright file:
- Add comment with the GPL-2+/GPL-3+/Apache-2.0 information from LICENSE
file
- Correct license from GPL-3+ to GPL-2+ for JOSM
- Update JOSM contributors list
- Add License section for GPL-2 with Classpath exception and CDDL-1.1
- Add Files section for Glassfish JSON source using GPL-2 with Classpath
exception or CDDL-1.1
- Add License section for BSD-2-Clause
- Add Files section for openhours Javascript source using BSD-2-Clause
- Add License section for GPL-1+
- Add Files section for Diff source using GPL-1+
- Correct license from GPL-3+ to BSD-3-Clause for JOSM translations.
(LP: #1273178)
* Strip comments from translations, but preserve copyright header.
* Install the appstream appdata.xml file.
Thanks to Marcus Lundblad for the patch.
(closes: #770881)
* Add upstream metadata.
* Refresh patches.
-- Bas Couwenberg <sebastic@xs4all.nl> Wed, 10 Dec 2014 22:02:33 +0100
josm (0.0.svn7643+dfsg1-1) unstable; urgency=medium
* Bump Standards-Version to 3.9.6, no changes.
* Remove Java 6 support, JOSM now requires Java 7.
(closes: #708136)
* New tested snapshot.
(closes: #765752, #764781, #764096, #741070)
* Refresh patches.
* Add gbp.conf to use pristine-tar by default.
* Remove josm examples, start.html no longer included.
* Restructure control file with cme.
* Switch Maintainer from the Debian OpenStreetMap Team to the Debian
GIS Project.
* Add myself to Uploaders.
-- Bas Couwenberg <sebastic@xs4all.nl> Fri, 24 Oct 2014 18:31:19 +0200
josm (0.0.svn7480+dfsg1-1) unstable; urgency=medium
* Uploading to unstable
* New tested snapshot (Closes: #754254)
- removed embedded code copy of jmapviewer (Closes: #731029)
- removed embedded code copy of JSON-java under "good-not-evil"
non-free license (Closes: #740890. #760656)
- uses newer metadata-extractor (Closes: #753378)
* Bumped debhelper compatibility to >= 9
* Bumped Standards-Version to 3.9.5, no changes needed
* Dropped alternative dependency on obsolete JREs: openjdk-6-jre and
sun-java6-jre
* Added 04-use_system_jmapviewer.patch to avoid embedding parts of
jmapviewer in the final JOSM JAR
* Removed references to embedded jmapviewer and other files no more
distributed in debian/copyright
* De-fuzzed 00-build.patch
* Added overrides for lintian's experimental privacy-breach-generic
tag
* (Build-)Depend on jmapviewer (>= 1.02+svn30322.really+dfsg1), since
its API changed, and JOSM now depends on the new one
* Remove embedded fonts during repacking (and add dependency on
fonts-droid) (07-use_system_fonts.patch)
-- David Paleino <dapal@debian.org> Sun, 28 Sep 2014 14:13:01 +0200
josm (0.0.svn6687+dfsg1-1) experimental; urgency=low
* New development snapshot.
* Refresh patches to apply to the new upstream source.
* Build against libmetadata-extractor-java 2.6.4.
* Upload to experimental.
-- Andrew Shadura <andrewsh@debian.org> Wed, 15 Jan 2014 23:35:17 +0100
josm (0.0.svn6502+dfsg1-1) unstable; urgency=medium
[ David Paleino ]
* New tested snapshot (Closes: #725011)
* Patches refreshed to apply to new upstream source
[ Andrew Shadura ]
* Build against libmetadata-extractor-java 2.3.1.
-- Andrew Shadura <andrewsh@debian.org> Wed, 15 Jan 2014 16:46:44 +0100
josm (0.0.svn6115+dfsg1-1) unstable; urgency=low
[ David Paleino ]
* Fix hyphen-used-as-minus-sign in manpage.
[ Mònica Ramírez Arceda ]
* New tested snapshot (Closes: #708948).
* debian/control:
- Add myself to Uploaders.
- josm-l10n: Section field set to 'localization'.
* debian/rules: remove empty /usr/share/josm/images/styles directory.
* debian-copyright:
- Fix i18n/convplugins.pl file name.
- Fix license keyword for public domain files and add description.
* debian/josm.desktop: Add Keywords key.
* 01-bts.patch: Open Debian BTS URL when clicking "Report bug" button in
"Status Report" window.
-- Mònica Ramírez Arceda <monica@debian.org> Tue, 10 Sep 2013 18:01:37 +0200
josm (0.0.svn5759+dfsg1-1) experimental; urgency=low
* New tested snapshot.
* Make 06-move_data_out_of_jar.patch more generic, thanks to
Paul Hartmann for the patch. (Closes: #698608)
-- David Paleino <dapal@debian.org> Fri, 05 Apr 2013 10:29:44 +0200
josm (0.0.svn5608+dfsg1-2) unstable; urgency=low
* Updated manpage (Closes: #696692).
* Updated debian/copyright.
-- David Paleino <dapal@debian.org> Sat, 19 Jan 2013 14:52:22 +0100
josm (0.0.svn5608+dfsg1-1) unstable; urgency=low
* New tested snapshot (Closes: #695197).
* Update josm.desktop to make it work also in Unity
(Closes: #690585)
* Fixed patch to load images from the openstreetmap-map-icons
package (Closes: #693486).
* Move useful shareable data out of the jar.
* Split translations to josm-l10n package (Closes: #647744).
* Fix Vcs-* fields.
-- David Paleino <dapal@debian.org> Fri, 21 Dec 2012 00:00:28 +0100
josm (0.0.svn5576+dfsg1-1) unstable; urgency=low
* New tested snapshot.
* Added missing copyright information for src/org/jdesktop/* and
src/gnu/*.
* Strip comments from po-files, to save some space in the tarball
during repackaging.
-- David Paleino <dapal@debian.org> Tue, 13 Nov 2012 22:30:22 +0100
josm (0.0.svn5531+dfsg1-1) unstable; urgency=low
[ Giovanni Mascellani ]
* Remove myself from the uploader list, since I have no time
anymore to stay after this package.
[ David Paleino ]
* New tested snapshot (Closes: #685153)
- fixed exception when merging multiple layers (Closes: #683186)
* Don't prefer IPv4 stack anymore in josm wrapper script, since
it seems to be functional now (Closes: #654515)
* Patches refreshed to match new upstream code
* 06-handle_redacted_objects.patch and
07-handle_deleted_nodes_without_coordinates.patch dropped, were
backported from upstream
* Standards-Version bump to 3.9.4, no changes needed
-- David Paleino <dapal@debian.org> Wed, 10 Oct 2012 11:17:44 +0200
josm (0.0.svn5267+dfsg1-2) unstable; urgency=low
* Backported patches from upstream repository, to handle recent
OSM license change (Closes: #682315)
- 06-handle_redacted_objects.patch
- 07-handle_deleted_nodes_without_coordinates.patch
-- David Paleino <dapal@debian.org> Mon, 23 Jul 2012 10:16:59 +0200
josm (0.0.svn5267+dfsg1-1) unstable; urgency=low
* New tested snapshot
-- David Paleino <dapal@debian.org> Fri, 08 Jun 2012 20:58:08 +0200
josm (0.0.svn5210+dfsg1-1) unstable; urgency=low
* New tested snapshot
-- David Paleino <dapal@debian.org> Wed, 30 May 2012 09:57:48 +0200
josm (0.0.svn5181+dfsg1-1) unstable; urgency=low
* New tested snapshot
* Dropped Andreas Putzo and Petter Reinholdtsen from Uploaders,
since they've been inactive for long
* Updated debian/copyright
-- David Paleino <dapal@debian.org> Thu, 19 Apr 2012 12:30:11 +0200
josm (0.0.svn5047+dfsg1-1) unstable; urgency=low
* New tested snapshot
* Fix wrapper script to detect newer versions of OpenJDK
(Closes: #661942)
* Bump Standards-Version to 3.9.3, no changes needed
-- David Paleino <dapal@debian.org> Thu, 22 Mar 2012 18:05:23 +0100
josm (0.0.svn4878+dfsg1-1) unstable; urgency=low
* New tested snapshot
-- David Paleino <dapal@debian.org> Thu, 02 Feb 2012 11:11:35 +0100
josm (0.0.svn4667+dfsg1-3) unstable; urgency=low
* Gar, really drop libgdata-java (Closes: #657930)
-- David Paleino <dapal@debian.org> Tue, 31 Jan 2012 11:27:06 +0100
josm (0.0.svn4667+dfsg1-2) unstable; urgency=low
* Drop Build-Depends on libgdata-java
-- David Paleino <dapal@debian.org> Fri, 27 Jan 2012 17:51:49 +0100
josm (0.0.svn4667+dfsg1-1) unstable; urgency=low
* New upstream snapshot
* Fix jar generation: don't include .po files
-- David Paleino <dapal@debian.org> Mon, 26 Dec 2011 19:07:03 +0100
josm (0.0.svn4666+dfsg1-1) unstable; urgency=low
* New upstream snapshot (Closes: #652645)
* Fix dependency on OpenJDK 7 (Closes: #651731)
* Patches refreshed
-- David Paleino <dapal@debian.org> Mon, 19 Dec 2011 21:30:33 +0100
josm (0.0.svn4550+dfsg2-1) unstable; urgency=low
* Fix get-orig-source target to grab translations (Closes: #647721)
-- David Paleino <dapal@debian.org> Sat, 05 Nov 2011 18:23:31 +0100
josm (0.0.svn4550+dfsg1-1) unstable; urgency=low
* New upstream version (Closes: #647634)
* Added missing dependency on ant (Closes: #644449)
* Patches refreshed
-- David Paleino <dapal@debian.org> Sat, 05 Nov 2011 17:16:02 +0100
josm (0.0.svn4487+dfsg2-2) unstable; urgency=low
* Fix startup via "josm & exit", thanks to Alberto Fernández
(Closes: #578624)
-- David Paleino <dapal@debian.org> Tue, 11 Oct 2011 09:31:00 +0200
josm (0.0.svn4487+dfsg2-1) unstable; urgency=low
* New upstream release
* Patches refreshed to cleanly apply to new sources
* 100-fix_SlippyMapBBoxChooser.patch added: class with missing methods
and accessing protected members
-- David Paleino <dapal@debian.org> Sat, 08 Oct 2011 23:24:10 +0200
josm (0.0.svn4399+dfsg2-2) unstable; urgency=low
[ Damien Raude-Morvan ]
* Add missing dependency on commons-codec, fixing exceptions during
upload.
* Drop CLASSPATH setting from debian/josm.sh as Class-Path is already
set in josm.jar.
* Add support for openjdk-7.
-- David Paleino <dapal@debian.org> Wed, 28 Sep 2011 11:35:21 +0200
josm (0.0.svn4399+dfsg2-1) unstable; urgency=low
* Reintroduce ntf_r93_b.gsb in the package: its removal should be
better handled (Closes: #642976)
-- David Paleino <dapal@debian.org> Mon, 26 Sep 2011 17:45:22 +0200
josm (0.0.svn4399+dfsg1-1) unstable; urgency=low
[ Giovanni Mascellani ]
* New upstream release (closes: #636345).
* debian/patches:
- refreshed and modified according new upstream version
- descriptions improved
- 50-preferences_world_readable.patch: removed, integrated
upstream
* debian/rules:
- delete some autogenerated and non-free file from upstream SVN
in get-orig-source;
- generate some deleted autogenerated code.
* debian/README.source: added, with details about repackaging.
[ David Paleino ]
* Support multi-archified OpenJDK (Closes: #639853)
-- David Paleino <dapal@debian.org> Sun, 25 Sep 2011 22:20:02 +0200
josm (0.0.svn4064-3) unstable; urgency=low
* Build-Depend on default-jdk, that is used for compilation (closes:
#630561).
-- Giovanni Mascellani <gio@debian.org> Thu, 16 Jun 2011 11:12:33 +0200
josm (0.0.svn4064-2) unstable; urgency=low
* Fix Uploaders field
-- David Paleino <dapal@debian.org> Tue, 03 May 2011 19:11:54 +0200
josm (0.0.svn4064-1) unstable; urgency=low
* New upstream snapshot
* Patches refreshed to cleanly apply
* Switch Maintainer/Uploaders between pkg-grass and pkg-osm
* Repository moved under pkg-osm space
-- David Paleino <dapal@debian.org> Tue, 03 May 2011 17:26:25 +0200
josm (0.0.svn4021-1) unstable; urgency=low
* New upstream snapshot
* Standards-Version bump to 3.9.2, no changes needed
* Patches refreshed
-- David Paleino <dapal@debian.org> Fri, 15 Apr 2011 09:45:39 +0200
josm (0.0.svn3966-1) unstable; urgency=low
* New upstream snapshot
-- David Paleino <dapal@debian.org> Thu, 10 Mar 2011 11:05:30 +0100
josm (0.0.svn3961-1) unstable; urgency=low
[ Giovanni Mascellani ]
* Fixed icon installation.
* josm.desktop uses 128x128 PNG icon (josm.menu cannot because menu
specification requires an icon to ba at maximum 32x32).
[ David Paleino ]
* New upstream snapshot
* Patches refreshed
-- David Paleino <dapal@debian.org> Mon, 07 Mar 2011 21:55:20 +0100
josm (0.0.svn3751-4) unstable; urgency=low
* Fixed present icons searching even when they come from mappaint icons
collection (closes: #600726).
-- Giovanni Mascellani <gio@debian.org> Sun, 20 Feb 2011 11:34:31 +0100
josm (0.0.svn3751-3) unstable; urgency=low
* Use system proxy settings by default (closes: #610006).
-- Giovanni Mascellani <gio@debian.org> Sun, 16 Jan 2011 14:58:03 +0100
josm (0.0.svn3751-2) unstable; urgency=low
* Added recommends to webkit-image-gtk | webkit-image-qt
-- David Paleino <dapal@debian.org> Sat, 01 Jan 2011 23:41:45 +0100
josm (0.0.svn3751-1) unstable; urgency=low
* New upstream snapshot
* Plugins integrated in josm-core: slippymap, wmsplugin,
remotecontrol, imagery.
* Patches refreshed.
-- David Paleino <dapal@debian.org> Sat, 01 Jan 2011 19:16:33 +0100
josm (0.0.svn3701-1) unstable; urgency=low
* New upstream snapshot
-- David Paleino <dapal@debian.org> Wed, 08 Dec 2010 19:13:46 +0100
josm (0.0.svn3695-1) unstable; urgency=low
[ David Paleino ]
* New upstream snapshot
* debian/icons/*.xpm updated from the logo.png image
* debian/install:
- install debian/icons/josm.png in /usr/share/pixmaps. josm.png
is a symlink to upstream's logo.png (LP: #530014)
* debian/josm.desktop: move from Geoscience to Geography
(LP: #643205)
* debian/compat bumped to 8
* debian/patches/* refreshed
[ Giovanni Mascellani ]
* josm.sh:
- remove SUN Java 5, which isn't supperted any more;
- don't try to use OpenJDK 6 virtual machine if it's only headless
(closes: #603932).
-- David Paleino <dapal@debian.org> Mon, 06 Dec 2010 09:50:56 +0100
josm (0.0.svn3592-1) unstable; urgency=low
* New upstream snapshot
* debian/patches/:
- 10-build.patch, 50-preferences_world_readable.patch,
80-fix_images.patch refreshed to cleanly apply
-- David Paleino <dapal@debian.org> Sun, 10 Oct 2010 20:41:25 +0200
josm (0.0.svn3514-2) unstable; urgency=low
* debian/patches/90-fix_version.patch added, fix inconsistency
between code and upstream website. Thanks to Mario Izquierdo
(Closes: #598920)
* debian/control: use openjdk-6-jdk instead of default-jdk, to ease
sync to Ubuntu.
-- David Paleino <dapal@debian.org> Wed, 06 Oct 2010 10:34:40 +0200
josm (0.0.svn3514-1) unstable; urgency=low
* New upstream snapshot
* debian/patches/* refreshed to cleanly apply to the new code
* debian/patches/60-port_oauth_1.2.patch removed, merged upstream
* debian/control:
- Build-Depends on default-jdk bumped to >= 1.6
- Standards-Version bumped to 3.9.1, no changes needed
- drop alternative dependency on sun-java5-jre: Java 5 is no more
supported by upstream
-- David Paleino <dapal@debian.org> Tue, 07 Sep 2010 09:58:00 +0200
josm (0.0.svn3376-1) unstable; urgency=low
* New upstream snapshot
* debian/patches/80-fix_images.patch refreshed
-- David Paleino <dapal@debian.org> Sun, 18 Jul 2010 17:30:47 +0200
josm (0.0.svn3329-2) unstable; urgency=low
* OAuth support is now enabled
- debian/control: added Build-Depends on liboauth-signpost-java
- debian/rules: add signpost-core.jar to the CLASSPATH
- debian/patches/:
- series: 60-disable_oauth.patch disabled
- 10-build.patch: add signpost-core.jar to MANIFEST's Class-Path
- 60-port_oauth_1.2.patch added: port josm to signpost 1.2
* debian/README.Debian deleted, josm is a wrapper that uses the
alternatives system
* debian/control:
- Standards-Version bumped to 3.9.0, no changes needed
- added runtime dependency on liboauth-signpost-java
-- David Paleino <dapal@debian.org> Thu, 15 Jul 2010 15:25:54 +0200
josm (0.0.svn3329-1) unstable; urgency=low
[ David Paleino ]
* New upstream release
* debian/patches/* refreshed
* debian/rules converted to dh7
* debian/control:
- bumped debhelper build-dependency to >= 7.0.50~
- removed build-dependency on cdbs
* debian/compat bumped to 7
* debian/README.source removed
* debian/copyright: added myself to debian/*
[ Giovanni Mascellani ]
* My email address updated
-- David Paleino <dapal@debian.org> Tue, 15 Jun 2010 22:04:31 +0200
josm (0.0.svn3208-1) unstable; urgency=low
* New upstream release
* debian/patches/80-fix_images.patch added, use an empty image
(temporary fix, should really use images from
openstreetmap-map-icons-* packages, if available)
(Closes: #579124)
-- David Paleino <dapal@debian.org> Wed, 28 Apr 2010 20:12:54 +0200
josm (0.0.svn3196-1) unstable; urgency=low
* New upstream release
* debian/patches/:
- 10-build.patch, 20-bts.patch, 60-disable_oauth.patch
refreshed
* debian/source/format: using 3.0 (quilt)
* debian/control, debian/rules: removed dependency on quilt
-- David Paleino <dapal@debian.org> Fri, 23 Apr 2010 20:39:41 +0200
josm (0.0.svn3094-1) unstable; urgency=low
* New upstream release (Closes: #573566)
* debian/patches/*:
- converted from dpatch to quilt
- updated to apply to the new code
- 10-build.patch: don't build translations for plugins
and fix references to gettext-ant-tasks
- 60-disable_oauth.patch added, it's still missing lots of
dependencies
- 70-default_look_and_feel.patch added, ported from Ubuntu's
01-default-look-and-feel.dpatch. Let's avoid discrepancies
when possible and reasonable.
* debian/rules, debian/control: use quilt for patch management.
* debian/control:
- added libgettext-ant-tasks-java and libterm-readkey-perl to
Build-Depends
- fields wrapped to one-value-per-line
-- David Paleino <dapal@debian.org> Thu, 18 Mar 2010 18:12:03 +0100
josm (0.0.svn2561-2) unstable; urgency=low
* debian/watch fixed: implemented a redirector for uscan on Alioth.
* debian/control:
- add pkg-osm to uploaders
* debian/patches/:
- 50_preferences_world_readable.dpatch added, chmod the file to
600 since it contains plaintext password for OSM (Closes: #572032)
-- David Paleino <dapal@debian.org> Tue, 02 Mar 2010 00:21:06 +0100
josm (0.0.svn2561-1) unstable; urgency=low
[ David Paleino ]
* debian/control:
- added myself to Uploaders
- Vcs-* fields updated, package moved to Git
- moved to Section utils, according to archive override
- Standards-Version bumped to 3.8.4, no changes needed
[ Giovanni Mascellani ]
* New upstream release (closes: #561184)
* Prefer IPv4 stack (temporary workaround for the bindv6only Java bug)
-- David Paleino <dapal@debian.org> Mon, 22 Feb 2010 14:32:57 +0100
josm (0.0.svn2255-1) unstable; urgency=low
[ Giovanni Mascellani ]
* New upstream release (closes: #542653, #541326)
* debian/josm.sh: wrong java executable path for java 1.5.0 (closes: #525020).
Thanks to Ross Burton for the report.
* debian/josm.sh: use java alternative if known to work (closes: #521125).
* Plugin list update fixed (closes: #532742)
* Policy version bumbed to 3.8.3 (no changes required)
* Patches updated for new release
* debian/copyright updated
[ Francesco Paolo Lovergine ]
* Removed OSM homepage in long description.
* Section set to `java'.
-- Giovanni Mascellani <mascellani@poisson.phc.unipi.it> Fri, 06 Nov 2009 00:44:28 +0100
josm (0.0.svn1529-1) unstable; urgency=low
[ Giovanni Mascellani ]
* New upstream release
+ Fix bug in uploading with 0.6 API (closes: #524628). Thanks to
Damien Raude-Morvan for the report.
[ Andreas Putzo ]
* Bumped policy to 3.8.1, without changes.
-- Andreas Putzo <andreas@putzo.net> Mon, 20 Apr 2009 10:46:57 +0000
josm (0.0.svn1515-1) unstable; urgency=low
[ Giovanni Mascellani ]
* New upstream SVN release. (Closes: #509239)
- patches/*: fixed to comply with new upstream code.
* Added ${misc:Depends} into dependencies.
* Added optional dependencies against sun-java5-jre and sun-java6-jre.
(Closes: #496861)
* Added desktop file present in Ubuntu, thanks to Nathan Handler.
(Closes: #498431)
* Shell wrapper now recognizes JAVA_OPTS environment variable.
(Closes: #497559)
[ Andreas Putzo ]
* Add copyright holders of NmeaReader.java, Changeset.java, TigerUtils.java,
i18n/po/* to debian/copyright.
* Add README.source file to comply with policy.
* Add command line arguments and environment section to manpage.
-- Andreas Putzo <andreas@putzo.net> Thu, 16 Apr 2009 20:07:09 +0000
josm (0.0.0.20080713-1) unstable; urgency=low
[ Giovanni Mascellani ]
* Bumped Standards-Version to 3.8.0 (no changes needed)
* Added Vcs-* fields in debian/control
[ Andreas Putzo ]
* New upstream snapshot fetched from svn, revision 716.
* Switched to OpenJDK, dropping support for other JVM's.
- Updated build-deps and dependencies accordingly.
- Removed gcj specific compiler flags from 10_build.dpatch.
- Removed 30_graphics.dpatch.
- Updated README.Debian.
- Updated wrapper script to choose OpenJDK if no other
JVM is given by the user.
(Closes: #486293, #474626)
* Added patch description to 40_elemstyles.dpatch.
* Mentioned Ellipsoid.java in copyright file.
* Added DM-Upload-Allowed field to debian/control.
* Wrap lines at 80 characters in copyright file.
-- Andreas Putzo <andreas@putzo.net> Sat, 19 Jul 2008 19:51:57 +0000
josm (0.0.0.20080510-1) unstable; urgency=low
[ Giovanni Mascellani ]
* New upstream version fetched using debian/rules get-orig-source.
+ Many little bugfixes.
+ Clarifications on upstream copyright status.
* Switched to machine interpretable debian/copyright.
[ Andreas Putzo ]
* Replace dependency on java-gcj-compat with gij-4.1 or jamvm that
work with josm. Add those to recommends to increase the chance
that a working java can be found by the wrapper. (Closes: #475878)
* Add josm-plugins among Recommends.
[ Petter Reinholdtsen ]
* Change debian packaging to GPL v2 and later, to be compatible with
the rest of the package, after clearing it with Andreas Putzo and
Giovanni Mascellani.
-- Petter Reinholdtsen <pere@debian.org> Sat, 10 May 2008 18:30:01 +0200
josm (0.0.0.20080330-1) unstable; urgency=low
[ Giovanni Mascellani ]
* Added myself into uploaders
* patches/40_elemstyles:
+ Icons are searched both in openstreetmap-map-icons-classic and
openstreetmap-map-icons-square
+ elemstyles.xml doesn't contain absolute paths to icons
[ Petter Reinholdtsen ]
* New upstream version fetched using debian/rules get-orig-source.
- Drop patch 50_OsmServerWriter now applied upstream.
-- Petter Reinholdtsen <pere@debian.org> Sun, 30 Mar 2008 17:52:44 +0200
josm (0.0.0.20080316-2) unstable; urgency=low
[ Andreas Putzo ]
* Add 50_OsmServerWriter.dpatch to allow uploading with gcj.
* Suppress some compiler warnings (serial, unusedImport) in build.xml.
* Update wrapper script to choose a working jvm (Closes: #472285).
[ Petter Reinholdtsen ]
* Change wrapper script selection algorithm to try the users preference as
defined by $JAVA_HOME first. Next, the other JVMs known to work with josm,
with the one working best first, and the less functional ones after that.
-- Petter Reinholdtsen <pere@debian.org> Wed, 26 Mar 2008 10:15:38 +0100
josm (0.0.0.20080316-1) unstable; urgency=low
* Initial release (Closes: #385371)
-- Petter Reinholdtsen <pere@debian.org> Sun, 16 Mar 2008 14:57:52 +0100
|