public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2012-03-07 18:31 Mike Frysinger
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger @ 2012-03-07 18:31 UTC (permalink / raw
  To: gentoo-commits

commit:     af354f0cb593a818d203580e94d098ab3c0657e9
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  7 18:30:46 2012 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Mar  7 18:30:46 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=af354f0c

make.conf: drop -I/-L hardcodes to sysroot

The sysroot in the toolchain itself should be able to locate the
headers and libraries just fine.  Using -L/-I breaks the search
order for some applications.

URL: http://bugs.gentoo.org/364003
Reported-by: Joerg Faschingbauer <joerg.faschingbauer <AT> aon.at>
Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>

---
 wrappers/etc/portage/make.conf |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index b9f29d9..82106e5 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -14,9 +14,8 @@ USE="${ARCH} zlib bindist make-symlinks minimal"
 #MARCH_TUNE="-march=armv4t -mtune=arm9tdmi"	#arm-softfloat-linux-uclibc
 #MARCH_TUNE="-march=armv5t -mtune=xscale"	#armv5teb-softfloat-linux-gnueabi
 
-CFLAGS="-Os -pipe ${MARCH_TUNE} -fomit-frame-pointer -I${ROOT}usr/include/ -I${ROOT}include/"
+CFLAGS="-Os -pipe ${MARCH_TUNE} -fomit-frame-pointer"
 CXXFLAGS="${CFLAGS}"
-LDFLAGS="-L${ROOT}lib -L${ROOT}usr/lib"
 
 FEATURES="-collision-protect sandbox buildpkg noman noinfo nodoc"
 # Be sure we dont overwrite pkgs from another repo..



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

* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2012-08-21 16:24 Mike Frysinger
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger @ 2012-08-21 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     ccd3d3050e64d0377a01843f94ef67da2ea6b665
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 21 16:23:35 2012 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Tue Aug 21 16:23:35 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=ccd3d305

make.conf: do no set LIBDIR anymore

The main crossdev process handles multilib for us now.

URL: https://bugs.gentoo.org/432084
Reported-by: Dennis Schridde <devurandom <AT> gmx.net>
Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>

---
 wrappers/etc/portage/make.conf |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index 82106e5..82e489b 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -26,6 +26,3 @@ ELIBC="__LIBC__"
 
 PKG_CONFIG_PATH="${ROOT}usr/lib/pkgconfig/"
 #PORTDIR_OVERLAY="/usr/portage/local/"
-
-LIBDIR___ARCH__="lib"
-LIBDIR_amd64=lib64


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

* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2014-01-18 19:37 Mike Frysinger
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger @ 2014-01-18 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     145574e0c9611976ce13e8a0afb628d1c420d36b
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 18 19:37:07 2014 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sat Jan 18 19:37:07 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=145574e0

make.conf: drop the hardcore embedded settings

If people want these settings, they can use the embedded profile.
Instead, provide more reasonable USE/CFLAGS settings out of the
box.

Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>

---
 wrappers/etc/portage/make.conf | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index 6c1ffbd..65214dc 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -8,12 +8,9 @@ ROOT=/usr/${CHOST}/
 
 ACCEPT_KEYWORDS="__ARCH__ ~__ARCH__"
 
-USE="${ARCH} zlib bindist make-symlinks minimal"
+USE="${ARCH} -pam"
 
-#MARCH_TUNE="-march=armv4t -mtune=arm9tdmi"	#arm-softfloat-linux-uclibc
-#MARCH_TUNE="-march=armv5t -mtune=xscale"	#armv5teb-softfloat-linux-gnueabi
-
-CFLAGS="-Os -pipe ${MARCH_TUNE} -fomit-frame-pointer"
+CFLAGS="-O2 -pipe -fomit-frame-pointer"
 CXXFLAGS="${CFLAGS}"
 
 FEATURES="-collision-protect sandbox buildpkg noman noinfo nodoc"


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

* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2021-10-27  8:55 Mike Frysinger
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger @ 2021-10-27  8:55 UTC (permalink / raw
  To: gentoo-commits

commit:     9ecff85d0909d3e576b1388b48da03cfc824516b
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 27 08:52:22 2021 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Oct 27 08:52:22 2021 +0000
URL:        https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=9ecff85d

wrappers: drop HOSTCC setting

This is a bit obsolete.  Few packages every used this setting, and
toolchain-funcs.eclass provides a suite of BUILD_xxx helpers that
ebuilds can leverage directly.

Closes: https://bugs.gentoo.org/727900
Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>

 wrappers/etc/portage/make.conf | 2 --
 1 file changed, 2 deletions(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index eac5138..2ab65b3 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -5,8 +5,6 @@
 CHOST=__CHOST__
 CBUILD=__CBUILD__
 
-HOSTCC=${CBUILD}-gcc
-
 ROOT=@GENTOO_PORTAGE_EPREFIX@/usr/${CHOST}/
 
 ACCEPT_KEYWORDS="${ARCH} ~${ARCH}"


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

* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2022-06-17  2:44 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-06-17  2:44 UTC (permalink / raw
  To: gentoo-commits

commit:     8a959b0877934420d6c0bf3345c98f58319399ed
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 23:33:07 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May  2 23:33:07 2022 +0000
URL:        https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=8a959b08

wrappers: use /var/db/repos/local in commented out example PORTDIR_OVERLAY

Signed-off-by: Sam James <sam <AT> gentoo.org>

 wrappers/etc/portage/make.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index 2ab65b3..ec66ede 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -20,4 +20,4 @@ PKGDIR=${ROOT}packages/
 PORTAGE_TMPDIR=${ROOT}tmp/
 
 PKG_CONFIG_PATH="${ROOT}usr/lib/pkgconfig/"
-#PORTDIR_OVERLAY="/usr/portage/local/"
+#PORTDIR_OVERLAY="/var/db/repos/local/"


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

* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2022-06-17  2:44 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-06-17  2:44 UTC (permalink / raw
  To: gentoo-commits

commit:     553ab9e4f5d985103fa2f30de74aad0780cd2a0d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 23:34:05 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May  2 23:34:05 2022 +0000
URL:        https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=553ab9e4

wrappers: use /var/cache/binpkgs as PKGDIR

Modern location.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 wrappers/etc/portage/make.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index ec66ede..0571e8b 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -16,7 +16,7 @@ CXXFLAGS="${CFLAGS}"
 
 FEATURES="-collision-protect sandbox buildpkg noman noinfo nodoc"
 # Be sure we dont overwrite pkgs from another repo..
-PKGDIR=${ROOT}packages/
+PKGDIR=${ROOT}cache/binpkgs/
 PORTAGE_TMPDIR=${ROOT}tmp/
 
 PKG_CONFIG_PATH="${ROOT}usr/lib/pkgconfig/"


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

* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2022-09-09  4:32 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-09-09  4:32 UTC (permalink / raw
  To: gentoo-commits

commit:     5ff32d9c306ecdfdcc2b2f828a4f7938676bd564
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  8 19:47:11 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep  9 04:31:57 2022 +0000
URL:        https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=5ff32d9c

wrappers: Actually set PKGDIR to /var/cache/binpkgs

Probably a typo, so accidentally got changed to `cache/binpkgs` instead of
`/var/cache/binpkgs`

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
Closes: https://github.com/gentoo/crossdev/pull/5
Signed-off-by: Sam James <sam <AT> gentoo.org>

 wrappers/etc/portage/make.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index 0571e8b..59bf61e 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -16,7 +16,7 @@ CXXFLAGS="${CFLAGS}"
 
 FEATURES="-collision-protect sandbox buildpkg noman noinfo nodoc"
 # Be sure we dont overwrite pkgs from another repo..
-PKGDIR=${ROOT}cache/binpkgs/
+PKGDIR=${ROOT}var/cache/binpkgs/
 PORTAGE_TMPDIR=${ROOT}tmp/
 
 PKG_CONFIG_PATH="${ROOT}usr/lib/pkgconfig/"


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

* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2023-12-12 22:02 James Le Cuirot
  0 siblings, 0 replies; 10+ messages in thread
From: James Le Cuirot @ 2023-12-12 22:02 UTC (permalink / raw
  To: gentoo-commits

commit:     5fd3a2f7f14512bb2a56e1b0e7a8e143ab3d5600
Author:     Ian Jordan <immoloism <AT> gmail <DOT> com>
AuthorDate: Tue Dec 12 06:03:31 2023 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Dec 12 22:02:26 2023 +0000
URL:        https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=5fd3a2f7

wrapper/etc/portage/make.conf: Remove -pam

Removing default option	of disabling PAM as no longer needed in	all tests done.

Signed-off-by: Ian Jordan <immoloism <AT> gmail.com>
Closes: https://github.com/gentoo/crossdev/pull/16
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 wrappers/etc/portage/make.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index 59bf61e..b845ba6 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -9,7 +9,7 @@ ROOT=@GENTOO_PORTAGE_EPREFIX@/usr/${CHOST}/
 
 ACCEPT_KEYWORDS="${ARCH} ~${ARCH}"
 
-USE="${ARCH} -pam"
+USE="${ARCH}"
 
 CFLAGS="-O2 -pipe -fomit-frame-pointer"
 CXXFLAGS="${CFLAGS}"


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

* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2024-09-21 21:06 James Le Cuirot
  0 siblings, 0 replies; 10+ messages in thread
From: James Le Cuirot @ 2024-09-21 21:06 UTC (permalink / raw
  To: gentoo-commits

commit:     6caddf235b5598a9725d21134801b4426e6d3ea6
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 21 21:02:45 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Sep 21 21:02:45 2024 +0000
URL:        https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=6caddf23

Don't set PKG_CONFIG_PATH in make.conf

This is pointless because cross-pkg-config unsets it anyway. It's also
harmful because if a cross build needs to call CBUILD's pkg-config,
which doesn't use the wrapper, it will pick up .pc files from the wrong
location.

Bug: https://bugs.gentoo.org/936677
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 wrappers/etc/portage/make.conf | 1 -
 1 file changed, 1 deletion(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index b845ba6..0d74bc0 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -19,5 +19,4 @@ FEATURES="-collision-protect sandbox buildpkg noman noinfo nodoc"
 PKGDIR=${ROOT}var/cache/binpkgs/
 PORTAGE_TMPDIR=${ROOT}tmp/
 
-PKG_CONFIG_PATH="${ROOT}usr/lib/pkgconfig/"
 #PORTDIR_OVERLAY="/var/db/repos/local/"


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

* [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/
@ 2024-09-21 21:06 James Le Cuirot
  0 siblings, 0 replies; 10+ messages in thread
From: James Le Cuirot @ 2024-09-21 21:06 UTC (permalink / raw
  To: gentoo-commits

commit:     da3d831561b884a6b3d02d069ec9c7cd9d8df475
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 21 21:05:32 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Sep 21 21:05:32 2024 +0000
URL:        https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=da3d8315

Remove commented PORTDIR_OVERLAY line from make.conf

This variable is deprecated in favour of repos.conf.

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 wrappers/etc/portage/make.conf | 2 --
 1 file changed, 2 deletions(-)

diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf
index 0d74bc0..4a93675 100644
--- a/wrappers/etc/portage/make.conf
+++ b/wrappers/etc/portage/make.conf
@@ -18,5 +18,3 @@ FEATURES="-collision-protect sandbox buildpkg noman noinfo nodoc"
 # Be sure we dont overwrite pkgs from another repo..
 PKGDIR=${ROOT}var/cache/binpkgs/
 PORTAGE_TMPDIR=${ROOT}tmp/
-
-#PORTDIR_OVERLAY="/var/db/repos/local/"


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

end of thread, other threads:[~2024-09-21 21:06 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-17  2:44 [gentoo-commits] proj/crossdev:master commit in: wrappers/etc/portage/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-09-21 21:06 James Le Cuirot
2024-09-21 21:06 James Le Cuirot
2023-12-12 22:02 James Le Cuirot
2022-09-09  4:32 Sam James
2022-06-17  2:44 Sam James
2021-10-27  8:55 Mike Frysinger
2014-01-18 19:37 Mike Frysinger
2012-08-21 16:24 Mike Frysinger
2012-03-07 18:31 Mike Frysinger

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