-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update libpng to 1.6.45-1deepin1
Signed-off-by: lhdjply <[email protected]>
- Loading branch information
Showing
258 changed files
with
11,927 additions
and
5,515 deletions.
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
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,94 @@ | ||
# https://pypi.org/project/cmakelang | ||
# https://github.com/cheshirekow/cmake_format | ||
|
||
# ---------------------- | ||
# Options for formatting | ||
# ---------------------- | ||
|
||
# How wide to allow formatted cmake files | ||
# TODO: Reflow the CMake files to allow setting the maximum line width to 100. | ||
line_width: 255 | ||
|
||
# How many spaces to tab for indent | ||
tab_size: 2 | ||
|
||
# If true, lines are indented using tab characters (utf-8 0x09) instead of | ||
# <tab_size> space characters (utf-8 0x20). In cases where the layout would | ||
# require a fractional tab character, the behavior of the fractional | ||
# indentation is governed by <fractional_tab_policy> | ||
use_tabchars: false | ||
|
||
# If <use_tabchars> is True, then the value of this variable indicates how | ||
# fractional indentions are handled during whitespace replacement. If set to | ||
# 'use-space', fractional indentation is left as spaces (utf-8 0x20). If set | ||
# to `round-up` fractional indentation is replaced with a single tab character | ||
# (utf-8 0x09) effectively shifting the column to the next tabstop | ||
fractional_tab_policy: "use-space" | ||
|
||
# Enable comment markup parsing and reflow | ||
enable_markup: false | ||
|
||
# ------------------- | ||
# Options for linting | ||
# ------------------- | ||
|
||
# Lint codes to disable | ||
disabled_codes: [ | ||
# TODO: | ||
# Reconcile the CMake variable names with the patterns below, then | ||
# re-enable the "invalid variable name XXX" messages. | ||
"C0103", | ||
|
||
# A custom command with one output doesn't really need a comment because | ||
# the default "generating XXX" is a good message already. | ||
"C0113", | ||
] | ||
|
||
# Regular expression pattern describing valid function names | ||
function_pattern: "[0-9a-z_]+" | ||
|
||
# Regular expression pattern describing valid macro names | ||
macro_pattern: "[0-9A-Z_]+" | ||
|
||
# Regular expression pattern describing valid names for variables with global | ||
# (cache) scope | ||
global_var_pattern: "[A-Z][0-9A-Z_]+" | ||
|
||
# Regular expression pattern describing valid names for variables with global | ||
# scope (but internal semantic) | ||
internal_var_pattern: "_[A-Z][0-9A-Z_]+" | ||
|
||
# Regular expression pattern describing valid names for variables with local | ||
# scope | ||
local_var_pattern: "[a-z][a-z0-9_]+" | ||
|
||
# Regular expression pattern describing valid names for privatedirectory | ||
# variables | ||
private_var_pattern: "_[0-9a-z_]+" | ||
|
||
# Regular expression pattern describing valid names for public directory | ||
# variables | ||
public_var_pattern: "[A-Z][0-9A-Z_]+" | ||
|
||
# Regular expression pattern describing valid names for function/macro | ||
# arguments and loop variables. | ||
argument_var_pattern: "[a-z][a-z0-9_]+" | ||
|
||
# Regular expression pattern describing valid names for keywords used in | ||
# functions or macros | ||
keyword_pattern: "[A-Z][0-9A-Z_]+" | ||
|
||
# In the heuristic for C0201, how many conditionals to match within a loop in | ||
# before considering the loop a parser | ||
max_conditionals_custom_parser: 2 | ||
|
||
# Require at least this many newlines between statements | ||
min_statement_spacing: 1 | ||
|
||
# Require no more than this many newlines between statements | ||
max_statement_spacing: 2 | ||
max_returns: 6 | ||
max_branches: 12 | ||
max_arguments: 5 | ||
max_localvars: 15 | ||
max_statements: 50 |
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,55 @@ | ||
# https://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.txt] | ||
indent_size = unset | ||
indent_style = space | ||
|
||
[*.[chS]] | ||
indent_size = 3 | ||
indent_style = space | ||
max_doc_length = 80 | ||
max_line_length = 80 | ||
|
||
[*.dfa] | ||
indent_size = 3 | ||
indent_style = space | ||
max_doc_length = 80 | ||
max_line_length = 80 | ||
|
||
[*.awk] | ||
indent_size = 3 | ||
indent_style = space | ||
max_doc_length = 80 | ||
max_line_length = 100 | ||
|
||
[*.cmake] | ||
indent_size = 2 | ||
indent_style = space | ||
max_doc_length = 80 | ||
max_line_length = 100 | ||
|
||
[*.sh] | ||
indent_size = 4 | ||
indent_style = space | ||
max_doc_length = 100 | ||
max_line_length = 100 | ||
|
||
[{Makefile.in,ltmain.sh}] | ||
indent_size = unset | ||
indent_style = unset | ||
insert_final_newline = unset | ||
max_doc_length = unset | ||
max_line_length = unset | ||
trim_trailing_whitespace = unset | ||
|
||
[COMMIT_EDITMSG] | ||
indent_style = space | ||
max_doc_length = unset | ||
max_line_length = 72 |
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,9 @@ | ||
{ | ||
"Disable": { | ||
"IndentSize": true | ||
}, | ||
"Exclude": [ | ||
".git/", | ||
"out/" | ||
] | ||
} |
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 |
---|---|---|
@@ -1 +1,155 @@ | ||
.pc/ | ||
# Prerequisites | ||
*.d | ||
|
||
# Precompiled headers | ||
*.gch | ||
*.pch | ||
|
||
# Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Linker output files | ||
*.exp | ||
*.ilk | ||
*.map | ||
|
||
# Compiled dynamic libraries | ||
*.dll | ||
*.dylib | ||
*.so | ||
*.so.* | ||
|
||
# Compiled static libraries | ||
*.a | ||
*.la | ||
*.lai | ||
*.lib | ||
|
||
# Compiled executables | ||
*.app/ | ||
*.exe | ||
a.out | ||
|
||
# Debug files | ||
*.dSYM/ | ||
*.idb | ||
*.pdb | ||
*.su | ||
|
||
# Tag files | ||
TAGS | ||
.TAGS | ||
!TAGS/ | ||
tags | ||
.tags | ||
!tags/ | ||
gtags.files | ||
GTAGS | ||
GRTAGS | ||
GPATH | ||
GSYMS | ||
cscope.files | ||
cscope.out | ||
cscope.*.out | ||
|
||
# Text editing and text processing artifacts | ||
\#*\# | ||
.\#* | ||
[._]*.sw[a-p] | ||
[._]sw[a-p] | ||
*.bak | ||
*.orig | ||
*.rej | ||
*.tmp | ||
*~ | ||
|
||
# IDE files and directories | ||
## Eclipse | ||
.cproject/ | ||
.project/ | ||
.settings/ | ||
## Embarcadero RAD Studio | ||
*.cbproj.* | ||
__recovery/ | ||
## JetBrains | ||
.idea/ | ||
## NetBeans | ||
nbbuild/ | ||
nbdist/ | ||
nbproject/ | ||
## Visual Studio | ||
.vs/ | ||
### Visual Studio user files | ||
*.rsuser | ||
*.sln.docstates | ||
*.suo | ||
*.user | ||
*.userprefs | ||
### Visual Studio cache files (for older versions) | ||
*.aps | ||
*.ncb | ||
*.opensdf | ||
*.sdf | ||
*.VC.db | ||
*.VC.opendb | ||
ipch/ | ||
## Visual Studio Code | ||
.vscode/* | ||
!.vscode/extensions.json | ||
!.vscode/launch.json | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
## (Various) | ||
*.*cache | ||
*.cache* | ||
[._]*_history | ||
.history/ | ||
[Bb]ackup*/ | ||
|
||
# Build, test and CI output directories | ||
*[Dd]ebug/ | ||
[Dd]ebug*/ | ||
*[Rr]elease/ | ||
[Rr]elease*/ | ||
[._]build*/ | ||
/[Bb]uild*/ | ||
/[Oo]ut/ | ||
|
||
# Libpng configuration and auxiliary build artifacts | ||
*.out | ||
*out.png | ||
[._]deps/ | ||
.dirstamp | ||
/Makefile | ||
/autom4te.cache/ | ||
/config*~ | ||
/config.h | ||
/config.log | ||
/config.status | ||
/install*~ | ||
/libpng*-config | ||
/libpng*.pc | ||
/libpng.vers | ||
/libtool | ||
/stamp-h1 | ||
CMake*.json | ||
!CMakePresets.json | ||
CMakeLists.txt.* | ||
pnglibconf.[ch] | ||
pnglibconf.dfn | ||
pnglibconf.pre | ||
pngprefix.h | ||
|
||
# Libpng test programs | ||
png-fix-itxt | ||
pngcp | ||
pngfix | ||
pngimage | ||
pngstest | ||
pngtest | ||
pngunknown | ||
pngvalid | ||
timepng |
Oops, something went wrong.