From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5AAD6138720 for ; Mon, 28 Jan 2013 23:54:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81B3E21C0A7; Mon, 28 Jan 2013 23:54:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E18C921C0BE for ; Mon, 28 Jan 2013 23:54:10 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC6A933DBB0 for ; Mon, 28 Jan 2013 23:54:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B5105E4077 for ; Mon, 28 Jan 2013 23:54:06 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1359417027.62ffeca1024a39a7bf0d5f83af1cb73eadaa7a90.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: /, roverlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/__init__.py setup.py X-VCS-Directories: / roverlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 62ffeca1024a39a7bf0d5f83af1cb73eadaa7a90 X-VCS-Branch: master Date: Mon, 28 Jan 2013 23:54:06 +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: f6c81c8c-dea4-43ad-972f-fa9d17ce57e0 X-Archives-Hash: 25f131255b71a7a237685c1fad49e5af commit: 62ffeca1024a39a7bf0d5f83af1cb73eadaa7a90 Author: André Erdmann mailerd de> AuthorDate: Mon Jan 28 23:50:27 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Mon Jan 28 23:50:27 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=62ffeca1 increase version number to 0.2.3 Notable changes: * use portage libs directly for Manifest file creation * SymlinkDistroot/SymlinkDistdir for safe per-package DISTDIRs during Manifest file creation (currently only used by the portage implementation) --- roverlay/__init__.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/roverlay/__init__.py b/roverlay/__init__.py index 0f1a850..5b0f63b 100644 --- a/roverlay/__init__.py +++ b/roverlay/__init__.py @@ -13,8 +13,8 @@ load_config_file) and some information vars (__version__, name, ...). __all__ = [ 'setup_initial_logger', 'load_config_file', ] name = "R_overlay" -version = ( 0, 2, 2 ) -#__version__ = "0.2.2" +version = ( 0, 2, 3 ) +#__version__ = "0.2.3" __version__ = '.'.join ( str ( i ) for i in version ) description_str = "R overlay creation (roverlay) " + __version__ diff --git a/setup.py b/setup.py index 77659a9..0e55746 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils import core -VERSION = '0.2' +VERSION = '0.2.3' core.setup ( name = 'R_Overlay',