public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog git-2.eclass
@ 2013-09-08 22:54 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2013-09-08 22:54 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/09/08 22:54:24

  Modified:             ChangeLog git-2.eclass
  Log:
  Inherit git-r3 unconditionally to avoid metadata variancy. The eclass is properly namespaced, does not touch variables in global scope and exports only src_unpack() that git-2 overrides anyway.

Revision  Changes    Path
1.953                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.953&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.953&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.952&r2=1.953

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.952
retrieving revision 1.953
diff -u -r1.952 -r1.953
--- ChangeLog	8 Sep 2013 14:56:29 -0000	1.952
+++ ChangeLog	8 Sep 2013 22:54:23 -0000	1.953
@@ -1,6 +1,11 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.952 2013/09/08 14:56:29 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.953 2013/09/08 22:54:23 mgorny Exp $
+
+  08 Sep 2013; Michał Górny <mgorny@gentoo.org> git-2.eclass:
+  Inherit git-r3 unconditionally to avoid metadata variancy. The eclass is
+  properly namespaced, does not touch variables in global scope and exports
+  only src_unpack() that git-2 overrides anyway.
 
   08 Sep 2013; Michał Górny <mgorny@gentoo.org> python-utils-r1.eclass:
   Fix PYTHON_SITEDIR for Jython.



1.32                 eclass/git-2.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?r1=1.31&r2=1.32

Index: git-2.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- git-2.eclass	5 Sep 2013 20:39:41 -0000	1.31
+++ git-2.eclass	8 Sep 2013 22:54:24 -0000	1.32
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.31 2013/09/05 20:39:41 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.32 2013/09/08 22:54:24 mgorny Exp $
 
 # @ECLASS: git-2.eclass
 # @MAINTAINER:
@@ -17,9 +17,8 @@
 # Use git-r3 backend instead of classic git-2 behavior. This is intended
 # for early testing of git-r3 and is to be set in make.conf.
 
-if [[ ${EGIT_USE_GIT_R3} ]]; then
-	inherit git-r3
-fi
+# (since we override src_unpack this doesn't hurt)
+inherit git-r3
 
 # This eclass support all EAPIs
 EXPORT_FUNCTIONS src_unpack





^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog git-2.eclass
@ 2014-11-20 15:25 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2014-11-20 15:25 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/11/20 15:25:52

  Modified:             ChangeLog git-2.eclass
  Log:
  Remove the experimental git-r3 testing support. It is not needed anymore, git-r3 has been proven to work and we can happily use it instead.

Revision  Changes    Path
1.1433               eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1433&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1433&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1432&r2=1.1433

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1432
retrieving revision 1.1433
diff -u -r1.1432 -r1.1433
--- ChangeLog	20 Nov 2014 02:44:10 -0000	1.1432
+++ ChangeLog	20 Nov 2014 15:25:52 -0000	1.1433
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1432 2014/11/20 02:44:10 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1433 2014/11/20 15:25:52 mgorny Exp $
+
+  20 Nov 2014; Michał Górny <mgorny@gentoo.org> git-2.eclass:
+  Remove the experimental git-r3 testing support. It is not needed anymore,
+  git-r3 has been proven to work and we can happily use it instead.
 
   20 Nov 2014; Davide Pesavento <pesa@gentoo.org> qt5-build.eclass:
   Add RDEPEND on dev-qt/qtchooser.



1.34                 eclass/git-2.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?r1=1.33&r2=1.34

Index: git-2.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- git-2.eclass	8 Oct 2013 11:19:48 -0000	1.33
+++ git-2.eclass	20 Nov 2014 15:25:52 -0000	1.34
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.33 2013/10/08 11:19:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.34 2014/11/20 15:25:52 mgorny Exp $
 
 # @ECLASS: git-2.eclass
 # @MAINTAINER:
@@ -11,16 +11,6 @@
 # Eclass for easing maitenance of live ebuilds using git as remote repository.
 # Eclass support working with git submodules and branching.
 
-# @ECLASS-VARIABLE: EGIT_USE_GIT_R3
-# @DEFAULT_UNSET
-# @DESCRIPTION:
-# Use git-r3 backend instead of classic git-2 behavior. This is intended
-# for early testing of git-r3 and is to be set in make.conf.
-
-# (since we override src_unpack this doesn't hurt)
-_INHERITED_BY_GIT_2=1 \
-inherit git-r3
-
 # This eclass support all EAPIs
 EXPORT_FUNCTIONS src_unpack
 
@@ -582,66 +572,23 @@
 	unset EGIT_LOCAL_NONBARE
 }
 
-git-2_r3_wrapper() {
-	ewarn "Using git-r3 backend in git-2. Not everything is supported."
-	ewarn "Expect random failures and have fun testing."
-
-	if [[ ${EGIT_SOURCEDIR} ]]; then
-		EGIT_CHECKOUT_DIR=${EGIT_SOURCEDIR}
-		unset EGIT_SOURCEDIR
-	fi
-
-	if [[ ${EGIT_MASTER} ]]; then
-		: ${EGIT_BRANCH:=${EGIT_MASTER}}
-		unset EGIT_MASTER
-	fi
-
-	if [[ ${EGIT_HAS_SUBMODULES} ]]; then
-		unset EGIT_HAS_SUBMODULES
-	fi
-
-	if [[ ${EGIT_PROJECT} ]]; then
-		unset EGIT_PROJECT
-	fi
-
-	local boots unp
-	if [[ ${EGIT_NOUNPACK} ]]; then
-		unp=1
-		unset EGIT_NOUNPACK
-	fi
-
-	if [[ ${EGIT_BOOTSTRAP} ]]; then
-		boots=1
-		unset EGIT_BOOTSTRAP
-	fi
-
-	git-r3_src_unpack
-
-	[[ ${boots} ]] && EGIT_BOOTSTRAP=${boots} git-2_bootstrap
-	[[ ${unp} ]] && EGIT_NOUNPACK=1
-}
-
 # @FUNCTION: git-2_src_unpack
 # @DESCRIPTION:
 # Default git src_unpack function.
 git-2_src_unpack() {
 	debug-print-function ${FUNCNAME} "$@"
 
-	if [[ ${EGIT_USE_GIT_R3} ]]; then
-		git-2_r3_wrapper
-	else
-		git-2_init_variables
-		git-2_prepare_storedir
-		git-2_migrate_repository
-		git-2_fetch "$@"
-		git-2_gc
-		git-2_submodules
-		git-2_move_source
-		git-2_branch
-		git-2_bootstrap
-		git-2_cleanup
-		echo ">>> Unpacked to ${EGIT_SOURCEDIR}"
-	fi
+	git-2_init_variables
+	git-2_prepare_storedir
+	git-2_migrate_repository
+	git-2_fetch "$@"
+	git-2_gc
+	git-2_submodules
+	git-2_move_source
+	git-2_branch
+	git-2_bootstrap
+	git-2_cleanup
+	echo ">>> Unpacked to ${EGIT_SOURCEDIR}"
 
 	# Users can specify some SRC_URI and we should
 	# unpack the files too.





^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog git-2.eclass
@ 2013-09-05 20:39 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2013-09-05 20:39 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/09/05 20:39:41

  Modified:             ChangeLog git-2.eclass
  Log:
  Support using git-r3 backend in git-2.

Revision  Changes    Path
1.948                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.948&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.948&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.947&r2=1.948

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.947
retrieving revision 1.948
diff -u -r1.947 -r1.948
--- ChangeLog	5 Sep 2013 20:24:10 -0000	1.947
+++ ChangeLog	5 Sep 2013 20:39:41 -0000	1.948
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.947 2013/09/05 20:24:10 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.948 2013/09/05 20:39:41 mgorny Exp $
+
+  05 Sep 2013; Michał Górny <mgorny@gentoo.org> git-2.eclass:
+  Support using git-r3 backend in git-2.
 
   05 Sep 2013; Michał Górny <mgorny@gentoo.org> +git-r3.eclass:
   Introduce the new git eclass.



1.31                 eclass/git-2.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?r1=1.30&r2=1.31

Index: git-2.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- git-2.eclass	9 Jan 2013 17:26:55 -0000	1.30
+++ git-2.eclass	5 Sep 2013 20:39:41 -0000	1.31
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.30 2013/01/09 17:26:55 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.31 2013/09/05 20:39:41 mgorny Exp $
 
 # @ECLASS: git-2.eclass
 # @MAINTAINER:
@@ -11,6 +11,16 @@
 # Eclass for easing maitenance of live ebuilds using git as remote repository.
 # Eclass support working with git submodules and branching.
 
+# @ECLASS-VARIABLE: EGIT_USE_GIT_R3
+# @DEFAULT_UNSET
+# @DESCRIPTION:
+# Use git-r3 backend instead of classic git-2 behavior. This is intended
+# for early testing of git-r3 and is to be set in make.conf.
+
+if [[ ${EGIT_USE_GIT_R3} ]]; then
+	inherit git-r3
+fi
+
 # This eclass support all EAPIs
 EXPORT_FUNCTIONS src_unpack
 
@@ -572,23 +582,66 @@
 	unset EGIT_LOCAL_NONBARE
 }
 
+git-2_r3_wrapper() {
+	ewarn "Using git-r3 backend in git-2. Not everything is supported."
+	ewarn "Expect random failures and have fun testing."
+
+	if [[ ${EGIT_SOURCEDIR} ]]; then
+		EGIT_CHECKOUT_DIR=${EGIT_SOURCEDIR}
+		unset EGIT_SOURCEDIR
+	fi
+
+	if [[ ${EGIT_MASTER} ]]; then
+		: ${EGIT_BRANCH:=${EGIT_MASTER}}
+		unset EGIT_MASTER
+	fi
+
+	if [[ ${EGIT_HAS_SUBMODULES} ]]; then
+		unset EGIT_HAS_SUBMODULES
+	fi
+
+	if [[ ${EGIT_PROJECT} ]]; then
+		unset EGIT_PROJECT
+	fi
+
+	local boots unp
+	if [[ ${EGIT_NOUNPACK} ]]; then
+		unp=1
+		unset EGIT_NOUNPACK
+	fi
+
+	if [[ ${EGIT_BOOTSTRAP} ]]; then
+		boots=1
+		unset EGIT_BOOTSTRAP
+	fi
+
+	git-r3_src_unpack
+
+	[[ ${boots} ]] && EGIT_BOOTSTRAP=${boots} git-2_bootstrap
+	[[ ${unp} ]] && EGIT_NOUNPACK=1
+}
+
 # @FUNCTION: git-2_src_unpack
 # @DESCRIPTION:
 # Default git src_unpack function.
 git-2_src_unpack() {
 	debug-print-function ${FUNCNAME} "$@"
 
-	git-2_init_variables
-	git-2_prepare_storedir
-	git-2_migrate_repository
-	git-2_fetch "$@"
-	git-2_gc
-	git-2_submodules
-	git-2_move_source
-	git-2_branch
-	git-2_bootstrap
-	git-2_cleanup
-	echo ">>> Unpacked to ${EGIT_SOURCEDIR}"
+	if [[ ${EGIT_USE_GIT_R3} ]]; then
+		git-2_r3_wrapper
+	else
+		git-2_init_variables
+		git-2_prepare_storedir
+		git-2_migrate_repository
+		git-2_fetch "$@"
+		git-2_gc
+		git-2_submodules
+		git-2_move_source
+		git-2_branch
+		git-2_bootstrap
+		git-2_cleanup
+		echo ">>> Unpacked to ${EGIT_SOURCEDIR}"
+	fi
 
 	# Users can specify some SRC_URI and we should
 	# unpack the files too.





^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog git-2.eclass
@ 2013-01-09 17:26 Ian Stakenvicius (axs)
  0 siblings, 0 replies; 5+ messages in thread
From: Ian Stakenvicius (axs) @ 2013-01-09 17:26 UTC (permalink / raw
  To: gentoo-commits

axs         13/01/09 17:26:55

  Modified:             ChangeLog git-2.eclass
  Log:
  added documentation for an undocumented override variable

Revision  Changes    Path
1.605                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.605&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.605&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.604&r2=1.605

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.604
retrieving revision 1.605
diff -u -r1.604 -r1.605
--- ChangeLog	8 Jan 2013 20:18:38 -0000	1.604
+++ ChangeLog	9 Jan 2013 17:26:55 -0000	1.605
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.604 2013/01/08 20:18:38 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.605 2013/01/09 17:26:55 axs Exp $
+
+  09 Jan 2013; Ian Stakenvicius <axs@gentoo.org> git-2.eclass:
+  added documentation for an undocumented override variable
 
   08 Jan 2013; Michał Górny <mgorny@gentoo.org> python-single-r1.eclass:
   Fix the PYTHON_SINGLE_TARGET validity check.



1.30                 eclass/git-2.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?r1=1.29&r2=1.30

Index: git-2.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- git-2.eclass	3 Apr 2012 10:32:09 -0000	1.29
+++ git-2.eclass	9 Jan 2013 17:26:55 -0000	1.30
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.29 2012/04/03 10:32:09 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.30 2013/01/09 17:26:55 axs Exp $
 
 # @ECLASS: git-2.eclass
 # @MAINTAINER:
@@ -69,6 +69,9 @@
 # URI for the repository
 # e.g. http://foo, git://bar
 #
+# It can be overriden via env using packagename_LIVE_REPO
+# variable.
+#
 # Support multiple values:
 # EGIT_REPO_URI="git://a/b.git http://c/d.git"
 





^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog git-2.eclass
@ 2012-04-03 10:32 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2012-04-03 10:32 UTC (permalink / raw
  To: gentoo-commits

pacho       12/04/03 10:32:09

  Modified:             ChangeLog git-2.eclass
  Log:
  Reorder git-2.eclass maintainers to get bugs assigned to most active maintainer.

Revision  Changes    Path
1.199                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.199&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.199&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.198&r2=1.199

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- ChangeLog	2 Apr 2012 22:13:57 -0000	1.198
+++ ChangeLog	3 Apr 2012 10:32:09 -0000	1.199
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.198 2012/04/02 22:13:57 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.199 2012/04/03 10:32:09 pacho Exp $
+
+  03 Apr 2012; Pacho Ramos <pacho@gentoo.org> git-2.eclass:
+  Reorder git-2.eclass maintainers to get bugs assigned to most active
+  maintainer.
 
   02 Apr 2012; Pacho Ramos <pacho@gentoo.org> eutils.eclass:
   Use einfo instead of ewarn as discussed in



1.29                 eclass/git-2.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-2.eclass?r1=1.28&r2=1.29

Index: git-2.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- git-2.eclass	19 Jan 2012 16:53:39 -0000	1.28
+++ git-2.eclass	3 Apr 2012 10:32:09 -0000	1.29
@@ -1,11 +1,11 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.28 2012/01/19 16:53:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.29 2012/04/03 10:32:09 pacho Exp $
 
 # @ECLASS: git-2.eclass
 # @MAINTAINER:
-# Donnie Berkholz <dberkholz@gentoo.org>
 # Michał Górny <mgorny@gentoo.org>
+# Donnie Berkholz <dberkholz@gentoo.org>
 # @BLURB: Eclass for fetching and unpacking git repositories.
 # @DESCRIPTION:
 # Eclass for easing maitenance of live ebuilds using git as remote repository.






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-11-20 15:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-08 22:54 [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog git-2.eclass Michal Gorny (mgorny)
  -- strict thread matches above, loose matches on Subject: below --
2014-11-20 15:25 Michal Gorny (mgorny)
2013-09-05 20:39 Michal Gorny (mgorny)
2013-01-09 17:26 Ian Stakenvicius (axs)
2012-04-03 10:32 Pacho Ramos (pacho)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox