Skip to content

Commit 9ea147c

Browse files
committed
- v2.1.2
- Turned off $DEBUG in IP.rakumod (thanks to Demayl, issue #3) - Added test for $Net::IP::DEBUG being on - Rakuize (Perl6 => Raku) - Renamed Github repo (Net-IP-Perl6 => Net-IP)
1 parent 13bc298 commit 9ea147c

File tree

6 files changed

+21
-14
lines changed

6 files changed

+21
-14
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
# 2020-07-15
2+
- v2.1.2
3+
- Turned off $DEBUG in IP.rakumod (thanks to Demayl, issue #3)
4+
- Added test for $Net::IP::DEBUG being on
5+
- Rakuize (Perl6 => Raku)
6+
- Renamed Github repo (Net-IP-Perl6 => Net-IP)
7+
18
# 2020-04-07
2-
- v2.0.0
9+
- v2.1.1
310
- changed API, not backwardly compatible
411
+ eliminate requirement to specify IP
512
version when first argument is an IP in standard form

META6.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"perl" : "6.*",
33
"name" : "Net::IP",
4-
"version" : "2.1.1" ,
4+
"version" : "2.1.2" ,
55
"api" : "2",
66
"description" : "Provides utility functions for dealing with IPv4 and IPv6 addresses.",
77
"auth" : "github:tbrowder",
88
"author" : "github:tbrowder",
99
"authors" : [ "Tom Browder <[email protected]>" ],
1010
"license" : "Artistic-2.0",
11-
"source-url" : "https://github.com/tbrowder/Net-IP-Perl6.git",
11+
"source-url" : "https://github.com/tbrowder/Net-IP.git",
1212
"support" : {
13-
"bugtracker" : "https://github.com/tbrowder/Net-IP-Perl6/issues"
13+
"bugtracker" : "https://github.com/tbrowder/Net-IP/issues"
1414
},
1515
"provides" : {
1616
"Net::IP" : "lib/Net/IP.rakumod"

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
PERL6 := perl6
2-
# note LIBPATH uses normal PERL6LIB Perl 6 separators (',')
1+
RAKU := raku
2+
# note LIBPATH uses normal RAKULIB Raku separators (',')
33
LIBPATH := lib
44

55
# set below to 1 for no effect, 1 for debugging messages
66
DEBUG := MyMODULE_DEBUG=0
77

88
# set below to 0 for no effect, 1 to die on first failure
9-
EARLYFAIL := PERL6_TEST_DIE_ON_FAIL=0
9+
EARLYFAIL := RAKU_TEST_DIE_ON_FAIL=0
1010

1111

1212
.PHONY: test bad good
@@ -20,15 +20,15 @@ GOODTESTS := good-tests/*.t
2020
# the original test suite (i.e., 'make test')
2121
test:
2222
for f in $(TESTS) ; do \
23-
$(DEBUG) $(EARLYFAIL) PERL6LIB=$(LIBPATH) prove -v --exec=$(PERL6) $$f ; \
23+
$(DEBUG) $(EARLYFAIL) RAKULIB=$(LIBPATH) prove -v --exec=$(RAKU) $$f ; \
2424
done
2525

2626
bad:
2727
for f in $(BADTESTS) ; do \
28-
$(DEBUG) $(EARLYFAIL) PERL6LIB=$(LIBPATH) prove -v --exec=$(PERL6) $$f ; \
28+
$(DEBUG) $(EARLYFAIL) RAKULIB=$(LIBPATH) prove -v --exec=$(RAKU) $$f ; \
2929
done
3030

3131
good:
3232
for f in $(GOODTESTS) ; do \
33-
$(DEBUG) $(TA) $(EARLYFAIL) PERL6LIB=$(LIBPATH) prove -v --exec=$(PERL6) $$f ; \
33+
$(DEBUG) $(TA) $(EARLYFAIL) RAKULIB=$(LIBPATH) prove -v --exec=$(RAKU) $$f ; \
3434
done

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.com/tbrowder/Net-IP-Perl6.svg?branch=master)](https://travis-ci.com/tbrowder/Net-IP-Perl6)
1+
[![Build Status](https://travis-ci.com/tbrowder/Net-IP.svg?branch=master)](https://travis-ci.com/tbrowder/Net-IP)
22

33
# Net::IP (API version 2)
44

@@ -43,6 +43,6 @@ COPYRIGHT & LICENSE
4343
Copyright (c) 2018-2020 Tom Browder, all rights reserved.
4444

4545
This program is free software; you can redistribute it or modify
46-
it under the same terms as Perl 6 itself.
46+
it under the same terms as Raku itself.
4747

4848
See that license [here](./LICENSE).

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ install:
2121
build: off
2222

2323
test_script:
24-
- set AUTHOR_TESTING=1 && prove -ve "perl6 -I."
24+
- set AUTHOR_TESTING=1 && prove -ve "raku -I."
2525
- zef install .
2626

2727
shallow_clone: true

lib/Net/IP.rakumod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ be provided.
2727
=end pod
2828

2929
# export a debug var for users
30-
our $DEBUG = True; # False;
30+
our $DEBUG = False;
3131
BEGIN {
3232
if %*ENV<MyMODULE_DEBUG> {
3333
$DEBUG = True;

0 commit comments

Comments
 (0)