Skip to content

Commit

Permalink
media-fonts/fontawesome: version bump to 5.15.3
Browse files Browse the repository at this point in the history
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Aisha Tammy <[email protected]>
Closes: gentoo#20508
Signed-off-by: Joonas Niilola <[email protected]>
  • Loading branch information
epsilon-0 authored and juippis committed May 4, 2021
1 parent 1bbff03 commit 319a931
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions media-fonts/fontawesome/Manifest
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
DIST fontawesome-5.14.0.tar.gz 11130737 BLAKE2B 0ae60cb0564ed89705d972f41084f2a3d28b630da82f055455686db5fad18709b440bf642743327369c2cc8d52b2a874a24f4a38b06d680768fa386246fb62a7 SHA512 a46679ae7758a94a4e52e0d24486aa2968d4ffa5fe0a583150847eeedc5703ad9cb47a0c71d074595ef7f44b91dae2b00abbe1c3e648447bfb5366daab99f6e3
DIST fontawesome-5.15.1.tar.gz 11277799 BLAKE2B a1f59fe6b6f3ae93bc1a818956ae0034ba7bbb9f3ce800e5296903fa5f19426496dc21245691ac83bcb0eca5ed5aae33c0942eccb1ce8c05143a9e8509c89aae SHA512 0dfef0ae11d032bf52ecdc5ea94ad258805e61b7b4e2aedcf7b0b4d2f0977466339af54310b796eefe3115ef2cb10d1537080d2d68746379ff83cfcbea5c377f
DIST fontawesome-5.15.2.tar.gz 11274421 BLAKE2B 14a0cb2d8f444a26d0552f14fbdd9a51c8bc7903e19cc33271618af87db744539cd7954baba4e8870aff98b3ed311aba37c3d8bbe6903065292a92561363067d SHA512 c1577b90053285a77ecf1225c1bd534fb0d3b89a4b90e4abcd37bd36ad1b35967a4746fe164ff7129c8a90f1294fab947dd2ff203a5b826ac89d5f6b48a77a80
DIST fontawesome-5.15.3.tar.gz 11240429 BLAKE2B a6de9a8add03e12e569ecc45c4b1fcefddb5f146f74aaeca8359fb97012648f9a11beffc34977be49e45747f7e43a1d084400aa9ba76006ef84bcbca1ecf214e SHA512 f540d8828eff91636b7e701455062d28be58fcecfd842919f4f95f1035f6d23d9b64f3f5ac24bda08be507f8d7cd0943aef8577321c37765951d88d6d6c60fc7
33 changes: 33 additions & 0 deletions media-fonts/fontawesome/fontawesome-5.15.3.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

MY_PN="Font-Awesome"
inherit font

DESCRIPTION="The iconic font"
HOMEPAGE="https://fontawesome.com"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/FortAwesome/${MY_PN}.git"
else
SRC_URI="https://github.com/FortAwesome/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
S="${WORKDIR}/${MY_PN}-${PV}"
fi

LICENSE="CC-BY-4.0 OFL-1.1"
SLOT="0/5"
IUSE="+otf ttf"

REQUIRED_USE="|| ( otf ttf )"

src_install() {
if use otf; then
FONT_S="${S}/otfs" FONT_SUFFIX="otf" font_src_install
fi
if use ttf; then
FONT_S="${S}/webfonts" FONT_SUFFIX="ttf" font_src_install
fi
}

0 comments on commit 319a931

Please sign in to comment.