guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 96ed6b91a131ed9683cbf26db6221d9dfd34b796
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Dec 29 09:09:46 2025 +0100
gnu: qtfaststart: Switch to pyproject.
* gnu/packages/video.scm (qtfaststart):
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.
[arguments, description]: Improve style.
Change-Id: Id2d06b0f34b99e0af8af837095a93117d9c12675
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/video.scm | 38 +++++++++++++++++++++-----------------
1 file changed, 21 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index dfe7b77865..4c834966ee 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -6078,27 +6078,31 @@ multiplexer and demultiplexer, and can mux video and
audio in several formats
using standalone executable files.")
(license license:isc)))
+;; XXX: This project is not being maintained. Consider removal or patch merges.
(define-public qtfaststart
(package
(name "qtfaststart")
- (version "1.8")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "qtfaststart" version))
- (sha256
- (base32
- "0hcjfik8hhb1syqvyh5c6aillpvzal26nkjflcq1270z64aj6i5h"))))
- (build-system python-build-system)
- (arguments
- '(#:tests? #f)) ; no test suite
+ (version "1.8.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/danielgtaylor/qtfaststart")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0cgc92dn2r6qmqlvi6d63i0bzsvmcb82301jr1211gsiqi96wmwg"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ; No test suite.
+ (native-inputs (list python-setuptools))
(synopsis "Move QuickTime and MP4 metadata to the beginning of the file")
- (description "qtfaststart enables streaming and pseudo-streaming of
-QuickTime and MP4 files by moving metadata and offset information to the
-beginning of the file. It can also print some useful information about the
-structure of the file. This program is based on qt-faststart.c from the FFmpeg
-project, which is released into the public domain, as well as ISO 14496-12:2005
-(the official spec for MP4), which can be obtained from the ISO or found
-online.")
+ (description
+ "qtfaststart enables streaming and pseudo-streaming of QuickTime and MP4
+files by moving metadata and offset information to the beginning of the file.
+It can also print some useful information about the structure of the file.
+This program is based on qt-faststart.c from the FFmpeg project, which is
+released into the public domain, as well as ISO 14496-12:2005 (the official
+spec for MP4), which can be obtained from the ISO or found online.")
(home-page "https://github.com/danielgtaylor/qtfaststart")
(license license:expat)))