Commit Graph

181 Commits

Author SHA1 Message Date
Eamon Caton
0d6d1e535f poppler: add gtk3 to test closure for unit tests 2026-08-07 19:29:07 +09:00
Eamon Caton
aeac5f8550 poppler: fix mat2 build on Darwin by backporting upstream bugfix 2026-08-07 19:29:05 +09:00
Eman Resu
ff094f60ad treewide: replace more singleton license lists 2026-07-15 14:04:39 -04:00
Emily
c79bfd86cb poppler: fix build with Clang 2026-07-04 15:33:23 +01:00
dotlambda
288399cabd poppler: 25.10.0 -> 26.06.0 (#521663) 2026-06-21 16:18:37 +00:00
Hythera
16c2791856 poppler: 25.10.0 -> 26.06.0
changelog: changelog: https://poppler.freedesktop.org/releases.html

diff: diff: https://gitlab.freedesktop.org/poppler/poppler/-/compare/poppler-25.10.0...poppler-26.06.0
2026-06-20 17:27:46 +02:00
Marcin Serwin
85ac6ca088 maintainers: drop ttuegel
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2026-05-31 20:27:39 +02:00
Robert Schütz
434e12708e pdfslicer: drop 2026-03-26 10:43:23 -07:00
sternenseemann
2e138ac936 poppler: add meta.pkgConfigModules annotation 2025-11-15 18:19:24 +01:00
Jan Tojnar
e3e8f13c34 poppler: 25.07.0 → 25.10.0
https://gitlab.freedesktop.org/poppler/poppler/-/blob/poppler-25.10.0/NEWS
https://gitlab.freedesktop.org/poppler/poppler/-/compare/poppler-25.07.0...poppler-25.10.0
2025-10-25 15:05:29 +02:00
Vladimír Čunát
b069b7c1e2 poppler: 25.05.0 -> 25.07.0 (#424609) 2025-08-08 13:17:04 +02:00
Wolfgang Walther
5a0711127c treewide: run nixfmt 1.0.0 2025-07-24 13:55:40 +02:00
Thomas Gerbet
f7fbe207f7 poppler: 25.05.0 -> 25.07.0
Fixes CVE-2025-52886.
https://securitylab.github.com/advisories/GHSL-2025-054_poppler/

Changes:
https://gitlab.freedesktop.org/poppler/poppler/-/blob/poppler-25.06.0/NEWS
https://gitlab.freedesktop.org/poppler/poppler/-/blob/poppler-25.07.0/NEWS
2025-07-16 09:34:24 +02:00
phanirithvij
d75957a3bb treewide: remove rec when using finalAttrs
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
2025-06-06 15:19:52 +02:00
K900
bca7bc52d3 poppler: 24.02.0 -> 25.05.0 2025-05-10 19:23:30 +03:00
Thomas Gerbet
375774b61c poppler: apply patch for CVE-2025-43903 2025-05-07 21:53:39 +02:00
Fernando Rodrigues
05580f4b44 treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00
Sergei Trofimovich
1bb562eb14 poppler: pull in missing libtiff dependency
Without the change the `staging` build fails as:

    poppler-glib> CMake Error at CMakeLists.txt:162 (MESSAGE):
    poppler-glib>   Could not find the 4.1 version of TIFF.  If you're not interested in the
    poppler-glib>   features it provides set the cmake ENABLE_LIBTIFF option to OFF
2025-01-01 21:51:36 +00:00
Silvan Mosberger
667d42c00d treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev 57b193d8dd
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:27:17 +01:00
Jordan Williams
c972c7432f poppler: add dependency for glib-mkenums to fix cross building 2024-11-24 08:15:40 -06:00
Jordan Williams
8eee989a14 poppler: format 2024-11-24 08:15:15 -06:00
Reno Dakota
99386b3957 poppler: fix clang-19 with upstream patch
b4ac7d9af7
2024-11-20 02:14:51 +00:00
Artturin
e0464e4788 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"
```
2024-09-25 00:04:37 +03:00
Robert Scott
5474b05174 poppler: add more key reverse-dependencies to passthru.tests 2024-07-21 17:44:04 +01:00
Thomas Gerbet
e89babc6c2 poppler: apply patch for CVE-2024-6239
I preferred to pull the patch instead of bumping to the latest version.
It seems to requires multiple compatibility patches (not released yet) to make
`inkscape` happy.
2024-06-29 01:17:50 +02:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Robert Schütz
fbbe8d0708 poppler: 24.01.0 -> 24.02.0
Changelog: https://gitlab.freedesktop.org/poppler/poppler/-/blob/poppler-24.02.0/NEWS
2024-02-13 17:20:19 -08:00
Robert Schütz
d6d6291079 poppler: 23.11.0 -> 24.01.0
Changelog: https://gitlab.freedesktop.org/poppler/poppler/-/blob/poppler-24.01.0/NEWS
2024-01-28 12:37:28 -08:00
Peder Bergebakken Sundt
ad5e744714 treewide: finalAttrs.doCheck -> finalAttrs.finalPackage.doCheck
This will respect `doCheck = false;` overrides, common for cross.
2023-11-30 18:56:12 +01:00
Jan Tojnar
a58bdbec1c poppler: remove unused arguments 2023-11-04 19:02:47 +01:00
Jan Tojnar
604258eec0 poppler: remove unused pcre
Poppler does not directly depend on PCRE.

It was added in <https://github.com/NixOS/nixpkgs/pull/127832>,
presumably to suppress CMake complaining about `glib-2.0` needing `pcre`
because CMake is not aware that we interpret `Requires.private`
field in pkg-config files differently.
And GLib since switched to pcre2 anyway so the warning is back.
2023-11-04 19:02:47 +01:00
6t8k
2eb4da810f poppler: 23.10.0 -> 23.11.0
https://lists.freedesktop.org/archives/poppler/2023-November/015580.html
2023-11-03 16:54:58 +01:00
6t8k
534acfadf6 poppler: 23.08.0 -> 23.10.0
https://lists.freedesktop.org/archives/poppler/2023-September/015569.html
https://lists.freedesktop.org/archives/poppler/2023-October/015576.html

Remove references to TeXLive, as it no longer depends on Poppler.[1]

In 23.06.0, Poppler added a GPGME-based[2] backend for signature
handling as an alternative to NSS.[3] The dependency on GPGME has been
made soft-mandatory in 23.10.0[4], so we have to either provide it or
disable it at compile time. Since the feature sets provided by both
backends are almost identical so far, it has been decided to make GPGME
support opt-in for now.[5]

[1] 7bf9a3b250
[2] https://gnupg.org/software/gpgme/index.html
[3] https://lists.freedesktop.org/archives/poppler/2023-June/015510.html
[4] 8646a6aa2c (9a2aa4db38d3115ed60da621e012c0efc0172aae_80_82)
[5] https://github.com/NixOS/nixpkgs/pull/264817
2023-11-03 16:53:47 +01:00
Alexis Hildebrandt
0a0caf5d2a poppler: 23.07.0 -> 23.08.0 2023-08-04 09:04:47 +02:00
Jan Tojnar
170b6714ad poppler: 23.02.0 → 23.07.0
https://lists.freedesktop.org/archives/poppler/2023-March/015402.html
https://lists.freedesktop.org/archives/poppler/2023-April/015453.html
https://lists.freedesktop.org/archives/poppler/2023-May/015476.html
https://lists.freedesktop.org/archives/poppler/2023-June/015510.html
https://lists.freedesktop.org/archives/poppler/2023-July/015546.html
2023-07-11 15:28:43 +02:00
Jan Tojnar
fead4d6fca poppler: 22.11.0 → 23.02.0
https://lists.freedesktop.org/archives/poppler/2022-December/015356.html
https://lists.freedesktop.org/archives/poppler/2023-January/015385.html
https://lists.freedesktop.org/archives/poppler/2023-February/015396.html
2023-02-04 23:30:28 +01:00
Jan Tojnar
a06429504b poppler: 22.09.0 → 22.11.0
https://lists.freedesktop.org/archives/poppler/2022-October/015332.html
https://gitlab.freedesktop.org/poppler/poppler/-/compare/poppler-22.09.0...poppler-22.10.0

https://lists.freedesktop.org/archives/poppler/2022-November/015346.html
https://gitlab.freedesktop.org/poppler/poppler/-/compare/poppler-22.10.0...poppler-22.11.0
2022-11-02 13:14:44 +01:00
Yannik Rödel
ca9eb8eee3 poppler: 22.08.0 -> 22.09.0
https://lists.freedesktop.org/archives/poppler/2022-August/015313.html
https://gitlab.freedesktop.org/poppler/poppler/-/compare/poppler-22.08.0...poppler-22.09.0

CVE-2022-38784
2022-11-02 12:56:50 +01:00
Artturin
7e49471316 treewide: optional -> optionals where the argument is a list
the argument to optional should not be list
2022-10-10 15:40:21 +03:00
Robert Scott
e68c8e82f1 poppler: enable tests 2022-09-03 11:57:32 +01:00
Robert Scott
04ca702625 poppler: add patch for CVE-2022-38784
Close #189196 (original PR)
2022-09-01 11:37:36 +02:00
Robert Schütz
4b24143bf5 qt6Packages.poppler: init at 22.08.0 2022-08-30 17:31:18 +00:00
Jan Tojnar
c8c7c5d43f poppler: 22.06.0 → 22.08.0
https://lists.freedesktop.org/archives/poppler/2022-July/015263.html
https://lists.freedesktop.org/archives/poppler/2022-August/015278.html
2022-08-06 14:47:25 +02:00
Mauricio Collares
cb93c3b900 poppler: 22.04.0 -> 22.06.0 2022-06-08 15:06:30 +02:00
Manuel Bärenz
3b6fb49f3d scribus: Rename scribus{,Unstable} -> scribus{_1_4,} 2022-05-26 21:10:04 +02:00
Jan Tojnar
7c952f772c poppler: 22.03.0 → 22.04.0
https://lists.freedesktop.org/archives/poppler/2022-April/015171.html
2022-04-09 00:39:42 +02:00
Jan Tojnar
70222ad792 poppler: 22.01.0 → 22.03.0
https://lists.freedesktop.org/archives/poppler/2022-February/015055.html
https://lists.freedesktop.org/archives/poppler/2022-March/015089.html
2022-03-25 15:02:33 +01:00
R. Ryantm
8e7c58dc44 poppler: 21.06.1 → 22.01.0
- https://lists.freedesktop.org/archives/poppler/2021-July/014803.html
- https://lists.freedesktop.org/archives/poppler/2021-August/014836.html
- https://lists.freedesktop.org/archives/poppler/2021-September/014870.html
- https://lists.freedesktop.org/archives/poppler/2021-October/014910.html
- https://lists.freedesktop.org/archives/poppler/2021-November/014954.html
- https://lists.freedesktop.org/archives/poppler/2021-December/014991.html
- https://lists.freedesktop.org/archives/poppler/2022-January/015023.html

c++17 is now minimum
2022-01-27 17:49:12 +01:00
AndersonTorres
004970b152 poppler: 21.05.0 -> 21.06.1 2021-06-22 18:33:23 -03:00
Trolli Schmittlauch
84aa23742f poppler: build with nss by default for signature support (#124294)
Since 21.01, poppler supports PDF signing. As applications like okular
start to make use of that feature, nss support for poppler is enabled by
default to avoid unnecessary package duplication.
When building a `minimal` version of poppler, nss is disabled as well.

closes #120928
2021-05-26 15:57:38 -04:00