mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
Make Devel-PPPort regenerations reproducible
This commit is contained in:
parent
626273ad2e
commit
9ed20b484b
9 changed files with 243 additions and 0 deletions
|
|
@ -0,0 +1,27 @@
|
|||
From f39737ebd77b0a342e62524de30972bcb532ad87 Mon Sep 17 00:00:00 2001
|
||||
From: "Matthew Horsfall (alh)" <wolfsage@gmail.com>
|
||||
Date: Fri, 18 Mar 2016 09:34:36 -0400
|
||||
Subject: [PATCH] Sort files returned from all_files_in_dir for consistent
|
||||
builds.
|
||||
|
||||
This addresses #28 / https://bugs.debian.org/801523
|
||||
---
|
||||
parts/ppptools.pl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git perl-5.12.5/cpan/Devel-PPPort/parts/ppptools.pl perl-5.12.5/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
index 6ea7516..62e5339 100644
|
||||
--- perl-5.12.5/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
+++ perl-5.12.5/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
@@ -28,7 +28,7 @@ sub all_files_in_dir
|
||||
my @files = grep { !-d && !/^\./ } readdir DIR; # no dirs or hidden files
|
||||
closedir DIR;
|
||||
|
||||
- return map { cat_file($dir, $_) } @files;
|
||||
+ return map { cat_file($dir, $_) } sort @files;
|
||||
}
|
||||
|
||||
sub parse_todo
|
||||
--
|
||||
2.49.1
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
From f39737ebd77b0a342e62524de30972bcb532ad87 Mon Sep 17 00:00:00 2001
|
||||
From: "Matthew Horsfall (alh)" <wolfsage@gmail.com>
|
||||
Date: Fri, 18 Mar 2016 09:34:36 -0400
|
||||
Subject: [PATCH] Sort files returned from all_files_in_dir for consistent
|
||||
builds.
|
||||
|
||||
This addresses #28 / https://bugs.debian.org/801523
|
||||
---
|
||||
parts/ppptools.pl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git perl-5.15.7/cpan/Devel-PPPort/parts/ppptools.pl perl-5.15.7/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
index 6ea7516..62e5339 100644
|
||||
--- perl-5.15.7/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
+++ perl-5.15.7/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
@@ -28,7 +28,7 @@ sub all_files_in_dir
|
||||
my @files = grep { !-d && !/^\./ } readdir DIR; # no dirs or hidden files
|
||||
closedir DIR;
|
||||
|
||||
- return map { cat_file($dir, $_) } @files;
|
||||
+ return map { cat_file($dir, $_) } sort @files;
|
||||
}
|
||||
|
||||
sub parse_todo
|
||||
--
|
||||
2.49.1
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
From f39737ebd77b0a342e62524de30972bcb532ad87 Mon Sep 17 00:00:00 2001
|
||||
From: "Matthew Horsfall (alh)" <wolfsage@gmail.com>
|
||||
Date: Fri, 18 Mar 2016 09:34:36 -0400
|
||||
Subject: [PATCH] Sort files returned from all_files_in_dir for consistent
|
||||
builds.
|
||||
|
||||
This addresses #28 / https://bugs.debian.org/801523
|
||||
---
|
||||
parts/ppptools.pl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git perl-5.16.3/cpan/Devel-PPPort/parts/ppptools.pl perl-5.16.3/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
index 6ea7516..62e5339 100644
|
||||
--- perl-5.16.3/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
+++ perl-5.16.3/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
@@ -28,7 +28,7 @@ sub all_files_in_dir
|
||||
my @files = grep { !-d && !/^\./ } readdir DIR; # no dirs or hidden files
|
||||
closedir DIR;
|
||||
|
||||
- return map { cat_file($dir, $_) } @files;
|
||||
+ return map { cat_file($dir, $_) } sort @files;
|
||||
}
|
||||
|
||||
sub parse_todo
|
||||
--
|
||||
2.49.1
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
From f39737ebd77b0a342e62524de30972bcb532ad87 Mon Sep 17 00:00:00 2001
|
||||
From: "Matthew Horsfall (alh)" <wolfsage@gmail.com>
|
||||
Date: Fri, 18 Mar 2016 09:34:36 -0400
|
||||
Subject: [PATCH] Sort files returned from all_files_in_dir for consistent
|
||||
builds.
|
||||
|
||||
This addresses #28 / https://bugs.debian.org/801523
|
||||
---
|
||||
parts/ppptools.pl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git perl-5.17.2/cpan/Devel-PPPort/parts/ppptools.pl perl-5.17.2/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
index 6ea7516..62e5339 100644
|
||||
--- perl-5.17.2/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
+++ perl-5.17.2/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
@@ -28,7 +28,7 @@ sub all_files_in_dir
|
||||
my @files = grep { !-d && !/^\./ } readdir DIR; # no dirs or hidden files
|
||||
closedir DIR;
|
||||
|
||||
- return map { cat_file($dir, $_) } @files;
|
||||
+ return map { cat_file($dir, $_) } sort @files;
|
||||
}
|
||||
|
||||
sub parse_todo
|
||||
--
|
||||
2.49.1
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
From f39737ebd77b0a342e62524de30972bcb532ad87 Mon Sep 17 00:00:00 2001
|
||||
From: "Matthew Horsfall (alh)" <wolfsage@gmail.com>
|
||||
Date: Fri, 18 Mar 2016 09:34:36 -0400
|
||||
Subject: [PATCH] Sort files returned from all_files_in_dir for consistent
|
||||
builds.
|
||||
|
||||
This addresses #28 / https://bugs.debian.org/801523
|
||||
---
|
||||
parts/ppptools.pl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git perl-5.17.4/cpan/Devel-PPPort/parts/ppptools.pl perl-5.17.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
index 6ea7516..62e5339 100644
|
||||
--- perl-5.17.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
+++ perl-5.17.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
@@ -28,7 +28,7 @@ sub all_files_in_dir
|
||||
my @files = grep { !-d && !/^\./ } readdir DIR; # no dirs or hidden files
|
||||
closedir DIR;
|
||||
|
||||
- return map { cat_file($dir, $_) } @files;
|
||||
+ return map { cat_file($dir, $_) } sort @files;
|
||||
}
|
||||
|
||||
sub parse_todo
|
||||
--
|
||||
2.49.1
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
From f39737ebd77b0a342e62524de30972bcb532ad87 Mon Sep 17 00:00:00 2001
|
||||
From: "Matthew Horsfall (alh)" <wolfsage@gmail.com>
|
||||
Date: Fri, 18 Mar 2016 09:34:36 -0400
|
||||
Subject: [PATCH] Sort files returned from all_files_in_dir for consistent
|
||||
builds.
|
||||
|
||||
This addresses #28 / https://bugs.debian.org/801523
|
||||
---
|
||||
parts/ppptools.pl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git perl-5.18.4/cpan/Devel-PPPort/parts/ppptools.pl perl-5.18.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
index 6ea7516..62e5339 100644
|
||||
--- perl-5.18.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
+++ perl-5.18.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
@@ -28,7 +28,7 @@ sub all_files_in_dir
|
||||
my @files = grep { !-d && !/^\./ } readdir DIR; # no dirs or hidden files
|
||||
closedir DIR;
|
||||
|
||||
- return map { cat_file($dir, $_) } @files;
|
||||
+ return map { cat_file($dir, $_) } sort @files;
|
||||
}
|
||||
|
||||
sub parse_todo
|
||||
--
|
||||
2.49.1
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
From f39737ebd77b0a342e62524de30972bcb532ad87 Mon Sep 17 00:00:00 2001
|
||||
From: "Matthew Horsfall (alh)" <wolfsage@gmail.com>
|
||||
Date: Fri, 18 Mar 2016 09:34:36 -0400
|
||||
Subject: [PATCH] Sort files returned from all_files_in_dir for consistent
|
||||
builds.
|
||||
|
||||
This addresses #28 / https://bugs.debian.org/801523
|
||||
---
|
||||
parts/ppptools.pl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git perl-5.22.4/cpan/Devel-PPPort/parts/ppptools.pl perl-5.22.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
index 6ea7516..62e5339 100644
|
||||
--- perl-5.22.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
+++ perl-5.22.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
@@ -28,7 +28,7 @@ sub all_files_in_dir
|
||||
my @files = grep { !-d && !/^\./ } readdir DIR; # no dirs or hidden files
|
||||
closedir DIR;
|
||||
|
||||
- return map { cat_file($dir, $_) } @files;
|
||||
+ return map { cat_file($dir, $_) } sort @files;
|
||||
}
|
||||
|
||||
sub parse_todo
|
||||
--
|
||||
2.49.1
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
From f39737ebd77b0a342e62524de30972bcb532ad87 Mon Sep 17 00:00:00 2001
|
||||
From: "Matthew Horsfall (alh)" <wolfsage@gmail.com>
|
||||
Date: Fri, 18 Mar 2016 09:34:36 -0400
|
||||
Subject: [PATCH] Sort files returned from all_files_in_dir for consistent
|
||||
builds.
|
||||
|
||||
This addresses #28 / https://bugs.debian.org/801523
|
||||
---
|
||||
parts/ppptools.pl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git perl-5.24.4/cpan/Devel-PPPort/parts/ppptools.pl perl-5.24.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
index 6ea7516..62e5339 100644
|
||||
--- perl-5.24.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
+++ perl-5.24.4/cpan/Devel-PPPort/parts/ppptools.pl
|
||||
@@ -28,7 +28,7 @@ sub all_files_in_dir
|
||||
my @files = grep { !-d && !/^\./ } readdir DIR; # no dirs or hidden files
|
||||
closedir DIR;
|
||||
|
||||
- return map { cat_file($dir, $_) } @files;
|
||||
+ return map { cat_file($dir, $_) } sort @files;
|
||||
}
|
||||
|
||||
sub parse_todo
|
||||
--
|
||||
2.49.1
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
From f39737ebd77b0a342e62524de30972bcb532ad87 Mon Sep 17 00:00:00 2001
|
||||
From: "Matthew Horsfall (alh)" <wolfsage@gmail.com>
|
||||
Date: Fri, 18 Mar 2016 09:34:36 -0400
|
||||
Subject: [PATCH] Sort files returned from all_files_in_dir for consistent
|
||||
builds.
|
||||
|
||||
This addresses #28 / https://bugs.debian.org/801523
|
||||
---
|
||||
parts/ppptools.pl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git perl-5.8.9/ext/Devel/PPPort/parts/ppptools.pl perl-5.8.9/ext/Devel/PPPort/parts/ppptools.pl
|
||||
index 6ea7516..62e5339 100644
|
||||
--- perl-5.8.9/ext/Devel/PPPort/parts/ppptools.pl
|
||||
+++ perl-5.8.9/ext/Devel/PPPort/parts/ppptools.pl
|
||||
@@ -28,7 +28,7 @@ sub all_files_in_dir
|
||||
my @files = grep { !-d && !/^\./ } readdir DIR; # no dirs or hidden files
|
||||
closedir DIR;
|
||||
|
||||
- return map { cat_file($dir, $_) } @files;
|
||||
+ return map { cat_file($dir, $_) } sort @files;
|
||||
}
|
||||
|
||||
sub parse_todo
|
||||
--
|
||||
2.49.1
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue