dustmite 0.0.430-2.1build1 source package in Ubuntu
Changelog
dustmite (0.0.430-2.1build1) oracular; urgency=medium * No-change rebuild for libgphobos soname change -- Matthias Klose <email address hidden> Tue, 30 Jul 2024 11:13:14 +0200
Upload details
- Uploaded by:
- Matthias Klose
- Uploaded to:
- Oracular
- Original maintainer:
- Debian D Language Group
- Architectures:
- any
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Oracular | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
dustmite_0.0.430.orig.tar.gz | 422.7 KiB | 64dfd69fa69228c8a9cd0b0de14ab83777154e4343485c24648b1ab660c5f910 |
dustmite_0.0.430-2.1build1.debian.tar.xz | 3.8 KiB | 1c8a889b78a67b674846feaff7a2198ae26c4e0ce0fb2b44645423b0f5f2aed1 |
dustmite_0.0.430-2.1build1.dsc | 1.9 KiB | 1999ade12e99004e4921b3e9c75d712aa7d133cbfb94fd6ccb797612042568a2 |
Available diffs
Binary packages built by this source
- dustmite: Tool for minimizing D source code
DustMite is a tool for minimizing D source code.
It was inspired by Tigris Delta and a thread on digitalmars.D.learn.
Reducing C++ code also works quite well via --split *.{c,cpp,h,hpp}:d.
.
DustMite will parse the source code into a simple hierarchy, and attempt
to shrink it by deleting fragments iteratively, as long as the result
satisfies a user-specified condition.
.
Its use-cases include:
* Reducing compiler bug test cases.
* Finding the source of ambiguous or misleading compiler error messages
(e.g. errors with the file/line information pointing inside Phobos)
* Alternative unit test code coverage (DustMite can remove all code that
does not affect the execution of your unit tests).
* Similarly, if you have complete test coverage, it can be used for
reducing the source tree to a minimal tree which includes support for
only enabled unittests.
This can be used to create a version of a program or library with a
test-defined subset of features.
* The --obfuscate option can obfuscate your code's identifiers.
- dustmite-dbgsym: debug symbols for dustmite