Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/elections:master commit in: trustees-201707/, /
Date: Fri, 28 Jul 2017 10:53:22
Message-Id: 1501239179.6e97f3f53f026bd67829dbf0ba5bd6512cd7d924.jmbsvicetto@gentoo
1 commit: 6e97f3f53f026bd67829dbf0ba5bd6512cd7d924
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 28 10:52:59 2017 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 28 10:52:59 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/elections.git/commit/?id=6e97f3f5
7
8 Fix start date in the election details.
9
10 Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org>
11
12 trustees-201707/election-details | 2 +-
13 votify-print.patch | 19 +++++++++++++++++++
14 2 files changed, 20 insertions(+), 1 deletion(-)
15
16 diff --git a/trustees-201707/election-details b/trustees-201707/election-details
17 index c1b73cc..8c727c7 100644
18 --- a/trustees-201707/election-details
19 +++ b/trustees-201707/election-details
20 @@ -1,5 +1,5 @@
21 name: trustees-201707
22 -startDate: 2017-07-22 00:00:00 UTC
23 +startDate: 2017-07-27 00:00:00 UTC
24 endDate: 2017-08-16 00:00:01 UTC
25 officials: dilfridge, jmbsvicetto, neddyseagoon, ulm
26 voters: http://www.gentoo.org/proj/en/elections/trustees/2017/voters-trustees-201707.txt
27
28 diff --git a/votify-print.patch b/votify-print.patch
29 new file mode 100644
30 index 0000000..2055ba1
31 --- /dev/null
32 +++ b/votify-print.patch
33 @@ -0,0 +1,19 @@
34 +diff --git a/Votify.pm b/Votify.pm
35 +index 8e0fe1a..d8c7d22 100644
36 +--- a/Votify.pm
37 ++++ b/Votify.pm
38 +@@ -84,9 +84,14 @@ sub get_elections_list {
39 + substr($_, 0, 1) ne ".";
40 + } grep {
41 + my $valid_election_dir = validate_election_dir($_);
42 ++ print "$_ is a valid_election_dir\n" if defined $valid_election_dir;
43 + defined $valid_election_dir;
44 + } readdir D;
45 + closedir D;
46 ++ print "These are the contents of the elections array:\n";
47 ++ foreach (@elections) {
48 ++ print "$_\n";
49 ++ }
50 + return @elections;
51 + }
52 +