The package rpms/pasdoc.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/pasdoc.git/commit/?id=e9ee787f8b877a....
Change: +%ifarch %{ix86}
Thanks.
Full change: ============
commit e9ee787f8b877aad312a11531aa52b7e7238cc5e Author: Artur Frenszek-Iwicki fedora@svgames.pl Date: Mon Mar 30 21:37:00 2026 +0200
Update to v1.0.2
diff --git a/.gitignore b/.gitignore index d3b7bde..cbc4216 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /pasdoc-0.16.0.tar.gz +/pasdoc-1.0.2.tar.gz diff --git a/0000-adapt-test-runner.patch b/0000-adapt-test-runner.patch deleted file mode 100644 index c7d719a..0000000 --- a/0000-adapt-test-runner.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff -U4 -r pasdoc-0.16.0--orig/tests/run_all_tests.sh pasdoc-0.16.0--patched/tests/run_all_tests.sh ---- pasdoc-0.16.0--orig/tests/run_all_tests.sh 2021-02-10 00:42:00.000000000 +0100 -+++ pasdoc-0.16.0--patched/tests/run_all_tests.sh 2021-09-21 13:16:43.019923079 +0200 -@@ -4,36 +4,12 @@ - # Run all PasDoc tests. - - make clean - --# fpcunit tests -------------------------------------------------------------- -- --pushd fpcunit --make --popd -- --# build pasdoc -------------------------------------------------------------- -- --pushd ../ --make --popd -- --# ---------------------------------------------------------------------------- --# Find pasdoc binary, setting PASDOC_BIN to absolute exe path. --# If not found, fail. -- --if [ -f ../bin/pasdoc ]; then -- export PASDOC_BIN=`pwd`/../bin/pasdoc --elif [ -f ../bin/pasdoc.exe ]; then -- export PASDOC_BIN=`pwd`/../bin/pasdoc.exe --else -- if ! which pasdoc > /dev/null; then -- echo 'pasdoc binary not found on $PATH' -- exit 1 -- fi -- export PASDOC_BIN=`which pasdoc` -+if [[ -z "${PASDOC_BIN+isset}" ]]; then -+ echo "The $PASDOC_BIN variable is not set!" >2 -+ exit 1 - fi --echo "Detected pasdoc binary as ${PASDOC_BIN}" - - # run all testcases, compare with correct output ------------------------------ - - ALL_OUTPUT_FORMATS='html htmlhelp latex latex2rtf simplexml' diff --git a/0001-enable-dwarf3-debuginfo.patch b/0001-enable-dwarf3-debuginfo.patch index b157b66..d5ccfd7 100644 --- a/0001-enable-dwarf3-debuginfo.patch +++ b/0001-enable-dwarf3-debuginfo.patch @@ -1,6 +1,7 @@ ---- pasdoc-0.16.0--orig/source/gui/pasdoc_gui.lpi 2022-01-07 12:02:36.025958963 +0100 -+++ pasdoc-0.16.0--patched/source/gui/pasdoc_gui.lpi 2022-01-07 12:03:12.783143393 +0100 -@@ -91,12 +91,19 @@ +diff -rU4 pasdoc-1.0.2--orig/source/gui/pasdoc_gui.lpi pasdoc-1.0.2/source/gui/pasdoc_gui.lpi +--- pasdoc-1.0.2--orig/source/gui/pasdoc_gui.lpi 2026-03-30 18:13:30.000000000 +0200 ++++ pasdoc-1.0.2/source/gui/pasdoc_gui.lpi 2026-03-30 20:10:41.763036281 +0200 +@@ -95,13 +95,20 @@ <Version Value="11"/> <SearchPaths> <SrcPath Value="$(LazarusDir)/lcl;$(LazarusDir)/lcl/interfaces/$(LCLWidgetType)"/> @@ -13,10 +14,12 @@ + </CodeGeneration> <Linking> <Debugging> +- <DebugInfoType Value="dsDwarf2Set"/> - <UseLineInfoUnit Value="False"/> - <StripSymbols Value="True"/> + <GenerateDebugInfo Value="True"/> + <DebugInfoType Value="dsDwarf3"/> ++ <UseLineInfoUnit Value="True"/> + <StripSymbols Value="False"/> </Debugging> <Options> diff --git a/file_to_pascal_data.man b/file_to_pascal_data.man deleted file mode 100644 index 2ca8f7f..0000000 --- a/file_to_pascal_data.man +++ /dev/null @@ -1,64 +0,0 @@ -.TH "FILE_TO_PASCAL_DATA" 1 "2021-09-22" "" "User commands" -. -.SH NAME -file_to_pascal_data, file_to_pascal_string - convert files -to Pascal source code -. -.SH SYNOPSIS -.SY file_to_pascal_data -.I INPUT_FILE -.I OUTPUT_FILE -.YS -.SY file_to_pascal_string -.I INPUT_FILE -.I OUTPUT_FILE -.YS -. -.SH DESCRIPTION -The \fBfile_to_pascal_data\fR and \fBfile_to_pascal_string\fR programs -can be used to convert files to Pascal source code, in order to embed -data inside Pascal programs. - -\fBfile_to_pascal_data\fR encodes \fIINPUT_FILE\fR as an Array of Byte, -whereas \fBfile_to_pascal_string\fR encodes it as a string literal. -. -.SH EXAMPLES -Consider a file containing only the text "Example" (with a newline character -at the end) being used as the input. -.PP -After converting the input using \fBfile_to_pascal_data\fR, -the output file can be used like in the following example: -.PP -.in +4n -.EX -const EmbeddedData: {$INCLUDE output_data.inc}; -.EE -.PP -After including the file, this will evaluate to something like: -.PP -.in +4n -.EX -const EmbeddedData: array[0..7] of byte = ( -.br - $45, $78, $61, $6D, $70, $6C, $65, $0A -.br -); -.EE -.PP -The output generated by \fBfile_to_pascal_string\fR -can be used in a similar fashion: -.PP -.in +4n -.EX -const EmbeddedString = {$INCLUDE output_string.inc}; -.EE -.PP -After including the file, this will evaluate to something like: -.PP -.in +4n -.EX -const EmbeddedString = 'Example' + LineEnding; -.EE -.SH SEE ALSO -.BR pascal_pre_proc (1), -.BR pasdoc (1) diff --git a/pascal_pre_proc.man b/pascal_pre_proc.man deleted file mode 100644 index 62f1d63..0000000 --- a/pascal_pre_proc.man +++ /dev/null @@ -1,43 +0,0 @@ -.TH PASCAL_PRE_PROC 1 "2021-09-22" "" "User commands" -. -.SH NAME -\fBpascal_pre_proc\fR - Pascal preprocessor based on the PasDoc parser -. -.SH SYNOPSIS -.SY pascal_pre_proc -[\fIOPTIONS\fR] -.I FILE -.YS -. -.SH DESCRIPTION -.B pascal_pre_proc -is a Pascal preprocessor based on the parser -used by the PasDoc documentation generator. -When run, it will parse \fIFILE\fR, interpreting all -compiler directives - like \fB{$DEFINE}\fR, \fB{$IDEF}\fR, \fB{$INCLUDE}\fR, -as well as FPC macros - and print the result on standard output. -. -.SH OPTIONS -.TP -\fB-?\fR, \fB--help\fR -Display a help message and exit. -.TP -\fB-v\fR, \fB--verbosity\fR \fILEVEL\fR -Set logging verbosity. \fILEVEL\fR must be an integer in the 0-6 range. -The default is \fB2\fR. -.TP -\fB-D\fR, \fB--define\fR \fISYMBOL\fR -Assume \fISYMBOL\fR is defined when parsing conditional blocks. -.TP -\fB-d\fR, \fB--conditionals\fR \fICONDFILE\fR -Similar to \fB-D\fR. Reads the list of symbols from \fICONDFILE\fR. -.TP -\fB-I\fR, \fB--include\fR \fIPATH\fR -Search in \fIPATH\fR when evaluating \fB{$INCLUDE}\fR directives. -.TP -.B --no-macro -Disable support for FPC macros. -.SH SEE ALSO -.BR file_to_pascal_data (1), -.BR file_to_pascal_string (1), -.BR pasdoc (1) diff --git a/pasdoc.man b/pasdoc.man deleted file mode 100644 index f7adcf1..0000000 --- a/pasdoc.man +++ /dev/null @@ -1,402 +0,0 @@ -.TH "PASDOC" 1 "2021-09-22" "" "User commands" -. -. -.SH NAME -\fBpasdoc\fR - documentation generator for Pascal code -.SH SYNOPSIS -.SY pasdoc -[\fIOPTIONS...\fR] -[\fIFILES...\fR] -.YS -. -. -.SH DESCRIPTION -PasDoc is a documentation tool for Pascal and Object Pascal source code. -Documentation is generated from comments found in the source code, -or from external files. -. -. -.SH OPTIONS -.TP -\fB@\fR\fIFILE\fR -Read options from \fIFILE\fR and insert them at current position. -\fIFILE\fR must contain one option per line. -Format is "\fBname\fR[=\fIvalue\fR]", options are named just like -in the command line but without leading dashes. -Option values with spaces must \fINOT\fR be quoted. -. -.TP -\fB-?\fR, \fB--help\fR -Show a help message and exit. -. -.TP -\fB--abbreviations\fR \fIFILE\fR -Read list of abbreviations from \fIFILE\fR. Format is "[name] value". -Values are trimmed. Lines that do not start with '[' are ignored. -. -.TP -\fB-A\fR, \fB--additional\fR \fIFILE\fR -Specify the name of a text file with addition materials for the project. -. -.TP -.B --auto-abstract -Automatically make an abstract description of every item -from the first sentence of description for that item. -. -.TP -.B --auto-back-comments -Consider //-style comments after an identifier in the same line -as description of that identifier. -. -.TP -.B --auto-link -Automatically create links, -without the need to explicitly use \fB@link\fR tags. -. -.TP -\fB--auto-link-exclude\fR \fIFILE\fR -Even when \fB--auto-link\fR is on, never automatically create links -to identifiers listed in \fIFILE\fR. -The list should contain one identifier per line. -. -.TP -\fB--cache-dir\fR \fIDIR\fR -Specify cache directory for parsed files. -. -.TP -\fB--conclusion\fR \fIFILE\fR -Specify the name of a text file with concluding materials for the project. -. -.TP -\fB--css\fR \fISTYLESHEET\fR -Specify CSS file (will be copied into output tree) to use with HTML output. -. -.TP -\fB-D\fR, \fB--define\fR \fISYMBOL\fR -Assume \fISYMBOL\fR is defined when parsing conditional blocks. -. -.TP -\fB-d\fR, \fB--conditionals\fR \fIFILE\fR -Similar to \fB--define\fR, but reads the list of symbols from \fIFILE\fR. -. -.TP -\fB-E\fR, \fB--output\fR \fIPATH\fR -Specify output path. -. -.TP -\fB--external-class-hierarchy\fR \fIFILE\fR -Specify a file defining the hierarchy of classes -not included in your source code, for more complete class tree diagrams. -. -.TP -\fB-F\fR, \fB--footer\fR \fIFILE\fR -Use the contents of \fIFILE\fR as the footer for HTML output. -. -.TP -.B --graphviz-classes -Write a \fB"GVClasses.dot"\fR file that can be used for the \fBdot\fR program -from GraphViz to generate a class hierarchy graph. -. -.TP -.B --graphviz-uses -Write a \fB"GVUses.dot"\fR file that can be used for the \fBdot\fR program -from GraphViz to generate a unit dependency graph. -. -.TP -\fB-H\fR, \fB--header\fR \fIFILE\fR -Use the contents of \fIFILE\fR as the header for HTML output. -. -.TP -\fB--html-body-begin\fR \fIFILE\fR -In HTML output, put the contents of \fIFILE\fR -right after the opening \fB<body>\fR tag. -. -.TP -\fB--html-body-end\fR \fIFILE\fR -In HTML output, put the contents of \fIFILE\fR -right after the closing \fB</body>\fR tag. -. -.TP -\fB--html-head\fR \fIFILE\fR -In HTML output, put the contents of \fIFILE\fR inside the \fB<head>\fR tag. -. -.TP -\fB--html-help-contents\fR \fIFILE\fR -Read contents for HtmlHelp from \fIFILE\fR. -. -.TP -\fB--ignore-leading\fR \fILIST\fR -Specify a list of leading characters to be ignored in comments. -. -.TP -\fB--ignore-marker\fR \fIMARKER\fR -Skip comments starting with \fIMARKER\fR (that is, -\fB{MARKER\fR, \fB(*MARKER\fR and \fB//MARKER\fR comments). -. -.TP -\fB--implementation-comments\fR \fISTRATEGY\fR -Read implementation section of units and merge info with that -taken from interface section. \fISTRATEGY\fR determines how info is merged: -.RS -.TQ -.B none -Do not read implementation comments. -.TQ -.B prefer-interface -Read both interface and implementation comments. -Use whichever comment is non-empty. -If they are both non-empty, use the interface comment. -.TQ -.B prefer-implementation -Just like "prefer interface", but if both comments are non-empty, -use the implementation comment. -.TQ -.B join -Read both interface and implementation comments and concatenate them. -If the interface comment is also present at the beginning -of the implementation comment, it will be ignored (to avoid repetition). -.RE -. -.TP -\fB--implicit-visibility\fR \fIVISIBILITY\fR -Specify how to handle class members within default class visibility, -i.e. treat implicit visiblity as \fIVISIBILITY\fR. For a list of -recognized values, check the \fB-M\fR option. -. -.TP -\fB-I\fR, \fB--include\fR \fIPATH\fR -Search inside \fIPATH\fR when evaluating \fB{$INCLUDE}\fR directives. -. -.TP -.B --include-creation-time -Include a creation timestamp inside the generated files. -. -.TP -\fB--introduction\fR \fIFILE\fR -Specify the name of a text file with introductory materials for the project. -. -.TP -\fB-L\fR, \fB--language\fR \fILANG\fR -Output language. Valid languages are: -.RS -.TQ -.B ba -Bosnian (Codepage 1250) -.TQ -.B bg -Bulgarian (UTF-8) -.TQ -.B br.1252 -Brazilian (Codepage 1252) -.TQ -.B br.utf8 -Brazilian (UTF-8) -.TQ -.B ct -Catalan -.TQ -.B cz -Czech (Codepage 1250) -.TQ -.B cz.iso-8859-2 -Czech (Codepage ISO-8859-2) -.TQ -.B de -German (Codepage ISO-8859-15) -.TQ -.B de.utf8 -German (UTF-8) -.TQ -.B dk -Danish -.TQ -.B en -English -.TQ -.B es -Spanish -.TQ -.B fr -French (Codepage ISO-8859-15) -.TQ -.B fr.utf8 -French (UTF-8) -.TQ -.B gb2312 -Chinese (Simple, gb2312) -.TQ -.B hu.1250 -Hungarian (Codepage 1250) -.TQ -.B id -Indonesian -.TQ -.B it -Italian -.TQ -.B jv -Javanese -.TQ -.B mr -Croatian -.TQ -.B nl -Dutch -.TQ -.B pl.cp1250 -Polish (Codepage CP1250) -.TQ -.B pl.iso-8859-2 -Polish (Codepage ISO 8859-2) -.TQ -.B ru.866 -Russian (Codepage 866) -.TQ -.B ru.1251 -Russian (Codepage 1251) -.TQ -.B ru.koi8r -Russian (KOI-8) -.TQ -.B ru.utf8 -Russian (UTF-8) -.TQ -.B se -Swedish -.TQ -.B sk -Slovak (Codepage 1250) -.RE -. -.TP -\fB--latex-head\fR \fIFILE\fR -Specify a file that includes lines to be inserted -into the preamble of the output LaTeX file. -. -.TP -\fB--link-gv-classes\fR \fIFORMAT\fR -Add a link to a \fB"GVClasses.FORMAT"\fR file -generated by the \fBdot\fR program, where \fIFORMAT\fR is -any extension that \fBdot\fR can generate (e.g. jpg). -Currently available only for HTML output. -. -.TP -\fB--link-gv-uses\fR \fIFORMAT\fR -Add a link to a \fB"GVUses.FORMAT"\fR file generated by the \fBdot\fR program, -where \fIFORMAT\fR is any extension that \fBdot\fR can generate (e.g. jpg). -Currently available only for HTML output. -. -.TP -\fB--link-look\fR \fISTYLE\fR -Controls how links are displayed in documentation. Possible values are: -.RS -.TQ -.B default -Show the complete link name, as specified by @link. -.TQ -.B full -Show the complete link name, and try to make each part of it a link. -.TQ -.B stripped -Show only last part of the link. -.RE -. -.TP -.B --lowercase-keywords -Convert all literal tag keywords to lowercase -(e.g. \fI@nil\fR, \fI@false\fR, \fI@true\fR). -. -.TP -\fB-M\fR, \fB--visible-members\fR \fILIST\fR -Only include members of given visibility. Recognized visibilities are: -\fIpulished\fR, \fIpublic\fR, \fIprotected\fR, \fIstrictprotected\fR, -\fIprivate\fR, \fIstrictprivate\fR, \fIautomated\fR, \fIimplicit\fR. -. -.TP -.B --markdown -Decode Markdown syntax. -. -.TP -\fB--marker\fR \fIMARKER\fR -Parse only \fB{MARKER\fR, \fB(*MARKER\fR and \fB//MARKER\fR comments. -Overrides the \fB--staronly\fR option. -. -.TP -.B --marker-optional -Do not require the markers given by the \fB--marker\fR option, -but remove them from the comment if they exist. -. -.TP -\fB-N\fR, \fB--name\fR \fINAME\fR -Specify a name for the documentation. -. -.TP -.B --no-macro -Disable support for FPC macros. -. -.TP -.B --numericfilenames -Make the HTML generator create numeric filenames. -. -.TP -\fB-O\fR, \fB--format\fR \fIFORMAT\fR -Specify the output format. Must be one of: \fIhtml\fR, \fIhtmlhelp\fR, -\fIlatex\fR, \fIlatex2rtf\fR or \fIsimplexml\fR. -. -.TP -\fB-R\fR, \fB--description\fR \fIFILE\fR -Read descriptions from \fIFILE\fR. -. -.TP -\fB--sort\fR \fIGROUPLIST\fR -Specifies which groups of items are sorted (the rest is presented -in the same order they were declared in source files). -Recognized groups are: \fIconstants\fR, \fIfunctions\fR, \fImethods\fR, -\fInon-record-fields\fR, \fIproperties\fR, \fIrecord-fields\fR, \fIstructures\fR, -\fItypes\fR, \fIvariables\fI. -. -.TP -\fB-S\fR, \fB--source\fR \fIFILE\fR -Read the list of source filenames from \fIFILE\fR. -. -.TP -.B --spell-check -Enable spell-checking (via Aspell). -Specify language by using the \fB--language\fR option. -. -.TP -\fB--spell-check-ignore-words\fR \fIFILE\fR -When spell-checking, ignore the words listed inside \fIFILE\fR. -The list should contain one word per line. -. -.TP -.B --staronly -Parse only \fB{**\fR, \fB(***\fR and \fB//**\fR style comments. -. -.TP -\fB-T\fR, \fB--title\fR \fITITLE\fR -Specify the title of the documentation. -. -.TP -.B --use-tipue-search -Use the \fBtipue\fR search engine in HTML output. -. -.TP -\fB-v\fR, \fB--verbosity\fR \fILEVEL\fR -Set log verbosity. \fILEVEL\fR must be a number in the 0-6 range. Default is 2. -. -.TP -.B --version -Show version information and exit. -. -.TP -.B --write-uses-list -Add the \fBuses\fR list to the output. -. -.TP -\fB-X\fR, \fB--exclude-generator\fR -Do not include information about PasDoc in the generated files. -. -. -.SH ONLINE DOCUMENTATION -For the full documentation, visit \fBhttps://pasdoc.github.io/%5CfR. diff --git a/pasdoc.spec b/pasdoc.spec index 78034ba..bcb311f 100644 --- a/pasdoc.spec +++ b/pasdoc.spec @@ -1,32 +1,29 @@ Name: pasdoc Summary: Documentation tool for Pascal and Object Pascal source code
-# The readme says simply "GNU GPL 2", but license headers in code files -# say "version 2 of the License, or (at your option) any later version". -License: GPL-2.0-or-later +# PasDoc's original code is GPLv2 or later. +# +# The file source/component/naive_dictionary_fix.inc is taken from +# a different project (Castle Game Engine), which uses LGPL. +# +# For generating HTML output, PasDoc embeds some CSS and Javascript +# taken from jQuery, Tipue Search and Twitter Bootstrap. +# All of these are subject to MIT. +License: GPL-2.0-or-later AND LGPL-2.1-or-later WITH Independent-modules-exception AND MIT
%global with_gui 1 %global with_tools 1 %global with_tests 1
-Version: 0.16.0 -Release: 15%{?dist} +Version: 1.0.2 +Release: 1%{?dist}
URL: https://github.com/pasdoc/pasdoc Source0: %{URL}/archive/v%{version}/pasdoc-%{version}.tar.gz
-# Submitted upstream: https://github.com/pasdoc/pasdoc/pull/135 -Source10: %{name}.man -Source20: pascal_pre_proc.man -Source21: file_to_pascal_data.man - Source30: %{name}-gui.desktop Source31: %{name}-gui.metainfo.xml
-# The test runner script always rebuilds the program from scratch -# before actually performing any tests. -Patch0: 0000-adapt-test-runner.patch - # Edit the project configuration files to enable DWARF3 debuginfo Patch1: 0001-enable-dwarf3-debuginfo.patch
@@ -46,6 +43,11 @@ BuildRequires: libappstream-glib BuildRequires: make BuildRequires: %{_bindir}/diff BuildRequires: %{_bindir}/xmllint + +# php is no longer available on i686 +%ifnarch %{ix86} +BuildRequires: php-cli +%endif %endif
@@ -126,14 +128,14 @@ install -m 755 -t %{buildroot}%{_bindir} ./build/bin/*
MANDIR="%{buildroot}%{_mandir}/man1" install -m 755 -d "${MANDIR}" -install -m 644 -p '%{SOURCE10}' "${MANDIR}/%{name}.1" +install -m 644 -p './man/%{name}.man' "${MANDIR}/%{name}.1"
# Install man pages for tools. # file_to_pascal_data and file_to_pascal_string are almost the same, # so the single man page covers them both. %if 0%{?with_tools} -install -m 644 -p '%{SOURCE20}' "${MANDIR}/pascal_pre_proc.1" -install -m 644 -p '%{SOURCE21}' "${MANDIR}/file_to_pascal_data.1" +install -m 644 -p './man/pascal_pre_proc.man' "${MANDIR}/pascal_pre_proc.1" +install -m 644 -p './man/file_to_pascal_data.man' "${MANDIR}/file_to_pascal_data.1" ln -sr "${MANDIR}"/file_to_pascal_{data,string}.1 %endif
@@ -161,12 +163,19 @@ install -m 644 -p -t %{buildroot}%{_metainfodir} '%{SOURCE31}'
%check %if 0%{?with_tests} -export PASDOC_BIN="$(pwd)/build/bin/pasdoc" +export PATH="%{buildroot}%{_bindir}:${PATH}" export USE_DIFF_TO_COMPARE="true"
-cd tests/ +pushd tests/ ./test_pasdoc -a -./run_all_tests.sh + +%ifarch %{ix86} +# Some tests rely on the "php" executable being installed. +# On i686, php is no longer available; disable said tests. +sed -e '/^scripts/validate_php.sh$/d' -i ./run_all_tests_no_build.sh +%endif +./run_all_tests_no_build.sh +popd %endif
%if 0%{?with_gui} @@ -205,6 +214,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}-gui.desktop
%changelog +* Mon Mar 30 2026 Artur Frenszek-Iwicki fedora@svgames.pl - 1.0.2-1 +- Update to v1.0.2 + * Fri Jan 16 2026 Fedora Release Engineering releng@fedoraproject.org - 0.16.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
diff --git a/sources b/sources index a3b2aaa..4f869da 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (pasdoc-0.16.0.tar.gz) = fb3cebff2338e19119c44330398eaa69bbf65bfbc1a849a6151a3cfc936ae338fde75c7c1c54c27374dd1edddf7bc9f25a3af43b0c4d8ecea0547808e8a16ad4 +SHA512 (pasdoc-1.0.2.tar.gz) = 48ebad44936f0294a141dad2da82185f1ef6a78a7d1e9230390f675babd067ecda107b591f78d3e176e0a5c441b9dcf309826fcc335261cedefb757727533bde
arch-excludes@lists.fedoraproject.org