From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PqI9F-0008IV-Bg for garchives@archives.gentoo.org; Fri, 18 Feb 2011 04:40:53 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EA181C018; Fri, 18 Feb 2011 04:40:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6B7DF1C018 for ; Fri, 18 Feb 2011 04:40:44 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E575D1B4020 for ; Fri, 18 Feb 2011 04:40:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E52CA80073 for ; Fri, 18 Feb 2011 04:40:42 +0000 (UTC) From: "Nirbheek Chauhan" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nirbheek Chauhan" Message-ID: Subject: [gentoo-commits] proj/gnome:master commit in: scripts/ X-VCS-Repository: proj/gnome X-VCS-Files: scripts/bump-to-latest.py scripts/find-keywordreq.py scripts/gen_archlist.py scripts/gir-rebuilder.py X-VCS-Directories: scripts/ X-VCS-Committer: nirbheek X-VCS-Committer-Name: Nirbheek Chauhan X-VCS-Revision: e8f8248dc43016a4ba518ad8bca716861f822065 Date: Fri, 18 Feb 2011 04:40:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 8511f7458793730d68542f3eff764415 commit: e8f8248dc43016a4ba518ad8bca716861f822065 Author: Nirbheek Chauhan gentoo org> AuthorDate: Fri Feb 18 03:48:04 2011 +0000 Commit: Nirbheek Chauhan gentoo org> CommitDate: Fri Feb 18 03:48:28 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3De8f8248d scripts: fix shebang to use python2 --- scripts/bump-to-latest.py | 2 +- scripts/find-keywordreq.py | 2 +- scripts/gen_archlist.py | 2 +- scripts/gir-rebuilder.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/bump-to-latest.py b/scripts/bump-to-latest.py index 4eab4fd..acd4587 100755 --- a/scripts/bump-to-latest.py +++ b/scripts/bump-to-latest.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # vim: set sw=3D4 sts=3D4 et : # Author(s): Nirbheek Chauhan # diff --git a/scripts/find-keywordreq.py b/scripts/find-keywordreq.py index 7f319f6..6b991a4 100644 --- a/scripts/find-keywordreq.py +++ b/scripts/find-keywordreq.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python2 =20 """ Helper module to print a list of needed keywords provided a list of = cpv. =20 diff --git a/scripts/gen_archlist.py b/scripts/gen_archlist.py index 2b68785..5d9dee5 100755 --- a/scripts/gen_archlist.py +++ b/scripts/gen_archlist.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # vim: set sw=3D4 sts=3D4 et : # Author(s): Nirbheek Chauhan # diff --git a/scripts/gir-rebuilder.py b/scripts/gir-rebuilder.py index 7d4efd5..6cecd59 100755 --- a/scripts/gir-rebuilder.py +++ b/scripts/gir-rebuilder.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # vim: set sts=3D4 sw=3D4 et tw=3D90 : #=20 # Author(s): Nirbheek Chauhan