[gentoo-commits] proj/sci:master commit in: sci-biology/jellyfish/

2021-06-05 Thread Jakov Smolić
commit: 53e334d850765ddcf72f8a7316b93c337bcaee45
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sun Jun  6 00:31:52 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sun Jun  6 00:32:14 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=53e334d8

sci-biology/jellyfish: Call econf in src_configure in 1.1.12

Closes: https://bugs.gentoo.org/755752
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/jellyfish/jellyfish-1.1.12.ebuild | 7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/sci-biology/jellyfish/jellyfish-1.1.12.ebuild 
b/sci-biology/jellyfish/jellyfish-1.1.12.ebuild
index f7b7e1d29..15a2d7bca 100644
--- a/sci-biology/jellyfish/jellyfish-1.1.12.ebuild
+++ b/sci-biology/jellyfish/jellyfish-1.1.12.ebuild
@@ -18,21 +18,18 @@ SLOT="1"
 KEYWORDS="~amd64 ~x86"
 IUSE="cpu_flags_x86_sse"
 
-DEPEND=""
-DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
-src_prepare(){
+src_configure() {
#  --with-sse  enable SSE
#  --with-half enable half float (16 bits)
#  --with-int128   enable int128
local myconf
use cpu_flags_x86_sse && myconf+=( --with-sse )
econf ${myconf[@]}
-   eapply_user
 }
 
-src_install(){
+src_install() {
default
# install the binary under jellyfish1 name like Debian/Ubuntu to avoid 
name clash with jellyfish2 and allow simultaneous installs
mv "${ED}"/usr/bin/jellyfish "${ED}"/usr/bin/jellyfish1 || die



[gentoo-commits] proj/sci:master commit in: sci-biology/KING/

2021-06-04 Thread Jakov Smolić
commit: 967c7d10941d7ab7a61155eee4ce838b75afc330
Author: Jakov Smolic  sartura  hr>
AuthorDate: Fri Jun  4 14:53:06 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Fri Jun  4 14:53:06 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=967c7d10

sci-biology/KING: Remove old 2.2.5

Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/KING/KING-2.2.5.ebuild | 28 
 1 file changed, 28 deletions(-)

diff --git a/sci-biology/KING/KING-2.2.5.ebuild 
b/sci-biology/KING/KING-2.2.5.ebuild
deleted file mode 100644
index 7f8d96a89..0
--- a/sci-biology/KING/KING-2.2.5.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Check family relationship and infer population structure"
-HOMEPAGE="https://people.virginia.edu/~wc9c/KING
-   https://people.virginia.edu/~wc9c/publications/pdf/BI26_2867.pdf;
-SRC_URI="https://people.virginia.edu/~wc9c/KING/KINGcode.tar.gz -> ${P}.tar.gz
-   https://people.virginia.edu/~wc9c/KING/manual.html -> 
${PN}_relationship_inference.html
-   https://people.virginia.edu/~wc9c/KING/kingpopulation.html -> 
${PN}.kingpopulation.html"
-
-LICENSE="all-rights-reserved" # Our robust relationship inference algorithm is 
implemented in a freely available software package
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-S="${WORKDIR}"
-
-src_compile(){
-   $(tc-getCXX) ${CXXFLAGS} -lm -lz -fopenmp -o king *.cpp
-}
-
-src_install(){
-   newbin {king,KING}
-   dodoc "${DISTDIR}"/"${PN}"_relationship_inference.html 
"${DISTDIR}"/"${PN}".kingpopulation.html
-}



[gentoo-commits] proj/sci:master commit in: sci-biology/KING/

2021-06-04 Thread Jakov Smolić
commit: ffd44092e74acc532b5dec90adc92e84160adcfc
Author: Jakov Smolic  sartura  hr>
AuthorDate: Fri Jun  4 14:52:22 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Fri Jun  4 14:52:42 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ffd44092

sci-biology/KING: Bump to 2.2.7

* Update SRC_URI

Closes: https://bugs.gentoo.org/794160
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/KING/KING-2.2.7.ebuild | 24 
 1 file changed, 24 insertions(+)

diff --git a/sci-biology/KING/KING-2.2.7.ebuild 
b/sci-biology/KING/KING-2.2.7.ebuild
new file mode 100644
index 0..6d01ca794
--- /dev/null
+++ b/sci-biology/KING/KING-2.2.7.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+MY_P="KING${PV}"
+DESCRIPTION="Check family relationship and infer population structure"
+HOMEPAGE="https://kingrelatedness.com;
+SRC_URI="https://www.kingrelatedness.com/executables/${MY_P}code.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}"
+
+LICENSE="all-rights-reserved" # Our robust relationship inference algorithm is 
implemented in a freely available software package
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_compile(){
+   $(tc-getCXX) ${CXXFLAGS} -lm -lz -fopenmp -o king *.cpp
+}
+
+src_install(){
+   newbin {king,KING}
+}



[gentoo-commits] proj/sci:master commit in: sci-biology/subread/files/, sci-biology/subread/

2021-02-20 Thread Jakov Smolić
commit: c2bedc8fe20d87568f4a7503474e355006693c1e
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 21:08:45 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:41 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c2bedc8f

sci-biology/subread: Fix build with gcc-10

Closes: https://bugs.gentoo.org/755539
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/subread/files/subread-2.0.1-fno-common.patch | 11 +++
 sci-biology/subread/subread-2.0.1.ebuild | 13 -
 2 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/sci-biology/subread/files/subread-2.0.1-fno-common.patch 
b/sci-biology/subread/files/subread-2.0.1-fno-common.patch
new file mode 100644
index 0..8f86840c5
--- /dev/null
+++ b/sci-biology/subread/files/subread-2.0.1-fno-common.patch
@@ -0,0 +1,11 @@
+--- a/src/gene-algorithms.h
 b/src/gene-algorithms.h
+@@ -60,7 +60,7 @@ void add_allvote_q(gene_allvote_t* allvote,int qid , int 
pos, gene_vote_number_t
+ 
+ unsigned char get_next_char(FILE * fp);
+ 
+-unsigned char * replica_index;
++extern unsigned char * replica_index;
+ 
+ extern double begin_ftime;
+ 

diff --git a/sci-biology/subread/subread-2.0.1.ebuild 
b/sci-biology/subread/subread-2.0.1.ebuild
index 18f11e5a6..a16d0af5f 100644
--- a/sci-biology/subread/subread-2.0.1.ebuild
+++ b/sci-biology/subread/subread-2.0.1.ebuild
@@ -5,14 +5,7 @@ EAPI=7
 
 DESCRIPTION="NGS suite for analysis of mapped reads, summary of 
exon/intron/gene counts"
 HOMEPAGE="http://bioinf.wehi.edu.au/featureCounts/; # no https
-if [ "$PV" == "" ]; then
-   inherit subversion
-   
ESVN_REPO_URI="https://subread.svn.sourceforge.net/svnroot/subread/trunk;
-   KEYWORDS=""
-else
-   
SRC_URI="https://sourceforge.net/projects/subread/files/${P}/${P}-source.tar.gz;
-   KEYWORDS=""
-fi
+SRC_URI="https://sourceforge.net/projects/subread/files/${P}/${P}-source.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -20,7 +13,9 @@ SLOT="0"
 DEPEND="sys-libs/zlib"
 RDEPEND="${DEPEND}"
 
-S="${S}"-source
+S="${S}-source"
+
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
 
 src_prepare(){
default



[gentoo-commits] proj/sci:master commit in: sci-biology/snap/, sci-biology/snap/files/

2021-02-20 Thread Jakov Smolić
commit: 76a7cb736ee17c7acb763b6752049c41a19cbb8b
Author: Jakov Smolic  sartura  hr>
AuthorDate: Mon Feb 15 20:21:41 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:41 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=76a7cb73

sci-biology/snap: Port to EAPI 7

Closes: https://bugs.gentoo.org/755779
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/snap/files/snap-20131129-fno-common.patch | 15 +++
 sci-biology/snap/snap-20131129.ebuild | 14 +++---
 2 files changed, 22 insertions(+), 7 deletions(-)

diff --git a/sci-biology/snap/files/snap-20131129-fno-common.patch 
b/sci-biology/snap/files/snap-20131129-fno-common.patch
new file mode 100644
index 0..4b3b1b587
--- /dev/null
+++ b/sci-biology/snap/files/snap-20131129-fno-common.patch
@@ -0,0 +1,15 @@
+--- a/Zoe/zoeTools.h
 b/Zoe/zoeTools.h
+@@ -40,9 +40,9 @@ The MIT License (MIT) - opensource.org/licenses/MIT
+ #include 
+ #include 
+ 
+-const char * zoeFunction;
+-const char * zoeConstructor;
+-const char * zoeMethod;
++extern char * zoeFunction;
++extern char * zoeConstructor;
++extern char * zoeMethod;
+ 
+ void   zoeLibInfo (void);
+ void   zoeSetProgramName (const char*);

diff --git a/sci-biology/snap/snap-20131129.ebuild 
b/sci-biology/snap/snap-20131129.ebuild
index 84305c131..bc92eff18 100644
--- a/sci-biology/snap/snap-20131129.ebuild
+++ b/sci-biology/snap/snap-20131129.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="HMM-based prokaryotic and eukaryotic gene prediction tool"
 HOMEPAGE="http://korflab.ucdavis.edu/software.html;
@@ -12,14 +12,13 @@ 
SRC_URI="http://korflab.ucdavis.edu/Software/snap-2013-11-29.tar.gz;
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
 
 S="${WORKDIR}"/snap
 
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
+
 src_prepare(){
+   default
sed -e "s#CC=\"gcc.*#CC=$(tc-getCC)#" -i Zoe/Makefile || die
sed -e "s#CC=\"gcc.*#CC=$(tc-getCC)#" -i Makefile || die
 }
@@ -31,4 +30,5 @@ src_install(){
doins HMM/[a-zA-Z]*.hmm
dobin snap fathom forge *.pl
dodoc 00README
+   einstalldocs
 }



[gentoo-commits] proj/sci:master commit in: sci-biology/rnaplex/, sci-biology/rnaplex/files/

2021-02-20 Thread Jakov Smolić
commit: 2b0744a231b93f5e09b63375005fb6e522999c9a
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 20:21:18 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:41 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2b0744a2

sci-biology/rnaplex: Port to EAPI 7

Closes: https://bugs.gentoo.org/755770
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/rnaplex/files/rnaplex-0.2-inline.patch | 14 ++
 sci-biology/rnaplex/rnaplex-0.2.ebuild | 17 -
 2 files changed, 26 insertions(+), 5 deletions(-)

diff --git a/sci-biology/rnaplex/files/rnaplex-0.2-inline.patch 
b/sci-biology/rnaplex/files/rnaplex-0.2-inline.patch
new file mode 100644
index 0..30d05cd97
--- /dev/null
+++ b/sci-biology/rnaplex/files/rnaplex-0.2-inline.patch
@@ -0,0 +1,14 @@
+--- a/lib/fold.c
 b/lib/fold.c
+@@ -64,9 +64,9 @@ PRIVATE void backtrack(const char *sequence, int s);
+ PRIVATE int fill_arrays(const char *sequence);
+ /*@unused@*/
+ INLINE PRIVATE  int oldLoopEnergy(int i, int j, int p, int q, int type, int 
type_2);
+-INLINE int  LoopEnergy(int n1, int n2, int type, int type_2,
++int  LoopEnergy(int n1, int n2, int type, int type_2,
+int si1, int sj1, int sp1, int sq1);
+-INLINE int  HairpinE(int size, int type, int si1, int sj1, const char 
*string);
++int  HairpinE(int size, int type, int si1, int sj1, const char *string);
+ 
+ #define MAXSECTORS  500 /* dimension for a backtrack array */
+ #define LOCALITY0.  /* locality parameter for base-pairs */

diff --git a/sci-biology/rnaplex/rnaplex-0.2.ebuild 
b/sci-biology/rnaplex/rnaplex-0.2.ebuild
index 11de0007c..5892f4676 100644
--- a/sci-biology/rnaplex/rnaplex-0.2.ebuild
+++ b/sci-biology/rnaplex/rnaplex-0.2.ebuild
@@ -1,17 +1,24 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-MY_P=RNAplex-${PV}
+inherit flag-o-matic
 
+MY_P=RNAplex-${PV}
 DESCRIPTION="RNA-RNA interaction search"
 HOMEPAGE="http://www.bioinf.uni-leipzig.de/Software/RNAplex/;
 SRC_URI="http://www.bioinf.uni-leipzig.de/Software/RNAplex/${MY_P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE=""
 KEYWORDS="~amd64 ~x86"
 
-S=${WORKDIR}/${MY_P}
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=( "${FILESDIR}"/${P}-inline.patch )
+
+src_configure() {
+   append-cflags -fcommon
+   default
+}



[gentoo-commits] proj/sci:master commit in: sci-biology/mrfast/

2021-02-20 Thread Jakov Smolić
commit: 02be6bccd47063371eca97a72093539d61fc303f
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 20:18:39 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:41 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=02be6bcc

sci-biology/mrfast: Port to EAPI 7

Closes: https://bugs.gentoo.org/755764
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/mrfast/mrfast-2.6.0.1.ebuild | 13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/sci-biology/mrfast/mrfast-2.6.0.1.ebuild 
b/sci-biology/mrfast/mrfast-2.6.0.1.ebuild
index 3c81f7281..5d89c0822 100644
--- a/sci-biology/mrfast/mrfast-2.6.0.1.ebuild
+++ b/sci-biology/mrfast/mrfast-2.6.0.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-inherit eutils toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="Micro Read Fast Alignment Search Tool"
 HOMEPAGE="http://mrfast.sourceforge.net/;
@@ -11,10 +11,10 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-IUSE=""
 KEYWORDS="~amd64"
 
 src_prepare() {
+   default
sed \
-e '/^CC/s:=:?=:g' \
-e 's/CFLAGS =/CFLAGS +=/' \
@@ -22,7 +22,12 @@ src_prepare() {
-e 's:-O3.*::g' \
-e 's:$(CC) $(OBJECTS):$(CC) $(LDFLAGS) $(OBJECTS):g' \
-i Makefile || die
+}
+
+src_configure() {
tc-export CC
+   append-cflags -fcommon
+   default
 }
 
 src_install() {



[gentoo-commits] proj/sci:master commit in: sci-biology/grappa/files/, sci-biology/grappa/

2021-02-20 Thread Jakov Smolić
commit: 9abaa3304eb07a14b179b925cffd428a8ffd4681
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 20:52:34 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:41 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9abaa330

sci-biology/grappa: Apply gcc-10 workaround

Closes: https://bugs.gentoo.org/755311
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/grappa/files/grappa-2.0-inline.patch | 18 ++
 sci-biology/grappa/grappa-2.0.ebuild |  9 +
 2 files changed, 27 insertions(+)

diff --git a/sci-biology/grappa/files/grappa-2.0-inline.patch 
b/sci-biology/grappa/files/grappa-2.0-inline.patch
new file mode 100644
index 0..a78f394e6
--- /dev/null
+++ b/sci-biology/grappa/files/grappa-2.0-inline.patch
@@ -0,0 +1,18 @@
+--- a/greedy_median.c
 b/greedy_median.c
+@@ -7,7 +7,6 @@
+chosen, including the original */
+ 
+ /* i->succ1[i] is the chosen adjacency */
+-INLINE int
+ finish1 ( int i, int *count, int *degree, int *succ1, int *succ2,
+   int *pred1, int *pred2, int *tour, int *otherEnd, int num_genes )
+ {
+@@ -82,7 +81,6 @@ finish1 ( int i, int *count, int *degree, int *succ1, int 
*succ2,
+ 
+ 
+ /* i->succ2[i] is the chosen adjacency */
+-INLINE int
+ finish2 ( int i, int *count, int *degree, int *succ1, int *succ2,
+   int *pred1, int *pred2, int *tour, int *otherEnd, int num_genes )
+ {

diff --git a/sci-biology/grappa/grappa-2.0.ebuild 
b/sci-biology/grappa/grappa-2.0.ebuild
index ceb0c34c9..df0392717 100644
--- a/sci-biology/grappa/grappa-2.0.ebuild
+++ b/sci-biology/grappa/grappa-2.0.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=7
 
+inherit flag-o-matic
+
 MY_P="GRAPPA20"
 
 DESCRIPTION="Genome Rearrangements Analysis under Parsimony and other 
Phylogenetic Algorithms"
@@ -15,11 +17,18 @@ KEYWORDS="~amd64 ~x86"
 
 S="${WORKDIR}/${MY_P}"
 
+PATCHES=( "${FILESDIR}"/${P}-inline.patch )
+
 src_prepare() {
default
sed -i -e '/CFLAGS := -mcpu/ d' -e 's/\(CFLAGS := -D${OS}\)/\1 
${CFLAGS}/' "${S}/Makefile" || die
 }
 
+src_configure() {
+   append-cflags -fcommon
+   default
+}
+
 src_install() {
dobin grappa
dosym grappa /usr/bin/invdist



[gentoo-commits] proj/sci:master commit in: sci-biology/erpin/, sci-biology/erpin/files/

2021-02-20 Thread Jakov Smolić
commit: f8b429d596992ff8426674833a582610562d198e
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 21:17:59 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:41 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=f8b429d5

sci-biology/erpin: Port to EAPI 7

Closes: https://bugs.gentoo.org/755092
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/erpin/erpin-5.5b.ebuild| 14 +++---
 .../erpin/files/erpin-5.5b-fno-common.patch| 55 ++
 2 files changed, 63 insertions(+), 6 deletions(-)

diff --git a/sci-biology/erpin/erpin-5.5b.ebuild 
b/sci-biology/erpin/erpin-5.5b.ebuild
index be821cf62..448e5d3aa 100644
--- a/sci-biology/erpin/erpin-5.5b.ebuild
+++ b/sci-biology/erpin/erpin-5.5b.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 inherit toolchain-funcs
 
@@ -15,17 +15,19 @@ SRC_URI="
 
 LICENSE="all-rights-reserved"
 SLOT="0"
-IUSE=""
 KEYWORDS="~amd64 ~x86"
 
 DEPEND="!sys-cluster/maui" # file collision
-RDEPEND=""
+RDEPEND="${DEPEND}"
 
 S="${WORKDIR}"
 
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
+
 src_prepare() {
-   rm -f erpin${PV}.serv/{bin,lib}/* || die
-   rm -f ErpinBatch.${ERPIN_BATCH_V}/erpin* || die
+   default
+   rm erpin${PV}.serv/{bin,lib}/* || die
+   rm ErpinBatch.${ERPIN_BATCH_V}/erpin* || die
find -name '*.mk' | xargs sed -i \
-e 's/strip $@/echo skipping strip $@/' \
-e '/CFLAGS =/ d' \
@@ -44,6 +46,6 @@ src_install() {
insinto /usr/share/${PN}
doins -r erpin${PV}.serv/scripts ErpinBatch.${ERPIN_BATCH_V}
exeinto /usr/share/${PN}
-   newexe "${FILESDIR}/erpincommand-${PV}.pl" erpincommand
+   newexe "${FILESDIR}"/erpincommand-${PV}.pl erpincommand
dodoc erpin${PV}.serv/doc/doc*.pdf
 }

diff --git a/sci-biology/erpin/files/erpin-5.5b-fno-common.patch 
b/sci-biology/erpin/files/erpin-5.5b-fno-common.patch
new file mode 100644
index 0..bd38aacca
--- /dev/null
+++ b/sci-biology/erpin/files/erpin-5.5b-fno-common.patch
@@ -0,0 +1,55 @@
+--- a/erpin5.5b.serv/include/rnaIV.h
 b/erpin5.5b.serv/include/rnaIV.h
+@@ -178,10 +178,10 @@ typedef struct {
+   double  *vals;
+   } Histo;
+ 
+-Histo  MainMaskEvals; /* histogramme des E-values des detections 
*/
++extern Histo  MainMaskEvals; /* histogramme des E-values des 
detections */
+   /* du masque principal 
*/
+-Histo  MainMaskDetects;/* histogramme des detections du masque principal 
*/
+-MapMainMaskMap;   /* pour l'etalonnage de l'axe de 'MainMaskDetects' 
*/
++extern Histo  MainMaskDetects;/* histogramme des detections du masque 
principal */
++extern MapMainMaskMap;   /* pour l'etalonnage de l'axe de 
'MainMaskDetects' */
+ 
+ /*
+ 
---
+--- a/erpin5.5b.serv/libsrc/dhisto.c
 b/erpin5.5b.serv/libsrc/dhisto.c
+@@ -36,6 +36,9 @@ void   AddToDetectsHisto(double x);
+ void   PrintHisto(Histo hist, char *filename);
+ Histo  ReadHisto(char *filename);
+ void   PrintScoresHisto(Context *ctxt);
++Histo MainMaskDetects;
++Histo MainMaskEvals;
++Map   MainMaskMap;
+ 
+ 
/*=
+  InitDetectsHisto(): Initialise l'histogramme des detections gerees par 
'ctxt'.
+@@ -44,9 +47,6 @@ void   PrintScoresHisto(Context *ctxt);
+ 
+ void InitDetectsHisto(Context *ctxt)
+ {
+-  extern Histo MainMaskDetects;
+-  extern Histo MainMaskEvals;
+-  extern Map   MainMaskMap;
+   
+   MainMaskDetects = SetupHist(ctxt->mask->threshold, MainMaskEvals.hmax,
+   DELTA_H, 0);
+@@ -63,8 +63,6 @@ void InitDetectsHisto(Context *ctxt)
+ 
+ void AddToDetectsHisto(double x)
+ {
+-  extern Histo MainMaskDetects;
+-  extern Map   MainMaskMap;
+   int index;
+ 
+   if (x > MainMaskDetects.hmin && x < MainMaskDetects.hmax)
+@@ -132,7 +130,6 @@ Histo ReadHisto(char *filename)
+ 
+ void PrintScoresHisto(Context *ctxt)
+ {
+-  extern Histo MainMaskDetects;
+ 
+   if (ctxt->hist == ON)
+   {



[gentoo-commits] proj/sci:master commit in: sci-mathematics/ltl2ba/

2021-02-20 Thread Jakov Smolić
commit: 0713dd406eeb0fab717f46f357d3c2524e5fccc2
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 20:16:00 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:42 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=0713dd40

sci-mathematics/ltl2ba: Port to EAPI 7

Closes: https://bugs.gentoo.org/755374
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-mathematics/ltl2ba/ltl2ba-1.1.ebuild | 20 +++-
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/sci-mathematics/ltl2ba/ltl2ba-1.1.ebuild 
b/sci-mathematics/ltl2ba/ltl2ba-1.1.ebuild
index 29609c146..6172bb985 100644
--- a/sci-mathematics/ltl2ba/ltl2ba-1.1.ebuild
+++ b/sci-mathematics/ltl2ba/ltl2ba-1.1.ebuild
@@ -1,29 +1,31 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
+
+inherit flag-o-matic
 
 DESCRIPTION="Fast LTL to Buechi Automata Translation"
-HOMEPAGE="http://www.lsv.ens-cachan.fr/~gastin/${PN}/;
+HOMEPAGE="http://www.lsv.ens-cachan.fr/~gastin/ltl2ba;
 SRC_URI="http://www.lsv.ens-cachan.fr/~gastin/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND=""
 
-src_compile() {
+src_prepare() {
+   default
sed -i Makefile \
-e "s/CC=gcc/#CC=gcc/g" \
-   -e "s/CFLAGS= -O3 -ansi -DNXT/CFLAGS+= -ansi -DNXT/g"
+   -e "s/CFLAGS= -O3 -ansi -DNXT/CFLAGS+= -ansi -DNXT/g" || die
+}
 
+src_configure() {
+   append-cflags -fcommon
default
 }
 
 src_install() {
-   dobin ltl2ba || die "dobin failed"
+   dobin ltl2ba
dodoc README
 }



[gentoo-commits] proj/sci:master commit in: sci-biology/miranda/

2021-02-20 Thread Jakov Smolić
commit: db54d87b772d63b32065d310116ca6396bbc2b2b
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 21:10:43 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:41 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=db54d87b

sci-biology/miranda: Port to EAPI 7

Closes: https://bugs.gentoo.org/755566
Signed-off-by: Jakov Smolic  sartura.hr>

 sci-biology/miranda/miranda-3.3a.ebuild | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/sci-biology/miranda/miranda-3.3a.ebuild 
b/sci-biology/miranda/miranda-3.3a.ebuild
index 1bf1c058c..dac4f38be 100644
--- a/sci-biology/miranda/miranda-3.3a.ebuild
+++ b/sci-biology/miranda/miranda-3.3a.ebuild
@@ -1,7 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
+
+inherit flag-o-matic
 
 MY_PN=miRanda
 MY_P=${MY_PN}-${PV}
@@ -12,9 +14,11 @@ 
SRC_URI="http://cbio.mskcc.org/microrna_data/${MY_PN}-aug2010.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE=""
 KEYWORDS="~amd64 ~x86"
 
-S=${WORKDIR}/${MY_P}
+S="${WORKDIR}/${MY_P}"
 
-DOCS=( AUTHORS ChangeLog NEWS README THANKS )
+src_configure() {
+   append-cflags -fcommon
+   default
+}



[gentoo-commits] proj/sci:master commit in: sci-biology/samstat/, sci-biology/samstat/files/

2021-02-20 Thread Jakov Smolić
commit: 6bc33b33b7c919869ab6c5f03854f10b8b14a030
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 20:25:45 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:41 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6bc33b33

sci-biology/samstat: Port to EAPI 7

Closes: https://bugs.gentoo.org/755773
Signed-off-by: Jakov Smolic  sartura.hr>

 .../samstat/files/samstat-1.5.1-fno-common.patch   | 31 ++
 sci-biology/samstat/samstat-1.5.1.ebuild   |  9 +++
 2 files changed, 35 insertions(+), 5 deletions(-)

diff --git a/sci-biology/samstat/files/samstat-1.5.1-fno-common.patch 
b/sci-biology/samstat/files/samstat-1.5.1-fno-common.patch
new file mode 100644
index 0..d5bed9ed6
--- /dev/null
+++ b/sci-biology/samstat/files/samstat-1.5.1-fno-common.patch
@@ -0,0 +1,31 @@
+--- a/src/nuc_code.c
 b/src/nuc_code.c
+@@ -29,6 +29,9 @@
+ #include 
+ #include "nuc_code.h"
+ 
++unsigned int rev_nuc_code[5];
++unsigned int nuc_code[256];
++
+ 
+ /** \fn void init_nuc_code()
+  \brief Initializes nucleotide conversion arrays. 
+--- a/src/nuc_code.h
 b/src/nuc_code.h
+@@ -32,14 +32,14 @@
+  *
+  *
+  */
+-unsigned int nuc_code[256];
++extern unsigned int nuc_code[256];
+ 
+ /**
+  * @brief Converts 0-5 nucleotides into printable ASCII to.
+  *
+  *
+  */
+-unsigned int rev_nuc_code[5];
++extern unsigned int rev_nuc_code[5];
+ 
+ void init_nuc_code(void);
+ 

diff --git a/sci-biology/samstat/samstat-1.5.1.ebuild 
b/sci-biology/samstat/samstat-1.5.1.ebuild
index cf409eeb0..5f1922467 100644
--- a/sci-biology/samstat/samstat-1.5.1.ebuild
+++ b/sci-biology/samstat/samstat-1.5.1.ebuild
@@ -1,9 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-
-inherit eutils
+EAPI=7
 
 DESCRIPTION="Statistics of BAM/SAM files"
 HOMEPAGE="http://samstat.sourceforge.net; # no https
@@ -12,7 +10,8 @@ 
SRC_URI="https://sourceforge.net/projects/samstat/files/${P}.tar.gz;
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE=""
 
 DEPEND="sci-biology/samtools:="
 RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )



[gentoo-commits] proj/sci:master commit in: sci-biology/tagdust/files/, sci-biology/tagdust/

2021-02-20 Thread Jakov Smolić
commit: 9d417a388180071cd3607dd05447c20ccd789e21
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 20:30:34 2021 +
Commit:     Jakov Smolić  sartura  hr>
CommitDate: Sat Feb 20 21:57:41 2021 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9d417a38

sci-biology/tagdust: Port to EAPI 7

Closes: https://bugs.gentoo.org/755785
Signed-off-by: Jakov Smolic  sartura.hr>

 .../files/tagdust-20101028-fno-common.patch| 77 ++
 sci-biology/tagdust/tagdust-20101028.ebuild| 17 +++--
 2 files changed, 85 insertions(+), 9 deletions(-)

diff --git a/sci-biology/tagdust/files/tagdust-20101028-fno-common.patch 
b/sci-biology/tagdust/files/tagdust-20101028-fno-common.patch
new file mode 100644
index 0..01fd2d274
--- /dev/null
+++ b/sci-biology/tagdust/files/tagdust-20101028-fno-common.patch
@@ -0,0 +1,77 @@
+--- a/background.c
 b/background.c
+@@ -28,6 +28,9 @@
+ #include 
+ #define MIN(a, b) (a > b ? b : a)
+ 
++extern int *seed;
++extern int nuc_code[255];
++
+ /*
+  
+  Collects length and nucleotide composition of the input reads. 
Simultaneously counts how many sequences are covered by x,x+1 ... percent 
library sequences
+--- a/detect.h
 b/detect.h
+@@ -70,11 +70,11 @@ struct stats_dat{
+   int *p_counts;
+ };
+ 
+-int nuc_code[255]; 
++extern int nuc_code[255]; 
+ 
+-int *seed;
++extern int *seed;
+ 
+-int linewrap;
++extern int linewrap;
+ 
+ void init_nuc_code();
+ 
+--- a/input.c
 b/input.c
+@@ -28,6 +28,10 @@
+ #include 
+ 
+ static int numseq = 0;
++extern int linewrap;
++extern int *seed;
++extern int nuc_code[255];
++
+ 
+ 
+ int compare(const void* a, const void* b)
+--- a/interface.c
 b/interface.c
+@@ -33,6 +33,8 @@
+ #define OPT_FASTA 5
+ #define OPT_MODEL 6
+ 
++extern int linewrap;
++
+ struct parameters* interface(struct parameters* param,int argc, char **argv)
+ {
+   int c;
+--- a/main.c
 b/main.c
+@@ -27,6 +27,10 @@
+ #include "detect.h"
+ #include "sys/time.h"
+ 
++int linewrap;
++int *seed;
++int nuc_code[255];
++
+ 
+ int main (int argc, char * argv[]) {
+   struct parameters* param = 0;
+--- a/test_sequence.c
 b/test_sequence.c
+@@ -26,6 +26,8 @@
+ 
+ #include "detect.h"
+ 
++extern int *seed;
++
+ /* 
+  Checks if a sequence is covered by library sequences. Return the fraction of 
residues covered by library sequences.  
+ */

diff --git a/sci-biology/tagdust/tagdust-20101028.ebuild 
b/sci-biology/tagdust/tagdust-20101028.ebuild
index 1357a0da5..2f5a1777e 100644
--- a/sci-biology/tagdust/tagdust-20101028.ebuild
+++ b/sci-biology/tagdust/tagdust-20101028.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 DESCRIPTION="Trim multimers of various primers/adapter from Illumina datasets"
 HOMEPAGE="http://genome.gsc.riken.jp/osc/english/dataresource;
@@ -10,23 +10,22 @@ 
SRC_URI="http://genome.gsc.riken.jp/osc/english/software/src/tagdust.tgz -> ${P}
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE=""
 
-DEPEND=""
-RDEPEND="${DEPEND}"
+S="${WORKDIR}/tagdust"
 
-S="${WORKDIR}"/tagdust
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
 
 src_prepare(){
+   default
sed -e "s/^CFLAGS/#CFLAGS/" -e "s#/usr/local/bin#\$(DESTDIR)/usr/bin#" \
-   -e "s#/usr/share/man/#\$(DESTDIR)/usr/share/man/#" -i Makefile
+   -e "s#/usr/share/man/#\$(DESTDIR)/usr/share/man/#" -i Makefile 
|| die
 }
 
-src_install(){
+src_install() {
doman tagdust.1
dobin tagdust
insinto /usr/share/tagdust/Illumina
-   doins "test/"solexa*.fa
+   doins test/solexa*.fa
insinto /usr/share/tagdust
-   doins "test/"protocol.txt README
+   doins test/protocol.txt README
 }



[gentoo-commits] repo/gentoo:master commit in: sys-fs/simple-mtpfs/

2021-08-27 Thread Jakov Smolić
commit: 7859a92e2377ad79b62f31ce69cf629530406116
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Aug 27 23:00:43 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 23:00:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7859a92e

sys-fs/simple-mtpfs: Update my e-mail address

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-fs/simple-mtpfs/metadata.xml | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/sys-fs/simple-mtpfs/metadata.xml b/sys-fs/simple-mtpfs/metadata.xml
index 642b01c3818..4da39f44a8e 100644
--- a/sys-fs/simple-mtpfs/metadata.xml
+++ b/sys-fs/simple-mtpfs/metadata.xml
@@ -1,13 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
-   Jakov Smolic
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
+   
+   jsmo...@gentoo.org
+       Jakov Smolić


SIMPLE-MTPFS (Simple Media Transfer Protocol FileSystem) is a 
file system for



[gentoo-commits] repo/gentoo:master commit in: sys-fs/bashmount/

2021-08-27 Thread Jakov Smolić
commit: 546894479b86f9e7f0d312dbf9929920ae9608c0
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Aug 27 23:00:41 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 23:00:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54689447

sys-fs/bashmount: Update my e-mail address

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-fs/bashmount/metadata.xml | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/sys-fs/bashmount/metadata.xml b/sys-fs/bashmount/metadata.xml
index 1c4ef5967dc..5888b29dafb 100644
--- a/sys-fs/bashmount/metadata.xml
+++ b/sys-fs/bashmount/metadata.xml
@@ -1,13 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
-   Jakov Smolic
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
+   
+   jsmo...@gentoo.org
+       Jakov Smolić


bashmount



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/kergen/

2021-08-27 Thread Jakov Smolić
commit: 231e21d92d0aed9ddf3a9df9da942d84b1ff031d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Aug 27 23:00:45 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 23:00:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=231e21d9

sys-kernel/kergen: Update my e-mail address

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-kernel/kergen/metadata.xml | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/sys-kernel/kergen/metadata.xml b/sys-kernel/kergen/metadata.xml
index 205073431f2..80e4b42420b 100644
--- a/sys-kernel/kergen/metadata.xml
+++ b/sys-kernel/kergen/metadata.xml
@@ -1,13 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-jakov.smo...@sartura.hr
-Jakov Smolic
-  
-  
-proxy-ma...@gentoo.org
-Proxy Maintainers
+  
+jsmo...@gentoo.org
+Jakov Smolić
   
   
 nichoski/kergen



[gentoo-commits] repo/gentoo:master commit in: x11-misc/i3lock/

2021-08-27 Thread Jakov Smolić
commit: 66c4f8fa9957fab29453fd12ffe4709491fb7cf7
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Aug 27 23:00:46 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 23:00:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66c4f8fa

x11-misc/i3lock: Update my e-mail address

Signed-off-by: Jakov Smolić  gentoo.org>

 x11-misc/i3lock/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/x11-misc/i3lock/metadata.xml b/x11-misc/i3lock/metadata.xml
index 0799e01923f..482b18c51bf 100644
--- a/x11-misc/i3lock/metadata.xml
+++ b/x11-misc/i3lock/metadata.xml
@@ -1,9 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
-   Jakov Smolic
+   
+   jsmo...@gentoo.org
+       Jakov Smolić


mare...@gentoo.org



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/dracut-crypt-ssh/

2021-08-27 Thread Jakov Smolić
commit: 4f7ca173252b1c8f99a6b30577f0e5187adaf0ef
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Aug 27 23:00:44 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 23:00:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f7ca173

sys-kernel/dracut-crypt-ssh: Update my e-mail address

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-kernel/dracut-crypt-ssh/metadata.xml | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/sys-kernel/dracut-crypt-ssh/metadata.xml 
b/sys-kernel/dracut-crypt-ssh/metadata.xml
index 2a09bd74446..f3110fdc62c 100644
--- a/sys-kernel/dracut-crypt-ssh/metadata.xml
+++ b/sys-kernel/dracut-crypt-ssh/metadata.xml
@@ -1,13 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
-   Jakov Smolic
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
+   
+   jsmo...@gentoo.org
+       Jakov Smolić


 crypt-ssh is a dracut module which allows remote unlocking of block devices 
encrypted with LUKS via ssh, during the initramfs stage of the boot.



[gentoo-commits] repo/gentoo:master commit in: sys-fs/clamfs/

2021-08-27 Thread Jakov Smolić
commit: 0d244697f282fc553826eff6a18999f418626da4
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Aug 27 23:00:42 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 23:00:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d244697

sys-fs/clamfs: Update my e-mail address

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-fs/clamfs/metadata.xml | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/sys-fs/clamfs/metadata.xml b/sys-fs/clamfs/metadata.xml
index 7cf03aa8bf4..20ebeec3b55 100644
--- a/sys-fs/clamfs/metadata.xml
+++ b/sys-fs/clamfs/metadata.xml
@@ -1,13 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-jakov.smo...@sartura.hr
-Jakov Smolic
-  
-  
-proxy-ma...@gentoo.org
-Proxy Maintainers
+  
+jsmo...@gentoo.org
+Jakov Smolić
   
   
   ClamFS is a FUSE-based user-space file system for Linux with on-access



[gentoo-commits] repo/gentoo:master commit in: media-gfx/chafa/, acct-user/snapserver/, acct-group/snapserver/, ...

2021-08-27 Thread Jakov Smolić
commit: 176bd3b50ac770fc0d670a162e592a2023045aaf
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Aug 27 23:00:34 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 23:00:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=176bd3b5

*/*: Update my e-mail address

Signed-off-by: Jakov Smolić  gentoo.org>

 acct-group/snapserver/metadata.xml   | 10 +++---
 acct-user/snapclient/metadata.xml| 10 +++---
 acct-user/snapserver/metadata.xml|  2 +-
 app-admin/gixy/metadata.xml  | 10 +++---
 app-crypt/nwipe/metadata.xml | 10 +++---
 app-crypt/scrypt/metadata.xml| 10 +++---
 dev-cpp/aixlog/metadata.xml  | 10 +++---
 dev-cpp/popl/metadata.xml| 10 +++---
 dev-cpp/sparsehash/metadata.xml  | 10 +++---
 dev-db/pgcli/metadata.xml| 10 +++---
 dev-embedded/avra/metadata.xml   | 10 +++---
 dev-libs/json-c/metadata.xml |  6 +++---
 dev-libs/libuv/metadata.xml  |  4 ++--
 dev-libs/npth/metadata.xml   | 10 +++---
 dev-libs/uthash/metadata.xml | 10 +++---
 dev-python/bluelet/metadata.xml  | 10 +++---
 dev-python/cleo/metadata.xml | 10 +++---
 dev-python/clikit/metadata.xml   | 10 +++---
 dev-python/crashtest/metadata.xml| 10 +++---
 dev-python/pastel/metadata.xml   | 10 +++---
 dev-python/pendulum/metadata.xml | 10 +++---
 dev-python/pylev/metadata.xml| 10 +++---
 dev-python/pytzdata/metadata.xml | 10 +++---
 dev-util/cgdb/metadata.xml   | 10 +++---
 dev-util/clippy/metadata.xml |  8 ++--
 dev-util/cpputest/metadata.xml   | 10 +++---
 dev-util/ply/metadata.xml|  6 +++---
 media-gfx/chafa/metadata.xml | 10 +++---
 media-libs/libheif/metadata.xml  | 10 +++---
 media-sound/snapcast/metadata.xml| 10 +++---
 net-analyzer/zmap/metadata.xml   | 10 +++---
 net-dns/https_dns_proxy/metadata.xml | 10 +++---
 net-irc/quasselgrep/metadata.xml | 10 +++---
 net-libs/biblesync/metadata.xml  |  6 +++---
 net-libs/libnetconf2/metadata.xml|  8 ++--
 net-libs/libwebsockets/metadata.xml  |  6 +++---
 net-libs/libyang/metadata.xml| 10 +++---
 net-misc/frr/metadata.xml|  4 ++--
 net-misc/mstpd/metadata.xml  | 10 +++---
 net-misc/netopeer2/metadata.xml  |  8 ++--
 net-misc/sysrepo/metadata.xml|  8 ++--
 net-vpn/6tunnel/metadata.xml | 10 +++---
 sys-devel/bmake/metadata.xml |  4 ++--
 sys-devel/elftoolchain/metadata.xml  |  8 ++--
 44 files changed, 122 insertions(+), 266 deletions(-)

diff --git a/acct-group/snapserver/metadata.xml 
b/acct-group/snapserver/metadata.xml
index 6d821181d63..ce9d0cf1400 100644
--- a/acct-group/snapserver/metadata.xml
+++ b/acct-group/snapserver/metadata.xml
@@ -1,12 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
-   Jakov Smolic
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
+   
+   jsmo...@gentoo.org
+       Jakov Smolić

 

diff --git a/acct-user/snapclient/metadata.xml 
b/acct-user/snapclient/metadata.xml
index 6d821181d63..ce9d0cf1400 100644
--- a/acct-user/snapclient/metadata.xml
+++ b/acct-user/snapclient/metadata.xml
@@ -1,12 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
-   Jakov Smolic
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
+   
+   jsmo...@gentoo.org
+       Jakov Smolić

 

diff --git a/acct-user/snapserver/metadata.xml 
b/acct-user/snapserver/metadata.xml
index 8f44432ba47..ce9d0cf1400 100644
--- a/acct-user/snapserver/metadata.xml
+++ b/acct-user/snapserver/metadata.xml
@@ -3,6 +3,6 @@
 

jsmo...@gentoo.org
-   Jakov Smolic
+       Jakov Smolić

 

diff --git a/app-admin/gixy/metadata.xml b/app-admin/gixy/metadata.xml
index aca54e70bbf..a8df410a1ef 100644
--- a/app-admin/gixy/metadata.xml
+++ b/app-admin/gixy/metadata.xml
@@ -1,13 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
-   Jakov Smolic
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
+   
+   jsmo...@gentoo.org
+       Jakov Smolić


yandex/gixy

diff --git a/app-crypt/nwipe/metadata.xml b/app-crypt/nwipe/metadata.xml
index 007c834756f..dfa7e184c06 100644
--- a/app-crypt/nwipe/metadata.xml
+++ b/app-crypt/nwipe/metadata.xml
@@ -1,13 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
-  

[gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/

2021-08-27 Thread Jakov Smolić
commit: 05a318da00186e3af14440c6781c40e93cdac7fb
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Aug 27 23:00:42 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 23:00:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05a318da

sys-fs/mtd-utils: Update my e-mail address

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-fs/mtd-utils/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/mtd-utils/metadata.xml b/sys-fs/mtd-utils/metadata.xml
index 508bbcf2140..4b798a4a9da 100644
--- a/sys-fs/mtd-utils/metadata.xml
+++ b/sys-fs/mtd-utils/metadata.xml
@@ -6,8 +6,8 @@
 Robin H. Johnson
   
   
-jakov.smo...@sartura.hr
-Jakov Smolic
+jsmo...@gentoo.org
+    Jakov Smolić
   
   
 embed...@gentoo.org



[gentoo-commits] repo/gentoo:master commit in: x11-misc/i3blocks/

2021-08-27 Thread Jakov Smolić
commit: 25597e1a5fe08184dae885f361e378e208cc1f53
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Aug 27 23:00:46 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 23:00:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25597e1a

x11-misc/i3blocks: Update my e-mail address

Signed-off-by: Jakov Smolić  gentoo.org>

 x11-misc/i3blocks/metadata.xml | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/x11-misc/i3blocks/metadata.xml b/x11-misc/i3blocks/metadata.xml
index a717e8561b8..f2aee7a2415 100644
--- a/x11-misc/i3blocks/metadata.xml
+++ b/x11-misc/i3blocks/metadata.xml
@@ -1,13 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
-   Jakov Smolic
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
+   
+   jsmo...@gentoo.org
+       Jakov Smolić


vivien/i3blocks



[gentoo-commits] repo/gentoo:master commit in: acct-user/snapserver/

2021-08-27 Thread Jakov Smolić
commit: 4cfb748ee5c1ee54b6373ce64e980bb0b5accc55
Author: Jakov Smolic  gentoo  org>
AuthorDate: Fri Aug 27 22:05:16 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Aug 27 22:05:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfb748e

acct-user/snapserver: Update my e-mail address

Signed-off-by: Jakov Smolic  gentoo.org>

 acct-user/snapserver/metadata.xml | 8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/acct-user/snapserver/metadata.xml 
b/acct-user/snapserver/metadata.xml
index 6d821181d63..8f44432ba47 100644
--- a/acct-user/snapserver/metadata.xml
+++ b/acct-user/snapserver/metadata.xml
@@ -1,12 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jakov.smo...@sartura.hr
+   
+   jsmo...@gentoo.org
Jakov Smolic

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
 



[gentoo-commits] repo/gentoo:master commit in: sys-devel/bmake/

2021-08-28 Thread Jakov Smolić
commit: 31cf99ee8ef682a5382b639c83d2beb859f3facd
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Aug 28 20:58:53 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Aug 28 20:58:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31cf99ee

sys-devel/bmake: Stabilize 20210704 on amd64

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-devel/bmake/bmake-20210704.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/bmake/bmake-20210704.ebuild 
b/sys-devel/bmake/bmake-20210704.ebuild
index 5d5f1563085..f3e4c0d04f6 100644
--- a/sys-devel/bmake/bmake-20210704.ebuild
+++ b/sys-devel/bmake/bmake-20210704.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 
 # Skip failing test (sandbox and csh)
 PATCHES=( "${FILESDIR}"/${PN}-20210206-tests.patch )



[gentoo-commits] repo/gentoo:master commit in: sys-devel/bmake/

2021-08-28 Thread Jakov Smolić
commit: d12478772f26f755c41208440a5c3185c8dbb950
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Aug 28 20:59:09 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Aug 28 20:59:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1247877

sys-devel/bmake: Remove old 20210420

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-devel/bmake/Manifest  |  1 -
 sys-devel/bmake/bmake-20210420.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/sys-devel/bmake/Manifest b/sys-devel/bmake/Manifest
index a8574e78376..a2eb12c2ec5 100644
--- a/sys-devel/bmake/Manifest
+++ b/sys-devel/bmake/Manifest
@@ -1,4 +1,3 @@
-DIST bmake-20210420.tar.gz 755281 BLAKE2B 
fe98dc5d0c5a11aecf45b160cfe5b69ef49e56a973823e84ec1f607023aa94d66cd87bc3f31fc340dc86eae0a6e87ca2a71b8367f3e9bb1a9eae8626d13a80ea
 SHA512 
3bb603965c149e4f6bee4afff9710921e943bd1faaf5d142418a5f7a0752416e094b6a0f0dfc998bf6bedc391f668162856a51167e34b6f2ad2a0a498c96ed35
 DIST bmake-20210704.tar.gz 759047 BLAKE2B 
4c21941c45c826e1758c64bc60532cff3b9a727cc18658b019ce55382aad8c668a5ef9039df695629f81a334969f1a5aaf08d5924aa20576474a528fe8dbcb15
 SHA512 
b21d89753b659a70d6f5d70aa41cc2b5f5ded5a5a4a227064c938db42282d7684df9389fa1db532c2e0de11d5be1e66698388f1e1e6966153ec56330af688674
 DIST bmake-20210808.tar.gz 765029 BLAKE2B 
27ff99395e7cdc00a118ebfb5b043180ffbd9d5385b008c49baae8bf953e45e277aeb133d736bd282c1ffc08bd7c3b87b4dc23d0b188a86469116e1d94ed2409
 SHA512 
d0afb9b6a50858c330cccf57a8f8b35ddf1ea1faefc2110237e30262b35eb69c1a4918e48acc2ed3deed8b11bf87b80429d71c46366c81ceb7427a79a3e58089
 DIST mk-20210330.tar.gz 107380 BLAKE2B 
9ac30a117d9ba31635cf8d8d29fdba76f148611f47628403ca8f807081c32509f10498d3c30fd24985e5420af4710fe59fc6315d71f2d0c1cfed93263a06553a
 SHA512 
6acd3ee911442934082f4f877d795b07c5e23022eaa9c0874799d97e92a2f5a663cb45f94b7f9745c49cbbce6b7e755a29e381ccfb9e68a0be1eedbd22fd5d3b

diff --git a/sys-devel/bmake/bmake-20210420.ebuild 
b/sys-devel/bmake/bmake-20210420.ebuild
deleted file mode 100644
index d0820d8040e..000
--- a/sys-devel/bmake/bmake-20210420.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MK_VER=20210330
-
-DESCRIPTION="NetBSD's portable make"
-HOMEPAGE="http://www.crufty.net/help/sjg/bmake.html;
-SRC_URI="
-   http://void.crufty.net/ftp/pub/sjg/${P}.tar.gz
-   http://void.crufty.net/ftp/pub/sjg/mk-${MK_VER}.tar.gz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
-
-# Skip failing test (sandbox and csh)
-PATCHES=( "${FILESDIR}"/${PN}-20210206-tests.patch )
-
-src_prepare() {
-   default
-   cd "${WORKDIR}" || die
-   eapply "${FILESDIR}"/${PN}-20210314-mk-fixes.patch
-}
-
-src_configure() {
-   econf \
-   --with-mksrc=../mk \
-   --with-default-sys-path="${EPREFIX}"/usr/share/mk/${PN} \
-   --with-machine_arch=${ARCH}
-}
-
-src_compile() {
-   sh make-bootstrap.sh || die "bootstrap failed"
-}
-
-src_test() {
-   cd unit-tests || die
-
-   # the 'ternary' test uses ${A} internally, which
-   # conflicts with Gentoo's ${A}, hence unset it for
-   # the tests temporarily.
-   env -u A MAKEFLAGS= \
-   "${S}"/bmake -r -m / TEST_MAKE="${S}"/bmake test || die "tests 
compilation failed"
-}
-
-src_install() {
-   dobin ${PN}
-   doman ${PN}.1
-   FORCE_BSD_MK=1 SYS_MK_DIR=. \
-   sh ../mk/install-mk -v -m 644 "${ED}"/usr/share/mk/${PN} \
-   || die "failed to install mk files"
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xscreensaver/

2021-08-28 Thread Jakov Smolić
commit: 3ab3b775d4f97af4f862d432cc41c32f3ab8128c
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Aug 28 21:00:58 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Aug 28 21:00:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ab3b775

x11-misc/xscreensaver: Remove redundant 5.45 and 6.01 revisions

Signed-off-by: Jakov Smolić  gentoo.org>

 x11-misc/xscreensaver/xscreensaver-5.45-r5.ebuild | 169 --
 x11-misc/xscreensaver/xscreensaver-5.45-r6.ebuild | 173 --
 x11-misc/xscreensaver/xscreensaver-6.01-r1.ebuild | 200 -
 x11-misc/xscreensaver/xscreensaver-6.01-r2.ebuild | 202 --
 4 files changed, 744 deletions(-)

diff --git a/x11-misc/xscreensaver/xscreensaver-5.45-r5.ebuild 
b/x11-misc/xscreensaver/xscreensaver-5.45-r5.ebuild
deleted file mode 100644
index 5f2c0843d64..000
--- a/x11-misc/xscreensaver/xscreensaver-5.45-r5.ebuild
+++ /dev/null
@@ -1,169 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools flag-o-matic multilib optfeature pam strip-linguas
-
-DESCRIPTION="modular screen saver and locker for the X Window System"
-HOMEPAGE="https://www.jwz.org/xscreensaver/;
-SRC_URI="https://www.jwz.org/xscreensaver/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
-IUSE="caps +gdk-pixbuf gdm +gtk jpeg +locking new-login offensive opengl pam 
+perl selinux suid systemd xinerama"
-REQUIRED_USE="
-   gdk-pixbuf? ( gtk )
-"
-
-COMMON_DEPEND="
-   dev-libs/libxml2
-   media-libs/netpbm
-   virtual/libcrypt:=
-   x11-apps/appres
-   x11-apps/xwininfo
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXft
-   x11-libs/libXi
-   x11-libs/libXmu
-   x11-libs/libXrandr
-   x11-libs/libXt
-   x11-libs/libXxf86vm
-   caps? ( sys-libs/libcap )
-   gdk-pixbuf? (
-   x11-libs/gdk-pixbuf-xlib
-   >=x11-libs/gdk-pixbuf-2.42.0:2
-   )
-   gtk? ( x11-libs/gtk+:2 )
-   jpeg? ( virtual/jpeg:0 )
-   new-login? (
-   gdm? ( gnome-base/gdm )
-   !gdm? ( || ( x11-misc/lightdm lxde-base/lxdm ) )
-   )
-   opengl? (
-   virtual/glu
-   virtual/opengl
-   )
-   pam? ( sys-libs/pam )
-   systemd? ( >=sys-apps/systemd-221 )
-   xinerama? ( x11-libs/libXinerama )
-"
-# For USE="perl" see output of `qlist xscreensaver | grep bin | xargs grep 
'::'`
-RDEPEND="
-   ${COMMON_DEPEND}
-   media-gfx/fbida
-   perl? (
-   dev-lang/perl
-   dev-perl/libwww-perl
-   virtual/perl-Digest-MD5
-   )
-   selinux? ( sec-policy/selinux-xscreensaver )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-util/intltool
-   sys-devel/bc
-   sys-devel/gettext
-   virtual/pkgconfig
-   x11-base/xorg-proto
-"
-PATCHES=(
-   "${FILESDIR}"/${PN}-5.45-remove-libXxf86misc-dep.patch
-   "${FILESDIR}"/${PN}-5.45-interix.patch
-   "${FILESDIR}"/${PN}-5.31-pragma.patch
-   "${FILESDIR}"/${PN}-5.44-blurb-hndl-test-passwd.patch
-   "${FILESDIR}"/${PN}-5.44-gentoo.patch
-   "${FILESDIR}"/${PN}-5.45-gcc.patch
-   "${FILESDIR}"/${PN}-5.45-configure.ac-sandbox.patch
-   "${FILESDIR}"/${P}-cve-2021-34557.patch  # bug 794475
-)
-
-src_prepare() {
-   sed -i configure.ac -e '/^ALL_LINGUAS=/d' || die
-   strip-linguas -i po/
-   export ALL_LINGUAS="${LINGUAS}"
-
-   if use new-login && ! use gdm; then #392967
-   sed -i \
-   -e "/default_l.*1/s:gdmflexiserver 
-ls:${EPREFIX}/usr/libexec/lightdm/&:" \
-   configure{,.ac} || die
-   fi
-
-   default
-
-   if ! use offensive; then
-   sed -i \
-   -e 
'/boobies/d;/boobs/d;/cock/d;/pussy/d;/viagra/d;/vibrator/d' \
-   hacks/barcode.c || die
-   sed -i \
-   -e 's|erect penis|shuffle board|g' \
-   -e 's|flaccid penis|flaccid anchor|g' \
-   -e 's|vagina|engagement ring|g' \
-   -e 's|Penis|Shuttle|g' \
-   hacks/glx/glsnake.c || break
-   fi
-
-   eapply_user
-
-   eautoconf
-   eautoheader
-}
-
-src_configure() {
-   if use ppc || use ppc64; then
-   filter-flags -maltivec -mabi=altivec
-   append-flags -U__VEC__
-   fi
-
-   unset BC_ENV_ARGS #24568
-   export RPM_PACKAGE_VERSION=no #368025
-
-   ec

[gentoo-commits] repo/gentoo:master commit in: net-libs/libnetconf2/

2021-08-31 Thread Jakov Smolić
commit: 9f35bd8ea8eb9e4e5f5701cdbb6bc885a50f0447
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Aug 31 15:31:59 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Aug 31 15:31:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f35bd8e

net-libs/libnetconf2: Remove old 1.1.43 and 1.1.46

Signed-off-by: Jakov Smolić  gentoo.org>

 net-libs/libnetconf2/Manifest |  2 -
 net-libs/libnetconf2/libnetconf2-1.1.43-r2.ebuild | 48 -
 net-libs/libnetconf2/libnetconf2-1.1.46-r1.ebuild | 52 ---
 3 files changed, 102 deletions(-)

diff --git a/net-libs/libnetconf2/Manifest b/net-libs/libnetconf2/Manifest
index b34b485307f..eb691c56191 100644
--- a/net-libs/libnetconf2/Manifest
+++ b/net-libs/libnetconf2/Manifest
@@ -1,3 +1 @@
-DIST libnetconf2-1.1.43.tar.gz 295502 BLAKE2B 
49bd58d785a0b7b132c4503b0b8a823ff3578e6e1d30e0c0e4aecf6ebb6f769f465069ebbfce7fd090e64e0b798ab8977535c634f45e677cec00d7c73edaee20
 SHA512 
2aff10ef003d5ee1f72a3c01a0fd07f7a1ac3b1961c88a9616632255d7392d386e0acad97fc68b3f5f1a0b4804dcb0900afa625208ab0dd33cf03706f7a89f5d
-DIST libnetconf2-1.1.46.tar.gz 295868 BLAKE2B 
ac20dd66c779b9b509f09c1a45224679e2b5701758cf04511c89be90c9ba065c1356c3f50026fa9f6a2f83530437b57ff38ff5977557a9faf61493e0d47f69df
 SHA512 
e1ee152499113f267c3cefbb43f9049ba61fc97228311cb0a68f457aec620059132996fa1878a081e99cfc005d709954282729ace4e937644b4b557db3b3db97
 DIST libnetconf2-2.0.1.tar.gz 292658 BLAKE2B 
d2821b4b66773b64f7a453649a7ea60bacc418a8ff5c33e54b244a1f285b84ec8a1cc6d6285ff280c8631d79dfe9db352ad03781a7694762efd8545462ac
 SHA512 
26f0a900387a8dbf5c12136d29529e7aba973dba4e1e3ff091cb70385a686533f041cfe647e273f6188b9494b67f771564b2e32f10e1fc61586112d88837f5c8

diff --git a/net-libs/libnetconf2/libnetconf2-1.1.43-r2.ebuild 
b/net-libs/libnetconf2/libnetconf2-1.1.43-r2.ebuild
deleted file mode 100644
index 42b6d78e49d..000
--- a/net-libs/libnetconf2/libnetconf2-1.1.43-r2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="C library for building NETCONF servers and clients"
-HOMEPAGE="https://github.com/CESNET/libnetconf2;
-SRC_URI="https://github.com/CESNET/libnetconf2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-libs/openssl:0=
-   >=net-libs/libyang-1.0.225:=
-   https://github.com/CESNET/libnetconf2;
-SRC_URI="https://github.com/CESNET/libnetconf2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-libs/openssl:0=
-   >=net-libs/libyang-1.0.240:=
-   

[gentoo-commits] repo/gentoo:master commit in: net-libs/libyang/

2021-08-31 Thread Jakov Smolić
commit: 650b3f56190a31dac3f9b81ea513441828f7062d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Aug 31 15:33:59 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Aug 31 15:33:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=650b3f56

net-libs/libyang: Remove old 1.0.236 and 1.0.240

Signed-off-by: Jakov Smolić  gentoo.org>

 net-libs/libyang/Manifest   |  2 --
 net-libs/libyang/libyang-1.0.236.ebuild | 46 -
 net-libs/libyang/libyang-1.0.240.ebuild | 44 ---
 3 files changed, 92 deletions(-)

diff --git a/net-libs/libyang/Manifest b/net-libs/libyang/Manifest
index 475952f979e..a54e4002317 100644
--- a/net-libs/libyang/Manifest
+++ b/net-libs/libyang/Manifest
@@ -1,3 +1 @@
-DIST libyang-1.0.236.tar.gz 1669013 BLAKE2B 
c977c4abd2466e88519e91483d876bf0b9397b32bcca017eaa948d638a70d3275cdec36070bad8925c87e3a6756df924ed043a14ecb6d23de8b63992f8607e58
 SHA512 
7e8be96bc87ea5c906d90e09f4fbae0ed96718894d3fbc784172cdc68e9e2c034fc8a114bc1389fb74ef32dfb65e447acff24b82967af1530ffba94cd204e6e9
-DIST libyang-1.0.240.tar.gz 1667619 BLAKE2B 
ec988301ee422cf90fd6d50b31f42f28f5f09fd772218311723149548d565c48283dbe0f1cd7ac924f031cac63659af321079ccd65d10deb2edbe7d9d649f492
 SHA512 
5637037ef25fb96184d444f27a1e921a18a91745bce7e796357a71ca15eb47b9c3ba0833fe8f792e54e9f02ac26be5168fd386d5f957b8f4d695ddc213c17c33
 DIST libyang-2.0.7.tar.gz 1031818 BLAKE2B 
a3ad7dc0bcff14ea5fec0221f11efb2ef61efa8b4b3c8ebd6d58f3184cc1f1979c026985c1782d2f2177227a8aae815c6c4fa7063fb19156af78f65740623318
 SHA512 
edb1d8d372b25ed820fa312e0dc96d4af7c8cd5ddeb785964de73f64774062ea7a5586bb27e2039ad24189d4a2ba04268921ca86e82423fc48647d1d10a2a0a7

diff --git a/net-libs/libyang/libyang-1.0.236.ebuild 
b/net-libs/libyang/libyang-1.0.236.ebuild
deleted file mode 100644
index efde262106a..000
--- a/net-libs/libyang/libyang-1.0.236.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib
-
-MY_COMMIT="587a1e973ea6463e4dd3c935b6f97da909f8ac24"
-DESCRIPTION="YANG data modeling language library"
-HOMEPAGE="https://github.com/CESNET/libyang;
-SRC_URI="https://github.com/CESNET/${PN}/archive/${MY_COMMIT}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc test"
-
-RDEPEND="dev-libs/libpcre[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   sys-devel/bison
-   sys-devel/flex
-   doc? ( app-doc/doxygen[dot] )"
-
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DENABLE_BUILD_TESTS=$(usex test)
-   -DENABLE_LYD_PRIV=yes
-   -DGEN_LANGUAGE_BINDINGS=no
-   )
-   cmake_src_configure
-}
-
-multilib_src_compile() {
-   cmake_src_compile
-
-   multilib_is_native_abi && use doc && cmake_src_compile doc
-}
-
-multilib_src_install_all() {
-   use doc && dodoc -r doc/.
-}

diff --git a/net-libs/libyang/libyang-1.0.240.ebuild 
b/net-libs/libyang/libyang-1.0.240.ebuild
deleted file mode 100644
index 463140a483d..000
--- a/net-libs/libyang/libyang-1.0.240.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib
-
-DESCRIPTION="YANG data modeling language library"
-HOMEPAGE="https://github.com/CESNET/libyang;
-SRC_URI="https://github.com/CESNET/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc test"
-
-RDEPEND="dev-libs/libpcre[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   sys-devel/bison
-   sys-devel/flex
-   doc? ( app-doc/doxygen[dot] )"
-
-RESTRICT="!test? ( test )"
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DENABLE_BUILD_TESTS=$(usex test)
-   -DENABLE_LYD_PRIV=yes
-   -DGEN_LANGUAGE_BINDINGS=no
-   )
-   cmake_src_configure
-}
-
-multilib_src_compile() {
-   cmake_src_compile
-
-   multilib_is_native_abi && use doc && cmake_src_compile doc
-}
-
-multilib_src_install_all() {
-   use doc && dodoc -r doc/.
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/frr/

2021-08-31 Thread Jakov Smolić
commit: 8cf2f39ea7be8df6e6d96c35fff5c2c9da0feac3
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Aug 31 15:30:04 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Aug 31 15:30:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cf2f39e

net-misc/frr: Remove old 7.5.1

Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/frr/Manifest|   1 -
 net-misc/frr/frr-7.5.1-r4.ebuild | 147 ---
 2 files changed, 148 deletions(-)

diff --git a/net-misc/frr/Manifest b/net-misc/frr/Manifest
index 543eebebd45..0d77ca8d5aa 100644
--- a/net-misc/frr/Manifest
+++ b/net-misc/frr/Manifest
@@ -1,3 +1,2 @@
-DIST frr-7.5.1.tar.gz 6746148 BLAKE2B 
e6a8d38bac1323852d933ca9eaac681df8824407af008bb0170937a01564b3fb9fb081418630b7540f3ccdb899ac0948121d63accfa65ae0fd3fd6933fdafd6d
 SHA512 
cf20316abd39a2d96bb377bd594464ae74c20ad70c60246409fe9f04f0177fcd8891a8da54d83bee962f589a00e71f7b51e78f9729c8680e6265ddd548e0464e
 DIST frr-8.0.1.tar.gz 8206852 BLAKE2B 
ed23f62457877fb3173977e1b7092c808adc5d5bd9b1d83747ac42573117adc38865abd1e722073532800f543978e5d67ba7c88416a4335c72bd6b8a3045ff5a
 SHA512 
d9a9ee3b40bf0271779765447c67da817551b5bf2d5d1e9f8073fb4596c622e013fbf7316ca39087db7b7f478b18d07f1fd06f1778abde2734c83112573d5f8f
 DIST frr-8.0.tar.gz 8195258 BLAKE2B 
75d8d4410a5377dae3bf6938c3b095b163ad87776420a16c07d461bb3f635d623de642fa0ae483094788369c9dc6a04d5424107bf60c848ac54756c4bdb20c97
 SHA512 
fdf1e68c16e266a74221fb194851ef47c888e90324de2e42a4ca68b9dbce1ba6f45d73b9830bdb17774ecdde736111fa562201a5763c49092b6ce1f0a4d4865a

diff --git a/net-misc/frr/frr-7.5.1-r4.ebuild b/net-misc/frr/frr-7.5.1-r4.ebuild
deleted file mode 100644
index 4731885ece1..000
--- a/net-misc/frr/frr-7.5.1-r4.ebuild
+++ /dev/null
@@ -1,147 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit autotools pam python-single-r1 systemd
-
-DESCRIPTION="The FRRouting Protocol Suite"
-HOMEPAGE="https://frrouting.org/;
-SRC_URI="https://github.com/FRRouting/frr/archive/${P}.tar.gz;
-# FRR tarballs have weird format.
-S="${WORKDIR}/frr-${P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc fpm grpc ipv6 kernel_linux nhrp ospfapi pam rpki snmp systemd test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   acct-user/frr
-   dev-libs/json-c:0=
-   >=net-libs/libyang-1.0.184
-   =net-libs/rtrlib-0.6.3[ssh] )
-   snmp? ( net-analyzer/net-snmp:= )"
-
-BDEPEND="
-   dev-util/clippy
-   sys-devel/flex
-   virtual/yacc
-   doc? ( dev-python/sphinx )"
-
-DEPEND="
-   ${COMMON_DEPEND}
-   test? ( $(python_gen_cond_dep 'dev-python/pytest[${PYTHON_USEDEP}]') )"
-
-RDEPEND="
-   ${COMMON_DEPEND}
-   $(python_gen_cond_dep 'dev-python/ipaddr[${PYTHON_USEDEP}]')
-   !net-misc/quagga"
-
-PATCHES=( "${FILESDIR}"/${PN}-7.5-ipctl-forwarding.patch )
-
-src_prepare() {
-   default
-
-   python_fix_shebang tools
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   --with-pkg-extra-version="-gentoo"
-   --enable-configfile-mask=0640
-   --enable-logfile-mask=0640
-   --prefix="${EPREFIX}"/usr
-   --libdir="${EPREFIX}"/usr/lib/frr
-   --sbindir="${EPREFIX}"/usr/lib/frr
-   --libexecdir="${EPREFIX}"/usr/lib/frr
-   --sysconfdir="${EPREFIX}"/etc/frr
-   --localstatedir="${EPREFIX}"/run/frr
-   --with-moduledir="${EPREFIX}"/usr/lib/frr/modules
-   --with-clippy="${BROOT}"/usr/bin/clippy
-   --enable-exampledir="${EPREFIX}"/usr/share/doc/${PF}/samples
-   --enable-user=frr
-   --enable-group=frr
-   --enable-vty-group=frr
-   --enable-multipath=64
-   $(use_enable doc)
-   $(use_enable fpm)
-   $(use_enable grpc)
-   $(use_enable ipv6 ospf6d)
-   $(use_enable ipv6 ripngd)
-   $(use_enable ipv6 rtadv)
-   $(use_enable kernel_linux realms)
-   $(use_enable nhrp nhrpd)
-   $(usex ospfapi '--enable-ospfclient' '' '' '')
-   $(use_enable rpki)
-   $(use_enable snmp)
-   $(use_enable systemd)
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_compile() {
-   default
-
-   use doc && emake -C doc html
-}
-
-src_install() {
-   default
-   find "${ED}" -name '*.la' -delete |

[gentoo-commits] repo/gentoo:master commit in: net-misc/netopeer2/

2021-08-31 Thread Jakov Smolić
commit: 241db2e05b18983c07949b0e99a611438550a614
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Aug 31 15:30:22 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Aug 31 15:31:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=241db2e0

net-misc/netopeer2: Remove old 1.1.70 and 1.1.76

Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/netopeer2/Manifest   |  2 --
 net-misc/netopeer2/netopeer2-1.1.70-r1.ebuild | 50 ---
 net-misc/netopeer2/netopeer2-1.1.76.ebuild| 50 ---
 3 files changed, 102 deletions(-)

diff --git a/net-misc/netopeer2/Manifest b/net-misc/netopeer2/Manifest
index 7514ab52968..e8971e5e87c 100644
--- a/net-misc/netopeer2/Manifest
+++ b/net-misc/netopeer2/Manifest
@@ -1,3 +1 @@
-DIST netopeer2-1.1.70.tar.gz 170883 BLAKE2B 
59dbb1f82b355d807769466fc95dcac0ef0b74711f299b29cc6653183b5ffbb832d69b4247e04f38bdb9218adfabe1fff20c6f76e198ca0860808ec3910d20bd
 SHA512 
d60c7ac861a05f8ee325013786e25e7f987f28265d66df5568ffd92ee31016a2d07f6b8256572110b9a6a5d00cb68644d1c3c3cd638f609b0f4f806e9e6cf602
-DIST netopeer2-1.1.76.tar.gz 171127 BLAKE2B 
77b97cc60185b8843c216f69d6e7c6366b66dd2de86ab6a08489131738a27e28e730e0d773a5115406ad83df7aa22ee80638b6661faf6394fccb986b3996e038
 SHA512 
c37e7e4cba1d78fa20cff48fe6cd73fc5c0f0c43989b061915e7f7928c147ed5380f79d74341220df32aeebccf5db7d1560b261570e789807ad53591bedb0232
 DIST netopeer2-2.0.0.tar.gz 255138 BLAKE2B 
a33fa6a952a060a8fb4bd4ad2f2f4e0ab163faef44cd999eb5d3a28706110908bf6350859da1032e873cf24ff8bd9327d0d694edeb35ecb8e0650634dc5d8966
 SHA512 
789a6fb36f9a3cf9df4ff996b90a5e8f07a24b14027ec455133e184ae96c72a1e8f9adef6d36800139d47d667c54189a2c14616f4947ce0fe72467cb178dbec5

diff --git a/net-misc/netopeer2/netopeer2-1.1.70-r1.ebuild 
b/net-misc/netopeer2/netopeer2-1.1.70-r1.ebuild
deleted file mode 100644
index 395e51ac135..000
--- a/net-misc/netopeer2/netopeer2-1.1.70-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Server for implementing NETCONF configuration management"
-HOMEPAGE="https://github.com/CESNET/netopeer2;
-SRC_URI="https://github.com/CESNET/netopeer2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   dev-libs/openssl:=
-   net-misc/curl:=
-   >=net-misc/sysrepo-1.4.122:=
-   =net-libs/libnetconf2-1.1.43:=
-   =net-libs/libyang-1.0.225:=
-   https://github.com/CESNET/netopeer2;
-SRC_URI="https://github.com/CESNET/netopeer2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-libs/openssl:=
-   net-misc/curl:=
-   >=net-misc/sysrepo-1.4.140:=
-   =net-libs/libnetconf2-1.1.46:=
-   =net-libs/libyang-1.0.240:=
-   

[gentoo-commits] repo/gentoo:master commit in: net-misc/sysrepo/

2021-08-31 Thread Jakov Smolić
commit: bfa47a4e369d4e396594539cb1a1228f98d54609
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Aug 31 15:33:10 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Aug 31 15:33:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa47a4e

net-misc/sysrepo: Remove old 1.4.122 and 1.4.140

Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/sysrepo/Manifest  |  2 --
 net-misc/sysrepo/sysrepo-1.4.122-r1.ebuild | 42 --
 net-misc/sysrepo/sysrepo-1.4.140.ebuild| 42 --
 3 files changed, 86 deletions(-)

diff --git a/net-misc/sysrepo/Manifest b/net-misc/sysrepo/Manifest
index a78fc7b374b..77881a5a0b0 100644
--- a/net-misc/sysrepo/Manifest
+++ b/net-misc/sysrepo/Manifest
@@ -1,3 +1 @@
-DIST sysrepo-1.4.122.tar.gz 679974 BLAKE2B 
3161eb8635c3ea7a0168b1a0eb3250da7e8c134030e5c5443d492cb708f095f9af12f08257a7d0b86a084b121754a8f19fa408de5afc32ce82d92bb4c6c7a535
 SHA512 
ccd603913b0f31f26f990dba8430ad6c1033546cd764396c43cc6667919b486924fc2d2fade77eee9ef7a3329aae2ceaf4acc578613a0c7c1d2a53d3cbf2944c
-DIST sysrepo-1.4.140.tar.gz 683340 BLAKE2B 
bc9d51fc18450809e0428b32901a20516a82b29a58f0c8bb962c2cfada1bdac94116e8d436eb294d3c50efb3a829f6262666e5715212a1bd83282667cc5ab744
 SHA512 
9d10f61825438462442a2757293f73a143222dc7f0adafcfdd21a2439eea63fe8789c05765f58c5b3798b0321bc79c4e649f88b0bf0b5443bfac30d1c168325b
 DIST sysrepo-2.0.1.tar.gz 642522 BLAKE2B 
dc2ce960f1ce4156b89ed8f0ab2c567ca50f8d7fc3bc1151cf52d2302ba8114c8e01b7e295c249176acab6c501fbf45850a6d89fde427be444bcb12ccd243dcc
 SHA512 
c231174980985d7cc7380f2708cd5395f621735cee62923fcb224d09d500978917b4caa7860e4dca8520e27a4f002e7377b987b6738472d6424d09a0894a3953

diff --git a/net-misc/sysrepo/sysrepo-1.4.122-r1.ebuild 
b/net-misc/sysrepo/sysrepo-1.4.122-r1.ebuild
deleted file mode 100644
index 184ab5dc58e..000
--- a/net-misc/sysrepo/sysrepo-1.4.122-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="YANG-based configuration and operational state data store"
-HOMEPAGE="https://www.sysrepo.org;
-SRC_URI="https://github.com/sysrepo/sysrepo/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=net-libs/libyang-1.0.225:=
-   https://www.sysrepo.org;
-SRC_URI="https://github.com/sysrepo/sysrepo/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=net-libs/libyang-1.0.240:=
-   

[gentoo-commits] repo/gentoo:master commit in: net-libs/libwebsockets/

2021-08-29 Thread Jakov Smolić
commit: 6abbca1de3c6edd85e9e3361aaa7b39d98365443
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Aug 29 19:48:49 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Aug 29 19:50:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6abbca1d

net-libs/libwebsockets: Turn off deprecated API warnings in 4.2.1

* This is added upstream as a general openssl-3 workaround for now

Closes: https://bugs.gentoo.org/805164
Signed-off-by: Jakov Smolić  gentoo.org>

 net-libs/libwebsockets/libwebsockets-4.2.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-libs/libwebsockets/libwebsockets-4.2.1.ebuild 
b/net-libs/libwebsockets/libwebsockets-4.2.1.ebuild
index e2cb3c1838c..180d8b2a195 100644
--- a/net-libs/libwebsockets/libwebsockets-4.2.1.ebuild
+++ b/net-libs/libwebsockets/libwebsockets-4.2.1.ebuild
@@ -51,6 +51,7 @@ src_configure() {
-DLWS_HAVE_LIBCAP=$(usex caps)
-DLWS_IPV6=$(usex ipv6)
-DLWS_ROLE_DBUS=$(usex dbus)
+   -DLWS_SUPPRESS_DEPRECATED_API_WARNINGS=ON
-DLWS_WITHOUT_CLIENT=$(usex !client)
-DLWS_WITHOUT_TEST_CLIENT=$(usex !client)
-DLWS_WITH_ACCESS_LOG=$(usex access-log)



[gentoo-commits] repo/gentoo:master commit in: net-libs/libwebsockets/

2021-08-29 Thread Jakov Smolić
commit: 6424d872d2200f4570984dcf8fea2813db4d149b
Author: Luka Perkov  sartura  hr>
AuthorDate: Sun Aug 29 19:46:58 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Aug 29 19:50:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6424d872

net-libs/libwebsockets: Version bump to 4.2.2

Signed-off-by: Luka Perkov  sartura.hr>
Signed-off-by: Jakov Smolić  gentoo.org>

 net-libs/libwebsockets/Manifest   |  1 +
 net-libs/libwebsockets/libwebsockets-4.2.2.ebuild | 82 +++
 2 files changed, 83 insertions(+)

diff --git a/net-libs/libwebsockets/Manifest b/net-libs/libwebsockets/Manifest
index 4fee651581a..f65b52f900b 100644
--- a/net-libs/libwebsockets/Manifest
+++ b/net-libs/libwebsockets/Manifest
@@ -1,2 +1,3 @@
 DIST libwebsockets-4.2.0.tar.gz 14550541 BLAKE2B 
9471d19b15decfee4407a596cb3f127534e12ac6bf49c81b04120a379ff8a8e1c7767e9a7e586ad69d5af23e869914c749da771f8db6431ac09718b971d261e0
 SHA512 
e1fb5b204a030ded8dfe2a75c66ec8d1a2e6a67e82c7709fe3c4277e0ccb5fb40c18db04e73c640d07ef4516aa266ae8b102f802b2a41b80980260cb6921f369
 DIST libwebsockets-4.2.1.tar.gz 14557242 BLAKE2B 
07d5a7278a3f0518f8d8c1a20c6ad08d7125c276d1b0236649abe961879e3985319ce03d6800f7312f63d2a92dd96d341783257695a91864a2ee93116a5a108f
 SHA512 
b8b03a9f099079aace4486690bee519c23ba14e0b186e1813bfdb9b915462a07a5f52bdb81949021bf631d99bda2661704814575f559b5a91c70cbb2ec30
+DIST libwebsockets-4.2.2.tar.gz 14589100 BLAKE2B 
371bae4790e92aa4f48e51b40fbe2e4efc3b885e07740db14c96146eb857616fd3f7a1b6c83c11fded2791b1db59cb1f6761bc4eebaee918ada7e9bcf4be52d0
 SHA512 
52d9b4511fc484781108a3036f870905d4427fcbab02f3e84ee38f534ae7d1979c2cc3eec0719f4609226d4aae788a79fe7d99a8506537bbcf8fc3d9b8a7b478

diff --git a/net-libs/libwebsockets/libwebsockets-4.2.2.ebuild 
b/net-libs/libwebsockets/libwebsockets-4.2.2.ebuild
new file mode 100644
index 000..180d8b2a195
--- /dev/null
+++ b/net-libs/libwebsockets/libwebsockets-4.2.2.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A flexible pure-C library for implementing network protocols"
+HOMEPAGE="https://libwebsockets.org/;
+SRC_URI="https://github.com/warmcat/libwebsockets/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/18" # libwebsockets.so.18
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="access-log caps cgi client dbus generic-sessions http-proxy http2 ipv6
+   +lejp libev libevent libuv mbedtls peer-limits server-status smtp socks5
+   sqlite3 ssl threads zip"
+
+REQUIRED_USE="
+   access-log? ( http2 )
+   generic-sessions? ( smtp sqlite3 )
+   http-proxy? ( client )
+   mbedtls? ( ssl )
+   smtp? ( libuv )
+   socks5? ( client http-proxy )
+   ?? ( libev libevent )"
+
+RDEPEND="
+   sys-libs/zlib
+   caps? ( sys-libs/libcap )
+   dbus? ( sys-apps/dbus )
+   http-proxy? ( net-libs/libhubbub )
+   libev? ( dev-libs/libev )
+   libevent? ( dev-libs/libevent:= )
+   libuv? ( dev-libs/libuv:= )
+   sqlite3? ( dev-db/sqlite:= )
+   ssl? (
+   !mbedtls? ( dev-libs/openssl:0= )
+   mbedtls? ( net-libs/mbedtls:= )
+   )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-lang/perl
+   virtual/pkgconfig"
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_DISABLE_FIND_PACKAGE_Git=ON
+   -DDISABLE_WERROR=ON
+   -DLWS_BUILD_HASH="unknown"
+   -DLWS_HAVE_LIBCAP=$(usex caps)
+   -DLWS_IPV6=$(usex ipv6)
+   -DLWS_ROLE_DBUS=$(usex dbus)
+   -DLWS_SUPPRESS_DEPRECATED_API_WARNINGS=ON
+   -DLWS_WITHOUT_CLIENT=$(usex !client)
+   -DLWS_WITHOUT_TEST_CLIENT=$(usex !client)
+   -DLWS_WITH_ACCESS_LOG=$(usex access-log)
+   -DLWS_WITH_CGI=$(usex cgi)
+   -DLWS_WITH_GENERIC_SESSIONS=$(usex generic-sessions)
+   -DLWS_WITH_HTTP2=$(usex http2)
+   -DLWS_WITH_HTTP_PROXY=$(usex http-proxy)
+   -DLWS_WITH_HUBBUB=$(usex http-proxy)
+   -DLWS_WITH_LEJP=$(usex lejp)
+   -DLWS_WITH_LIBEV=$(usex libev)
+   -DLWS_WITH_LIBEVENT=$(usex libevent)
+   -DLWS_WITH_LIBUV=$(usex libuv)
+   -DLWS_WITH_MBEDTLS=$(usex mbedtls)
+   -DLWS_WITH_PEER_LIMITS=$(usex peer-limits)
+   -DLWS_WITH_SERVER_STATUS=$(usex server-status)
+   -DLWS_WITH_SMTP=$(usex smtp)
+   -DLWS_WITH_SOCKS5=$(usex socks5)
+   -DLWS_WITH_SQLITE3=$(usex sqlite3)
+   -DLWS_WITH_SSL=$(usex ssl)
+   -DLWS_WITH_STATIC=OFF
+   -DLWS_WITH_STRUCT_JSON=$(usex lejp)
+ 

[gentoo-commits] repo/gentoo:master commit in: dev-embedded/u-boot-tools/

2021-08-30 Thread Jakov Smolić
commit: 16f3be66790df19991d406b9a2de69393f4e8c97
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Aug 28 11:23:02 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Mon Aug 30 21:21:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f3be66

dev-embedded/u-boot-tools: Version bump to 2021.07

* Bump EAPI to 8
* Use https:// instead of ftp:// in SRC_URI
* Combine same build flags into myemakeargs
* Use toolchain-funcs to export BUILD_CC and
  set HOSTCC=${BUILD_CC}, which enables us
  to correctly cross-compile the package,
  otherwise the build system tries to use
  cross-compiler as HOSTCC
* Add USE=envtools that builds and installs
  only target-side environment tools which is
  useful for low storage situations where we only
  need envtools to read and modify U-Boot environment
  variables. This functionality matches the uboot-envtools
  package which is available in OpenWRT

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-embedded/u-boot-tools/Manifest |  1 +
 dev-embedded/u-boot-tools/metadata.xml | 11 +--
 .../u-boot-tools/u-boot-tools-2021.07.ebuild   | 79 ++
 3 files changed, 87 insertions(+), 4 deletions(-)

diff --git a/dev-embedded/u-boot-tools/Manifest 
b/dev-embedded/u-boot-tools/Manifest
index af7e7c744be..758cfea596b 100644
--- a/dev-embedded/u-boot-tools/Manifest
+++ b/dev-embedded/u-boot-tools/Manifest
@@ -1 +1,2 @@
 DIST u-boot-2021.04-rc2.tar.bz2 16620315 BLAKE2B 
e16c167346ef3999443855b9a702bf28faacf51b7887c84096f7a372a0c820d6ed9f06c1dd209b4070adf8000853b58b7b9b81c5b32a973d37558acf1da2edfa
 SHA512 
7bf07f15e0c5f5e63ef8cb9568278ea7c209e484bbb599c47b22a8d2e5c007cc204eec365e5328dea3e7b016cd6ba0cb4c917330cc76163b1016f7c7762ad1bf
+DIST u-boot-2021.07.tar.bz2 17275746 BLAKE2B 
1a209a604e0f30264781a14ca855bbb777e8f1c031de60d28de397084fc9bfc4a3771ad00ec22f5cdcfa721f22707a533b9b59004ac0b107df927f23dc5ab0a6
 SHA512 
210b206a4626feb0985580d9448a97b499b09bf9b9313ca847a66624785e9e9b0fae8f2e329acd344f5f75cb722d2093dd0ee394311ddd1fde05e400ee71a24d

diff --git a/dev-embedded/u-boot-tools/metadata.xml 
b/dev-embedded/u-boot-tools/metadata.xml
index 71b1461e114..899a677d0cd 100644
--- a/dev-embedded/u-boot-tools/metadata.xml
+++ b/dev-embedded/u-boot-tools/metadata.xml
@@ -1,8 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   embed...@gentoo.org
-   Embedded Gentoo
-
+   
+   embed...@gentoo.org
+   Embedded Gentoo
+   
+   
+   Build only the target-side environment 
tools
+   
 

diff --git a/dev-embedded/u-boot-tools/u-boot-tools-2021.07.ebuild 
b/dev-embedded/u-boot-tools/u-boot-tools-2021.07.ebuild
new file mode 100644
index 000..8511d1c5504
--- /dev/null
+++ b/dev-embedded/u-boot-tools/u-boot-tools-2021.07.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_P="u-boot-${PV/_/-}"
+DESCRIPTION="utilities for working with Das U-Boot"
+HOMEPAGE="https://www.denx.de/wiki/U-Boot/WebHome;
+SRC_URI="https://ftp.denx.de/pub/u-boot/${MY_P}.tar.bz2;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+IUSE="envtools"
+
+RDEPEND="dev-libs/openssl:="
+DEPEND="${RDEPEND}"
+BDEPEND="
+   sys-devel/bison
+   sys-devel/flex
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   sed -i 's:\bpkg-config\b:${PKG_CONFIG}:g' \
+   scripts/kconfig/{g,m,n,q}conf-cfg.sh \
+   scripts/kconfig/Makefile \
+   tools/Makefile || die
+}
+
+src_configure() {
+   tc-export AR BUILD_CC CC PKG_CONFIG
+}
+
+src_compile() {
+   # Unset a few KBUILD variables. Bug #540476
+   unset KBUILD_OUTPUT KBUILD_SRC
+
+   local myemakeargs=(
+   V=1
+   AR="${AR}"
+   CC="${CC}"
+   HOSTCC="${BUILD_CC}"
+   HOSTCFLAGS="${CFLAGS} ${CPPFLAGS}"' $(HOSTCPPFLAGS)'
+   HOSTLDFLAGS="${LDFLAGS}"
+   )
+
+   emake "${myemakeargs[@]}" tools-only_defconfig
+
+   emake "${myemakeargs[@]}" \
+   NO_SDL=1 \
+   HOSTSTRIP=: \
+   STRIP=: \
+   CONFIG_ENV_OVERWRITE=y \
+   $(usex envtools envtools tools-all)
+}
+
+src_test() { :; }
+
+src_install() {
+   cd tools || die
+
+   if ! use envtools; then
+   dobin bmp_logo dumpimage fdtgrep gen_eth_addr img2srec 
mkenvimage mkimage
+   fi
+
+   dobin env/fw_printenv
+
+   dosym fw_printenv /usr/bin/fw_setenv
+
+   insinto /etc
+   doins env/fw_env.config
+
+   doman ../doc/mkimage.1
+}



[gentoo-commits] repo/gentoo:master commit in: sci-physics/espresso/, sci-physics/espresso/files/

2021-08-30 Thread Jakov Smolić
commit: 4709d8e4ea9ec149753b98cabf365b3520070d65
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 30 21:18:46 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Mon Aug 30 21:22:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4709d8e4

sci-physics/espresso: Fix build with gcc-11

* Call python_optimize for non byte-compiled modules
* Builds with >=boost-1.75 versions

Closes: https://bugs.gentoo.org/737534
Closes: https://bugs.gentoo.org/793011
Signed-off-by: Jakov Smolić  gentoo.org>

 sci-physics/espresso/espresso-4.1.3.ebuild |  6 
 .../espresso/files/espresso-4.1.3-gcc-11.patch | 37 ++
 2 files changed, 43 insertions(+)

diff --git a/sci-physics/espresso/espresso-4.1.3.ebuild 
b/sci-physics/espresso/espresso-4.1.3.ebuild
index 19e9be04e85..4c60379b475 100644
--- a/sci-physics/espresso/espresso-4.1.3.ebuild
+++ b/sci-physics/espresso/espresso-4.1.3.ebuild
@@ -49,6 +49,10 @@ DOCS=( AUTHORS NEWS README ChangeLog )
 
 S="${WORKDIR}/${PN}"
 
+PATCHES=(
+   "${FILESDIR}"/${P}-gcc-11.patch
+)
+
 src_prepare() {
use cuda && cuda_src_prepare
cmake_src_prepare
@@ -79,6 +83,8 @@ src_install() {
 
cmake_src_install
 
+   python_optimize
+
insinto /usr/share/${PN}/
doins "${BUILD_DIR}/myconfig-sample.hpp"
 

diff --git a/sci-physics/espresso/files/espresso-4.1.3-gcc-11.patch 
b/sci-physics/espresso/files/espresso-4.1.3-gcc-11.patch
new file mode 100644
index 000..fcda88e9b8b
--- /dev/null
+++ b/sci-physics/espresso/files/espresso-4.1.3-gcc-11.patch
@@ -0,0 +1,37 @@
+https://src.fedoraproject.org/rpms/espresso/blob/f34/f/espresso-gcc11.patch
+--- a/src/core/communication.hpp
 b/src/core/communication.hpp
+@@ -49,6 +49,8 @@
+  *  to \ref CALLBACK_LIST.
+  */
+ 
++#include 
++
+ #include "MpiCallbacks.hpp"
+ 
+ /* Includes needed by callbacks. */
+diff --git a/src/script_interface/ParallelScriptInterface.hpp 
b/src/script_interface/ParallelScriptInterface.hpp
+index c33e67d..02ad815 100644
+--- a/src/script_interface/ParallelScriptInterface.hpp
 b/src/script_interface/ParallelScriptInterface.hpp
+@@ -23,6 +23,7 @@
+ #define SCRIPT_INTERFACE_PARALLEL_SCRIPT_INTERFACE_HPP
+ 
+ #include 
++#include 
+ 
+ #include "MpiCallbacks.hpp"
+ #include "ScriptInterface.hpp"
+diff --git a/src/utils/include/utils/NumeratedContainer.hpp 
b/src/utils/include/utils/NumeratedContainer.hpp
+index 1d99098..1191a79 100644
+--- a/src/utils/include/utils/NumeratedContainer.hpp
 b/src/utils/include/utils/NumeratedContainer.hpp
+@@ -24,6 +24,7 @@
+  *  Keep an enumerated list of T objects, managed by the class.
+  */
+ 
++#include 
+ #include 
+ #include 
+ #include 
+



[gentoo-commits] repo/gentoo:master commit in: profiles/, app-eselect/eselect-miniaudicle/, ...

2021-09-04 Thread Jakov Smolić
commit: ded5521783c2dcd198cf586b3470156149434e94
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep  4 06:55:50 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 07:01:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ded55217

app-eselect/eselect-miniaudicle: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 app-eselect/eselect-miniaudicle/Manifest   |  1 -
 .../eselect-miniaudicle-1.0.1-r2.ebuild| 28 --
 .../files/miniaudicle-1.0.1_list.patch | 12 --
 app-eselect/eselect-miniaudicle/metadata.xml   |  6 -
 profiles/package.mask  |  1 -
 5 files changed, 48 deletions(-)

diff --git a/app-eselect/eselect-miniaudicle/Manifest 
b/app-eselect/eselect-miniaudicle/Manifest
deleted file mode 100644
index 4579e3e40fd..000
--- a/app-eselect/eselect-miniaudicle/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST miniaudicle.eselect-1.0.1.bz2 1284 BLAKE2B 
a38ae814fd968a6c00d44fe2e178a33f06664ac7ac090a8ed57a8ddac67dcc07bb76360ddcd0dbcac8bda600c12c32e815065a9f7b2c96929edbdb517548c912
 SHA512 
259a9e566fcdaae04ed845c1fc797faba422dd562da3721d6d07c1b6ea6de856f7e9fe4dfe5c6895b464231c3e9dfa7fa8718a49085fc3e8f79b9e4c4c340085

diff --git 
a/app-eselect/eselect-miniaudicle/eselect-miniaudicle-1.0.1-r2.ebuild 
b/app-eselect/eselect-miniaudicle/eselect-miniaudicle-1.0.1-r2.ebuild
deleted file mode 100644
index e1cd791f99e..000
--- a/app-eselect/eselect-miniaudicle/eselect-miniaudicle-1.0.1-r2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Manages the /usr/bin/miniAudicle symlink"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
-SRC_URI="mirror://gentoo/miniaudicle.eselect-${PV}.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND=">=app-admin/eselect-1.2.3"
-
-S=${WORKDIR}
-
-src_prepare() {
-   # Fixes listing as described in bug 320189, not upstream yet
-   eapply "${FILESDIR}"/miniaudicle-1.0.1_list.patch
-   default
-}
-
-src_install() {
-   insinto /usr/share/eselect/modules
-   newins "${WORKDIR}/miniaudicle.eselect-${PV}" miniaudicle.eselect
-}

diff --git a/app-eselect/eselect-miniaudicle/files/miniaudicle-1.0.1_list.patch 
b/app-eselect/eselect-miniaudicle/files/miniaudicle-1.0.1_list.patch
deleted file mode 100644
index bd14b175e2f..000
--- a/app-eselect/eselect-miniaudicle/files/miniaudicle-1.0.1_list.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 a/miniaudicle.eselect-1.0.1.orig   2010-07-14 23:21:11.0 -0400
-+++ b/miniaudicle.eselect-1.0.12010-07-14 23:22:22.0 -0400
-@@ -73,7 +73,7 @@
-   targets=( $(find_targets ) )
-   write_list_start "Available miniAudicle audio engines:"
-   for (( i = 0 ; i < ${#targets[@]} ; i = i + 1 )) ; do
--  [[ ${targets[${i}]} == $(basename $(canonicalise 
${ROOT}/usr/bin/miniAudicle ) ) ]] && \
-+  [[ ${targets[${i}]} == $(basename $(canonicalise 
${ROOT}/usr/bin/miniAudicle- ) ) ]] && \
-   targets[${i}]=$(highlight_maker "${targets[${i}]}")
-   done
-   write_numbered_list -m "(none found)" "${targets[@]}"
-

diff --git a/app-eselect/eselect-miniaudicle/metadata.xml 
b/app-eselect/eselect-miniaudicle/metadata.xml
deleted file mode 100644
index 3c58a0219fb..000
--- a/app-eselect/eselect-miniaudicle/metadata.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   
-

diff --git a/profiles/package.mask b/profiles/package.mask
index a99e34b277c..faf18e209eb 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -186,7 +186,6 @@ sci-biology/wgs-assembler
 # Fails to build with GCC 11. No activity upstream.
 # bug #740308, bug #789816. Removal on 2021-09-05.
 app-eselect/eselect-audicle
-app-eselect/eselect-miniaudicle
 
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the



[gentoo-commits] repo/gentoo:master commit in: profiles/, app-eselect/eselect-audicle/

2021-09-04 Thread Jakov Smolić
commit: 74a7264108ce993c549eab499c89e1dde6ca6bf3
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep  4 06:56:13 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 07:01:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74a72641

app-eselect/eselect-audicle: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 app-eselect/eselect-audicle/Manifest   |  1 -
 .../eselect-audicle-1.0.1-r1.ebuild| 27 --
 app-eselect/eselect-audicle/metadata.xml   |  6 -
 profiles/package.mask  |  5 
 4 files changed, 39 deletions(-)

diff --git a/app-eselect/eselect-audicle/Manifest 
b/app-eselect/eselect-audicle/Manifest
deleted file mode 100644
index 15e4cf31cfd..000
--- a/app-eselect/eselect-audicle/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST audicle.eselect-1.0.1.bz2 1266 BLAKE2B 
28a9199d1e1dcd781243c4f40409d2afa2f588140b7170185b6a2a97a8bc2800e7fdfd06d82faefd412937d1f5d859d4cccfa900363d02697902e27a6c625600
 SHA512 
bf60c4d1679ad4d8e5334fc3841c417b78cf836ed9ea313a8d4c4c0be092a6ae1cc85daf8eb545a420803e56f57c334c3f4b529df476f40de99ce365fb75e659

diff --git a/app-eselect/eselect-audicle/eselect-audicle-1.0.1-r1.ebuild 
b/app-eselect/eselect-audicle/eselect-audicle-1.0.1-r1.ebuild
deleted file mode 100644
index ba7966f6e04..000
--- a/app-eselect/eselect-audicle/eselect-audicle-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Manages the /usr/bin/audicle symlink"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
-SRC_URI="mirror://gentoo/audicle.eselect-${PV}.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=app-admin/eselect-1.2.3"
-
-S="${WORKDIR}"
-
-src_prepare() {
-   default
-   sed -i -e 's/highlight_maker/highlight_marker/' 
"${WORKDIR}/audicle.eselect-${PV}" || die
-}
-
-src_install() {
-   insinto /usr/share/eselect/modules
-   newins "${WORKDIR}/audicle.eselect-${PV}" audicle.eselect
-}

diff --git a/app-eselect/eselect-audicle/metadata.xml 
b/app-eselect/eselect-audicle/metadata.xml
deleted file mode 100644
index 3c58a0219fb..000
--- a/app-eselect/eselect-audicle/metadata.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   
-

diff --git a/profiles/package.mask b/profiles/package.mask
index faf18e209eb..b2e06f5ec90 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -182,11 +182,6 @@ app-i18n/man-pages-it
 # Bug #610094, #715874, #731860, #739486, removal in 30 days.
 sci-biology/wgs-assembler
 
-# Sam James  (2021-08-05)
-# Fails to build with GCC 11. No activity upstream.
-# bug #740308, bug #789816. Removal on 2021-09-05.
-app-eselect/eselect-audicle
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: media-sound/audicle/, profiles/, media-sound/audicle/files/

2021-09-04 Thread Jakov Smolić
commit: 6fcffc4c12ddf115dba4ed297ed0f87f87887a5e
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep  4 06:54:56 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 07:01:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fcffc4c

media-sound/audicle: Remove last-rited package

Closes: https://bugs.gentoo.org/740308
Closes: https://bugs.gentoo.org/789816
Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/audicle/Manifest   |   1 -
 media-sound/audicle/audicle-1.0.0.7-r2.ebuild  |  99 --
 .../audicle/files/audicle-1.0.0.6-font.patch   |  65 -
 .../audicle/files/audicle-1.0.0.7-const.patch  |  12 --
 .../audicle/files/audicle-1.0.0.7-gcc43.patch  |  68 --
 .../audicle/files/audicle-1.0.0.7-hid-smc.patch| 149 -
 media-sound/audicle/metadata.xml   |  10 --
 profiles/package.mask  |   1 -
 8 files changed, 405 deletions(-)

diff --git a/media-sound/audicle/Manifest b/media-sound/audicle/Manifest
deleted file mode 100644
index c42d3a9f490..000
--- a/media-sound/audicle/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST audicle-1.0.0.7.tgz 5561088 BLAKE2B 
7056880aa6b902e15e7722d9532736b8d513c6e9135b2b5afb839783e3df83f4e1f29f8c73b0f652d920029f6eb12dd7af1a699cb487b9ad0f76229f6ebd6fae
 SHA512 
c96506620e22e1f7846288cb4f34dc7efe59e14d845425673524d0a89712ea7d3dabed546eb921220e021d4e8526937990a4f5764fbf2bb90339b993f6703772

diff --git a/media-sound/audicle/audicle-1.0.0.7-r2.ebuild 
b/media-sound/audicle/audicle-1.0.0.7-r2.ebuild
deleted file mode 100644
index 7ea60ba2f27..000
--- a/media-sound/audicle/audicle-1.0.0.7-r2.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs flag-o-matic
-
-DESCRIPTION="A Context-sensitive, On-the-fly Audio Programming 
Environ/mentality"
-HOMEPAGE="http://audicle.cs.princeton.edu/;
-SRC_URI="http://audicle.cs.princeton.edu/release/files/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa jack oss truetype"
-
-BDEPEND="
-   sys-devel/bison
-   sys-devel/flex
-   virtual/pkgconfig
-"
-DEPEND="
-   app-eselect/eselect-audicle
-   media-libs/freeglut
-   media-libs/libsndfile
-   virtual/opengl
-   virtual/glu
-   x11-libs/gtk+:2
-   alsa? ( >=media-libs/alsa-lib-0.9 )
-   jack? ( virtual/jack )
-   truetype? (
-   media-fonts/corefonts
-   media-libs/ftgl
-   )
-"
-rDEPEND="${DEPEND}"
-
-REQUIRED_USE="|| ( alsa jack oss )"
-
-DOCS=( AUTHORS PROGRAMMER README THANKS TODO VERSIONS )
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.0.0.6-font.patch"
-   "${FILESDIR}/${P}-hid-smc.patch"
-   "${FILESDIR}/${P}-gcc43.patch"
-   "${FILESDIR}/${P}-const.patch"
-)
-
-src_prepare() {
-   default
-
-   sed -i \
-   -e 's@../ftgl_lib/FTGL/include@/usr/include/FTGL@' \
-   -e 's@../ftgl_lib/FTGL/mac/build@/usr/lib@' \
-   -e 's/gcc -o/$(CC) -o/' \
-   -e 's/-O3 -c/-c $(CFLAGS)/' \
-   -e 's/$(LIBS)/$(LDFLAGS) $(LIBS)/' \
-   src/makefile.{alsa,jack,oss} || die "sed failed"
-}
-
-compile_backend() {
-   local backend="$1"
-   local config
-   use truetype && config="USE_FREETYPE_LIBS=1"
-   einfo "Compiling against ${backend}"
-   cd "${S}/src"
-   emake -f "makefile.${backend}" CC="$(tc-getCC)" CXX="$(tc-getCXX)" 
LEX=flex \
-   YACC=bison ${config}
-   mv audicle{,-${backend}}
-   emake -f makefile clean
-}
-
-src_compile() {
-   # when compile with athlon or athlon-xp flags
-   # audicle crashes on removing a shred with a double free or corruption
-   # it happens in Chuck_VM_Stack::shutdown() on the line
-   #   SAFE_DELETE_ARRAY( stack );
-   replace-cpu-flags athlon athlon-xp i686
-
-   use jack && compile_backend jack
-   use alsa && compile_backend alsa
-   use oss && compile_backend oss
-}
-
-src_install() {
-   use jack && dobin src/audicle-jack
-   use alsa && dobin src/audicle-alsa
-   use oss && dobin src/audicle-oss
-   dodoc ${DOCS[@]}
-}
-
-pkg_postinst() {
-   elog "Audicle now can use many audio engines, so you can specify audio 
engine"
-   elog "with audicle-{jack,alsa,oss}"
-   elog "Or you can use 'eselect audicle' to set the audio engine"
-
-   einfo "Calling eselect audicle update..."
-   eselect audicle update --if-unset
-}

diff --g

[gentoo-commits] repo/gentoo:master commit in: sci-biology/wgs-assembler/files/, profiles/, sci-biology/wgs-assembler/

2021-09-04 Thread Jakov Smolić
commit: 646bf3998bdd7dce3da0f3ad2bd03e201361a391
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep  4 06:56:40 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 07:01:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=646bf399

sci-biology/wgs-assembler: Remove last-rited package

Closes: https://bugs.gentoo.org/610094
Closes: https://bugs.gentoo.org/715874
Closes: https://bugs.gentoo.org/731860
Closes: https://bugs.gentoo.org/739486
Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/package.mask  |   7 -
 sci-biology/wgs-assembler/Manifest |   1 -
 .../files/wgs-assembler-7.0-build.patch| 257 -
 .../files/wgs-assembler-7.0-libtirpc.patch |  16 --
 sci-biology/wgs-assembler/metadata.xml |  11 -
 .../wgs-assembler/wgs-assembler-7.0-r2.ebuild  |  66 --
 6 files changed, 358 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index b2e06f5ec90..1a4feb4b97b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -175,13 +175,6 @@ dev-python/pydiff
 # as replacement. Bug #769017.
 app-i18n/man-pages-it
 
-# David Seifert  (2021-08-05)
-# Dead upstream, last release over 5 years ago, multiple
-# build issues, fails to build with GCC 11. Use something like
-# sci-biology/abyss or canu as a modern day replacement.
-# Bug #610094, #715874, #731860, #739486, removal in 30 days.
-sci-biology/wgs-assembler
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing

diff --git a/sci-biology/wgs-assembler/Manifest 
b/sci-biology/wgs-assembler/Manifest
deleted file mode 100644
index 1139a2badf3..000
--- a/sci-biology/wgs-assembler/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST wgs-7.0.tar.bz2 1952253 BLAKE2B 
2dbff6ffb9f4310d3d1301405e74476b7b7bbed4359c1701b5100d9597db46cc9956ccbe467bb37f8976d176ab9f92bfabcd5d1210b1e10675cff9a87ff379b9
 SHA512 
e5ef1d4533e3dd17d13c6aca9631f5300768a258f8241f3f7f90de3785bf7a340b6896febe335682c282434c9983bc4a02fe2128a5b0e7ec415dd65e0fe400ba

diff --git a/sci-biology/wgs-assembler/files/wgs-assembler-7.0-build.patch 
b/sci-biology/wgs-assembler/files/wgs-assembler-7.0-build.patch
deleted file mode 100644
index 238541b512f..000
--- a/sci-biology/wgs-assembler/files/wgs-assembler-7.0-build.patch
+++ /dev/null
@@ -1,257 +0,0 @@
 a/kmer/configure.sh
-+++ b/kmer/configure.sh
-@@ -254,13 +254,13 @@
- # -*- makefile -*-
- #  Linux, optimized
- CC:= $CC
--SHLIB_FLAGS   := -shared
--CFLAGS_COMPILE:= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE 
-D_REENTRANT -O3 -D_THREAD_SAFE -pthread -fmessage-length=0 -Wall 
-Wno-char-subscripts -funroll-loops -fexpensive-optimizations 
-finline-functions -fomit-frame-pointer
--CLDFLAGS  := -L/usr/local/lib
-+SHLIB_FLAGS   := -shared ${LDFLAGS}
-+CFLAGS_COMPILE:= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE 
-D_REENTRANT -D_THREAD_SAFE -pthread -fmessage-length=0 -Wall 
-Wno-char-subscripts
-+CLDFLAGS  := 
- CLIBS := -pthread -ldl
- CXX   := $CXX
--CXXFLAGS_COMPILE  := -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE 
-D_REENTRANT -O3 -D_THREAD_SAFE -pthread -fmessage-length=0 -Wall 
-Wno-char-subscripts -funroll-loops -fexpensive-optimizations 
-finline-functions -fomit-frame-pointer
--CXXLDFLAGS:= -L/usr/local/lib
-+CXXFLAGS_COMPILE  := -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE 
-D_REENTRANT -O3 -D_THREAD_SAFE -pthread -fmessage-length=0 -Wall 
-Wno-char-subscripts
-+CXXLDFLAGS:= 
- CXXLIBS   := -pthread -ldl
- ARFLAGS   := ruvs
- INSTALL/  := $target/
-@@ -272,13 +272,13 @@
- # -*- makefile -*-
- #  Linux64, optimized
- CC:= $CC
--SHLIB_FLAGS   := -shared
--CFLAGS_COMPILE:= -m64 -fPIC -D_REENTRANT -O3 -D_THREAD_SAFE -pthread 
-fmessage-length=0 -Wall -Wno-char-subscripts -funroll-loops 
-fexpensive-optimizations -finline-functions -fomit-frame-pointer
--CLDFLAGS  := -L/usr/local/lib
-+SHLIB_FLAGS   := -shared ${LDFLAGS}
-+CFLAGS_COMPILE:= -fPIC -D_REENTRANT -D_THREAD_SAFE -pthread 
-fmessage-length=0 -Wall -Wno-char-subscripts
-+CLDFLAGS  := 
- CLIBS := -pthread -ldl
- CXX   := $CXX
--CXXFLAGS_COMPILE  := -m64 -fPIC -D_REENTRANT -O3 -D_THREAD_SAFE -pthread 
-fmessage-length=0 -Wall -Wno-char-subscripts -funroll-loops 
-fexpensive-optimizations -finline-functions -fomit-frame-pointer
--CXXLDFLAGS:= -L/usr/local/lib
-+CXXFLAGS_COMPILE  := -fPIC -D_REENTRANT -D_THREAD_SAFE -pthread 
-fmessage-length=0 -Wall -Wno-char-subscripts
-+CXXLDFLAGS:= 
- CXXLIBS   := -pthread -ldl
- ARFLAGS   := ruvs
- INSTALL/  := $target/
-@@ -401,8 +401,8 @@
- .O:= .o
- CLD   := \${CC}
- CXXLD 

[gentoo-commits] repo/gentoo:master commit in: net-misc/stargazer/files/patches/, net-misc/stargazer/files/mans/, ...

2021-09-02 Thread Jakov Smolić
commit: c1a5727e16c09889a4d3fe78ad5c8cd8d0c6190f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 20:30:19 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:35:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1a5727e

net-misc/stargazer: Remove last-rited package

Closes: https://bugs.gentoo.org/712832
Closes: https://bugs.gentoo.org/694674
Closes: https://bugs.gentoo.org/725166
Closes: https://bugs.gentoo.org/788637
Closes: https://bugs.gentoo.org/692806
Closes: https://bugs.gentoo.org/798042
Closes: https://bugs.gentoo.org/740792
Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/stargazer/Manifest|   1 -
 net-misc/stargazer/files/logrotate |   9 -
 net-misc/stargazer/files/mans/rscriptd.8   |  51 --
 net-misc/stargazer/files/mans/sgauth.8 |  54 --
 net-misc/stargazer/files/mans/sgconf.1 | 160 --
 net-misc/stargazer/files/mans/sgconf_xml.1 |  79 ---
 net-misc/stargazer/files/mans/sgconv.1 |  42 --
 net-misc/stargazer/files/mans/stargazer.8  |  64 ---
 .../files/patches/stg-2.408-build-upstream.patch   | 214 
 .../stargazer/files/patches/stg-2.408-build.patch  | 179 ---
 .../files/patches/stg-2.408-correct-paths.patch| 186 ---
 .../patches/stg-2.408-fix-crash-on-stop.patch  | 190 
 .../stg-2.408-makefile-build-upstream.patch| 386 ---
 .../stg-2.408-makefile-firebird-upstream.patch |  13 -
 .../files/patches/stg-2.408-makefile.patch | 203 
 .../files/patches/stg-2.408-on-upstream.patch  | 151 --
 .../files/patches/stg-2.408-radius-upstream.patch  |  31 --
 .../patches/stg-2.408-rscriptd-upstream.patch  |  26 -
 .../patches/stg-2.408-rscriptd.conf-upstream.patch |  80 ---
 .../patches/stg-2.408-sgauth.conf-upstream.patch   | 112 -
 .../files/patches/stg-2.408-sgconv-upstream.patch  |  40 --
 .../files/patches/stg-2.408-static-libs.patch  |  10 -
 net-misc/stargazer/files/rscriptd  |  23 -
 net-misc/stargazer/files/sgauth|  27 -
 net-misc/stargazer/metadata.xml|  50 --
 net-misc/stargazer/stargazer-2.408-r2.ebuild   | 542 -
 profiles/package.mask  |   7 -
 27 files changed, 2930 deletions(-)

diff --git a/net-misc/stargazer/Manifest b/net-misc/stargazer/Manifest
deleted file mode 100644
index 6c0b4e25b4f..000
--- a/net-misc/stargazer/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST stg-2.408.tar.gz 5100291 BLAKE2B 
c5e50d5607f7c5253dcbb9d48fffdd55bf44829bfc3dba1e45227fa819d2592212366baff6b19dce70ef7a565f8b03e8f580204225441b12653de6271a030554
 SHA512 
200e08cfd629dbacda31ffd3134c2908a1ad58604421cc288ad0ec1bdcd60fe021d51fed50fdc2517bb7c2b61ef23b0b9c71a606babd09bc7804cb899e0b7f75

diff --git a/net-misc/stargazer/files/logrotate 
b/net-misc/stargazer/files/logrotate
deleted file mode 100644
index ffa9c23f301..000
--- a/net-misc/stargazer/files/logrotate
+++ /dev/null
@@ -1,9 +0,0 @@
-/var/log/stargazer/*.log {
-daily
-rotate 31
-compress
-missingok
-notifempty
-copytruncate
-sharedscripts
-}

diff --git a/net-misc/stargazer/files/mans/rscriptd.8 
b/net-misc/stargazer/files/mans/rscriptd.8
deleted file mode 100644
index 440f7b0267b..000
--- a/net-misc/stargazer/files/mans/rscriptd.8
+++ /dev/null
@@ -1,51 +0,0 @@
-.TH rscriptd 8 "December 31, 2012" "" "rscriptd"
-
-.SH NAME
-rscriptd \- a remote script execute daemon for Stargazer
-
-.SH SYNOPSIS
-.B rscriptd
-.RI [ config-file ]
-.br
-
-.SH DESCRIPTION
-The
-.B rscriptd
-daemon typically runs on a last-wire router before users and
-manages firewall rules to allow/disallow users get their services.
-.B rscriptd
-communicates with
-.B Stargazer
-main daemon by UDP protocol.
-
-.SH OPTIONS
-.TP
-.I config-file
-Path to rscriptd configuration file. Default is 
-.B
-/etc/rscriptd/rscriptd.conf
-
-.SH FILES
-.B
-/usr/sbin/rsriptd
-.br
-.B
-/etc/stargazer/rscriptd.conf
-.br
-.B
-/var/log/stargazer/rscriptd.log
-
-.SH SEE ALSO
-.BR sgconf (1),
-.BR sgconf_xml (1),
-.BR sgconv (1),
-.BR sgauth (8),
-.BR stargazer (8).
-
-.SH AUTHOR
-rscriptd was originally written by Boris Mikhailenko  
and 
-Maxim Mamontov .
-.PP
-This manual page was written by Alexey Osipov ,
-for the Debian project (and may be used by others), and was modified by
-Vladimir Pavljuchenkov  for Gentoo Linux
\ No newline at end of file

diff --git a/net-misc/stargazer/files/mans/sgauth.8 
b/net-misc/stargazer/files/mans/sgauth.8
deleted file mode 100644
index 24c872761f7..000
--- a/net-misc/stargazer/files/mans/sgauth.8
+++ /dev/null
@@ -1,54 +0,0 @@
-.TH sgauth 1 "December 31, 2012" "" "sgauth"
-
-.SH NAME
-sgauth \- a command-line utility for authorization in Stargazer
-
-.SH SYNOPSIS
-.B sgauth
-.RI [ c

[gentoo-commits] repo/gentoo:master commit in: sci-physics/sassena/files/, sci-physics/sassena/, profiles/

2021-09-02 Thread Jakov Smolić
commit: ba86737974866cf5bb36e28a66b9daabfb8d6cde
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 20:28:45 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:35:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba867379

sci-physics/sassena: Remove last-rited package

Closes: https://bugs.gentoo.org/741646
Closes: https://bugs.gentoo.org/792993
Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/package.mask  |  5 --
 sci-physics/sassena/Manifest   |  1 -
 .../files/sassena-1.4.2_cmake-remove-missing.patch | 33 
 .../files/sassena-1.4.2_link_boost_thread.patch| 92 --
 .../sassena/files/sassena-1.4.2_uint32_t.patch | 11 ---
 sci-physics/sassena/metadata.xml   | 11 ---
 sci-physics/sassena/sassena-1.4.2.ebuild   | 32 
 7 files changed, 185 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index f60e9b74435..116fdca2715 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -200,11 +200,6 @@ app-backup/zbackup
 # Removal on 2021-09-04.
 net-misc/stargazer
 
-# Sam James  (2021-08-04)
-# Fails to build with GCC 11 and has Boost incompatibility issues.
-# bug #741646, bug #792993. Removal on 2021-09-04.
-sci-physics/sassena
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing

diff --git a/sci-physics/sassena/Manifest b/sci-physics/sassena/Manifest
deleted file mode 100644
index f414a33d4ca..000
--- a/sci-physics/sassena/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sassena-1.4.2.tar.gz 783708 BLAKE2B 
eef37655c50831f50bfd7f9d66b98d30820661682c78d9fc0f24bf4cc924dfff3a2ce3d116a8fe1161522907825a1bbaaef5d61bf8edb20094bc37606cf87c88
 SHA512 
07dbd44494a50de29b6f3b3542d862328726d132bda097352ac2f6ad24479b93b2d77c5ea2ef812b2956d0ac950ad69b93da0996f14ff1ce9f0e310b27728942

diff --git a/sci-physics/sassena/files/sassena-1.4.2_cmake-remove-missing.patch 
b/sci-physics/sassena/files/sassena-1.4.2_cmake-remove-missing.patch
deleted file mode 100644
index 7131d351452..000
--- a/sci-physics/sassena/files/sassena-1.4.2_cmake-remove-missing.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -ru sassena-1.4.2_org/cmake/CMakeLists.txt.executables 
sassena-1.4.2/cmake/CMakeLists.txt.executables
 sassena-1.4.2_org/cmake/CMakeLists.txt.executables 2014-07-29 
11:02:12.652053749 +0200
-+++ sassena-1.4.2/cmake/CMakeLists.txt.executables 2014-07-29 
11:04:57.831042602 +0200
-@@ -18,18 +18,12 @@
- tests/unit_broadcast.cpp
- )
- 
--ADD_EXECUTABLE(unit_parameters 
--  src/common.cpp
--tests/unit_parameters.cpp
--)
--
- 
- IF(STATIC)
- SET_TARGET_PROPERTIES(sassena PROPERTIES LINK_SEARCH_END_STATIC 1)
- SET_TARGET_PROPERTIES(s_stage PROPERTIES LINK_SEARCH_END_STATIC 1)
- SET_TARGET_PROPERTIES(s_maketnx PROPERTIES LINK_SEARCH_END_STATIC 1)
- SET_TARGET_PROPERTIES(unit_broadcast PROPERTIES LINK_SEARCH_END_STATIC 1)
--SET_TARGET_PROPERTIES(unit_parameters PROPERTIES LINK_SEARCH_END_STATIC 1)
- ENDIF(STATIC)
- 
- TARGET_LINK_LIBRARIES (s_stage 
-@@ -89,10 +83,4 @@
-   ${BOOST_LIBRARIES}
- )
- 
--TARGET_LINK_LIBRARIES (unit_parameters 
--  sass_log
--  sass_controlio
--  ${BOOST_LIBRARIES}
--)
--
- INSTALL(TARGETS unit_broadcast RUNTIME DESTINATION bin)

diff --git a/sci-physics/sassena/files/sassena-1.4.2_link_boost_thread.patch 
b/sci-physics/sassena/files/sassena-1.4.2_link_boost_thread.patch
deleted file mode 100644
index 424ca381a51..000
--- a/sci-physics/sassena/files/sassena-1.4.2_link_boost_thread.patch
+++ /dev/null
@@ -1,92 +0,0 @@
-diff -ru sassena-1.4.2_org/src/main/sassena.cpp 
sassena-1.4.2/src/main/sassena.cpp
 sassena-1.4.2_org/src/main/sassena.cpp 2014-07-29 11:02:12.650053749 
+0200
-+++ sassena-1.4.2/src/main/sassena.cpp 2014-07-29 12:52:56.978605357 +0200
-@@ -62,6 +62,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- // other headers
- #include "exceptions/exceptions.hpp"
-Nur in sassena-1.4.2/src/main: .sassena.cpp.swp.
-diff -ru sassena-1.4.2_org/src/main/s_stage.cpp 
sassena-1.4.2/src/main/s_stage.cpp
 sassena-1.4.2_org/src/main/s_stage.cpp 2014-07-29 11:02:12.650053749 
+0200
-+++ sassena-1.4.2/src/main/s_stage.cpp 2014-07-29 12:51:22.257611749 +0200
-@@ -33,6 +33,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- // other headers
- #include "exceptions/exceptions.hpp"
-diff -ru sassena-1.4.2_org/src/scatter_devices/abstract_scatter_device.cpp 
sassena-1.4.2/src/scatter_devices/abstract_scatter_device.cpp
 sassena-1.4.2_org/src/scatter_devices/abstract_scatter_device.cpp  
2014-07-29 11:02:12.650053749 +0200
-+++ sassena-1.4.2/src/scatter_devices/abstract_scatter_device.cpp  
2014-07-29 13:02:20.824567306 +0200
-@@ -18,6 +18,7 @@
- #include 
- #include 
- #include 
-+#i

[gentoo-commits] repo/gentoo:master commit in: app-i18n/xcin/files/, app-i18n/xcin/, profiles/

2021-09-02 Thread Jakov Smolić
commit: e9029894834a786cf09ae2e36b14e82838725dda
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 19:45:53 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:33:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9029894

app-i18n/xcin: Remove last-rited package

Closes: https://bugs.gentoo.org/742941
Closes: https://bugs.gentoo.org/742938
Closes: https://bugs.gentoo.org/722376
Signed-off-by: Jakov Smolić  gentoo.org>

 app-i18n/xcin/Manifest |   2 -
 .../xcin/files/xcin-2.5.3_pre3-glibc-2.10.patch| 110 ---
 app-i18n/xcin/files/xcin-2.5.3_pre3-ldflags.patch  |  96 -
 app-i18n/xcin/files/xcin-2.5.3_pre3-make.patch | 118 -
 app-i18n/xcin/files/xcin-2.5.3_pre3-slibtool.patch |  37 ---
 app-i18n/xcin/metadata.xml |   8 --
 app-i18n/xcin/xcin-2.5.3_pre3-r3.ebuild|  87 ---
 profiles/package.mask  |   1 -
 8 files changed, 459 deletions(-)

diff --git a/app-i18n/xcin/Manifest b/app-i18n/xcin/Manifest
deleted file mode 100644
index 3ac538ec8ac..000
--- a/app-i18n/xcin/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST xcin_2.5.2.99.pre2+cvs20030224-1.4.diff.gz 1321937 BLAKE2B 
4213f585d62d37215495354890203272fda0d7068bd6ceb8c0d75a2d1cd8c6626997607ab5b821887248f2e4207733eb3a26d021873893488b8dee83fddd3e52
 SHA512 
d1c6a667a8dcf996e02d694a0ff73eca409f542ce11b0e4d8563ed04c62e12c1d8feb6307153c5cfe982e66848b414dd65fc23d022ccc54cf2a0e3978b8c33e5
-DIST xcin_2.5.2.99.pre2+cvs20030224.orig.tar.gz 1530591 BLAKE2B 
1c68d8bd4f11c458c2fefe974fc5f565a59deee23129f1c53e5714655d5be543e7a97f72eab2dc56aa098b78b53bfa77a4c0fbcb56cb93b936cc8b4ee5435135
 SHA512 
1068a9cf7f3b7ff3c2ff7e0443e487e660f3ec8c7f0114f1ad614fb1c7a73d15613ce0c198514816f00afaaa22434660ed11d329413bf010aa52b27513a5ac14

diff --git a/app-i18n/xcin/files/xcin-2.5.3_pre3-glibc-2.10.patch 
b/app-i18n/xcin/files/xcin-2.5.3_pre3-glibc-2.10.patch
deleted file mode 100644
index 3d472f95b0f..000
--- a/app-i18n/xcin/files/xcin-2.5.3_pre3-glibc-2.10.patch
+++ /dev/null
@@ -1,110 +0,0 @@
-diff -ur xcin-2.5.2.99.pre2+cvs20030224.orig/doc/En/internal/module.En 
xcin-2.5.2.99.pre2+cvs20030224/doc/En/internal/module.En
 xcin-2.5.2.99.pre2+cvs20030224.orig/doc/En/internal/module.En  
2000-12-13 18:55:41.0 +0200
-+++ xcin-2.5.2.99.pre2+cvs20030224/doc/En/internal/module.En   2009-12-29 
18:09:20.0 +0200
-@@ -481,13 +481,13 @@
- char *lc_ctype; /* LC_CTYPE locale category name */
- char *lc_messages;  /* LC_MESSAGES locale category name */
- char *encoding; /* encoding name */
--} locale_t;
-+} xcin_locale_t;
- 
- typedef struct {
- char *rcfile;   /* rcfile name. */
- char *default_dir;  /* Default module directory. */
- char *user_dir; /* User data directory. */
--locale_t locale;/* Locale name. */
-+xcin_locale_t locale;/* Locale name. */
- } xcin_rc_t;
- 
-   The return value of this function is True when excuting successfully,
-diff -ur xcin-2.5.2.99.pre2+cvs20030224.orig/doc/internal/module 
xcin-2.5.2.99.pre2+cvs20030224/doc/internal/module
 xcin-2.5.2.99.pre2+cvs20030224.orig/doc/internal/module2002-10-29 
13:53:42.0 +0200
-+++ xcin-2.5.2.99.pre2+cvs20030224/doc/internal/module 2009-12-29 
18:09:24.0 +0200
-@@ -423,13 +423,13 @@
-   char *lc_ctype; /* LC_CTYPE locale category name */
-   char *lc_messages;  /* LC_MESSAGES locale category name */
-   char *encoding; /* encoding name */
--  } locale_t;
-+  } xcin_locale_t;
- 
-   typedef struct {
-   char *rcfile;   /* rcfile name. */
-   char *default_dir;  /* Default module directory. */
-   char *user_dir; /* User data directory. */
--  locale_t locale;/* Locale name. */
-+  xcin_locale_t locale;/* Locale name. */
-   } xcin_rc_t;
- 
-   ���禡�Y���\�Ǧ^ True, ���ѶǦ^ False�C
-diff -ur xcin-2.5.2.99.pre2+cvs20030224.orig/src/include/xcintool.h 
xcin-2.5.2.99.pre2+cvs20030224/src/include/xcintool.h
 xcin-2.5.2.99.pre2+cvs20030224.orig/src/include/xcintool.h 2002-10-29 
13:53:42.0 +0200
-+++ xcin-2.5.2.99.pre2+cvs20030224/src/include/xcintool.h  2009-12-29 
18:09:01.0 +0200
-@@ -202,12 +202,12 @@
- char *lc_messages;
- char *encoding;
- int encid, locid;
--} locale_t;
-+} xcin_locale_t;
- 
- typedef struct {
- int argc; /* Command line arguement list */
- char **argv;
--locale_t locale;/* Locale name. */
-+xcin_locale_t locale;/* Locale name. */
- char

[gentoo-commits] repo/gentoo:master commit in: dev-libs/replicant/, profiles/

2021-09-02 Thread Jakov Smolić
commit: 21ddfd046fb1f262cefa74f11449d64350fa69b2
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 19:43:26 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:33:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21ddfd04

dev-libs/replicant: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-libs/replicant/Manifest   |  1 -
 dev-libs/replicant/metadata.xml   |  8 
 dev-libs/replicant/replicant-0.8.1.ebuild | 22 --
 profiles/package.mask |  1 -
 4 files changed, 32 deletions(-)

diff --git a/dev-libs/replicant/Manifest b/dev-libs/replicant/Manifest
deleted file mode 100644
index ab3f59468e3..000
--- a/dev-libs/replicant/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST replicant-0.8.1.tar.gz 444074 BLAKE2B 
0e4c87437268a86d67b0452e77bca4b4787d44deac29daa4535e851e007c5f6641f2c2cc7f650493ff89e69fa65ee8075658aa70ea0212253334d1af7a6155ae
 SHA512 
a968b92717156656d8f3d8302cedf3405fe1efdf2be79905900f3e3ef26002ec83d4337dceb60ea493bb1607a0b0f9bcba92d766bb11463818483d64ecaaef38

diff --git a/dev-libs/replicant/metadata.xml b/dev-libs/replicant/metadata.xml
deleted file mode 100644
index 40aa45df2b0..000
--- a/dev-libs/replicant/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   patr...@gentoo.org
-   Patrick Lauer
-   
-

diff --git a/dev-libs/replicant/replicant-0.8.1.ebuild 
b/dev-libs/replicant/replicant-0.8.1.ebuild
deleted file mode 100644
index 1f24b21f9eb..000
--- a/dev-libs/replicant/replicant-0.8.1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Hyperdex replicant support library"
-HOMEPAGE="http://hyperdex.org;
-SRC_URI="http://hyperdex.org/src/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE=""
-
-DEPEND=">=dev-libs/libpo6-0.8
-   >=dev-libs/libe-0.11
-   >=dev-libs/busybee-0.7
-   dev-libs/hyperleveldb
-   dev-cpp/glog
-   dev-cpp/sparsehash"
-RDEPEND="${DEPEND}"

diff --git a/profiles/package.mask b/profiles/package.mask
index 80c947d30e6..fa13047df83 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -233,7 +233,6 @@ app-i18n/xcin
 # last distro that still packages this.
 # Bug #629610, #646690, removal in 30 days.
 dev-libs/hyperleveldb
-dev-libs/replicant
 
 # Andreas Sturmlechner  (2021-08-02)
 # Two years after the tracker was opened it is time to mask dev-qt/qtwebkit



[gentoo-commits] repo/gentoo:master commit in: profiles/base/

2021-09-02 Thread Jakov Smolić
commit: fb7c71ea0713902fa35c76b53ee29ea3b432bd8b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 20:29:54 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:35:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb7c71ea

profiles/base: Remove app-i18n/xcin p.u.mask entry

Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/base/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 1eb0c06c312..e27643adf12 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -312,10 +312,6 @@ dev-python/statsmodels doc
 sys-block/open-iscsi slp
 sys-block/open-isns slp
 
-# Michał Górny  (2019-09-28)
-# media-fonts/hkscs-ming is slated for removal.
-app-i18n/xcin unicode
-
 # Craig Andrews  (2019-09-12)
 # OpenSSL (as of version 1.1.1) doesn't have APIs for QUIC support
 # see https://github.com/openssl/openssl/pull/8797



[gentoo-commits] repo/gentoo:master commit in: profiles/, dev-libs/hyperleveldb/files/, dev-libs/hyperleveldb/

2021-09-02 Thread Jakov Smolić
commit: 3d9b840d83f646205812a0b6a4394ed52b9da979
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 19:44:16 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:33:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9b840d

dev-libs/hyperleveldb: Remove last-rited package

Closes: https://bugs.gentoo.org/646690
Closes: https://bugs.gentoo.org/629610
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-libs/hyperleveldb/Manifest |  1 -
 dev-libs/hyperleveldb/files/snappy.patch   | 31 ---
 dev-libs/hyperleveldb/hyperleveldb-1.2.2-r1.ebuild | 35 --
 dev-libs/hyperleveldb/metadata.xml |  8 -
 profiles/package.mask  |  6 
 5 files changed, 81 deletions(-)

diff --git a/dev-libs/hyperleveldb/Manifest b/dev-libs/hyperleveldb/Manifest
deleted file mode 100644
index 959e39fc4b8..000
--- a/dev-libs/hyperleveldb/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST hyperleveldb-1.2.2.tar.gz 584955 BLAKE2B 
de578b83ae3ea4e3802bee9936d5917af421baf2513da9e4575b8965a8bcc53565fd56105eea70a0c0c62ddefc3c5c11bb3511b52c6c09e68c5a416d6aa06ac0
 SHA512 
6fb7a84ec237a5a1a3f5f7c90965a0b0661a6143722a159a189c4c54231d8c5746dcbb76713fbe9b8b2529467f287365d30dd7115fb5c1ef54f864686a709eb2

diff --git a/dev-libs/hyperleveldb/files/snappy.patch 
b/dev-libs/hyperleveldb/files/snappy.patch
deleted file mode 100644
index db3d2e3885a..000
--- a/dev-libs/hyperleveldb/files/snappy.patch
+++ /dev/null
@@ -1,31 +0,0 @@
 a/Makefile.am
-+++ b/Makefile.am
-@@ -196,7 +196,7 @@
- TESTS = $(check_PROGRAMS)
- 
- benchmark_SOURCES = benchmark.cc
--benchmark_LDADD = libhyperleveldb.la -lpthread -le -lpopt -lygor
-+benchmark_LDADD = libhyperleveldb.la -lpthread -le -lpopt -lygor -lsnappy
- benchmark_LDFLAGS = -no-install
- 
- db_bench_SOURCES = db/db_bench.cc $(TESTUTIL)
-
-@@ -200,7 +200,7 @@
- benchmark_LDFLAGS = -no-install
- 
- db_bench_SOURCES = db/db_bench.cc $(TESTUTIL)
--db_bench_LDADD = libhyperleveldb.la -lpthread
-+db_bench_LDADD = libhyperleveldb.la -lpthread -lsnappy
- 
- db_bench_sqlite3_SOURCES = doc/bench/db_bench_sqlite3.cc $(TESTUTIL)
- db_bench_sqlite3_LDADD = -lsqlite3
-@@ -215,7 +215,7 @@
- leveldb_dump_all_LDADD = libhyperleveldb.la -lpthread
- 
- leveldb_verify_SOURCES = leveldb-verify.cc
--leveldb_verify_LDADD = libhyperleveldb.la -lpthread
-+leveldb_verify_LDADD = libhyperleveldb.la -lpthread -lsnappy
- 
- autocompact_test_SOURCES = db/autocompact_test.cc $(TESTHARNESS)
- autocompact_test_LDADD = libhyperleveldb.la -lpthread
-

diff --git a/dev-libs/hyperleveldb/hyperleveldb-1.2.2-r1.ebuild 
b/dev-libs/hyperleveldb/hyperleveldb-1.2.2-r1.ebuild
deleted file mode 100644
index 1a42b9d33f7..000
--- a/dev-libs/hyperleveldb/hyperleveldb-1.2.2-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-WANT_AUTOMAKE="1.11"
-
-inherit autotools
-
-DESCRIPTION="Hyperdex fork/extension of leveldb"
-HOMEPAGE="http://hyperdex.org/;
-SRC_URI="http://hyperdex.org/src/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="dev-libs/leveldb:=[snappy]"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}"/snappy.patch )
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf --disable-static
-}
-
-src_install() {
-   default
-   find "${ED}" -name '*.la' -delete || die
-}

diff --git a/dev-libs/hyperleveldb/metadata.xml 
b/dev-libs/hyperleveldb/metadata.xml
deleted file mode 100644
index 40aa45df2b0..000
--- a/dev-libs/hyperleveldb/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   patr...@gentoo.org
-   Patrick Lauer
-   
-

diff --git a/profiles/package.mask b/profiles/package.mask
index fa13047df83..7e8aeebb0b6 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -228,12 +228,6 @@ media-libs/memphis
 app-i18n/libtabe
 app-i18n/xcin
 
-# David Seifert  (2021-08-04)
-# Last release 7 years ago, multiple test failures, unmaintained,
-# last distro that still packages this.
-# Bug #629610, #646690, removal in 30 days.
-dev-libs/hyperleveldb
-
 # Andreas Sturmlechner  (2021-08-02)
 # Two years after the tracker was opened it is time to mask dev-qt/qtwebkit
 # for good. No commits to upstream repository for >9 months, latest available



[gentoo-commits] repo/gentoo:master commit in: profiles/, media-libs/memphis/, media-libs/memphis/files/

2021-09-02 Thread Jakov Smolić
commit: 5c6a3418265732fa655763d64ce77e55e17c5abd
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 19:51:31 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:35:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c6a3418

media-libs/memphis: Remove last-rited package

Closes: https://bugs.gentoo.org/586586
Signed-off-by: Jakov Smolić  gentoo.org>

 media-libs/memphis/Manifest|  1 -
 .../memphis/files/memphis-0.2.3-link_gobject.patch | 11 -
 media-libs/memphis/memphis-0.2.3.ebuild| 53 --
 media-libs/memphis/metadata.xml|  8 
 profiles/package.mask  |  6 ---
 5 files changed, 79 deletions(-)

diff --git a/media-libs/memphis/Manifest b/media-libs/memphis/Manifest
deleted file mode 100644
index 230616d812f..000
--- a/media-libs/memphis/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST memphis-0.2.3.tar.gz 459423 BLAKE2B 
a2f9f1a86feb058e911051b0c0c4cc1b6a47dced6a24096e91e27e869099d1ae86e13b5e55c4639c70bc9536a266d60d07023e863675d0a9e716e2f539a331ce
 SHA512 
effac6efbf6e8fb8c3c436013447a27f4bcbea661268e2e6b5ec69cd93b117cee6c56f78a557223c7dd45020a27e51807a4e2682d6d311b319c783e714064b01

diff --git a/media-libs/memphis/files/memphis-0.2.3-link_gobject.patch 
b/media-libs/memphis/files/memphis-0.2.3-link_gobject.patch
deleted file mode 100644
index 231c834b82c..000
--- a/media-libs/memphis/files/memphis-0.2.3-link_gobject.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/configure.ac
-+++ b/configure.ac
-@@ -89,7 +89,7 @@
- exit 0;
-   fi
-   VALA_EXAMPLE_PACKAGES="--pkg cairo --pkg memphis-0.2"
--  PKG_CHECK_MODULES(VALA_EXAMPLE, [glib-2.0, cairo])
-+  PKG_CHECK_MODULES(VALA_EXAMPLE, [glib-2.0 gobject-2.0 cairo])
-   AC_SUBST(VALA_EXAMPLE_CFLAGS)
-   AC_SUBST(VALA_EXAMPLE_LIBS)
-   AC_SUBST(VALA_EXAMPLE_PACKAGES)

diff --git a/media-libs/memphis/memphis-0.2.3.ebuild 
b/media-libs/memphis/memphis-0.2.3.ebuild
deleted file mode 100644
index 2acaf64d495..000
--- a/media-libs/memphis/memphis-0.2.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-WANT_AUTOMAKE=1.11
-
-inherit autotools vala
-
-DESCRIPTION="A map-rendering application and a library for OpenStreetMap"
-HOMEPAGE="http://trac.openstreetmap.ch/trac/memphis/;
-SRC_URI="http://wenner.ch/files/public/mirror/${PN}/${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0.2"
-KEYWORDS="~alpha amd64 arm ~ia64 ppc ppc64 sparc x86"
-IUSE="debug doc +introspection vala"
-
-RDEPEND="
-   dev-libs/expat:=
-   dev-libs/glib:2
-   x11-libs/cairo:=
-   introspection? ( dev-libs/gobject-introspection )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   doc? ( dev-util/gtk-doc )
-   vala? ( $(vala_depend) )"
-
-PATCHES=( "${FILESDIR}"/${P}-link_gobject.patch )
-
-src_prepare() {
-   default
-   eautoreconf
-
-   unset VALAC
-   use vala && vala_src_prepare
-}
-
-src_configure() {
-   econf \
-   --disable-static \
-   $(use_enable debug) \
-   $(use_enable doc gtk-doc) \
-   $(use_enable introspection) \
-   $(use_enable vala)
-}
-
-src_install() {
-   default
-
-   # no static archives
-   find "${D}" -name '*.la' -delete || die
-}

diff --git a/media-libs/memphis/metadata.xml b/media-libs/memphis/metadata.xml
deleted file mode 100644
index d78f8098182..000
--- a/media-libs/memphis/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-sci-geoscien...@gentoo.org
-Gentoo Geosciences Project
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 28980a02dbc..f60e9b74435 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -215,12 +215,6 @@ sci-physics/sassena
 # Bug #245228, #632124, #691268, #767853, removal in 30 days.
 dev-util/pkgconfig
 
-# David Seifert  (2021-08-04)
-# Last release 11 years ago, XDG env issue, no revdeps, blocks
-# WANT_AUTOMAKE=1.11 removal, last major distro to package this.
-# Bug #586586, removal in 30 days.
-media-libs/memphis
-
 # Andreas Sturmlechner  (2021-08-02)
 # Two years after the tracker was opened it is time to mask dev-qt/qtwebkit
 # for good. No commits to upstream repository for >9 months, latest available



[gentoo-commits] repo/gentoo:master commit in: net-libs/openmq-cclient/, net-libs/openmq-cclient/files/, profiles/

2021-09-02 Thread Jakov Smolić
commit: d8022a3e44f0f3ee819577c0ca6054c4bd6d8b7b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 20:32:18 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:35:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8022a3e

net-libs/openmq-cclient: Remove last-rited package

Closes: https://bugs.gentoo.org/787905
Closes: https://bugs.gentoo.org/731254
Signed-off-by: Jakov Smolić  gentoo.org>

 net-libs/openmq-cclient/Manifest   |  1 -
 net-libs/openmq-cclient/files/Makefile.in-4| 69 -
 .../files/openmq-cclient-4.4.1-aix-gcc.patch   | 13 
 net-libs/openmq-cclient/metadata.xml   | 15 
 .../openmq-cclient/openmq-cclient-4.4.1.ebuild | 89 --
 profiles/package.mask  |  5 --
 6 files changed, 192 deletions(-)

diff --git a/net-libs/openmq-cclient/Manifest b/net-libs/openmq-cclient/Manifest
deleted file mode 100644
index 7573648ea11..000
--- a/net-libs/openmq-cclient/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST openmq4.4u1b7-final-source.zip 6892740 BLAKE2B 
0101648b1688411579b5d1133714b79af24788a548643546de80a708028a1c08af92e2534767eb0bd9f9eddbb16e77a1884880a5d4f9cbe4f0166dbce0b2045e
 SHA512 
4bc51a3bc0a82ae41998ae3d60912d807ff069d6165ea9cfdc1c6eefc9e57b00ad91d6ed2efa032e76be744db3328511bb02023d14a64bd3b64c8667982fbe8c

diff --git a/net-libs/openmq-cclient/files/Makefile.in-4 
b/net-libs/openmq-cclient/files/Makefile.in-4
deleted file mode 100644
index 188f5ed472d..000
--- a/net-libs/openmq-cclient/files/Makefile.in-4
+++ /dev/null
@@ -1,69 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-
-top_srcdir=@top_srcdir@
-top_builddir=@top_builddir@
-
-CC = @CC@
-CXX = @CXX@
-LIBTOOL = @LIBTOOL@
-
-CFLAGS = @CFLAGS@
-CXXFLAGS = @CXXFLAGS@
-LDFLAGS = @LDFLAGS@
-
-LTCC = $(LIBTOOL) --mode=compile --tag=CC $(CC)
-LTCXX = $(LIBTOOL) --mode=compile --tag=CXX $(CXX)
-LTLD = $(LIBTOOL) --mode=link --tag=CXX $(CXX)
-
-NS_S_PR_CFLAGS = $(shell ${PKG_CONFIG} --cflags nss nspr)
-NS_S_PR_LIBS = $(shell ${PKG_CONFIG} --libs nss nspr)
-
-SRCS = $(shell find "$(top_srcdir)" -name examples -prune -o -type f '(' -name 
'*.cpp' -o -name '*.c' -not -name '*Test*' ')')
-LTOBJS = $(subst .c,.lo,$(subst .cpp,.lo,$(SRCS)))
-
-HDRS = $(top_srcdir)/cshim/mq/xa.h $(shell find "$(top_srcdir)"/cshim -type f 
-name 'mq*.h')
-INSTHDRS = $(subst $(top_srcdir)/cshim,$(DESTDIR)$(includedir),$(HDRS))
-
-LTLIBRARY = libmqcrt.la
-INSTLTLIBRARY = $(DESTDIR)$(libdir)/$(LTLIBRARY)
-
-.SUFFIXES:
-.SUFFIXES: .cpp .c .lo
-
-default: all
-
-all: $(LTLIBRARY)
-
-Makefile: Makefile.in
-   $(top_builddir)/config.status $@
-
-.cpp.lo:
-   $(LTCXX) -o $@ $(NS_S_PR_CFLAGS) $(CXXFLAGS) -c $<
-
-.c.lo:
-   $(LTCC) -o $@ $(NS_S_PR_CFLAGS) $(CFLAGS) -c $<
-
-VERSIONNUMBER = $(shell { echo '#include "cshim/mqversion.h"'; echo 
'-version-number MQ_VMAJOR:MQ_VMINOR:MQ_VMICRO'; } | ${CC} -E - | grep 
version-number)
-
-$(LTLIBRARY): $(LTOBJS)
-   version=` \
-{ echo '#include "cshim/mqversion.h"' \
-; echo '-version-number MQ_VMAJOR:MQ_VMINOR:MQ_VMICRO' \
-; } \
-| ${CC} -E - \
-| grep version-number \
-   ` \
-   && $(LTLD) -o $@ --no-undefined $${version} $(CXXFLAGS) $(NS_S_PR_LIBS) 
$(LDFLAGS) -rpath $(libdir) $?
-
-$(INSTLTLIBRARY): $(LTLIBRARY)
-   $(top_srcdir)/install-sh -d "$(dir $@)"
-   $(LIBTOOL) --mode=install cp $(LTLIBRARY) $@
-
-$(DESTDIR)$(includedir)/%: $(top_srcdir)/cshim/%
-   $(top_srcdir)/install-sh -d "$(dir $@)"
-   cp -f "$<" "$@"
-
-install: $(INSTLTLIBRARY) $(INSTHDRS)

diff --git a/net-libs/openmq-cclient/files/openmq-cclient-4.4.1-aix-gcc.patch 
b/net-libs/openmq-cclient/files/openmq-cclient-4.4.1-aix-gcc.patch
deleted file mode 100644
index e9a9d728173..000
--- a/net-libs/openmq-cclient/files/openmq-cclient-4.4.1-aix-gcc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Seems they've never seen gcc on AIX.
-
 cshim/mqbasictypes.h.orig  2010-03-01 18:00:38 +0100
-+++ cshim/mqbasictypes.h   2010-03-01 18:00:58 +0100
-@@ -64,7 +64,7 @@
- #endif
- #endif
- 
--#if (defined(__IBMC__) || defined (__IBMCPP__)) && defined(__unix__)
-+#if ((defined(__IBMC__) || defined (__IBMCPP__)) && defined(__unix__)) || 
defined(_AIX)
- #ifndef AIX 
- #define AIX 
- #endif

diff --git a/net-libs/openmq-cclient/metadata.xml 
b/net-libs/openmq-cclient/metadata.xml
deleted file mode 100644
index 48f45063424..000
--- a/net-libs/openmq-cclient/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   
-   Open message queue is an enterprise quality, production ready, 
scalable
-   messaging server. It provides a complete Java Message Service 

[gentoo-commits] repo/gentoo:master commit in: app-backup/zbackup/files/, profiles/, app-backup/zbackup/

2021-09-02 Thread Jakov Smolić
commit: 8fede6a0673091ee3f6d7d4dbdf065a347f13d45
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 20:31:40 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:35:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fede6a0

app-backup/zbackup: Remove last-rited package

Closes: https://bugs.gentoo.org/786648
Closes: https://bugs.gentoo.org/729106
Signed-off-by: Jakov Smolić  gentoo.org>

 app-backup/zbackup/Manifest|  1 -
 .../zbackup/files/zbackup-1.4.4-tartool.patch  | 11 ---
 .../zbackup/files/zbackup--tartool.patch   | 11 ---
 app-backup/zbackup/metadata.xml| 26 
 app-backup/zbackup/zbackup-1.4.4-r2.ebuild | 33 
 app-backup/zbackup/zbackup-.ebuild | 35 --
 profiles/package.mask  |  5 
 7 files changed, 122 deletions(-)

diff --git a/app-backup/zbackup/Manifest b/app-backup/zbackup/Manifest
deleted file mode 100644
index ba4f197aed2..000
--- a/app-backup/zbackup/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST zbackup-1.4.4.tar.gz 87118 BLAKE2B 
b51727dfdd756109498acbfe19c9bbe541856a5424f86e664a124cd4042f81a42cd48f14542fbf278444666ce20539fdb6571cce8aeacfcafac9a44c3ee6e789
 SHA512 
96f0984be71e521b2a188448bb2801996701be6e96b1dac4672cabc9f6bcb6631fdb8d03f5dde4bbdbb0050d9bd1409d468fcba15f93730d69e6c55271aba575

diff --git a/app-backup/zbackup/files/zbackup-1.4.4-tartool.patch 
b/app-backup/zbackup/files/zbackup-1.4.4-tartool.patch
deleted file mode 100644
index 8f9f839a66f..000
--- a/app-backup/zbackup/files/zbackup-1.4.4-tartool.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/CMakeLists.txt   2017-02-24 09:22:39.360392521 +0200
-+++ b/CMakeLists.txt   2017-02-24 09:23:13.642390978 +0200
-@@ -51,4 +51,8 @@
-   ${LIBLZO_LIBRARIES}
- )
- 
-+if (BUILD_TARTOOL)
-+  add_subdirectory(tartool)
-+endif (BUILD_TARTOOL)
-+
- install( TARGETS zbackup DESTINATION bin )

diff --git a/app-backup/zbackup/files/zbackup--tartool.patch 
b/app-backup/zbackup/files/zbackup--tartool.patch
deleted file mode 100644
index 26052f97a48..000
--- a/app-backup/zbackup/files/zbackup--tartool.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/CMakeLists.txt   2017-02-24 09:22:39.360392521 +0200
-+++ b/CMakeLists.txt   2017-02-24 09:23:13.642390978 +0200
-@@ -51,4 +51,8 @@
-   ${LIBLZO_LIBRARIES}
- )
- 
-+if (BUILD_TARTOOL)
-+  add_subdirectory(tools/tartool)
-+endif (BUILD_TARTOOL)
-+
- install( TARGETS zbackup DESTINATION bin )

diff --git a/app-backup/zbackup/metadata.xml b/app-backup/zbackup/metadata.xml
deleted file mode 100644
index 42d77886939..000
--- a/app-backup/zbackup/metadata.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   spid...@spiderx.dp.ua
-   Vladimir Pavljuchenkov
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
-   
-   zbackup is a globally-deduplicating backup tool.
-   The program has the following features:
-   Parallel LZMA or LZO compression of the stored data
-   Built-in AES encryption of the stored data
-   Possibility to delete old backup data
-   Use of a 64-bit rolling hash, keeping the amount of soft collisions to 
zero
-   
-   
-   Install tartool utility
-   
-   
-   zbackup/zbackup
-   
-

diff --git a/app-backup/zbackup/zbackup-1.4.4-r2.ebuild 
b/app-backup/zbackup/zbackup-1.4.4-r2.ebuild
deleted file mode 100644
index 6067533065b..000
--- a/app-backup/zbackup/zbackup-1.4.4-r2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A versatile deduplicating backup tool"
-HOMEPAGE="https://github.com/zbackup/zbackup;
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="tartool"
-
-DEPEND="app-arch/lzma
-   dev-libs/lzo:2
-   dev-libs/protobuf:0=
-   sys-libs/zlib
-   dev-libs/openssl:0="
-RDEPEND="${DEPEND}"
-
-# Add tartool build
-PATCHES=( "${FILESDIR}/${P}-tartool.patch" )
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_TARTOOL="$(usex tartool)"
-   )
-
-   cmake_src_configure
-}

diff --git a/app-backup/zbackup/zbackup-.ebuild 
b/app-backup/zbackup/zbackup-.ebuild
deleted file mode 100644
index 063a9cdec68..000
--- a/app-backup/zbackup/zbackup-.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-i

[gentoo-commits] repo/gentoo:master commit in: profiles/, app-i18n/libtabe/, app-i18n/libtabe/files/

2021-09-02 Thread Jakov Smolić
commit: a4463a826f283632855e83cecbe7de8c17a8f022
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  2 19:48:21 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  2 20:35:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4463a82

app-i18n/libtabe: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 app-i18n/libtabe/Manifest  |  2 -
 app-i18n/libtabe/files/libtabe-0.2.6-fabs.patch| 24 
 app-i18n/libtabe/files/libtabe-0.2.6-ldflags.patch | 57 -
 app-i18n/libtabe/libtabe-0.2.6.1.2.ebuild  | 71 --
 app-i18n/libtabe/metadata.xml  |  8 ---
 profiles/package.mask  |  6 --
 6 files changed, 168 deletions(-)

diff --git a/app-i18n/libtabe/Manifest b/app-i18n/libtabe/Manifest
deleted file mode 100644
index ef4285baf21..000
--- a/app-i18n/libtabe/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST libtabe_0.2.6-1.2.diff.gz 74362 BLAKE2B 
d09e91bad9e9e3240cdc261140012977f318436af420564692152a8b7a99cd7c427433a6180c1f9490995b43cd95200318ffb5dab68fc18561d7ced58fd00bd6
 SHA512 
011a76f3c8a1c13a6cfd0e96eb41557a8bfbf1aca8cb79daee0f0941b920d25614df5e0479368bf7075cb511851cab4c9113b30656d55b4d29128eb7312d0ef1
-DIST libtabe_0.2.6.orig.tar.gz 1792199 BLAKE2B 
fec2259678a57b144eccf49ba459d2930f89f871873b3547040fd570a0f8510bc84e27609b1ca2d82596d5a025f0bd7251870655f4a83758be806f75db5abb48
 SHA512 
88f1cb279ccf487de5d0f8a1e9eede8d5ca16e4507b59db0b66241d0cdae609ed0b04093a82eabe0569f885aa397c1d5fa3f0ae3c3270a348ce045d73e01fbc7

diff --git a/app-i18n/libtabe/files/libtabe-0.2.6-fabs.patch 
b/app-i18n/libtabe/files/libtabe-0.2.6-fabs.patch
deleted file mode 100644
index 79964602e75..000
--- a/app-i18n/libtabe/files/libtabe-0.2.6-fabs.patch
+++ /dev/null
@@ -1,24 +0,0 @@
- * QA Notice: Package has poor programming practices which may compile
- *fine but exhibit random runtime failures.
- * tabe_tsi.c:385: warning: incompatible implicit declaration of built-in 
function ‘fabs’
- * tabe_tsi.c:437: warning: incompatible implicit declaration of built-in 
function ‘fabs’
- * tabe_tsi.c:496: warning: incompatible implicit declaration of built-in 
function ‘fabs’
- * Please do not file a Gentoo bug and instead report the above QA
- * issues directly to the upstream developers of this software.
- * Homepage: https://packages.qa.debian.org/libt/libtabe.html
-
-diff -NrU5 libtabe-0.2.6.orig.really/src/tabe_tsi.c 
libtabe-0.2.6.orig/src/tabe_tsi.c
 libtabe-0.2.6.orig.really/src/tabe_tsi.c   2008-04-20 01:35:56.0 
+0200
-+++ libtabe-0.2.6.orig/src/tabe_tsi.c  2008-04-20 01:36:46.0 +0200
-@@ -12,10 +12,11 @@
- #endif
- 
- #include 
- #include 
- #include 
-+#include 
- 
- #include "tabe.h"
- 
- struct TsiInfo *
- tabeTsiInfoNew(char *str)

diff --git a/app-i18n/libtabe/files/libtabe-0.2.6-ldflags.patch 
b/app-i18n/libtabe/files/libtabe-0.2.6-ldflags.patch
deleted file mode 100644
index 0f51b19b71f..000
--- a/app-i18n/libtabe/files/libtabe-0.2.6-ldflags.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-diff --git a/src/Makefile.in b/src/Makefile.in
-index ada3dca..6acd71c 100644
 a/src/Makefile.in
-+++ b/src/Makefile.in
-@@ -10,7 +10,7 @@ CPPFLAGS= @CPPFLAGS@
- DEFS= @DEFS@
- RANLIB  = @RANLIB@
- LN_S= @LN_S@
--LDFLAGS   = @with_db_lib@
-+LDFLAGS   = @with_db_lib@ @LDFLAGS@
- INC   = @with_db_inc@
- INSTALL = @INSTALL@
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
-@@ -55,7 +55,7 @@ all: $(LIBNAME) @build_supports@
- 
- $(LIBNAME): $(LIBOBJS)
-   $(LIBTOOL) --mode=link $(CC) -o $@ $(LIBOBJS) -rpath $(libdir) \
--  -version-info $(CURRENT_VER):$(REVISION_VER):$(AGE_VER)
-+  -version-info $(CURRENT_VER):$(REVISION_VER):$(AGE_VER) 
$(LDFLAGS)
- 
- bims:
-   (cd supports/bims; $(MAKE))
-diff --git a/src/supports/bims/Makefile.in b/src/supports/bims/Makefile.in
-index dc2534d..0e3041b 100644
 a/src/supports/bims/Makefile.in
-+++ b/src/supports/bims/Makefile.in
-@@ -10,7 +10,7 @@ CPPFLAGS= @CPPFLAGS@
- DEFS= @DEFS@
- RANLIB  = @RANLIB@
- LN_S= @LN_S@
--LDFLAGS = @with_db_lib@
-+LDFLAGS = @with_db_lib@ @LDFLAGS@
- INC = -I../..
- INSTALL = @INSTALL@
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
-@@ -45,7 +45,7 @@ all: $(LIBNAME)
- 
- $(LIBNAME): $(LIBOBJS)
-   $(LIBTOOL) --mode=link $(CC) -o $@ $(LIBOBJS) -rpath $(libdir) \
--  -version-info $(CURRENT_VER):$(REVISION_VER):$(AGE_VER)
-+  -version-info $(CURRENT_VER):$(REVISION_VER):$(AGE_VER) 
$(LDFLAGS)
- 
- bims.lo: bims.c bims.h
-   $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $(DEFS) $(INC) -o $@ bims.c
-diff --git a/util/Makefile.in b/util/Makefile.in
-index cb82736..16425d1 100644
 a/util/Makefile.in
-+++ b/util/Ma

[gentoo-commits] repo/gentoo:master commit in: perl-core/ExtUtils-Manifest/, profiles/

2021-09-04 Thread Jakov Smolić
commit: 92b12a3b3baeaf8134cc26ef97501c91fdfb1e69
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 30 17:47:18 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 09:32:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92b12a3b

perl-core/ExtUtils-Manifest: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 .../ExtUtils-Manifest-1.700.0.ebuild  | 19 ---
 perl-core/ExtUtils-Manifest/Manifest  |  1 -
 perl-core/ExtUtils-Manifest/metadata.xml  | 12 
 profiles/package.mask |  1 -
 4 files changed, 33 deletions(-)

diff --git a/perl-core/ExtUtils-Manifest/ExtUtils-Manifest-1.700.0.ebuild 
b/perl-core/ExtUtils-Manifest/ExtUtils-Manifest-1.700.0.ebuild
deleted file mode 100644
index 201719a41b0..000
--- a/perl-core/ExtUtils-Manifest/ExtUtils-Manifest-1.700.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=ETHER
-MODULE_VERSION=1.70
-inherit perl-module
-
-DESCRIPTION="Utilities to write and check a MANIFEST file"
-
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-SRC_TEST="do"
-PREFER_BUILDPL="no"
-
-RDEPEND="!=perl-core/ExtUtils-MakeMaker-7.40.0"

diff --git a/perl-core/ExtUtils-Manifest/Manifest 
b/perl-core/ExtUtils-Manifest/Manifest
deleted file mode 100644
index 0a100162f13..000
--- a/perl-core/ExtUtils-Manifest/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ExtUtils-Manifest-1.70.tar.gz 37941 BLAKE2B 
89f97b86becae4264073093b90e53fb94c75d6342b132c24ec367dc3c6401ca68ea4d718a6e86e07f9f716e2c536ee9bb6b13a6a3cab199815eea14b424caa6d
 SHA512 
abe7de62d17187f0ec869d186658fc5b2f9f1d1a3607d1ebe8e9e2f1af42a7b7945a045a5264fd653a9f6e280f3e4f4908627259509435e656a08480baa315e2

diff --git a/perl-core/ExtUtils-Manifest/metadata.xml 
b/perl-core/ExtUtils-Manifest/metadata.xml
deleted file mode 100644
index c0712ff2d47..000
--- a/perl-core/ExtUtils-Manifest/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-ExtUtils-Manifest
-ExtUtils::Manifest
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index c3e4b32dd0e..f90449b193c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -207,7 +207,6 @@ mail-client/trojita
 # are newer, and no virtuals currently pull these packages.
 # Removal in 30 days.
 perl-core/ExtUtils-MakeMaker
-perl-core/ExtUtils-Manifest
 
 # Joonas Niilola  (2021-07-29)
 # Upstream provided migration instructions from 2. -> 3. update,



[gentoo-commits] repo/gentoo:master commit in: profiles/, perl-core/HTTP-Tiny/

2021-09-04 Thread Jakov Smolić
commit: daf0c268227dce130cd55a5966ade36223a14f88
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 30 17:46:15 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 09:32:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf0c268

perl-core/HTTP-Tiny: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 perl-core/HTTP-Tiny/HTTP-Tiny-0.43.0.ebuild | 37 -
 perl-core/HTTP-Tiny/Manifest|  1 -
 perl-core/HTTP-Tiny/metadata.xml| 12 --
 profiles/package.mask   |  1 -
 4 files changed, 51 deletions(-)

diff --git a/perl-core/HTTP-Tiny/HTTP-Tiny-0.43.0.ebuild 
b/perl-core/HTTP-Tiny/HTTP-Tiny-0.43.0.ebuild
deleted file mode 100644
index c836656efce..000
--- a/perl-core/HTTP-Tiny/HTTP-Tiny-0.43.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-MODULE_AUTHOR=DAGOLDEN
-MODULE_VERSION=0.043
-inherit perl-module
-
-DESCRIPTION='A small, simple, correct HTTP/1.1 client'
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   >=virtual/perl-ExtUtils-MakeMaker-6.30
-   virtual/perl-IO
-   virtual/perl-Time-Local
-   test? (
-   virtual/perl-Data-Dumper
-   virtual/perl-Exporter
-   virtual/perl-ExtUtils-MakeMaker
-   virtual/perl-File-Spec
-   virtual/perl-File-Spec
-   virtual/perl-File-Temp
-   virtual/perl-IO
-   virtual/perl-IPC-Cmd
-   virtual/perl-Scalar-List-Utils
-   >=virtual/perl-Test-Simple-0.96
-   )
-"
-RDEPEND="
-   virtual/perl-IO
-   virtual/perl-Time-Local
-"
-SRC_TEST="do"

diff --git a/perl-core/HTTP-Tiny/Manifest b/perl-core/HTTP-Tiny/Manifest
deleted file mode 100644
index 2af74ab5f6b..000
--- a/perl-core/HTTP-Tiny/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST HTTP-Tiny-0.043.tar.gz 58982 BLAKE2B 
9aecaa727012e664f5a1be17b0f0308cc71dc848e89831704fa728e6098b154bb3619cd27abe7c449b633450733816b49e1d34305914b627165b5a1b3df0b9ba
 SHA512 
80483d80de05583398fd136463fef6abb7850d07d32b9c7f391e8b356b1c89494beeb38f80e3f1d4d804f7defff1f5d19aeae82935131761f09cbce1e7202ba2

diff --git a/perl-core/HTTP-Tiny/metadata.xml b/perl-core/HTTP-Tiny/metadata.xml
deleted file mode 100644
index e7845b5f3e7..000
--- a/perl-core/HTTP-Tiny/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-HTTP-Tiny
-HTTP::Tiny
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 1e974b5b1a2..a3b4a8d7add 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -210,7 +210,6 @@ perl-core/ExtUtils-MakeMaker
 perl-core/ExtUtils-Manifest
 perl-core/File-Path
 perl-core/Getopt-Long
-perl-core/HTTP-Tiny
 
 # Joonas Niilola  (2021-07-29)
 # Upstream provided migration instructions from 2. -> 3. update,



[gentoo-commits] repo/gentoo:master commit in: perl-core/Getopt-Long/, profiles/

2021-09-04 Thread Jakov Smolić
commit: 3503080940af0e60a06ffbc444b0824109fd58fd
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 30 17:46:43 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 09:32:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35030809

perl-core/Getopt-Long: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 perl-core/Getopt-Long/Getopt-Long-2.420.0.ebuild | 19 ---
 perl-core/Getopt-Long/Manifest   |  1 -
 perl-core/Getopt-Long/metadata.xml   | 14 --
 profiles/package.mask|  1 -
 4 files changed, 35 deletions(-)

diff --git a/perl-core/Getopt-Long/Getopt-Long-2.420.0.ebuild 
b/perl-core/Getopt-Long/Getopt-Long-2.420.0.ebuild
deleted file mode 100644
index 5f467eee9d8..000
--- a/perl-core/Getopt-Long/Getopt-Long-2.420.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=JV
-MODULE_VERSION=2.42
-inherit perl-module
-
-DESCRIPTION="Advanced handling of command line options"
-
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-RDEPEND="dev-perl/Pod-Parser"
-DEPEND="${RDEPEND}"
-
-SRC_TEST=do

diff --git a/perl-core/Getopt-Long/Manifest b/perl-core/Getopt-Long/Manifest
deleted file mode 100644
index e7568d3729d..000
--- a/perl-core/Getopt-Long/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Getopt-Long-2.42.tar.gz 42080 BLAKE2B 
4cf92a18732ec46a344b828add503ee86cd989895e2eb190161831e6d37b338f40c822b6b1c2a2182ecd26c833ff77559bccde820ad6c0ba9626c4be741af2d6
 SHA512 
00944cb0b69c05fc273ed7c22287eff678f00d620c0e4c35b62da4ec184333a344161fde1538e7dad77e6536f28ef75a25a8afbf1cbc4d1ddf2a8818a23b021a

diff --git a/perl-core/Getopt-Long/metadata.xml 
b/perl-core/Getopt-Long/metadata.xml
deleted file mode 100644
index 52ddf8d5bd1..000
--- a/perl-core/Getopt-Long/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-Getopt-Long
-Getopt::Long
-Getopt::Long::CallBack
-Getopt::Long::Parser
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index a3b4a8d7add..4d4fdb400d8 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -209,7 +209,6 @@ mail-client/trojita
 perl-core/ExtUtils-MakeMaker
 perl-core/ExtUtils-Manifest
 perl-core/File-Path
-perl-core/Getopt-Long
 
 # Joonas Niilola  (2021-07-29)
 # Upstream provided migration instructions from 2. -> 3. update,



[gentoo-commits] repo/gentoo:master commit in: perl-core/libnet/files/, perl-core/libnet/, profiles/

2021-09-04 Thread Jakov Smolić
commit: dcba2831f0318763136ad929290dce0f3513163a
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 30 17:45:41 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 09:32:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcba2831

perl-core/libnet: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 perl-core/libnet/Manifest  |  1 -
 perl-core/libnet/files/libnet.cfg  | 14 --
 perl-core/libnet/libnet-1.270.0.ebuild | 23 ---
 perl-core/libnet/metadata.xml  | 26 --
 profiles/package.mask  |  1 -
 5 files changed, 65 deletions(-)

diff --git a/perl-core/libnet/Manifest b/perl-core/libnet/Manifest
deleted file mode 100644
index e9c485cf50f..000
--- a/perl-core/libnet/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libnet-1.27.tar.gz 68615 BLAKE2B 
ccb2f4153a73aa5c907073f8af35c594b268d04b81ac5411e8a9b4f2a50181a208363646ce4891fcbb567140e45fa62c34f75fe60866ae862eefd2a8a3ae485d
 SHA512 
a81a4640f55212402dd741316991413a16f4e05781320abbd18eb9f450282275489a45167faecf587af66cabcb8f7f23653834081bf9fe0b490d419392b85b1b

diff --git a/perl-core/libnet/files/libnet.cfg 
b/perl-core/libnet/files/libnet.cfg
deleted file mode 100644
index 87de762fb02..000
--- a/perl-core/libnet/files/libnet.cfg
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-   'ftp_int_passive' => 0,
-   'snpp_hosts' => [],
-   'inet_domain' => undef,
-   'test_exist' => 1,
-   'ftp_testhost' => undef,
-   'daytime_hosts' => [],
-   'ph_hosts' => [],
-   'time_hosts' => [],
-   'smtp_hosts' => [],
-   'test_hosts' => 1,
-   'nntp_hosts' => [],
-   'pop3_hosts' => [],
-}

diff --git a/perl-core/libnet/libnet-1.270.0.ebuild 
b/perl-core/libnet/libnet-1.270.0.ebuild
deleted file mode 100644
index 96467d65b5b..000
--- a/perl-core/libnet/libnet-1.270.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=SHAY
-MODULE_VERSION=1.27
-inherit perl-module
-
-DESCRIPTION="A URI Perl Module"
-
-SLOT="0"
-KEYWORDS=""
-IUSE="sasl"
-
-RDEPEND="sasl? ( dev-perl/Authen-SASL )"
-DEPEND=""
-
-SRC_TEST="do"
-
-src_prepare() {
-   cp "${FILESDIR}"/libnet.cfg "${S}"
-}

diff --git a/perl-core/libnet/metadata.xml b/perl-core/libnet/metadata.xml
deleted file mode 100644
index bcaad0373a2..000
--- a/perl-core/libnet/metadata.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  dev-perl/libnet provides the suite of basic Net:: modules 
(Net::Cmd, Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc, 
Net::POP3, Net::SMTP, and Net::Time as the key ones)
-  
-libnet
-Net::Cmd
-Net::Config
-Net::Domain
-Net::FTP
-Net::FTP::A
-Net::FTP::E
-Net::FTP::I
-Net::FTP::L
-Net::FTP::dataconn
-Net::NNTP
-Net::Netrc
-Net::POP3
-Net::SMTP
-Net::Time
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 7f1b8d7e338..3ca986e3acf 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -212,7 +212,6 @@ perl-core/File-Path
 perl-core/Getopt-Long
 perl-core/HTTP-Tiny
 perl-core/JSON-PP
-perl-core/libnet
 
 # Joonas Niilola  (2021-07-29)
 # Upstream provided migration instructions from 2. -> 3. update,



[gentoo-commits] repo/gentoo:master commit in: perl-core/JSON-PP/, profiles/

2021-09-04 Thread Jakov Smolić
commit: 7318344d05fc3946e71c3ab22723073ce5e84327
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 30 17:45:59 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 09:32:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7318344d

perl-core/JSON-PP: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 perl-core/JSON-PP/JSON-PP-2.273.0.ebuild | 14 --
 perl-core/JSON-PP/Manifest   |  1 -
 perl-core/JSON-PP/metadata.xml   |  8 
 profiles/package.mask|  1 -
 4 files changed, 24 deletions(-)

diff --git a/perl-core/JSON-PP/JSON-PP-2.273.0.ebuild 
b/perl-core/JSON-PP/JSON-PP-2.273.0.ebuild
deleted file mode 100644
index 9c1518e403e..000
--- a/perl-core/JSON-PP/JSON-PP-2.273.0.ebuild
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=MAKAMAKA
-DIST_VERSION=2.27300
-inherit perl-module
-
-DESCRIPTION="JSON::XS compatible pure-Perl module"
-
-SLOT="0"
-KEYWORDS=""
-IUSE=""

diff --git a/perl-core/JSON-PP/Manifest b/perl-core/JSON-PP/Manifest
deleted file mode 100644
index 94d98cd915c..000
--- a/perl-core/JSON-PP/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST JSON-PP-2.27300.tar.gz 41365 BLAKE2B 
28f66d2613945f4dd9cac3b36870ff417cbfe6c2d9660b8d14955f79520c8485b2beefb130d408d43888c58479c2d491453036cbd0da3357da138a5324e6c473
 SHA512 
b278cf67e1916f1d3053106d79be0ab07ebfd3726a39245f540d17657411d901bd13b23eecaea41b412041f5c8962aa44060dce6e409e89153c5270cb42922f2

diff --git a/perl-core/JSON-PP/metadata.xml b/perl-core/JSON-PP/metadata.xml
deleted file mode 100644
index 2b9a936fc0a..000
--- a/perl-core/JSON-PP/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 3ca986e3acf..1e974b5b1a2 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -211,7 +211,6 @@ perl-core/ExtUtils-Manifest
 perl-core/File-Path
 perl-core/Getopt-Long
 perl-core/HTTP-Tiny
-perl-core/JSON-PP
 
 # Joonas Niilola  (2021-07-29)
 # Upstream provided migration instructions from 2. -> 3. update,



[gentoo-commits] repo/gentoo:master commit in: perl-core/File-Path/, profiles/

2021-09-04 Thread Jakov Smolić
commit: 7683ebd61c97d73037c8df956cd3fa836e8574dd
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 30 17:46:59 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 09:32:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7683ebd6

perl-core/File-Path: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 perl-core/File-Path/File-Path-2.130.0.ebuild | 15 ---
 perl-core/File-Path/Manifest |  1 -
 perl-core/File-Path/metadata.xml | 12 
 profiles/package.mask|  1 -
 4 files changed, 29 deletions(-)

diff --git a/perl-core/File-Path/File-Path-2.130.0.ebuild 
b/perl-core/File-Path/File-Path-2.130.0.ebuild
deleted file mode 100644
index 522810f0dd4..000
--- a/perl-core/File-Path/File-Path-2.130.0.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=JKEENAN
-DIST_VERSION=2.13
-inherit perl-module
-
-DESCRIPTION="File path and name utilities"
-
-SLOT="0"
-KEYWORDS=""
-
-IUSE=""

diff --git a/perl-core/File-Path/Manifest b/perl-core/File-Path/Manifest
deleted file mode 100644
index 462ba741cae..000
--- a/perl-core/File-Path/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST File-Path-2.13.tar.gz 31094 BLAKE2B 
5dba747c6c269dcebf833537f7d9ad5f72dd08dfa8446c98a5bce2ea933f83d7a664a1fb49fe79505d0ca13a11741bef18dcf74df571fd3f8c3bd88b777c5aae
 SHA512 
9684737947bd46a3a4a1bd5f04b712d69cb08c3c6a2801c1017d2a796946162d8121bc614408cbdbb4749d2cdacfd5279ee4db11797e3053efef1d1ec7012562

diff --git a/perl-core/File-Path/metadata.xml b/perl-core/File-Path/metadata.xml
deleted file mode 100644
index 75ff9ee9ff8..000
--- a/perl-core/File-Path/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-File-Path
-File::Path
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 4d4fdb400d8..c3e4b32dd0e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -208,7 +208,6 @@ mail-client/trojita
 # Removal in 30 days.
 perl-core/ExtUtils-MakeMaker
 perl-core/ExtUtils-Manifest
-perl-core/File-Path
 
 # Joonas Niilola  (2021-07-29)
 # Upstream provided migration instructions from 2. -> 3. update,



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-HTTP-Tiny/

2021-09-04 Thread Jakov Smolić
commit: 331ec6352d6161ab2e4301b2dc81addd72e691f9
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 30 18:43:26 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 09:32:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331ec635

virtual/perl-HTTP-Tiny: Update keywords

Signed-off-by: Jakov Smolić  gentoo.org>

 virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.76.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.76.0-r2.ebuild 
b/virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.76.0-r2.ebuild
index dcc9724f72d..ef2e546544c 100644
--- a/virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.76.0-r2.ebuild
+++ b/virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.76.0-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
|| ( =dev-lang/perl-5.34* =dev-lang/perl-5.32* =dev-lang/perl-5.30* 
~perl-core/${PN#perl-}-${PV} )



[gentoo-commits] repo/gentoo:master commit in: perl-core/ExtUtils-MakeMaker/files/, profiles/, perl-core/ExtUtils-MakeMaker/

2021-09-04 Thread Jakov Smolić
commit: 1f685202789e3077e761a0ec477f7d381970c99c
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 30 17:47:37 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 09:32:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f685202

perl-core/ExtUtils-MakeMaker: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 .../ExtUtils-MakeMaker-7.240.0.ebuild  | 43 -
 perl-core/ExtUtils-MakeMaker/Manifest  |  1 -
 .../ExtUtils-MakeMaker/files/7.24-RUNPATH.patch| 30 -
 .../files/7.24-delete_podlocal.patch   | 74 --
 perl-core/ExtUtils-MakeMaker/metadata.xml  | 41 
 profiles/package.mask  |  6 --
 6 files changed, 195 deletions(-)

diff --git a/perl-core/ExtUtils-MakeMaker/ExtUtils-MakeMaker-7.240.0.ebuild 
b/perl-core/ExtUtils-MakeMaker/ExtUtils-MakeMaker-7.240.0.ebuild
deleted file mode 100644
index 4f532ea664b..000
--- a/perl-core/ExtUtils-MakeMaker/ExtUtils-MakeMaker-7.240.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-DIST_AUTHOR=BINGOS
-DIST_VERSION=7.24
-inherit edos2unix perl-module
-
-DESCRIPTION="Create a module Makefile"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=virtual/perl-ExtUtils-Install-1.520.0
-   >=virtual/perl-ExtUtils-Manifest-1.700.0
-   >=virtual/perl-File-Spec-0.800.0
-"
-DEPEND="${RDEPEND}
-   test? (
-   >=virtual/perl-File-Temp-0.220.0
-   >=virtual/perl-Scalar-List-Utils-1.130.0
-   )
-"
-PDEPEND="
-   >=virtual/perl-CPAN-Meta-2.143.240
-   >=virtual/perl-Parse-CPAN-Meta-1.441.400
-   virtual/perl-Test-Harness
-"
-
-PATCHES=(
-   "${FILESDIR}/7.24-delete_podlocal.patch"
-   "${FILESDIR}/7.24-RUNPATH.patch"
-)
-
-src_prepare() {
-   edos2unix "${S}/lib/ExtUtils/MM_Unix.pm"
-   edos2unix "${S}/lib/ExtUtils/MM_Any.pm"
-
-   export BUILDING_AS_PACKAGE=1
-   perl-module_src_prepare
-}

diff --git a/perl-core/ExtUtils-MakeMaker/Manifest 
b/perl-core/ExtUtils-MakeMaker/Manifest
deleted file mode 100644
index 7a42c9cbf24..000
--- a/perl-core/ExtUtils-MakeMaker/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ExtUtils-MakeMaker-7.24.tar.gz 467714 BLAKE2B 
82c027584ad89cd1393cdb0f8db8ef6fff2a405304fbe11d791dadc7352facc5a852ca7ebc1ed3e1119a0073dce8868c01d210f666ef1fab5c09eee59e092f00
 SHA512 
f57f8407aea6101af964f105fb9ddd6567262fa2bad91456573c8fc019cdf1469563945029f5078e20d2f7d1d736a63586e7cde3bb72cb9ae80ad0b8ebe818d5

diff --git a/perl-core/ExtUtils-MakeMaker/files/7.24-RUNPATH.patch 
b/perl-core/ExtUtils-MakeMaker/files/7.24-RUNPATH.patch
deleted file mode 100644
index 6f21f2c733b..000
--- a/perl-core/ExtUtils-MakeMaker/files/7.24-RUNPATH.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 5da957658fba21be51b638bcfee32b97090ad0da Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Sun, 19 Mar 2017 01:55:56 +1300
-Subject: Prevent build root appearing in RPATH
-

- lib/ExtUtils/MM_Any.pm | 7 +++
- 1 file changed, 7 insertions(+)
-
-diff --git a/lib/ExtUtils/MM_Any.pm b/lib/ExtUtils/MM_Any.pm
-index 433a8dd..ebcb6fc 100644
 a/lib/ExtUtils/MM_Any.pm
-+++ b/lib/ExtUtils/MM_Any.pm
-@@ -2422,6 +2422,13 @@ sub init_others {
- # LD_RUN_PATH now computed by ExtUtils::Liblist
- ($self->{EXTRALIBS},  $self->{BSLOADLIBS},
-  $self->{LDLOADLIBS}, $self->{LD_RUN_PATH}) = @libs;
-+# We do not want the build root in RPATH
-+if ( exists $ENV{PORTAGE_TMPDIR} ){
-+# If we have a PORTAGE_TMPDIR set, strip that, as just 
testing for
-+# /usr and /opt might not be sufficient.
-+$self->{LD_RUN_PATH} = join ':', grep 
!/^\Q$ENV{PORTAGE_TMPDIR}/,
-+   split /:/, $self->{LD_RUN_PATH};
-+}
- last;
- }
- }
--- 
-2.12.0
-

diff --git a/perl-core/ExtUtils-MakeMaker/files/7.24-delete_podlocal.patch 
b/perl-core/ExtUtils-MakeMaker/files/7.24-delete_podlocal.patch
deleted file mode 100644
index 8277e0d37c2..000
--- a/perl-core/ExtUtils-MakeMaker/files/7.24-delete_podlocal.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-From f1939e044183c711f23468eb1aa068435add42c6 Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Sun, 19 Mar 2017 01:52:52 +1300
-Subject: Inhibit generation of perllocal.pod
-

- lib/ExtUtils/MM_Unix.pm | 5 +
- t/INSTALL_BASE.t| 2 +-
- t/basic.t   | 6 +++---
- 3 files changed, 9 insertions(+), 4 deletions(-)
-
-diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm
-index 66a24d7..82d7b42

[gentoo-commits] repo/gentoo:master commit in: profiles/, dev-util/pkgconfig/

2021-09-04 Thread Jakov Smolić
commit: 155152fe686e11568d68ade29167f60762c53111
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep  4 08:20:57 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 15:24:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=155152fe

dev-util/pkgconfig: Remove last-rited package

Closes: https://bugs.gentoo.org/632124
Closes: https://bugs.gentoo.org/691268
Closes: https://bugs.gentoo.org/767853
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-util/pkgconfig/Manifest|   1 -
 dev-util/pkgconfig/metadata.xml|  10 ---
 dev-util/pkgconfig/pkgconfig-0.29.2.ebuild | 121 -
 dev-util/pkgconfig/pkgconfig-.ebuild   | 117 
 profiles/package.mask  |   1 -
 5 files changed, 250 deletions(-)

diff --git a/dev-util/pkgconfig/Manifest b/dev-util/pkgconfig/Manifest
deleted file mode 100644
index cd45508224c..000
--- a/dev-util/pkgconfig/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pkg-config-0.29.2.tar.gz 2016830 BLAKE2B 
e8f0420033524ad768cac3c82138546e4cd76c47f5835b7b98662ab01eaf3feef08f495a69c04980d51b57935567ab1d465ef4e1d0529735ad0031c828585324
 SHA512 
4861ec6428fead416f5c0bbad10b9152967e481d4b0ff2eb396a9f297f552984c9bb72f6864a37dcd8fca1d9ccceda3ef18d8f121938dbe4fdf2b870fe75

diff --git a/dev-util/pkgconfig/metadata.xml b/dev-util/pkgconfig/metadata.xml
deleted file mode 100644
index feea3b542d9..000
--- a/dev-util/pkgconfig/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   freedesktop-b...@gentoo.org
-   
-   
-   Use internal copy of 
dev-libs/glib
-   
-

diff --git a/dev-util/pkgconfig/pkgconfig-0.29.2.ebuild 
b/dev-util/pkgconfig/pkgconfig-0.29.2.ebuild
deleted file mode 100644
index d854a38b082..000
--- a/dev-util/pkgconfig/pkgconfig-0.29.2.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# Do not inherit autotools in non-live ebuild - causes circular dependency, 
bug #550856
-inherit eutils flag-o-matic libtool multilib multilib-minimal
-
-MY_P=pkg-config-${PV}
-
-if [[ ${PV} == ** ]]; then
-   # 1.12 is only needed for tests due to some am__check_pre / LOG_DRIVER
-   # weirdness with "/bin/bash /bin/sh" in arguments chain with >=1.13
-   WANT_AUTOMAKE=1.12
-   EGIT_REPO_URI="https://anongit.freedesktop.org/git/pkg-config.git;
-   EGIT_CHECKOUT_DIR=${WORKDIR}/${MY_P}
-   inherit autotools git-r3
-else
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-   SRC_URI="https://pkgconfig.freedesktop.org/releases/${MY_P}.tar.gz;
-fi
-
-DESCRIPTION="Package config system that manages compile/link flags"
-HOMEPAGE="https://pkgconfig.freedesktop.org/wiki/;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="elibc_FreeBSD elibc_glibc hardened internal-glib"
-
-RDEPEND="!internal-glib? ( >=dev-libs/glib-2.34.3[${MULTILIB_USEDEP}] )
-   !dev-util/pkgconf[pkg-config]
-   !dev-util/pkg-config-lite
-   !dev-util/pkgconfig-openbsd[pkg-config]
-   virtual/libintl"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-DOCS=( AUTHORS NEWS README )
-
-src_prepare() {
-   sed -i -e "s|^prefix=/usr\$|prefix=${EPREFIX}/usr|" check/simple.pc || 
die #434320
-
-   eapply_user
-
-   if [[ ${PV} == ** ]]; then
-   eautoreconf
-   else
-   elibtoolize
-   fi
-
-   if [[ ${CHOST} == *-solaris* ]] ; then
-   # fix standards conflict, since gcc-4.5 default is gnu90
-   if tc-is-gcc && [[ $(gcc-major-version) -gt 4 || \
-   ( $(gcc-major-version) -eq 4 && $(gcc-minor-version) 
-ge 5 ) ]] ;
-   then
-   sed -i \
-   -e 
's/\<\(_XOPEN_SOURCE_EXTENDED\)\>/\1_DISABLED/' \
-   -e '/\<_XOPEN_SOURCE\>/s/2/600/' \
-   glib/configure || die
-   fi
-   fi
-}
-
-multilib_src_configure() {
-   local myconf
-
-   if use internal-glib; then
-   myconf+=' --with-internal-glib'
-   # non-glibc platforms use GNU libiconv, but configure needs to
-   # know about that not to get confused when it finds something
-   # outside the prefix too
-   if use prefix && use !elibc_glibc ; then
-   myconf+=" --with-libiconv=gnu"
-   # add the libdir for libtool, otherwise it'll make love 
with system
-

[gentoo-commits] repo/gentoo:master commit in: virtual/pkgconfig/

2021-09-04 Thread Jakov Smolić
commit: 156e2bb8c1a22566a3d5bdb061c60af13448c835
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep  4 07:13:32 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 15:24:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=156e2bb8

virtual/pkgconfig: Remove nonexistent providers

Signed-off-by: Jakov Smolić  gentoo.org>

 virtual/pkgconfig/{pkgconfig-2.ebuild => pkgconfig-2-r1.ebuild} | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/virtual/pkgconfig/pkgconfig-2.ebuild 
b/virtual/pkgconfig/pkgconfig-2-r1.ebuild
similarity index 72%
rename from virtual/pkgconfig/pkgconfig-2.ebuild
rename to virtual/pkgconfig/pkgconfig-2-r1.ebuild
index 1eca8044c4c..b48048d49db 100644
--- a/virtual/pkgconfig/pkgconfig-2.ebuild
+++ b/virtual/pkgconfig/pkgconfig-2-r1.ebuild
@@ -7,9 +7,4 @@ DESCRIPTION="Virtual for the pkg-config implementation"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
-RDEPEND="
-   || (
-   >=dev-util/pkgconf-1.3.7[pkg-config]
-   >=dev-util/pkgconfig-0.29.2
-   >=dev-util/pkgconfig-openbsd-20130507-r2[pkg-config]
-   )"
+RDEPEND=">=dev-util/pkgconf-1.3.7[pkg-config(+)]"



[gentoo-commits] repo/gentoo:master commit in: profiles/prefix/darwin/macos/features/fsf-gcc-nold/, profiles/, ...

2021-09-04 Thread Jakov Smolić
commit: f1b58744615412f11e37d4a284e40f7eca03d986
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep  4 07:07:47 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 15:24:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1b58744

profiles: Remove all dev-util/pkgconfig references

Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/default/linux/musl/mips/package.mask   | 3 +--
 profiles/default/linux/uclibc/package.use   | 6 --
 profiles/default/linux/uclibc/packages.build| 3 +--
 profiles/features/uclibc/package.use| 6 +-
 profiles/features/uclibc/packages.build | 1 -
 profiles/info_pkgs  | 3 +--
 profiles/prefix/darwin/macos/features/fsf-gcc-ld64/package.mask | 1 -
 profiles/prefix/darwin/macos/features/fsf-gcc-nold/package.mask | 5 +
 8 files changed, 5 insertions(+), 23 deletions(-)

diff --git a/profiles/default/linux/musl/mips/package.mask 
b/profiles/default/linux/musl/mips/package.mask
index 8b52dc4d8d3..038026c2c21 100644
--- a/profiles/default/linux/musl/mips/package.mask
+++ b/profiles/default/linux/musl/mips/package.mask
@@ -1,5 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation.
+# Copyright 1999-2021 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
 
-dev-util/pkgconfig
 >sys-apps/kbd-1.15.5-r99

diff --git a/profiles/default/linux/uclibc/package.use 
b/profiles/default/linux/uclibc/package.use
deleted file mode 100644
index b6048021498..000
--- a/profiles/default/linux/uclibc/package.use
+++ /dev/null
@@ -1,6 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# Anthony G. Basile  (2014-08-17)
-# Avoid pulling in glib
-dev-util/pkgconfig internal-glib

diff --git a/profiles/default/linux/uclibc/packages.build 
b/profiles/default/linux/uclibc/packages.build
index 38c8653ce6e..bcc0d2106ef 100644
--- a/profiles/default/linux/uclibc/packages.build
+++ b/profiles/default/linux/uclibc/packages.build
@@ -1,9 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation.
+# Copyright 1999-2021 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License v2
 
 # This file lists extra packages needed to build for
 # a stage 1 based on this profile.
 
-dev-util/pkgconfig
 dev-libs/libiconv
 dev-libs/libintl

diff --git a/profiles/features/uclibc/package.use 
b/profiles/features/uclibc/package.use
index a0b9b939147..c5742cb3c80 100644
--- a/profiles/features/uclibc/package.use
+++ b/profiles/features/uclibc/package.use
@@ -1,10 +1,6 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-# Anthony G. Basile  (2014-08-17)
-# Avoid pulling in glib
-dev-util/pkgconfig internal-glib
-
 # Anthony G. Basile  (2018-07-14)
 # We need this to break a circular dependency with
 # 'sys-libs/libcap pam' in stage3 catalyst builds

diff --git a/profiles/features/uclibc/packages.build 
b/profiles/features/uclibc/packages.build
index bc9b8907018..eb8df49779a 100644
--- a/profiles/features/uclibc/packages.build
+++ b/profiles/features/uclibc/packages.build
@@ -4,6 +4,5 @@
 # This file lists extra packages needed to build for
 # a stage 1 based on this profile.
 
-dev-util/pkgconfig
 dev-libs/libiconv
 dev-libs/libintl

diff --git a/profiles/info_pkgs b/profiles/info_pkgs
index 650516bcf85..99256f827b5 100644
--- a/profiles/info_pkgs
+++ b/profiles/info_pkgs
@@ -1,4 +1,4 @@
-# Copyright 2004-2019 Gentoo Authors
+# Copyright 2004-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 ##
@@ -25,7 +25,6 @@ sys-devel/gcc
 sys-devel/gcc-config
 dev-java/java-config
 dev-util/cmake
-dev-util/pkgconfig
 # NOTE: portage no longer list /etc/gentoo-release,
 # so this is not redundant
 sys-apps/baselayout

diff --git a/profiles/prefix/darwin/macos/features/fsf-gcc-ld64/package.mask 
b/profiles/prefix/darwin/macos/features/fsf-gcc-ld64/package.mask
index 913b4a72b20..e7083708ab6 100644
--- a/profiles/prefix/darwin/macos/features/fsf-gcc-ld64/package.mask
+++ b/profiles/prefix/darwin/macos/features/fsf-gcc-ld64/package.mask
@@ -2,5 +2,4 @@
 # Distributed under the terms of the GNU General Public License v2
 
 # packages which link to framework and therefore fail (blocks)
-dev-util/pkgconfig
 =sys-devel/binutils-apple-11.3.1-r1

diff --git a/profiles/prefix/darwin/macos/features/fsf-gcc-nold/package.mask 
b/profiles/prefix/darwin/macos/features/fsf-gcc-nold/package.mask
index bcc732c3eb5..18d5f045ba2 100644
--- a/profiles/prefix/darwin/macos/features/fsf-gcc-nold/package.mask
+++ b/profiles/prefix/darwin/macos/features/fsf-gcc-nold/package.mask
@@ -1,10 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distr

[gentoo-commits] repo/gentoo:master commit in: dev-util/pkgconf/

2021-09-04 Thread Jakov Smolić
commit: 2d576da91b9313fa2737f96a341225078528dba4
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep  4 07:12:04 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 15:24:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d576da9

dev-util/pkgconf: Remove pkg-config USE flag

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-util/pkgconf/metadata.xml  |  3 ---
 ...kgconf-1.7.4.ebuild => pkgconf-1.7.4-r1.ebuild} | 23 +++---
 ...kgconf-1.8.0.ebuild => pkgconf-1.8.0-r1.ebuild} | 23 +++---
 dev-util/pkgconf/pkgconf-.ebuild   | 23 +++---
 4 files changed, 21 insertions(+), 51 deletions(-)

diff --git a/dev-util/pkgconf/metadata.xml b/dev-util/pkgconf/metadata.xml
index 894f008349f..e6cdc1e75d6 100644
--- a/dev-util/pkgconf/metadata.xml
+++ b/dev-util/pkgconf/metadata.xml
@@ -15,9 +15,6 @@

SONAME version of libpkgconf

-   
-   Install as a replacement for 
dev-util/pkgconfig
-   

pkgconf/pkgconf


diff --git a/dev-util/pkgconf/pkgconf-1.7.4.ebuild 
b/dev-util/pkgconf/pkgconf-1.7.4-r1.ebuild
similarity index 73%
rename from dev-util/pkgconf/pkgconf-1.7.4.ebuild
rename to dev-util/pkgconf/pkgconf-1.7.4-r1.ebuild
index edfc4c30bd4..b174cb7572a 100644
--- a/dev-util/pkgconf/pkgconf-1.7.4.ebuild
+++ b/dev-util/pkgconf/pkgconf-1.7.4-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://git.sr.ht/~kaniini/pkgconf;
 
 LICENSE="ISC"
 SLOT="0/3"
-IUSE="+pkg-config test"
+IUSE="test"
 
 # tests require 'kyua'
 RESTRICT="!test? ( test )"
@@ -30,7 +30,7 @@ BDEPEND="
)
 "
 RDEPEND="
-   pkg-config? ( !dev-util/pkgconfig )
+   !dev-util/pkgconfig
 "
 
 MULTILIB_CHOST_TOOLS=(
@@ -41,11 +41,9 @@ src_prepare() {
default
 
[[ ${PV} == "" ]] && eautoreconf
-   if use pkg-config; then
-   MULTILIB_CHOST_TOOLS+=(
-   /usr/bin/pkg-config$(get_exeext)
-   )
-   fi
+   MULTILIB_CHOST_TOOLS+=(
+   /usr/bin/pkg-config$(get_exeext)
+   )
 }
 
 multilib_src_configure() {
@@ -66,15 +64,8 @@ multilib_src_test() {
 multilib_src_install() {
default
 
-   if use pkg-config; then
-   dosym pkgconf$(get_exeext) /usr/bin/pkg-config$(get_exeext)
-   dosym pkgconf.1 /usr/share/man/man1/pkg-config.1
-   else
-   rm "${ED}"/usr/share/aclocal/pkg.m4 || die
-   rmdir "${ED}"/usr/share/aclocal || die
-   rm "${ED}"/usr/share/man/man7/pkg.m4.7 || die
-   rmdir "${ED}"/usr/share/man/man7 || die
-   fi
+   dosym pkgconf$(get_exeext) /usr/bin/pkg-config$(get_exeext)
+   dosym pkgconf.1 /usr/share/man/man1/pkg-config.1
 }
 
 multilib_src_install_all() {

diff --git a/dev-util/pkgconf/pkgconf-1.8.0.ebuild 
b/dev-util/pkgconf/pkgconf-1.8.0-r1.ebuild
similarity index 74%
rename from dev-util/pkgconf/pkgconf-1.8.0.ebuild
rename to dev-util/pkgconf/pkgconf-1.8.0-r1.ebuild
index 29fd8c66589..2e564e60bf9 100644
--- a/dev-util/pkgconf/pkgconf-1.8.0.ebuild
+++ b/dev-util/pkgconf/pkgconf-1.8.0-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://git.sr.ht/~kaniini/pkgconf;
 
 LICENSE="ISC"
 SLOT="0/3"
-IUSE="+pkg-config test"
+IUSE="test"
 
 # tests require 'kyua'
 RESTRICT="!test? ( test )"
@@ -30,7 +30,7 @@ BDEPEND="
)
 "
 RDEPEND="
-   pkg-config? ( !dev-util/pkgconfig )
+   !dev-util/pkgconfig
 "
 
 MULTILIB_CHOST_TOOLS=(
@@ -41,11 +41,9 @@ src_prepare() {
default
 
[[ ${PV} == "" ]] && eautoreconf
-   if use pkg-config; then
-   MULTILIB_CHOST_TOOLS+=(
-   /usr/bin/pkg-config$(get_exeext)
-   )
-   fi
+   MULTILIB_CHOST_TOOLS+=(
+   /usr/bin/pkg-config$(get_exeext)
+   )
 }
 
 multilib_src_configure() {
@@ -66,15 +64,8 @@ multilib_src_test() {
 multilib_src_install() {
default
 
-   if use pkg-config; then
-   dosym pkgconf$(get_exeext) /usr/bin/pkg-config$(get_exeext)
-   dosym pkgconf.1 /usr/share/man/man1/pkg-config.1
-   else
-   rm "${ED}"/usr/share/aclocal/pkg.m4 || die
-   rmdir "${ED}"/usr/share/aclocal || die
-   rm "${ED}"/usr/share/man/man7/pkg.m4.7 || die
-   rmdir "${ED}"/usr/share/man/man7 || die
-   fi
+   dosym pkgconf$(get_exeext) /usr/bin/pkg-config$(get_exeext)
+   dosym pkgconf.1 /usr/share/man/man1/pkg-config.1
 }
 
 multilib_src_install_all() {

diff --git a/dev-util/pkgconf/pkgconf-.ebuild 
b/dev-util/pkgconf/pkgconf-.ebuild
index 463

[gentoo-commits] repo/gentoo:master commit in: x11-wm/i3/

2021-09-04 Thread Jakov Smolić
commit: 060aac3f521a62449838a4855298005250ebc4d4
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep  4 12:06:46 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sat Sep  4 12:06:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=060aac3f

x11-wm/i3: Style fixes

* Drop redundant first if block
* Sort dependencies alphabetically
* Add RESTRICT line

Signed-off-by: Jakov Smolić  gentoo.org>

 x11-wm/i3/i3-4.19.2.ebuild | 33 +++--
 x11-wm/i3/i3-.ebuild   | 43 ---
 2 files changed, 43 insertions(+), 33 deletions(-)

diff --git a/x11-wm/i3/i3-4.19.2.ebuild b/x11-wm/i3/i3-4.19.2.ebuild
index 0b7b213271d..8aedb5be519 100644
--- a/x11-wm/i3/i3-4.19.2.ebuild
+++ b/x11-wm/i3/i3-4.19.2.ebuild
@@ -4,15 +4,13 @@
 EAPI=7
 
 inherit meson optfeature virtualx
-if [[ "${PV}" = * ]]; then
-   inherit git-r3
-fi
 
 DESCRIPTION="An improved dynamic tiling window manager"
 HOMEPAGE="https://i3wm.org/;
 if [[ "${PV}" = * ]]; then
EGIT_REPO_URI="https://github.com/i3/i3;
EGIT_BRANCH="next"
+   inherit git-r3
 else
SRC_URI="https://i3wm.org/downloads/${P}.tar.xz;
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
@@ -21,12 +19,16 @@ fi
 LICENSE="BSD"
 SLOT="0"
 IUSE="doc test"
+RESTRICT="!test? ( test )"
 
-COMMON_DEPEND="dev-libs/libev
+COMMON_DEPEND="
+   dev-libs/libev
dev-libs/libpcre
dev-libs/yajl
+   x11-libs/cairo[X,xcb(+)]
x11-libs/libxcb[xkb]
x11-libs/libxkbcommon[X]
+   x11-libs/pango[X]
x11-libs/startup-notification
x11-libs/xcb-util
x11-libs/xcb-util-cursor
@@ -34,17 +36,17 @@ COMMON_DEPEND="dev-libs/libev
x11-libs/xcb-util-wm
x11-libs/xcb-util-xrm
x11-misc/xkeyboard-config
-   x11-libs/cairo[X,xcb(+)]
-   x11-libs/pango[X]"
-DEPEND="${COMMON_DEPEND}
+"
+DEPEND="
+   ${COMMON_DEPEND}
test? (
dev-perl/AnyEvent
-   dev-perl/X11-XCB
+   dev-perl/ExtUtils-PkgConfig
dev-perl/Inline
dev-perl/Inline-C
dev-perl/IPC-Run
-   dev-perl/ExtUtils-PkgConfig
dev-perl/local-lib
+   dev-perl/X11-XCB
virtual/perl-Test-Simple
x11-base/xorg-server[xephyr]
x11-misc/xvfb-run
@@ -53,15 +55,18 @@ DEPEND="${COMMON_DEPEND}
app-text/asciidoc
app-text/xmlto
dev-lang/perl
-   )"
-RDEPEND="${COMMON_DEPEND}
+   )
+"
+RDEPEND="
+   ${COMMON_DEPEND}
dev-lang/perl
dev-perl/AnyEvent-I3
-   dev-perl/JSON-XS"
+   dev-perl/JSON-XS
+"
 BDEPEND="virtual/pkgconfig"
 
 PATCHES=(
-   "${FILESDIR}/${PN}-4.16-musl-GLOB_TILDE.patch"
+   "${FILESDIR}"/${PN}-4.16-musl-GLOB_TILDE.patch
 )
 
 src_prepare() {
@@ -75,7 +80,7 @@ src_prepare() {
 
 src_configure() {
local emesonargs=(
-   -Ddocdir="${EPREFIX}/usr/share/doc/${PF}"
+   -Ddocdir="${EPREFIX}"/usr/share/doc/${PF}
$(meson_use doc docs)
$(meson_use doc mans)
)

diff --git a/x11-wm/i3/i3-.ebuild b/x11-wm/i3/i3-.ebuild
index 99bd3b7ad0b..8aedb5be519 100644
--- a/x11-wm/i3/i3-.ebuild
+++ b/x11-wm/i3/i3-.ebuild
@@ -4,15 +4,13 @@
 EAPI=7
 
 inherit meson optfeature virtualx
-if [[ "${PV}" = * ]]; then
-   inherit git-r3
-fi
 
 DESCRIPTION="An improved dynamic tiling window manager"
 HOMEPAGE="https://i3wm.org/;
 if [[ "${PV}" = * ]]; then
EGIT_REPO_URI="https://github.com/i3/i3;
EGIT_BRANCH="next"
+   inherit git-r3
 else
SRC_URI="https://i3wm.org/downloads/${P}.tar.xz;
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
@@ -21,12 +19,16 @@ fi
 LICENSE="BSD"
 SLOT="0"
 IUSE="doc test"
+RESTRICT="!test? ( test )"
 
-COMMON_DEPEND="dev-libs/libev
+COMMON_DEPEND="
+   dev-libs/libev
dev-libs/libpcre
dev-libs/yajl
+   x11-libs/cairo[X,xcb(+)]
x11-libs/libxcb[xkb]
x11-libs/libxkbcommon[X]
+   x11-libs/pango[X]
x11-libs/startup-notification
x11-libs/xcb-util
x11-libs/xcb-util-cursor
@@ -34,17 +36,17 @@ COMMON_DEPEND="dev-libs/libev
x11-libs/xcb-util-wm
x11-libs/xcb-util-xrm
x11-misc/xkeyboard-config
-   x11-libs/cairo[X,xcb(+)]
-   x11-libs/pango[X]"
-DEPEND="${COMMON_DEPEND}
+"
+DEPEND="
+   ${COMMON_DEPEND}
test? (
dev-perl/AnyEvent
-   dev-perl/X11-XCB
+   d

[gentoo-commits] repo/gentoo:master commit in: profiles/

2021-09-09 Thread Jakov Smolić
commit: 47438c549ceb159e1e2660d8de126bc56bbf93f8
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  9 12:32:49 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  9 12:37:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47438c54

package.mask: Last-rite dev-python/pybluez

Bug: https://bugs.gentoo.org/812233
Bug: https://bugs.gentoo.org/615198
Bug: https://bugs.gentoo.org/717902
Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index ed0074520c3..6fa4f8d9af9 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Jakov Smolić  (2021-09-09)
+# Relies on setuptools' deprecated use_2to3 option.
+# Last release in 2019, no revdeps.
+# Removal on 2021-10-09. Bug #812233
+dev-python/pybluez
+
 # Jakov Smolić  (2021-09-09)
 # Relies on setuptools' deprecated use_2to3 option.
 # Last release in 2015, no revdeps.



[gentoo-commits] repo/gentoo:master commit in: profiles/

2021-09-09 Thread Jakov Smolić
commit: 21370cffdc8fb2e1c2040172695d1d98812a4365
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  9 12:36:14 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  9 12:37:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21370cff

package.mask: Last-rite dev-python/sparql-wrapper

Bug: https://bugs.gentoo.org/812236
Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 6fa4f8d9af9..76df766f24b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Jakov Smolić  (2021-09-09)
+# Relies on setuptools' deprecated use_2to3 option.
+# Last release in 2019, no revdeps.
+# Removal on 2021-10-09. Bug #812236
+dev-python/sparql-wrapper
+
 # Jakov Smolić  (2021-09-09)
 # Relies on setuptools' deprecated use_2to3 option.
 # Last release in 2019, no revdeps.



[gentoo-commits] repo/gentoo:master commit in: profiles/

2021-09-09 Thread Jakov Smolić
commit: ed5dbcf278c6500d27e34727d1ad75d3c1667879
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  9 12:29:48 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  9 12:37:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed5dbcf2

package.mask: Last rite dev-python/lcdproc

Bug: https://bugs.gentoo.org/812224
Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index c19c954284c..ed0074520c3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Jakov Smolić  (2021-09-09)
+# Relies on setuptools' deprecated use_2to3 option.
+# Last release in 2015, no revdeps.
+# Removal on 2021-10-09. Bug #812224
+dev-python/lcdproc
+
 # Jakov Smolić  (2021-09-09)
 # Relies on setuptools' use_2to3 option.
 # Last release in 2017, no revdeps.



[gentoo-commits] repo/gentoo:master commit in: profiles/

2021-09-09 Thread Jakov Smolić
commit: ec8b4f2831a14286090612725f1de7b7018aee45
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep  9 12:19:35 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep  9 12:37:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec8b4f28

package.mask: Last rite dev-python/fudge

Bug: https://bugs.gentoo.org/812221
Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 6255bce446b..c19c954284c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Jakov Smolić  (2021-09-09)
+# Relies on setuptools' use_2to3 option.
+# Last release in 2017, no revdeps.
+# Removal on 2021-10-09. Bug #812221
+dev-python/fudge
+
 # Anna Vyalkova  (2021-09-07)
 # Mask backwards-incompatible version to avoid autodeletion of previous one.
 # Data migration is not supported upstream and can't be done automatically.



[gentoo-commits] repo/gentoo:master commit in: app-crypt/WiRouterKeyRec/, profiles/

2021-09-12 Thread Jakov Smolić
commit: 58cb6ac99a62d4654cdc2a440ce2c01d8c9dc4b2
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 12 07:53:04 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 12 08:04:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58cb6ac9

app-crypt/WiRouterKeyRec: Remove last-rited pkg

Signed-off-by: Jakov Smolić  gentoo.org>

 app-crypt/WiRouterKeyRec/Manifest  |  1 -
 .../WiRouterKeyRec/WiRouterKeyRec-1.1.2.ebuild | 39 --
 app-crypt/WiRouterKeyRec/metadata.xml  |  8 -
 profiles/package.mask  |  5 ---
 4 files changed, 53 deletions(-)

diff --git a/app-crypt/WiRouterKeyRec/Manifest 
b/app-crypt/WiRouterKeyRec/Manifest
deleted file mode 100644
index 9b45b760730..000
--- a/app-crypt/WiRouterKeyRec/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST WiRouterKeyRec-1.1.2.zip 117262 BLAKE2B 
fe140bf19d7a1af1c8c6e04725f3d3e67c30b3f108d64f1fe706b1e28e8767d08219e30b78e67b33553a00dea03ca344acf43c8b75f3c5f7633980e08d095f2b
 SHA512 
a3c449497e3f3fed88dfbb35a90a2cfa5937efa02393e825ec51ab390b7094ce619d3238a916afd2b48e35e0e261b454f7d7005af46d6a45d77b2e1d4faaac51

diff --git a/app-crypt/WiRouterKeyRec/WiRouterKeyRec-1.1.2.ebuild 
b/app-crypt/WiRouterKeyRec/WiRouterKeyRec-1.1.2.ebuild
deleted file mode 100644
index dc69de0abd2..000
--- a/app-crypt/WiRouterKeyRec/WiRouterKeyRec-1.1.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-MY_PN="WiRouter_KeyRec"
-MY_P="${MY_PN}_${PV}"
-
-DESCRIPTION="Recovery tool for wpa passphrase"
-HOMEPAGE="https://www.salvatorefresta.net;
-SRC_URI="https://tools.salvatorefresta.net/${MY_P}.zip -> ${P}.zip"
-S="${WORKDIR}"/${MY_P}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-
-BDEPEND="app-arch/unzip"
-
-src_prepare() {
-   default
-
-   sed -i "s:wirouterkeyrec:${PN}:" src/*.h || die
-}
-
-src_compile() {
-   emake \
-   CC="$(tc-getCC)" \
-   CFLAGS="${CFLAGS}" \
-   LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   newbin build/wirouterkeyrec ${PN}
-   insinto /etc/${PN}
-   doins config/agpf_config.lst config/teletu_config.lst
-}

diff --git a/app-crypt/WiRouterKeyRec/metadata.xml 
b/app-crypt/WiRouterKeyRec/metadata.xml
deleted file mode 100644
index d19c5907128..000
--- a/app-crypt/WiRouterKeyRec/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   a...@gentoo.org
-   Agostino Sarubbo
-   
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 1c1098c5ab1..ee44508b018 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -215,11 +215,6 @@ dev-libs/libevocosm
 app-benchmarks/acovea
 app-benchmarks/acovea-gtk
 
-# Agostino Sarubbo  (2021-08-12)
-# Latest release 2012, not anymore useful for current routers
-# Removal in ~30 days.
-app-crypt/WiRouterKeyRec
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/acovea-gtk/files/, profiles/, app-benchmarks/acovea-gtk/

2021-09-12 Thread Jakov Smolić
commit: 35d2e1342918cc0383136555ea3316b9634b9278
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 12 07:53:31 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 12 08:04:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35d2e134

app-benchmarks/acovea-gtk: Remove last-rited pkg

Closes: https://bugs.gentoo.org/626668
Signed-off-by: Jakov Smolić  gentoo.org>

 app-benchmarks/acovea-gtk/Manifest |   1 -
 app-benchmarks/acovea-gtk/acovea-gtk-1.0.1.ebuild  |  34 ---
 .../acovea-gtk/files/acovea-gtk-1.0.1-gcc4.3.patch |  23 -
 .../files/acovea-gtk-1.0.1-libbrahe.patch  |   8 --
 .../files/acovea-gtk-1.0.1-libsigc.patch   | 101 -
 .../files/acovea-gtk-1.0.1-unicode.patch   |  12 ---
 app-benchmarks/acovea-gtk/metadata.xml |   5 -
 profiles/package.mask  |   1 -
 8 files changed, 185 deletions(-)

diff --git a/app-benchmarks/acovea-gtk/Manifest 
b/app-benchmarks/acovea-gtk/Manifest
deleted file mode 100644
index 3c77cfe2711..000
--- a/app-benchmarks/acovea-gtk/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST acovea-gtk-1.0.1.tar.gz 407230 BLAKE2B 
ba8e27bc42e1cf7577c61a819a25b373c45738fb6788da9e4e40368ee3a64e363fcc66b43b80a357ba7ecf8e2b22937188c61457212e6051950fe5285e8e7629
 SHA512 
c26eb0059b0f6a8a77ebff2f9cad9a9d543a2932f035e520c40bc3b917d1570533be934571528b7e2e53932e56afa77eff108a1ac51678a514960563a775c2ed

diff --git a/app-benchmarks/acovea-gtk/acovea-gtk-1.0.1.ebuild 
b/app-benchmarks/acovea-gtk/acovea-gtk-1.0.1.ebuild
deleted file mode 100644
index 1b45c819bea..000
--- a/app-benchmarks/acovea-gtk/acovea-gtk-1.0.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools desktop flag-o-matic
-
-DESCRIPTION="Analysis of Compiler Options via Evolutionary Algorithm GUI"
-HOMEPAGE="http://www.coyotegulch.com/products/acovea/;
-SRC_URI="http://www.coyotegulch.com/distfiles/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="unicode"
-
-RDEPEND=">=app-benchmarks/acovea-5
-   dev-cpp/gtkmm:2.4"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-
-   use unicode && eapply "${FILESDIR}"/${P}-unicode.patch
-   eapply "${FILESDIR}"/${P}-{libbrahe,libsigc,gcc4.3}.patch
-   append-cxxflags -std=c++11
-   eautoreconf
-}
-
-src_install() {
-   default
-   make_desktop_entry "${PN}" Acovea-gtk \
-   /usr/share/acovea-gtk/pixmaps/acovea_icon_064.png System
-}

diff --git a/app-benchmarks/acovea-gtk/files/acovea-gtk-1.0.1-gcc4.3.patch 
b/app-benchmarks/acovea-gtk/files/acovea-gtk-1.0.1-gcc4.3.patch
deleted file mode 100644
index 30bfc96ab3f..000
--- a/app-benchmarks/acovea-gtk/files/acovea-gtk-1.0.1-gcc4.3.patch
+++ /dev/null
@@ -1,23 +0,0 @@
 a/src/settings_window.cc
-+++ b/src/settings_window.cc
-@@ -6,6 +6,7 @@
- // This file is for your program, I won't touch it again!
- 
- #include 
-+#include 
- #include "config.h"
- #include "settings_window.hh"
- 
-
 a/src/main_window.cc
-+++ b/src/main_window.cc
-@@ -9,6 +9,8 @@
- #include 
- #include 
- #include 
-+#include 
-+#include 
- #include "config.h"
- #include "main_window.hh"
- 
-

diff --git a/app-benchmarks/acovea-gtk/files/acovea-gtk-1.0.1-libbrahe.patch 
b/app-benchmarks/acovea-gtk/files/acovea-gtk-1.0.1-libbrahe.patch
deleted file mode 100644
index 4511f23e92f..000
--- a/app-benchmarks/acovea-gtk/files/acovea-gtk-1.0.1-libbrahe.patch
+++ /dev/null
@@ -1,8 +0,0 @@
 a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -22,4 +22,4 @@
- AM_CXXFLAGS = @GTKMM_CFLAGS@  
- 
- acovea_gtk_LDFLAGS =  -pthread -L//usr/lib
--acovea_gtk_LDADD = @LIBS@ @GTKMM_LIBS@ -lgthread-2.0 -lglib-2.0 -lcoyotl 
-levocosm -lacovea -lexpat 
-+acovea_gtk_LDADD = @LIBS@ @GTKMM_LIBS@ -lgthread-2.0 -lglib-2.0 -lcoyotl 
-levocosm -lbrahe -lacovea -lexpat 

diff --git a/app-benchmarks/acovea-gtk/files/acovea-gtk-1.0.1-libsigc.patch 
b/app-benchmarks/acovea-gtk/files/acovea-gtk-1.0.1-libsigc.patch
deleted file mode 100644
index aa60489ae63..000
--- a/app-benchmarks/acovea-gtk/files/acovea-gtk-1.0.1-libsigc.patch
+++ /dev/null
@@ -1,101 +0,0 @@
 a/src/about_box_glade.cc
-+++ b/src/about_box_glade.cc
-@@ -1530,8 +1530,8 @@
-hbuttonbox1->show();
-vbox3->show();
-about_box->show();
--   about_close_button->signal_clicked().connect(SigC::slot(*this, 
_box_glade::on_about_close_button_clicked), false);
--   about_box->signal_realize().connect(SigC::slot(*this, 
_box_glade::on_about_box_realize), false);
-+   about_close_button->signal_clicked().connect(sigc::mem_fun(*this, 
_box_glade::on_about_close_button_clicked), fa

[gentoo-commits] repo/gentoo:master commit in: dev-libs/libevocosm/files/, dev-libs/libevocosm/, profiles/

2021-09-12 Thread Jakov Smolić
commit: d437fc1fdab2bb8bcad4b8a004f5846750c9cfd6
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 12 07:58:24 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 12 08:04:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d437fc1f

dev-libs/libevocosm: Remove last-rited pkg

Closes: https://bugs.gentoo.org/318143
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-libs/libevocosm/Manifest   |  1 -
 .../libevocosm/files/libevocosm-3.3.1-gcc47.patch  | 20 -
 dev-libs/libevocosm/libevocosm-3.3.1-r1.ebuild | 49 --
 dev-libs/libevocosm/metadata.xml   |  5 ---
 profiles/package.mask  |  1 -
 5 files changed, 76 deletions(-)

diff --git a/dev-libs/libevocosm/Manifest b/dev-libs/libevocosm/Manifest
deleted file mode 100644
index bda765e2262..000
--- a/dev-libs/libevocosm/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libevocosm-3.3.1.tar.gz 414392 BLAKE2B 
7952cb83a1d5affa4e9b267670cfc889373fbf5c461fdb7022fe1c4af01e2116266f298b4a6ccbfc8102e0bf38fb8411eb6b741e5d72ffefe97b15281a7e44e8
 SHA512 
ebb4200ac533bdb86051a8a33e5da08d677ae0aa8c2e65a9855e9465b76827c0a72f31e260ee34be62600cd22794a4e47c4471623de8d9fcb4749dcf0a37d946

diff --git a/dev-libs/libevocosm/files/libevocosm-3.3.1-gcc47.patch 
b/dev-libs/libevocosm/files/libevocosm-3.3.1-gcc47.patch
deleted file mode 100644
index 1e286a0215e..000
--- a/dev-libs/libevocosm/files/libevocosm-3.3.1-gcc47.patch
+++ /dev/null
@@ -1,20 +0,0 @@
- https://bugs.gentoo.org/421607
-
- evocommon.h:468:29: error: 'usleep' was not declared in this scope
- 
- libevocosm/evocommon.h | 4 
- 1 file changed, 4 insertions(+)
-
 a/libevocosm/evocommon.h
-+++ b/libevocosm/evocommon.h
-@@ -54,6 +54,10 @@
- #undef min
- #endif
- 
-+#if !defined(_MSC_VER)
-+#include "unistd.h"
-+#endif
-+
- namespace libevocosm
- {
- //! The random number generator used by Evocosm

diff --git a/dev-libs/libevocosm/libevocosm-3.3.1-r1.ebuild 
b/dev-libs/libevocosm/libevocosm-3.3.1-r1.ebuild
deleted file mode 100644
index fbf770314d2..000
--- a/dev-libs/libevocosm/libevocosm-3.3.1-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A C++ framework for evolutionary computing"
-HOMEPAGE="http://www.coyotegulch.com/products/libevocosm/;
-SRC_URI="http://www.coyotegulch.com/distfiles/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND="dev-libs/libcoyotl
-   dev-libs/libbrahe"
-DEPEND="${RDEPEND}"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-PATCHES=(
-   "${FILESDIR}"/${P}-gcc47.patch
-)
-
-src_configure() {
-   export ac_cv_prog_HAVE_DOXYGEN="false"
-   econf --disable-static
-}
-
-src_compile() {
-   emake
-
-   if use doc ; then
-   cd docs || die
-   doxygen libevocosm.doxygen || die "generating docs failed"
-   fi
-}
-
-src_install() {
-   default
-
-   if use doc ; then
-   docinto html
-   dodoc docs/html/*
-   fi
-
-   find "${ED}" -name '*.la' -delete || die
-}

diff --git a/dev-libs/libevocosm/metadata.xml b/dev-libs/libevocosm/metadata.xml
deleted file mode 100644
index 85e4ed814fa..000
--- a/dev-libs/libevocosm/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 82d892175f3..98327092e97 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -211,7 +211,6 @@ dev-perl/Perlbal-XS-HTTPHeaders
 # Bug #318143, #62, #626668, Removal in ~30 days.
 dev-libs/libbrahe
 dev-libs/libcoyotl
-dev-libs/libevocosm
 
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libcoyotl/files/, profiles/, dev-libs/libcoyotl/

2021-09-12 Thread Jakov Smolić
commit: e19b0de142b2134d79aec1e074da819afc3bb88d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 12 07:59:06 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 12 08:04:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e19b0de1

dev-libs/libcoyotl: Remove last-rited pkg

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-libs/libcoyotl/Manifest  |  1 -
 dev-libs/libcoyotl/files/3.1.0-gcc-4.3.patch | 30 ---
 dev-libs/libcoyotl/files/3.1.0-gcc-4.7.patch | 11 --
 dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild | 56 
 dev-libs/libcoyotl/metadata.xml  |  5 ---
 profiles/package.mask|  1 -
 6 files changed, 104 deletions(-)

diff --git a/dev-libs/libcoyotl/Manifest b/dev-libs/libcoyotl/Manifest
deleted file mode 100644
index a8724c8ba9d..000
--- a/dev-libs/libcoyotl/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libcoyotl-3.1.0.tar.gz 346384 BLAKE2B 
7b3b63e5cd629bc5a53e95d6fb35f9f8d64df593eca95bafce71934560e38d37b89efa3fa8a0b12a50e570d761609cda4bbdfbd0a1577d062a8c4fa5e12a07a1
 SHA512 
18d0a71204dc57d44f73fe03fd88c2a040e83615557cf1f018c22ad7c9a11d793c7f71df8e10a156b9fd4fae910882ed6cec37f9e57efd3546ffc15fa82a51b5

diff --git a/dev-libs/libcoyotl/files/3.1.0-gcc-4.3.patch 
b/dev-libs/libcoyotl/files/3.1.0-gcc-4.3.patch
deleted file mode 100644
index e81476565e3..000
--- a/dev-libs/libcoyotl/files/3.1.0-gcc-4.3.patch
+++ /dev/null
@@ -1,30 +0,0 @@
 a/libcoyotl/command_line.cpp
-+++ b/libcoyotl/command_line.cpp
-@@ -30,10 +30,13 @@
- //  http://www.coyotegulch.com
- //  
- //---
- 
- #include "command_line.h"
-+
-+#include 
-+
- using namespace libcoyotl;
- 
- command_line::command_line(int argc, char * argv[], const set & 
bool_opts)
-   : m_options(),
- m_inputs(),
 a/libcoyotl/sortutil.h
-+++ b/libcoyotl/sortutil.h
-@@ -34,10 +34,11 @@
- //---
- 
- #if !defined(LIBCOYOTL_SORTUTIL_H)
- #define LIBCOYOTL_SORTUTIL_H
- 
-+#include 
- #include 
- 
- namespace libcoyotl
- {
- 

diff --git a/dev-libs/libcoyotl/files/3.1.0-gcc-4.7.patch 
b/dev-libs/libcoyotl/files/3.1.0-gcc-4.7.patch
deleted file mode 100644
index 266a5631fec..000
--- a/dev-libs/libcoyotl/files/3.1.0-gcc-4.7.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/libcoyotl/maze_renderer.cpp
-+++ b/libcoyotl/maze_renderer.cpp
-@@ -36,6 +36,8 @@
- #include "maze_renderer.h"
- using namespace libcoyotl;
- 
-+#include 
-+
- #include 
- using namespace std;
- 

diff --git a/dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild 
b/dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild
deleted file mode 100644
index 0e59b18b775..000
--- a/dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A collection of portable C++ classes"
-HOMEPAGE="http://www.coyotegulch.com/products/libcoyotl/;
-SRC_URI="http://www.coyotegulch.com/distfiles/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND="media-libs/libpng:0="
-DEPEND="${RDEPEND}"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-PATCHES=(
-   "${FILESDIR}"/${PV}-gcc-4.3.patch
-   "${FILESDIR}"/${PV}-gcc-4.7.patch
-)
-
-src_prepare() {
-   default
-
-   eautoreconf
-}
-
-src_configure() {
-   ac_cv_prog_HAVE_DOXYGEN="false" econf --disable-static
-}
-
-src_compile() {
-   emake
-
-   if use doc ; then
-   cd docs || die
-   doxygen libcoyotl.doxygen || die "generating docs failed"
-   fi
-}
-
-src_install() {
-   default
-
-   find "${ED}" -name '*.la' -delete || die
-
-   if use doc ; then
-   docinto html
-   dodoc docs/html/*
-   fi
-}

diff --git a/dev-libs/libcoyotl/metadata.xml b/dev-libs/libcoyotl/metadata.xml
deleted file mode 100644
index 85e4ed814fa..000
--- a/dev-libs/libcoyotl/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 98327092e97..13055109032 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -210,7 +210,6 @@ dev-perl/Perlbal-XS-HTTPHeaders
 # HOMEPAGE leads to some scammy site.
 # Bug #318143, #62, #626668, Removal in ~30 days.
 dev-libs/libbrahe
-dev-libs/libcoyotl
 
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libbrahe/files/, profiles/, dev-libs/libbrahe/

2021-09-12 Thread Jakov Smolić
commit: 3f68f2fff86b0ea23d02a7c1fd39578c8beef33b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 12 08:00:22 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 12 08:04:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f68f2ff

dev-libs/libbrahe: Remove last-rited pkg

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-libs/libbrahe/Manifest   |  1 -
 dev-libs/libbrahe/files/1.1.0-missing_libs.patch |  7 --
 dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild   | 31 
 dev-libs/libbrahe/metadata.xml   |  5 
 profiles/package.mask|  8 --
 5 files changed, 52 deletions(-)

diff --git a/dev-libs/libbrahe/Manifest b/dev-libs/libbrahe/Manifest
deleted file mode 100644
index e08a023139f..000
--- a/dev-libs/libbrahe/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libbrahe-1.1.0.tar.gz 344264 BLAKE2B 
84d32344ce9a8f8447b2963d88352a48ec286d1f9c7f39f9ac0da019198cb06f5cc9909eef891ae1e324bfc4a29eea9df4c9a6685f388098ece0888fbeeb4c70
 SHA512 
54f2d0c9c1c04429fab59d365d6a4144eed29a400edccd7ed9e5d19876565071ac76686da73e7f84c857057c8c52e1b85d2e257203724cbd9f1877d76024927f

diff --git a/dev-libs/libbrahe/files/1.1.0-missing_libs.patch 
b/dev-libs/libbrahe/files/1.1.0-missing_libs.patch
deleted file mode 100644
index d9153a812ad..000
--- a/dev-libs/libbrahe/files/1.1.0-missing_libs.patch
+++ /dev/null
@@ -1,7 +0,0 @@
 a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -14,3 +14,4 @@
- 
- AM_CFLAGS = -std=gnu99 -pedantic -Wall -Wno-format
- DEFS = -I. -I$(srcdir)
-+LIBS = -lm

diff --git a/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild 
b/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild
deleted file mode 100644
index 63f386c80ec..000
--- a/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A Heterogenous C Library of Numeric Functions"
-HOMEPAGE="http://www.coyotegulch.com/products/brahe/;
-SRC_URI="http://www.coyotegulch.com/distfiles/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-
-DOCS=( AUTHORS ChangeLog NEWS )
-
-PATCHES=(
-   "${FILESDIR}/${PV}-missing_libs.patch"
-)
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_install() {
-   default
-
-   find "${ED}" -name '*.a' -delete || die
-}

diff --git a/dev-libs/libbrahe/metadata.xml b/dev-libs/libbrahe/metadata.xml
deleted file mode 100644
index 85e4ed814fa..000
--- a/dev-libs/libbrahe/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 13055109032..3a48d7bebe0 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -203,14 +203,6 @@ dev-perl/MooseX-Types-DateTimeX
 # no easy fix. Removal in 30 days.
 dev-perl/Perlbal-XS-HTTPHeaders
 
-# David Seifert  (2021-08-13)
-# Dead upstream, new "forked" upstream that just added the last version
-# on Github but doesn't maintain them. Unmaintained for the past 10
-# years in ::gentoo, no other real distros package these anymore.
-# HOMEPAGE leads to some scammy site.
-# Bug #318143, #62, #626668, Removal in ~30 days.
-dev-libs/libbrahe
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: net-misc/frr/, net-misc/frr/files/

2021-09-12 Thread Jakov Smolić
commit: 3c699095ef5426ffe636269bd259c6aa63d02b70
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 12 08:02:53 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 12 08:04:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c699095

net-misc/frr: Remove old 8.0

Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/frr/Manifest   |   1 -
 net-misc/frr/files/frr-8.0-c-ares.patch |  19 
 net-misc/frr/frr-8.0.ebuild | 150 
 3 files changed, 170 deletions(-)

diff --git a/net-misc/frr/Manifest b/net-misc/frr/Manifest
index 0d77ca8d5aa..e9a0e78de4d 100644
--- a/net-misc/frr/Manifest
+++ b/net-misc/frr/Manifest
@@ -1,2 +1 @@
 DIST frr-8.0.1.tar.gz 8206852 BLAKE2B 
ed23f62457877fb3173977e1b7092c808adc5d5bd9b1d83747ac42573117adc38865abd1e722073532800f543978e5d67ba7c88416a4335c72bd6b8a3045ff5a
 SHA512 
d9a9ee3b40bf0271779765447c67da817551b5bf2d5d1e9f8073fb4596c622e013fbf7316ca39087db7b7f478b18d07f1fd06f1778abde2734c83112573d5f8f
-DIST frr-8.0.tar.gz 8195258 BLAKE2B 
75d8d4410a5377dae3bf6938c3b095b163ad87776420a16c07d461bb3f635d623de642fa0ae483094788369c9dc6a04d5424107bf60c848ac54756c4bdb20c97
 SHA512 
fdf1e68c16e266a74221fb194851ef47c888e90324de2e42a4ca68b9dbce1ba6f45d73b9830bdb17774ecdde736111fa562201a5763c49092b6ce1f0a4d4865a

diff --git a/net-misc/frr/files/frr-8.0-c-ares.patch 
b/net-misc/frr/files/frr-8.0-c-ares.patch
deleted file mode 100644
index c313006e863..000
--- a/net-misc/frr/files/frr-8.0-c-ares.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-https://bugs.gentoo.org/809728
 a/lib/subdir.am
-+++ b/lib/subdir.am
-@@ -144,7 +144,6 @@ vtysh_scan += \
-   lib/log_vty.c \
-   lib/nexthop_group.c \
-   lib/plist.c \
--  lib/resolver.c \
-   lib/routemap.c \
-   lib/routemap_cli.c \
-   lib/spf_backoff.c \
-@@ -333,6 +332,7 @@ lib_libfrrsnmp_la_SOURCES = \
- if CARES
- lib_LTLIBRARIES += lib/libfrrcares.la
- pkginclude_HEADERS += lib/resolver.h
-+vtysh_scan += lib/resolver.c
- endif
- 
- lib_libfrrcares_la_CFLAGS = $(AM_CFLAGS) $(CARES_CFLAGS)

diff --git a/net-misc/frr/frr-8.0.ebuild b/net-misc/frr/frr-8.0.ebuild
deleted file mode 100644
index 6343f0f45e3..000
--- a/net-misc/frr/frr-8.0.ebuild
+++ /dev/null
@@ -1,150 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit autotools pam python-single-r1 systemd
-
-DESCRIPTION="The FRRouting Protocol Suite"
-HOMEPAGE="https://frrouting.org/;
-SRC_URI="https://github.com/FRRouting/frr/archive/${P}.tar.gz;
-# FRR tarballs have weird format.
-S="${WORKDIR}/frr-${P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc fpm grpc ipv6 kernel_linux nhrp ospfapi pam rpki snmp systemd test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   acct-user/frr
-   dev-libs/json-c:0=
-   >=net-libs/libyang-2.0.0
-   sys-libs/libcap
-   sys-libs/readline:0=
-   virtual/libcrypt:=
-   grpc? ( net-libs/grpc:= )
-   nhrp? ( net-dns/c-ares:0= )
-   pam? ( sys-libs/pam )
-   rpki? ( >=net-libs/rtrlib-0.6.3[ssh] )
-   snmp? ( net-analyzer/net-snmp:= )
-"
-BDEPEND="
-   >=dev-util/clippy-${PV}
-   sys-devel/flex
-   virtual/yacc
-   doc? ( dev-python/sphinx )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   test? ( $(python_gen_cond_dep 'dev-python/pytest[${PYTHON_USEDEP}]') )
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-   $(python_gen_cond_dep 'dev-python/ipaddr[${PYTHON_USEDEP}]')
-   !net-misc/quagga
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-7.5-ipctl-forwarding.patch
-   "${FILESDIR}"/${P}-c-ares.patch
-)
-
-src_prepare() {
-   default
-
-   python_fix_shebang tools
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   --with-pkg-extra-version="-gentoo"
-   --enable-configfile-mask=0640
-   --enable-logfile-mask=0640
-   --prefix="${EPREFIX}"/usr
-   --libdir="${EPREFIX}"/usr/lib/frr
-   --sbindir="${EPREFIX}"/usr/lib/frr
-   --libexecdir="${EPREFIX}"/usr/lib/frr
-   --sysconfdir="${EPREFIX}"/etc/frr
-   --localstatedir="${EPREFIX}"/run/frr
-   --with-moduledir="${EPREFIX}"/usr/lib/frr/modules
-   --with-clippy="${BROOT}"/usr/bin/clippy
-   --enable-exampledir="${EPREFIX}"/usr/share/doc/${PF}/samples
-   --enable-user=frr
-   --enable-group=frr
-   --enable-vty-group=

[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/acovea/, profiles/, app-benchmarks/acovea/files/

2021-09-12 Thread Jakov Smolić
commit: 16a09ec399ce0d27f5335b4cc2cc8d7449bb9242
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 12 07:56:59 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 12 08:04:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16a09ec3

app-benchmarks/acovea: Remove last-rited pkg

Closes: https://bugs.gentoo.org/626668
Closes: https://bugs.gentoo.org/62
Signed-off-by: Jakov Smolić  gentoo.org>

 app-benchmarks/acovea/Manifest |   1 -
 app-benchmarks/acovea/acovea-5.1.1-r2.ebuild   |  45 
 .../acovea/files/acovea-5.1.1-asneeded.patch   |  16 ---
 .../acovea/files/acovea-5.1.1-free-fix.patch   |  12 ---
 .../acovea/files/acovea-5.1.1-gcc44.patch  |  14 ---
 .../acovea/files/acovea-5.1.1-glibc-212.patch  |  12 ---
 .../acovea/files/acovea-5.1.1-libevocosm.patch | 119 -
 .../acovea/files/acovea-5.1.1-underlinking.patch   |  10 --
 app-benchmarks/acovea/metadata.xml |   5 -
 profiles/package.mask  |   1 -
 10 files changed, 235 deletions(-)

diff --git a/app-benchmarks/acovea/Manifest b/app-benchmarks/acovea/Manifest
deleted file mode 100644
index fd1337d7ba7..000
--- a/app-benchmarks/acovea/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libacovea-5.1.1.tar.gz 363048 BLAKE2B 
61f894e99f3678f3b676e0926ff6d7a6bd376a654ad109d5b7f676d7053e4b975d90e0ac01d820b8498a6992db1cbd2fb5443fbe3871ef3f86bee280fd808352
 SHA512 
47ac88d713004ccdbf31c29bd5ead3e9d869eee262f2c12e12bf9aa7ec177d2c1e175908704cd5463b314752692edcd98d69408dbeb5873caff1745535a3a365

diff --git a/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild 
b/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild
deleted file mode 100644
index d00773301c0..000
--- a/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Analysis of Compiler Options via Evolutionary Algorithm"
-HOMEPAGE="http://www.coyotegulch.com/products/acovea/;
-SRC_URI="http://www.coyotegulch.com/distfiles/lib${P}.tar.gz;
-S="${WORKDIR}/lib${P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-
-RDEPEND="
-   >=dev-libs/libcoyotl-3.1.0:=
-   >=dev-libs/libevocosm-3.3.0:=
-   dev-libs/expat:="
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-asneeded.patch
-   "${FILESDIR}"/${P}-free-fix.patch
-   "${FILESDIR}"/${P}-gcc44.patch
-   "${FILESDIR}"/${P}-glibc-212.patch
-   "${FILESDIR}"/${P}-underlinking.patch
-   "${FILESDIR}"/${P}-libevocosm.patch
-)
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf --disable-static
-}
-
-src_install() {
-   default
-
-   find "${ED}" -name '*.la' -delete || die
-}

diff --git a/app-benchmarks/acovea/files/acovea-5.1.1-asneeded.patch 
b/app-benchmarks/acovea/files/acovea-5.1.1-asneeded.patch
deleted file mode 100644
index 3a887c15888..000
--- a/app-benchmarks/acovea/files/acovea-5.1.1-asneeded.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 a/cmdline/Makefile.am
-+++ b/cmdline/Makefile.am
-@@ -7,4 +7,4 @@
- 
- runacovea_SOURCES = runacovea.cpp
- 
--LIBS = -L../libacovea -lacovea -lcoyotl -levocosm -lexpat
-+LIBS = -L../libacovea -lacovea -lcoyotl -levocosm
 a/libacovea/Makefile.am
-+++ b/libacovea/Makefile.am
-@@ -16,3 +16,5 @@
- library_include_HEADERS = $(h_sources)
- 
- DEFS=-I. -I$(srcdir)
-+
-+LIBS = -lexpat

diff --git a/app-benchmarks/acovea/files/acovea-5.1.1-free-fix.patch 
b/app-benchmarks/acovea/files/acovea-5.1.1-free-fix.patch
deleted file mode 100644
index e20bfa3eb98..000
--- a/app-benchmarks/acovea/files/acovea-5.1.1-free-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 a/benchmarks/treebench.c
-+++ b/benchmarks/treebench.c
-@@ -201,8 +201,8 @@
- if (page->m_links[n] != NULL)
- recursive_destroy_page(page->m_links[n]);
- 
--free(page);
- }
-+free(page);
- }
- 
- static void free_btree(btree * btree)

diff --git a/app-benchmarks/acovea/files/acovea-5.1.1-gcc44.patch 
b/app-benchmarks/acovea/files/acovea-5.1.1-gcc44.patch
deleted file mode 100644
index 2207f461642..000
--- a/app-benchmarks/acovea/files/acovea-5.1.1-gcc44.patch
+++ /dev/null
@@ -1,14 +0,0 @@
 a/libacovea/acovea.cpp
-+++ b/libacovea/acovea.cpp
-@@ -44,10 +44,11 @@
- #include 
- #include 
- #include 
- 
- #include 
-+#include 
- #include 
- #include 
- #include 
- #include 
- #include 

diff --git a/app-benchmarks/acovea/files/acovea-5.1.1-glibc-212.patch 
b/app-benchmarks/acovea/files/acovea-5.1.1-glibc-212.patch
deleted file mode 100644
index 996cb5ebc82..000
--- a/app-benchmarks/acovea

[gentoo-commits] repo/gentoo:master commit in: sys-devel/bmake/

2021-09-12 Thread Jakov Smolić
commit: e5df42c1e50469b16ad0e78ef54c84d8edd87e04
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 12 10:13:47 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 12 10:14:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5df42c1

sys-devel/bmake: Stabilize 20210808 on amd64

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-devel/bmake/bmake-20210808.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/bmake/bmake-20210808.ebuild 
b/sys-devel/bmake/bmake-20210808.ebuild
index 5d5f1563085..f3e4c0d04f6 100644
--- a/sys-devel/bmake/bmake-20210808.ebuild
+++ b/sys-devel/bmake/bmake-20210808.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 
 # Skip failing test (sandbox and csh)
 PATCHES=( "${FILESDIR}"/${PN}-20210206-tests.patch )



[gentoo-commits] repo/gentoo:master commit in: sys-devel/bmake/

2021-09-12 Thread Jakov Smolić
commit: 891d373224c2092192586b04a94745575c7b5cef
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 12 10:14:04 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 12 10:14:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=891d3732

sys-devel/bmake: Remove old 20210704

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-devel/bmake/Manifest  |  1 -
 sys-devel/bmake/bmake-20210704.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/sys-devel/bmake/Manifest b/sys-devel/bmake/Manifest
index a2eb12c2ec5..a645597de42 100644
--- a/sys-devel/bmake/Manifest
+++ b/sys-devel/bmake/Manifest
@@ -1,3 +1,2 @@
-DIST bmake-20210704.tar.gz 759047 BLAKE2B 
4c21941c45c826e1758c64bc60532cff3b9a727cc18658b019ce55382aad8c668a5ef9039df695629f81a334969f1a5aaf08d5924aa20576474a528fe8dbcb15
 SHA512 
b21d89753b659a70d6f5d70aa41cc2b5f5ded5a5a4a227064c938db42282d7684df9389fa1db532c2e0de11d5be1e66698388f1e1e6966153ec56330af688674
 DIST bmake-20210808.tar.gz 765029 BLAKE2B 
27ff99395e7cdc00a118ebfb5b043180ffbd9d5385b008c49baae8bf953e45e277aeb133d736bd282c1ffc08bd7c3b87b4dc23d0b188a86469116e1d94ed2409
 SHA512 
d0afb9b6a50858c330cccf57a8f8b35ddf1ea1faefc2110237e30262b35eb69c1a4918e48acc2ed3deed8b11bf87b80429d71c46366c81ceb7427a79a3e58089
 DIST mk-20210330.tar.gz 107380 BLAKE2B 
9ac30a117d9ba31635cf8d8d29fdba76f148611f47628403ca8f807081c32509f10498d3c30fd24985e5420af4710fe59fc6315d71f2d0c1cfed93263a06553a
 SHA512 
6acd3ee911442934082f4f877d795b07c5e23022eaa9c0874799d97e92a2f5a663cb45f94b7f9745c49cbbce6b7e755a29e381ccfb9e68a0be1eedbd22fd5d3b

diff --git a/sys-devel/bmake/bmake-20210704.ebuild 
b/sys-devel/bmake/bmake-20210704.ebuild
deleted file mode 100644
index f3e4c0d04f6..000
--- a/sys-devel/bmake/bmake-20210704.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MK_VER=20210330
-
-DESCRIPTION="NetBSD's portable make"
-HOMEPAGE="http://www.crufty.net/help/sjg/bmake.html;
-SRC_URI="
-   http://void.crufty.net/ftp/pub/sjg/${P}.tar.gz
-   http://void.crufty.net/ftp/pub/sjg/mk-${MK_VER}.tar.gz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
-
-# Skip failing test (sandbox and csh)
-PATCHES=( "${FILESDIR}"/${PN}-20210206-tests.patch )
-
-src_prepare() {
-   default
-   cd "${WORKDIR}" || die
-   eapply "${FILESDIR}"/${PN}-20210314-mk-fixes.patch
-}
-
-src_configure() {
-   econf \
-   --with-mksrc=../mk \
-   --with-default-sys-path="${EPREFIX}"/usr/share/mk/${PN} \
-   --with-machine_arch=${ARCH}
-}
-
-src_compile() {
-   sh make-bootstrap.sh || die "bootstrap failed"
-}
-
-src_test() {
-   cd unit-tests || die
-
-   # the 'ternary' test uses ${A} internally, which
-   # conflicts with Gentoo's ${A}, hence unset it for
-   # the tests temporarily.
-   env -u A MAKEFLAGS= \
-   "${S}"/bmake -r -m / TEST_MAKE="${S}"/bmake test || die "tests 
compilation failed"
-}
-
-src_install() {
-   dobin ${PN}
-   doman ${PN}.1
-   FORCE_BSD_MK=1 SYS_MK_DIR=. \
-   sh ../mk/install-mk -v -m 644 "${ED}"/usr/share/mk/${PN} \
-   || die "failed to install mk files"
-}



[gentoo-commits] repo/gentoo:master commit in: net-print/libgnomecups/files/, profiles/, net-print/libgnomecups/

2021-09-10 Thread Jakov Smolić
commit: 7bb5a7034262d62de3d5122f43b03d7ea574d415
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Sep 10 08:46:58 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Sep 10 08:46:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb5a703

net-print/libgnomecups: Remove last-rited package

Bug: https://bugs.gentoo.org/352952
Signed-off-by: Jakov Smolić  gentoo.org>

 net-print/libgnomecups/Manifest|   1 -
 net-print/libgnomecups/files/enablenet.patch   |  11 -
 .../files/libgnomecups-0.2.3-cups-1.6.patch| 285 -
 .../files/libgnomecups-0.2.3-cups-config.patch |  34 ---
 .../files/libgnomecups-0.2.3-format-string.patch   |  34 ---
 .../libgnomecups-0.2.3-g_list_find_custom.patch|  94 ---
 .../files/libgnomecups-0.2.3-glib.h.patch  |  38 ---
 .../files/libgnomecups-0.2.3-lpoptions.patch   |  13 -
 .../files/libgnomecups-0.2.3-pkgconfig.patch   |  10 -
 .../libgnomecups/libgnomecups-0.2.3-r5.ebuild  |  64 -
 net-print/libgnomecups/metadata.xml|  12 -
 profiles/package.mask  |   5 -
 12 files changed, 601 deletions(-)

diff --git a/net-print/libgnomecups/Manifest b/net-print/libgnomecups/Manifest
deleted file mode 100644
index f3db6f28413..000
--- a/net-print/libgnomecups/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libgnomecups-0.2.3.tar.bz2 357129 BLAKE2B 
8a8babf0af7a83232590c5e756c4e1c2ce329dae59b88ee5be84c0286a6ed6d6c39f891b7ab0bb68bfc29539769cdd82032422c44a6131c4da9c9355669b1a57
 SHA512 
7276dfc92209c8503d8a59ceb192273e41bc13cc5f3515dcc00444deca4b9de6a29d0ec4c89811398e03971fa3f5ccbb85ca477da6c5f2bc26f2fb70dccb6a75

diff --git a/net-print/libgnomecups/files/enablenet.patch 
b/net-print/libgnomecups/files/enablenet.patch
deleted file mode 100644
index f2e113d1440..000
--- a/net-print/libgnomecups/files/enablenet.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 libgnomecups/gnome-cups-printer.c.orig 2005-08-04 18:21:32.221038336 
+
-+++ libgnomecups/gnome-cups-printer.c  2005-08-04 18:22:00.369759080 +
-@@ -282,7 +282,7 @@
-  * that will produce an infinite loop when presented with an invalid
-  * hostname.  This will also produce a hang if the remote printer is
-  * unavailable and we do a syncronous lookup. */
--static gboolean go_directly_to_printer_when_possible = FALSE;
-+static gboolean go_directly_to_printer_when_possible = TRUE;
- 
- static void
- update_attributes (GnomeCupsPrinter *printer)

diff --git a/net-print/libgnomecups/files/libgnomecups-0.2.3-cups-1.6.patch 
b/net-print/libgnomecups/files/libgnomecups-0.2.3-cups-1.6.patch
deleted file mode 100644
index 68f379c2510..000
--- a/net-print/libgnomecups/files/libgnomecups-0.2.3-cups-1.6.patch
+++ /dev/null
@@ -1,285 +0,0 @@
-From ae783efde4fa69578651994505462f02b8639220 Mon Sep 17 00:00:00 2001
-From: Alexandre Rostovtsev 
-Date: Tue, 7 Aug 2012 06:53:09 -0400
-Subject: [PATCH] Use CUPS-1.6 IPP API getter/setter functions
-
-CUPS 1.6 makes various structures private and introduces these ippGet
-and ippSet functions for all of the fields in these structures.
-http://www.cups.org/str.php?L3928
-
-We define our own accessors when building against CUPS < 1.6.
-
-Based on work by Jiri Popelka  at
-https://bugzilla.gnome.org/show_bug.cgi?id=679759

- libgnomecups/gnome-cups-printer.c |   48 +---
- libgnomecups/gnome-cups-queue.c   |   43 +++--
- libgnomecups/gnome-cups-request.c |   44 -
- 3 files changed, 110 insertions(+), 25 deletions(-)
-
-diff --git a/libgnomecups/gnome-cups-printer.c 
b/libgnomecups/gnome-cups-printer.c
-index c924af0..f5e1ef7 100644
 a/libgnomecups/gnome-cups-printer.c
-+++ b/libgnomecups/gnome-cups-printer.c
-@@ -37,6 +37,34 @@
- 
- #define UPDATE_TIMEOUT 5000
- 
-+#if (CUPS_VERSION_MAJOR > 1) || (CUPS_VERSION_MINOR > 5)
-+#define HAVE_CUPS_1_6 1
-+#endif
-+
-+#ifndef HAVE_CUPS_1_6
-+#define ippGetCount(attr) attr->num_values
-+#define ippGetName(attr)  attr->name
-+#define ippGetInteger(attr, element) attr->values[element].integer
-+#define ippGetString(attr, element, language) 
attr->values[element].string.text
-+
-+static ipp_attribute_t *
-+ippFirstAttribute(ipp_t *ipp)
-+{
-+  if (!ipp)
-+return (NULL);
-+  return (ipp->current = ipp->attrs);
-+}
-+
-+static ipp_attribute_t *
-+ippNextAttribute(ipp_t *ipp)
-+{
-+  if (!ipp || !ipp->current)
-+return (NULL);
-+  return (ipp->current = ipp->current->next);
-+}
-+#endif
-+
-+
- struct _GnomeCupsPPDFile {
-   char name[1];
- };
-@@ -173,9 +201,9 @@ map_reasons (GnomeCupsPrinter *printer,
-   printer->details->state_reasons = NULL;
- 
-   /* cf. RFC2911 4.4.12 */
--  for (i = 0; i < attr->num_values; i++) {
-+  for (i = 0; i < ippGetCount (attr); i++) {
-   co

[gentoo-commits] repo/gentoo:master commit in: net-misc/mstpd/

2021-09-15 Thread Jakov Smolić
commit: 24304c1b500773ed0a350d38456331c681fe8a83
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Sep 15 12:34:31 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Wed Sep 15 12:34:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24304c1b

net-misc/mstpd: Change localstatedir to "${EPREFIX}/"

- Old value would reference legacy directory (/var/run), which would
  result in the following message:
```
/lib/systemd/system/mstpd.service:8: PIDFile= references a path below
legacy directory /var/run/, updating /var/run/mstpd.pid →
/run/mstpd.pid; please update the unit file accordingly.
```

Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/mstpd/{mstpd-0.0.9.ebuild => mstpd-0.0.9-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/mstpd/mstpd-0.0.9.ebuild 
b/net-misc/mstpd/mstpd-0.0.9-r1.ebuild
similarity index 95%
rename from net-misc/mstpd/mstpd-0.0.9.ebuild
rename to net-misc/mstpd/mstpd-0.0.9-r1.ebuild
index 06a8a8618cf..29d66dea87e 100644
--- a/net-misc/mstpd/mstpd-0.0.9.ebuild
+++ b/net-misc/mstpd/mstpd-0.0.9-r1.ebuild
@@ -22,7 +22,7 @@ src_configure() {
econf \
--with-bashcompletiondir="$(get_bashcompdir)" \
--with-systemdunitdir="$(systemd_get_systemunitdir)" \
-   --localstatedir="${EPREFIX}"/var
+   --localstatedir="${EPREFIX}"/
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: dev-util/bpftool/

2021-09-14 Thread Jakov Smolić
commit: 06adeb615141b3b507ea523b91f9ea5aa9d6ced5
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Sep 14 06:28:11 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Sep 14 06:28:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06adeb61

dev-util/bpftool: Inherit python-any-r1

Closes: https://bugs.gentoo.org/813023
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-util/bpftool/bpftool-5.12.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-util/bpftool/bpftool-5.12.ebuild 
b/dev-util/bpftool/bpftool-5.12.ebuild
index a5d21696992..2d687e71907 100644
--- a/dev-util/bpftool/bpftool-5.12.ebuild
+++ b/dev-util/bpftool/bpftool-5.12.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=8
 
-inherit estack linux-info optfeature toolchain-funcs
+PYTHON_COMPAT=( python3_{8..10} )
+inherit estack linux-info optfeature python-any-r1 toolchain-funcs
 
 MY_PV="${PV/_/-}"
 MY_PV="${MY_PV/-pre/-git}"
@@ -39,6 +40,7 @@ DEPEND="
 "
 BDEPEND="
${LINUX_PATCH+dev-util/patchutils}
+   ${PYTHON_DEPS}
dev-python/docutils
 "
 



[gentoo-commits] repo/gentoo:master commit in: profiles/, app-i18n/man-pages-it/

2021-09-07 Thread Jakov Smolić
commit: 1494d93f4030924b37bd74bc66d5cc42238d56c7
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Sep  7 16:34:32 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Sep  7 16:43:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1494d93f

app-i18n/man-pages-it: Remove last-rited package

Closes: https://bugs.gentoo.org/769017
Signed-off-by: Jakov Smolić  gentoo.org>

 app-i18n/man-pages-it/Manifest|  1 -
 app-i18n/man-pages-it/man-pages-it-5.06-r1.ebuild | 30 ---
 app-i18n/man-pages-it/metadata.xml| 11 -
 profiles/package.mask |  7 --
 4 files changed, 49 deletions(-)

diff --git a/app-i18n/man-pages-it/Manifest b/app-i18n/man-pages-it/Manifest
deleted file mode 100644
index b442c578791..000
--- a/app-i18n/man-pages-it/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST man-pages-it-5.06.tar.xz 363716 BLAKE2B 
57ac90d11a76217ead0f201ed4f8cfd0bc5f08b97662023a540f1150fc8fb6804980e6770cc7d707097d732645ebc9b3b85feb15736d7e925df2711a3f32ba6e
 SHA512 
d4d89bba004265c70b6f0220b0172798677174e8034ece4a15c21432423ec904d0a3b7614987a165950c4f28af02c1b9374f536982771307b78617479139f900

diff --git a/app-i18n/man-pages-it/man-pages-it-5.06-r1.ebuild 
b/app-i18n/man-pages-it/man-pages-it-5.06-r1.ebuild
deleted file mode 100644
index f64599a295c..000
--- a/app-i18n/man-pages-it/man-pages-it-5.06-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A somewhat comprehensive collection of Italian Linux man pages"
-HOMEPAGE="http://it.tldp.org/man/;
-SRC_URI="ftp://ftp.pluto.it/pub/pluto/ildp/man/${P}.tar.xz;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-IUSE=""
-
-RDEPEND="virtual/man"
-
-src_prepare() {
-   default
-   # Remove man page provided by sys-apps/shadow
-   rm man-pages/man5/passwd.5 || die
-}
-
-src_compile() { :; } # emake does bad things here
-
-src_install() {
-   doman -i18n=it man-pages/man[1-9]/* binutils/man[1-9]/* 
inetutils/man[1-9]/* \
-   util-linux/man[1-9]/* misc/man[1-9]/*
-
-   dodoc description README CHANGELOG
-}

diff --git a/app-i18n/man-pages-it/metadata.xml 
b/app-i18n/man-pages-it/metadata.xml
deleted file mode 100644
index 65484e7dc6c..000
--- a/app-i18n/man-pages-it/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   
-   
-   giu...@pluto.it
-   Giulio Daprelà
-   
-   
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 3ebe95f004a..a8f208124ea 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -194,13 +194,6 @@ x11-libs/goocanvas:0
 # failing tests with Python 3.10. Removal on 2021-09-06.
 dev-python/pydiff
 
-# Ulrich Müller  (2021-08-06)
-# Masked for removal in 30 days. Upstream has joined the
-# manpages-l10n project, so 5.06 was their ultimate release
-# as a separate package. Use app-i18n/man-pages-l10n[l10n_it]
-# as replacement. Bug #769017.
-app-i18n/man-pages-it
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: profiles/, x11-libs/goocanvas/, x11-libs/goocanvas/files/

2021-09-07 Thread Jakov Smolić
commit: c8438823f6603ba418e4b2447179354431f32dc4
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Sep  7 16:38:57 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Sep  7 16:43:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8438823

x11-libs/goocanvas: Remove last-rited 0 slot

Bug: https://bugs.gentoo.org/776403
Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/package.mask  |  1 -
 x11-libs/goocanvas/Manifest|  1 -
 .../goocanvas/files/goocanvas-1.0.0-gold.patch | 26 --
 x11-libs/goocanvas/goocanvas-1.0.0.ebuild  | 58 --
 4 files changed, 86 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 6d86bd27543..1db237e7e7f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -187,7 +187,6 @@ net-dialup/xc
 # Andreas Sturmlechner  (2021-08-09)
 # EAPI-5, dead, unused; bug #776403. Removal on 2021-09-08.
 dev-perl/Goo-Canvas
-x11-libs/goocanvas:0
 
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the

diff --git a/x11-libs/goocanvas/Manifest b/x11-libs/goocanvas/Manifest
index 2fdbd0d2d50..0ecdfc19ff9 100644
--- a/x11-libs/goocanvas/Manifest
+++ b/x11-libs/goocanvas/Manifest
@@ -1,2 +1 @@
-DIST goocanvas-1.0.0.tar.bz2 570552 BLAKE2B 
00b1a3d59448cc2f40dd20b0c97977cfc477a6656f32e2106b3f3bd5c42b8b625e270d9f96de44f30caf83b744b331699e7c6385b5269bf7b22e3bb25a879948
 SHA512 
fef4364b57dc777b6dcceb026f940121a24a8a3792e8d37d320eb47b7747ab0d54d8d7911b4ff77c21ca2b251937c9312da04221bbc246a07bbf4062689de644
 DIST goocanvas-2.0.4.tar.xz 584272 BLAKE2B 
027ab47c1e9c241f74509001426367e86025ec8ea5901cf64c2014f8c32b83ce60870ca754dd15e8982a7023b77d3856b39dbbbdd636de6da47d361cb15a940e
 SHA512 
e57dfd59d9b9cb64deadfeac193c11a89347c7f0e966377cfb98afcc2b46be13fe05d253a96e63dc7e6981c75e6e871040b83d8d0aee95cb62b79965d6be5688

diff --git a/x11-libs/goocanvas/files/goocanvas-1.0.0-gold.patch 
b/x11-libs/goocanvas/files/goocanvas-1.0.0-gold.patch
deleted file mode 100644
index c395c6ffd79..000
--- a/x11-libs/goocanvas/files/goocanvas-1.0.0-gold.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/src/Makefile.am b/src/Makefile.am
-index b49c009..9c3316b 100644
 a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -12,7 +12,7 @@ INCLUDES = \
- 
- lib_LTLIBRARIES = libgoocanvas.la
- 
--libgoocanvas_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS)
-+libgoocanvas_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS) -lm
- 
- if PLATFORM_WIN32
- no_undefined = -no-undefined
-diff --git a/src/Makefile.in b/src/Makefile.in
-index c4d43b2..8d555fe 100644
 a/src/Makefile.in
-+++ b/src/Makefile.in
-@@ -254,7 +254,7 @@ INCLUDES = \
- # -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED \
- # -DGTK_DISABLE_DEPRECATED
- lib_LTLIBRARIES = libgoocanvas.la
--libgoocanvas_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS)
-+libgoocanvas_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS) -lm
- @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined
- libtool_opts = \
-   -version-info $(LT_VERSION_INFO)\

diff --git a/x11-libs/goocanvas/goocanvas-1.0.0.ebuild 
b/x11-libs/goocanvas/goocanvas-1.0.0.ebuild
deleted file mode 100644
index f59677deb0f..000
--- a/x11-libs/goocanvas/goocanvas-1.0.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-GCONF_DEBUG=no
-GNOME2_LA_PUNT=yes
-GNOME_TARBALL_SUFFIX="bz2"
-inherit epatch gnome2
-
-DESCRIPTION="Canvas widget for GTK+ using the cairo 2D library for drawing"
-HOMEPAGE="https://wiki.gnome.org/Projects/GooCanvas;
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="examples"
-
-RDEPEND="
-   >=x11-libs/gtk+-2.12:2
-   >=dev-libs/glib-2.10:2
-   >=x11-libs/cairo-1.4
-"
-DEPEND="${RDEPEND}
-   dev-util/glib-utils
-   dev-util/gtk-doc-am
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # https://bugzilla.gnome.org/show_bug.cgi?id=671766
-   epatch "${FILESDIR}"/${P}-gold.patch
-
-   # Fails to build with recent GTK+
-   sed -e "s/-D.*_DISABLE_DEPRECATED//g" \
-   -i src/Makefile.am src/Makefile.in demo/Makefile.am 
demo/Makefile.in \
-   || die "sed 1 failed"
-
-   sed -e 's/^\(SUBDIRS =.*\)demo\(.*\)$/\1\2/' \
-   -i Makefile.am Makefile.in || die "sed 2 failed"
-
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-rebuilds \
-   --disable-static
-}
-
-src_install() {
-   gnome2_src_install
-
-   if use examples; then
-   insinto /usr/share/doc/${P}/examples/
-   doins demo/*.c demo/flower.png demo/toroid.png
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Goo-Canvas/files/, dev-perl/Goo-Canvas/, profiles/

2021-09-07 Thread Jakov Smolić
commit: 712efef5d7af6da003192416e9479b8294527aba
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Sep  7 16:39:27 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Sep  7 16:43:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=712efef5

dev-perl/Goo-Canvas: Remove last-rited package

Closes: https://bugs.gentoo.org/776403
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Goo-Canvas/Goo-Canvas-0.60.0-r2.ebuild| 28 --
 dev-perl/Goo-Canvas/Manifest   |  1 -
 .../files/fix_implicit_pointer_declaration.patch   | 14 ---
 dev-perl/Goo-Canvas/metadata.xml   | 15 
 profiles/package.mask  |  4 
 5 files changed, 62 deletions(-)

diff --git a/dev-perl/Goo-Canvas/Goo-Canvas-0.60.0-r2.ebuild 
b/dev-perl/Goo-Canvas/Goo-Canvas-0.60.0-r2.ebuild
deleted file mode 100644
index 19e3008f477..000
--- a/dev-perl/Goo-Canvas/Goo-Canvas-0.60.0-r2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=YEWENBIN
-DIST_VERSION=0.06
-DIST_EXAMPLES=("demo/*")
-inherit perl-module
-
-DESCRIPTION="Perl interface to the GooCanvas"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="x11-libs/goocanvas:0
-   dev-perl/Gtk2
-   dev-perl/glib-perl
-   dev-perl/Cairo"
-DEPEND="${RDEPEND}
-   dev-perl/ExtUtils-Depends
-   dev-perl/ExtUtils-PkgConfig"
-
-PATCHES=(
-   # this patch fixes segfaults on amd64 platforms
-   "${FILESDIR}"/fix_implicit_pointer_declaration.patch
-)

diff --git a/dev-perl/Goo-Canvas/Manifest b/dev-perl/Goo-Canvas/Manifest
deleted file mode 100644
index 0e1f8a0a645..000
--- a/dev-perl/Goo-Canvas/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Goo-Canvas-0.06.tar.gz 106070 BLAKE2B 
59487256ff1f6fa4d7884101c36b1f43ee1969e671b447d8c51858a7cec072a3b830bd2b36157dacf8c2c657c86bab9ef458c9f65f6d4046c16bc80b7bf83c44
 SHA512 
4fee648dbbf76592bfc0676c2d4294c13a5b48e5608ec633a6786d79e06bc866f8e48cbeabeeb19836695f78573996321dbf0820030324ebebeb9d259ba1b660

diff --git a/dev-perl/Goo-Canvas/files/fix_implicit_pointer_declaration.patch 
b/dev-perl/Goo-Canvas/files/fix_implicit_pointer_declaration.patch
deleted file mode 100644
index c33a9b3d95f..000
--- a/dev-perl/Goo-Canvas/files/fix_implicit_pointer_declaration.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Index: Goo-Canvas-0.06/goocanvas-perl.h
-===
 Goo-Canvas-0.06.orig/goocanvas-perl.h
-+++ Goo-Canvas-0.06/goocanvas-perl.h
-@@ -9,6 +9,9 @@
- #include "cairo-perl.h"
- #include "goocanvas.h"
- 
-+cairo_surface_t * goo_canvas_cairo_pattern_from_pixbuf(GdkPixbuf *pixbuf);
-+cairo_surface_t * goo_canvas_cairo_surface_from_pixbuf(GdkPixbuf *pixbuf);
-+
- /* FIXME: How to avoid compile error in autogen.h */
- #define GooCairoPattern cairo_pattern_t
- #define GooCairoMatrix cairo_matrix_t

diff --git a/dev-perl/Goo-Canvas/metadata.xml b/dev-perl/Goo-Canvas/metadata.xml
deleted file mode 100644
index 7a6a77c0f0f..000
--- a/dev-perl/Goo-Canvas/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-GTK+ does't has an buildin canvas widget. GooCanvas is wonderful. It is easy 
to use and has powerful and extensible way to create items in canvas. Just try 
it.
-
-  
-Goo-Canvas
-Goo::Canvas
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 1db237e7e7f..548eeae7b9d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -184,10 +184,6 @@ net-print/libgnomecups
 # See bugs #551786 and #715846.  Removal in 30 days.
 net-dialup/xc
 
-# Andreas Sturmlechner  (2021-08-09)
-# EAPI-5, dead, unused; bug #776403. Removal on 2021-09-08.
-dev-perl/Goo-Canvas
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: dev-python/pydiff/, profiles/

2021-09-07 Thread Jakov Smolić
commit: 6922a1c846cbeefb2a599452d646457172c24a71
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Sep  7 16:35:30 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Sep  7 16:43:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6922a1c8

dev-python/pydiff: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/pydiff/Manifest |  1 -
 dev-python/pydiff/metadata.xml | 12 
 dev-python/pydiff/pydiff-0.2-r1.ebuild | 21 -
 profiles/package.mask  |  5 -
 4 files changed, 39 deletions(-)

diff --git a/dev-python/pydiff/Manifest b/dev-python/pydiff/Manifest
deleted file mode 100644
index 2404a3293a8..000
--- a/dev-python/pydiff/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pydiff-0.2.tar.gz 4108 BLAKE2B 
868b9b31f96e49a4e375d2933fc158845ced4bc561816512f41c85dbd6d5373567a51153dedc527826ef2d03306288e3255d300fc2b400e28983e6616eec6a25
 SHA512 
0f55edf17138c4a1894a1ca03db21e6d6d21fb3961a2738c00d59e05d32a006413aee04005962f1ba6628c012bb018d43fcbbef50665ea10d3397539e5d3def1

diff --git a/dev-python/pydiff/metadata.xml b/dev-python/pydiff/metadata.xml
deleted file mode 100644
index 9dda17d789e..000
--- a/dev-python/pydiff/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-pyt...@gentoo.org
-Python
-  
-  
-pydiff
-myint/pydiff
-  
-

diff --git a/dev-python/pydiff/pydiff-0.2-r1.ebuild 
b/dev-python/pydiff/pydiff-0.2-r1.ebuild
deleted file mode 100644
index 6d8889c1f11..000
--- a/dev-python/pydiff/pydiff-0.2-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=no
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Diffs two Python files at the bytecode level"
-HOMEPAGE="https://github.com/myint/pydiff;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm64 ~ia64 ppc sparc x86"
-
-python_test() {
-   "${EPYTHON}" test_pydiff.py || die "Tests failed under ${EPYTHON}"
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index a8f208124ea..6d86bd27543 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -189,11 +189,6 @@ net-dialup/xc
 dev-perl/Goo-Canvas
 x11-libs/goocanvas:0
 
-# Louis Sautier  (2021-08-07)
-# No reverse dependencies, no upstream activity for more than 5 years,
-# failing tests with Python 3.10. Removal on 2021-09-06.
-dev-python/pydiff
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: dev-perl/MooseX-Types-DateTime-ButMaintained/, profiles/

2021-09-16 Thread Jakov Smolić
commit: 49119b92afc8c136abef26bd98e0bd992b117768
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 16 12:14:06 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep 16 12:14:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49119b92

dev-perl/MooseX-Types-DateTime-ButMaintained: Remove last-rited package

Closes: https://bugs.gentoo.org/623674
Signed-off-by: Jakov Smolić  gentoo.org>

 .../MooseX-Types-DateTime-ButMaintained/Manifest   |  1 -
 ...seX-Types-DateTime-ButMaintained-0.160.0.ebuild | 42 --
 .../metadata.xml   | 12 ---
 profiles/package.mask  |  5 ---
 4 files changed, 60 deletions(-)

diff --git a/dev-perl/MooseX-Types-DateTime-ButMaintained/Manifest 
b/dev-perl/MooseX-Types-DateTime-ButMaintained/Manifest
deleted file mode 100644
index c0c302546e5..000
--- a/dev-perl/MooseX-Types-DateTime-ButMaintained/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST MooseX-Types-DateTime-ButMaintained-0.16.tar.gz 31256 BLAKE2B 
d3fb36210bbfd8cc5af54c6902ea905bf6db9fc12964de925d5b5985e257bcffd493a11642553afb5db7920e4af254c152cb81ccbf0b026d45c32737e409eba2
 SHA512 
46c15a54f6126b9e0bbe4d4fc7f8d4375dfba040db46e4c35f7b33a079aeea94244da17c2aa6e05b77c40742b823dba001371d669afe1ce11e712a23677f41f0

diff --git 
a/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild
 
b/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild
deleted file mode 100644
index c4de5ff50f2..000
--- 
a/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=ECARROLL
-DIST_VERSION=0.16
-inherit perl-module
-
-DESCRIPTION="DateTime related constraints and coercions for Moose"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-perl/DateTime-0.43.02
-   >=dev-perl/DateTime-Format-DateParse-0.04
-   >=dev-perl/DateTime-Format-Flexible-0.05
-   >=dev-perl/DateTime-Format-Natural-0.71
-   >=dev-perl/DateTime-Locale-0.40.01
-   >=dev-perl/DateTime-TimeZone-0.77.01
-   >=dev-perl/DateTimeX-Easy-0.082
-   >=dev-perl/Moose-0.41
-   >=dev-perl/MooseX-Types-0.300.0
-   dev-perl/namespace-autoclean
-   >=dev-perl/Olson-Abbreviations-0.30.0
-"
-DEPEND="${RDEPEND}
-   test? (
-   >=dev-perl/Test-Exception-0.27
-   >=virtual/perl-Test-Simple-1.1.10
-   >=dev-perl/Time-Duration-Parse-0.06
-   )
-"
-
-src_prepare() {
-   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
-   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
-   perl-module_src_prepare
-}

diff --git a/dev-perl/MooseX-Types-DateTime-ButMaintained/metadata.xml 
b/dev-perl/MooseX-Types-DateTime-ButMaintained/metadata.xml
deleted file mode 100644
index a57480e6010..000
--- a/dev-perl/MooseX-Types-DateTime-ButMaintained/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-MooseX-Types-DateTime-ButMaintained
-MooseX::Types::DateTime::ButMaintained
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 0104ffed5ec..0551fa40b76 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -224,11 +224,6 @@ sys-fs/e4rat
 # Broken since Perl 5.22, bug 662318. Removal in 30 days.
 dev-perl/POE-API-Peek
 
-# Andreas K. Hüttel  (2021-08-15)
-# Broken-ish, upstream unmaintained, only one un-used revdep.
-# Removal in 30 days. Bug 623674.
-dev-perl/MooseX-Types-DateTime-ButMaintained
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: dev-perl/POE-API-Peek/, profiles/

2021-09-16 Thread Jakov Smolić
commit: feb0eed2e080fc128640d7b7aba0c4f5ecb4fd03
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 16 12:14:37 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep 16 12:14:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feb0eed2

dev-perl/POE-API-Peek: Remove last-rited package

Closes: https://bugs.gentoo.org/662318
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/POE-API-Peek/Manifest |  1 -
 .../POE-API-Peek/POE-API-Peek-2.200.0-r2.ebuild| 22 --
 dev-perl/POE-API-Peek/metadata.xml | 12 
 profiles/package.mask  |  4 
 4 files changed, 39 deletions(-)

diff --git a/dev-perl/POE-API-Peek/Manifest b/dev-perl/POE-API-Peek/Manifest
deleted file mode 100644
index 77b077cd114..000
--- a/dev-perl/POE-API-Peek/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST POE-API-Peek-2.20.tar.gz 16107 BLAKE2B 
70a20b4d019d3bdfd88bd83bd1a33e684266c08c4613e85d6fb5b375926c0d95132997e17801fdc933ddba14f1769325de1ed71f1d9c26d24e80b25371f6a02c
 SHA512 
cd1f381d5838de80fa236bc538a1bd69a1ac809dec896a0c03ee7b6f73c7ba0c2da1641d4ba2f689aa730b9e2f538acac65f23e48cc1c534012b6b0e25fdac29

diff --git a/dev-perl/POE-API-Peek/POE-API-Peek-2.200.0-r2.ebuild 
b/dev-perl/POE-API-Peek/POE-API-Peek-2.200.0-r2.ebuild
deleted file mode 100644
index 0896252fd30..000
--- a/dev-perl/POE-API-Peek/POE-API-Peek-2.200.0-r2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DIST_AUTHOR=BINGOS
-DIST_VERSION=2.20
-inherit perl-module
-
-DESCRIPTION="Peek into the internals of a running POE env"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-perl/Devel-Size
-   >=dev-perl/POE-1.311.0
-"
-BDEPEND="${RDEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.310.0
-"

diff --git a/dev-perl/POE-API-Peek/metadata.xml 
b/dev-perl/POE-API-Peek/metadata.xml
deleted file mode 100644
index c0946650e96..000
--- a/dev-perl/POE-API-Peek/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-POE-API-Peek
-POE::API::Peek
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 0551fa40b76..d1714ac44c2 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -220,10 +220,6 @@ net-analyzer/netwag
 # Removal on 2021-09-17.
 sys-fs/e4rat
 
-# Andreas K. Hüttel  (2021-08-15)
-# Broken since Perl 5.22, bug 662318. Removal in 30 days.
-dev-perl/POE-API-Peek
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: dev-perl/MooseX-Types-DateTimeX/, profiles/, ...

2021-09-16 Thread Jakov Smolić
commit: bd9c5bc58612270e833e05cd34f69f3c41a750b6
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 16 12:13:48 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep 16 12:13:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd9c5bc5

dev-perl/MooseX-Types-DateTimeX: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/MooseX-Types-DateTimeX/Manifest   |  1 -
 .../MooseX-Types-DateTimeX-0.100.0.ebuild  | 39 --
 .../MooseX-Types-DateTimeX-0.100.0-test.patch  | 18 --
 dev-perl/MooseX-Types-DateTimeX/metadata.xml   | 12 ---
 profiles/package.mask  |  1 -
 5 files changed, 71 deletions(-)

diff --git a/dev-perl/MooseX-Types-DateTimeX/Manifest 
b/dev-perl/MooseX-Types-DateTimeX/Manifest
deleted file mode 100644
index 02d6ac9beba..000
--- a/dev-perl/MooseX-Types-DateTimeX/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST MooseX-Types-DateTimeX-0.10.tar.gz 27853 BLAKE2B 
457f7a39d6563349b63d6fb98fb29446c1049ba8829549e90f134e0e666d52fd545c9e0f3a362d8e539cae1fd7d0b0923e61fb3d8ad573156353a1fc957fdfbc
 SHA512 
e13a1396ba92688784ef4b1dbba43748183f7817de74156351f97cb78eb522738d397b41f20071b179fa0a6a6dd1dd56d936d58af78f3bce0dc45a2e73368f01

diff --git 
a/dev-perl/MooseX-Types-DateTimeX/MooseX-Types-DateTimeX-0.100.0.ebuild 
b/dev-perl/MooseX-Types-DateTimeX/MooseX-Types-DateTimeX-0.100.0.ebuild
deleted file mode 100644
index 19c6ec2c021..000
--- a/dev-perl/MooseX-Types-DateTimeX/MooseX-Types-DateTimeX-0.100.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=ECARROLL
-DIST_VERSION=0.10
-inherit perl-module
-
-DESCRIPTION="Extensions to MooseX::Types::DateTime::ButMaintained"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-perl/DateTimeX-Easy-0.85.0
-   >=dev-perl/Moose-0.410.0
-   >=dev-perl/MooseX-Types-0.40.0
-   >=dev-perl/MooseX-Types-DateTime-ButMaintained-0.40.0
-   >=dev-perl/Time-Duration-Parse-0.60.0
-   >=dev-perl/namespace-clean-0.80.0
-"
-DEPEND="${RDEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.420.0
-   test? (
-   >=virtual/perl-Test-Simple-1.1.10
-   >=dev-perl/Test-Exception-0.270.0
-   )
-"
-
-PATCHES=( "${FILESDIR}/${P}-test.patch" )
-
-src_prepare() {
-   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
-   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
-   perl-module_src_prepare
-}

diff --git 
a/dev-perl/MooseX-Types-DateTimeX/files/MooseX-Types-DateTimeX-0.100.0-test.patch
 
b/dev-perl/MooseX-Types-DateTimeX/files/MooseX-Types-DateTimeX-0.100.0-test.patch
deleted file mode 100644
index 2a6b15ee56a..000
--- 
a/dev-perl/MooseX-Types-DateTimeX/files/MooseX-Types-DateTimeX-0.100.0-test.patch
+++ /dev/null
@@ -1,18 +0,0 @@
 a/lib/MooseX/Types/DateTimeX.pm2010-09-21 15:51:35.0 +
-+++ b/lib/MooseX/Types/DateTimeX.pm2013-06-15 22:22:50.682619575 +
-@@ -15,13 +15,13 @@
- 
- use MooseX::Types -declare => [qw( DateTime Duration)];
- 
--subtype DateTime, as MooseX::Types::DateTime::ButMaintained::DateTime;
-+subtype DateTime, as 'MooseX::Types::DateTime::ButMaintained::DateTime';
- coerce( DateTime,
- @{ $MooseX::Types::DateTime::ButMaintained::coercions{DateTime} },
- from Str, via { DateTimeX::Easy->new($_) },
- );
- 
--subtype Duration, as MooseX::Types::DateTime::ButMaintained::Duration;
-+subtype Duration, as 'MooseX::Types::DateTime::ButMaintained::Duration';
- coerce( Duration,
- @{ 
$MooseX::Types::DateTime::ButMaintained::coercions{"DateTime::Duration"} },
- from Str, via { 

diff --git a/dev-perl/MooseX-Types-DateTimeX/metadata.xml 
b/dev-perl/MooseX-Types-DateTimeX/metadata.xml
deleted file mode 100644
index d90f2fc9e14..000
--- a/dev-perl/MooseX-Types-DateTimeX/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-MooseX-Types-DateTimeX
-MooseX::Types::DateTimeX
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 688ab4b7618..0104ffed5ec 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -228,7 +228,6 @@ dev-perl/POE-API-Peek
 # Broken-ish, upstream unmaintained, only one un-used revdep.
 # Removal in 30 days. Bug 623674.
 dev-perl/MooseX-Types-DateTime-ButMaintained
-dev-perl/MooseX-Types-DateTimeX
 
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Perlbal-XS-HTTPHeaders/, profiles/

2021-09-16 Thread Jakov Smolić
commit: 539f7842934f12a5c667f042e426f9fa536f8445
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 16 12:12:34 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep 16 12:12:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=539f7842

dev-perl/Perlbal-XS-HTTPHeaders: Remove last-rited package

Closes: https://bugs.gentoo.org/642466
Closes: https://bugs.gentoo.org/805200
Closes: https://bugs.gentoo.org/728732
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Perlbal-XS-HTTPHeaders/Manifest |  1 -
 .../Perlbal-XS-HTTPHeaders-0.200.0-r1.ebuild | 16 
 dev-perl/Perlbal-XS-HTTPHeaders/metadata.xml | 15 ---
 profiles/package.mask|  5 -
 4 files changed, 37 deletions(-)

diff --git a/dev-perl/Perlbal-XS-HTTPHeaders/Manifest 
b/dev-perl/Perlbal-XS-HTTPHeaders/Manifest
deleted file mode 100644
index 5f4e5fcf33f..000
--- a/dev-perl/Perlbal-XS-HTTPHeaders/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Perlbal-XS-HTTPHeaders-0.20.tar.gz 24735 BLAKE2B 
a105621cf8093cd420f21de1f0283f3ec84a7ae4d10946741ba98e9516c57e01f7e910abebbdd0120a00c0072286c9988c76eaffa3a223d5a85645866e1ce8f7
 SHA512 
dd9719fbc2297946f8718f174801fe07cb169e846f40e4c49cc88e2aa4e072fb427e5a408a3eae386fc0f8fbe19e0848a1d001927e757b7b299254cd0c6be88c

diff --git 
a/dev-perl/Perlbal-XS-HTTPHeaders/Perlbal-XS-HTTPHeaders-0.200.0-r1.ebuild 
b/dev-perl/Perlbal-XS-HTTPHeaders/Perlbal-XS-HTTPHeaders-0.200.0-r1.ebuild
deleted file mode 100644
index e36c58158f9..000
--- a/dev-perl/Perlbal-XS-HTTPHeaders/Perlbal-XS-HTTPHeaders-0.200.0-r1.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DIST_AUTHOR=DORMANDO
-DIST_VERSION=0.20
-inherit perl-module
-
-DESCRIPTION="XS acceleration for Perlbal header processing"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-RDEPEND="dev-perl/Perlbal"
-BDEPEND="${RDEPEND}"

diff --git a/dev-perl/Perlbal-XS-HTTPHeaders/metadata.xml 
b/dev-perl/Perlbal-XS-HTTPHeaders/metadata.xml
deleted file mode 100644
index c501ae0bfcc..000
--- a/dev-perl/Perlbal-XS-HTTPHeaders/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-robb...@gentoo.org
-  
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-Perlbal-XS-HTTPHeaders
-Perlbal::XS::HTTPHeaders
-  
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 573801ec5e4..688ab4b7618 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -230,11 +230,6 @@ dev-perl/POE-API-Peek
 dev-perl/MooseX-Types-DateTime-ButMaintained
 dev-perl/MooseX-Types-DateTimeX
 
-# Andreas K. Hüttel  (2021-08-15)
-# Broken for years, see bug 642466. No reverse dependencies,
-# no easy fix. Removal in 30 days.
-dev-perl/Perlbal-XS-HTTPHeaders
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: sys-fs/ubi_reader/

2021-09-16 Thread Jakov Smolić
commit: 0adf415900ba061a1e102b6d9319d2fa1e734f6f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 16 12:52:34 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep 16 12:54:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0adf4159

sys-fs/ubi_reader: New package (version 0.7.0)

- Collection of Python scripts for extracting data from UBI and UBIFS
  images

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-fs/ubi_reader/Manifest|  1 +
 sys-fs/ubi_reader/metadata.xml| 13 +
 sys-fs/ubi_reader/ubi_reader-0.7.0.ebuild | 20 
 3 files changed, 34 insertions(+)

diff --git a/sys-fs/ubi_reader/Manifest b/sys-fs/ubi_reader/Manifest
new file mode 100644
index 000..3d332378e0e
--- /dev/null
+++ b/sys-fs/ubi_reader/Manifest
@@ -0,0 +1 @@
+DIST ubi_reader-0.7.0.tar.gz 30298 BLAKE2B 
ea9ab8270ed24974a679452840cdb298535e342631fcf3979a0a52c0662bf710729ddc451780227c866bb2a2febffef071a9ddf13a311d2eb766ad0827f548da
 SHA512 
4bf80ab9e0151f3c1ec20965513732846ab32c21d0813c75b4fae8ec2576e224c6406f1c5415fc90bcd4327c7a82bbcc9ab240c9b22b3d0441584208abc89b74

diff --git a/sys-fs/ubi_reader/metadata.xml b/sys-fs/ubi_reader/metadata.xml
new file mode 100644
index 000..8c2cd705bbe
--- /dev/null
+++ b/sys-fs/ubi_reader/metadata.xml
@@ -0,0 +1,13 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+jsmo...@gentoo.org
+Jakov Smolić
+  
+  
+  
+jrspruitt/ubi_reader
+ubi-reader
+  
+

diff --git a/sys-fs/ubi_reader/ubi_reader-0.7.0.ebuild 
b/sys-fs/ubi_reader/ubi_reader-0.7.0.ebuild
new file mode 100644
index 000..d9accb971c8
--- /dev/null
+++ b/sys-fs/ubi_reader/ubi_reader-0.7.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_PN="${PN/_/-}"
+MY_P="${MY_PN}-${PV}"
+DESCRIPTION="Collection of Python scripts for extracting data from UBI and 
UBIFS images"
+HOMEPAGE="https://github.com/jrspruitt/ubi_reader;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/python-lzo[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: profiles/, net-analyzer/netwag/

2021-09-19 Thread Jakov Smolić
commit: 66ff286d097b1d9a7dd74858b24a95f135ec87b0
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 19 06:08:13 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 19 06:08:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66ff286d

net-analyzer/netwag: Remove last-rited package

Signed-off-by: Jakov Smolić  gentoo.org>

 net-analyzer/netwag/Manifest |  2 --
 net-analyzer/netwag/metadata.xml | 11 ---
 net-analyzer/netwag/netwag-5.39.0.ebuild | 55 
 profiles/package.mask|  1 -
 4 files changed, 69 deletions(-)

diff --git a/net-analyzer/netwag/Manifest b/net-analyzer/netwag/Manifest
deleted file mode 100644
index 16155436092..000
--- a/net-analyzer/netwag/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST netwag-5.39.0-doc_html.tgz 46461 BLAKE2B 
13d290f828043018cae6b801eed5853fb6b01b8a5b6a2fac5a132b9fe1475db180e90814c1351a8e248627320305298aba63cfd4414472b752c21529a6dbdec4
 SHA512 
499d201b510c5175b09c7dbcc8b9bec1d9aa2fbf90613a937f88be5835dd67acfe28e78483ce2124c4fa3b43ea8f409ce6115e48f12ae0ffc4ad684354488030
-DIST netwag-5.39.0-src.tgz 164731 BLAKE2B 
861217f023bc35e996f5433657e057ca799859d1453812793941a5dcf1827ddaa827f3ae8b5f2550c85932dea3dbc0cb9b3a6687f6986c6cab09b94fab01813c
 SHA512 
a9f0279d42666eff636bb66258a17a4e10528b7329dfe5e5d8c0ddce15048d847a2a8e892ba82a606b37ceb328b8b31be52d7e8ee7aeb6feb1f3d254aa3a2401

diff --git a/net-analyzer/netwag/metadata.xml b/net-analyzer/netwag/metadata.xml
deleted file mode 100644
index d10fba93c92..000
--- a/net-analyzer/netwag/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   net...@gentoo.org
-   Gentoo network monitoring and analysis project
-   
-   
-   ntwag
-   
-

diff --git a/net-analyzer/netwag/netwag-5.39.0.ebuild 
b/net-analyzer/netwag/netwag-5.39.0.ebuild
deleted file mode 100644
index 1b719f96d99..000
--- a/net-analyzer/netwag/netwag-5.39.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# NOTE: netwib, netwox and netwag go together, bump all or bump none
-
-EAPI=5
-
-DESCRIPTION="Tcl/tk interface to netwox (Toolbox of 222 utilities for testing 
networks)"
-HOMEPAGE="
-   http://ntwag.sourceforge.net/
-   http://www.laurentconstantin.com/en/netw/netwag/
-"
-SRC_URI="mirror://sourceforge/ntwag/${P}-src.tgz
-   doc? ( mirror://sourceforge/ntwag/${P}-doc_html.tgz )"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc x86"
-IUSE="doc"
-
-DEPEND="
-   ~net-analyzer/netwox-${PV}
-   >=dev-lang/tk-8
-   || (
-   x11-terms/xterm
-   kde-apps/konsole
-   x11-terms/gnome-terminal
-   )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${P}-src/src"
-
-src_prepare() {
-   sed -i \
-   -e 's:/man$:/share/man:g' \
-   -e "s:/usr/local:/usr:" \
-   config.dat || die
-}
-
-src_configure() {
-   sh genemake || die "problem creating Makefile"
-}
-
-DOCS=(
-   "${WORKDIR}"/${P}-src/README.TXT
-   "${WORKDIR}"/${P}-src/doc/{changelog.txt,credits.txt}
-   "${WORKDIR}"/${P}-src/doc/{problemreport.txt,problemusage.txt,todo.txt}
-)
-
-src_install() {
-   default
-
-   use doc && dohtml -r "${WORKDIR}"/${P}-doc_html/*
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 733e2a11d09..a8e96ca9614 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -257,7 +257,6 @@ dev-python/pydns
 # bugs open. Removal on 2021-09-19.
 # bug #711088, bug #775944, bug #790680, bug #806953.
 net-analyzer/netwox
-net-analyzer/netwag
 
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the



[gentoo-commits] repo/gentoo:master commit in: dev-python/pydns/, profiles/

2021-09-19 Thread Jakov Smolić
commit: 92c60d48008d01d32eea9a5dea040b6521d1b069
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 19 06:09:49 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 19 06:09:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c60d48

dev-python/pydns: Remove last-rited package

Closes: https://bugs.gentoo.org/809239
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/pydns/Manifest   |  1 -
 dev-python/pydns/metadata.xml   | 18 --
 dev-python/pydns/pydns-3.2.1.ebuild | 32 
 profiles/package.mask   |  8 
 4 files changed, 59 deletions(-)

diff --git a/dev-python/pydns/Manifest b/dev-python/pydns/Manifest
deleted file mode 100644
index d5579e2de97..000
--- a/dev-python/pydns/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST py3dns-3.2.1.tar.gz 30691 BLAKE2B 
336ed91a3bf8b33db258667ac96eba6df361bb2a8f24c433dbc6754ea32a7284ce0463c392c1392538eed9d8bf9ea3f09400bc08f1970a7c96c52bf072606718
 SHA512 
22f16c571f9fad02a70a8e0bbbfd802f4f9af23946edb78e15f69f23e57411369274945a1dea5603acae1fc1eb404e5445207c541afb7864a60b92dc4d5477b3

diff --git a/dev-python/pydns/metadata.xml b/dev-python/pydns/metadata.xml
deleted file mode 100644
index d239c14665c..000
--- a/dev-python/pydns/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   pyt...@gentoo.org
-   Python
-   
-   PyDNS provides a module for performing DNS 
queries from python
-   applications. This was originally based on Guido van Rossum's 
DNS
-   library code, but has drifted further and further away from it 
over
-   time.
-   
-   
-   pydns
-   py3dns
-   pydns
-   
-

diff --git a/dev-python/pydns/pydns-3.2.1.ebuild 
b/dev-python/pydns/pydns-3.2.1.ebuild
deleted file mode 100644
index dfe9713d03b..000
--- a/dev-python/pydns/pydns-3.2.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-MY_P="${PN/py/py3}-${PV}"
-DESCRIPTION="Python DNS (Domain Name System) library"
-HOMEPAGE="https://launchpad.net/py3dns;
-SRC_URI="https://launchpad.net/py3dns/trunk/${PV}/+download/${MY_P}.tar.gz;
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="CNRI"
-SLOT="3"
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc sparc x86"
-IUSE="examples"
-
-# Tests require network access
-RESTRICT="test"
-
-distutils_enable_tests unittest
-
-python_install_all() {
-   if use examples; then
-   docinto examples
-   dodoc -r tests/. tools/.
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-   distutils-r1_python_install_all
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index d50351d0e36..7c49be62c97 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -243,14 +243,6 @@ net-vpn/ipsec-tools
 # Preparing for final 5.0.0 release
 >=app-text/tesseract-5.0.0_beta
 
-# Arthur Zamarin  (2021-08-20)
-# Inactive upstream.
-# Fully superseded by dev-python/dnspython. All reverse dependencies support
-# and recommend usage of dev-python/dnspython.
-# No other distros package it anymore.
-# Removal on 2021-09-19.  Bug #809239.
-dev-python/pydns
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/netwox/, profiles/

2021-09-19 Thread Jakov Smolić
commit: 4a6701de0e356efdee1d5557316f16cd58bead33
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 19 06:08:47 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 19 06:08:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a6701de

net-analyzer/netwox: Remove last-rited package

Closes: https://bugs.gentoo.org/790680
Closes: https://bugs.gentoo.org/711088
Closes: https://bugs.gentoo.org/775944
Closes: https://bugs.gentoo.org/806953
Signed-off-by: Jakov Smolić  gentoo.org>

 net-analyzer/netwox/Manifest |  2 -
 net-analyzer/netwox/metadata.xml | 11 --
 net-analyzer/netwox/netwox-5.39.0.ebuild | 66 
 profiles/package.mask|  7 
 4 files changed, 86 deletions(-)

diff --git a/net-analyzer/netwox/Manifest b/net-analyzer/netwox/Manifest
deleted file mode 100644
index c24f76be1fd..000
--- a/net-analyzer/netwox/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST netwox-5.39.0-doc_html.tgz 146301 BLAKE2B 
5d65cce6dc36f7fb682a7ab3d51b04366a9e43541837a07ff82e7dba29367adad92fcefcd68eb68a7f30c36adbce7765ee0cbd1d77a6a873a53c0b03ee9f0f1c
 SHA512 
1bb6c87f2aeea8b10e9bec0725ed82b21c41290d2f2626024b13525fd92596e7aa9f91788d966a51900c0e1b346ac9fb3344fa5b1450fe9ceb724df4be56
-DIST netwox-5.39.0-src.tgz 771942 BLAKE2B 
f6115e799404f420fdcee4551b78f3aeb5a3db5b5d528425fd4a68f0a5509bcace2f7d66cbbd56ae380d466425791b0a0b74325967dc2248ba25b1b55b70438b
 SHA512 
3781c1c860d1545c269b27a702c59f1cb6b12af2e66fb3cbe776f3e085681a75ed3096d64cfdf92f65eff7213ceaab474b7e15c169c12e2c05220790ce337e37

diff --git a/net-analyzer/netwox/metadata.xml b/net-analyzer/netwox/metadata.xml
deleted file mode 100644
index f7d28fa77de..000
--- a/net-analyzer/netwox/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   net...@gentoo.org
-   Gentoo network monitoring and analysis project
-   
-   
-   ntwox
-   
-

diff --git a/net-analyzer/netwox/netwox-5.39.0.ebuild 
b/net-analyzer/netwox/netwox-5.39.0.ebuild
deleted file mode 100644
index 60405d17bda..000
--- a/net-analyzer/netwox/netwox-5.39.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# NOTE: netwib, netwox and netwag go together, bump all or bump none
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Toolbox of 217 utilities for testing Ethernet/IP networks"
-HOMEPAGE="
-   http://ntwox.sourceforge.net/
-   http://www.laurentconstantin.com/en/netw/netwox/
-"
-SRC_URI="mirror://sourceforge/ntwox/${P}-src.tgz
-   doc? ( mirror://sourceforge/ntwox/${P}-doc_html.tgz )"
-S="${WORKDIR}"/${P}-src/src
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc x86"
-IUSE="doc"
-
-DEPEND="
-   net-libs/libnet:1.1
-   net-libs/libpcap
-   ~net-libs/netwib-${PV}
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-
-   sed -i \
-   -e 's:/man$:/share/man:g' \
-   -e "s:/lib:/$(get_libdir):" \
-   -e "s:/usr/local:/usr:" \
-   -e "s:=ar:=$(tc-getAR):" \
-   -e "s:=ranlib:=$(tc-getRANLIB):" \
-   -e "s:=gcc:=$(tc-getCC):" \
-   -e "s:-O2:${CFLAGS}:" \
-   config.dat || die
-   sed -i \
-   -e "s:-o netwox:& \${LDFLAGS}:g" \
-   -e 's: ; make: ; \\$(MAKE):g' \
-   genemake || die
-}
-
-src_configure() {
-   sh genemake || die
-}
-
-DOCS=(
-   "${WORKDIR}"/${P}-src/README.TXT
-   "${WORKDIR}"/${P}-src/doc/{changelog.txt,credits.txt}
-   
"${WORKDIR}"/${P}-src/doc/{problemreport.txt,problemusageunix.txt,todo.txt}
-)
-
-src_install() {
-   default
-
-   if use doc ; then
-   docinto html
-   dodoc -r "${WORKDIR}"/${P}-doc_html/*
-   fi
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index a8e96ca9614..d50351d0e36 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -251,13 +251,6 @@ net-vpn/ipsec-tools
 # Removal on 2021-09-19.  Bug #809239.
 dev-python/pydns
 
-# Sam James  (2021-08-18)
-# Fails to build with glibc-2.34. End of maintenance
-# upstream was declared in 2007. Several other serious
-# bugs open. Removal on 2021-09-19.
-# bug #711088, bug #775944, bug #790680, bug #806953.
-net-analyzer/netwox
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing



[gentoo-commits] repo/gentoo:master commit in: media-libs/libheif/

2021-09-19 Thread Jakov Smolić
commit: 947ba1da0999c9c613d32c92cbeb59579aa466d6
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 19 08:01:31 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 19 08:02:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=947ba1da

media-libs/libheif: Enable libde265 unconditionally

- Since libheif can't decode HEIF file without it it's not a good idea
  to disable libde265 support, so let's just enable it unconditionally

Closes: https://bugs.gentoo.org/813669
Signed-off-by: Jakov Smolić  gentoo.org>

 .../{libheif-1.12.0.ebuild => libheif-1.12.0-r1.ebuild}|  8 
 media-libs/libheif/libheif-.ebuild | 10 +-
 media-libs/libheif/metadata.xml|  1 -
 3 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/media-libs/libheif/libheif-1.12.0.ebuild 
b/media-libs/libheif/libheif-1.12.0-r1.ebuild
similarity index 90%
rename from media-libs/libheif/libheif-1.12.0.ebuild
rename to media-libs/libheif/libheif-1.12.0-r1.ebuild
index 6dc4980f1f2..f90f0e7b6cc 100644
--- a/media-libs/libheif/libheif-1.12.0.ebuild
+++ b/media-libs/libheif/libheif-1.12.0-r1.ebuild
@@ -18,20 +18,20 @@ HOMEPAGE="https://github.com/strukturag/libheif;
 
 LICENSE="GPL-3"
 SLOT="0/1.12"
-IUSE="+aom gdk-pixbuf go libde265 rav1e test +threads x265"
-REQUIRED_USE="test? ( go libde265 )"
+IUSE="+aom gdk-pixbuf go rav1e test +threads x265"
+REQUIRED_USE="test? ( go )"
 RESTRICT="!test? ( test )"
 
 BDEPEND="test? ( dev-lang/go )"
 DEPEND="
media-libs/dav1d:=[${MULTILIB_USEDEP}]
+   media-libs/libde265:=[${MULTILIB_USEDEP}]
media-libs/libpng:0=[${MULTILIB_USEDEP}]
sys-libs/zlib:=[${MULTILIB_USEDEP}]
virtual/jpeg:0=[${MULTILIB_USEDEP}]
aom? ( >=media-libs/libaom-2.0.0:=[${MULTILIB_USEDEP}] )
gdk-pixbuf? ( x11-libs/gdk-pixbuf[${MULTILIB_USEDEP}] )
go? ( dev-lang/go )
-   libde265? ( media-libs/libde265:=[${MULTILIB_USEDEP}] )
rav1e? ( media-video/rav1e:= )
x265? ( media-libs/x265:=[${MULTILIB_USEDEP}] )"
 RDEPEND="${DEPEND}"
@@ -50,10 +50,10 @@ src_prepare() {
 multilib_src_configure() {
export GO111MODULE=auto
local econf_args=(
+   --enable-libde265
--disable-static
$(multilib_is_native_abi && use go || echo --disable-go)
$(use_enable aom)
-   $(use_enable libde265)
$(use_enable gdk-pixbuf)
$(use_enable rav1e)
$(use_enable threads multithreading)

diff --git a/media-libs/libheif/libheif-.ebuild 
b/media-libs/libheif/libheif-.ebuild
index 05d7c5f68ed..a1837ad0964 100644
--- a/media-libs/libheif/libheif-.ebuild
+++ b/media-libs/libheif/libheif-.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/strukturag/libheif/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
 fi
 
 DESCRIPTION="ISO/IEC 23008-12:2017 HEIF file format decoder and encoder"
@@ -18,20 +18,20 @@ HOMEPAGE="https://github.com/strukturag/libheif;
 
 LICENSE="GPL-3"
 SLOT="0/1.12"
-IUSE="+aom gdk-pixbuf go libde265 rav1e test +threads x265"
-REQUIRED_USE="test? ( go libde265 )"
+IUSE="+aom gdk-pixbuf go rav1e test +threads x265"
+REQUIRED_USE="test? ( go )"
 RESTRICT="!test? ( test )"
 
 BDEPEND="test? ( dev-lang/go )"
 DEPEND="
media-libs/dav1d:=[${MULTILIB_USEDEP}]
+   media-libs/libde265:=[${MULTILIB_USEDEP}]
media-libs/libpng:0=[${MULTILIB_USEDEP}]
sys-libs/zlib:=[${MULTILIB_USEDEP}]
virtual/jpeg:0=[${MULTILIB_USEDEP}]
aom? ( >=media-libs/libaom-2.0.0:=[${MULTILIB_USEDEP}] )
gdk-pixbuf? ( x11-libs/gdk-pixbuf[${MULTILIB_USEDEP}] )
go? ( dev-lang/go )
-   libde265? ( media-libs/libde265:=[${MULTILIB_USEDEP}] )
rav1e? ( media-video/rav1e:= )
x265? ( media-libs/x265:=[${MULTILIB_USEDEP}] )"
 RDEPEND="${DEPEND}"
@@ -50,10 +50,10 @@ src_prepare() {
 multilib_src_configure() {
export GO111MODULE=auto
local econf_args=(
+   --enable-libde265
--disable-static
$(multilib_is_native_abi && use go || echo --disable-go)
$(use_enable aom)
-   $(use_enable libde265)
$(use_enable gdk-pixbuf)
$(use_enable rav1e)
$(use_enable threads multithreading)

diff --git a/media-libs/libheif/metadata.xml b/media-libs/libheif/metadata.xml
index c8f0f34e809..2d2f28772dd 100644
--- a/media-lib

[gentoo-commits] repo/gentoo:master commit in: dev-python/aesara/

2021-09-19 Thread Jakov Smolić
commit: 452d5c6d5e8dda9471a0d51f00fecc2e6c20af0f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep 19 18:02:00 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Sun Sep 19 18:03:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=452d5c6d

dev-python/aesara: Remanifest

Closes: https://bugs.gentoo.org/813891
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/aesara/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/aesara/Manifest b/dev-python/aesara/Manifest
index 475bea254eb..222f2b542e6 100644
--- a/dev-python/aesara/Manifest
+++ b/dev-python/aesara/Manifest
@@ -1,3 +1,3 @@
 DIST aesara-rel-2.1.3.tar.gz 8170822 BLAKE2B 
dbbc4a453c5d7f9cd4ab2c925dd9293e835db23100686a8d7ab2c47182b1bc05f883eeb60d6f47f8f34e4187f3ac07b632cde43fe82a99e2145a2f699a2b3582
 SHA512 
52d1724eb7b3c9bae4bdbf1735db9ef96cdfa94f3e2281b255201d0baba260fe31f78c00719a53ce3c59ea9c66ff218d8acd7bc012b386942f29806c07ffc466
 DIST aesara-rel-2.2.1.tar.gz 8166022 BLAKE2B 
af3c17029dacb3d365bf49eb01d4d03b5a4f770f66d3e5eba2c4576ef156056bc1aca3571442c1cb7352c358978b47faa7af70ca0da2a2168d8c9bfd47b17138
 SHA512 
f7bab8ca80e8d13ef7698c1efa56ff37c561786330bf756c7a00c54ae1f131810d68bfd6e328b0705d45788759bd984d42306d2c545d2de6b9a3592b5c021ad8
-DIST aesara-rel-2.2.2.tar.gz 8174667 BLAKE2B 
e0b22e7e38dbff1089b0db77ee55fbc8f1847da576a54b1f59a34c22d9bb777f108b8d06d3e4cddeb826f4bee566d32f6b4ec013f96ee61ecce6924188aa1dc7
 SHA512 
1f2eff0c959605a09521d15010058851e8dc340ca84d760baf6166508e37cc7734e8737ca199618f4e9bd33bd04c053add0a790917f4c125052631f693383945
+DIST aesara-rel-2.2.2.tar.gz 8174668 BLAKE2B 
c95347e8b74f6600c3570177f86b7ebd7511899ed0ceb24a2d79a03a44ee498a8062b92fb79867f59b609f66315704ee92e28e12a5ab600d54d0d35ef799b66b
 SHA512 
d5f62e42c36100b2fd25eba492590eb306b1394aa01bf2e90d43e84ac67701e5b756be6bc08d0e6b82fb1f37689dbbba1d7ef67c852a700a634d742056bb



[gentoo-commits] repo/gentoo:master commit in: dev-util/bpftool/

2021-09-19 Thread Jakov Smolić
commit: e388679ed34a7d763520b3628be39ea22be112d3
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Sep 20 05:15:01 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Mon Sep 20 05:15:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e388679e

dev-util/bpftool: Remove old 5.14.1

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-util/bpftool/Manifest  |   1 -
 dev-util/bpftool/bpftool-5.14.1.ebuild | 117 -
 2 files changed, 118 deletions(-)

diff --git a/dev-util/bpftool/Manifest b/dev-util/bpftool/Manifest
index 2f2681339e5..6f8e745483f 100644
--- a/dev-util/bpftool/Manifest
+++ b/dev-util/bpftool/Manifest
@@ -1,3 +1,2 @@
 DIST linux-5.14.tar.xz 120669872 BLAKE2B 
0047f5aaa3940dff97f4055ef544faafbbb5282128e6afe21d2f47d8dc8c395806a17016febfa050117d16f59e74b882cb8b9c5011d68f119c230d0a4d120524
 SHA512 
8e4f3ec3d36f774280f75dc7b004a43e09417af58f12e9c9f8348976659d4cfda7ad905f306f43fed66a27922e5c45db22e46bbfa7a0b9f365012380de3b6f64
-DIST patch-5.14.1.xz 4708 BLAKE2B 
334d56ba26abc0d29432c27a31fefff332d9b134899b6f0d5fdeadaf68c3bf95eaeba37a9500eb3c245ae2eea70786c55056586ce747277e9f2be16697ceab73
 SHA512 
409108139ba2842d100d69e47d88eee87bea58c210a84e242c82aae48fe4bc57ccd0a507c4a0ecb791d0a2962f46cda3ba900f728a9b6856e986bff018a2d19c
 DIST patch-5.14.2.xz 8376 BLAKE2B 
0fd1b718801661f5fe70866b0301bdcdaa4c2c0ca75aefcc20d4edb7439326cbc2aa1a0f78dd105bc7939f52107aca032f0e6e43d39c077e4f784220d0a8f752
 SHA512 
b8f181cf5d19e5206e4e0524a1bef5639346b71d002523bfd65e3a2fc2b914fa979c381c8a613c062503160510f31c003f712773cb6945497aa3eba71595c697

diff --git a/dev-util/bpftool/bpftool-5.14.1.ebuild 
b/dev-util/bpftool/bpftool-5.14.1.ebuild
deleted file mode 100644
index e3fa3487cfe..000
--- a/dev-util/bpftool/bpftool-5.14.1.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit estack linux-info optfeature python-any-r1 toolchain-funcs
-
-MY_PV="${PV/_/-}"
-MY_PV="${MY_PV/-pre/-git}"
-
-DESCRIPTION="Tool for inspection and simple manipulation of eBPF programs and 
maps"
-HOMEPAGE="https://kernel.org/;
-
-LINUX_V="${PV:0:1}.x"
-LINUX_VER=$(ver_cut 1-2)
-LINUX_PATCH=patch-${PV}.xz
-SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH};
-
-LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
-SRC_URI+=" 
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES};
-
-S_K="${WORKDIR}/linux-${LINUX_VER}"
-S="${S_K}/tools/bpf/bpftool"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="caps"
-
-RDEPEND="
-   sys-libs/binutils-libs:=
-   sys-libs/zlib:=
-   virtual/libelf:=
-   caps? ( sys-libs/libcap:= )
-"
-DEPEND="
-   ${RDEPEND}
-   >=sys-kernel/linux-headers-5.8
-"
-BDEPEND="
-   ${LINUX_PATCH+dev-util/patchutils}
-   ${PYTHON_DEPS}
-   dev-python/docutils
-"
-
-CONFIG_CHECK="~DEBUG_INFO_BTF"
-
-# src_unpack and src_prepare are copied from dev-util/perf since
-# it's building from the same tarball, please keep it in sync with perf
-src_unpack() {
-   local paths=(
-   tools/bpf kernel/bpf
-   tools/{arch,build,include,lib,perf,scripts} 
{scripts,include,lib} "arch/*/lib"
-   )
-
-   # We expect the tar implementation to support the -j option (both
-   # GNU tar and libarchive's tar support that).
-   echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}"
-   tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \
-   "${paths[@]/#/linux-${LINUX_VER}/}" || die
-
-   if [[ -n ${LINUX_PATCH} ]] ; then
-   eshopts_push -o noglob
-   ebegin "Filtering partial source patch"
-   filterdiff -p1 ${paths[@]/#/-i } -z "${DISTDIR}"/${LINUX_PATCH} 
\
-   > ${P}.patch
-   eend $? || die "filterdiff failed"
-   eshopts_pop
-   fi
-
-   local a
-   for a in ${A}; do
-   [[ ${a} == ${LINUX_SOURCES} ]] && continue
-   [[ ${a} == ${LINUX_PATCH} ]] && continue
-   unpack ${a}
-   done
-}
-
-src_prepare() {
-   default
-
-   if [[ -n ${LINUX_PATCH} ]] ; then
-   pushd "${S_K}" >/dev/null || die
-   eapply "${WORKDIR}"/${P}.patch
-   popd || die
-   fi
-
-   # dev-python/docutils installs rst2man.py, not rst2man
-   sed -i -e 's/rst2man/rst2man.py/g' Documentation/Makefile || die
-}
-
-bpftool_make() {
-   local arch=$(tc-arch-kernel)
-   tc-export AR CC LD
-
-   emake V=1 VF=1 \
-   H

[gentoo-commits] repo/gentoo:master commit in: dev-util/bpftool/

2021-09-19 Thread Jakov Smolić
commit: 52188e6b0079b400bfa3708f18c3c4d7bdc40a5b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Sep 20 05:06:56 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Mon Sep 20 05:06:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52188e6b

dev-util/bpftool: Version bump to 5.14.2

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-util/bpftool/Manifest  |   1 +
 dev-util/bpftool/bpftool-5.14.2.ebuild | 117 +
 2 files changed, 118 insertions(+)

diff --git a/dev-util/bpftool/Manifest b/dev-util/bpftool/Manifest
index 80bec3892c0..2f2681339e5 100644
--- a/dev-util/bpftool/Manifest
+++ b/dev-util/bpftool/Manifest
@@ -1,2 +1,3 @@
 DIST linux-5.14.tar.xz 120669872 BLAKE2B 
0047f5aaa3940dff97f4055ef544faafbbb5282128e6afe21d2f47d8dc8c395806a17016febfa050117d16f59e74b882cb8b9c5011d68f119c230d0a4d120524
 SHA512 
8e4f3ec3d36f774280f75dc7b004a43e09417af58f12e9c9f8348976659d4cfda7ad905f306f43fed66a27922e5c45db22e46bbfa7a0b9f365012380de3b6f64
 DIST patch-5.14.1.xz 4708 BLAKE2B 
334d56ba26abc0d29432c27a31fefff332d9b134899b6f0d5fdeadaf68c3bf95eaeba37a9500eb3c245ae2eea70786c55056586ce747277e9f2be16697ceab73
 SHA512 
409108139ba2842d100d69e47d88eee87bea58c210a84e242c82aae48fe4bc57ccd0a507c4a0ecb791d0a2962f46cda3ba900f728a9b6856e986bff018a2d19c
+DIST patch-5.14.2.xz 8376 BLAKE2B 
0fd1b718801661f5fe70866b0301bdcdaa4c2c0ca75aefcc20d4edb7439326cbc2aa1a0f78dd105bc7939f52107aca032f0e6e43d39c077e4f784220d0a8f752
 SHA512 
b8f181cf5d19e5206e4e0524a1bef5639346b71d002523bfd65e3a2fc2b914fa979c381c8a613c062503160510f31c003f712773cb6945497aa3eba71595c697

diff --git a/dev-util/bpftool/bpftool-5.14.2.ebuild 
b/dev-util/bpftool/bpftool-5.14.2.ebuild
new file mode 100644
index 000..e3fa3487cfe
--- /dev/null
+++ b/dev-util/bpftool/bpftool-5.14.2.ebuild
@@ -0,0 +1,117 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit estack linux-info optfeature python-any-r1 toolchain-funcs
+
+MY_PV="${PV/_/-}"
+MY_PV="${MY_PV/-pre/-git}"
+
+DESCRIPTION="Tool for inspection and simple manipulation of eBPF programs and 
maps"
+HOMEPAGE="https://kernel.org/;
+
+LINUX_V="${PV:0:1}.x"
+LINUX_VER=$(ver_cut 1-2)
+LINUX_PATCH=patch-${PV}.xz
+SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH};
+
+LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
+SRC_URI+=" 
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES};
+
+S_K="${WORKDIR}/linux-${LINUX_VER}"
+S="${S_K}/tools/bpf/bpftool"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="caps"
+
+RDEPEND="
+   sys-libs/binutils-libs:=
+   sys-libs/zlib:=
+   virtual/libelf:=
+   caps? ( sys-libs/libcap:= )
+"
+DEPEND="
+   ${RDEPEND}
+   >=sys-kernel/linux-headers-5.8
+"
+BDEPEND="
+   ${LINUX_PATCH+dev-util/patchutils}
+   ${PYTHON_DEPS}
+   dev-python/docutils
+"
+
+CONFIG_CHECK="~DEBUG_INFO_BTF"
+
+# src_unpack and src_prepare are copied from dev-util/perf since
+# it's building from the same tarball, please keep it in sync with perf
+src_unpack() {
+   local paths=(
+   tools/bpf kernel/bpf
+   tools/{arch,build,include,lib,perf,scripts} 
{scripts,include,lib} "arch/*/lib"
+   )
+
+   # We expect the tar implementation to support the -j option (both
+   # GNU tar and libarchive's tar support that).
+   echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}"
+   tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \
+   "${paths[@]/#/linux-${LINUX_VER}/}" || die
+
+   if [[ -n ${LINUX_PATCH} ]] ; then
+   eshopts_push -o noglob
+   ebegin "Filtering partial source patch"
+   filterdiff -p1 ${paths[@]/#/-i } -z "${DISTDIR}"/${LINUX_PATCH} 
\
+   > ${P}.patch
+   eend $? || die "filterdiff failed"
+   eshopts_pop
+   fi
+
+   local a
+   for a in ${A}; do
+   [[ ${a} == ${LINUX_SOURCES} ]] && continue
+   [[ ${a} == ${LINUX_PATCH} ]] && continue
+   unpack ${a}
+   done
+}
+
+src_prepare() {
+   default
+
+   if [[ -n ${LINUX_PATCH} ]] ; then
+   pushd "${S_K}" >/dev/null || die
+   eapply "${WORKDIR}"/${P}.patch
+   popd || die
+   fi
+
+   # dev-python/docutils installs rst2man.py, not rst2man
+   sed -i -e 's/rst2man/rst2man.py/g' Documentation/Makefile || die
+}
+
+bpftool_make() {
+   local arch=$(tc-arch-kernel)
+   tc-export AR CC LD
+
+   emake V=1 VF=1 \
+   H

[gentoo-commits] repo/gentoo:master commit in: net-libs/mbedtls/

2021-09-20 Thread Jakov Smolić
commit: 1556859d9360eb5b0d1d12a57c7ccdb4c7baaa05
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Sep 20 09:45:12 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Mon Sep 20 10:27:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1556859d

net-libs/mbedtls: Revert "Remove old"

- 2.16 branch is LTS so let's keep it in the tree, and 2.16.{10, 11}
  already contain backported patches for gcc-11, and 2.16.10 has a
  pending CVE bug open and will be removed from the tree either way

This reverts commit 93f6e77da684f70ea10256e40f88cab0d45573d9.

Acked-by: Andreas K. Hüttel  gentoo.org>
Signed-off-by: Jakov Smolić  gentoo.org>

 net-libs/mbedtls/Manifest   |  2 +
 net-libs/mbedtls/mbedtls-2.16.10.ebuild | 93 +
 net-libs/mbedtls/mbedtls-2.16.11.ebuild | 93 +
 3 files changed, 188 insertions(+)

diff --git a/net-libs/mbedtls/Manifest b/net-libs/mbedtls/Manifest
index fe9a5c4b33f..c5c8cc5ec71 100644
--- a/net-libs/mbedtls/Manifest
+++ b/net-libs/mbedtls/Manifest
@@ -1,3 +1,5 @@
+DIST mbedtls-2.16.10.tar.gz 2677333 BLAKE2B 
5f94003547d5c4ba8daec8270b6e91fea1bbcc94aa7a7417018ec57b8807fbdbd057640fda24cf65171bf7dd872eb091d21e7508df28b57ddfc512736f9c6482
 SHA512 
13837316b04fab6bebacdd283f437b5f246df0785c866cf3d94019d040ab0edf417e0b409653f5abf98a4944345eb088010658c9de10f9e96a5624d33741898a
+DIST mbedtls-2.16.11.tar.gz 2692209 BLAKE2B 
9d7bccfc0d1bc5a038b6dcb866722a27362c229a5f1b515396aabbb53e77cfe36525446fb2557c817772810f24335a51c9a5c45bcfa866d8a07ff4e96498dbde
 SHA512 
b35de49ce596b549b5e85b6affdf2cf1360fb8b0d4e551636a91a4923b1cb212dce7880d575d40c73d5682afe8bb893312d803798ce8f807842a2aab8e2ba2ee
 DIST mbedtls-2.26.0.tar.gz 4080986 BLAKE2B 
549f00db4bfbba4a88de0ff76f32140d7421ad3ab58e3cdf08ec40e0a3da5dcc7a1bcb6eb1ce491ebb544dcd15eb6bc634f04e6ab0f773dc89fa44b6843542ad
 SHA512 
959f6dd0759bfd8dcc497a0527b8b9e9975adb9fee01461e6bcc37475cf9e4eae597687e05e077dfe51d0542c81bc3b90e6d9a692353dca331e020e02d642196
 DIST mbedtls-2.27.0.tar.gz 4212185 BLAKE2B 
31840e5a518643495f319cac8e0c876bdca5dbdee6524d30cace3538d5fb5ba7847dd653f61f775f5c3c384ac0533afdbf6172b3e523db515eceecc29fadd2da
 SHA512 
9503ef75f08d2574e0800b2e3b6f030461cbd97c74863a20e5688ced7558b0b6f87cbe33cbd003e69c825d0321393fe9b00b0be190ab408138414b99d5102994
 DIST mbedtls-3.0.0.tar.gz 4163127 BLAKE2B 
5d94124a251dbcc38de614319f93c6f0346de516fd944c765ab3e60d46fba8fbbdba7a6f9e00f5f0550137301b4de98795851df788e367c4fcf03abb981d3c63
 SHA512 
be11878d82fc93d0847718514f4887c68d7b186c54682316c4a01082583a917b81f9760bb708aab72bf37148581a8dbc9f7048faf745cd2e1cd7e5bf8c48abad

diff --git a/net-libs/mbedtls/mbedtls-2.16.10.ebuild 
b/net-libs/mbedtls/mbedtls-2.16.10.ebuild
new file mode 100644
index 000..ce4c7c2ec07
--- /dev/null
+++ b/net-libs/mbedtls/mbedtls-2.16.10.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake multilib-minimal
+
+DESCRIPTION="Cryptographic library for embedded systems"
+HOMEPAGE="https://tls.mbed.org/;
+SRC_URI="https://github.com/ARMmbed/mbedtls/archive/${P}.tar.gz;
+S=${WORKDIR}/${PN}-${P}
+
+LICENSE="Apache-2.0"
+SLOT="0/3.12.0" # ffmpeg subslot naming: SONAME tuple of 
{libmbedcrypto.so,libmbedtls.so,libmbedx509.so}
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc x86"
+IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   programs? (
+   dev-libs/openssl:0=
+   )
+   zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen media-gfx/graphviz )
+   test? ( dev-lang/perl )"
+
+enable_mbedtls_option() {
+   local myopt="$@"
+   # check that config.h syntax is the same at version bump
+   sed -i \
+   -e "s://#define ${myopt}:#define ${myopt}:" \
+   include/mbedtls/config.h || die
+}
+
+src_prepare() {
+   use cpu_flags_x86_sse2 && enable_mbedtls_option MBEDTLS_HAVE_SSE2
+   use zlib && enable_mbedtls_option MBEDTLS_ZLIB_SUPPORT
+   use havege && enable_mbedtls_option MBEDTLS_HAVEGE_C
+   use threads && enable_mbedtls_option MBEDTLS_THREADING_C
+   use threads && enable_mbedtls_option MBEDTLS_THREADING_PTHREAD
+
+   cmake_src_prepare
+}
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DENABLE_PROGRAMS=$(multilib_native_usex programs)
+   -DENABLE_ZLIB_SUPPORT=$(usex zlib)
+   -DUSE_STATIC_MBEDTLS_LIBRARY=$(usex static-libs)
+   -DENABLE_TESTING=$(usex test)
+   -DUSE_SHARED_MBEDTLS_LIBRARY=ON
+   -DINSTALL_MBEDTLS_HEADERS=ON
+ 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/e4rat/, sys-fs/e4rat/files/, profiles/

2021-09-17 Thread Jakov Smolić
commit: 8095b415ffb83d2795a96c2e7ab03527a505736f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 16 12:15:50 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Sep 17 13:40:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8095b415

sys-fs/e4rat: Remove last-rited package

Closes: https://bugs.gentoo.org/722882
Closes: https://bugs.gentoo.org/808673
Closes: https://bugs.gentoo.org/742290
Signed-off-by: Jakov Smolić  gentoo.org>

 profiles/package.mask |  6 --
 sys-fs/e4rat/Manifest |  1 -
 sys-fs/e4rat/e4rat-0.2.4_pre20141201-r1.ebuild| 63 ---
 sys-fs/e4rat/files/e4rat-0.2.2-libdir.patch   | 14 -
 sys-fs/e4rat/files/e4rat-0.2.2-shared-build.patch | 74 ---
 sys-fs/e4rat/files/e4rat-0.2.4-gcc6.patch | 11 
 sys-fs/e4rat/files/e4rat-0.2.4-strdup.patch   | 41 -
 sys-fs/e4rat/files/e4rat-0.2.4-sysmacros.patch| 13 
 sys-fs/e4rat/metadata.xml | 11 
 9 files changed, 234 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 0c1dc5e8fa4..0ea4be18aef 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -246,12 +246,6 @@ dev-python/pydns
 net-analyzer/netwox
 net-analyzer/netwag
 
-# Sam James  (2021-08-17)
-# Fails to build with >= Boost 1.73, so broken for well over a year.
-# Several open bugs: bug #722882, bug #742290, bug #808673.
-# Removal on 2021-09-17.
-sys-fs/e4rat
-
 # David Seifert  (2021-08-04)
 # Last release over 4 years ago, upstream pretty much dead, the
 # ecosystem has switched to dev-util/pkgconf, which is alive. Testing

diff --git a/sys-fs/e4rat/Manifest b/sys-fs/e4rat/Manifest
deleted file mode 100644
index 5f73fa80519..000
--- a/sys-fs/e4rat/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST e4rat-0.2.4_pre20141201.tar.xz 60408 BLAKE2B 
4ebedfcca7f21bb1f3be59dac64694e0f69ecb5ebdc1637210c68097178e2ae38959581a51fc55b8773d63ce629aaf69765bb755d45467bf5e4f4e741b715101
 SHA512 
61a53f6ac420392df5894d3f76de28c5d2e33fd3a6548cf8c9de52818bf937ba8bf8629db1b89103faa73b660548d7e467e17d7f2794a4100ca07971ded0cfb9

diff --git a/sys-fs/e4rat/e4rat-0.2.4_pre20141201-r1.ebuild 
b/sys-fs/e4rat/e4rat-0.2.4_pre20141201-r1.ebuild
deleted file mode 100644
index 1894e09017d..000
--- a/sys-fs/e4rat/e4rat-0.2.4_pre20141201-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils linux-info readme.gentoo-r1
-
-DESCRIPTION="Toolset to accelerate the boot process and application startup"
-HOMEPAGE="http://e4rat.sourceforge.net/;
-#SRC_URI="mirror://sourceforge/${PN}/${P/-/_}_src.tar.gz"
-SRC_URI="https://dev.gentoo.org/~pacho/${PN}/${PN}-0.2.4_pre20141201.tar.xz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   dev-lang/perl:=
-   >=dev-libs/boost-1.42:=
-   sys-fs/e2fsprogs
-   sys-process/audit[static-libs(+)]
-   sys-process/lsof
-"
-DEPEND="${RDEPEND}"
-
-CONFIG_CHECK="~AUDITSYSCALL"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-0.2.2-shared-build.patch
-   "${FILESDIR}"/${PN}-0.2.2-libdir.patch
-   "${FILESDIR}"/${PN}-0.2.4-sysmacros.patch #580534
-   "${FILESDIR}"/${PN}-0.2.4-gcc6.patch #594046
-   "${FILESDIR}"/${PN}-0.2.4-strdup.patch
-)
-
-pkg_setup() {
-   check_extra_config
-   DOC_CONTENTS="
-   To launch systemd from e4rat you simply need to edit 
/etc/e4rat.conf
-   and set:\n
-   ; path to init process binary (DEFAULT: /sbin/init)\n
-   init /usr/lib/systemd/systemd"
-}
-
-src_install() {
-   cmake-utils_src_install
-   # relocate binaries to /sbin. If someone knows of a better way to do it
-   # please do tell me
-   dodir sbin
-   find "${D}"/usr/sbin -type f -exec mv {} "${D}"/sbin/. \; \
-   || die
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   readme.gentoo_print_elog
-   if has_version sys-apps/preload; then
-   elog "It appears you have sys-apps/preload installed. This may"
-   elog "has negative effects on ${PN}. You may want to disable 
preload"
-   elog "when using ${PN}."
-   fi
-}

diff --git a/sys-fs/e4rat/files/e4rat-0.2.2-libdir.patch 
b/sys-fs/e4rat/files/e4rat-0.2.2-libdir.patch
deleted file mode 100644
index eaa2695d787..000
--- a/sys-fs/e4rat/files/e4rat-0.2.2-libdir.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Index: e4rat-0.2.2/src/CMakeLists.txt
-===
 e4rat-0.2.2.orig/src/CMakeLists.txt
-+++ e4rat-0.2.2/src/CMakeLists.tx

[gentoo-commits] repo/gentoo:master commit in: sys-fs/ubi_reader/

2021-09-17 Thread Jakov Smolić
commit: ce4328e7543f39e3b3d2cc5c557a85e467dd5243
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 16 13:02:27 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Fri Sep 17 13:35:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce4328e7

sys-fs/ubi_reader: Drop unused MY_P variable

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-fs/ubi_reader/ubi_reader-0.7.0.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-fs/ubi_reader/ubi_reader-0.7.0.ebuild 
b/sys-fs/ubi_reader/ubi_reader-0.7.0.ebuild
index d9accb971c8..458bf4321ed 100644
--- a/sys-fs/ubi_reader/ubi_reader-0.7.0.ebuild
+++ b/sys-fs/ubi_reader/ubi_reader-0.7.0.ebuild
@@ -8,7 +8,6 @@ PYTHON_COMPAT=( python3_{8..10} )
 inherit distutils-r1
 
 MY_PN="${PN/_/-}"
-MY_P="${MY_PN}-${PV}"
 DESCRIPTION="Collection of Python scripts for extracting data from UBI and 
UBIFS images"
 HOMEPAGE="https://github.com/jrspruitt/ubi_reader;
 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${P}.tar.gz"



[gentoo-commits] repo/gentoo:master commit in: app-admin/gixy/

2021-09-16 Thread Jakov Smolić
commit: 5a5ce51e1bcdda7700f4946b1fbde3e651269ebc
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 16 09:33:50 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep 16 09:33:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a5ce51e

app-admin/gixy: Fix DISTUTILS_USE_SETUPTOOLS

Closes: https://bugs.gentoo.org/813288
Signed-off-by: Jakov Smolić  gentoo.org>

 app-admin/gixy/gixy-0.1.20.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-admin/gixy/gixy-0.1.20.ebuild 
b/app-admin/gixy/gixy-0.1.20.ebuild
index 6f531a1ac95..a8d8b10d8ad 100644
--- a/app-admin/gixy/gixy-0.1.20.ebuild
+++ b/app-admin/gixy/gixy-0.1.20.ebuild
@@ -3,7 +3,6 @@
 
 EAPI=7
 
-DISTUTILS_USE_SETUPTOOLS=rdepend
 PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: app-arch/bloscpack/

2021-09-16 Thread Jakov Smolić
commit: 8612af12f43f0b24a7f25af02aa453fbb038
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Sep 16 09:35:01 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Thu Sep 16 09:35:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8612af12

app-arch/bloscpack: Fix DISTUTILS_USE_SETUPTOOLS

Closes: https://bugs.gentoo.org/813306
Signed-off-by: Jakov Smolić  gentoo.org>

 app-arch/bloscpack/bloscpack-0.16.0.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-arch/bloscpack/bloscpack-0.16.0.ebuild 
b/app-arch/bloscpack/bloscpack-0.16.0.ebuild
index d6ea0f5d51e..eb9555caa3d 100644
--- a/app-arch/bloscpack/bloscpack-0.16.0.ebuild
+++ b/app-arch/bloscpack/bloscpack-0.16.0.ebuild
@@ -4,7 +4,6 @@
 EAPI=7
 
 PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
 inherit distutils-r1
 
 DESCRIPTION="Command line interface for Blosc compression"



[gentoo-commits] repo/gentoo:master commit in: dev-util/bpftool/

2021-09-14 Thread Jakov Smolić
commit: b06eea3459f05b2a2bcea6f8788871faeaeb5f9a
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Sep 14 18:18:28 2021 +
Commit:     Jakov Smolić  gentoo  org>
CommitDate: Tue Sep 14 18:33:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b06eea34

dev-util/bpftool: Remove old 5.12

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-util/bpftool/Manifest|   2 -
 dev-util/bpftool/bpftool-5.12.ebuild | 121 ---
 2 files changed, 123 deletions(-)

diff --git a/dev-util/bpftool/Manifest b/dev-util/bpftool/Manifest
index 03ae2987776..80bec3892c0 100644
--- a/dev-util/bpftool/Manifest
+++ b/dev-util/bpftool/Manifest
@@ -1,4 +1,2 @@
-DIST linux-5.12.tar.xz 118112412 BLAKE2B 
842d921b9a73d2aaade763dbd2ec67bdfe0275baa6d628b775f5c87574ad7dc86f0419afcd48c10c1235f4bffa16084243f2cf4556e6afcd391e975fe8ba530b
 SHA512 
be03b6fee1d1ea8087b09874d27c0a602c0b04fd90ad38b975bd2c8455a07e83c29b56814aaf1389e82305fae0e4c2d1701075a7f0a7295dd28149f967ec5b3d
 DIST linux-5.14.tar.xz 120669872 BLAKE2B 
0047f5aaa3940dff97f4055ef544faafbbb5282128e6afe21d2f47d8dc8c395806a17016febfa050117d16f59e74b882cb8b9c5011d68f119c230d0a4d120524
 SHA512 
8e4f3ec3d36f774280f75dc7b004a43e09417af58f12e9c9f8348976659d4cfda7ad905f306f43fed66a27922e5c45db22e46bbfa7a0b9f365012380de3b6f64
-DIST patch-5.12.xz 6263608 BLAKE2B 
cc46642f352e579b073695e8ca23ede26ec84c7f8f79b969aa334a49879d2d5838bb1e3411dae7c1c0584193a4b08aed031eda33b6f38fea4c9b36ed236045d5
 SHA512 
68f4832e07c152e2df097097720c6adb9103b6a56f5056af67ffa9afbca66ab7c1a94968f638de14d4cd93a077c820f58ffc32952a87721004714339b9d18487
 DIST patch-5.14.1.xz 4708 BLAKE2B 
334d56ba26abc0d29432c27a31fefff332d9b134899b6f0d5fdeadaf68c3bf95eaeba37a9500eb3c245ae2eea70786c55056586ce747277e9f2be16697ceab73
 SHA512 
409108139ba2842d100d69e47d88eee87bea58c210a84e242c82aae48fe4bc57ccd0a507c4a0ecb791d0a2962f46cda3ba900f728a9b6856e986bff018a2d19c

diff --git a/dev-util/bpftool/bpftool-5.12.ebuild 
b/dev-util/bpftool/bpftool-5.12.ebuild
deleted file mode 100644
index 2d687e71907..000
--- a/dev-util/bpftool/bpftool-5.12.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit estack linux-info optfeature python-any-r1 toolchain-funcs
-
-MY_PV="${PV/_/-}"
-MY_PV="${MY_PV/-pre/-git}"
-
-DESCRIPTION="Tool for inspection and simple manipulation of eBPF programs and 
maps"
-HOMEPAGE="https://kernel.org/;
-
-LINUX_V="${PV:0:1}.x"
-LINUX_VER=$(ver_cut 1-2)
-LINUX_PATCH=patch-${PV}.xz
-SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH};
-
-LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
-SRC_URI+=" 
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES};
-
-S_K="${WORKDIR}/linux-${LINUX_VER}"
-S="${S_K}/tools/bpf/bpftool"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="caps"
-
-RDEPEND="
-   sys-libs/binutils-libs:=
-   sys-libs/zlib:=
-   virtual/libelf:=
-   caps? ( sys-libs/libcap:= )
-"
-DEPEND="
-   ${RDEPEND}
-   >=sys-kernel/linux-headers-5.8
-"
-BDEPEND="
-   ${LINUX_PATCH+dev-util/patchutils}
-   ${PYTHON_DEPS}
-   dev-python/docutils
-"
-
-CONFIG_CHECK="~DEBUG_INFO_BTF"
-
-# src_unpack and src_prepare are copied from dev-util/perf since
-# it's building from the same tarball, please keep it in sync with perf
-src_unpack() {
-   local paths=(
-   tools/bpf kernel/bpf
-   tools/{arch,build,include,lib,perf,scripts} 
{scripts,include,lib} "arch/*/lib"
-   )
-
-   # We expect the tar implementation to support the -j option (both
-   # GNU tar and libarchive's tar support that).
-   echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}"
-   tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \
-   "${paths[@]/#/linux-${LINUX_VER}/}" || die
-
-   if [[ -n ${LINUX_PATCH} ]] ; then
-   eshopts_push -o noglob
-   ebegin "Filtering partial source patch"
-   filterdiff -p1 ${paths[@]/#/-i } -z "${DISTDIR}"/${LINUX_PATCH} 
\
-   > ${P}.patch
-   eend $? || die "filterdiff failed"
-   eshopts_pop
-   fi
-
-   local a
-   for a in ${A}; do
-   [[ ${a} == ${LINUX_SOURCES} ]] && continue
-   [[ ${a} == ${LINUX_PATCH} ]] && continue
-   unpack ${a}
-   done
-}
-
-src_prepare() {
-   default
-
-   if [[ -n ${LINUX_PATCH} ]] ; then
-   pushd "${S_K}" >/dev/null || die
-   eapply "${WORKDIR}"/${P}.patch
-  

  1   2   3   4   5   6   7   8   9   10   >