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
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: kosmindoormap
Upstream-Contact: Volker Krause <vkrause@kde.org>
Source: https://invent.kde.org/libraries/kosmindoormap
Files: *
Copyright: 2020-2025, Volker Krause <vkrause@kde.org>
License: LGPL-2.0-or-later
Files: po/*
Copyright: 2024-2025, Adrián Chaves (Gallaecio)
2025, Alexander Yavorsky <kekcuha@gmail.com>
2024-2025, Alois Spitzbart <spitz234@hotmail.com>
2021, Burkhard Lück <lueck@hube-lueck.de>
2020-2025, Eloy Cuadra <ecuadra@eloihr.net>
2022-2025, Emir SARI <emir_sari@icloud.com>
2024, Enol P. <enolp@softastur.org>
2022-2023, Frederik Schwarzer <schwarzer@kde.org>
2020-2025, Freek de Kruijf <freekdekruijf@kde.nl>
2024, giovanni <g.sora@tiscali.it>
2020-2025, Josep M. Ferrer <txemaq@gmail.com>
2024, kali <skkalwar999@gmail.com>
2024-2025, KDE euskaratzeko proiektuaren arduraduna <xalba@ni.eus>
2024, Kisaragi Hiu <mail@kisaragi-hiu.com>
2025, Marcus Gama <marcus.gama@gmail.com>
2022-2024, Olesya Gerasimenko <translation-team@basealt.ru>
2021-2025, Shinjo Park <kde@peremen.name>
2021-2025, Stefan Asserhäll <stefan.asserhall@gmail.com>
2020-2024, Steve Allewell <steve.allewell@gmail.com>
2021-2025, Tommi Nieminen <translator@legisign.org>
2022-2025, Vincenzo Reale <smart2128vr@gmail.com>
2020-2025, Vit Pelcak <vit@pelcak.org>
2020-2025, Xavier Besnard <xavier.besnard@kde.org>
2024-2025, Yaron Shahrabani <sh.yaron@gmail.com>
2024-2025, Zayed Al-Saidi <zayed.alsaidi@gmail.com>
2021-2025, Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
License: LGPL-2.0-or-later
Files: .craftignore
scripts/build-cmake-modules.sh
scripts/build-openssl.sh
scripts/build-static-qt.sh
scripts/setup-centos.sh
setup-centos.sh
src/editor/android/build.gradle
src/editor/android/CMakeLists.txt
src/editor/CMakeLists.txt
src/map/renderer/stackblur.cpp
src/map/renderer/stackblur_p.h
src/osm/io/CMakeLists.txt
src/routing/CMakeLists.txt
src/routing-quick/CMakeLists.txt
src/wikidata/CMakeLists.txt
Copyright: 2006-2008, Fredrik Höglund <fredrik@kde.org>
2002-2005, Maxim Shemanarev (http://www.antigrain.com)
2019-2024, Volker Krause <vkrause@kde.org>
2006, Zack Rusin <zack@kde.org>
License: BSD-2-Clause
Files: autotests/CMakeLists.txt
autotests/data/platforms/CMakeLists.txt
cmake/FindOsmTools.cmake
CMakeLists.txt
CMakePresets.json
KOSMIndoorMapConfig.cmake.in
src/app/CMakeLists.txt
src/CMakeLists.txt
src/map/CMakeLists.txt
src/map-publictransport-integration/CMakeLists.txt
src/map-quick/CMakeLists.txt
src/Messages.sh
src/osm/CMakeLists.txt
src/tools/CMakeLists.txt
tests/CMakeLists.txt
Copyright: 2021-2024, Laurent Montel <montel@kde.org>
2018-2021, Volker Krause <vkrause@kde.org>
License: BSD-3-Clause
Files: autotests/data/amenitymodel/amenitymodeltest.osm
autotests/data/localizedtags.xml
autotests/data/mapcss/included.mapcss
autotests/data/mapcss/included-with-class.mapcss
autotests/data/mapcss/parser-test.mapcss
autotests/data/mapcss/parser-test.mapcss.ref
.clang-tidy
.codespellrc
.craft.ini
.flatpak-manifest.json
.gitignore
.gitlab-ci.yml
.kateconfig
.kde-ci.yml
metainfo.yaml
README.md
src/app/android/AndroidManifest.xml
src/app/org.kde.kosmindoormap.appdata.xml
src/app/org.kde.kosmindoormap.desktop
src/editor/android/AndroidManifest.xml
src/editor/android/KOSMEditorController-android-dependencies.xml
src/map/assets/assets.qrc
src/map/assets/icons/advertising_column.svg
src/map/assets/icons/alcohol.svg
src/map/assets/icons/apartment.svg
src/map/assets/icons/archaeological_site.svg
src/map/assets/icons/arts_centre.svg
src/map/assets/icons/art.svg
src/map/assets/icons/artwork.svg
src/map/assets/icons/atm.svg
src/map/assets/icons/baggage_claim.svg
src/map/assets/icons/bag.svg
src/map/assets/icons/bakery.svg
src/map/assets/icons/bank.svg
src/map/assets/icons/bar.svg
src/map/assets/icons/bbq.svg
src/map/assets/icons/beauty.svg
src/map/assets/icons/bed.svg
src/map/assets/icons/bench.svg
src/map/assets/icons/beverages.svg
src/map/assets/icons/bicycle_parking.svg
src/map/assets/icons/bicycle_rental.svg
src/map/assets/icons/bicycle_repair_station.svg
src/map/assets/icons/bicycle.svg
src/map/assets/icons/biergarten.svg
src/map/assets/icons/board.svg
src/map/assets/icons/boat_rental.svg
src/map/assets/icons/bookmaker.svg
src/map/assets/icons/bowling_alley.svg
src/map/assets/icons/bureau_de_change.svg
src/map/assets/icons/bus_stop.svg
src/map/assets/icons/butcher.svg
src/map/assets/icons/cafe.svg
src/map/assets/icons/caravan_site.svg
src/map/assets/icons/car_parts.svg
src/map/assets/icons/carpet.svg
src/map/assets/icons/car_rental.svg
src/map/assets/icons/car_repair.svg
src/map/assets/icons/car.svg
src/map/assets/icons/car_wash.svg
src/map/assets/icons/casino.svg
src/map/assets/icons/castle.svg
src/map/assets/icons/chalet.svg
src/map/assets/icons/charging_station.svg
src/map/assets/icons/charity.svg
src/map/assets/icons/chemist.svg
src/map/assets/icons/cinema.svg
src/map/assets/icons/circle.svg
src/map/assets/icons/city_gate.svg
src/map/assets/icons/clothes.svg
src/map/assets/icons/coffee.svg
src/map/assets/icons/community_centre.svg
src/map/assets/icons/computer.svg
src/map/assets/icons/confectionery.svg
src/map/assets/icons/consulate.svg
src/map/assets/icons/convenience.svg
src/map/assets/icons/copyshop.svg
src/map/assets/icons/courthouse.svg
src/map/assets/icons/dairy.svg
src/map/assets/icons/deli.svg
src/map/assets/icons/dentist.svg
src/map/assets/icons/department_store.svg
src/map/assets/icons/doctors.svg
src/map/assets/icons/doityourself.svg
src/map/assets/icons/drinking_water.svg
src/map/assets/icons/electronics.svg
src/map/assets/icons/elevator.svg
src/map/assets/icons/embassy.svg
src/map/assets/icons/emergency_phone.svg
src/map/assets/icons/entrance.svg
src/map/assets/icons/fabric.svg
src/map/assets/icons/fast_food.svg
src/map/assets/icons/ferry_terminal.svg
src/map/assets/icons/firepit.svg
src/map/assets/icons/fire_station.svg
src/map/assets/icons/fitness_centre.svg
src/map/assets/icons/florist.svg
src/map/assets/icons/fountain.svg
src/map/assets/icons/fuel.svg
src/map/assets/icons/furniture.svg
src/map/assets/icons/garden_centre.svg
src/map/assets/icons/gift.svg
src/map/assets/icons/golf_course.svg
src/map/assets/icons/greengrocer.svg
src/map/assets/icons/guest_house.svg
src/map/assets/icons/guidepost.svg
src/map/assets/icons/hairdresser.svg
src/map/assets/icons/hifi.svg
src/map/assets/icons/hospital.svg
src/map/assets/icons/hostel.svg
src/map/assets/icons/hotel.svg
src/map/assets/icons/houseware.svg
src/map/assets/icons/ice_cream.svg
src/map/assets/icons/information.svg
src/map/assets/icons/interior_decoration.svg
src/map/assets/icons/internet_cafe.svg
src/map/assets/icons/jewelry.svg
src/map/assets/icons/laundry.svg
src/map/assets/icons/library.svg
src/map/assets/icons/lift_gate.svg
src/map/assets/icons/lighthouse.svg
src/map/assets/icons/lost_property_office.svg
src/map/assets/icons/luggage_locker.svg
src/map/assets/icons/map.svg
src/map/assets/icons/marketplace.svg
src/map/assets/icons/massage.svg
src/map/assets/icons/medical_supply.svg
src/map/assets/icons/memorial.svg
src/map/assets/icons/miniature_golf.svg
src/map/assets/icons/mobile_phone.svg
src/map/assets/icons/monument.svg
src/map/assets/icons/motorcycle_parking.svg
src/map/assets/icons/motorcycle_rental.svg
src/map/assets/icons/motorcycle.svg
src/map/assets/icons/museum.svg
src/map/assets/icons/musical_instrument.svg
src/map/assets/icons/music.svg
src/map/assets/icons/newsagent.svg
src/map/assets/icons/nightclub.svg
src/map/assets/icons/office.svg
src/map/assets/icons/optician.svg
src/map/assets/icons/outdoor_seating.svg
src/map/assets/icons/outdoor.svg
src/map/assets/icons/paint.svg
src/map/assets/icons/parking.svg
src/map/assets/icons/parking_tickets.svg
src/map/assets/icons/perfumery.svg
src/map/assets/icons/pet.svg
src/map/assets/icons/pharmacy.svg
src/map/assets/icons/photo.svg
src/map/assets/icons/picnic_site.svg
src/map/assets/icons/place_of_worship.svg
src/map/assets/icons/playground.svg
src/map/assets/icons/police.svg
src/map/assets/icons/post_box.svg
src/map/assets/icons/post_office.svg
src/map/assets/icons/prison.svg
src/map/assets/icons/public_bath.svg
src/map/assets/icons/public_bookcase.svg
src/map/assets/icons/public_transport_tickets.svg
src/map/assets/icons/pub.svg
src/map/assets/icons/rect.svg
src/map/assets/icons/recycling.svg
src/map/assets/icons/restaurant.svg
src/map/assets/icons/sauna.svg
src/map/assets/icons/scooter_rental.svg
src/map/assets/icons/seafood.svg
src/map/assets/icons/second_hand.svg
src/map/assets/icons/shelter.svg
src/map/assets/icons/shoes.svg
src/map/assets/icons/shower.svg
src/map/assets/icons/social_facility.svg
src/map/assets/icons/sports.svg
src/map/assets/icons/square.svg
src/map/assets/icons/stairs.svg
src/map/assets/icons/stationery.svg
src/map/assets/icons/statue.svg
src/map/assets/icons/storage_tank.svg
src/map/assets/icons/supermarket.svg
src/map/assets/icons/taxi.svg
src/map/assets/icons/tea.svg
src/map/assets/icons/telephone.svg
src/map/assets/icons/terminal.svg
src/map/assets/icons/theatre.svg
src/map/assets/icons/ticket.svg
src/map/assets/icons/tobacco.svg
src/map/assets/icons/toilets.svg
src/map/assets/icons/toll_booth.svg
src/map/assets/icons/tower_defensive.svg
src/map/assets/icons/townhall.svg
src/map/assets/icons/toys.svg
src/map/assets/icons/trade.svg
src/map/assets/icons/travel_agency.svg
src/map/assets/icons/tree.svg
src/map/assets/icons/tyres.svg
src/map/assets/icons/variety_store.svg
src/map/assets/icons/vehicle_inspection.svg
src/map/assets/icons/vending_machine.svg
src/map/assets/icons/veterinary.svg
src/map/assets/icons/video_games.svg
src/map/assets/icons/video.svg
src/map/assets/icons/viewpoint.svg
src/map/assets/icons/waste_basket.svg
src/map/assets/icons/waste_disposal.svg
src/map/assets/icons/waterfall.svg
src/map/assets/icons/water_park.svg
src/map/assets/icons/water_tower.svg
src/map/assets/icons/windmill.svg
src/map/assets/textures/allotments.svg
src/map/assets/textures/beach.png
src/map/assets/textures/embankment.svg
src/map/assets/textures/grave_yard_generic.svg
src/map/assets/textures/intermittent_water.svg
src/map/assets/textures/leaftype_broadleaved.svg
src/map/assets/textures/leaftype_leafless.svg
src/map/assets/textures/leaftype_mixed.svg
src/map/assets/textures/leaftype_needleleaved.svg
src/map/assets/textures/leaftype_unknown.svg
src/map/assets/textures/orchard.svg
src/map/assets/textures/plant_nursery.svg
src/map/assets/textures/quarry.svg
src/map/assets/textures/rock_overlay.png
src/map/assets/textures/scrub.png
src/map/assets/textures/vineyard.svg
src/map/assets/textures/wetland_bog.png
src/map/assets/textures/wetland_mangrove.png
src/map/assets/textures/wetland_marsh.png
src/map/assets/textures/wetland.png
src/map/assets/textures/wetland_reed.png
src/map/assets/textures/wetland_swamp.png
src/map-quick/assets.qrc
src/routing/assets.qrc
Copyright: 2022-2024, Laurent Montel <montel@kde.org>
None
none
2020-2024, Volker Krause <vkrause@kde.org>
Volker Krause <vkrause@kde.org>
License: CC0-1.0
Files: po/ca/*
po/ca@valencia/*
po/uk/*
Copyright: 2020-2024, Josep M. Ferrer <txemaq@gmail.com>
2020-2024, This_file_is_part_of_KDE
License: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
Files: src/app/android/res/drawable/icon.png
Copyright: Breeze contributors
License: LGPL-3.0-or-later
Files: src/osm/pbf/fileformat.proto
src/osm/pbf/osmformat.proto
Copyright: 2010, Scott A. Crosby. <scott@sacrosby.com>
License: MIT
Files: autotests/data/changeset/base.osm
autotests/data/changeset/changeset.osc
autotests/data/platforms/aachen-central.osm
autotests/data/platforms/berlin-central.osm
autotests/data/platforms/cologne-central.osm
autotests/data/platforms/hamburg-altona.osm
autotests/data/platforms/hamburg-central.osm
autotests/data/platforms/leipzig-central.osm
autotests/data/platforms/paris-gare-de-lyon.osm
autotests/data/platforms/wien-meidling.osm
Copyright: OpenStreetMap contributors
License: ODbL-1.0
Files: debian/*
Copyright: 2026, Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Sandro Knauß <hefee@debian.org>
License: LGPL-2.0-or-later
License: BSD-2-Clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-Clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
License: CC0-1.0
To the extent possible under law, the author(s) have dedicated all
copyright and related and neighboring rights to this software to the
public domain worldwide. This software is distributed without any
warranty.
.
On Debian systems, the complete text of the CC0 Public Domain
Dedication can be found in `/usr/share/common-licenses/CC0-1.0’.
License: LGPL-2.0-or-later
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
.
On Debian systems, the complete text of the GNU Library General
Public License version 2 can be found in
`/usr/share/common-licenses/LGPL-2’.
License: LGPL-2.1-only
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version
2.1 as published by the Free Software Foundation.
.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
On Debian systems, the complete text of the GNU Lesser General
Public License version 2.1 can be found in
`/usr/share/common-licenses/LGPL-2.1’.
License: LGPL-3.0-only
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version
3 as published by the Free Software Foundation.
.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
On Debian systems, the complete text of the GNU Lesser General
Public License version 3 can be found in
`/usr/share/common-licenses/LGPL-3’.
License: LGPL-3.0-or-later
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 3 of the
License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
On Debian systems, the complete text of the GNU Lesser General
Public License version 3 can be found in
`/usr/share/common-licenses/LGPL-3’.
License: LicenseRef-KDE-Accepted-LGPL
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 3 of the
license or (at your option) any later version that is accepted by
the membership of KDE e.V. (or its successor approved by the
membership of KDE e.V.), which shall act as a proxy as defined in
Section 6 of version 3 of the license.
.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
License: MIT
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
.
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
License: ODbL-1.0
## Open Data Commons Open Database License (ODbL)
.
### Preamble
.
The Open Database License (ODbL) is a license agreement intended to
allow users to freely share, modify, and use this Database while
maintaining this same freedom for others. Many databases are covered
by copyright, and therefore this document licenses these rights.
Some jurisdictions, mainly in the European Union, have specific
rights that cover databases, and so the ODbL addresses these rights,
too. Finally, the ODbL is also an agreement in contract for users of
this Database to act in certain ways in return for accessing this
Database.
.
Databases can contain a wide variety of types of content (images,
audiovisual material, and sounds all in the same database, for
example), and so the ODbL only governs the rights over the Database,
and not the contents of the Database individually. Licensors should
use the ODbL together with another license for the contents, if the
contents have a single set of rights that uniformly covers all of
the contents. If the contents have multiple sets of different
rights, Licensors should describe what rights govern what contents
together in the individual record or in some other way that
clarifies what rights apply.
.
Sometimes the contents of a database, or the database itself, can be
covered by other rights not addressed here (such as private
contracts, trade mark over the name, or privacy rights / data
protection rights over information in the contents), and so you are
advised that you may have to consult other documents or clear other
rights before doing activities not covered by this License.
.
------
.
The Licensor (as defined below)
.
and
.
You (as defined below)
.
agree as follows:
.
### 1.0 Definitions of Capitalised Words
.
"Collective Database" – Means this Database in unmodified form as
part of a collection of independent databases in themselves that
together are assembled into a collective whole. A work that
constitutes a Collective Database will not be considered a
Derivative Database.
.
"Convey" – As a verb, means Using the Database, a Derivative
Database, or the Database as part of a Collective Database in any
way that enables a Person to make or receive copies of the Database
or a Derivative Database. Conveying does not include interaction
with a user through a computer network, or creating and Using a
Produced Work, where no transfer of a copy of the Database or a
Derivative Database occurs. "Contents" – The contents of this
Database, which includes the information, independent works, or
other material collected into the Database. For example, the
contents of the Database could be factual data or works such as
images, audiovisual material, text, or sounds.
.
"Database" – A collection of material (the Contents) arranged in a
systematic or methodical way and individually accessible by
electronic or other means offered under the terms of this License.
.
"Database Directive" – Means Directive 96/9/EC of the European
Parliament and of the Council of 11 March 1996 on the legal
protection of databases, as amended or succeeded.
.
"Database Right" – Means rights resulting from the Chapter III ("sui
generis") rights in the Database Directive (as amended and as
transposed by member states), which includes the Extraction and
Re-utilisation of the whole or a Substantial part of the Contents,
as well as any similar rights available in the relevant jurisdiction
under Section 10.4.
.
"Derivative Database" – Means a database based upon the Database,
and includes any translation, adaptation, arrangement, modification,
or any other alteration of the Database or of a Substantial part of
the Contents. This includes, but is not limited to, Extracting or
Re-utilising the whole or a Substantial part of the Contents in a
new Database.
.
"Extraction" – Means the permanent or temporary transfer of all or a
Substantial part of the Contents to another medium by any means or
in any form.
.
"License" – Means this license agreement and is both a license of
rights such as copyright and Database Rights and an agreement in
contract.
.
"Licensor" – Means the Person that offers the Database under the
terms of this License.
.
"Person" – Means a natural or legal person or a body of persons
corporate or incorporate.
.
"Produced Work" – a work (such as an image, audiovisual material,
text, or sounds) resulting from using the whole or a Substantial
part of the Contents (via a search or other query) from this
Database, a Derivative Database, or this Database as part of a
Collective Database.
.
"Publicly" – means to Persons other than You or under Your control
by either more than 50% ownership or by the power to direct their
activities (such as contracting with an independent consultant).
.
"Re-utilisation" – means any form of making available to the public
all or a Substantial part of the Contents by the distribution of
copies, by renting, by online or other forms of transmission.
.
"Substantial" – Means substantial in terms of quantity or quality or
a combination of both. The repeated and systematic Extraction or
Re-utilisation of insubstantial parts of the Contents may amount to
the Extraction or Re-utilisation of a Substantial part of the
Contents.
.
"Use" – As a verb, means doing any act that is restricted by
copyright or Database Rights whether in the original medium or any
other; and includes without limitation distributing, copying,
publicly performing, publicly displaying, and preparing derivative
works of the Database, as well as modifying the Database as may be
technically necessary to use it in a different mode or format.
.
"You" – Means a Person exercising rights under this License who has
not previously violated the terms of this License with respect to
the Database, or who has received express permission from the
Licensor to exercise rights under this License despite a previous
violation.
.
Words in the singular include the plural and vice versa.
.
### 2.0 What this License covers
.
2.1. Legal effect of this document. This License is:
.
a. A license of applicable copyright and neighbouring rights;
.
b. A license of the Database Right; and
.
c. An agreement in contract between You and the Licensor.
.
2.2 Legal rights covered. This License covers the legal rights in the
Database, including:
.
a. Copyright. Any copyright or neighbouring rights in the
Database. The copyright licensed includes any individual elements
of the Database, but does not cover the copyright over the
Contents independent of this Database. See Section 2.4 for
details. Copyright law varies between jurisdictions, but is likely
to cover: the Database model or schema, which is the structure,
arrangement, and organisation of the Database, and can also
include the Database tables and table indexes; the data entry and
output sheets; and the Field names of Contents stored in the
Database;
.
b. Database Rights. Database Rights only extend to the Extraction
and Re-utilisation of the whole or a Substantial part of the
Contents. Database Rights can apply even when there is no
copyright over the Database. Database Rights can also apply when
the Contents are removed from the Database and are selected and
arranged in a way that would not infringe any applicable
copyright; and
.
c. Contract. This is an agreement between You and the Licensor for
access to the Database. In return you agree to certain conditions
of use on this access as outlined in this License.
.
2.3 Rights not covered.
.
a. This License does not apply to computer programs used in the
making or operation of the Database;
.
b. This License does not cover any patents over the Contents or
the Database; and
.
c. This License does not cover any trademarks associated with the
Database.
.
2.4 Relationship to Contents in the Database. The individual items
of the Contents contained in this Database may be covered by other
rights, including copyright, patent, data protection, privacy, or
personality rights, and this License does not cover any rights
(other than Database Rights or in contract) in individual Contents
contained in the Database. For example, if used on a Database of
images (the Contents), this License would not apply to copyright
over individual images, which could have their own separate
licenses, or one single license covering all of the rights over the
images.
.
### 3.0 Rights granted
.
3.1 Subject to the terms and conditions of this License, the
Licensor grants to You a worldwide, royalty-free, non-exclusive,
terminable (but only under Section 9) license to Use the Database
for the duration of any applicable copyright and Database Rights.
These rights explicitly include commercial use, and do not exclude
any field of endeavour. To the extent possible in the relevant
jurisdiction, these rights may be exercised in all media and formats
whether now known or created in the future.
.
The rights granted cover, for example:
.
a. Extraction and Re-utilisation of the whole or a Substantial
part of the Contents;
.
b. Creation of Derivative Databases;
.
c. Creation of Collective Databases;
.
d. Creation of temporary or permanent reproductions by any means
and in any form, in whole or in part, including of any Derivative
Databases or as a part of Collective Databases; and
.
e. Distribution, communication, display, lending, making
available, or performance to the public by any means and in any
form, in whole or in part, including of any Derivative Database or
as a part of Collective Databases.
.
3.2 Compulsory license schemes. For the avoidance of doubt:
.
a. Non-waivable compulsory license schemes. In those jurisdictions
in which the right to collect royalties through any statutory or
compulsory licensing scheme cannot be waived, the Licensor
reserves the exclusive right to collect such royalties for any
exercise by You of the rights granted under this License;
.
b. Waivable compulsory license schemes. In those jurisdictions in
which the right to collect royalties through any statutory or
compulsory licensing scheme can be waived, the Licensor waives the
exclusive right to collect such royalties for any exercise by You
of the rights granted under this License; and,
.
c. Voluntary license schemes. The Licensor waives the right to
collect royalties, whether individually or, in the event that the
Licensor is a member of a collecting society that administers
voluntary licensing schemes, via that society, from any exercise
by You of the rights granted under this License.
.
3.3 The right to release the Database under different terms, or to
stop distributing or making available the Database, is reserved.
Note that this Database may be multiple-licensed, and so You may
have the choice of using alternative licenses for this Database.
Subject to Section 10.4, all other rights not expressly granted by
Licensor are reserved.
.
### 4.0 Conditions of Use
.
4.1 The rights granted in Section 3 above are expressly made subject
to Your complying with the following conditions of use. These are
important conditions of this License, and if You fail to follow
them, You will be in material breach of its terms.
.
4.2 Notices. If You Publicly Convey this Database, any Derivative
Database, or the Database as part of a Collective Database, then You
must:
.
a. Do so only under the terms of this License or another license
permitted under Section 4.4;
.
b. Include a copy of this License (or, as applicable, a license
permitted under Section 4.4) or its Uniform Resource Identifier
(URI) with the Database or Derivative Database, including both in
the Database or Derivative Database and in any relevant
documentation; and
.
c. Keep intact any copyright or Database Right notices and notices
that refer to this License.
.
d. If it is not possible to put the required notices in a
particular file due to its structure, then You must include the
notices in a location (such as a relevant directory) where users
would be likely to look for it.
.
4.3 Notice for using output (Contents). Creating and Using a
Produced Work does not require the notice in Section 4.2. However,
if you Publicly Use a Produced Work, You must include a notice
associated with the Produced Work reasonably calculated to make any
Person that uses, views, accesses, interacts with, or is otherwise
exposed to the Produced Work aware that Content was obtained from
the Database, Derivative Database, or the Database as part of a
Collective Database, and that it is available under this License.
.
a. Example notice. The following text will satisfy notice under
Section 4.3:
.
Contains information from DATABASE NAME, which is made
available here under the Open Database License (ODbL).
.
DATABASE NAME should be replaced with the name of the Database and a
hyperlink to the URI of the Database. "Open Database License" should
contain a hyperlink to the URI of the text of this License. If
hyperlinks are not possible, You should include the plain text of
the required URI's with the above notice.
.
4.4 Share alike.
.
a. Any Derivative Database that You Publicly Use must be only
under the terms of:
.
i. This License;
.
ii. A later version of this License similar in spirit to this
License; or
.
iii. A compatible license.
.
If You license the Derivative Database under one of the licenses
mentioned in (iii), You must comply with the terms of that
license.
.
b. For the avoidance of doubt, Extraction or Re-utilisation of the
whole or a Substantial part of the Contents into a new database is
a Derivative Database and must comply with Section 4.4.
.
c. Derivative Databases and Produced Works. A Derivative Database
is Publicly Used and so must comply with Section 4.4. if a
Produced Work created from the Derivative Database is Publicly
Used.
.
d. Share Alike and additional Contents. For the avoidance of
doubt, You must not add Contents to Derivative Databases under
Section 4.4 a that are incompatible with the rights granted under
this License.
.
e. Compatible licenses. Licensors may authorise a proxy to
determine compatible licenses under Section 4.4 a iii. If they do
so, the authorised proxy's public statement of acceptance of a
compatible license grants You permission to use the compatible
license.
.
.
4.5 Limits of Share Alike. The requirements of Section 4.4 do not
apply in the following:
.
a. For the avoidance of doubt, You are not required to license
Collective Databases under this License if You incorporate this
Database or a Derivative Database in the collection, but this
License still applies to this Database or a Derivative Database as
a part of the Collective Database;
.
b. Using this Database, a Derivative Database, or this Database as
part of a Collective Database to create a Produced Work does not
create a Derivative Database for purposes of Section 4.4; and
.
c. Use of a Derivative Database internally within an organisation
is not to the public and therefore does not fall under the
requirements of Section 4.4.
.
4.6 Access to Derivative Databases. If You Publicly Use a Derivative
Database or a Produced Work from a Derivative Database, You must
also offer to recipients of the Derivative Database or Produced Work
a copy in a machine readable form of:
.
a. The entire Derivative Database; or
.
b. A file containing all of the alterations made to the Database
or the method of making the alterations to the Database (such as
an algorithm), including any additional Contents, that make up all
the differences between the Database and the Derivative Database.
.
The Derivative Database (under a.) or alteration file (under b.)
must be available at no more than a reasonable production cost for
physical distributions and free of charge if distributed over the
internet.
.
4.7 Technological measures and additional terms
.
a. This License does not allow You to impose (except subject to
Section 4.7 b.) any terms or any technological measures on the
Database, a Derivative Database, or the whole or a Substantial
part of the Contents that alter or restrict the terms of this
License, or any rights granted under it, or have the effect or
intent of restricting the ability of any person to exercise those
rights.
.
b. Parallel distribution. You may impose terms or technological
measures on the Database, a Derivative Database, or the whole or a
Substantial part of the Contents (a "Restricted Database") in
contravention of Section 4.74 a. only if You also make a copy of
the Database or a Derivative Database available to the recipient
of the Restricted Database:
.
i. That is available without additional fee;
.
ii. That is available in a medium that does not alter or
restrict the terms of this License, or any rights granted under
it, or have the effect or intent of restricting the ability of
any person to exercise those rights (an "Unrestricted
Database"); and
.
iii. The Unrestricted Database is at least as accessible to the
recipient as a practical matter as the Restricted Database.
.
c. For the avoidance of doubt, You may place this Database or a
Derivative Database in an authenticated environment, behind a
password, or within a similar access control scheme provided that
You do not alter or restrict the terms of this License or any
rights granted under it or have the effect or intent of
restricting the ability of any person to exercise those rights.
.
4.8 Licensing of others. You may not sublicense the Database. Each
time You communicate the Database, the whole or Substantial part of
the Contents, or any Derivative Database to anyone else in any way,
the Licensor offers to the recipient a license to the Database on
the same terms and conditions as this License. You are not
responsible for enforcing compliance by third parties with this
License, but You may enforce any rights that You have over a
Derivative Database. You are solely responsible for any
modifications of a Derivative Database made by You or another Person
at Your direction. You may not impose any further restrictions on
the exercise of the rights granted or affirmed under this License.
.
### 5.0 Moral rights
.
5.1 Moral rights. This section covers moral rights, including any
rights to be identified as the author of the Database or to object
to treatment that would otherwise prejudice the author's honour and
reputation, or any other derogatory treatment:
.
a. For jurisdictions allowing waiver of moral rights, Licensor
waives all moral rights that Licensor may have in the Database to
the fullest extent possible by the law of the relevant
jurisdiction under Section 10.4;
.
b. If waiver of moral rights under Section 5.1 a in the relevant
jurisdiction is not possible, Licensor agrees not to assert any
moral rights over the Database and waives all claims in moral
rights to the fullest extent possible by the law of the relevant
jurisdiction under Section 10.4; and
.
c. For jurisdictions not allowing waiver or an agreement not to
assert moral rights under Section 5.1 a and b, the author may
retain their moral rights over certain aspects of the Database.
.
Please note that some jurisdictions do not allow for the waiver of
moral rights, and so moral rights may still subsist over the
Database in some jurisdictions.
.
### 6.0 Fair dealing, Database exceptions, and other rights not affected
.
6.1 This License does not affect any rights that You or anyone else
may independently have under any applicable law to make any use of
this Database, including without limitation:
.
a. Exceptions to the Database Right including: Extraction of
Contents from non-electronic Databases for private purposes,
Extraction for purposes of illustration for teaching or scientific
research, and Extraction or Re-utilisation for public security or
an administrative or judicial procedure.
.
b. Fair dealing, fair use, or any other legally recognised
limitation or exception to infringement of copyright or other
applicable laws.
.
6.2 This License does not affect any rights of lawful users to
Extract and Re-utilise insubstantial parts of the Contents,
evaluated quantitatively or qualitatively, for any purposes
whatsoever, including creating a Derivative Database (subject to
other rights over the Contents, see Section 2.4). The repeated and
systematic Extraction or Re-utilisation of insubstantial parts of
the Contents may however amount to the Extraction or Re-utilisation
of a Substantial part of the Contents.
.
### 7.0 Warranties and Disclaimer
.
7.1 The Database is licensed by the Licensor "as is" and without any
warranty of any kind, either express, implied, or arising by
statute, custom, course of dealing, or trade usage. Licensor
specifically disclaims any and all implied warranties or conditions
of title, non-infringement, accuracy or completeness, the presence
or absence of errors, fitness for a particular purpose,
merchantability, or otherwise. Some jurisdictions do not allow the
exclusion of implied warranties, so this exclusion may not apply to
You.
.
### 8.0 Limitation of liability
.
8.1 Subject to any liability that may not be excluded or limited by
law, the Licensor is not liable for, and expressly excludes, all
liability for loss or damage however and whenever caused to anyone
by any use under this License, whether by You or by anyone else, and
whether caused by any fault on the part of the Licensor or not. This
exclusion of liability includes, but is not limited to, any special,
incidental, consequential, punitive, or exemplary damages such as
loss of revenue, data, anticipated profits, and lost business. This
exclusion applies even if the Licensor has been advised of the
possibility of such damages.
.
8.2 If liability may not be excluded by law, it is limited to actual
and direct financial loss to the extent it is caused by proved
negligence on the part of the Licensor.
.
### 9.0 Termination of Your rights under this License
.
9.1 Any breach by You of the terms and conditions of this License
automatically terminates this License with immediate effect and
without notice to You. For the avoidance of doubt, Persons who have
received the Database, the whole or a Substantial part of the
Contents, Derivative Databases, or the Database as part of a
Collective Database from You under this License will not have their
licenses terminated provided their use is in full compliance with
this License or a license granted under Section 4.8 of this License.
Sections 1, 2, 7, 8, 9 and 10 will survive any termination of this
License.
.
9.2 If You are not in breach of the terms of this License, the
Licensor will not terminate Your rights under it.
.
9.3 Unless terminated under Section 9.1, this License is granted to
You for the duration of applicable rights in the Database.
.
9.4 Reinstatement of rights. If you cease any breach of the terms
and conditions of this License, then your full rights under this
License will be reinstated:
.
a. Provisionally and subject to permanent termination until the
60th day after cessation of breach;
.
b. Permanently on the 60th day after cessation of breach unless
otherwise reasonably notified by the Licensor; or
.
c. Permanently if reasonably notified by the Licensor of the
violation, this is the first time You have received notice of
violation of this License from the Licensor, and You cure the
violation prior to 30 days after your receipt of the notice.
.
Persons subject to permanent termination of rights are not eligible
to be a recipient and receive a license under Section 4.8.
.
9.5 Notwithstanding the above, Licensor reserves the right to
release the Database under different license terms or to stop
distributing or making available the Database. Releasing the
Database under different license terms or stopping the distribution
of the Database will not withdraw this License (or any other license
that has been, or is required to be, granted under the terms of this
License), and this License will continue in full force and effect
unless terminated as stated above.
.
### 10.0 General
.
10.1 If any provision of this License is held to be invalid or
unenforceable, that must not affect the validity or enforceability
of the remainder of the terms and conditions of this License and
each remaining provision of this License shall be valid and enforced
to the fullest extent permitted by law.
.
10.2 This License is the entire agreement between the parties with
respect to the rights granted here over the Database. It replaces
any earlier understandings, agreements or representations with
respect to the Database.
.
10.3 If You are in breach of the terms of this License, You will not
be entitled to rely on the terms of this License or to complain of
any breach by the Licensor.
.
10.4 Choice of law. This License takes effect in and will be
governed by the laws of the relevant jurisdiction in which the
License terms are sought to be enforced. If the standard suite of
rights granted under applicable copyright law and Database Rights in
the relevant jurisdiction includes additional rights not granted
under this License, these additional rights are granted in this
License in order to meet the terms of this License.
|