summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-29 09:09:46 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 13:27:01 +0000
commit96ed6b91a131ed9683cbf26db6221d9dfd34b796 (patch)
tree3b1771ca53267af66928a9ece326a6e27e11f7ef
parent98be8e7f1898c0732353a3eb5646523cf458991e (diff)
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 <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/video.scm38
1 files changed, 21 insertions, 17 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index dfe7b77865a..4c834966ee7 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)))