diff options
| author | Brian Dolbec <dolsen@gentoo.org> | 2012-12-22 17:52:45 -0800 |
|---|---|---|
| committer | Brian Dolbec <dolsen@gentoo.org> | 2012-12-22 17:52:45 -0800 |
| commit | 8224129f547ba5742e18eb8e44a84461af3b795c (patch) | |
| tree | 3e1d63d53677992eedad1f1da2c1a1e1da1754e1 | |
| parent | 9557946ecdb28ebebc38f664dd770a690e50d64a (diff) | |
| download | gentoolkit-8224129f547ba5742e18eb8e44a84461af3b795c.tar.gz | |
update 'svn' versions to 'git', not man pages with already set versions.
| -rwxr-xr-x | bin/eclean | 2 | ||||
| -rwxr-xr-x | bin/euse | 2 | ||||
| -rwxr-xr-x | bin/glsa-check | 2 | ||||
| -rwxr-xr-x | bin/revdep-rebuild.sh | 2 | ||||
| -rw-r--r-- | man/eshowkw.1 | 2 | ||||
| -rw-r--r-- | man/revdep-rebuild.1 | 2 | ||||
| -rw-r--r-- | pym/gentoolkit/eclean/cli.py | 2 | ||||
| -rw-r--r-- | pym/gentoolkit/enalyze/__init__.py | 2 | ||||
| -rw-r--r-- | pym/gentoolkit/equery/__init__.py | 2 | ||||
| -rw-r--r-- | pym/gentoolkit/eshowkw/__init__.py | 2 | ||||
| -rw-r--r-- | pym/gentoolkit/revdep_rebuild/__init__.py | 2 |
11 files changed, 11 insertions, 11 deletions
@@ -12,7 +12,7 @@ __author__ = "Thomas de Grenier de Latour (tgl), " + \ "modular re-write by: Brian Dolbec (dol-sen)" __email__ = "degrenier@easyconnect.fr, " + \ "brian.dolbec@gmail.com" -__version__ = "svn" +__version__ = "git" __productname__ = "eclean" __description__ = "A cleaning tool for Gentoo distfiles and binaries." @@ -10,7 +10,7 @@ set -f # Licensed under the GPL v2 PROGRAM_NAME=euse -VERSION="svn" +VERSION="git" EPREFIX=${EPREFIX:-$(portageq envvar EPREFIX)} ETC="${EPREFIX}/etc" diff --git a/bin/glsa-check b/bin/glsa-check index 1968607..46088d7 100755 --- a/bin/glsa-check +++ b/bin/glsa-check @@ -15,7 +15,7 @@ from getopt import getopt, GetoptError __program__ = "glsa-check" __author__ = "Marius Mauch <genone@gentoo.org>" -__version__ = "svn" +__version__ = "git" optionmap = [ ["-l", "--list", "list the GLSAs"], diff --git a/bin/revdep-rebuild.sh b/bin/revdep-rebuild.sh index 1d27d63..75c5767 100755 --- a/bin/revdep-rebuild.sh +++ b/bin/revdep-rebuild.sh @@ -18,7 +18,7 @@ unset GREP_OPTIONS # Readonly variables: declare -r APP_NAME="revdep-rebuild" # # The name of this application -declare -r VERSION="vcs" +declare -r VERSION="git" declare -r OIFS="$IFS" # Save the IFS declare -r ENV_FILE=0_env.rr # Contains environment variables declare -r FILES_FILE=1_files.rr # Contains a list of files to search diff --git a/man/eshowkw.1 b/man/eshowkw.1 index 62ccb9a..ed6ccca 100644 --- a/man/eshowkw.1 +++ b/man/eshowkw.1 @@ -1,4 +1,4 @@ -.TH "ESHOWKW" "1" "" "Tomáš Chvátal" "" +.TH "ESHOWKW" "1" "git" "Tomáš Chvátal" "" .SH "NAME" .LP eshowkw \- Gentoo: Tool to package keywords diff --git a/man/revdep-rebuild.1 b/man/revdep-rebuild.1 index 581dd66..98aa560 100644 --- a/man/revdep-rebuild.1 +++ b/man/revdep-rebuild.1 @@ -1,4 +1,4 @@ -.TH "REVDEP-REBUILD" "1" "" "gentoolkit" +.TH "REVDEP-REBUILD" "1" "git" "gentoolkit" .SH "NAME" revdep\-rebuild \- Gentoo: Reverse Dependency Rebuilder .SH "SYNOPSIS" diff --git a/pym/gentoolkit/eclean/cli.py b/pym/gentoolkit/eclean/cli.py index a56f1ab..1682fdb 100644 --- a/pym/gentoolkit/eclean/cli.py +++ b/pym/gentoolkit/eclean/cli.py @@ -11,7 +11,7 @@ __author__ = "Thomas de Grenier de Latour (tgl), " + \ "modular re-write by: Brian Dolbec (dol-sen)" __email__ = "degrenier@easyconnect.fr, " + \ "brian.dolbec@gmail.com" -__version__ = "svn" +__version__ = "git" __productname__ = "eclean" __description__ = "A cleaning tool for Gentoo distfiles and binaries." diff --git a/pym/gentoolkit/enalyze/__init__.py b/pym/gentoolkit/enalyze/__init__.py index 3e07d77..0b24e7d 100644 --- a/pym/gentoolkit/enalyze/__init__.py +++ b/pym/gentoolkit/enalyze/__init__.py @@ -15,7 +15,7 @@ __docformat__ = 'epytext' # version is dynamically set by distutils sdist -__version__ = "svn" +__version__ = "git" __productname__ = "enalyze" __authors__ = ( 'Brian Dolbec, <brian.dolbec@gmail.com>' diff --git a/pym/gentoolkit/equery/__init__.py b/pym/gentoolkit/equery/__init__.py index 4b108e2..c44de90 100644 --- a/pym/gentoolkit/equery/__init__.py +++ b/pym/gentoolkit/equery/__init__.py @@ -15,7 +15,7 @@ __all__ = ( ) __docformat__ = 'epytext' # version is dynamically set by distutils sdist -__version__ = "svn" +__version__ = "git" # ======= # Imports diff --git a/pym/gentoolkit/eshowkw/__init__.py b/pym/gentoolkit/eshowkw/__init__.py index 86c59b7..a20dac9 100644 --- a/pym/gentoolkit/eshowkw/__init__.py +++ b/pym/gentoolkit/eshowkw/__init__.py @@ -3,7 +3,7 @@ # Distributed under the terms of the GNU General Public License v2 __package__ = 'gentoolkit.eshowkw' -__version__ = 'svn' +__version__ = "git" __author__ = "Tomáš Chvátal <scarabeus@gentoo.org>" import sys, os, fnmatch diff --git a/pym/gentoolkit/revdep_rebuild/__init__.py b/pym/gentoolkit/revdep_rebuild/__init__.py index ff479d7..7fba30b 100644 --- a/pym/gentoolkit/revdep_rebuild/__init__.py +++ b/pym/gentoolkit/revdep_rebuild/__init__.py @@ -3,4 +3,4 @@ # Copyright 2003-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -__version__ = "svn" +__version__ = "git" |
