summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/exiv2 (follow)
Commit message (Expand)AuthorAgeFilesLines
* exiv2: 0.28.2 -> 0.28.3R. Ryantm2024-07-081-2/+2
* 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/' Alexis Hildebrandt2024-06-091-1/+1
* pkgs/development/libraries: remove unused fetchpatch and other arguments (#31...Yohann Boniface2024-05-231-1/+0
* 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. stuebinm2024-03-191-0/+1
* exiv2: 0.28.1 -> 0.28.2Weijia Wang2024-02-151-10/+3
* exiv2: 0.28.0 -> 0.28.1•••https://github.com/Exiv2/exiv2/blob/v0.28.1/doc/ChangeLog Fixes CVE-2023-44398 (High). https://github.com/Exiv2/exiv2/issues/2762 is now fixed upstream, so make `checkPhase` run unconditionally again. 6t8k2023-11-091-4/+11
* exiv2: 0.27.6 -> 0.28.0Weijia Wang2023-09-301-63/+36
* exiv2: fix build on armv7l-linux•••Remove failing tests for now, they're fixed in 0.28 misuzu2023-09-031-0/+6
* exiv2: 0.27.6 -> 0.27.7R. Ryantm2023-05-201-2/+2
* Merge pull request #211847 from wegank/exiv2-bumpSandro2023-01-221-5/+2
|\
| * exiv2: 0.27.5 -> 0.27.6Weijia Wang2023-01-211-5/+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 Girol2023-01-211-1/+1
|/
* exiv2: drop a test on darwin, really now•••I did this wrong in 9927b2f2c3d. `-f` invites typos. Vladimír Čunát2022-10-091-1/+1
* exiv2: drop a test on darwin•••It's often an issue; no idea why: https://hydra.nixos.org/job/nixpkgs/nixpkgs-22.05-darwin/exiv2.aarch64-darwin though for x86 it seems to have started after compiling via rosetta: https://hydra.nixos.org/build/192631598 Note that exiv2 blocks the darwin-tested job. Vladimír Čunát2022-10-091-0/+2
* exiv2: update homepageWeijia Wang2022-08-071-1/+1
* exiv2: fix build on aarch64-darwinWeijia Wang2022-08-021-1/+3
* treewide: use isAarch where appropriateAlyssa Ross2022-07-301-1/+1
* Merge pull request #153106 from paperdigits/exiv2-bmffArtturi2022-03-191-0/+1
|\
| * exiv2: enable BMFF supportMica Semrick2022-01-011-0/+1
* | exiv2: fix paths in *.cmake•••The recent merge #131868 (2c1ce604) broke digikam build through this. Vladimír Čunát2022-02-201-0/+9
* | Merge #131868: exiv2: Add lib/static outputs, remove reference to gccVladimír Čunát2022-02-181-1/+10
|\ \ | |/ |/|
| * exiv2: More outputs, remove reference to gccEelco Dolstra2021-07-281-1/+10
* | exiv2: fix for darwin sandboxDmitry Kalinkin2021-12-211-0/+4
* | exiv2: 0.27.4 -> 0.27.5R. Ryantm2021-10-291-2/+2
|/
* exiv2: fix for darwin by providing libiconvRobert Scott2021-07-171-0/+3
* exiv2: 0.27.3 -> 0.27.4Mica Semrick2021-06-171-24/+2
* pkgs/development/libraries: stdenv.lib -> libBen Siraphob2021-01-211-4/+4
* exiv2: fix build on darwinMario Rodas2020-09-131-0/+2
* exiv2: re-enable split outputs•••Needs an extra patch to fix CMake config. This reverts commit f8f840f6643b6f3e189efce119141ccb9386c45d. Jan Tojnar2020-09-101-4/+6
* exiv2: disable output splitting•••This is a temporary workaround. See the linked comment. Timo Kaufmann2020-09-091-1/+3
* exiv2: clean up•••- EXIV2_BUILD_PO has been replaced by EXIV2_ENABLE_NLS https://github.com/Exiv2/exiv2/commit/076585d1476283bc7cffcf08e9006fc64ffbfa10 Confusingly, the former still appears in the flag summary. - Remove enableParallelBuilding since it is on by default with CMake - Reorder the expression - Apply upstream GNUInstallDirs patch - Build stuff in build phase, not in install phase - Add maintainers field (empty at the moment) Jan Tojnar2020-09-071-22/+16
* exiv2: 0.27.2 -> 0.27.3Mica Semrick2020-09-041-14/+8
* exiv2: fix CMake export pathsThomas Tuegel2020-07-311-1/+9
* exiv2: fix build on 32-bit armAndrew Childs2020-05-031-2/+3
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-1/+1
* exiv2: name the patch as usual•••That allows automatic detection of CVEs being fixed (e.g. by vulnix) Vladimír Čunát2020-03-291-1/+1
* exiv2: fix CVE-2019-20421Symphorien Gibol2020-03-201-0/+11
* exiv2: fix exiv2.pc file•••This fix comes from #71669. worldofpeace2020-02-251-0/+5
* treewide: Fix unsafe concatenation of $LD_LIBRARY_PATH•••Naive concatenation of $LD_LIBRARY_PATH can result in an empty colon-delimited segment; this tells glibc to load libraries from the current directory, which is definitely wrong, and may be a security vulnerability if the current directory is untrusted. (See #67234, for example.) Fix this throughout the tree. Signed-off-by: Anders Kaseorg <andersk@mit.edu> Anders Kaseorg2020-01-151-1/+1
* treewide: remove redundant recvolth2019-08-281-1/+1
* exiv2: adding DYLD_LIBRARY_PATH= for darwin testsMarek Mahut2019-08-261-0/+8
* exiv2: enabling tests for real•••Fixes #67453 Marek Mahut2019-08-261-0/+2
* exiv2: enable testsMarek Mahut2019-08-261-2/+0
* exiv2: 0.27.1 -> 0.27.2•••Fixes #67194 Marek Mahut2019-08-252-24/+3
* exiv2: enable docs and po•••Also multiout man worldofpeace2019-06-271-1/+16
* exiv2: 0.26.2018.12.30 -> 0.27.1•••Also run tests and remove additionally installed stuff. Co-authored-by: periklis <periklis.tsirakidis@holidaycheck.com> Co-authored-by: vcunat <vcunat@gmail.com> worldofpeace2019-06-272-11/+78
* treewide: remove unused variables (#63177)•••* treewide: remove unused variables * making ofborg happy volth2019-06-161-1/+1
* treewide: Change URLs to HTTPS•••Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them if there's actual content. Inspired by https://github.com/NixOS/nixpkgs/issues/60004 Daniel Schaefer2019-04-221-2/+2
* exiv2: 0.26.2018.06.09 -> 0.26.2018.12.30 (security)•••The bump includes all the patches we had and adds some more, e.g. for CVE-2017-1000127. I don't think all CVEs get fixed by that, but 0.27 would currently break too many packages; /cc #50496. Vladimír Čunát2018-12-301-25/+3
* Merge branch 'master' into add-missing-licenses••• Conflicts: pkgs/development/libraries/exiv2/default.nix Set license to gpl2Plus Pascal Wittmann2018-08-061-16/+30
|\