-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add presets for LibRaw 0.20.2 (pull #1211)
- Loading branch information
Showing
70 changed files
with
5,518 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: libraw | ||
on: | ||
push: | ||
paths: | ||
- libraw/** | ||
- .github/workflows/libraw.yml | ||
pull_request: | ||
paths: | ||
- libraw/** | ||
- .github/workflows/libraw.yml | ||
workflow_dispatch: | ||
env: | ||
CI_DEPLOY_MODULE: ${{ github.workflow }} | ||
CI_DEPLOY_PLATFORM: ${{ github.job }} | ||
CI_DEPLOY_SETTINGS: ${{ secrets.CI_DEPLOY_SETTINGS }} | ||
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }} | ||
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }} | ||
STAGING_REPOSITORY: ${{ secrets.STAGING_REPOSITORY }} | ||
jobs: | ||
linux-x86_64: | ||
runs-on: ubuntu-20.04 | ||
container: centos:7 | ||
steps: | ||
- uses: bytedeco/javacpp-presets/.github/actions/deploy-centos@actions | ||
macosx-arm64: | ||
runs-on: macos-11 | ||
steps: | ||
- uses: bytedeco/javacpp-presets/.github/actions/deploy-macosx@actions | ||
macosx-x86_64: | ||
runs-on: macos-11 | ||
steps: | ||
- uses: bytedeco/javacpp-presets/.github/actions/deploy-macosx@actions | ||
windows-x86_64: | ||
runs-on: windows-2019 | ||
steps: | ||
- uses: bytedeco/javacpp-presets/.github/actions/deploy-windows@actions | ||
redeploy: | ||
needs: [linux-x86_64, macosx-arm64, macosx-x86_64, windows-x86_64] | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: bytedeco/javacpp-presets/.github/actions/redeploy@actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
** LibRaw: Raw images processing library ** | ||
|
||
Copyright (C) 2008-2020 LibRaw LLC (http://www.libraw.org, info@libraw.org) | ||
|
||
LibRaw is free software; you can redistribute it and/or modify | ||
it under the terms of the one of two licenses as you choose: | ||
|
||
1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1 | ||
(See file LICENSE.LGPL provided in LibRaw distribution archive for details). | ||
|
||
2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 | ||
(See file LICENSE.CDDL provided in LibRaw distribution archive for details). | ||
|
||
LibRaw uses code from dcraw.c -- Dave Coffin's raw photo decoder, | ||
dcraw.c is copyright 1997-2018 by Dave Coffin, dcoffin a cybercom o net. | ||
LibRaw do not use RESTRICTED code from dcraw.c | ||
|
||
LibRaw uses DCB demosaic and FBDD denoise licensed under BSD-like 3-clause license | ||
DCB and FBDD are Copyright (C) 2010, Jacek Gozdz (cuniek@kft.umcs.lublin.pl) | ||
|
||
LibRaw uses X3F library to unpack Foveon Files, licensed BSD-style license | ||
Copyright (c) 2010, Roland Karlsson (roland@proxel.se) | ||
All rights reserved. | ||
|
||
LibRaw uses pieces of code from Adobe DNG SDK 1.4, | ||
Copyright (c) 2005 Adobe Systems Incorporated, licensed under MIT license | ||
|
Oops, something went wrong.