From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B87E6139694 for ; Tue, 21 Feb 2017 00:51:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13A0421C06A; Tue, 21 Feb 2017 00:32:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E510C21C06A for ; Tue, 21 Feb 2017 00:32:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F02F341130 for ; Tue, 21 Feb 2017 00:32:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B97634EF3 for ; Tue, 21 Feb 2017 00:32:11 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1487637112.907b7af4ef812efd778bb4971955d25a4202d2a3.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:genpatches-misc commit in: web/ X-VCS-Repository: proj/linux-patches X-VCS-Files: web/makesite.pl X-VCS-Directories: web/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 907b7af4ef812efd778bb4971955d25a4202d2a3 X-VCS-Branch: genpatches-misc Date: Tue, 21 Feb 2017 00:32:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 562e7398-6fa3-4330-b16f-fedb373b5c8d X-Archives-Hash: 8069ea59b7e68a9b9fab10d3720026bd commit: 907b7af4ef812efd778bb4971955d25a4202d2a3 Author: Mike Pagano gentoo org> AuthorDate: Tue Feb 21 00:31:52 2017 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Feb 21 00:31:52 2017 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=907b7af4 Fix releases pages generation web/makesite.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/makesite.pl b/web/makesite.pl index d389f28..bc2535d 100755 --- a/web/makesite.pl +++ b/web/makesite.pl @@ -263,7 +263,8 @@ sub make_releases_index { opendir(DIR, $webscript_path.'/generated'); @infopages = grep { /-info\.htm$/ } readdir DIR; foreach $info (@infopages) { - $info =~ m/^(\d\.\d\.\d+)-\d+-info\.htm$/; + #$info =~ m/^(\d\.\d\.\d+)-\d+-info\.htm$/; + $info =~ m/^(\d\.\d+)-\d+-info\.htm$/; $kernels{$1} = 1; } @@ -277,6 +278,7 @@ sub make_releases_index { print INDEX '

genpatches Releases

'; foreach $kernel (sort keys %kernels) { + print("kernel: $kernel\n"); if ($kernel == "") { next; }