From: Alexandre Viau <aviau@debian.org>
Date: Tue, 29 Dec 2020 11:46:04 -0500
Subject: remove import checks

diff --git a/all_test.go b/all_test.go
index beb55c0..7d70281 100644
--- a/all_test.go
+++ b/all_test.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"bytes"
diff --git a/binarylog.go b/binarylog.go
index 5a35c57..4eb7da3 100644
--- a/binarylog.go
+++ b/binarylog.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"math/big"
diff --git a/binarylog_test.go b/binarylog_test.go
index 204bab3..cdb1e87 100644
--- a/binarylog_test.go
+++ b/binarylog_test.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"fmt"
diff --git a/bits.go b/bits.go
index ab51854..fee4c03 100644
--- a/bits.go
+++ b/bits.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"math/big"
diff --git a/envelope.go b/envelope.go
index 71980db..ff8e601 100644
--- a/envelope.go
+++ b/envelope.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"math"
diff --git a/int.go b/int.go
index 7c35787..9beaffc 100644
--- a/int.go
+++ b/int.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"fmt"
diff --git a/int_test.go b/int_test.go
index 7c96976..bffad4e 100644
--- a/int_test.go
+++ b/int_test.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"math/big"
diff --git a/mathutil.go b/mathutil.go
index a73c8a6..e21e25d 100644
--- a/mathutil.go
+++ b/mathutil.go
@@ -75,7 +75,7 @@
 //
 //	func Uint64ToBigInt(n uint64) *big.Int
 //	func Uint64FromBigInt(n *big.Int) (uint64, bool)
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"math"
diff --git a/mersenne/mersenne.go b/mersenne/mersenne.go
index aad001e..24c5f90 100644
--- a/mersenne/mersenne.go
+++ b/mersenne/mersenne.go
@@ -19,7 +19,7 @@ Referenced from above:
 
 	[1] http://en.wikipedia.org/wiki/Mersenne_number
 */
-package mersenne // import "modernc.org/mathutil/mersenne"
+package mersenne
 
 import (
 	"math"
diff --git a/permute.go b/permute.go
index e2ff3d6..82ad791 100644
--- a/permute.go
+++ b/permute.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"sort"
diff --git a/poly.go b/poly.go
index c15e696..52b58ff 100644
--- a/poly.go
+++ b/poly.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"fmt"
diff --git a/primes.go b/primes.go
index ec1e5f5..5e19e2d 100644
--- a/primes.go
+++ b/primes.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"math"
diff --git a/rat.go b/rat.go
index a4829ec..2dc3951 100644
--- a/rat.go
+++ b/rat.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 // QCmpUint32 compares a/b and c/d and returns:
 //
diff --git a/rnd.go b/rnd.go
index 08454cd..157fda5 100644
--- a/rnd.go
+++ b/rnd.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 import (
 	"fmt"
diff --git a/tables.go b/tables.go
index 97ce1f9..f32952c 100644
--- a/tables.go
+++ b/tables.go
@@ -4,7 +4,7 @@
 
 // "Static" data
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 var (
 	// Set bits count in a byte
diff --git a/test_deps.go b/test_deps.go
index bbd5f64..40054dc 100644
--- a/test_deps.go
+++ b/test_deps.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package mathutil // import "modernc.org/mathutil"
+package mathutil
 
 // Pull test dependencies too.
 // Enables easy 'go test X' after 'go get X'
