| Commit message (Expand) | Author | Age | Files | Lines |
| * | python3Packages.av: 15.1.0 -> 16.0.1•••Diff: https://github.com/PyAV-Org/PyAV/compare/v15.1.0...v16.0.1
Changelog: https://github.com/PyAV-Org/PyAV/blob/v16.0.1/CHANGELOG.rst
| Robert Schütz | 2025-11-04 | 2 | -6/+5 |
| * | python3Packages.av: remove unnecessary env variable | Gaetan Lepage | 2025-09-05 | 1 | -6/+0 |
| * | python3Packages.av: 14.1.0 -> 15.1.0•••Diff: https://github.com/PyAV-Org/PyAV/compare/v14.1.0...v15.1.0
Changelog: https://github.com/PyAV-Org/PyAV/blob/v15.1.0/CHANGELOG.rst
| Gaetan Lepage | 2025-09-03 | 1 | -11/+23 |
| * | python313Packages.av: 13.1.0 -> 14.1.0•••Diff: https://github.com/PyAV-Org/PyAV/compare/refs/tags/v13.1.0...v14.1.0
Changelog: https://github.com/PyAV-Org/PyAV/blob/v14.1.0/CHANGELOG.rst
| Robert Schütz | 2025-02-09 | 1 | -8/+2 |
| * | treewide: migrate fetchgit `rev = "refs/tags/..."` to `tag` | Peder Bergebakken Sundt | 2025-01-04 | 1 | -1/+1 |
| * | python312Packages.av: 13.0.0 -> 13.1.0•••https://github.com/PyAV-Org/PyAV/blob/v13.1.0/CHANGELOG.rst
| Martin Weinelt | 2024-12-09 | 1 | -2/+2 |
| * | tree-wide: Indent .bash files like .sh | Victor Engmark | 2024-11-10 | 1 | -21/+21 |
| * | Merge branch 'master' into staging-next | Artturin | 2024-09-25 | 1 | -1/+1 |
| |\ |
|
| | * | treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
| Artturin | 2024-09-25 | 1 | -1/+1 |
| * | | python3Packages.av: 12.3.0 -> 13.0.0•••Includes support for FFmpeg 7.
| Emily | 2024-09-07 | 1 | -5/+5 |
| |/ |
|
| * | python3Packages.av: remove libav reference | Emily | 2024-08-25 | 1 | -1/+1 |
| * | python312Packages.av: 12.2.0 -> 12.3.0•••Diff: https://github.com/mikeboers/PyAV/compare/refs/tags/v12.2.0...v12.3.0
Changelog: https://github.com/PyAV-Org/PyAV/blob/v12.3.0/CHANGELOG.rst
| Robert Schütz | 2024-08-06 | 1 | -7/+8 |
| * | treewide: remove unused with statements from maintainer lists•••$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
-e 's!with lib.maintainers; \[ *\];![ ];!' \
-e 's!with maintainers; \[ *\];![ ];!'
| Jörg Thalheim | 2024-07-29 | 1 | -1/+1 |
| * | python3Packages.av: fix build•••Many of the tests depend on sample files fetched over HTTP and they
keep adding more. Since they support a caching mechanism, use it to
pre‐fetch all the used samples instead.
It might be nice to have a package for the full FATE suite, but it’s
over 1 GiB in size so I just did this for now.
Fixes: ca258d2d393eb240fd4eddf9a40093e422c33116
| Emily | 2024-07-16 | 3 | -58/+81 |
| * | python3Packages.av: 11.0.0 -> 12.2.0•••Pin FFmpeg to 6.x as upstream doesn’t even support 5.x any
more. Unfortunately 7.x support is not yet there; I might have to
handle it myself when we drop 6.
| Emily | 2024-07-14 | 1 | -14/+4 |
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -65/+66 |
| * | python312Packages.av: Fix cross build•••Closes: #307065
| Artturin | 2024-04-27 | 1 | -0/+10 |
| * | treewide: add meta.mainProgram to packages with a single binary•••The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
| stuebinm | 2024-03-19 | 1 | -0/+1 |
| * | python311Packages.av: 10.0.0 -> 11.0.0•••Diff: https://github.com/mikeboers/PyAV/compare/refs/tags/v10.0.0...v11.0.0
Changelog: https://github.com/PyAV-Org/PyAV/blob/v11.0.0/CHANGELOG.rst
| Fabian Affolter | 2023-11-27 | 1 | -2/+2 |
| * | python311Packages.av: refactor | Fabian Affolter | 2023-11-27 | 1 | -68/+53 |
| * | python311Packages.av: disable crashing tests on darwin | Martin Weinelt | 2023-11-21 | 1 | -0/+5 |
| * | python311Packages.av: pin to ffmpeg 5•••```
av> src/av/container/core.c: In function ‘__pyx_pymod_exec_core’:
av> src/av/container/core.c:9071:36: error: ‘AVFMT_FLAG_PRIV_OPT’ undeclared (first use in this function); did you mean ‘AVFMT_FLAG_IGNIDX’?
av> 9071 | __pyx_t_3 = __Pyx_PyInt_From_int(AVFMT_FLAG_PRIV_OPT); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 160, __pyx_L1_error)
av> | ^~~~~~~~~~~~~~~~~~~
av> | AVFMT_FLAG_IGNIDX
av> src/av/container/core.c:9071:36: note: each undeclared identifier is reported only once for each function it appears in
av> error: command '/nix/store/6dz7ahcr1ybhjwzsfdjqjfypmb7jg5qf-gcc-wrapper-12.3.0/bin/gcc' failed with exit code 1
```
| Martin Weinelt | 2023-10-05 | 1 | -2/+2 |
| * | python310Packages.av: use headless ffmpeg variant•••I think this leads to a more reasonable dependency closure for this
library.
| Martin Weinelt | 2023-07-28 | 1 | -2/+2 |
| * | treewide: switch to nativeCheckInputs•••checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
| Guillaume Girol | 2023-01-21 | 1 | -1/+1 |
| * | python3Packages.av: 9.2.0 -> 10.0.0 | Martin Weinelt | 2022-11-05 | 1 | -2/+2 |
| * | python3Packages.av: add setuptools to nativeBuildInputs | Martin Weinelt | 2022-09-16 | 1 | -0/+2 |
| * | python310Packages.av: 9.1.1 -> 9.2.0 | Fabian Affolter | 2022-04-27 | 1 | -2/+8 |
| * | python3Packages.av: 8.1.0 -> 9.1.1•••Fix build, enable tests, set up import checks
| Martin Weinelt | 2022-04-06 | 1 | -16/+124 |
| * | python38Packages.av: 8.0.3 -> 8.1.0 | R. Ryantm | 2021-12-30 | 1 | -2/+2 |
| * | python37Packages.av: 8.0.2 -> 8.0.3 | R. RyanTM | 2021-01-27 | 1 | -2/+2 |
| * | treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix•••continuation of #109595
pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.
python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
| Jonathan Ringer | 2021-01-19 | 1 | -2/+2 |
| * | Merge master into staging-next | Frederik Rietdijk | 2020-06-17 | 1 | -2/+2 |
| |\ |
|
| | * | treewide: ffmpeg_4 -> ffmpeg | zowoq | 2020-06-16 | 1 | -2/+2 |
| * | | pythonPackages.av: disable for python2•••Uses shlex commands which aren't present in python2
```
from shlex import quote
ImportError: cannot import name quote
```
| Jonathan Ringer | 2020-06-16 | 1 | -0/+2 |
| * | | python: av: 7.0.1 -> 8.0.2 | Frederik Rietdijk | 2020-06-11 | 1 | -2/+2 |
| |/ |
|
| * | treewide: Per RFC45, remove all unquoted URLs | Michael Reilly | 2020-04-10 | 1 | -1/+1 |
| * | python27Packages.av: 6.2.0 -> 7.0.1 | R. RyanTM | 2020-02-13 | 1 | -2/+2 |
| * | treewide: remove unused variables (#63177)•••* treewide: remove unused variables
* making ofborg happy
| volth | 2019-06-16 | 1 | -1/+0 |
| * | python37Packages.av: 6.1.2 -> 6.2.0•••PyAV stopped using nosetest https://github.com/mikeboers/PyAV/pull/514/
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-av/versions
| R. RyanTM | 2019-05-12 | 1 | -4/+3 |
| * | python: av: 6.1.0 -> 6.1.2 | Frederik Rietdijk | 2019-02-17 | 1 | -5/+6 |
| * | python37Packages.av: 6.0.0 -> 6.1.0•••Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-av/versions
| R. RyanTM | 2019-01-02 | 1 | -2/+2 |
| * | python: av: 0.5.3 -> 6.0.0 | Frederik Rietdijk | 2018-12-03 | 1 | -2/+2 |
| * | pythonPackages.av: 0.4.1 -> 0.5.3 | Ben Wolsieffer | 2018-10-08 | 1 | -6/+6 |
| * | python: av: 0.2.4 -> 0.4.1 | Frederik Rietdijk | 2018-07-22 | 1 | -2/+2 |
| * | python.pkgs.av: move expression | Frederik Rietdijk | 2018-07-22 | 1 | -0/+32 |