Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package perl-WWW-RobotRules for 
openSUSE:Factory checked in at 2026-06-09 14:14:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-WWW-RobotRules (Old)
 and      /work/SRC/openSUSE:Factory/.perl-WWW-RobotRules.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-WWW-RobotRules"

Tue Jun  9 14:14:19 2026 rev:10 rq:1358063 version:6.30.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-WWW-RobotRules/perl-WWW-RobotRules.changes  
2012-03-01 17:25:34.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-WWW-RobotRules.new.2375/perl-WWW-RobotRules.changes
        2026-06-09 14:15:00.115428541 +0200
@@ -1,0 +2,6 @@
+Sat May 23 07:46:50 UTC 2026 - Tina Müller <[email protected]>
+
+- updated to 6.30.0 (6.03)
+   see /usr/share/doc/packages/perl-WWW-RobotRules/Changes
+
+-------------------------------------------------------------------

Old:
----
  WWW-RobotRules-6.02.tar.gz

New:
----
  README.md
  WWW-RobotRules-6.03.tar.gz
  _scmsync.obsinfo
  build.specials.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-WWW-RobotRules.spec ++++++
--- /var/tmp/diff_new_pack.IH8UEY/_old  2026-06-09 14:15:01.275476607 +0200
+++ /var/tmp/diff_new_pack.IH8UEY/_new  2026-06-09 14:15:01.275476607 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-WWW-RobotRules
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,71 +12,77 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
+%define cpan_name WWW-RobotRules
 Name:           perl-WWW-RobotRules
-Version:        6.02
+Version:        6.30.0
 Release:        0
-%define cpan_name WWW-RobotRules
-Summary:        database of robots.txt-derived permissions
-License:        Artistic-1.0 or GPL-1.0+
-Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/WWW-RobotRules/
-Source:         
http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
+# 6.03 -> normalize -> 6.30.0
+%define cpan_version 6.03
+License:        Artistic-1.0 OR GPL-1.0-or-later
+Summary:        Database of robots.txt-derived permissions
+URL:            https://metacpan.org/release/%{cpan_name}
+Source0:        
https://cpan.metacpan.org/authors/id/O/OA/OALDERS/%{cpan_name}-%{cpan_version}.tar.gz
+Source100:      README.md
 BuildArch:      noarch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(URI) >= 1.10
-#BuildRequires: perl(WWW::RobotRules)
-#BuildRequires: perl(WWW::RobotRules::AnyDBM_File)
-Requires:       perl(URI) >= 1.10
+BuildRequires:  perl(Test::More) >= 0.96
+BuildRequires:  perl(URI) >= 1.100
+Requires:       perl(URI) >= 1.100
+Provides:       perl(WWW::RobotRules) = %{version}
+Provides:       perl(WWW::RobotRules::AnyDBM_File) = %{version}
+Provides:       perl(WWW::RobotRules::DB_File) = %{version}
+Provides:       perl(WWW::RobotRules::InCore) = %{version}
+%undefine       __perllib_provides
 %{perl_requires}
 
 %description
-This module parses _/robots.txt_ files as specified in "A Standard for
-Robot Exclusion", at <http://www.robotstxt.org/wc/norobots.html> Webmasters
-can use the _/robots.txt_ file to forbid conforming robots from accessing
-parts of their web site.
+This module parses _/robots.txt_ files as specified in at
+https://www.robotstxt.org/robotstxt.html. Webmasters can use the
+_/robots.txt_ file to forbid conforming robots from accessing parts of
+their web site.
 
-The parsed files are kept in a WWW::RobotRules object, and this object
+The parsed files are kept in a 'WWW::RobotRules' object, and this object
 provides methods to check if access to a given URL is prohibited. The same
-WWW::RobotRules object can be used for one or more parsed _/robots.txt_
+'WWW::RobotRules' object can be used for one or more parsed _/robots.txt_
 files on any number of hosts.
 
 The following methods are provided:
 
 * $rules = WWW::RobotRules->new($robot_name)
 
-  This is the constructor for WWW::RobotRules objects. The first argument
-  given to new() is the name of the robot.
+This is the constructor for WWW::RobotRules objects. The first argument
+given to new() is the name of the robot.
 
 * $rules->parse($robot_txt_url, $content, $fresh_until)
 
-  The parse() method takes as arguments the URL that was used to retrieve
-  the _/robots.txt_ file, and the contents of the file.
+The parse() method takes as arguments the URL that was used to retrieve the
+_/robots.txt_ file, and the contents of the file.
 
 * $rules->allowed($uri)
 
-  Returns TRUE if this robot is allowed to retrieve this URL.
+Returns TRUE if this robot is allowed to retrieve this URL.
 
 * $rules->agent([$name])
 
-  Get/set the agent name. NOTE: Changing the agent name will clear the
-  robots.txt rules and expire times out of the cache.
+Get/set the agent name. NOTE: Changing the agent name will clear the
+_robots.txt_ rules and expire times out of the cache.
 
 %prep
-%setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+%autosetup -n %{cpan_name}-%{cpan_version} -p1
+
+find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path 
"*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 
644
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+%make_build
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install
@@ -84,6 +90,6 @@
 %perl_gen_filelist
 
 %files -f %{name}.files
-%defattr(-,root,root,755)
-%doc Changes README
+%doc Changes
+%license LICENSE
 

++++++ README.md ++++++

## Build Results

Current state of perl in openSUSE:Factory is

![Factory build 
results](https://br.opensuse.org/status/openSUSE:Factory/perl-WWW-RobotRules/standard)

The current state of perl in the devel project build (devel:languages:perl)

![Devel project build 
results](https://br.opensuse.org/status/devel:languages:perl/perl-WWW-RobotRules)



++++++ WWW-RobotRules-6.02.tar.gz -> WWW-RobotRules-6.03.tar.gz ++++++
++++ 4419 lines of diff (skipped)

++++++ _scmsync.obsinfo ++++++
mtime: 1779522410
commit: b0a0b9fae7661748b15d2524be6dfcf1e775abc60f18fc0d54fe111d17f506eb
url: https://src.opensuse.org/perl/perl-WWW-RobotRules
revision: b0a0b9fae7661748b15d2524be6dfcf1e775abc60f18fc0d54fe111d17f506eb
projectscmsync: https://src.opensuse.org/perl/_ObsPrj

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-05-23 09:46:50.000000000 +0200
@@ -0,0 +1 @@
+.osc

Reply via email to