media-fonts/monaspace: add 1.200, drop 1.000

Signed-off-by: Michael Seifert <m.seifert@digitalernachschub.de>
This commit is contained in:
Michael Seifert
2025-06-06 14:26:55 +02:00
parent 14f72f9fc0
commit 5c8006e5d3
3 changed files with 9 additions and 3 deletions

View File

@@ -1 +1 @@
DIST monaspace-v1.000.zip 122949327 BLAKE2B f22a24580e21edc2488dffd8dfce22551ff5ba88e199349e9d835b9ccb04dc3f6bec3b6a4c0f22e3ce8fba1e541fd3b8ddc6593dc21bb12a082833b199a1c00e SHA512 f06bfcc20c48b6c92b16620ee5f649a284bfc8d8d20c212b28613491a26a3627be02eede167eda331e66509163fd50fb435e89c07c6cff297efd503c273a102c
DIST monaspace-v1.200.zip 994146021 BLAKE2B bee348bd844c63c132db71e9d2556e20fae1762d0c900f0733d12afa4dd25542a190ab1f54f99731e8c6b1b1e8983a2ebd6a4d7aa6242f5234e8af6686c777bb SHA512 57962306ecd5cac127dae0ac188637cf40bb3dbaef3671081ab3fe99c3b21ccd64e5452da6bb7ad36909c1dc744f450851d8f1a03b52bda3bf81a7b75b780905

View File

@@ -9,6 +9,7 @@
<remote-id type="github">githubnext/monaspace</remote-id>
</upstream>
<use>
<flag name="frozen">Whether to install fonts with ligatures and texture healing turned on by default</flag>
<flag name="variable">Whether to install the variable weight fonts</flag>
</use>
</pkgmetadata>

View File

@@ -16,8 +16,8 @@ KEYWORDS="~amd64"
FONT_S="${S}/fonts/total"
FONT_SUFFIX=""
IUSE="variable +otf"
REQUIRED_USE="|| ( otf variable )"
IUSE="frozen +otf variable"
REQUIRED_USE="|| ( frozen otf variable )"
BDEPEND="app-arch/unzip"
@@ -26,6 +26,11 @@ src_prepare() {
mkdir "${S}/fonts/total" || die
if use frozen ; then
mv "${S}/fonts/frozen/"* "${S}/fonts/total" || die
FONT_SUFFIX="${FONT_SUFFIX} ttf"
fi
if use otf ; then
mv "${S}/fonts/otf/"* "${S}/fonts/total" || die
FONT_SUFFIX="${FONT_SUFFIX} otf"