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
  
     | 
    
      # This file is autogenerated. Do not edit!
Source: debian-edu
Section: metapackages
Priority: optional
Maintainer: Debian Edu Developers <debian-edu@lists.debian.org>
Uploaders: Petter Reinholdtsen <pere@debian.org>,
 Mike Gabriel <sunweaver@debian.org>,
 Dominik George <nik@naturalnet.de>
Build-Depends: debhelper-compat (= 13), blends-dev, debhelper
Standards-Version: 4.6.2
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/debian-edu/debian-edu.git
Vcs-Browser: https://salsa.debian.org/debian-edu/debian-edu
Homepage: https://blends.debian.org/edu
Package: education-tasks
Section: misc
Architecture: any
Multi-Arch: same
Depends: tasksel,
 ${misc:Depends}
Description: Debian Edu tasks for tasksel
 This package provides Debian Edu tasks in tasksel.
 .
 Debian Edu is a Debian Pure Blend, an overview of available
 metapackages and their dependencies/recommendations/suggestions
 is provided at https://blends.debian.org/edu/tasks/
Package: education-menus
Section: misc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: Debian Edu menu reorganization
 A package to reorganize menu branches in order to get a structure
 easy to use for teachers and students.
Package: education-astronomy
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-menus,
            gpredict,
            kstars,
            openuniverse,
            stellarium,
            xplanet,
            xplanet-images
Suggests: astronomical-almanac,
          sunclock,
          xtide,
          xtide-data
Description: Debian Edu astronomy related applications
 This metapackage depends on various applications that can be used to
 teach astronomy.
Package: education-chemistry
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: avogadro,
            chemtool,
            easychem,
            education-menus,
            gperiodic,
            kalzium,
            pymol
Suggests: gchempaint,
          gdis,
          rasmol
Description: Debian Edu chemistry related applications
 This metapackage depends on various applications that can be used to
 teach chemistry.
Package: education-common
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: bc,
            cifs-utils,
            command-not-found,
            convmv,
            debconf-utils,
            debian-edu-config,
            debian-edu-doc-en,
            debian-edu-doc-legacy-en,
            debian-edu-install,
            dhcping,
            dmidecode,
            etherwake,
            ethtool,
            finger,
            fping,
            gdebi-core | gdebi,
            htop,
            hwinfo,
            iftop,
            iotop,
            iproute2,
            iputils-arping | arping,
            less,
            libnss-myhostname,
            libpam-tmpdir,
            libwww-perl,
            lshw,
            lsscsi,
            mc,
            memtest86+,
            mtools,
            mtr-tiny | mtr,
            ncftp,
            nmap,
            nullidentd | ident-server,
            openbsd-inetd,
            pciutils,
            plocate,
            procinfo,
            procmail,
            psmisc,
            resolvconf,
            rsync,
            rsyslog,
            screen,
            smartmontools,
            strace,
            sysfsutils,
            tcpdump,
            tcptraceroute,
            vim
Suggests: apticron | cron-apt,
          cpqarrayd,
          debian-goodies,
          debsecan,
          dpt-i2o-raidutils | raidutils,
          emacs,
          gdb,
          isag,
          kexec-tools,
          mpt-status,
          nvram-wakeup,
          popularity-contest,
          rsyslog-doc,
          valgrind-if-available,
          wireshark
Description: Debian Edu common basic packages
 A metapackage containing dependencies for packages required on all
 installations in the Debian Edu Blend.
Package: education-desktop-cinnamon
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-astronomy,
            education-chemistry,
            education-common,
            education-electronics,
            education-geography,
            education-graphics,
            education-language,
            education-logic-games,
            education-mathematics,
            education-misc,
            education-music,
            education-physics,
            fotoxx,
            kdeedu,
            lightdm,
            mtpaint,
            osmo,
            task-cinnamon-desktop
Suggests: education-development,
          education-primaryschool,
          education-video
Description: Debian Edu Cinnamon desktop applications
 This metapackage depends on various Cinnanon components and desktop
 applications that are useful for teachers and their students.
Package: education-desktop-gnome
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: dasher,
            education-astronomy,
            education-chemistry,
            education-common,
            education-electronics,
            education-geography,
            education-graphics,
            education-language,
            education-logic-games,
            education-mathematics,
            education-misc,
            education-music,
            education-physics,
            kdeedu,
            task-gnome-desktop
Suggests: education-development,
          education-primaryschool,
          education-video
Description: Debian Edu GNOME desktop applications
 This metapackage depends on various GNOME office and desktop applications
 that are useful for teachers and their students.
Package: education-desktop-kde
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-astronomy,
            education-chemistry,
            education-common,
            education-electronics,
            education-geography,
            education-graphics,
            education-language,
            education-logic-games,
            education-mathematics,
            education-misc,
            education-music,
            education-physics,
            kdeedu,
            kdegraphics-thumbnailers,
            kdeutils,
            kio-audiocd,
            sddm-theme-debian-elarun,
            task-kde-desktop
Suggests: education-development,
          education-primaryschool,
          education-video,
          kde-full,
          kde-zeroconf,
          kruler
Description: Debian Edu KDE desktop applications
 This metapackage depends on various KDE office and desktop applications
 that are useful for teachers and their students.
Package: education-desktop-lomiri
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-common,
            lomiri
Description: Debian Edu Lomiri for Tablets
 This metapackage installs the Lomiri Operating Environment in a software
 composition suitable for tablets as they may be useful for teachers and
 their students.
Package: education-desktop-lxde
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: blueman,
            education-astronomy,
            education-chemistry,
            education-common,
            education-electronics,
            education-geography,
            education-graphics,
            education-language,
            education-logic-games,
            education-mathematics,
            education-misc,
            education-music,
            education-physics,
            fotoxx,
            hexchat,
            kdeedu,
            mtpaint,
            network-manager-applet,
            osmo,
            pidgin,
            ssh-askpass,
            task-lxde-desktop
Suggests: education-development,
          education-primaryschool,
          education-video
Description: Debian Edu LXDE desktop applications
 This metapackage depends on various LXDE components and lightweight
 desktop applications that are useful for teachers and their students.
Package: education-desktop-lxqt
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: blueman,
            education-astronomy,
            education-chemistry,
            education-common,
            education-electronics,
            education-geography,
            education-graphics,
            education-language,
            education-logic-games,
            education-mathematics,
            education-misc,
            education-music,
            education-physics,
            fotoxx,
            galculator,
            kdeedu,
            lightdm,
            mtpaint,
            network-manager-applet,
            osmo,
            pidgin,
            task-lxqt-desktop
Suggests: education-development,
          education-primaryschool,
          education-video
Description: Debian Edu LXQt desktop applications
 This metapackage depends on various LXQt components and lightweight
 desktop applications that are useful for teachers and their students.
Package: education-desktop-mate
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: arctica-greeter,
            arctica-greeter-theme-debian,
            dasher,
            education-astronomy,
            education-chemistry,
            education-common,
            education-electronics,
            education-geography,
            education-graphics,
            education-language,
            education-logic-games,
            education-mathematics,
            education-misc,
            education-music,
            education-physics,
            gnome-accessibility-themes,
            kdeedu,
            mate-desktop-environment-extras,
            onboard,
            task-mate-desktop
Suggests: education-development,
          education-primaryschool,
          education-video
Description: Debian Edu MATE desktop applications
 This metapackage depends on various MATE office and desktop applications
 that are useful for teachers and their students.
Package: education-desktop-other
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: chromium,
            chromium-l10n,
            firefox-esr,
            fonts-linex,
            freerdp3-sdl | rdesktop,
            gimp,
            gimp-data-extras,
            inkscape,
            ocrad,
            openboard,
            openclipart,
            openclipart-libreoffice,
            plymouth,
            plymouth-themes,
            sane-utils,
            standardskriver,
            thunderbird,
            vokoscreen-ng,
            webext-ublock-origin-chromium,
            webext-ublock-origin-firefox
Suggests: auctex,
          avahi-discover,
          brasero | k3b,
          dia,
          fet,
          fonts-arphic-uming,
          fonts-mlym,
          gettext,
          gnuplot,
          gosa-desktop,
          gv,
          im-config,
          jxplorer,
          katomic,
          kbattleship,
          kblackbox,
          kbounce,
          kgoldrunner,
          kig,
          kjumpingcube,
          klickety,
          kmahjongg,
          kmines,
          kolf,
          konquest,
          kpat,
          krb5-auth-dialog,
          kreversi,
          kshisen,
          kspaceduel,
          kvpm,
          lacheck,
          libncurses-dev,
          lyx,
          mdns-scan,
          monopd,
          ncftp,
          netpbm,
          postgresql,
          postgresql-client,
          pppoeconf,
          rsibreak | workrave,
          scim-chewing,
          scim-tables-zh,
          smbclient,
          sql-ledger,
          tablix2,
          texlive,
          texlive-latex-base,
          texlive-latex-base-doc,
          texlive-latex-recommended,
          texlive-latex-recommended-doc,
          texworks,
          vlc,
          vlc-plugin-bittorent,
          wine
Description: Debian Edu common desktop applications
 This metapackage depends on various office and desktop applications
 that are useful for teachers and their students.
Package: education-desktop-xfce
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: blueman,
            education-astronomy,
            education-chemistry,
            education-common,
            education-electronics,
            education-geography,
            education-graphics,
            education-language,
            education-logic-games,
            education-mathematics,
            education-misc,
            education-music,
            education-physics,
            kdeedu,
            onboard,
            ssh-askpass,
            task-xfce-desktop
Suggests: education-development,
          education-primaryschool,
          education-video
Description: Debian Edu Xfce desktop applications
 This metapackage depends on various Xfce components that are useful
 for teachers and their students.
Package: education-development
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: arduino,
            autoconf,
            bluefish,
            build-essential,
            bwbasic,
            codeblocks,
            colobot,
            crystal-facet-uml,
            ddd,
            education-menus,
            fp-compiler,
            fp-docs,
            fp-ide,
            fp-units-base,
            fp-units-db,
            fp-units-fcl,
            fp-units-fv,
            fp-units-gfx,
            fp-units-gtk2,
            fp-units-misc,
            fp-units-multimedia,
            fp-units-net,
            fp-units-rtl,
            fp-utils,
            fpc-source,
            gambas3,
            geany,
            gnome-builder,
            idle,
            kdevelop,
            kturtle,
            lazarus,
            python3-easygui,
            python3-pyqt5,
            python3-tk,
            sqlite3,
            subversion,
            thonny,
            umbrello
Suggests: squeak-vm,
          swi-prolog,
          swi-prolog-doc,
          tcl8.6-dev,
          tk8.6-dev
Description: Debian Edu software development related educational applications
 This metapackage depends on various applications that can be used to
 develop applications in schools.  The idea is to support integrated
 development environments that are easy to learn and lead to quick
 results for beginners.
Package: education-electronics
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-menus,
            gnucap,
            gpsim,
            xoscope
Suggests: electric,
          fritzing,
          gtkwave,
          kicad,
          kicad-doc-de,
          kicad-doc-en,
          kicad-doc-es,
          kicad-doc-fr,
          oregano,
          pcb,
          xcircuit
Description: Debian Edu electronics related applications
 This metapackage depends on various applications that can be used to
 teach electronics.
Package: education-geography
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-menus,
            kgeography,
            marble
Suggests: gmt,
          googleearth-package,
          gpscorrelate,
          grass,
          mapserver-bin,
          openscenegraph,
          qgis,
          qlandkartegt,
          viking
Description: Debian Edu applications for geography
 This metapackage depends on various applications that can be used
 to teach geography.
Package: education-graphics
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: dia,
            education-menus,
            gimp,
            inkscape,
            librecad,
            pencil2d,
            scribus,
            xpaint
Suggests: blender,
          hugin,
          tgif,
          xaos,
          xfig
Description: Debian Edu graphics related applications
 This metapackage depends on various applications that can be used to
 teach graphics and pictural art.
Package: education-highschool
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: calibre,
            cantor,
            carmetal,
            chemtool,
            education-menus,
            fritzing,
            inkscape,
            kalzium,
            kmplot,
            ktouch,
            kturtle,
            marble,
            melting,
            pencil2d,
            rocs,
            step,
            yorick
Description: Debian Edu applications for high school level
 This metapackage depends on various applications that are recommended
 for teaching students at high school level.
Package: education-language
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: dict,
            education-menus,
            festival,
            fonts-linex,
            fonts-sil-doulos,
            fonts-sil-doulos-compact,
            kanagram,
            khangman,
            kiten,
            klavaro,
            klettres,
            ktouch,
            kwordquiz,
            parley,
            trans-de-en,
            typespeed,
            wordnet,
            xfonts-intl-phonetic,
            xfonts-tipa
Suggests: brazilian-conjugate,
          collatinus,
          verbiste-gnome
Description: Debian Edu language related educational applications
 This metapackage depends on various applications that can be used to
 teach a (foreign) language. It includes some typing applications.
Package: education-laptop
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: task-laptop,
            unison,
            usb-modeswitch
Description: Debian Edu laptop packages
 A metapackage containing dependencies for packages required on all
 laptop installations in the Debian Edu Blend.
 These packages extend the Debian laptop task.
Package: education-logic-games
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: atomix,
            blinken,
            cgoban,
            education-menus,
            einstein,
            glpeces,
            gnuchess,
            gnugo,
            lmemory,
            ri-li,
            xboard
Suggests: crafty,
          kdegames | gnome-games
Description: Debian Edu logic games
 This metapackage depends on various logic games that can be used to
 teach logic to children.
Package: education-ltsp-server
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version}),
         tftpd-hpa
Recommends: debootstrap,
            education-workstation,
            iptables,
            ipxe,
            isc-dhcp-server-ldap,
            ltsp,
            monitoring-plugins-standard,
            nagios-nrpe-server,
            net-tools,
            nfs-kernel-server,
            rdiff-backup,
            squashfs-tools,
            tightvncserver,
            x2goserver,
            xrdp
Description: Debian Edu LTSP server packages
 A metapackage containing dependencies for packages required on all
 LTSP server installations in the Debian Edu Blend.
Package: education-main-server
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: apache2,
            avahi-utils,
            bind9,
            cups,
            cups-bsd,
            debian-installer-13-netboot-amd64,
            dovecot-gssapi,
            dovecot-imapd,
            education-networked,
            exim4-daemon-heavy,
            foomatic-db-compressed-ppds,
            gosa,
            gosa-help-de,
            gosa-help-en,
            gosa-help-fr,
            gosa-help-nl,
            gosa-plugins-dhcp-schema,
            gosa-plugins-dns-schema,
            gosa-plugins-ldapmanager,
            gosa-plugins-mailaddress,
            gosa-plugins-netgroups,
            gosa-plugins-pwreset,
            gosa-plugins-sudo,
            gosa-plugins-sudo-schema,
            gosa-plugins-systems,
            gosa-schema,
            hp-ppd,
            hpijs-ppds,
            icinga2,
            icinga2-ido-mysql,
            icingaweb2,
            iptables,
            ipxe,
            isc-dhcp-server-ldap,
            krb5-admin-server,
            krb5-kdc,
            krb5-kdc-ldap,
            ldap2zone,
            libapache2-mod-auth-gssapi,
            libnss3-tools,
            libsasl2-modules-gssapi-mit,
            links,
            makepasswd,
            mariadb-server,
            memtest86+,
            monitoring-plugins-standard,
            munin,
            mutt,
            nagios-nrpe-plugin,
            nfs-kernel-server,
            ntpsec,
            samba,
            samba-common-bin,
            sitesummary,
            slapd,
            slbackup,
            slbackup-php,
            smbclient,
            squid,
            tdb-tools,
            tftpd-hpa,
            xxd
Suggests: apache2-doc,
          calamaris,
          default-mysql-client,
          dlint,
          dnswalk,
          dovecot-pop3d,
          dsh,
          krb5-doc,
          libsasl2-modules-ldap,
          nslint,
          ocsinventory-reports,
          ocsinventory-server,
          sarg,
          squidguard,
          webalizer
Description: Debian Edu main server packages
 A metapackage containing dependencies for packages required on all
 main server installations in the Debian Edu Blend.
Package: education-mathematics
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: algobox,
            cantor,
            carmetal,
            education-menus,
            geogebra,
            geomview,
            gnuplot,
            grace,
            jfractionlab,
            jupyter-nbformat,
            jupyter-notebook,
            kalgebra,
            kbruch,
            kig,
            kmplot,
            python3-jupyter-sphinx-theme,
            python3-matplotlib,
            rocs,
            xmabacus
Suggests: euler,
          gretl,
          kile,
          mathomatic,
          octave,
          pari-gp,
          r-cran-rcmdr,
          rkward,
          scilab,
          wxmaxima,
          xaos,
          yacas
Description: Debian Edu mathematical applications
 This metapackage depends on various applications that can be used to
 teach mathematics, geometry, and statistics.
Package: education-misc
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: basket,
            colobot,
            education-menus,
            laby,
            planner,
            thonny,
            tilp2,
            vym
Suggests: freeplane,
          jclic,
          scratch
Description: Debian Edu miscellaneous applications for education
 This metapackage depends on miscellaneous applications that can be useful
 for teaching purposes.
Package: education-music
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: audacious,
            audacity,
            denemo,
            education-menus,
            fluidsynth,
            hydrogen,
            lingot,
            lmms,
            mcp-plugins,
            musescore3,
            nted,
            pianobooster,
            qsynth,
            rosegarden,
            solfege,
            swh-plugins,
            terminatorx,
            timgm6mb-soundfont,
            tuxguitar
Suggests: festival,
          lilypond,
          musescore
Description: Debian Edu music and sound applications
 This metapackage depends on various applications that can be used to
 teach music.
Package: education-networked
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-networked-common,
            libpam-krb5,
            network-manager,
            nscd
Description: Debian Edu additional packages for networked systems
 A metapackage containing dependencies for packages required on
 networked installations (with the exception of roaming workstation
 and minimal) in the Debian Edu Blend.
Package: education-networked-common
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: autofs-ldap,
            cups-browsed,
            cups-core-drivers,
            education-common,
            killer,
            krb5-user,
            ldap-utils,
            ldapvi,
            libnss-ldapd,
            libsasl2-modules-gssapi-mit,
            munin-node,
            nfs-common,
            ng-utils,
            nslcd,
            nvram-wakeup,
            openssh-server,
            p910nd,
            shutdown-at-night,
            sitesummary-client,
            sudo-ldap
Suggests: cifs-utils,
          fail2ban,
          libnss-sss,
          libpam-ccreds,
          libpam-mount,
          libpam-sss,
          nscd,
          ocsinventory-agent
Description: Debian Edu common packages for networked systems
 A metapackage containing dependencies for packages required on all networked
 installations (workstation, roaming-workstation, minimal, LTSP-server and
 main-server) in the Debian Edu Blend.
Package: education-physics
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-menus,
            jupyter-nbformat,
            jupyter-notebook,
            planets,
            python3-jupyter-sphinx-theme,
            python3-matplotlib,
            step
Suggests: etoys,
          kturtle,
          python3-pyode,
          xoscope
Description: Debian Edu physics related applications
 This metapackage depends on various applications that can be used to
 teach physics.
Package: education-preschool
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: bambam,
            blinken,
            education-menus,
            gamine,
            gcompris-qt,
            kanagram,
            khangman,
            klettres,
            ktuberling,
            pysiogame,
            tuxpaint
Description: Debian Edu applications for pre school level
 This metapackage depends on various applications that are recommended
 for teaching students at pre school level.
Package: education-primaryschool
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: basket,
            education-menus,
            gcompris-qt,
            glpeces,
            kalgebra,
            kalzium,
            kanagram,
            kbruch,
            kgeography,
            khangman,
            kig,
            klettres,
            kmplot,
            kstars,
            ktouch,
            ktuberling,
            kturtle,
            kwordquiz,
            marble,
            parley,
            pysiogame,
            qabcs,
            ri-li,
            step,
            tuxmath,
            tuxpaint,
            tuxtype,
            ulcc
Description: Debian Edu applications for primary school level
 This metapackage depends on various applications that are recommended
 for teaching students at primary school level.
Package: education-roaming-workstation
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-desktop-other,
            education-networked-common,
            gosa-desktop,
            isenkram,
            jxplorer,
            krb5-auth-dialog,
            libnss-mdns,
            libnss-sss,
            libpam-mklocaluser,
            libpam-sss,
            libsss-sudo,
            plasma-nm | cmst
Description: Debian Edu roaming workstation packages
 A metapackage containing dependencies for packages required on all
 networked workstation installations in the Debian Edu Blend where the
 client might go offine once in a while.
Package: education-secondaryschool
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: basket,
            calibre,
            carmetal,
            chemtool,
            education-menus,
            einstein,
            fritzing,
            inkscape,
            kalgebra,
            kalzium,
            kbruch,
            kgeography,
            kig,
            kmplot,
            kstars,
            ktouch,
            ktuberling,
            kturtle,
            kwordquiz,
            marble,
            melting,
            parley,
            pencil2d,
            ri-li,
            step,
            vokoscreen-ng
Description: Debian Edu applications for secondary school level
 This metapackage depends on various applications that are recommended
 for teaching students at secondary school level.
Package: education-standalone
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: cups,
            cups-bsd,
            education-common,
            education-desktop-other,
            foomatic-db-compressed-ppds,
            hp-ppd,
            hpijs-ppds,
            hplip-gui,
            isenkram
Description: Debian Edu standalone workstation packages
 A metapackage containing dependencies for packages required on all
 small standalone workstation installations in the Debian Edu Blend.
Package: education-thin-client
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: autofs,
            console-setup,
            dbus-user-session,
            initramfs-tools,
            locales,
            ltsp,
            openssh-server,
            p910nd,
            pulseaudio,
            x2goclient,
            x2gothinclient-common,
            xinit,
            xpdf,
            xserver-xorg-core,
            xserver-xorg-input-all,
            xserver-xorg-video-all
Description: Debian Edu LTSP thin client packages
 This metapackage depends on various packages required for
 all LTSP thin client chroots in the Debian Edu Blend.
Package: education-video
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: ffmpeg,
            gstreamer1.0-plugins-ugly,
            kdenlive,
            openshot-qt,
            stopmotion
Suggests: kino,
          libdvdcss2,
          pitivi,
          xine-ui
Description: Debian Edu video applications
 This metapackage depends on various applications that can be used to
 process videos in class.
Package: education-workstation
Architecture: any
Depends: ${misc:Depends},
         education-tasks (= ${binary:Version})
Recommends: education-desktop-other,
            education-menus,
            education-networked,
            gvfs-backends,
            gvfs-fuse
Description: Debian Edu networked workstation packages
 A metapackage containing dependencies for packages required on all
 networked workstation installations in the Debian Edu Blend.
 
     |