forked from NetBSD/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'netbsd/trunk' into joyent/release/trunk
- Loading branch information
Showing
20 changed files
with
1,811 additions
and
1,863 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Moose is an extension of the Perl 5 object system. | ||
The main goal of Moose is to make Perl 5 Object Oriented programming | ||
easier, more consistent and less tedious. With Moose you can to | ||
think more about what you want to do and less about the mechanics | ||
of OOP. | ||
Additionally, Moose is built on top of Class::MOP, which is a | ||
metaclass system for Perl 5. This means that Moose not only makes | ||
building normal Perl 5 objects better, but it provides the power | ||
of metaclass programming as well. | ||
Moose is an extension of the Perl 5 object system. The main goal of | ||
Moose is to make Perl 5 Object Oriented programming easier, more | ||
consistent and less tedious. With Moose you can think more about what | ||
you want to do and less about the mechanics of OOP. | ||
|
||
Additionally, Moose is built on top of Class::MOP, which is a metaclass | ||
system for Perl 5. This means that Moose not only makes building normal | ||
Perl 5 objects better, but it provides the power of metaclass | ||
programming as well. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
$NetBSD: distinfo,v 1.36 2022/05/27 16:59:50 tnn Exp $ | ||
$NetBSD: distinfo,v 1.37 2022/07/30 16:13:47 he Exp $ | ||
|
||
BLAKE2s (scipy-1.8.1.tar.gz) = 364d6645a49d897429094a406e6073e124c1ebca01f4be63ebe401b660d8df38 | ||
SHA512 (scipy-1.8.1.tar.gz) = f6fc71c209991fe82baa4b10d8ade0deb1057f6f5942a91dfb7ae45f3eb78a4535efa2861badf5e2d37239fa99dbd99de760aa7e4854b95991ade0263004e7ea | ||
Size (scipy-1.8.1.tar.gz) = 38196215 bytes | ||
SHA1 (patch-scipy_spatial_ckdtree_src_ckdtree__decl.h) = ad0e4a79af2a3b0667e61f205f5b8453ea440498 | ||
SHA1 (patch-scipy_special___logit.h) = c729c2b73de00cad4c9ad834a79b80dea7b05af3 | ||
SHA1 (patch-scipy_special___round.h) = bc05a935e6423ce8395450ad3b30e88826939422 | ||
SHA1 (patch-scipy_stats__unuran_setup.py) = 9839f589fdfe7f1f74e84f32526a2ce96a28d04a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
$NetBSD: patch-scipy_stats__unuran_setup.py,v 1.1 2022/07/30 16:13:48 he Exp $ | ||
|
||
On NetBSD/powerpc, you can't build with _ISOC99_SOURCE defined, | ||
the include of <ieeefp.h> deep down in the python headers will fail | ||
with undefined types. | ||
|
||
--- ./scipy/stats/_unuran/setup.py.orig 2022-05-16 12:36:53.864307900 +0000 | ||
+++ ./scipy/stats/_unuran/setup.py | ||
@@ -95,7 +95,6 @@ def configuration(parent_package="", top | ||
("UNUR_ENABLE_INFO", "1"), | ||
("VERSION", '"%s"' % UNURAN_VERSION), | ||
("HAVE_CONFIG_H", "1"), | ||
- ("_ISOC99_SOURCE", "1"), | ||
] | ||
|
||
UNURAN_DIRS = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.