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
|
@prefix cpan-uri: <http://purl.org/NET/cpan-uri/terms#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix doap-bugs: <http://ontologi.es/doap-bugs#> .
@prefix doap-changeset: <http://ontologi.es/doap-changeset#> .
@prefix doap-deps: <http://ontologi.es/doap-deps#> .
@prefix dt: <http://ontologi.es/pretdsl#dt/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://packages.qa.debian.org/devscripts#devscripts_2.10.10>
a doap:Version;
dc:issued "2007-10-28"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Better detect 3-clause BSD licenses."@en;
doap-changeset:fixes <https://bugs.debian.org/442630>;
], [
a doap-changeset:Change;
rdfs:label "Detect ISC style licenses."@en;
doap-changeset:blame <http://webid.debian.net/maintainers/schoenfeld>;
doap-changeset:fixes <https://bugs.debian.org/448000>;
], "Allow ISC and BSD licenses to co-exist in a single file."^^dt:Change, "Always check a single file argument even if it doesn't match the file pattern regex."^^dt:Bugfix;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/joeyh>;
doap:revision "2.10.10"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.17>
a doap:Version;
dc:issued "2008-02-27"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Detect a less common form of MIT license."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.17"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.18>
a doap:Version;
dc:issued "2008-02-29"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Add missing $license and change spaces into tab in the middle."^^dt:Change, "Detect a less common form of GPL."^^dt:Change, "Fix broken elsif indentation."^^dt:Bugfix, "Fix detect GPL of unknown version."^^dt:Bugfix, "Fix indentation."^^dt:Change, "Layout and regex tweaks."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.18"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.26>
a doap:Version;
dc:issued "2008-04-21"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Replace a literal copyright symbol with a hex escape so that the package builds using po4a in Etch."@en;
doap-changeset:fixes <https://bugs.debian.org/476251>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.26"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.27>
a doap:Version;
dc:issued "2008-05-03"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Correctly detect LGPLv3+."@en;
doap-changeset:fixes <https://bugs.debian.org/477742>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.27"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.30>
a doap:Version;
dc:issued "2008-06-16"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "Detect if copyright statements are valid.";
doap-changeset:blame <https://alioth.debian.org/users/bignose-guest>;
doap-changeset:fixes <https://bugs.debian.org/486013>;
], [
a doap-changeset:Change;
rdfs:label "Detect more forms of copyright statement.";
doap-changeset:blame <https://alioth.debian.org/users/bignose-guest>;
doap-changeset:fixes <https://bugs.debian.org/486216>;
], "Update copyright."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.30"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.31>
a doap:Version;
dc:issued "2008-06-28"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Check .cxx and .hxx by default."@en;
doap-changeset:fixes <https://bugs.debian.org/487384>;
], "Exclude _MTN (monotone) by default."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.31"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.39>
a doap:Version;
dc:issued "2008-10-12"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Parse Fortran and Scilab files and check them by default, and detect CeCILL and \"SGI Free B\" licenses."@en;
doap-changeset:blame <http://webid.debian.net/maintainers/sylvestre>;
doap-changeset:fixes <https://bugs.debian.org/501447>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.39"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.3>
a doap:Version;
dc:issued "2007-04-16"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Make licensecheck configurable."^^dt:Addition;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.3"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.40>
a doap:Version;
dc:issued "2008-11-05"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Detect a couple more variants on the wording of a 3-clause BSD license."@en;
doap-changeset:fixes <https://bugs.debian.org/503378>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.40"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.44>
a doap:Version;
dc:issued "2009-01-05"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Check .cs (C# source files) by default."@en;
doap-changeset:fixes <https://bugs.debian.org/508163>;
], [
a doap-changeset:Change;
rdfs:label "Detect the CDDL license. Thanks to Mike Hommey."@en;
doap-changeset:blame <http://webid.debian.net/maintainers/glandium>;
doap-changeset:fixes <https://bugs.debian.org/510574>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.44"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.46>
a doap:Version;
dc:issued "2009-02-12"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Check .xs (Perl XS files) and .vala (GNOME Vala source files) by default."@en;
doap-changeset:fixes <https://bugs.debian.org/513770>, <https://bugs.debian.org/514337>;
], [
a doap-changeset:Change;
rdfs:label "Identify yet another variant of GPL wording."@en;
doap-changeset:fixes <https://bugs.debian.org/514811>;
], [
a doap-changeset:Change;
rdfs:label "Detect Boost, Python and zlib/libpng licenses."@en;
doap-changeset:blame <http://webid.debian.net/maintainers/cristian>;
doap-changeset:fixes <https://bugs.debian.org/514812>;
], "Fix check .h files by default."^^dt:Bugfix, "Identify another form of GPL wording."^^dt:Change, "Remove C /* */ comments. Thanks to Jörg Sommer."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.46"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.47>
a doap:Version;
dc:issued "2009-03-04"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Fix an uninitialised variable warning when --no-conf is used."@en;
doap-changeset:blame <http://webid.debian.net/maintainers/cristian>;
doap-changeset:fixes <https://bugs.debian.org/515047>;
], "Document --no-conf."^^dt:Documentation;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.47"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.49>
a doap:Version;
dc:issued "2009-05-02"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Detect AGPL."@en;
doap-changeset:blame <mailto:didier@raboud.homelinux.org>;
doap-changeset:fixes <https://bugs.debian.org/520903>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.49"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.51>
a doap:Version;
dc:issued "2009-06-15"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Fix failures parsing some GPL headers."@en;
<http://ontologi.es/doap-changeset#blame:> <http://webid.debian.net/maintainers/jwilk>;
doap-changeset:fixes <https://bugs.debian.org/531059>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.51"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.53>
a doap:Version;
dc:issued "2009-07-29"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Skip empty files instead of reporting that they have no copyright."@en;
doap-changeset:fixes <https://bugs.debian.org/535337>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.53"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.55>
a doap:Version;
dc:issued "2009-09-11"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Add missing blank line in POD. Thanks to Nicolas Francois."^^dt:Documentation;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/myon>;
doap:revision "2.10.55"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.5>
a doap:Version;
dc:issued "2007-04-16"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Improve attribution of the original script."^^dt:Documentation, "Quote @kde otherwise build fails."^^dt:Bugfix;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.10.5"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.60>
a doap:Version;
dc:issued "2010-01-02"^^xsd:date;
doap-changeset:changeset [
rdfs:label "Welcome to the New Year";
doap-changeset:item "Detect some common variants of the WTFPL."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.10.60"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.66>
a doap:Version;
dc:issued "2010-08-02"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Check .pas, .inc, .dtd., .xsl, and .mod files by default."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.10.66"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.69>
a doap:Version;
dc:issued "2010-09-21"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Replace occurences of old FSF address with the FSF recommendation what should be written inside of source files."@en;
doap-changeset:fixes <https://bugs.debian.org/502512>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.10.69"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.70>
a doap:Version;
dc:issued "2011-02-09"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Manual pages conventions."^^dt:Documentation;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.10.70"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.72>
a doap:Version;
dc:issued "2011-04-15"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Partial manual pages convention review."^^dt:Documentation, "Remove \"(the License)\" from check for Apache license."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.10.72"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.7>
a doap:Version;
dc:issued "2007-08-10"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Add --recursive to help."^^dt:Change, "Add -r as an alternative for --recursive."^^dt:Change, "Optionally detect copyright statements."^^dt:Addition, "Support directories as well as files passed as arguments."^^dt:Addition, "Support ignoring files and directories (default regex borrowed from dpkg-source)."^^dt:Addition, "Support recursion into directories."^^dt:Addition, "Support setting files to check."^^dt:Addition, "Tidy up copyright output."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/adn>;
doap:revision "2.10.7"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.8>
a doap:Version;
dc:issued "2007-09-11"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Correctly handle metacharacters found in potential copyright statements."^^dt:Change, "Decruft // comments."^^dt:Change, "Decruft © as well as (C)."^^dt:Change, "Deduplicate copyright statements varying only in case."^^dt:Change, "Make the copyright regex more flexible."^^dt:Change, "Tidy up the pre-check regexes."^^dt:Change, "Unescape \"\\@\"s in copyright statements."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/adn>;
doap:revision "2.10.8"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.10.9>
a doap:Version;
dc:issued "2007-10-05"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Attempt to distinguish between versions of the BSD license."@en;
doap-changeset:fixes <https://bugs.debian.org/442630>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/adn>;
doap:revision "2.10.9"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.11.0>
a doap:Version;
dc:issued "2011-05-11"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Remove EOL whitespaces."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.11.0"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.11.2>
a doap:Version;
dc:issued "2011-11-16"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Detect Microsoft Permissive License (Ms-PL)."^^dt:Change, "Detect another variant of libpng license."^^dt:Change, "Detect more types of generated files."^^dt:Change, "Detect more variations of MIT licenses."^^dt:Change, "Detect more variations of MIT/X11 license."^^dt:Change, "Remove the word \"of\" from the BSD 3 clause check."^^dt:Change, "Update scripts to use GNU getopt-compatible option parsing."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.11.2"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.11.3>
a doap:Version;
dc:issued "2012-01-10"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Detect GPL version in notices without \"of the License\"."^^dt:Change, "Fix version output for GPL notices without \"as published by\"."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.11.3"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.11.8>
a doap:Version;
dc:issued "2012-05-31"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Add first tests for licensecheck."^^dt:Addition, "Chech .m (Octave/Matlab), .tex (LaTeX), and .pyx (Python's pyrex) by default."^^dt:Change, "Detect Beerware license."^^dt:Change, "Detect LGPL more robustly."^^dt:Change, "test: Move runCommand to helper function file."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.11.8"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.12.2>
a doap:Version;
dc:issued "2012-08-26"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item ".1: Consistency fix."^^dt:Documentation, "Check .ml, .mli (OCaml programs) by default."^^dt:Change, "Don't truncate other licenses on Public domain or WTFPL presence."^^dt:Bugfix, "Remove trailing spaces."^^dt:Change, "Replace tab by spaces in help message."^^dt:Documentation, "Spelling fixes."^^dt:Documentation, "Trim trailing comma from some GPL notices' versions."^^dt:Change, "Trim trailing period from some GPL notices' versions."^^dt:Change, "add --machine option that outputs results in a machine readable format."^^dt:Addition;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.12.2"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.12.4>
a doap:Version;
dc:issued "2012-09-25"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Detect MPL v2.0."^^dt:Change, "Parse (fixed-form) Fortran code."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.12.4"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.12.5>
a doap:Version;
dc:issued "2012-10-24"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Adapt code to some perl best practice."^^dt:Change, "Add comment removal test cases."^^dt:Change, "Add more GPL test cases."^^dt:Change, "Fix detect BSD-3-clause."^^dt:Change, "Fix detect GPL license version."^^dt:Change, "GetOptions is done right."^^dt:Change, "comments cleaning to dedicated function code to remove any regular comments pattern."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/bdrung>;
doap:revision "2.12.5"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.13.0>
a doap:Version;
dc:issued "2013-02-18"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Add autopkgtest."^^dt:Packaging, "Detect (L)GPL licenses more permissively."^^dt:Change, "Fix --check and --ignore options."^^dt:Bugfix, "Fix typos, changed the order in SEE ALSO, added punctuation marks."^^dt:Documentation, "Simplify LGPL pattern (already case-insensitive)."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/bdrung>;
doap:revision "2.13.0"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.13.1>
a doap:Version;
dc:issued "2013-03-22"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Fix clean_comments()."^^dt:Change, "Fix detect (L|A)GPL."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/bdrung>;
doap:revision "2.13.1"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.13.2>
a doap:Version;
dc:issued "2013-05-13"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Fix invalid regular expression syntax."^^dt:Bugfix, "Regex-escape file contents that are used as part of a pattern."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.13.2"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.13.3>
a doap:Version;
dc:issued "2013-08-16"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Check .go (Go) files by default."@en;
doap-changeset:fixes <https://bugs.debian.org/711467>;
], "Allow plural: copyright notices."^^dt:Change, "Alternative BSD-3 wording \"authors\" and \"_any_ contributors\"."^^dt:Change, "Bogus recognition \"copyright holders\"."^^dt:Change, "Check Haskell files by default."^^dt:Change, "Detect more relaxed 3rd BSD clause."^^dt:Change, "Fix several false positives."^^dt:Change, "Handle differing lengths of comment leaders."^^dt:Change, "Ignore \"copyright holders\"."^^dt:Change, "Test copyright notice from freeswitch/libs/tiff-4.0.2."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.13.3"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.13.5>
a doap:Version;
dc:issued "2013-12-07"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Fix various (potential) test failures."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.13.5"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.14.0>
a doap:Version;
dc:issued "2014-01-25"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Add handling for a variation of 3 clause BSD."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.14.0"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.14.11>
a doap:Version;
dc:issued "2015-12-04"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Update URLs in comments to https where possible."^^dt:Documentation;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.14.11"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.14.7>
a doap:Version;
dc:issued "2014-09-26"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Check javascript by default."@en;
doap-changeset:fixes <https://bugs.debian.org/762070>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.14.7"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.15.10>
a doap:Version;
dc:issued "2015-12-31"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Stop use \"file\" command MIME info to decide which files to check (use only internal list of file extensions by default).";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/803724>;
], [
a doap-changeset:Removal;
rdfs:label "Deprecate --text option.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Addition;
rdfs:label "Add --encoding option. By default, input files are handled as utf-8 and information is printed on STDOUT as utf-8.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Detect freetype license.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Parse multi-line copyright block.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/519080>;
], [
a doap-changeset:Change;
rdfs:label "Detect 'and or' as well as 'and/or' in GPL licenses.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/559429>;
], [
a doap-changeset:Addition;
rdfs:label "Test for licensecheck versus Software::License.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Fix detect Artistic licenses as generated from Software::License.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Addition;
rdfs:label "Add bash completion.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Detect variations of Mozilla licenses.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Check lisp, css, less, perl6 and markdown by default.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Detect LLGPL license.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Addition;
rdfs:label "Extract info from end of file (not only beginning).";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Move skip test into script and do not rely on shell string comparison for comparing versions.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Restore old tests.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Addition;
rdfs:label "Show skipped file with --skipped.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/806424>;
], [
a doap-changeset:Change;
rdfs:label "Check files without suffix by default.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.15.10"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.15.1>
a doap:Version;
dc:issued "2015-01-01"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Detect GPL version 2 or 3 (different from GPL-2+)."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.15.1"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.15.2>
a doap:Version;
dc:issued "2015-04-03"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Ignore .pc directory."^^dt:Change, "Print copyrights in a non-random order."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.15.2"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.15.5>
a doap:Version;
dc:issued "2015-06-11"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Check file encoding and decode properly when reading file.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/784821>;
], [
a doap-changeset:Change;
rdfs:label "Improve GPL LGPL extraction.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Optimize regex used to extract © info.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Check Groovy, Scala and Clojure by default.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/771119>;
], [
a doap-changeset:Change;
rdfs:label "Fix detect discussion about ©.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/723723>;
], [
a doap-changeset:Bugfix;
rdfs:label "Fix detect BSL.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/690375>;
], [
a doap-changeset:Change;
rdfs:label "Detect academic free license.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/534987>;
], [
a doap-changeset:Change;
rdfs:label "Allow © owner to mention \"and others\".";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Detect eclipse public license.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/587892>;
], [
a doap-changeset:Change;
rdfs:label "Detect LGPL as written by IBM.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/587970>;
], [
a doap-changeset:Change;
rdfs:label "Parse REM style comments.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/748611>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.15.5"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.15.6>
a doap:Version;
dc:issued "2015-07-28"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Fix detect BSD-2-clause.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Extract © owner when © and owners are specified on 2 or more lines.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Bugfix;
rdfs:label "Fix digia © and license extraction."@en;
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/789074>;
], [
a doap-changeset:Change;
rdfs:label "Check .S (assembly files) by default.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Warn if scanned file is not a text file."@en;
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/791756>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.15.6"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.15.7>
a doap:Version;
dc:issued "2015-08-01"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:SecurityFix;
rdfs:label "Use Dpkg::IPC to run file to avoid shell injection.";
doap-changeset:fixes <https://bugs.debian.org/794260>, <https://security-tracker.debian.org/tracker/CVE-2015-5704>;
], [
a doap-changeset:Bugfix;
rdfs:label "Change whitelist of mime types to greylist of encodings. Restores ability to check files with mime types like text/x-c++ and application/postscript.";
doap-changeset:blame <http://purl.org/NET/cpan-uri/person/JONASS>;
doap-changeset:fixes <https://bugs.debian.org/794282>;
], [
a doap-changeset:Bugfix;
rdfs:label "Fix an endless loop in parsing certain files.";
doap-changeset:blame <http://purl.org/NET/cpan-uri/person/JONASS>;
doap-changeset:fixes <https://bugs.debian.org/794263>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.15.7"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.15.8>
a doap:Version;
dc:issued "2015-08-02"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:SecurityFix;
rdfs:label "Avoid argument injection which may cause file to overwrite a file through symlink indirection.";
doap-changeset:fixes <https://bugs.debian.org/794365>, <https://security-tracker.debian.org/tracker/CVE-2015-5705>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.15.8"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.15.9>
a doap:Version;
dc:issued "2015-10-06"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Filter scanned files by mime type.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Remove trailing '#' from copyright.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Store only first copyright block.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Remove '\\' from © information (for nroff files).";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Addition;
rdfs:label "Add --text option to avoid binaries.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.15.9"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.16.1>
a doap:Version;
dc:issued "2016-02-12"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Detect LGPL in files handled by Dist::Zilla.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.16.1"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.16.2>
a doap:Version;
dc:issued "2016-03-19"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Parse (c) owner with email like info@foo.com.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.16.2"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.16.3>
a doap:Version;
dc:issued "2016-04-21"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item "Detect files containing \"Do not hand edit!\" as generated."^^dt:Change, "Extract parse_file."^^dt:Change, "Fix test_licensecheck_SL failure."^^dt:Bugfix, "Gracefully handle wrong --encoding."^^dt:Bugfix, "Improve \"unable to access file\" error message."^^dt:Change;
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.16.3"^^xsd:string.
<http://packages.qa.debian.org/devscripts#devscripts_2.16.5>
a doap:Version;
dc:issued "2016-06-04"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Bash completion: Normalise editor hints to preserve formatting.";
doap-changeset:blame <https://alioth.debian.org/users/bignose-guest>;
], [
a doap-changeset:Change;
rdfs:label "Bash completion: Standardise explanatory header block.";
doap-changeset:blame <https://alioth.debian.org/users/bignose-guest>;
], [
a doap-changeset:Change;
rdfs:label "Detect files containing \"do not modify\" as generated.";
doap-changeset:blame <http://webid.debian.net/maintainers/pabs>;
], [
a doap-changeset:Change;
rdfs:label "Detect files containing \"Generated data\" as generated.";
doap-changeset:blame <http://webid.debian.net/maintainers/pabs>;
], [
a doap-changeset:Change;
rdfs:label "Detect files containing \"edit the original\" as generated.";
doap-changeset:blame <http://webid.debian.net/maintainers/pabs>;
], [
a doap-changeset:Addition;
rdfs:label "Add --deb-fmt option to use dep-5 license keywords. See #472199.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Parse \"copyright-holders: John Doe\".";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
], [
a doap-changeset:Change;
rdfs:label "Parse \"license: BSD-x-Clause\" declaration.";
doap-changeset:blame <http://webid.debian.net/maintainers/dod>;
doap-changeset:fixes <https://bugs.debian.org/820798>;
];
];
doap-changeset:released-by <http://webid.debian.net/maintainers/jamessan>;
doap:revision "2.16.5"^^xsd:string.
<http://packages.qa.debian.org/devscripts#project>
doap:release <http://packages.qa.debian.org/devscripts#devscripts_2.10.10>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.17>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.18>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.26>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.27>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.3>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.30>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.31>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.39>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.40>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.44>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.46>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.47>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.49>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.5>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.51>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.53>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.55>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.60>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.62>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.69>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.7>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.70>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.72>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.8>, <http://packages.qa.debian.org/devscripts#devscripts_2.10.9>, <http://packages.qa.debian.org/devscripts#devscripts_2.11.0>, <http://packages.qa.debian.org/devscripts#devscripts_2.11.2>, <http://packages.qa.debian.org/devscripts#devscripts_2.11.3>, <http://packages.qa.debian.org/devscripts#devscripts_2.11.8>, <http://packages.qa.debian.org/devscripts#devscripts_2.12.2>, <http://packages.qa.debian.org/devscripts#devscripts_2.12.4>, <http://packages.qa.debian.org/devscripts#devscripts_2.12.5>, <http://packages.qa.debian.org/devscripts#devscripts_2.13.0>, <http://packages.qa.debian.org/devscripts#devscripts_2.13.1>, <http://packages.qa.debian.org/devscripts#devscripts_2.13.2>, <http://packages.qa.debian.org/devscripts#devscripts_2.13.3>, <http://packages.qa.debian.org/devscripts#devscripts_2.13.5>, <http://packages.qa.debian.org/devscripts#devscripts_2.14.0>, <http://packages.qa.debian.org/devscripts#devscripts_2.14.11>, <http://packages.qa.debian.org/devscripts#devscripts_2.14.7>, <http://packages.qa.debian.org/devscripts#devscripts_2.15.1>, <http://packages.qa.debian.org/devscripts#devscripts_2.15.10>, <http://packages.qa.debian.org/devscripts#devscripts_2.15.2>, <http://packages.qa.debian.org/devscripts#devscripts_2.15.5>, <http://packages.qa.debian.org/devscripts#devscripts_2.15.6>, <http://packages.qa.debian.org/devscripts#devscripts_2.15.7>, <http://packages.qa.debian.org/devscripts#devscripts_2.15.8>, <http://packages.qa.debian.org/devscripts#devscripts_2.15.9>, <http://packages.qa.debian.org/devscripts#devscripts_2.16.1>, <http://packages.qa.debian.org/devscripts#devscripts_2.16.2>, <http://packages.qa.debian.org/devscripts#devscripts_2.16.3>, <http://packages.qa.debian.org/devscripts#devscripts_2.16.5>.
<http://purl.org/NET/cpan-uri/dist/String-License/project>
a doap:Project;
cpan-uri:x_help_wanted <http://usefulinc.com/ns/doap#documenter>, <http://usefulinc.com/ns/doap#tester>;
dc:contributor <http://purl.org/NET/cpan-uri/person/jonass>;
doap-deps:runtime-recommendation [ doap-deps:on "re::engine::RE2"^^doap-deps:CpanId ];
doap-deps:runtime-requirement [ doap-deps:on "Array::IntSpan"^^doap-deps:CpanId ], [
doap-deps:on "Feature::Compat::Class 0.07"^^doap-deps:CpanId;
], [ doap-deps:on "List::Util 1.45"^^doap-deps:CpanId ], [ doap-deps:on "Log::Any"^^doap-deps:CpanId ], [ doap-deps:on "namespace::clean"^^doap-deps:CpanId ], [ doap-deps:on "Path::Tiny 0.062"^^doap-deps:CpanId ], [
doap-deps:on "Regexp::Pattern 0.2.12"^^doap-deps:CpanId;
], [
doap-deps:on "Regexp::Pattern::License 3.4.0"^^doap-deps:CpanId;
], [ doap-deps:on "perl 5.020000"^^doap-deps:CpanId ];
doap-deps:test-recommendation [ doap-deps:on "File::BaseDir"^^doap-deps:CpanId ], [
doap-deps:on "Regexp::Pattern::License 3.9.0"^^doap-deps:CpanId;
], [
doap-deps:on "Software::LicenseUtils 0.104006"^^doap-deps:CpanId;
], [ doap-deps:on "YAML::XS"^^doap-deps:CpanId ];
doap-deps:test-requirement [
doap-deps:on "Test::Without::Module"^^doap-deps:CpanId;
], [ doap-deps:on "Test2::V0 0.000060"^^doap-deps:CpanId ];
doap:bug-database <https://rt.cpan.org/Dist/Display.html?Queue=String-License>;
doap:category [ rdfs:label "Sourcecode" ], [ rdfs:label "Licensing" ];
doap:created "2000-01-28"^^xsd:date;
doap:developer <http://purl.org/NET/cpan-uri/person/jonass>;
doap:download-page <https://metacpan.org/release/String-License>;
doap:homepage <https://metacpan.org/pod/String::License>, <https://metacpan.org/release/String-License>;
doap:license <http://www.gnu.org/licenses/agpl-3.0.txt>;
doap:maintainer <http://purl.org/NET/cpan-uri/person/jonass>;
doap:name "String-License";
doap:programming-language "Perl";
doap:release <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-1>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-10>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-11>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-2>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-3>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-4>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-5>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-6>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-7>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-8>, <http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-9>;
doap:repository [
a doap:GitRepository;
doap:browse <https://salsa.debian.org/build-common-team/p5-string-license>;
];
doap:shortdesc "detect source code license statements in a text string".
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-10>
a doap:Version;
dc:identifier "String-License-v0.0.10"^^xsd:string;
dc:issued "2024-08-21"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "update test Software-License.t and tighten to require 0.104006";
], [
a doap-changeset:Tests;
rdfs:label "update test Software-License.t, and tighten to require Regexp::Pattern::License 3.11.0";
doap-bugs:fixes <https://bugs.debian.org/1054364>;
doap-changeset:thanks <http://webid.debian.net/maintainers/gregoa>, <http://webid.debian.net/maintainers/roland>;
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.10.tar.gz>;
doap:revision "v0.0.10"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-11>
a doap:Version;
dc:identifier "String-License-v0.0.11"^^xsd:string;
dc:issued "2024-08-22"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "disambiguate empty code blocks to not confuse perl < 5.26";
doap-bugs:fixes <http://purl.org/NET/cpan-uri/rt/ticket/155041>;
doap-changeset:thanks <http://purl.org/NET/cpan-uri/person/srezic>;
], [
a doap-changeset:Tests;
rdfs:label "tighten to require Feature::Compat::Class v0.07";
doap-bugs:fixes <http://purl.org/NET/cpan-uri/rt/ticket/155042>;
doap-changeset:thanks <http://purl.org/NET/cpan-uri/person/srezic>;
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.11.tar.gz>;
doap:revision "v0.0.11"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-1>
a doap:Version;
dc:identifier "String-License-v0.0.1"^^xsd:string;
dc:issued "2023-01-14"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Packaging;
rdfs:label "Initial CPAN release (before that part of App::Licensecheck since 2016, Debian devscripts since 2007, and KDE SDK since 2000).";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.1.tar.gz>;
doap:revision "v0.0.1"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-2>
a doap:Version;
dc:identifier "String-License-v0.0.2"^^xsd:string;
dc:issued "2023-01-15"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "load namespace::clean before class definitions";
], [
a doap-changeset:Tests;
rdfs:label "fix plan count to work on older perls";
], [
a doap-changeset:Packaging;
rdfs:label "use secure https protocol for bug-database URI";
], [
a doap-changeset:Packaging;
rdfs:label "use correct URI for git repository";
], [
a doap-changeset:Packaging;
rdfs:label "stop test-require Test::Command::Simple";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.2.tar.gz>;
doap:revision "v0.0.2"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-3>
a doap:Version;
dc:identifier "String-License-v0.0.3"^^xsd:string;
dc:issued "2023-01-17"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "update test Software-License.t: resolve plan from hash %LICENSE";
], [
a doap-changeset:Tests;
rdfs:label "update test Software-License.t: list licenses without fallback as undefined (not empty string)";
], [
a doap-changeset:Tests;
rdfs:label "update test Software-License.t: check license ISC since Software::License 0.104002";
], [
a doap-changeset:Tests;
rdfs:label "update test Software-License.t: uncruft license EUPL-1.1, apparently needed in some (test) scenarios";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.3.tar.gz>;
doap:revision "v0.0.3"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-4>
a doap:Version;
dc:identifier "String-License-v0.0.4"^^xsd:string;
dc:issued "2023-01-18"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "tighten to test-recommend Software::LicenseUtils 0.104002";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.4.tar.gz>;
doap:revision "v0.0.4"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-5>
a doap:Version;
dc:identifier "String-License-v0.0.5"^^xsd:string;
dc:issued "2023-05-30"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Use Test::Script to ensure correct perl invokes script in tests.";
doap-bugs:fixes <http://purl.org/NET/cpan-uri/rt/ticket/148479>;
doap-changeset:thanks <https://people.redhat.com/\u007Eppisar>;
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.5.tar.gz>;
doap:revision "v0.0.5"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-6>
a doap:Version;
dc:identifier "String-License-v0.0.6"^^xsd:string;
dc:issued "2023-06-03"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "add internal tag methods to generalize coverage tracking";
], [
a doap-changeset:Change;
rdfs:label "code cleanup, by extending tag methods";
], [
a doap-changeset:Packaging;
rdfs:label "require perl v5.20, needed for subroutine signatures";
], [
a doap-changeset:Change;
rdfs:label "use subroutine signatures";
], [
a doap-changeset:Change;
rdfs:label "drop obsolete custom BSD and CC double-detection avoidance";
], [
a doap-changeset:Change;
rdfs:label "add internal note method to generalize trait hinting";
], [
a doap-changeset:Tests;
rdfs:label "use Feature::Compat::Class after core features, to support newer perl";
doap-bugs:fixes <http://purl.org/NET/cpan-uri/rt/ticket/148507>;
doap-changeset:thanks <http://purl.org/NET/cpan-uri/person/haarg>, <https://people.redhat.com/\u007Ejplesning>;
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.6.tar.gz>;
doap:revision "v0.0.6"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-7>
a doap:Version;
dc:identifier "String-License-v0.0.7"^^xsd:string;
dc:issued "2023-07-03"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "stepwise detect prepended version, with Regexp::Pattern::License v3.11.0";
], [
a doap-changeset:Bugfix;
rdfs:label "stepwise detect version_only, with Regexp::Pattern::License v3.11.0";
], [
a doap-changeset:Tests;
rdfs:label "tighten tests to cover non-optional trailing 'license' since Regexp::Pattern::License v3.11.0";
], [
a doap-changeset:Change;
rdfs:label "simplify code; use List::Util (not List::SomeUtils)";
], [
a doap-changeset:Change;
rdfs:label "sort NAMES objects by key length before alphabetically";
], [
a doap-changeset:Change;
rdfs:label "sort LICENSES by amount of contained licenses, then key length, then alphabetically";
], [
a doap-changeset:Change;
rdfs:label "tiny optimization in version number mangling";
], [
a doap-changeset:Change;
rdfs:label "used named capture for local patterns";
], [
a doap-changeset:Change;
rdfs:label "tiny optimization: check if named match is defined (not if true)";
], [
a doap-changeset:Tests;
rdfs:label "update author tests to cover Regexp::Pattern::License v3.11.0";
], [
a doap-changeset:Change;
rdfs:label "declare dummy method with empty signature in one line, hopefully pleasing perl v5.20-v5.24";
], [
a doap-changeset:Change;
rdfs:label "store resolved shortname and caption in objects (not internal id)";
], [
a doap-changeset:Change;
rdfs:label "track detected fulltext license as object (not just positional range)";
], [
a doap-changeset:Change;
rdfs:label "track detected license grant as object (not just positional range)";
], [
a doap-changeset:Change;
rdfs:label "track confirmed fulltext or grant as object (not boolean)";
], [
a doap-changeset:Change;
rdfs:label "tighten positioning and reporting of stepwise detected version";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.7.tar.gz>;
doap:revision "v0.0.7"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-8>
a doap:Version;
dc:identifier "String-License-v0.0.8"^^xsd:string;
dc:issued "2023-07-04"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "really use List::Util (not List::SomeUtils), everywhere";
], [
a doap-changeset:Packaging;
rdfs:label "revert to run perltidy (not perltidier) with tidyall";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.8.tar.gz>;
doap:revision "v0.0.8"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/String-License/v_v0-0-9>
a doap:Version;
dc:identifier "String-License-v0.0.9"^^xsd:string;
dc:issued "2023-07-04"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "tighten runtime-requirement for List::Util";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/jonass>;
doap:file-release <http://backpan.cpan.org/authors/id/J/JO/JONASS/String-License-v0.0.9.tar.gz>;
doap:revision "v0.0.9"^^xsd:string.
<http://purl.org/NET/cpan-uri/person/dcantrell>
a foaf:Person;
foaf:mbox <mailto:david@cantrell.org.uk>, <mailto:dcantrell@cpan.org>;
foaf:name "David Cantrell";
foaf:nick "DCANTRELL";
foaf:page <https://metacpan.org/author/DCANTRELL>.
<http://purl.org/NET/cpan-uri/person/haarg>
a foaf:Person;
foaf:mbox <mailto:haarg@cpan.org>;
foaf:name "Graham Knop";
foaf:nick "HAARG";
foaf:page <https://metacpan.org/author/HAARG>.
<http://purl.org/NET/cpan-uri/person/jonass>
a foaf:Person;
foaf:mbox <mailto:dr@jones.dk>, <mailto:jonass@cpan.org>;
foaf:name "Jonas Smedegaard";
foaf:nick "JONASS";
foaf:page <https://metacpan.org/author/JONASS>.
<http://purl.org/NET/cpan-uri/person/srezic>
a foaf:Person;
foaf:mbox <mailto:slaven@rezic.de>, <mailto:srezic@cpan.org>;
foaf:name "Slaven Rezić";
foaf:nick "SREZIC";
foaf:page <https://metacpan.org/author/SREZIC>.
<http://purl.org/NET/cpan-uri/rt/ticket/148479>
a doap-bugs:Issue;
doap-bugs:id "148479"^^xsd:string;
doap-bugs:page <https://rt.cpan.org/Ticket/Display.html?id=148479>.
<http://purl.org/NET/cpan-uri/rt/ticket/148507>
a doap-bugs:Issue;
doap-bugs:id "148507"^^xsd:string;
doap-bugs:page <https://rt.cpan.org/Ticket/Display.html?id=148507>.
<http://purl.org/NET/cpan-uri/rt/ticket/155041>
a doap-bugs:Issue;
doap-bugs:id "155041"^^xsd:string;
doap-bugs:page <https://rt.cpan.org/Ticket/Display.html?id=155041>.
<http://purl.org/NET/cpan-uri/rt/ticket/155042>
a doap-bugs:Issue;
doap-bugs:id "155042"^^xsd:string;
doap-bugs:page <https://rt.cpan.org/Ticket/Display.html?id=155042>.
<http://webid.debian.net/maintainers/abe>
foaf:mbox <mailto:abe@debian.org>;
foaf:name "Axel Beckert".
<http://webid.debian.net/maintainers/bremner>
foaf:mbox <mailto:bremner@debian.org>;
foaf:name "David Bremner".
<http://webid.debian.net/maintainers/bunk>
foaf:mbox <mailto:bunk@debian.org>;
foaf:name "Adrian Bunk".
<http://webid.debian.net/maintainers/copyninja>
foaf:mbox <mailto:copyninja@debian.org>;
foaf:name "Vasudev Kamath".
<http://webid.debian.net/maintainers/dod>
foaf:mbox <mailto:dod@debian.org>;
foaf:name "Dominique Dumont".
<http://webid.debian.net/maintainers/elbrus>
foaf:mbox <mailto:elbrus@debian.org>;
foaf:name "Paul Gevers".
<http://webid.debian.net/maintainers/gregoa>
foaf:mbox <mailto:gregoa@debian.org>;
foaf:name "Gregor Hermann".
<http://webid.debian.net/maintainers/pabs>
foaf:mbox <mailto:pabs@debian.org>;
foaf:name "Paul Wise".
<http://webid.debian.net/maintainers/roland>
foaf:mbox <mailto:roland@debian.org>;
foaf:name "Roland Rosenfeld".
<http://webid.debian.net/maintainers/stuart>
foaf:mbox <mailto:stuart@debian.org>;
foaf:name "Stuart Prescott".
<http://www.gnu.org/licenses/agpl-3.0.txt>
dc:title "GNU Affero General Public License version 3 or newer.".
<https://badges.fedoraproject.org/user/smani>
foaf:mbox <mailto:manisandro@gmail.com>;
foaf:name "Sandro Mani".
<https://people.redhat.com/\u007Ejplesning>
foaf:mbox <mailto:jplesning@redhat.com>;
foaf:name "Jitka Plesníková".
<https://people.redhat.com/\u007Eppisar>
foaf:mbox <mailto:ppisar@redhat.com>;
foaf:name "petr Pisar".
|