* [bug#71524] [PATCH] gnu: Add font-paytone-one. @ 2024-06-12 19:00 sirgazil--- via Guix-patches via 2024-06-16 10:24 ` [bug#71524] Recreate patch Andreas Enge [not found] ` <87ikxhhbvq.fsf@qq.com> 0 siblings, 2 replies; 3+ messages in thread From: sirgazil--- via Guix-patches via @ 2024-06-12 19:00 UTC (permalink / raw) To: 71524; +Cc: Luis Felipe From: Luis Felipe <sirgazil@zoho.com> * gnu/packages/fonts.scm (font-paytone-one): New variable. Change-Id: I0c1faf60855fbd10f2b4dd54026cfbabfa281441 --- gnu/packages/fonts.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index cab12d6527..58a1e11cdd 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -3841,3 +3841,31 @@ (define-public font-oswald used freely across the internet by web browsers on desktop computers, laptops and mobile devices.") (license license:silofl1.1)))) + +(define-public font-paytone-one + (let ((version "0") + (commit "b1438bc11966d48a1e9e8943b7b8a32dcb0c533c") + (revision "0")) + (package + (name "font-paytone-one") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googlefonts/paytoneFont") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1gbmrjx8yj8xjh6fs0pzh8j0kxvwvhhjlp16gmv5c7i6b8s7r4r2")))) + (build-system font-build-system) + (home-page "https://github.com/googlefonts/paytoneFont") + (synopsis "Sans serif typeface") + (description "Paytone One is a sans serif typeface developed for +use as a display and headlining webfont. + +The face has a slight casual appearance with ample round bowls. The +slanted stroke terminals add some visual play to the overall appearance +of the font.") + (license license:silofl1.1)))) base-commit: bb73faea028cc9a15af62cb8ade15d58da51bea2 -- 2.41.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#71524] Recreate patch 2024-06-12 19:00 [bug#71524] [PATCH] gnu: Add font-paytone-one sirgazil--- via Guix-patches via @ 2024-06-16 10:24 ` Andreas Enge [not found] ` <87ikxhhbvq.fsf@qq.com> 1 sibling, 0 replies; 3+ messages in thread From: Andreas Enge @ 2024-06-16 10:24 UTC (permalink / raw) To: 71524 Hello Luis Felipe, the patch looks good, but does not apply anymore; I think the problem is with adding packages to the end of the file (or more generally, creating several commits next to each other), the previous addition of font-teko has changed the context of the patch. I am not git savvy enough to recreate the patch while keeping you as the author; would you mind sending a v2 that applies on top of the current master branch? Andreas ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <87ikxhhbvq.fsf@qq.com>]
* bug#71524: [PATCH] gnu: Add font-paytone-one. [not found] ` <87ikxhhbvq.fsf@qq.com> @ 2024-07-07 7:58 ` Z572 via Guix-patches via 0 siblings, 0 replies; 3+ messages in thread From: Z572 via Guix-patches via @ 2024-07-07 7:58 UTC (permalink / raw) To: sirgazil--- via Guix-patches via; +Cc: 71524-done, sirgazil [-- Attachment #1: Type: text/plain, Size: 1961 bytes --] sirgazil--- via Guix-patches via <guix-patches@gnu.org> writes: > From: Luis Felipe <sirgazil@zoho.com> > > * gnu/packages/fonts.scm (font-paytone-one): New variable. > > Change-Id: I0c1faf60855fbd10f2b4dd54026cfbabfa281441 > --- > gnu/packages/fonts.scm | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > > diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm > index cab12d6527..58a1e11cdd 100644 > --- a/gnu/packages/fonts.scm > +++ b/gnu/packages/fonts.scm > @@ -3841,3 +3841,31 @@ (define-public font-oswald > used freely across the internet by web browsers on desktop computers, > laptops and mobile devices.") > (license license:silofl1.1)))) > + > +(define-public font-paytone-one > + (let ((version "0") > + (commit "b1438bc11966d48a1e9e8943b7b8a32dcb0c533c") > + (revision "0")) > + (package > + (name "font-paytone-one") > + (version (git-version version revision commit)) > + (source > + (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/googlefonts/paytoneFont") > + (commit commit))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 > + "1gbmrjx8yj8xjh6fs0pzh8j0kxvwvhhjlp16gmv5c7i6b8s7r4r2")))) > + (build-system font-build-system) > + (home-page "https://github.com/googlefonts/paytoneFont") > + (synopsis "Sans serif typeface") > + (description "Paytone One is a sans serif typeface developed for > +use as a display and headlining webfont. > + > +The face has a slight casual appearance with ample round bowls. The > +slanted stroke terminals add some visual play to the overall appearance > +of the font.") > + (license license:silofl1.1)))) > > base-commit: bb73faea028cc9a15af62cb8ade15d58da51bea2 push in https://git.savannah.gnu.org/cgit/guix.git/commit/?id=7692608e0563b0c4bca97f247f37a237a4d2a9be [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 832 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-07 7:59 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-12 19:00 [bug#71524] [PATCH] gnu: Add font-paytone-one sirgazil--- via Guix-patches via 2024-06-16 10:24 ` [bug#71524] Recreate patch Andreas Enge [not found] ` <87ikxhhbvq.fsf@qq.com> 2024-07-07 7:58 ` bug#71524: [PATCH] gnu: Add font-paytone-one Z572 via Guix-patches via
Code repositories for project(s) associated with this public inbox https://git.savannah.gnu.org/cgit/guix.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).