aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2021-02-13 10:53:27 +0200
committerSergey Poznyakoff <gray@gnu.org>2021-02-13 10:53:27 +0200
commit98092d636410751e82bee3d03376f002c9f77a11 (patch)
tree7b4f4052fc6b703aefb8b63e4aca30bad923bcec
parent9e9d16d23062d3aa04745df6b47feacd9ee685c2 (diff)
downloadregexp-opt-master.tar.gz
regexp-opt-master.tar.bz2
Change bugtracker addressHEADv1.04master
As a reaction to https://log.perl.org/2020/12/rtcpanorg-sunset.html, bugtracker switched to puszcza.gnu.org.ua
-rw-r--r--Changes4
-rw-r--r--MANIFEST24
-rw-r--r--MANIFEST.SKIP63
-rw-r--r--Makefile.PL6
-rw-r--r--lib/List/Regexp.pm4
5 files changed, 95 insertions, 6 deletions
diff --git a/Changes b/Changes
index 4d251cf..8d24bd4 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+1.04 2021-02-13
+
+* Change bugtracker address.
+
1.03 2016-10-03
* Minor fixes
diff --git a/MANIFEST b/MANIFEST
index bf5bf32..8431175 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,14 +1,32 @@
Changes
+lib/List/Regexp.pm
LICENSE
-MANIFEST
+List-Regexp-1.03/Changes
+List-Regexp-1.03/lib/List/Regexp.pm
+List-Regexp-1.03/LICENSE
+List-Regexp-1.03/Makefile.PL
+List-Regexp-1.03/MANIFEST
+List-Regexp-1.03/META.json
+List-Regexp-1.03/META.yml
+List-Regexp-1.03/README
+List-Regexp-1.03/regexp-opt
+List-Regexp-1.03/t/array.t
+List-Regexp-1.03/t/charset.t
+List-Regexp-1.03/t/prefix.t
+List-Regexp-1.03/t/single-w.t
+List-Regexp-1.03/t/single.t
+List-Regexp-1.03/t/suffix.t
+List-Regexp-1.03/t/TestRegexp.pm
Makefile.PL
+MANIFEST This list of files
+MANIFEST.SKIP
README
regexp-opt
-lib/List/Regexp.pm
-t/TestRegexp.pm
+t/alter.t
t/array.t
t/charset.t
t/prefix.t
t/single-w.t
t/single.t
t/suffix.t
+t/TestRegexp.pm
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644
index 0000000..58696be
--- /dev/null
+++ b/MANIFEST.SKIP
@@ -0,0 +1,63 @@
+# Avoid version control files.
+\bRCS\b
+\bCVS\b
+\bSCCS\b
+,v$
+\B\.svn\b
+\B\.git\b
+\B\.gitignore\b
+\b_darcs\b
+\B\.cvsignore$
+
+# Avoid VMS specific MakeMaker generated files
+\bDescrip.MMS$
+\bDESCRIP.MMS$
+\bdescrip.mms$
+
+# Avoid Makemaker generated and utility files.
+\bMANIFEST\.bak
+\bMakefile$
+\bblib/
+\bMakeMaker-\d
+\bpm_to_blib\.ts$
+\bpm_to_blib$
+\bblibdirs\.ts$ # 6.18 through 6.25 generated this
+
+# Avoid Module::Build generated and utility files.
+\bBuild$
+\b_build/
+\bBuild.bat$
+\bBuild.COM$
+\bBUILD.COM$
+\bbuild.com$
+
+# Avoid temp and backup files.
+~$
+\.old$
+\#$
+\b\.#
+\.bak$
+\.tmp$
+\.#
+\.rej$
+
+# Avoid OS-specific files/dirs
+# Mac OSX metadata
+\B\.DS_Store
+# Mac OSX SMB mount metadata files
+\B\._
+
+# Avoid Devel::Cover and Devel::CoverX::Covered files.
+\bcover_db\b
+\bcovered\b
+
+# Avoid MYMETA files
+^MYMETA\.
+
+^debug.sh
+^tmp
+^buildreq
+^\.emacs\.*
+
+\.tar$
+\.tar\.gz$
diff --git a/Makefile.PL b/Makefile.PL
index df97e4e..1db9765 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,5 +1,5 @@
# -*- perl -*-
-# Copyright (C) 2015-2016 Sergey Poznyakoff <gray@gnu.org>
+# Copyright (C) 2015-2021 Sergey Poznyakoff <gray@gnu.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -33,6 +33,10 @@ WriteMakefile(NAME => 'List::Regexp',
url => 'git://git.gnu.org.ua/regexp-opt.git',
web => 'http://git.gnu.org.ua/cgit/regexp-opt.git/',
},
+ bugtracker => {
+ web => 'https://puszcza.gnu.org.ua/bugs/?group=regexp-opt',
+ mailto => 'gray+regexp-opt@gnu.org.ua'
+ }
},
provides => Module::Metadata->provides(version => '1.4',
dir => 'lib')
diff --git a/lib/List/Regexp.pm b/lib/List/Regexp.pm
index bf8e96a..417697e 100644
--- a/lib/List/Regexp.pm
+++ b/lib/List/Regexp.pm
@@ -1,5 +1,5 @@
# -*- perl -*-
-# Copyright (C) 2015-2016 Sergey Poznyakoff <gray@gnu.org>
+# Copyright (C) 2015-2021 Sergey Poznyakoff <gray@gnu.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -27,7 +27,7 @@ our @ISA = qw(Exporter);
our %EXPORT_TAGS = ( 'all' => [ qw(regexp_opt) ] );
our @EXPORT_OK = ( qw(regexp_opt) );
our @EXPORT = qw(regexp_opt);
-our $VERSION = "1.03";
+our $VERSION = "1.04";
# Synopsis:
# my @res = find_prefix(AREF)

Return to:

Send suggestions and report system problems to the System administrator.