├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── app-eselect └── eselect-dlang │ ├── eselect-dlang-20241230.ebuild │ ├── files │ ├── dlang.eselect-20190608 │ ├── dlang.eselect-20240103 │ ├── dlang.eselect-20241105 │ └── dlang.eselect-20241230 │ └── metadata.xml ├── dev-lang ├── dmd │ ├── Manifest │ ├── dmd-2.107.0-r1.ebuild │ ├── dmd-2.108.1.ebuild │ ├── dmd-2.109.1.ebuild │ ├── dmd-2.110.0.ebuild │ ├── dmd-2.110.0_beta1.ebuild │ ├── dmd-2.111.0.ebuild │ ├── dmd-9999.ebuild │ ├── files │ │ ├── 2.107-dmd-r1-link-32-bit-shared-lib-with-ld.bfd.patch │ │ ├── 2.109-importc-mute-gcc-warnings-pr-16605.patch │ │ └── dmd-doc.png │ └── metadata.xml └── ldc2 │ ├── Manifest │ ├── ldc2-1.36.0-r2.ebuild │ ├── ldc2-1.37.0.ebuild │ ├── ldc2-1.38.0.ebuild │ ├── ldc2-1.39.0.ebuild │ ├── ldc2-1.40.0.ebuild │ └── metadata.xml ├── dev-libs ├── gtkd │ ├── Manifest │ ├── files │ │ └── tests-fix-debug-integer-pr-361.patch │ ├── gtkd-3.10.0-r2.ebuild │ └── metadata.xml └── ldc2-runtime │ ├── Manifest │ ├── ldc2-runtime-1.40.0.ebuild │ └── metadata.xml ├── dev-util ├── dcd │ ├── Manifest │ ├── dcd-0.16.0_beta3.ebuild │ ├── files │ │ ├── dcd-server.service │ │ └── pr-774.patch │ └── metadata.xml ├── dfmt │ ├── Manifest │ ├── dfmt-0.15.2.ebuild │ └── metadata.xml ├── dlang-tools │ ├── Manifest │ ├── dlang-tools-2.111.0.ebuild │ ├── files │ │ ├── 2.108.0-rdmd-disable-make-test.patch │ │ ├── gdc-13-fix-parentheses.patch │ │ └── icons │ │ │ ├── 16 │ │ │ └── dmd-source.png │ │ │ ├── 22 │ │ │ └── dmd-source.png │ │ │ ├── 24 │ │ │ └── dmd-source.png │ │ │ ├── 32 │ │ │ └── dmd-source.png │ │ │ ├── 48 │ │ │ └── dmd-source.png │ │ │ └── 256 │ │ │ └── dmd-source.png │ └── metadata.xml ├── dscanner │ ├── Manifest │ ├── dscanner-0.16.0_beta4.ebuild │ ├── files │ │ ├── 0.15.2-makefile-fixes.patch │ │ └── makefile-respect-ldflags.patch │ └── metadata.xml ├── dub │ ├── Manifest │ ├── dub-1.40.0.ebuild │ └── metadata.xml ├── gdmd │ ├── Manifest │ ├── files │ │ └── gdmd-20250807-no-dmd-conf.patch │ ├── gdmd-12.20250807.ebuild │ ├── gdmd-13.20250807.ebuild │ ├── gdmd-14.20250807.ebuild │ ├── gdmd-15.20250807.ebuild │ ├── gdmd-20250807.ebuild │ └── metadata.xml └── serve-d │ ├── Manifest │ ├── metadata.xml │ └── serve-d-0.8.0_beta18.ebuild ├── eclass ├── dlang-compilers-r1.eclass ├── dlang-r1.eclass ├── dlang-single.eclass ├── dlang-utils.eclass ├── dmd-r1.eclass ├── dub.eclass └── tests │ └── dlang-utils.sh ├── licenses └── LGPL-3+-with-gtkd-exceptions ├── metadata ├── layout.conf └── news │ ├── 2017-07-06-binutils-2_28-dmd-shared-object-breakage │ └── 2017-07-06-binutils-2_28-dmd-shared-object-breakage.en.txt │ └── 2019-06-12-install-compilers-into-usr-lib │ └── 2019-06-12-install-compilers-into-usr-lib.en.txt ├── net-misc ├── onedrive │ ├── Manifest │ ├── metadata.xml │ ├── onedrive-2.5.6.ebuild │ ├── onedrive-2.5.7.ebuild │ └── onedrive-2.5.9.ebuild ├── onedrivegui-bin │ ├── Manifest │ ├── files │ │ └── OneDriveGUI.desktop │ ├── metadata.xml │ └── onedrivegui-bin-1.2.1.ebuild └── onedrivegui │ ├── Manifest │ ├── metadata.xml │ ├── onedrivegui-1.2.1.ebuild │ └── onedrivegui-9999.ebuild ├── profiles ├── arch │ └── arm64 │ │ ├── eapi │ │ └── use.mask ├── dlang │ ├── amd64 │ │ └── 23.0 │ │ │ ├── desktop │ │ │ ├── eapi │ │ │ ├── parent │ │ │ └── systemd │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ ├── dmd │ │ │ ├── eapi │ │ │ └── parent │ │ │ ├── eapi │ │ │ ├── gdc │ │ │ ├── eapi │ │ │ └── parent │ │ │ ├── hardened │ │ │ ├── eapi │ │ │ ├── parent │ │ │ └── systemd │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ ├── ldc2 │ │ │ ├── eapi │ │ │ └── parent │ │ │ ├── llvm │ │ │ ├── eapi │ │ │ ├── parent │ │ │ └── systemd │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ ├── musl │ │ │ ├── eapi │ │ │ ├── hardened │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ ├── llvm │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ └── parent │ │ │ ├── no-multilib │ │ │ ├── eapi │ │ │ ├── hardened │ │ │ │ ├── eapi │ │ │ │ ├── parent │ │ │ │ └── systemd │ │ │ │ │ ├── eapi │ │ │ │ │ └── parent │ │ │ ├── parent │ │ │ └── systemd │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ ├── parent │ │ │ └── systemd │ │ │ ├── eapi │ │ │ └── parent │ ├── arm64 │ │ └── 23.0 │ │ │ ├── desktop │ │ │ ├── eapi │ │ │ ├── parent │ │ │ └── systemd │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ ├── eapi │ │ │ ├── gdc │ │ │ ├── eapi │ │ │ └── parent │ │ │ ├── hardened │ │ │ ├── eapi │ │ │ ├── parent │ │ │ └── systemd │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ ├── ldc2 │ │ │ ├── eapi │ │ │ └── parent │ │ │ ├── llvm │ │ │ ├── eapi │ │ │ ├── parent │ │ │ └── systemd │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ ├── musl │ │ │ ├── eapi │ │ │ ├── hardened │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ ├── llvm │ │ │ │ ├── eapi │ │ │ │ └── parent │ │ │ └── parent │ │ │ ├── parent │ │ │ └── systemd │ │ │ ├── eapi │ │ │ └── parent │ └── x86 │ │ └── 23.0 │ │ └── i686 │ │ ├── desktop │ │ ├── eapi │ │ └── parent │ │ ├── dmd │ │ ├── eapi │ │ └── parent │ │ ├── eapi │ │ ├── gdc │ │ ├── eapi │ │ └── parent │ │ ├── hardened │ │ ├── eapi │ │ └── parent │ │ ├── ldc2 │ │ ├── eapi │ │ └── parent │ │ ├── musl │ │ ├── eapi │ │ ├── package.mask │ │ └── parent │ │ ├── parent │ │ └── systemd │ │ ├── eapi │ │ └── parent ├── eapi ├── features │ ├── dlang │ │ ├── eapi │ │ └── package.use │ ├── dmd │ │ ├── eapi │ │ ├── make.defaults │ │ ├── package.use │ │ └── parent │ ├── gdc │ │ ├── eapi │ │ ├── make.defaults │ │ ├── package.use │ │ └── parent │ ├── ldc2 │ │ ├── eapi │ │ ├── make.defaults │ │ ├── package.use │ │ └── parent │ └── musl │ │ ├── package.mask │ │ └── package.use.mask ├── license_groups ├── profiles.desc ├── repo_name ├── updates │ └── 2Q-2016 └── use.desc ├── scripts ├── pkgcheck-scan.sh └── update-gdc-versions.sh ├── sys-fs └── btdu │ ├── Manifest │ ├── btdu-0.5.1.ebuild │ └── metadata.xml └── x11-terms └── tilix ├── Manifest ├── files ├── fix-dmd-and-gdc-build-pr-2219.patch └── remove-libunwind-dep-pr-2220.patch ├── metadata.xml └── tilix-1.9.6-r2.ebuild /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | metadata/md5-cache/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/README.md -------------------------------------------------------------------------------- /app-eselect/eselect-dlang/eselect-dlang-20241230.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/app-eselect/eselect-dlang/eselect-dlang-20241230.ebuild -------------------------------------------------------------------------------- /app-eselect/eselect-dlang/files/dlang.eselect-20190608: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/app-eselect/eselect-dlang/files/dlang.eselect-20190608 -------------------------------------------------------------------------------- /app-eselect/eselect-dlang/files/dlang.eselect-20240103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/app-eselect/eselect-dlang/files/dlang.eselect-20240103 -------------------------------------------------------------------------------- /app-eselect/eselect-dlang/files/dlang.eselect-20241105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/app-eselect/eselect-dlang/files/dlang.eselect-20241105 -------------------------------------------------------------------------------- /app-eselect/eselect-dlang/files/dlang.eselect-20241230: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/app-eselect/eselect-dlang/files/dlang.eselect-20241230 -------------------------------------------------------------------------------- /app-eselect/eselect-dlang/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/app-eselect/eselect-dlang/metadata.xml -------------------------------------------------------------------------------- /dev-lang/dmd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/Manifest -------------------------------------------------------------------------------- /dev-lang/dmd/dmd-2.107.0-r1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/dmd-2.107.0-r1.ebuild -------------------------------------------------------------------------------- /dev-lang/dmd/dmd-2.108.1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/dmd-2.108.1.ebuild -------------------------------------------------------------------------------- /dev-lang/dmd/dmd-2.109.1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/dmd-2.109.1.ebuild -------------------------------------------------------------------------------- /dev-lang/dmd/dmd-2.110.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/dmd-2.110.0.ebuild -------------------------------------------------------------------------------- /dev-lang/dmd/dmd-2.110.0_beta1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/dmd-2.110.0_beta1.ebuild -------------------------------------------------------------------------------- /dev-lang/dmd/dmd-2.111.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/dmd-2.111.0.ebuild -------------------------------------------------------------------------------- /dev-lang/dmd/dmd-9999.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/dmd-9999.ebuild -------------------------------------------------------------------------------- /dev-lang/dmd/files/2.107-dmd-r1-link-32-bit-shared-lib-with-ld.bfd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/files/2.107-dmd-r1-link-32-bit-shared-lib-with-ld.bfd.patch -------------------------------------------------------------------------------- /dev-lang/dmd/files/2.109-importc-mute-gcc-warnings-pr-16605.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/files/2.109-importc-mute-gcc-warnings-pr-16605.patch -------------------------------------------------------------------------------- /dev-lang/dmd/files/dmd-doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/files/dmd-doc.png -------------------------------------------------------------------------------- /dev-lang/dmd/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/dmd/metadata.xml -------------------------------------------------------------------------------- /dev-lang/ldc2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/ldc2/Manifest -------------------------------------------------------------------------------- /dev-lang/ldc2/ldc2-1.36.0-r2.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/ldc2/ldc2-1.36.0-r2.ebuild -------------------------------------------------------------------------------- /dev-lang/ldc2/ldc2-1.37.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/ldc2/ldc2-1.37.0.ebuild -------------------------------------------------------------------------------- /dev-lang/ldc2/ldc2-1.38.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/ldc2/ldc2-1.38.0.ebuild -------------------------------------------------------------------------------- /dev-lang/ldc2/ldc2-1.39.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/ldc2/ldc2-1.39.0.ebuild -------------------------------------------------------------------------------- /dev-lang/ldc2/ldc2-1.40.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/ldc2/ldc2-1.40.0.ebuild -------------------------------------------------------------------------------- /dev-lang/ldc2/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-lang/ldc2/metadata.xml -------------------------------------------------------------------------------- /dev-libs/gtkd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-libs/gtkd/Manifest -------------------------------------------------------------------------------- /dev-libs/gtkd/files/tests-fix-debug-integer-pr-361.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-libs/gtkd/files/tests-fix-debug-integer-pr-361.patch -------------------------------------------------------------------------------- /dev-libs/gtkd/gtkd-3.10.0-r2.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-libs/gtkd/gtkd-3.10.0-r2.ebuild -------------------------------------------------------------------------------- /dev-libs/gtkd/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-libs/gtkd/metadata.xml -------------------------------------------------------------------------------- /dev-libs/ldc2-runtime/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-libs/ldc2-runtime/Manifest -------------------------------------------------------------------------------- /dev-libs/ldc2-runtime/ldc2-runtime-1.40.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-libs/ldc2-runtime/ldc2-runtime-1.40.0.ebuild -------------------------------------------------------------------------------- /dev-libs/ldc2-runtime/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-libs/ldc2-runtime/metadata.xml -------------------------------------------------------------------------------- /dev-util/dcd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dcd/Manifest -------------------------------------------------------------------------------- /dev-util/dcd/dcd-0.16.0_beta3.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dcd/dcd-0.16.0_beta3.ebuild -------------------------------------------------------------------------------- /dev-util/dcd/files/dcd-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dcd/files/dcd-server.service -------------------------------------------------------------------------------- /dev-util/dcd/files/pr-774.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dcd/files/pr-774.patch -------------------------------------------------------------------------------- /dev-util/dcd/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dcd/metadata.xml -------------------------------------------------------------------------------- /dev-util/dfmt/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dfmt/Manifest -------------------------------------------------------------------------------- /dev-util/dfmt/dfmt-0.15.2.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dfmt/dfmt-0.15.2.ebuild -------------------------------------------------------------------------------- /dev-util/dfmt/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dfmt/metadata.xml -------------------------------------------------------------------------------- /dev-util/dlang-tools/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/Manifest -------------------------------------------------------------------------------- /dev-util/dlang-tools/dlang-tools-2.111.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/dlang-tools-2.111.0.ebuild -------------------------------------------------------------------------------- /dev-util/dlang-tools/files/2.108.0-rdmd-disable-make-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/files/2.108.0-rdmd-disable-make-test.patch -------------------------------------------------------------------------------- /dev-util/dlang-tools/files/gdc-13-fix-parentheses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/files/gdc-13-fix-parentheses.patch -------------------------------------------------------------------------------- /dev-util/dlang-tools/files/icons/16/dmd-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/files/icons/16/dmd-source.png -------------------------------------------------------------------------------- /dev-util/dlang-tools/files/icons/22/dmd-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/files/icons/22/dmd-source.png -------------------------------------------------------------------------------- /dev-util/dlang-tools/files/icons/24/dmd-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/files/icons/24/dmd-source.png -------------------------------------------------------------------------------- /dev-util/dlang-tools/files/icons/256/dmd-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/files/icons/256/dmd-source.png -------------------------------------------------------------------------------- /dev-util/dlang-tools/files/icons/32/dmd-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/files/icons/32/dmd-source.png -------------------------------------------------------------------------------- /dev-util/dlang-tools/files/icons/48/dmd-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/files/icons/48/dmd-source.png -------------------------------------------------------------------------------- /dev-util/dlang-tools/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dlang-tools/metadata.xml -------------------------------------------------------------------------------- /dev-util/dscanner/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dscanner/Manifest -------------------------------------------------------------------------------- /dev-util/dscanner/dscanner-0.16.0_beta4.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dscanner/dscanner-0.16.0_beta4.ebuild -------------------------------------------------------------------------------- /dev-util/dscanner/files/0.15.2-makefile-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dscanner/files/0.15.2-makefile-fixes.patch -------------------------------------------------------------------------------- /dev-util/dscanner/files/makefile-respect-ldflags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dscanner/files/makefile-respect-ldflags.patch -------------------------------------------------------------------------------- /dev-util/dscanner/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dscanner/metadata.xml -------------------------------------------------------------------------------- /dev-util/dub/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dub/Manifest -------------------------------------------------------------------------------- /dev-util/dub/dub-1.40.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dub/dub-1.40.0.ebuild -------------------------------------------------------------------------------- /dev-util/dub/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/dub/metadata.xml -------------------------------------------------------------------------------- /dev-util/gdmd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/gdmd/Manifest -------------------------------------------------------------------------------- /dev-util/gdmd/files/gdmd-20250807-no-dmd-conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/gdmd/files/gdmd-20250807-no-dmd-conf.patch -------------------------------------------------------------------------------- /dev-util/gdmd/gdmd-12.20250807.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/gdmd/gdmd-12.20250807.ebuild -------------------------------------------------------------------------------- /dev-util/gdmd/gdmd-13.20250807.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/gdmd/gdmd-13.20250807.ebuild -------------------------------------------------------------------------------- /dev-util/gdmd/gdmd-14.20250807.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/gdmd/gdmd-14.20250807.ebuild -------------------------------------------------------------------------------- /dev-util/gdmd/gdmd-15.20250807.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/gdmd/gdmd-15.20250807.ebuild -------------------------------------------------------------------------------- /dev-util/gdmd/gdmd-20250807.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/gdmd/gdmd-20250807.ebuild -------------------------------------------------------------------------------- /dev-util/gdmd/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/gdmd/metadata.xml -------------------------------------------------------------------------------- /dev-util/serve-d/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/serve-d/Manifest -------------------------------------------------------------------------------- /dev-util/serve-d/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/serve-d/metadata.xml -------------------------------------------------------------------------------- /dev-util/serve-d/serve-d-0.8.0_beta18.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/dev-util/serve-d/serve-d-0.8.0_beta18.ebuild -------------------------------------------------------------------------------- /eclass/dlang-compilers-r1.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/eclass/dlang-compilers-r1.eclass -------------------------------------------------------------------------------- /eclass/dlang-r1.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/eclass/dlang-r1.eclass -------------------------------------------------------------------------------- /eclass/dlang-single.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/eclass/dlang-single.eclass -------------------------------------------------------------------------------- /eclass/dlang-utils.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/eclass/dlang-utils.eclass -------------------------------------------------------------------------------- /eclass/dmd-r1.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/eclass/dmd-r1.eclass -------------------------------------------------------------------------------- /eclass/dub.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/eclass/dub.eclass -------------------------------------------------------------------------------- /eclass/tests/dlang-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/eclass/tests/dlang-utils.sh -------------------------------------------------------------------------------- /licenses/LGPL-3+-with-gtkd-exceptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/licenses/LGPL-3+-with-gtkd-exceptions -------------------------------------------------------------------------------- /metadata/layout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/metadata/layout.conf -------------------------------------------------------------------------------- /metadata/news/2017-07-06-binutils-2_28-dmd-shared-object-breakage/2017-07-06-binutils-2_28-dmd-shared-object-breakage.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/metadata/news/2017-07-06-binutils-2_28-dmd-shared-object-breakage/2017-07-06-binutils-2_28-dmd-shared-object-breakage.en.txt -------------------------------------------------------------------------------- /metadata/news/2019-06-12-install-compilers-into-usr-lib/2019-06-12-install-compilers-into-usr-lib.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/metadata/news/2019-06-12-install-compilers-into-usr-lib/2019-06-12-install-compilers-into-usr-lib.en.txt -------------------------------------------------------------------------------- /net-misc/onedrive/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrive/Manifest -------------------------------------------------------------------------------- /net-misc/onedrive/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrive/metadata.xml -------------------------------------------------------------------------------- /net-misc/onedrive/onedrive-2.5.6.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrive/onedrive-2.5.6.ebuild -------------------------------------------------------------------------------- /net-misc/onedrive/onedrive-2.5.7.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrive/onedrive-2.5.7.ebuild -------------------------------------------------------------------------------- /net-misc/onedrive/onedrive-2.5.9.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrive/onedrive-2.5.9.ebuild -------------------------------------------------------------------------------- /net-misc/onedrivegui-bin/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrivegui-bin/Manifest -------------------------------------------------------------------------------- /net-misc/onedrivegui-bin/files/OneDriveGUI.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrivegui-bin/files/OneDriveGUI.desktop -------------------------------------------------------------------------------- /net-misc/onedrivegui-bin/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrivegui-bin/metadata.xml -------------------------------------------------------------------------------- /net-misc/onedrivegui-bin/onedrivegui-bin-1.2.1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrivegui-bin/onedrivegui-bin-1.2.1.ebuild -------------------------------------------------------------------------------- /net-misc/onedrivegui/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrivegui/Manifest -------------------------------------------------------------------------------- /net-misc/onedrivegui/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrivegui/metadata.xml -------------------------------------------------------------------------------- /net-misc/onedrivegui/onedrivegui-1.2.1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrivegui/onedrivegui-1.2.1.ebuild -------------------------------------------------------------------------------- /net-misc/onedrivegui/onedrivegui-9999.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/net-misc/onedrivegui/onedrivegui-9999.ebuild -------------------------------------------------------------------------------- /profiles/arch/arm64/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/arch/arm64/use.mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/arch/arm64/use.mask -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/desktop/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/desktop/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/desktop/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/desktop/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/desktop/systemd/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/desktop/systemd/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/dmd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/dmd/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/dmd/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/gdc/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/gdc/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/gdc/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/hardened/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/hardened/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/hardened/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/hardened/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/hardened/systemd/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/hardened/systemd/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/ldc2/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/ldc2/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/ldc2/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/llvm/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/llvm/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/llvm/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/llvm/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/llvm/systemd/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/llvm/systemd/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/musl/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/musl/hardened/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/musl/hardened/parent: -------------------------------------------------------------------------------- 1 | gentoo:default/linux/amd64/23.0/musl/hardened 2 | ../ 3 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/musl/llvm/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/musl/llvm/parent: -------------------------------------------------------------------------------- 1 | gentoo:default/linux/amd64/23.0/musl/llvm 2 | ../ 3 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/musl/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/musl/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/no-multilib/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/no-multilib/hardened/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/no-multilib/hardened/parent: -------------------------------------------------------------------------------- 1 | gentoo:default/linux/amd64/23.0/no-multilib/hardened 2 | ../ 3 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/no-multilib/hardened/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/no-multilib/hardened/systemd/parent: -------------------------------------------------------------------------------- 1 | gentoo:default/linux/amd64/23.0/no-multilib/hardened/systemd 2 | ../ 3 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/no-multilib/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/no-multilib/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/no-multilib/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/no-multilib/systemd/parent: -------------------------------------------------------------------------------- 1 | gentoo:default/linux/amd64/23.0/no-multilib/systemd 2 | ../ 3 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/parent -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/amd64/23.0/systemd/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/amd64/23.0/systemd/parent -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/desktop/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/desktop/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/arm64/23.0/desktop 3 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/desktop/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/desktop/systemd/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/arm64/23.0/desktop/systemd 3 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/gdc/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/gdc/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/arm64/23.0/gdc/parent -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/hardened/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/hardened/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/arm64/23.0/hardened 3 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/hardened/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/hardened/systemd/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/arm64/23.0/hardened/systemd 3 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/ldc2/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/ldc2/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/llvm/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/llvm/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/arm64/23.0/llvm 3 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/llvm/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/llvm/systemd/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/arm64/23.0/llvm/systemd 3 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/musl/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/musl/hardened/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/musl/hardened/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/arm64/23.0/musl/hardened 3 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/musl/llvm/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/musl/llvm/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/arm64/23.0/musl/llvm 3 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/musl/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/arm64/23.0/musl/parent -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/arm64/23.0/parent -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/arm64/23.0/systemd/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/arm64/23.0/systemd 3 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/desktop/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/desktop/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/x86/23.0/i686/desktop 3 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/dmd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/dmd/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/x86/23.0/i686/dmd/parent -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/gdc/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/gdc/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/x86/23.0/i686/gdc/parent -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/hardened/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/hardened/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/x86/23.0/i686/hardened 3 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/ldc2/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/ldc2/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/x86/23.0/i686/ldc2/parent -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/musl/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/musl/package.mask: -------------------------------------------------------------------------------- 1 | # Missing dep >=gnome-base/librsvg-2.54:2[abi_x86_32(-)] 2 | dev-libs/gtkd 3 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/musl/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/x86/23.0/i686/musl/parent -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/dlang/x86/23.0/i686/parent -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/systemd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/dlang/x86/23.0/i686/systemd/parent: -------------------------------------------------------------------------------- 1 | ../ 2 | gentoo:default/linux/x86/23.0/i686/systemd 3 | -------------------------------------------------------------------------------- /profiles/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/features/dlang/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/features/dlang/package.use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/features/dlang/package.use -------------------------------------------------------------------------------- /profiles/features/dmd/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/features/dmd/make.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/features/dmd/make.defaults -------------------------------------------------------------------------------- /profiles/features/dmd/package.use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/features/dmd/package.use -------------------------------------------------------------------------------- /profiles/features/dmd/parent: -------------------------------------------------------------------------------- 1 | ../dlang 2 | -------------------------------------------------------------------------------- /profiles/features/gdc/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/features/gdc/make.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/features/gdc/make.defaults -------------------------------------------------------------------------------- /profiles/features/gdc/package.use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/features/gdc/package.use -------------------------------------------------------------------------------- /profiles/features/gdc/parent: -------------------------------------------------------------------------------- 1 | ../dlang 2 | -------------------------------------------------------------------------------- /profiles/features/ldc2/eapi: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /profiles/features/ldc2/make.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/features/ldc2/make.defaults -------------------------------------------------------------------------------- /profiles/features/ldc2/package.use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/features/ldc2/package.use -------------------------------------------------------------------------------- /profiles/features/ldc2/parent: -------------------------------------------------------------------------------- 1 | ../dlang 2 | -------------------------------------------------------------------------------- /profiles/features/musl/package.mask: -------------------------------------------------------------------------------- 1 | # app-text/po4a dependency 2 | x11-terms/tilix -------------------------------------------------------------------------------- /profiles/features/musl/package.use.mask: -------------------------------------------------------------------------------- 1 | # Uses glibc-built binary 2 | dev-lang/dmd selfhost -------------------------------------------------------------------------------- /profiles/license_groups: -------------------------------------------------------------------------------- 1 | GPL-COMPATIBLE LGPL-3+-with-gtkd-exceptions 2 | -------------------------------------------------------------------------------- /profiles/profiles.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/profiles.desc -------------------------------------------------------------------------------- /profiles/repo_name: -------------------------------------------------------------------------------- 1 | dlang 2 | -------------------------------------------------------------------------------- /profiles/updates/2Q-2016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/updates/2Q-2016 -------------------------------------------------------------------------------- /profiles/use.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/profiles/use.desc -------------------------------------------------------------------------------- /scripts/pkgcheck-scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/scripts/pkgcheck-scan.sh -------------------------------------------------------------------------------- /scripts/update-gdc-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/scripts/update-gdc-versions.sh -------------------------------------------------------------------------------- /sys-fs/btdu/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/sys-fs/btdu/Manifest -------------------------------------------------------------------------------- /sys-fs/btdu/btdu-0.5.1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/sys-fs/btdu/btdu-0.5.1.ebuild -------------------------------------------------------------------------------- /sys-fs/btdu/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/sys-fs/btdu/metadata.xml -------------------------------------------------------------------------------- /x11-terms/tilix/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/x11-terms/tilix/Manifest -------------------------------------------------------------------------------- /x11-terms/tilix/files/fix-dmd-and-gdc-build-pr-2219.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/x11-terms/tilix/files/fix-dmd-and-gdc-build-pr-2219.patch -------------------------------------------------------------------------------- /x11-terms/tilix/files/remove-libunwind-dep-pr-2220.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/x11-terms/tilix/files/remove-libunwind-dep-pr-2220.patch -------------------------------------------------------------------------------- /x11-terms/tilix/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/x11-terms/tilix/metadata.xml -------------------------------------------------------------------------------- /x11-terms/tilix/tilix-1.9.6-r2.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/dlang/HEAD/x11-terms/tilix/tilix-1.9.6-r2.ebuild --------------------------------------------------------------------------------