openSUSE:Backports:SLE-15-SP3 Backports for SLE-15-SP3 Backports for SLE-15-SP3 https://download.opensuse.org/repositories/openSUSE:/Backports:/SLE-15-SP3/step/ openSUSE:Backports:SLE-15-SP3:Checks Checks This project contains rpmlint checks for openSUSE:Backports:SLE-15-SP3 https://download.opensuse.org/repositories/openSUSE:/Backports:/SLE-15-SP3:/Checks/step/ openSUSE:Step:15-SP3 openSUSE Step 15-SP3 This projects provides a fork of SUSE SLE 15-SP3. It rebuilds the sources including maintenance updates. The main purpose is to enable non-SLE hardware architectures like armv7l. https://download.opensuse.org/repositories/openSUSE:/Step:/15-SP3/standard/ SUSE:SLE-15-SP3:GA https://download.opensuse.org/repositories/SUSE:/SLE-15-SP3:/GA/config/ openSUSE:Step:15-SP2 openSUSE Step 15-SP2 This projects provides a fork of SUSE SLE 15-SP2. It rebuilds the sources including maintenance updates. The main purpose is to enable non-SLE hardware architectures like armv7l. https://download.opensuse.org/repositories/openSUSE:/Step:/15-SP2/standard/ SUSE:SLE-15-SP2:Update SLE 15 SP2 SLE 15 SP2 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP2:/Update/config/ SUSE:SLE-15-SP2:GA SLE 15 SP2 SLE 15 SP2 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP2:/GA/config/ openSUSE:Step:15-SP1 openSUSE Step 15-SP1 This projects provides a fork of SUSE SLE 15-SP1. It rebuilds the sources including maintenance updates. The main purpose is to enable non-SLE hardware architectures like armv7l. https://download.opensuse.org/repositories/openSUSE:/Step:/15-SP1/standard/ SUSE:SLE-15-SP1:Update SLE 15 SP1 SLE 15 SP1 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP1:/Update/config/ SUSE:SLE-15-SP1:GA SLE 15 SP1 SLE 15 SP1 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP1:/GA/config/ openSUSE:Step:15 openSUSE Step 15 This projects provides a community rebuilt of SUSE SLE 15 from sources. It rebuilds the sources including released SLES maintenance updates. The main purpose is to enable non-SLE hardware architectures like armv7l. https://download.opensuse.org/repositories/openSUSE:/Step:/15/standard/ SUSE:SLE-15:Update SLE 15 SLE 15 https://download.opensuse.org/repositories/SUSE:/SLE-15:/Update/config/ SUSE:SLE-15:GA SLE 15 SLE 15 https://download.opensuse.org/repositories/SUSE:/SLE-15:/GA/config/ perl-Test-Spelling Check for Spelling Errors in Pod Files 'Test::Spelling' lets you check the spelling of a POD file, and report its results in standard 'Test::More' fashion. This module requires a spellcheck program such as _spell_, _aspell_, _ispell_, or _hunspell_. use Test::Spelling; pod_file_spelling_ok('lib/Foo/Bar.pm', 'POD file spelling OK'); Note that it is a bad idea to run spelling tests during an ordinary CPAN distribution install, or in a package that will run in an uncontrolled environment. There is no way of predicting whether the word list or spellcheck program used will give the same results. You *can* include the test in your distribution, but be sure to run it only for authors of the module by guarding it in a 'skip_all unless -d 'inc/.author'' clause, or by putting the test in your distribution's _xt/_ directory. Anyway, people installing your module really do not need to run such tests, as it is unlikely that the documentation will acquire typos while in transit. :-) You can add your own stop words, which are words that should be ignored by the spell check, like so: add_stopwords(qw(asdf thiswordiscorrect)); Adding stop words in this fashion affects all files checked for the remainder of the test script. See Pod::Spell (which this module is built upon) for a variety of ways to add per-file stop words to each .pm file. If you have a lot of stop words, it's useful to put them in your test file's 'DATA' section like so: use Test::Spelling; add_stopwords(<DATA>); all_pod_files_spelling_ok(); __END__ folksonomy Jifty Zakirov To maintain backwards compatibility, comment markers and some whitespace are ignored. In the near future, the preprocessing we do on the arguments to add_stopwords will be changed and documented properly.