Skip to content

Commit

Permalink
Moved the repos from petdance to beyondgrep
Browse files Browse the repository at this point in the history
  • Loading branch information
petdance committed Dec 8, 2017
1 parent 44ac66a commit 93da35b
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Expand Up @@ -9,7 +9,7 @@ From the man page:
> All enhancement requests MUST first be posted to the ack-users mailing list at <http://groups.google.com/group/ack-users>. I will not consider a request without it first getting seen by other ack users. This includes
> requests for new filetypes.
>
> There is a list of enhancements I want to make to ack in the ack issues list at Github: <https://github.com/petdance/ack2/issues>
> There is a list of enhancements I want to make to ack in the ack issues list at Github: <https://github.com/beyondgrep/ack2/issues>
>
> Patches are always welcome, but patches with tests get the most attention.
Expand All @@ -26,7 +26,7 @@ that probably means someone needs to make a release. =)

Also appreciated with an issue are the following:

- Example invocations along with expected vs received output (see [#439](https://github.com/petdance/ack2/issues/439), great job!)
- Example invocations along with expected vs received output (see [#439](https://github.com/beyondgrep/ack2/issues/439), great job!)
- A `.t` test file that tests and verifies the behavior you expect
- A patch that fixes your issue

Expand Down
2 changes: 1 addition & 1 deletion DESIGN.md
Expand Up @@ -18,7 +18,7 @@ that have already been made, so that we don't keep rehashing them.
## Would ack be faster if we used the integer pragma?

It seems not. Brian M. Carlson investigated this and reported his
findings here: https://github.com/petdance/ack2/issues/398
findings here: https://github.com/beyondgrep/ack2/issues/398

There seemed to be no effect.

Expand Down
6 changes: 3 additions & 3 deletions DEVELOPERS.md
@@ -1,7 +1,7 @@
# Ack Developer's Guide

This is a guide intended to help new developers work on ack. You may also want to read
[CONTRIBUTING.md](https://github.com/petdance/ack2/blob/dev/CONTRIBUTING.md).
[CONTRIBUTING.md](https://github.com/beyondgrep/ack2/blob/dev/CONTRIBUTING.md).

## Helper Scripts

Expand Down Expand Up @@ -114,7 +114,7 @@ Do all of the above for a development release, plus:

* Put a version of standalone into the garage.
* Update beyondgrep.com
* https://github.com/petdance/beyondgrep
* https://github.com/beyondgrep/website
* Front page version number
* man page archive
* Announce it
Expand All @@ -132,7 +132,7 @@ TODO

Our issues are hosted on GitHub.

https://github.com/petdance/ack2/issues
https://github.com/beyondgrep/ack2/issues

### Tags

Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Expand Up @@ -66,9 +66,9 @@ if ( $ExtUtils::MakeMaker::VERSION ge '6.46' ) {
$parms{META_MERGE} = {
resources => {
homepage => 'https://beyondgrep.com/',
bugtracker => 'https://github.com/petdance/ack2',
bugtracker => 'https://github.com/beyondgrep/ack2',
license => 'http://www.perlfoundation.org/artistic_license_2_0',
repository => 'git://github.com/petdance/ack2.git',
repository => 'git://github.com/beyondgrep/ack2.git',
MailingList => 'https://groups.google.com/group/ack-users',
}
};
Expand Down
8 changes: 4 additions & 4 deletions README.md
@@ -1,7 +1,7 @@
# Build status of dev branch

* Linux [![Build Status](https://travis-ci.org/petdance/ack2.png?branch=dev)](https://travis-ci.org/petdance/ack2)
* Windows [![Build Status](https://ci.appveyor.com/api/projects/status/github/petdance/ack2)](https://ci.appveyor.com/project/petdance/ack2)
* Linux [![Build Status](https://travis-ci.org/beyondgrep/ack2.png?branch=dev)](https://travis-ci.org/beyondgrep/ack2)
* Windows [![Build Status](https://ci.appveyor.com/api/projects/status/github/beyondgrep/ack2)](https://ci.appveyor.com/project/beyondgrep/ack2)
* [CPAN Testers](http://cpantesters.org/distro/A/ack.html)

# ack 2
Expand All @@ -13,8 +13,8 @@ Perl, is highly portable, and runs on any platform that runs Perl.
ack is written and maintained by Andy Lester (andy@petdance.com).

* Project home page: https://beyondgrep.com/
* Code home page: https://github.com/petdance/ack2
* Issue tracker: https://github.com/petdance/ack2/issues
* Code home page: https://github.com/beyondgrep/ack2
* Issue tracker: https://github.com/beyondgrep/ack2/issues
* Mailing list for announcements: https://groups.google.com/d/forum/ack-announcements
* Mailing list for users: https://groups.google.com/d/forum/ack-users
* Mailing list for developers: https://groups.google.com/d/forum/ack-dev
Expand Down
12 changes: 6 additions & 6 deletions ack
Expand Up @@ -17,7 +17,7 @@ use App::Ack::Resources;
use App::Ack::Resource ();

# XXX Don't make this so brute force
# See also: https://github.com/petdance/ack2/issues/89
# See also: https://github.com/beyondgrep/ack2/issues/89
use App::Ack::Filter ();
use App::Ack::Filter::Default;
use App::Ack::Filter::Extension;
Expand Down Expand Up @@ -585,7 +585,7 @@ sub print_line_with_options {
}
if( $opt_output ) {
while ( $line =~ /$opt_regex/og ) {
# XXX We need to stop using eval() for --output. See https://github.com/petdance/ack2/issues/421
# XXX We need to stop using eval() for --output. See https://github.com/beyondgrep/ack2/issues/421
my $output = eval $opt_output;
App::Ack::print( join( $separator, @line_parts, $output ), $ors );
}
Expand Down Expand Up @@ -2200,7 +2200,7 @@ Andy Lester, C<< <andy at petdance.com> >>
=head1 BUGS
Please report any bugs or feature requests to the issues list at
Github: L<https://github.com/petdance/ack2/issues>
Github: L<https://github.com/beyondgrep/ack2/issues>
=head1 ENHANCEMENTS
Expand All @@ -2210,7 +2210,7 @@ will not consider a request without it first getting seen by other
ack users. This includes requests for new filetypes.
There is a list of enhancements I want to make to F<ack> in the ack
issues list at Github: L<https://github.com/petdance/ack2/issues>
issues list at Github: L<https://github.com/beyondgrep/ack2/issues>
Patches are always welcome, but patches with tests get the most
attention.
Expand All @@ -2231,7 +2231,7 @@ L<http://groups.google.com/group/ack-users>
=item * The ack issues list at Github
L<https://github.com/petdance/ack2/issues>
L<https://github.com/beyondgrep/ack2/issues>
=item * AnnoCPAN: Annotated CPAN documentation
Expand All @@ -2251,7 +2251,7 @@ L<http://metacpan.org/release/ack>
=item * Git source repository
L<https://github.com/petdance/ack2>
L<https://github.com/beyondgrep/ack2>
=back
Expand Down
2 changes: 1 addition & 1 deletion squash
Expand Up @@ -23,7 +23,7 @@ my $NO_EDIT_COMMENT = <<'EOCOMMENT';
# Please DO NOT EDIT or send patches for it.
#
# Please take a look at the source from
# https://github.com/petdance/ack2
# https://github.com/beyondgrep/ack2
# and submit patches against the individual files
# that build ack.
#
Expand Down
2 changes: 1 addition & 1 deletion t/Util.pm
Expand Up @@ -629,7 +629,7 @@ BEGIN {
Test::More::fail(<<'END_FAIL');
Your system doesn't seem to have IO::Pty, and the developers
forgot to check in this test file. Please file a bug report
at https://github.com/petdance/ack2/issues with the name of
at https://github.com/beyondgrep/ack2/issues with the name of
the file that generated this failure.
END_FAIL
};
Expand Down
2 changes: 1 addition & 1 deletion t/context.t
Expand Up @@ -314,7 +314,7 @@ EOF
ack_lists_match( [ @args, @files ], \@expected, "Looking for $regex in multiple files with grouping" );
}

# See https://github.com/petdance/ack2/issues/326 and links there for details.
# See https://github.com/beyondgrep/ack2/issues/326 and links there for details.
WITH_COLUMNS_AND_CONTEXT: {
my @files = qw( t/text/ );
my @expected = split( /\n/, <<'EOF' );
Expand Down
2 changes: 1 addition & 1 deletion t/issue244.t
@@ -1,6 +1,6 @@
#!perl -T

# https://github.com/petdance/ack2/issues/244
# https://github.com/beyondgrep/ack2/issues/244

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/issue276.t
@@ -1,6 +1,6 @@
#!perl -T

# https://github.com/petdance/ack2/issues/276
# https://github.com/beyondgrep/ack2/issues/276

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/issue522.t
@@ -1,6 +1,6 @@
#!perl -T

# https://github.com/petdance/ack2/issues/522
# https://github.com/beyondgrep/ack2/issues/522

use strict;
use warnings;
Expand Down

0 comments on commit 93da35b

Please sign in to comment.