Re: [gentoo-dev] Guidance on distributed patented software

2021-09-25 Thread Joshua Kinard
On 9/24/2021 03:55, Hanno Böck wrote: > On Fri, 24 Sep 2021 03:46:51 -0400 > Joshua Kinard wrote: > >> If I remember this weekend, I'll e-mail the libtomcrypt author and >> see if they have any insight. One would hope they did their own >> research before possibly putting patented code out into

[gentoo-dev] [PATCH] distutils-r1.eclass: fix formatting

2021-09-25 Thread Arthur Zamarin
- mark _distutils-r1_check_all_phase_mismatch as @INTERNAL - fix list appearance for distutils_enable_tests options Signed-off-by: Arthur Zamarin --- eclass/distutils-r1.eclass | 4 1 file changed, 4 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index

[gentoo-dev] Last rites: dev-python/theano, dev-python/theano-pymc

2021-09-25 Thread Jakov Smolić
# Jakov Smolić (2021-09-25) # Upstream renamed the Theano project and continued as dev-python/aesara. # No reverse dependencies. # Removal on 2021-10-25. dev-python/theano dev-python/theano-pymc -- Jakov OpenPGP_signature Description: OpenPGP digital signature

[gentoo-dev] [PATCH v2 6/6] bzr.eclass: Drop support for EBZR_INITIAL_URI

2021-09-25 Thread Ulrich Müller
This was historically used only for GNU Emacs, which had a slow original repository and a fast (but possibly out of date) mirror. Signed-off-by: Ulrich Müller --- eclass/bzr.eclass | 25 + 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/eclass/bzr.eclass

[gentoo-dev] [PATCH v2 5/6] bzr.eclass: Don't rely on sandbox internals

2021-09-25 Thread Ulrich Müller
Signed-off-by: Ulrich Müller --- eclass/bzr.eclass | 18 -- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass index de73aed7f676..5dd5d40c13fa 100644 --- a/eclass/bzr.eclass +++ b/eclass/bzr.eclass @@ -201,16 +201,16 @@

[gentoo-dev] [PATCH v2 4/6] bzr.eclass: Fix EBZR_OFFLINE logic

2021-09-25 Thread Ulrich Müller
Signed-off-by: Ulrich Müller --- eclass/bzr.eclass | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass index d5ac999aeb8c..de73aed7f676 100644 --- a/eclass/bzr.eclass +++ b/eclass/bzr.eclass @@ -158,8 +158,8 @@ EXPORT_FUNCTIONS

[gentoo-dev] [PATCH v2 3/6] bzr.eclass: Names of internal functions, eclassdoc, messages

2021-09-25 Thread Ulrich Müller
This should not make any functional difference. Signed-off-by: Ulrich Müller --- eclass/bzr.eclass | 47 +-- 1 file changed, 25 insertions(+), 22 deletions(-) diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass index e76af5d41d57..d5ac999aeb8c 100644

[gentoo-dev] [PATCH v2 2/6] bzr.eclass: Update for dev-vcs/breezy, support EAPIs 7 and 8

2021-09-25 Thread Ulrich Müller
Signed-off-by: Ulrich Müller --- eclass/bzr.eclass | 39 +++ 1 file changed, 15 insertions(+), 24 deletions(-) diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass index fc1de9dc9ccc..e76af5d41d57 100644 --- a/eclass/bzr.eclass +++ b/eclass/bzr.eclass @@ -1,4

[gentoo-dev] [PATCH v2 1/6] bzr.eclass: Reinstate eclass

2021-09-25 Thread Ulrich Müller
Taken from commit 320fcf034f5e860454e0d2a28ed405c5b843c60c. Signed-off-by: Ulrich Müller --- eclass/bzr.eclass | 289 ++ 1 file changed, 289 insertions(+) create mode 100644 eclass/bzr.eclass diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass new

Re: [gentoo-dev] [PATCH 1/2] bzr.eclass: Reinstate eclass

2021-09-25 Thread Ulrich Mueller
> On Sat, 25 Sep 2021, Arthur Zamarin wrote: > On 25/09/2021 12:36, Ulrich Müller wrote: >> +if [[ -z ${EBZR_INITIAL_URI} ]]; then >> +bzr_initial_fetch "${EBZR_REPO_URI}" "${branch_dir}" >> +else >> +# Workaround for faster

Re: [gentoo-dev] [PATCH 1/2] bzr.eclass: Reinstate eclass

2021-09-25 Thread Arthur Zamarin
On 25/09/2021 12:36, Ulrich Müller wrote: Taken from commit 320fcf034f5e860454e0d2a28ed405c5b843c60c. Signed-off-by: Ulrich Müller --- eclass/bzr.eclass | 289 ++ 1 file changed, 289 insertions(+) create mode 100644 eclass/bzr.eclass diff --git

Re: [gentoo-dev] [PATCH 1/2] bzr.eclass: Reinstate eclass

2021-09-25 Thread Michał Górny
On Sat, 2021-09-25 at 11:36 +0200, Ulrich Müller wrote: > Taken from commit 320fcf034f5e860454e0d2a28ed405c5b843c60c. I suppose you'll want to apply my comments as followup changes. > > Signed-off-by: Ulrich Müller > --- > eclass/bzr.eclass | 289 ++

[gentoo-dev] [PATCH 2/2] bzr.eclass: Update for dev-vcs/breezy, support EAPIs 7 and 8

2021-09-25 Thread Ulrich Müller
Signed-off-by: Ulrich Müller --- eclass/bzr.eclass | 39 +++ 1 file changed, 15 insertions(+), 24 deletions(-) diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass index fc1de9dc9ccc..e76af5d41d57 100644 --- a/eclass/bzr.eclass +++ b/eclass/bzr.eclass @@ -1,4

[gentoo-dev] [PATCH 1/2] bzr.eclass: Reinstate eclass

2021-09-25 Thread Ulrich Müller
Taken from commit 320fcf034f5e860454e0d2a28ed405c5b843c60c. Signed-off-by: Ulrich Müller --- eclass/bzr.eclass | 289 ++ 1 file changed, 289 insertions(+) create mode 100644 eclass/bzr.eclass diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass new