public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2011-12-08 21:06 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2011-12-08 21:06 UTC (permalink / raw
  To: gentoo-commits

commit:     2734f30b1e97f30cce79e825990c5825348e0189
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  8 21:05:04 2011 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Thu Dec  8 21:05:04 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=2734f30b

make.globals: add CONFIGURE_EPREFIX var

CONFIGURE_EPREFIX holds the value of the --eprefix argument of the
configure call.  While this variable is not used by Prefix Portage
itself, it allows others (tools, package managers) to determine the
EPREFIX value without having to call the Python code.

---
 cnf/make.globals |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/cnf/make.globals b/cnf/make.globals
index 1efc545..a413f6f 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -127,6 +127,10 @@ DEFAULT_PATH="@DEFAULT_PATH@"
 # Any extra PATHs to add to the ebuild environment's PATH (if any)
 EXTRA_PATH="@EXTRA_PATH@"
 
+# The offset prefix this Portage was configured with (not used by
+# Portage itself)
+CONFIGURE_EPREFIX=@PORTAGE_EPREFIX@
+
 # Mode bits for ${WORKDIR} (see ebuild.5).
 PORTAGE_WORKDIR_MODE="0700"
 



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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2011-12-09 20:42 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2011-12-09 20:42 UTC (permalink / raw
  To: gentoo-commits

commit:     9b1d50b7f5ba9dfa89d311bd1eca24439747a0c9
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  9 20:42:13 2011 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Fri Dec  9 20:42:13 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9b1d50b7

make.globals: enable FEATURES=force-prefix

---
 cnf/make.globals |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/cnf/make.globals b/cnf/make.globals
index 558f335..4339f1f 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -65,6 +65,9 @@ COLLISION_IGNORE="/lib/modules"
 # This setting is commented out for portage versions that don't support it.
 FEATURES="${FEATURES} preserve-libs"
 
+# Force EPREFIX, ED and EROOT to exist in all EAPIs, not just 3 and up
+FEATURES="${FEATURES} force-prefix"
+
 # Default chunksize for binhost comms
 PORTAGE_BINHOST_CHUNKSIZE="3000"
 



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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2011-12-22  9:51 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2011-12-22  9:51 UTC (permalink / raw
  To: gentoo-commits

commit:     9dee9d50c541da4f5282ce6624d82be64bb88a37
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 22 09:51:06 2011 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Thu Dec 22 09:51:06 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9dee9d50

make.globals: bring back hardcoded EPREFIX (bug #395633)

---
 cnf/make.globals |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cnf/make.globals b/cnf/make.globals
index 78ca91b..5a2c612 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -30,13 +30,13 @@ ACCEPT_LICENSE="* -@EULA"
 ACCEPT_PROPERTIES="*"
 
 # Repository Paths
-PORTDIR=/usr/portage
+PORTDIR="@PORTAGE_EPREFIX@/usr/portage"
 DISTDIR=${PORTDIR}/distfiles
 PKGDIR=${PORTDIR}/packages
 RPMDIR=${PORTDIR}/rpm
 
 # Temporary build directory
-PORTAGE_TMPDIR=/var/tmp
+PORTAGE_TMPDIR="@PORTAGE_EPREFIX@/var/tmp"
 
 # Fetching command (3 tries, passive ftp for firewall compatibility)
 FETCHCOMMAND="wget -t 3 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\""



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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2011-12-31 16:45 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2011-12-31 16:45 UTC (permalink / raw
  To: gentoo-commits

commit:     435e9c72e3e6f5f3596e75524c6f6892bb5e7ada
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 16:44:52 2011 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 16:44:52 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=435e9c72

make.globals: add missing quotes for CONFIGURE_EPREFIX, bug #396577

---
 cnf/make.globals |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/cnf/make.globals b/cnf/make.globals
index 5a2c612..194608d 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -132,7 +132,7 @@ EXTRA_PATH="@EXTRA_PATH@"
 
 # The offset prefix this Portage was configured with (not used by
 # Portage itself)
-CONFIGURE_EPREFIX=@PORTAGE_EPREFIX@
+CONFIGURE_EPREFIX="@PORTAGE_EPREFIX@"
 
 # Mode bits for ${WORKDIR} (see ebuild.5).
 PORTAGE_WORKDIR_MODE="0700"



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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2013-08-11 10:01 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2013-08-11 10:01 UTC (permalink / raw
  To: gentoo-commits

commit:     e9289086293e24a47f22d1fdea67529479413ba7
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 11 10:01:20 2013 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sun Aug 11 10:01:20 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=e9289086

cnf: install existing file

---
 cnf/Makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cnf/Makefile.in b/cnf/Makefile.in
index 139cee1..5b24c66 100644
--- a/cnf/Makefile.in
+++ b/cnf/Makefile.in
@@ -30,7 +30,7 @@ install:
 		"$(srcdir)"/sets/portage.conf
 	$(INSTALL_subst) \
 		-o "$(portageuser)" -g "$(portagegroup)" \
-		"$(srcdir)"/make.conf "$(DESTDIR)$(PORTAGE_CONF)"/make.conf.example
+		"$(srcdir)"/make.conf.example "$(DESTDIR)$(PORTAGE_CONF)"/make.conf.example
 	$(INSTALL) -d -m 755 -o "$(portageuser)" -g "$(portagegroup)" $(DESTDIR)$(sysconfdir)
 	$(INSTALL_subst) \
 		-o "$(portageuser)" -g "$(portagegroup)" \


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2013-08-12 18:35 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2013-08-12 18:35 UTC (permalink / raw
  To: gentoo-commits

commit:     87b2c5105e817e7e27175bd06da8caf3f6d4e91a
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 18:34:52 2013 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 18:34:52 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=87b2c510

repos.conf: use correct placeholder

---
 cnf/repos.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cnf/repos.conf b/cnf/repos.conf
index e7cbb02..37a60da 100644
--- a/cnf/repos.conf
+++ b/cnf/repos.conf
@@ -8,7 +8,7 @@ sync-uri = rsync://rsync.gentoo.org/gentoo-portage
 
 # PREFIX LOCAL: default rsync mirror
 [gentoo-prefix]
-location = @GENTOO_PORTAGE_EPREFIX@/usr/portage
+location = @PORTAGE_EPREFIX@/usr/portage
 sync-type = rsync
 sync-uri = rsync://rsync.prefix.freens.org/gentoo-portage-prefix
 # END PREFIX LOCAL


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2013-08-12 18:35 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2013-08-12 18:35 UTC (permalink / raw
  To: gentoo-commits

commit:     93ea85720dfcc579df0be98a4e4c796f719c8a25
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 18:33:41 2013 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 18:33:41 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=93ea8572

make.globals: sync in PORTAGE_TMPDIR (merge fault?)

---
 cnf/make.globals | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/cnf/make.globals b/cnf/make.globals
index c59de6d..dd18c5a 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -32,6 +32,9 @@ DISTDIR="@PORTAGE_EPREFIX@/usr/portage/distfiles"
 PKGDIR="@PORTAGE_EPREFIX@/usr/portage/packages"
 RPMDIR="@PORTAGE_EPREFIX@/usr/portage/rpm"
 
+# Temporary build directory
+PORTAGE_TMPDIR="@PORTAGE_EPREFIX@/var/tmp"
+
 # Fetching command (3 tries, passive ftp for firewall compatibility)
 FETCHCOMMAND="wget -t 3 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\""
 RESUMECOMMAND="wget -c -t 3 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\""


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2013-08-12 18:35 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2013-08-12 18:35 UTC (permalink / raw
  To: gentoo-commits

commit:     59177dc98847d787ce3eb44a74e99da72b71c411
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 18:25:14 2013 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 18:25:14 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=59177dc9

repos.conf: define prefix repo, move from make.globals

---
 cnf/make.globals |  4 ----
 cnf/repos.conf   | 10 +++++++++-
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/cnf/make.globals b/cnf/make.globals
index 8c58fc6..c59de6d 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -19,10 +19,6 @@ LDFLAGS=""
 FFLAGS=""
 FCFLAGS=""
 
-# PREFIX LOCAL: default rsync mirror
-SYNC="rsync://rsync.prefix.freens.org/gentoo-portage-prefix"
-# END PREFIX LOCAL
-
 # Default distfiles mirrors. This rotation has multiple hosts and is reliable.
 # Approved by the mirror-admin team.
 GENTOO_MIRRORS="http://distfiles.gentoo.org"

diff --git a/cnf/repos.conf b/cnf/repos.conf
index 8c657da..e7cbb02 100644
--- a/cnf/repos.conf
+++ b/cnf/repos.conf
@@ -1,7 +1,15 @@
 [DEFAULT]
-main-repo = gentoo
+main-repo = gentoo-prefix
 
 [gentoo]
 location = /usr/portage
 sync-type = rsync
 sync-uri = rsync://rsync.gentoo.org/gentoo-portage
+
+# PREFIX LOCAL: default rsync mirror
+[gentoo-prefix]
+location = @GENTOO_PORTAGE_EPREFIX@/usr/portage
+sync-type = rsync
+sync-uri = rsync://rsync.prefix.freens.org/gentoo-portage-prefix
+# END PREFIX LOCAL
+


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2013-08-12 19:07 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2013-08-12 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     d057b22ec5ab1c60f965ec74d6f407d7fb936faf
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 19:06:37 2013 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 19:06:37 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d057b22e

build-sys: install sets.conf

---
 cnf/Makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cnf/Makefile.in b/cnf/Makefile.in
index 5b24c66..7935f50 100644
--- a/cnf/Makefile.in
+++ b/cnf/Makefile.in
@@ -22,7 +22,7 @@ install:
 	$(INSTALL_subst) \
 		-o "$(portageuser)" -g "$(portagegroup)" \
 		-t "$(DESTDIR)$(PORTAGE_CONF)" \
-		"$(srcdir)"/make.globals
+		"$(srcdir)"/make.globals "$(srcdir)"/sets.conf
 	$(INSTALL) -d -m 755 -o "$(portageuser)" -g "$(portagegroup)" $(DESTDIR)$(PORTAGE_CONF)/sets
 	$(INSTALL_subst) \
 		-o "$(portageuser)" -g "$(portagegroup)" \


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2013-08-12 19:18 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2013-08-12 19:18 UTC (permalink / raw
  To: gentoo-commits

commit:     9b5c8b16e7f8c983255af727f13d96ffd85c2ed7
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 19:17:23 2013 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 19:17:23 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9b5c8b16

build-sys: refer to correct file, sigh

---
 cnf/Makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cnf/Makefile.in b/cnf/Makefile.in
index 7935f50..6cf3fc6 100644
--- a/cnf/Makefile.in
+++ b/cnf/Makefile.in
@@ -22,7 +22,7 @@ install:
 	$(INSTALL_subst) \
 		-o "$(portageuser)" -g "$(portagegroup)" \
 		-t "$(DESTDIR)$(PORTAGE_CONF)" \
-		"$(srcdir)"/make.globals "$(srcdir)"/sets.conf
+		"$(srcdir)"/make.globals "$(srcdir)"/repos.conf
 	$(INSTALL) -d -m 755 -o "$(portageuser)" -g "$(portagegroup)" $(DESTDIR)$(PORTAGE_CONF)/sets
 	$(INSTALL_subst) \
 		-o "$(portageuser)" -g "$(portagegroup)" \


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2013-08-12 19:31 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2013-08-12 19:31 UTC (permalink / raw
  To: gentoo-commits

commit:     174dd2174049546616368b511d6fb128bac3709d
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 19:29:29 2013 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 19:29:29 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=174dd217

repos.conf: fix repo_name

---
 cnf/repos.conf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cnf/repos.conf b/cnf/repos.conf
index 37a60da..59da331 100644
--- a/cnf/repos.conf
+++ b/cnf/repos.conf
@@ -1,5 +1,5 @@
 [DEFAULT]
-main-repo = gentoo-prefix
+main-repo = gentoo_prefix
 
 [gentoo]
 location = /usr/portage
@@ -7,7 +7,7 @@ sync-type = rsync
 sync-uri = rsync://rsync.gentoo.org/gentoo-portage
 
 # PREFIX LOCAL: default rsync mirror
-[gentoo-prefix]
+[gentoo_prefix]
 location = @PORTAGE_EPREFIX@/usr/portage
 sync-type = rsync
 sync-uri = rsync://rsync.prefix.freens.org/gentoo-portage-prefix


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2013-08-12 19:40 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2013-08-12 19:40 UTC (permalink / raw
  To: gentoo-commits

commit:     42788a1f37548ab4c66d72eace8eae98aed3d92b
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 19:39:59 2013 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 19:39:59 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=42788a1f

repos.conf: don't define non-existing repos, as all are checked

---
 cnf/repos.conf | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/cnf/repos.conf b/cnf/repos.conf
index 59da331..61ec3be 100644
--- a/cnf/repos.conf
+++ b/cnf/repos.conf
@@ -1,15 +1,7 @@
 [DEFAULT]
 main-repo = gentoo_prefix
 
-[gentoo]
-location = /usr/portage
-sync-type = rsync
-sync-uri = rsync://rsync.gentoo.org/gentoo-portage
-
-# PREFIX LOCAL: default rsync mirror
 [gentoo_prefix]
 location = @PORTAGE_EPREFIX@/usr/portage
 sync-type = rsync
 sync-uri = rsync://rsync.prefix.freens.org/gentoo-portage-prefix
-# END PREFIX LOCAL
-


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2014-11-01 19:37 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2014-11-01 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     e6b711bd8c55408b0885ba8f4589081b0c4d1e2e
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  1 19:37:28 2014 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat Nov  1 19:37:28 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=e6b711bd

repos.conf: use pool by default

---
 cnf/repos.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cnf/repos.conf b/cnf/repos.conf
index 2262e47..18c611a 100644
--- a/cnf/repos.conf
+++ b/cnf/repos.conf
@@ -4,4 +4,4 @@ main-repo = gentoo_prefix
 [gentoo_prefix]
 location = @PORTAGE_EPREFIX@/usr/portage
 sync-type = rsync
-sync-uri = rsync://prefix.gentooexperimental.org/gentoo-portage-prefix
+sync-uri = rsync://rsync.prefix.bitzolder.nl/gentoo-portage-prefix


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2014-11-12 17:33 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2014-11-12 17:33 UTC (permalink / raw
  To: gentoo-commits

commit:     4b58475a7189865e4cf947ca3a3d3f3b19bd004d
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 12 17:33:12 2014 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Nov 12 17:33:12 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=4b58475a

make.globals: enable case-insensitive-fs by default

---
 cnf/make.globals | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/cnf/make.globals b/cnf/make.globals
index dd18c5a..a57a603 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -71,6 +71,9 @@ FEATURES="${FEATURES} preserve-libs"
 # Force EPREFIX, ED and EROOT to exist in all EAPIs, not just 3 and up
 FEATURES="${FEATURES} force-prefix"
 
+# Avoid problems due to case-insensitivity, bug #524236
+FEATURES="${FEATURES} case-insensitive-fs"
+
 # By default wait 5 secs before cleaning a package
 CLEAN_DELAY="5"
 


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2017-03-25 14:00 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2017-03-25 14:00 UTC (permalink / raw
  To: gentoo-commits

commit:     5f163f4c3f7edbbe15362194e9b89fc3b1becb7a
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 25 14:00:30 2017 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat Mar 25 14:00:30 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=5f163f4c

make.globals: don't set case-insensitive-fs in FEATURES, breaks ConfigProtectTestCase

 cnf/make.globals | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/cnf/make.globals b/cnf/make.globals
index 39986e390..6f69154c4 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -68,9 +68,6 @@ UNINSTALL_IGNORE="/lib/modules/*"
 # Force EPREFIX, ED and EROOT to exist in all EAPIs, not just 3 and up
 FEATURES="${FEATURES} force-prefix"
 
-# Avoid problems due to case-insensitivity, bug #524236
-FEATURES="${FEATURES} case-insensitive-fs"
-
 # By default wait 5 secs before cleaning a package
 CLEAN_DELAY="5"
 


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

* [gentoo-commits] proj/portage:prefix commit in: cnf/
@ 2022-07-25 17:35 Fabian Groffen
  0 siblings, 0 replies; 16+ messages in thread
From: Fabian Groffen @ 2022-07-25 17:35 UTC (permalink / raw
  To: gentoo-commits

commit:     b1f3430bec567e434dc66009088ab7413d29fa60
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 25 17:34:15 2022 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Jul 25 17:34:15 2022 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=b1f3430b

cnf/make.globals: no need to set force-prefix FEATURE

Even EAPI=5 is being out of the door these days, so there are no more
ebuilds which need this.  In fact the whole feature could be dropped
from master for the same reason.

Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>

 cnf/make.globals | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/cnf/make.globals b/cnf/make.globals
index 613f58ff0..e489f6da0 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -93,9 +93,6 @@ FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs
 COLLISION_IGNORE="/lib/modules/* *.py[co] *\$py.class"
 UNINSTALL_IGNORE="/lib/modules/*"
 
-# Force EPREFIX, ED and EROOT to exist in all EAPIs, not just 3 and up
-FEATURES="${FEATURES} force-prefix"
-
 # By default wait 5 secs before cleaning a package
 CLEAN_DELAY="5"
 


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

end of thread, other threads:[~2022-07-25 17:35 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-12 18:35 [gentoo-commits] proj/portage:prefix commit in: cnf/ Fabian Groffen
  -- strict thread matches above, loose matches on Subject: below --
2022-07-25 17:35 Fabian Groffen
2017-03-25 14:00 Fabian Groffen
2014-11-12 17:33 Fabian Groffen
2014-11-01 19:37 Fabian Groffen
2013-08-12 19:40 Fabian Groffen
2013-08-12 19:31 Fabian Groffen
2013-08-12 19:18 Fabian Groffen
2013-08-12 19:07 Fabian Groffen
2013-08-12 18:35 Fabian Groffen
2013-08-12 18:35 Fabian Groffen
2013-08-11 10:01 Fabian Groffen
2011-12-31 16:45 Fabian Groffen
2011-12-22  9:51 Fabian Groffen
2011-12-09 20:42 Fabian Groffen
2011-12-08 21:06 Fabian Groffen

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