Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

astyle-3.4.10-1.2 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: astyle Distribution: openSUSE:Factory:zSystems
Version: 3.4.10 Vendor: openSUSE
Release: 1.2 Build date: Wed Nov 1 07:57:50 2023
Group: Unspecified Build host: s390zl26
Size: 880485 Source RPM: astyle-3.4.10-1.2.src.rpm
Packager: https://bugs.opensuse.org
Url: https://astyle.sourceforge.net/
Summary: Source Code Indenter, Formatter, and Beautifier for C, C++, C# and Java
Artistic Style is a source code indenter, formatter, and beautifier for the C,
C++, C# and Java programming languages. It automatically re-indents and
re-formats C / C++ / C# / Java source files. It can be used from a command
line, or it can be incorporated as classes in another C++ program.

Provides

Requires

License

MIT

Changelog

* Sat Oct 21 2023 Antoine Belvire <antoine.belvire@opensuse.org>
  - Update to 3.4.10:
    * Fixed missing indent in function parameter list (gl#saalen/astyle#16).
  - Changes of version 3.4.9:
    * Applied one wording for Objective-C in the docs.
    * Fixed more CS regressions (gl#saalen/astyle#16).
    * Fixed inserting space with combined "--pad-oper" and "--align-pointer" options (#557).
  - Changes of version 3.4.8:
    * Fixed lambda broken brace after auto keyword (#554).
    * Fixed line break after comment in asm block (#226).
    * Fixed padding of multiply operator (#126).
    * Fixed indentation of method calls (#434).
    * Fixed empty line after closing while block (gl#saalen/astyle#18).
    * Added outer padding for emtpy parens pairs (gl#saalen/astyle#19).
    * Fixed more CS regressions (gl#saalen/astyle#16).
  - Changes of version 3.4.6:
    * Added VS2022 project files (gl#saalen/astyle!3).
    * Fixed CS regressions (gl#saalen/astyle#16).
    * Added CS coalesce assignment operator (gl#saalen/astyle#17).
  - Changes of version 3.4.1:
    * Fixed padding of & following a comma (#552).
    * Fixed indent of function declarations following access modifiers (#504).
    * Fixed indent of C# allocation blocks (#464).
    * Fixed indentation of comments after CS interpolation quotes (gl#saalen/astyle#16).
* Sat Jun 17 2023 Antoine Belvire <antoine.belvire@opensuse.org>
  - Update to 3.4:
    * Fixed formatting of CS interpolation literals (gl#saalen/astyle#8).
    * Fixed false lambda recognition (gl#saalen/astyle#11).
    * Fixed indentation of member declarations (gl#saalen/astyle#10).
    * Fixed indentation of struct assignments (gl#saalen/astyle#12).
    * Added new option "--indent-lambda" to to enable new lambda recognition
      (gl#saalen/astyle#7).
* Wed Jun 07 2023 Stefan Seyfried <seife+obs@b1-systems.com>
  - spec: add libastylej.rpmlintrc to please factory-auto check
* Wed Jun 07 2023 Stefan Seyfried <seife+obs@b1-systems.com>
  - bring back libastylej.so symlink to fix at least Arduino
  - add libastylej.rpmlintrc to disarm the harmful check which
    probably caused the removal of libastylej.so
* Sun May 28 2023 Antoine Belvire <antoine.belvire@opensuse.org>
  - Update to 3.3.1: Fix build.
  - Remove astyle-3.3-std.patch: Fixed upstream.
* Wed May 24 2023 Antoine Belvire <antoine.belvire@opensuse.org>
  - Update to 3.3:
    * The source code has been refactored to no longer use the std namespace
      globally.
    * Some features of "modern C++" are now supported, ie. lambda function
      arguments and array initializers with braces.
    * Two new options to remove superfluous whitespace and empty lines were
      added: "squeeze-ws" and "squeeze-lines=#" (parameter value is the number of
      empty lines to keep).
    * Two new options to add or remove whitespace around square brackets were
      added: "pad-brackets" and "unpad-brackets".
  - Changes of 3.2:
    * Use C++11 feature.
    * New option "style=webkit": Similar to the Stroustrup brace style except the
      'else' keyword is attached to the previous closing bracket.
    * Various bugs fixes, especially causing reformatting the code in repeated
      runs.
    * Deprecated options have been removed.
  - Install man page.
  - Add astyle-3.3-std.patch: Fix build.
  - Refresh spec file.
* Thu Oct 17 2019 Richard Brown <rbrown@suse.com>
  - Remove obsolete Groups tag (fate#326485)
* Mon Apr 16 2018 kkaempf@suse.com
  - don't obsolete libastyle1, let the distribution update handle
    removal of old shared lib.
* Wed Apr 11 2018 kkaempf@suse.com
  - Update to 3.1
    * Add new options "project", "project=####", and "project=none" (#11).
    * Add new options, "break-return-type" and "break-return-type-decl" (358, 286, 205, 16).
    * Add new options, "attach-return-type" and "attach-return-type-decl" (358, 286, 205, 16).
    * Add new option "style=ratliff", as an alternate name for banner style.
    * Add new environment variable ARTISTIC_STYLE_PROJECT_OPTIONS (#11).
    * Add multiple extensions to the command line file paths option.
    * Improve recognition of unary + and - when using pad-oper.
    * Change the Windows default options file location from USERPROFILE to APPDATA.
    * Change options file input to accept UTF-16, or UTF-8 with a BOM (or signature).
    * Change "unsigned short" data type to c++11 "char16_t".
    * Change translations for new project options file.
    * Fix utf8LengthFromUtf16() calculation being less than the actual length.
    * Fix multiply followed by a dereference for "align-pointer=type".
    * Fix recognition of a uniform class initializer in a base class initialization (#441).
    * Fix indentation of "volatile" keyword not used in a method definition (#450).
    * Fix indentation of "final" keyword not used in a method definition (#450).
    * Fix indentation of compound literals in an argument list (#456).
    * Fix indentation of trailing return type method following a constructor (#463).
    * Fix space padding of closing brace before a dot (#468).
    * Fix Objective-C to allow for "Extern C" statements in the source files (#443, 444, 446).
    * Fix Objective-C to allow for method definitions without a specified return type (#447).
    * Fix Objective-C to allow for method definitions with multiple param types.
    * Fix Objective-C to replace tabbed padding with a space.
    * Fix Objective-C formatting of line-end comments with "unpad-return-type".
    * Fix Objective-C "align-method-colon" to ignore ternary (?) operators.
    * Fix C# base class constructor indentation (#459).
    * Fix C# indentation of method declaration containing a colon (#465)
    * Fix C/C++ to allow "interface" as a non-keyword (#445).
    * Fix Java to allow "default" as a non-switch keyword.
    * Fix line ends initialization if no line end has been read.
    * Fix Java build from including ASLocalizer in the shared library.
    * Fix to check for AStyleWx line tags after C style comments.
    * Fix boundary conditions and other errors discovered by fuzzing.
    * Refactoring:
    - Extract method isNumericVariable() in ASFormatter class.
    - Extract method isTopLevel() in ASBeautifier class.
    - Extract method fileExists() in Console class.
    - Rename ASEncoding variable from "utf8_16" to "encode".
    - Rename ASBeautifier vector from squareBracketDepthStack to parenDepthStack.
    - Combine style options in ASOptions class to avoid compiler limits.
* Wed Aug 09 2017 kkaempf@suse.com
  - Prevent file conflicts on update: obsolete libastylej1

Files

/usr/bin/astyle
/usr/share/doc/packages/astyle
/usr/share/doc/packages/astyle/README.md
/usr/share/doc/packages/astyle/doc
/usr/share/doc/packages/astyle/doc/astyle.html
/usr/share/doc/packages/astyle/doc/development.html
/usr/share/doc/packages/astyle/doc/favicon.ico
/usr/share/doc/packages/astyle/doc/index.html
/usr/share/doc/packages/astyle/doc/install.html
/usr/share/doc/packages/astyle/doc/links.html
/usr/share/doc/packages/astyle/doc/news.html
/usr/share/doc/packages/astyle/doc/newsArchives.html
/usr/share/doc/packages/astyle/doc/notes.html
/usr/share/doc/packages/astyle/doc/notesArchives.html
/usr/share/doc/packages/astyle/doc/scripts.html
/usr/share/doc/packages/astyle/doc/styles.css
/usr/share/doc/packages/astyle/doc/subversion.html
/usr/share/doc/packages/astyle/doc/vsinstall.html
/usr/share/licenses/astyle
/usr/share/licenses/astyle/LICENSE.md
/usr/share/man/man1/astyle.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:50:11 2024