public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-perl/PortageXS/files: PortageXS-0.02.10-portage_path_fix.patch PortageXS-0.02.10-prefix.patch
@ 2012-12-15 20:16 Raul Porcel (armin76)
  0 siblings, 0 replies; 2+ messages in thread
From: Raul Porcel (armin76) @ 2012-12-15 20:16 UTC (permalink / raw
  To: gentoo-commits

armin76     12/12/15 20:16:36

  Added:                PortageXS-0.02.10-portage_path_fix.patch
                        PortageXS-0.02.10-prefix.patch
  Log:
  Add patch to fix bug #437414
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF6AD3240)

Revision  Changes    Path
1.1                  dev-perl/PortageXS/files/PortageXS-0.02.10-portage_path_fix.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-portage_path_fix.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-portage_path_fix.patch?rev=1.1&content-type=text/plain

Index: PortageXS-0.02.10-portage_path_fix.patch
===================================================================
diff -ur PortageXS-0.02.10.orig/lib/PortageXS/Core.pm PortageXS-0.02.10/lib/PortageXS/Core.pm
--- PortageXS-0.02.10.orig/lib/PortageXS/Core.pm	2012-12-15 19:01:20.267451741 +0100
+++ PortageXS-0.02.10/lib/PortageXS/Core.pm	2012-12-15 19:06:37.363938909 +0100
@@ -94,7 +94,7 @@
 	my $self		= shift;
 	my $param		= shift;
 	my @files		= ();
-	my @etcfiles		= qw(/etc/make.globals /etc/make.conf);
+	my @etcfiles		= qw(/usr/share/portage/config/make.globals /etc/portage/make.conf);
 	my @profilefiles	= ();
 	my $v			= '';
 	my $parent		= '';
@@ -166,7 +166,7 @@
 		return $self->{'PORTDIR'};
 	}
 	else {
-		$self->{'PORTDIR'}=$self->getParamFromFile($self->getFileContents('/etc/make.globals').$self->getFileContents('/etc/make.conf'),'PORTDIR','lastseen');
+		$self->{'PORTDIR'}=$self->getParamFromFile($self->getFileContents('/usr/share/portage/config/make.globals').$self->getFileContents('/etc/portage/make.conf'),'PORTDIR','lastseen');
 		return $self->{'PORTDIR'};
 	}
 }
@@ -183,7 +183,7 @@
 	my $self	= shift;
 	my $forcereload	= shift;
 	
-	return split(/ /,$self->getParamFromFile($self->getFileContents('/etc/make.globals').$self->getFileContents('/etc/make.conf'),'PORTDIR_OVERLAY','lastseen'));
+	return split(/ /,$self->getParamFromFile($self->getFileContents('/usr/share/portage/config/make.globals').$self->getFileContents('/etc/portage/make.conf'),'PORTDIR_OVERLAY','lastseen'));
 }
 
 # Description:
diff -ur PortageXS-0.02.10.orig/lib/PortageXS/examples/getParamFromFile.pl PortageXS-0.02.10/lib/PortageXS/examples/getParamFromFile.pl
--- PortageXS-0.02.10.orig/lib/PortageXS/examples/getParamFromFile.pl	2012-12-15 19:01:20.267451741 +0100
+++ PortageXS-0.02.10/lib/PortageXS/examples/getParamFromFile.pl	2012-12-15 19:07:19.041822742 +0100
@@ -8,4 +8,5 @@
 
 my $pxs=PortageXS->new();
 print "CFLAGS are set to: ";
-print join(' ',$pxs->getParamFromFile($pxs->getFileContents('/etc/make.globals').$pxs->getFileContents('/etc/make.conf'),'CFLAGS','lastseen'))."\n";
+print join(' 
+',$pxs->getParamFromFile($pxs->getFileContents('/usr/share/portage/config/make.globals').$pxs->getFileContents('/etc/portage/make.conf'),'CFLAGS','lastseen'))."\n";
diff -ur PortageXS-0.02.10.orig/lib/PortageXS.pm PortageXS-0.02.10/lib/PortageXS.pm
--- PortageXS-0.02.10.orig/lib/PortageXS.pm	2012-12-15 19:01:20.283451308 +0100
+++ PortageXS-0.02.10/lib/PortageXS.pm	2012-12-15 19:14:38.882079616 +0100
@@ -89,7 +89,7 @@
 	$self->{'COLORS'}{'BLUE'}		= color('bold blue');
 	$self->{'COLORS'}{'RESET'}		= color('reset');
 	
-	if (lc($self->getParamFromFile($self->getFileContents('/etc/make.conf'),'NOCOLOR','lastseen')) eq 'true') {
+	if (lc($self->getParamFromFile($self->getFileContents('/etc/portage/make.conf'),'NOCOLOR','lastseen')) eq 'true') {
 		$self->{'COLORS'}{'YELLOW'}		= '';
 		$self->{'COLORS'}{'GREEN'}		= '';
 		$self->{'COLORS'}{'LIGHTGREEN'}		= '';
diff -ur PortageXS-0.02.10.orig/t/01_Core.t PortageXS-0.02.10/t/01_Core.t
--- PortageXS-0.02.10.orig/t/01_Core.t	2012-12-15 19:01:20.266451768 +0100
+++ PortageXS-0.02.10/t/01_Core.t	2012-12-15 19:15:33.036638139 +0100
@@ -14,8 +14,8 @@
 
 # - getFileContents >
 {
-	my $content = $pxs->getFileContents('/etc/make.conf');
-	ok($content ne '','getFileContents of /etc/make.conf');
+	my $content = $pxs->getFileContents('/etc/portage/make.conf');
+	ok($content ne '','getFileContents of /etc/portage/make.conf');
 }
 
 # - searchInstalledPackage >
@@ -26,8 +26,8 @@
 
 # - getParamFromFile >
 {
-	my $param = $pxs->getParamFromFile($pxs->getFileContents('/etc/make.conf'),'CFLAGS','lastseen');
-	ok($param ne '','getParamFromFile /etc/make.conf - CFLAGS: '.$param);
+	my $param = $pxs->getParamFromFile($pxs->getFileContents('/etc/portage/make.conf'),'CFLAGS','lastseen');
+	ok($param ne '','getParamFromFile /etc/portage/make.conf - CFLAGS: '.$param);
 }
 
 # - getUseSettingsOfInstalledPackage >



1.1                  dev-perl/PortageXS/files/PortageXS-0.02.10-prefix.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-prefix.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-prefix.patch?rev=1.1&content-type=text/plain

Index: PortageXS-0.02.10-prefix.patch
===================================================================
diff -ur PortageXS-0.02.09.orig/lib/PortageXS/Core.pm PortageXS-0.02.09/lib/PortageXS/Core.pm
--- PortageXS-0.02.09.orig/lib/PortageXS/Core.pm	2008-12-01 21:30:50 +0100
+++ PortageXS-0.02.09/lib/PortageXS/Core.pm	2009-03-18 20:56:20 +0100
@@ -94,7 +94,7 @@
 	my $self		= shift;
 	my $param		= shift;
 	my @files		= ();
-	my @etcfiles		= qw(/usr/share/portage/config/make.globals /etc/portage/make.conf);
+	my @etcfiles		= qw(@GENTOO_PORTAGE_EPREFIX@/usr/share/portage/config/make.globals @GENTOO_PORTAGE_EPREFIX@/etc/portage/make.conf);
 	my @profilefiles	= ();
 	my $v			= '';
 	my $parent		= '';
@@ -139,7 +139,7 @@
 	
 	# - Defaults >
 	if ($param eq 'PORTDIR' && !$v) {
-		$v='/usr/portage';
+		$v='@GENTOO_PORTAGE_EPREFIX@/usr/portage';
 	}
 	
 	return $v;
@@ -166,7 +166,7 @@
 		return $self->{'PORTDIR'};
 	}
 	else {
-		$self->{'PORTDIR'}=$self->getParamFromFile($self->getFileContents('/usr/share/portage/config/make.globals').$self->getFileContents('/etc/portage/make.conf'),'PORTDIR','lastseen');
+		$self->{'PORTDIR'}=$self->getParamFromFile($self->getFileContents('@GENTOO_PORTAGE_EPREFIX@/usr/share/portage/config/make.globals').$self->getFileContents('@GENTOO_PORTAGE_EPREFIX@/etc/portage/make.conf'),'PORTDIR','lastseen');
 		return $self->{'PORTDIR'};
 	}
 }
@@ -183,7 +183,7 @@
 	my $self	= shift;
 	my $forcereload	= shift;
 	
-	return split(/ /,$self->getParamFromFile($self->getFileContents('/usr/share/portage/config/make.globals').$self->getFileContents('/etc/portage/make.conf'),'PORTDIR_OVERLAY','lastseen'));
+	return split(/ /,$self->getParamFromFile($self->getFileContents('@GENTOO_PORTAGE_EPREFIX@/usr/share/portage/config/make.globals').$self->getFileContents('@GENTOO_PORTAGE_EPREFIX@/etc/portage/make.conf'),'PORTDIR_OVERLAY','lastseen'));
 }
 
 # Description:
diff -ur PortageXS-0.02.09.orig/lib/PortageXS.pm PortageXS-0.02.09/lib/PortageXS.pm
--- PortageXS-0.02.09.orig/lib/PortageXS.pm	2008-12-01 21:30:50 +0100
+++ PortageXS-0.02.09/lib/PortageXS.pm	2009-03-18 20:52:29 +0100
@@ -61,8 +61,8 @@
 	$self->{'VERSION'}			= $VERSION;
 	
 	$self->{'PORTDIR'}			= $self->getPortdir();
-	$self->{'PKG_DB_DIR'}			= '/var/db/pkg/';
-	$self->{'PATH_TO_WORLDFILE'}		= '/var/lib/portage/world';
+	$self->{'PKG_DB_DIR'}			= '@GENTOO_PORTAGE_EPREFIX@/var/db/pkg/';
+	$self->{'PATH_TO_WORLDFILE'}		= '@GENTOO_PORTAGE_EPREFIX@/var/lib/portage/world';
 	$self->{'IS_INITIALIZED'}		= 1;
 	
 	$self->{'EXCLUDE_DIRS'}{'.'}		= 1;
@@ -75,9 +75,9 @@
 	$self->{'EXCLUDE_DIRS'}{'CVS'}		= 1;
 	$self->{'EXCLUDE_DIRS'}{'.cache'}	= 1;
 	
-	$self->{'PORTAGEXS_ETC_DIR'}		= '/etc/pxs/';
-	$self->{'ETC_DIR'}			= '/etc/';
-	$self->{'MAKE_PROFILE_PATH'}		= '/etc/make.profile';
+	$self->{'PORTAGEXS_ETC_DIR'}		= '@GENTOO_PORTAGE_EPREFIX@/etc/pxs/';
+	$self->{'ETC_DIR'}			= '@GENTOO_PORTAGE_EPREFIX@/etc/';
+	$self->{'MAKE_PROFILE_PATH'}		= '@GENTOO_PORTAGE_EPREFIX@/etc/make.profile';
 	
 	# - init colors >
 	$self->{'COLORS'}{'YELLOW'}		= color('bold yellow');
@@ -89,7 +89,7 @@
 	$self->{'COLORS'}{'BLUE'}		= color('bold blue');
 	$self->{'COLORS'}{'RESET'}		= color('reset');
 	
-	if (lc($self->getParamFromFile($self->getFileContents('/etc/portage/make.conf'),'NOCOLOR','lastseen')) eq 'true') {
+	if (lc($self->getParamFromFile($self->getFileContents('@GENTOO_PORTAGE_EPREFIX@/etc/portage/make.conf'),'NOCOLOR','lastseen')) eq 'true') {
 		$self->{'COLORS'}{'YELLOW'}		= '';
 		$self->{'COLORS'}{'GREEN'}		= '';
 		$self->{'COLORS'}{'LIGHTGREEN'}		= '';
diff -ur PortageXS-0.02.09.orig/usr/bin/portagexs_client PortageXS-0.02.09/usr/bin/portagexs_client
--- PortageXS-0.02.09.orig/usr/bin/portagexs_client	2008-12-01 21:30:50 +0100
+++ PortageXS-0.02.09/usr/bin/portagexs_client	2009-03-18 20:52:29 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!@GENTOO_PORTAGE_EPREFIX@/usr/bin/perl
 
 # -----------------------------------------------------------------------------
 #
@@ -54,9 +54,9 @@
 				SSL_use_cert => 1,
 				SSL_verify_mode => 0x01,
 				SSL_passwd_cb => sub { return "" },
-				SSL_key_file => '/etc/pxs/certs/client-key.pem',
-				SSL_cert_file => '/etc/pxs/certs/client-cert.pem',
-				SSL_ca_file => '/etc/pxs/certs/my-ca.pem'
+				SSL_key_file => '@GENTOO_PORTAGE_EPREFIX@/etc/pxs/certs/client-key.pem',
+				SSL_cert_file => '@GENTOO_PORTAGE_EPREFIX@/etc/pxs/certs/client-cert.pem',
+				SSL_ca_file => '@GENTOO_PORTAGE_EPREFIX@/etc/pxs/certs/my-ca.pem'
 				 ))) {
 	$pxs->print_err("unable to create socket: ".&IO::Socket::SSL::errstr."\n");
 	$pxs->print_err("Server down?\n");
diff -ur PortageXS-0.02.09.orig/usr/sbin/portagexsd PortageXS-0.02.09/usr/sbin/portagexsd
--- PortageXS-0.02.09.orig/usr/sbin/portagexsd	2008-12-01 21:30:50 +0100
+++ PortageXS-0.02.09/usr/sbin/portagexsd	2009-03-18 20:52:29 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -t
+#!@GENTOO_PORTAGE_EPREFIX@/usr/bin/perl -t
 
 # -----------------------------------------------------------------------------
 #
@@ -50,7 +50,7 @@
 sub main {
 	# - Parse config >
 	my %config	= ();
-	$config{'cfgfiledata'} = $pxs->getFileContents("/etc/pxs/portagexsd.conf");
+	$config{'cfgfiledata'} = $pxs->getFileContents("@GENTOO_PORTAGE_EPREFIX@/etc/pxs/portagexsd.conf");
 	$config{'Port'} = $pxs->getParamFromFile($config{'cfgfiledata'},"Port","lastseen");
 	$config{'SSLpasswd'} = $pxs->getParamFromFile($config{'cfgfiledata'},"SSLpasswd","lastseen");
 	$config{'PidFile'} = $pxs->getParamFromFile($config{'cfgfiledata'},"PidFile","lastseen");
@@ -60,7 +60,7 @@
 	$config{'cfgfiledata'} = undef;
 	
 	if (!$config{'I_AM_ROOT_AND_I_KNOW_WHAT_I_AM_DOING'}) {
-		syslog("info", 'Not starting server as it seems that you did not have a look at the configs yet! (/etc/pxs/portagexsd.conf)');
+		syslog("info", 'Not starting server as it seems that you did not have a look at the configs yet! (@GENTOO_PORTAGE_EPREFIX@/etc/pxs/portagexsd.conf)');
 		exit(0);
 	}
 	
@@ -70,9 +71,9 @@
 				Reuse     => 1,
 				SSL_verify_mode => 0x01,
 				SSL_passwd_cb => sub {return $config{'SSLpasswd'}},
-				SSL_key_file => '/etc/pxs/certs/server-key.pem',
-				SSL_cert_file => '/etc/pxs/certs/server-cert.pem',
-				SSL_ca_file => '/etc/pxs/certs/my-ca.pem'
+				SSL_key_file => '@GENTOO_PORTAGE_EPREFIX@/etc/pxs/certs/server-key.pem',
+				SSL_cert_file => '@GENTOO_PORTAGE_EPREFIX@/etc/pxs/certs/server-cert.pem',
+				SSL_ca_file => '@GENTOO_PORTAGE_EPREFIX@/etc/pxs/certs/my-ca.pem'
 			)) ) {
 		syslog("info", "Unable to create socket: ", &IO::Socket::SSL::errstr);
 		exit(0);





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

* [gentoo-commits] gentoo-x86 commit in dev-perl/PortageXS/files: PortageXS-0.02.10-portage_path_fix.patch PortageXS-0.02.10-prefix.patch
@ 2013-01-03  8:46 Raul Porcel (armin76)
  0 siblings, 0 replies; 2+ messages in thread
From: Raul Porcel (armin76) @ 2013-01-03  8:46 UTC (permalink / raw
  To: gentoo-commits

armin76     13/01/03 08:46:32

  Modified:             PortageXS-0.02.10-portage_path_fix.patch
                        PortageXS-0.02.10-prefix.patch
  Log:
  Fix make.profile location, straight to stable
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 0xF6AD3240)

Revision  Changes    Path
1.2                  dev-perl/PortageXS/files/PortageXS-0.02.10-portage_path_fix.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-portage_path_fix.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-portage_path_fix.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-portage_path_fix.patch?r1=1.1&r2=1.2

Index: PortageXS-0.02.10-portage_path_fix.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-portage_path_fix.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PortageXS-0.02.10-portage_path_fix.patch	15 Dec 2012 20:16:36 -0000	1.1
+++ PortageXS-0.02.10-portage_path_fix.patch	3 Jan 2013 08:46:32 -0000	1.2
@@ -1,6 +1,6 @@
 diff -ur PortageXS-0.02.10.orig/lib/PortageXS/Core.pm PortageXS-0.02.10/lib/PortageXS/Core.pm
---- PortageXS-0.02.10.orig/lib/PortageXS/Core.pm	2012-12-15 19:01:20.267451741 +0100
-+++ PortageXS-0.02.10/lib/PortageXS/Core.pm	2012-12-15 19:06:37.363938909 +0100
+--- PortageXS-0.02.10.orig/lib/PortageXS/Core.pm	2013-01-03 09:32:10.477597366 +0100
++++ PortageXS-0.02.10/lib/PortageXS/Core.pm	2013-01-03 09:32:12.707534858 +0100
 @@ -94,7 +94,7 @@
  	my $self		= shift;
  	my $param		= shift;
@@ -29,8 +29,8 @@
  
  # Description:
 diff -ur PortageXS-0.02.10.orig/lib/PortageXS/examples/getParamFromFile.pl PortageXS-0.02.10/lib/PortageXS/examples/getParamFromFile.pl
---- PortageXS-0.02.10.orig/lib/PortageXS/examples/getParamFromFile.pl	2012-12-15 19:01:20.267451741 +0100
-+++ PortageXS-0.02.10/lib/PortageXS/examples/getParamFromFile.pl	2012-12-15 19:07:19.041822742 +0100
+--- PortageXS-0.02.10.orig/lib/PortageXS/examples/getParamFromFile.pl	2013-01-03 09:32:10.477597366 +0100
++++ PortageXS-0.02.10/lib/PortageXS/examples/getParamFromFile.pl	2013-01-03 09:32:12.707534858 +0100
 @@ -8,4 +8,5 @@
  
  my $pxs=PortageXS->new();
@@ -39,8 +39,17 @@
 +print join(' 
 +',$pxs->getParamFromFile($pxs->getFileContents('/usr/share/portage/config/make.globals').$pxs->getFileContents('/etc/portage/make.conf'),'CFLAGS','lastseen'))."\n";
 diff -ur PortageXS-0.02.10.orig/lib/PortageXS.pm PortageXS-0.02.10/lib/PortageXS.pm
---- PortageXS-0.02.10.orig/lib/PortageXS.pm	2012-12-15 19:01:20.283451308 +0100
-+++ PortageXS-0.02.10/lib/PortageXS.pm	2012-12-15 19:14:38.882079616 +0100
+--- PortageXS-0.02.10.orig/lib/PortageXS.pm	2013-01-03 09:32:10.478597338 +0100
++++ PortageXS-0.02.10/lib/PortageXS.pm	2013-01-03 09:32:29.710057966 +0100
+@@ -77,7 +77,7 @@
+ 	
+ 	$self->{'PORTAGEXS_ETC_DIR'}		= '/etc/pxs/';
+ 	$self->{'ETC_DIR'}			= '/etc/';
+-	$self->{'MAKE_PROFILE_PATH'}		= '/etc/make.profile';
++	$self->{'MAKE_PROFILE_PATH'}		= '/etc/portage/make.profile';
+ 	
+ 	# - init colors >
+ 	$self->{'COLORS'}{'YELLOW'}		= color('bold yellow');
 @@ -89,7 +89,7 @@
  	$self->{'COLORS'}{'BLUE'}		= color('bold blue');
  	$self->{'COLORS'}{'RESET'}		= color('reset');
@@ -51,8 +60,8 @@
  		$self->{'COLORS'}{'GREEN'}		= '';
  		$self->{'COLORS'}{'LIGHTGREEN'}		= '';
 diff -ur PortageXS-0.02.10.orig/t/01_Core.t PortageXS-0.02.10/t/01_Core.t
---- PortageXS-0.02.10.orig/t/01_Core.t	2012-12-15 19:01:20.266451768 +0100
-+++ PortageXS-0.02.10/t/01_Core.t	2012-12-15 19:15:33.036638139 +0100
+--- PortageXS-0.02.10.orig/t/01_Core.t	2013-01-03 09:32:10.476597394 +0100
++++ PortageXS-0.02.10/t/01_Core.t	2013-01-03 09:32:12.707534858 +0100
 @@ -14,8 +14,8 @@
  
  # - getFileContents >



1.2                  dev-perl/PortageXS/files/PortageXS-0.02.10-prefix.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-prefix.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-prefix.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-prefix.patch?r1=1.1&r2=1.2

Index: PortageXS-0.02.10-prefix.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/PortageXS/files/PortageXS-0.02.10-prefix.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PortageXS-0.02.10-prefix.patch	15 Dec 2012 20:16:36 -0000	1.1
+++ PortageXS-0.02.10-prefix.patch	3 Jan 2013 08:46:32 -0000	1.2
@@ -57,10 +57,10 @@
  	
 -	$self->{'PORTAGEXS_ETC_DIR'}		= '/etc/pxs/';
 -	$self->{'ETC_DIR'}			= '/etc/';
--	$self->{'MAKE_PROFILE_PATH'}		= '/etc/make.profile';
+-	$self->{'MAKE_PROFILE_PATH'}		= '/etc/portage/make.profile';
 +	$self->{'PORTAGEXS_ETC_DIR'}		= '@GENTOO_PORTAGE_EPREFIX@/etc/pxs/';
 +	$self->{'ETC_DIR'}			= '@GENTOO_PORTAGE_EPREFIX@/etc/';
-+	$self->{'MAKE_PROFILE_PATH'}		= '@GENTOO_PORTAGE_EPREFIX@/etc/make.profile';
++	$self->{'MAKE_PROFILE_PATH'}		= '@GENTOO_PORTAGE_EPREFIX@/etc/portage/make.profile';
  	
  	# - init colors >
  	$self->{'COLORS'}{'YELLOW'}		= color('bold yellow');





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

end of thread, other threads:[~2013-01-03  8:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-15 20:16 [gentoo-commits] gentoo-x86 commit in dev-perl/PortageXS/files: PortageXS-0.02.10-portage_path_fix.patch PortageXS-0.02.10-prefix.patch Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-03  8:46 Raul Porcel (armin76)

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