;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 David Thompson ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages pumpio) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix build-system gnu) #:use-module (gnu packages aspell) #:use-module (gnu packages qt) #:use-module (gnu packages web)) (define-public pumpa (package (name "pumpa") (version "0.9.3") (source (origin (method git-fetch) ; no source tarballs (uri (git-reference (url "https://source.pumpa.branchable.com/") (commit (string-append "v" version)))) (sha256 (base32 "14072vis539zjgryjr5a77j2cprxii5znyg3p01qbb11lijk9nj7")) (file-name (string-append name "-" version "-checkout")))) (build-system gnu-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'configure (lambda* (#:key inputs outputs #:allow-other-keys) (substitute* "src/util.cpp" (("buffio\\.h") "tidybuffio.h")) ;; Fix dependency tests. (substitute* "pumpa.pro" (("/usr/include/tidy\\.h") (search-input-file inputs "/include/tidy.h")) (("/usr/include/aspell.h") (search-input-file inputs "/include/aspell.h"))) ;; Run qmake with proper installation prefix. (let ((prefix (string-append "PREFIX=" (assoc-ref outputs "out")))) (invoke "qmake" prefix)) #t))))) (inputs (list aspell qtbase-5 tidy-html)) (synopsis "Qt-based pump.io client") (description "Pumpa is a simple pump.io client written in C++ and Qt.") (home-page "https://pumpa.branchable.com/") (license gpl3+))) :41 +0000'>2024-12-13build-system/pyproject: Use python-sans-pip-wrapper as default-python....Also adds python-setuptools and python-wheel to relevant packages, either to native-inputs or to propagated inputs if the pkg_resources Python module is loaded at runtime. * guix/build-system/pyproject.scm (default-python): Default to python-sans-pip-wrapper. Change-Id: I2d986c2225114f54459dd6bb360913106e52cdf4 Lars-Dominik Braun 2024-10-24gnu: fcft: Update to 3.1.9....* gnu/packages/fontutils.scm (fcft): Update to 3.1.9. Change-Id: I460a8821a56b7046c34f11bc2a00cb3ab2ace76b Ashish SHUKLA 2024-10-03gnu: Add fontopia....* gnu/packages/fontutils.scm (fontopia): New variable. Change-Id: I8f9b51922af06f994955b755ec8345d42189cfd7 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Andy Tai 2024-09-08gnu: python-defcon-bootstrap: Update to 0.10.3....* gnu/packages/fontutils.scm (python-defcon-bootstrap): Update to 0.10.3. Change-Id: Ifde8d3011f94a27e493d9c826c4c2edbc03a64f0 Tobias Geerinckx-Rice 2024-08-31gnu: fontforge: Fix build....This follows up on commit 3f2c6cc3933bc01077383e4ff83b6a5d00f83129 (gnu: fontutils: Add 'bash' input for 'wrap-program'.). gnu/packages/fontutils.scm(fontforge)[arguments]<#:phases>: Adjust input names. Change-Id: I64c3992e995294cb04a9f4c79cd841bfc51ba08d Signed-off-by: Hilton Chain <hako@ultrarare.space> Zheng Junjie 2024-08-31gnu: fontutils: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/fontutils.scm (fontforge): Adjust indentation. [inputs]: Add 'bash-minimal'. Remove labels. (fntsample)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ib3498e8ab1e499db6bc512da31718690e46f90f1 Maxime Devos 2024-06-06gnu: Remove fontforge-20190801....* gnu/packages/fontutils.scm (fontforge-20190801): Delete variable. Change-Id: I65b148f77468a46e4c40a57ffdd44b3e43321449 Efraim Flashner 2024-05-05gnu: python-statmake: Adjust tests and version checks....* gnu/packages/fontutils.scm (python-statmake)[arguments]: Disable broken test; relax check for cattrs. Change-Id: Ibd479743160d3591088d17635e26484e7de5250f Ricardo Wurmus