summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* games-arcade/xboing: fix build with -native-symlinksIonen Wolkens2021-04-151-7/+10
| | | | | | Closes: https://bugs.gentoo.org/730790 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* games-action/xpilot: fix build with -native-symlinksIonen Wolkens2021-04-151-7/+13
| | | | | | Closes: https://bugs.gentoo.org/730878 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* app-office/magicpoint: fix build with -native-symlinksIonen Wolkens2021-04-151-6/+11
| | | | | | | | | | | wrt bug #729526 with clang/llvm toolchain, it now gets past ld/gcc missing but will fail due to traditional cpp. Can workaround with a gcc exception: IMAKECPP=cpp Bug: https://bugs.gentoo.org/729526 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* app-misc/oneko: fix build with -native-symlinksIonen Wolkens2021-04-151-7/+4
| | | | | | | | | | | ebuild used an ld wrapper to try to work around this, but while this removed the QA notice it'd still fail on gcc (bug #729856). Wrapper could also cause an infinite loop if user sets LD=ld. Closes: https://bugs.gentoo.org/729856 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* app-i18n/kinput2: fix build with -native-symlinksIonen Wolkens2021-04-151-3/+6
| | | | | Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* media-libs/nas: remove ar l for binutils-2.36Ionen Wolkens2021-04-151-2/+2
| | | | | | | Matches new arguments used by xorg-cf-files-1.0.6-r2 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* media-gfx/transfig: remove ar l for binutils-2.36Ionen Wolkens2021-04-151-1/+1
| | | | | | | | Matches new arguments used by xorg-cf-files-1.0.6-r2 Closes: https://bugs.gentoo.org/782517 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* games-board/xscrabble: remove ar l for binutils-2.36Ionen Wolkens2021-04-151-1/+1
| | | | | | | Matches new arguments used by xorg-cf-files-1.0.6-r2 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* games-board/xmille: remove ar l for binutils-2.36Ionen Wolkens2021-04-151-1/+1
| | | | | | | | Matches new arguments used by xorg-cf-files-1.0.6-r2 Closes: https://bugs.gentoo.org/782637 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* x11-misc/xorg-cf-files: remove ar l for binutils-2.36Ionen Wolkens2021-04-152-0/+21
| | | | | | | | | | | | | | | | l is a non-POSIX extension that for some implementation of ar(1) does: "puts any temporary files that ar generates in the current directory rather than the default temporary file directory." In <=binutils-2.35 it was instead silently ignored, but 2.36: "The ar tool's previously unused l modifier is now used for specifying dependencies of a static library." Which now caused build failures in some imake-using packages. Closes: https://bugs.gentoo.org/782514 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* x11-misc/imake: minor cleanupsIonen Wolkens2021-04-151-4/+2
| | | | | | | | | - added bug ref - moved xorg-proto to BDEPEND - removed xorg-cf-files from DEPEND (not needed at build time) Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* x11-misc/imake: ease usage with toolchain's -native-symlinksIonen Wolkens2021-04-155-0/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is to provide a more-sane way for ebuilds to fix their bugs, without really altering how imake behaves. There's four notable known runtime issues with -native-symlinks: - checks if /usr/bin/cc exists (without executing), if missing it skips setting some defines and notably causes generated Makefiles to use makedepend over gccmakedep resulting in some build failures. - `ld -v` inoring LD, no failure but gives a QA warning (bug #729630), also prevents a define from being set and given previous issue rather ensure they're conserved (slightly used in xorg-cf-files). - `gcc -E` ignoring CC/CPP, causes build failure if missing. imake has IMAKECPP to change this but can't take arguments leading to build failure if setting to $(tc-getCPP) which often has -E. - `xmkmf -a` sometimes calls imake again in an imake-generated Makefile leading to the environment's CC/LD being ignored again. Added patches to fix each. xmkmf-using ebuilds wanting to take advantage of this need something along the lines of: BDEPEND=">=x11-misc/imake-1.0.8-r1" CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \ IMAKECPP=${IMAKECPP:-$(tc-getCPP)} xmkmf ... || die emake CC="$(tc-getCC)" ... +test with -native-symlinks to ensure don't need more emake vars. (only CC should be BUILD_* here, LD not used to link) IMAKECPP is used this way to allow users to override without changing normal CPP. imake uses traditional CPP and clang notably doesn't play that well with that. Closes: https://bugs.gentoo.org/729630 Signed-off-by: Ionen Wolkens <sudinave@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* dev-python/gsd: Remove oldMichał Górny2021-04-153-48/+0
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/django-debug-toolbar: Bump to 3.2.1Michał Górny2021-04-152-0/+48
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/requests-cache: Bump to 0.6.2Michał Górny2021-04-152-0/+51
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/py-cpuinfo: Bump to 8.0.0Michał Górny2021-04-152-0/+22
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/xxhash: Bump to 2.0.2Michał Górny2021-04-152-0/+32
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/boto3: Bump to 1.17.52Michał Górny2021-04-152-0/+57
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/botocore: Bump to 1.20.52Michał Górny2021-04-152-0/+60
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/gsd: Bump to 2.4.2Michał Górny2021-04-152-0/+32
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/xlsxwriter: Bump to 1.3.9Michał Górny2021-04-152-0/+24
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/bitarray: Bump to 2.0.0Michał Górny2021-04-152-0/+22
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-python/hypothesis: Bump to 6.9.2Michał Górny2021-04-152-0/+63
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* net-im/gajim: Bump re-adds plugin installerHanno Böck2021-04-152-0/+89
| | | | | | | | | The original 1.3.1 release was missing the plugin installer, upstream has published an updated tarball. Closes: https://bugs.gentoo.org/782895 Signed-off-by: Hanno Böck <hanno@gentoo.org> Package-Manager: Portage-3.0.18, Repoman-3.0.3
* dev-java/zstd-jni: rename tarball to be less ambiguousSam James2021-04-152-3/+2
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-java/xpp3: fix static PV in SRC_URI in 1.1.4c-r3Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-java/aspectj: fix static PV in SRC_URI in 1.7.3-r1Sam James2021-04-151-2/+2
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* x11-wm/mutter: Stabilize 3.38.4 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* x11-libs/libwnck: Stabilize 2.31.0-r1 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* x11-libs/gdk-pixbuf: Stabilize 2.42.4 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-libs/libosinfo: Stabilize 1.9.0 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/osinfo-db-tools: Stabilize 1.9.0 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/osinfo-db: Stabilize 20210312 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* sys-apps/gnome-disk-utility: Stabilize 3.38.2 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-misc/modemmanager: Stabilize 1.14.8-r1 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-libs/uhttpmock: Stabilize 0.5.3 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-libs/telepathy-glib: Stabilize 0.24.2 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-libs/farstream: Stabilize 0.2.9 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-irc/telepathy-idle: Stabilize 0.2.2 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* net-im/telepathy-mission-control: Stabilize 5.16.6 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-video/gnome-video-effects: Stabilize 0.5.0 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-video/cheese: Stabilize 3.38.0 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/eog: Stabilize 3.38.2 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* gnome-extra/yelp-xsl: Stabilize 3.38.3 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* gnome-extra/yelp: Stabilize 3.38.3 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* gnome-extra/sushi: Stabilize 3.38.0 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* gnome-extra/gnome-tweaks: Stabilize 3.34.1 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* gnome-base/gnome-shell: Stabilize 3.38.4 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* gnome-base/gnome-session: Stabilize 3.38.0-r1 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* gnome-base/gnome-desktop: Stabilize 3.38.4 x86, #782847Sam James2021-04-151-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>