Re: [gentoo-dev] Last rites: */* More Py2 only items

2020-06-28 Thread Alec Warner
On Sun, Jun 28, 2020 at 5:35 PM Aaron Bauman wrote: > # Aaron Bauman (2020-06-28) > # More Py2 only stuff. Plz see -dev ML for discussions > # Remove bindings, port to Py3, etc > # Removal in 30 days > app-arch/deltarpm > app-crypt/virtualsmartcard > app-text/duali > app-text/mftrace >

[gentoo-dev] Automated Package Removal and Addition Tracker, for the week ending 2020-06-28 23:59 UTC

2020-06-28 Thread Robin H. Johnson
20200626-13:05 amadio98e82738a8c acct-group/sabnzbd 20200628-12:36 whissi507799c2fe1 acct-user/cvmfs 20200626-13:07 amadio196600334c4 acct-user/sabnzbd 20200628-12:37 whissi78fc1154672 app-text/vgrep 20200628-22:58 whissi

Re: [gentoo-portage-dev] [PATCH 1/3] Add caching to catpkgsplit function

2020-06-28 Thread Sid Spry
On Sat, Jun 27, 2020, at 1:34 AM, Chun-Yu Shei wrote: > According to cProfile, catpkgsplit is called up to 1-5.5 million times > during "emerge -uDvpU --with-bdeps=y @world". Adding a dict to cache its > results reduces the time for this command from 43.53 -> 41.53 seconds -- > a 4.8% speedup. >

[gentoo-dev] Last rites: */* More Py2 only items

2020-06-28 Thread Aaron Bauman
# Aaron Bauman (2020-06-28) # More Py2 only stuff. Plz see -dev ML for discussions # Remove bindings, port to Py3, etc # Removal in 30 days app-arch/deltarpm app-crypt/virtualsmartcard app-text/duali app-text/mftrace app-text/queequeg app-text/referencer dev-libs/libmacaroons dev-libs/tut

Re: [gentoo-dev] Last rites: */* More Py2 only items

2020-06-28 Thread Aaron Bauman
On Sun, Jun 28, 2020 at 08:35:02PM -0400, Aaron Bauman wrote: > # Aaron Bauman (2020-06-28) > # More Py2 only stuff. Plz see -dev ML for discussions > # Remove bindings, port to Py3, etc > # Removal in 30 days > app-arch/deltarpm > app-crypt/virtualsmartcard > app-text/duali Add

[gentoo-dev] RFC: Standard build environment variables

2020-06-28 Thread Michael Orlitzky
As many of you probably know, ago@ has been expanding the scope of our CFLAGS/CC support to include some other common build variables: * CC * CXX * AR * CPP * NM * RANLIB * AS * LD Some of those are POSIX standards[0], * CC * AR Others are de-facto GNU make standards[1],

Re: [gentoo-dev] RFC: Standard build environment variables

2020-06-28 Thread Kent Fredric
On Sun, 28 Jun 2020 08:18:23 -0400 Michael Orlitzky wrote: > With LD set to something libtooly in the > environment, the pari build fails. We can solve that by unsetting LD in > the ebuild, but for that to be The Right Thing To Do, we should be > expecting LD to contain something libtooly, and

[gentoo-dev] Last rites: app-misc/scope

2020-06-28 Thread Mikle Kolyada
# Mikle Kolyada (2020-06-28) # Obsolete package. # Does not build. # Dead upstream and only gentoo ships it. # Removal in 30 days. app-misc/scope signature.asc Description: OpenPGP digital signature

Re: [gentoo-dev] RFC: Standard build environment variables

2020-06-28 Thread Mike Gilbert
On Sun, Jun 28, 2020 at 8:18 AM Michael Orlitzky wrote: > > As many of you probably know, ago@ has been expanding the scope of our > CFLAGS/CC support to include some other common build variables: > > * CC > * CXX > * AR > * CPP > * NM > * RANLIB > * AS > * LD > > Some of those

[gentoo-dev] Packages up for grabs: app-doc/zeal, x11-terms/pangoterm, maybe dev-ruby/neovim-ruby-client

2020-06-28 Thread Michał Górny
Hi, Due to the maintainer going AWOL, the following packages now need new maintainer: app-doc/zeal x11-terms/pangoterm Both have a single bug reported. There's also one package that fell back to ruby project as backup: dev-ruby/neovim-ruby-client -- Best regards, Michał Górny

[gentoo-portage-dev] [PATCH] ecompress: optimize docompress -x precompressed comparison

2020-06-28 Thread Zac Medico
Use sort and comm with temporary files in order to compare lists of docompress -x and precompressed files, since the file lists can be extremely large. Also strip ${D%/} from paths in order to reduce length. Bug: https://bugs.gentoo.org/721516 Suggested-by: Robin H. Johnson Signed-off-by: Zac

[gentoo-portage-dev] Re: [PATCH] ecompress: optimize docompress -x precompressed comparison

2020-06-28 Thread Zac Medico
On 6/28/20 12:54 PM, Zac Medico wrote: > + LC_COLLATE=C sort -zu "${T}/.ecompress_skip_files" > > "${T}/.ecompress_skip_files_sorted"|| die > + LC_COLLATE=C sort -zu > "${T}/.ecompress_had_precompressed" > > "${T}/.ecompress_had_precompressed_sorted" ||