[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2024-03-24 Thread Mike Gilbert
commit: f301f158bfbfcaeb2284f58e13fa57bd9818a532
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Mar 24 14:42:20 2024 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Mar 24 14:43:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f301f158

app-portage/eix: pass --with-sh-shebang=/bin/sh to configure

Closes: https://bugs.gentoo.org/927510
Signed-off-by: Mike Gilbert  gentoo.org>

 app-portage/eix/{eix-0.36.7.ebuild => eix-0.36.7-r1.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.7.ebuild 
b/app-portage/eix/eix-0.36.7-r1.ebuild
similarity index 96%
rename from app-portage/eix/eix-0.36.7.ebuild
rename to app-portage/eix/eix-0.36.7-r1.ebuild
index 73e08d6f4083..2ae133e4f41f 100644
--- a/app-portage/eix/eix-0.36.7.ebuild
+++ b/app-portage/eix/eix-0.36.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -62,6 +62,7 @@ src_configure() {
# paths
--with-portage-rootpath="${ROOTPATH}"
--with-eprefix-default="${EPREFIX}"
+   --with-sh-shebang="${EPREFIX}/bin/sh"
 
# build a single executable with symlinks
--disable-separate-binaries



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-08-02 Thread Michał Górny
commit: 33bb794afefb0a48102a2906c4c635c35f5a8f4e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug  3 04:43:54 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug  3 04:43:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33bb794a

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 -
 app-portage/eix/eix-0.36.6.ebuild | 104 --
 2 files changed, 105 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 33ba94718867..36c0e3b0427d 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1 @@
-DIST eix-0.36.6.tar.xz 640216 BLAKE2B 
40f1d247f6a00ecc9e034f272e73346535724e1b0cf304ea990ae849414adb4490d181db1f781bf7825f18c12cee47e03921a3e43054631d2422e0a6c8a915b8
 SHA512 
4dbea2a0ac66b15061b491a8da15337894ef4ae18bfb2e77eaf74c6741a45487ca7378c80620341ccf4b335592c121ab55755f0562425a9dbf9a16a9c4aa3554
 DIST eix-0.36.7.tar.xz 639832 BLAKE2B 
37202ae78378688ede95b410fe2e6325d63a9553dc082e4e09dc5bcd261f4e7bf49f349a92c286743c30a54cdc5bc1733fedebae33c37d601e6f5db1faf499e7
 SHA512 
5f5d059b502633be22c8a18fca410e2319061989bbc65b23592c87a9a109b93e615a5b5a7ca92a500999e3cc791e331b12e32a10700cc104040b1980f7f7a0f9

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
deleted file mode 100644
index 73e08d6f4083..
--- a/app-portage/eix/eix-0.36.6.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools bash-completion-r1 tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
-IUSE="debug doc nls sqlite"
-
-DEPEND="
-   nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${DEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-BDEPEND="
-   app-arch/xz-utils
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dobashcomp bash/eix
-   dotmpfiles tmpfiles.d/eix.conf
-
-   rm -r "${ED}"/usr/bin/eix-functions.sh || die
-}
-
-pkg_postinst() {
-   tmpfiles_process eix.conf
-
-   local obs=${EROOT}/var/cache/eix.previous
-   if [[ -f ${obs} ]]; then
-   ewarn "Found obsolete ${obs}, please remove it"
-   fi
-}
-
-pkg_postrm() {
-   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
-   rm -rf "${EROOT}/var/cache/${PN}" || die
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-08-02 Thread Sam James
commit: 5f79087de7314a81c4c0122cf3ff88846d699201
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug  2 23:01:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug  2 23:01:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f79087d

app-portage/eix: Stabilize 0.36.7 ppc, #911095

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.7.ebuild 
b/app-portage/eix/eix-0.36.7.ebuild
index afefaf46480d..73e08d6f4083 100644
--- a/app-portage/eix/eix-0.36.7.ebuild
+++ b/app-portage/eix/eix-0.36.7.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-08-02 Thread Sam James
commit: a049206f8984ccff1b49fa8a4d093c1f3f6a99e1
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug  2 13:35:02 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug  2 13:35:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a049206f

app-portage/eix: Stabilize 0.36.7 sparc, #911095

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.7.ebuild 
b/app-portage/eix/eix-0.36.7.ebuild
index 42bb3215b227..afefaf46480d 100644
--- a/app-portage/eix/eix-0.36.7.ebuild
+++ b/app-portage/eix/eix-0.36.7.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-08-01 Thread Sam James
commit: 615fac3de4130201ab4b576695e26170621b8941
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug  2 04:26:29 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug  2 04:26:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=615fac3d

app-portage/eix: Stabilize 0.36.7 hppa, #911095

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.7.ebuild 
b/app-portage/eix/eix-0.36.7.ebuild
index da5f4ee4942a..42bb3215b227 100644
--- a/app-portage/eix/eix-0.36.7.ebuild
+++ b/app-portage/eix/eix-0.36.7.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-07-24 Thread Jakov Smolić
commit: 80eb731a3bf69230b109c2e2e4c2f3b91841226d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jul 24 11:03:28 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jul 24 11:03:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80eb731a

app-portage/eix: Stabilize 0.36.7 ppc64, #911095

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

 app-portage/eix/eix-0.36.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.7.ebuild 
b/app-portage/eix/eix-0.36.7.ebuild
index ca848ab15efe..c0b6bb03a75a 100644
--- a/app-portage/eix/eix-0.36.7.ebuild
+++ b/app-portage/eix/eix-0.36.7.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-05-28 Thread Michał Górny
commit: 056f5befd848e58fc505e301cf871c23418dcbca
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 29 04:33:52 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 29 04:33:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=056f5bef

app-portage/eix: Bump to 0.36.7

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.36.7.ebuild | 104 ++
 2 files changed, 105 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 9c62f854bb4b..33ba94718867 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1 +1,2 @@
 DIST eix-0.36.6.tar.xz 640216 BLAKE2B 
40f1d247f6a00ecc9e034f272e73346535724e1b0cf304ea990ae849414adb4490d181db1f781bf7825f18c12cee47e03921a3e43054631d2422e0a6c8a915b8
 SHA512 
4dbea2a0ac66b15061b491a8da15337894ef4ae18bfb2e77eaf74c6741a45487ca7378c80620341ccf4b335592c121ab55755f0562425a9dbf9a16a9c4aa3554
+DIST eix-0.36.7.tar.xz 639832 BLAKE2B 
37202ae78378688ede95b410fe2e6325d63a9553dc082e4e09dc5bcd261f4e7bf49f349a92c286743c30a54cdc5bc1733fedebae33c37d601e6f5db1faf499e7
 SHA512 
5f5d059b502633be22c8a18fca410e2319061989bbc65b23592c87a9a109b93e615a5b5a7ca92a500999e3cc791e331b12e32a10700cc104040b1980f7f7a0f9

diff --git a/app-portage/eix/eix-0.36.7.ebuild 
b/app-portage/eix/eix-0.36.7.ebuild
new file mode 100644
index ..ca848ab15efe
--- /dev/null
+++ b/app-portage/eix/eix-0.36.7.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+   rm -rf "${EROOT}/var/cache/${PN}" || die
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-04-08 Thread Michał Górny
commit: f07102b00b8136d82437aa0fcf7b028db1cf67f3
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr  8 18:43:13 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr  8 18:45:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f07102b0

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 -
 app-portage/eix/eix-0.36.5.ebuild | 104 --
 2 files changed, 105 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 07c5f44bcf8e..9c62f854bb4b 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1 @@
-DIST eix-0.36.5.tar.xz 640132 BLAKE2B 
b997be82e21e3316abc6f06bd120434f2a027d62a3bd97e54e7c6298ee201d9998fb0fda91955f88b1b9bbf15b3c6c0c1d821280508215131cde16d1eef621e7
 SHA512 
fb86367f34ae30dac10f0ba68a649c8e737f0f66fefb2933e100c63c57b778567753759f28a6b4afd0155430b050ff59297821c7b54fa73c6cd65b0231806d89
 DIST eix-0.36.6.tar.xz 640216 BLAKE2B 
40f1d247f6a00ecc9e034f272e73346535724e1b0cf304ea990ae849414adb4490d181db1f781bf7825f18c12cee47e03921a3e43054631d2422e0a6c8a915b8
 SHA512 
4dbea2a0ac66b15061b491a8da15337894ef4ae18bfb2e77eaf74c6741a45487ca7378c80620341ccf4b335592c121ab55755f0562425a9dbf9a16a9c4aa3554

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
deleted file mode 100644
index a62f25bdbeb2..
--- a/app-portage/eix/eix-0.36.5.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools bash-completion-r1 tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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"
-IUSE="debug doc nls sqlite"
-
-DEPEND="
-   nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${DEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-BDEPEND="
-   app-arch/xz-utils
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dobashcomp bash/eix
-   dotmpfiles tmpfiles.d/eix.conf
-
-   rm -r "${ED}"/usr/bin/eix-functions.sh || die
-}
-
-pkg_postinst() {
-   tmpfiles_process eix.conf
-
-   local obs=${EROOT}/var/cache/eix.previous
-   if [[ -f ${obs} ]]; then
-   ewarn "Found obsolete ${obs}, please remove it"
-   fi
-}
-
-pkg_postrm() {
-   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
-   rm -rf "${EROOT}/var/cache/${PN}" || die
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-04-08 Thread Arthur Zamarin
commit: 4333c6917c3f63042af9f0012291b9f6120c8855
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 18:12:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 18:12:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4333c691

app-portage/eix: Stabilize 0.36.6 x86, #904024

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
index d255d9a8f7a0..129b81b9a364 100644
--- a/app-portage/eix/eix-0.36.6.ebuild
+++ b/app-portage/eix/eix-0.36.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-04-08 Thread Arthur Zamarin
commit: f965beaf25a4dc7b47aa79dbce12dac44a191df1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 18:05:27 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 18:05:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f965beaf

app-portage/eix: Stabilize 0.36.6 hppa, #904024

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
index 2980e73edb95..d255d9a8f7a0 100644
--- a/app-portage/eix/eix-0.36.6.ebuild
+++ b/app-portage/eix/eix-0.36.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-04-08 Thread Arthur Zamarin
commit: e0d2d98a542dce72bc9f3d932115da7138258f3a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:43:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:43:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0d2d98a

app-portage/eix: Stabilize 0.36.6 ppc, #904024

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
index 253ca1e3f1a3..2980e73edb95 100644
--- a/app-portage/eix/eix-0.36.6.ebuild
+++ b/app-portage/eix/eix-0.36.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-04-08 Thread Arthur Zamarin
commit: cbef7042a0ae634d2b5e6d1e0c3c3dcd8c797b53
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:42:43 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:42:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbef7042

app-portage/eix: Stabilize 0.36.6 sparc, #904024

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
index 53247dd0bd47..253ca1e3f1a3 100644
--- a/app-portage/eix/eix-0.36.6.ebuild
+++ b/app-portage/eix/eix-0.36.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-04-08 Thread Arthur Zamarin
commit: 61a987c59a235bfa6ad66157d0cb6147f52641c1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:37:28 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:37:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61a987c5

app-portage/eix: Stabilize 0.36.6 arm, #904024

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
index 67e5ceee09a2..53247dd0bd47 100644
--- a/app-portage/eix/eix-0.36.6.ebuild
+++ b/app-portage/eix/eix-0.36.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-04-08 Thread Arthur Zamarin
commit: 92a2c1db8a524aa333620c008ba2639661c4f8d2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:31:56 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:31:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92a2c1db

app-portage/eix: Stabilize 0.36.6 ppc64, #904024

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
index df9c2acdcd1c..67e5ceee09a2 100644
--- a/app-portage/eix/eix-0.36.6.ebuild
+++ b/app-portage/eix/eix-0.36.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-04-08 Thread Arthur Zamarin
commit: a2123a100bd0d694a84a3fd23d83512179fdaa62
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:30:44 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:30:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2123a10

app-portage/eix: Stabilize 0.36.6 amd64, #904024

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
index bc8632fc78ae..df9c2acdcd1c 100644
--- a/app-portage/eix/eix-0.36.6.ebuild
+++ b/app-portage/eix/eix-0.36.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-04-08 Thread Arthur Zamarin
commit: b84f5030663292116a853317810fb7326c9e2abd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 16:59:02 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 16:59:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b84f5030

app-portage/eix: Stabilize 0.36.6 arm64, #904024

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
index 94125b74cd60..bc8632fc78ae 100644
--- a/app-portage/eix/eix-0.36.6.ebuild
+++ b/app-portage/eix/eix-0.36.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2023-01-29 Thread Michał Górny
commit: a04c722d800ccb34f709264a46e371587b514457
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 29 15:44:39 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jan 29 15:47:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a04c722d

app-portage/eix: Bump to 0.36.6

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.36.6.ebuild | 104 ++
 2 files changed, 105 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 1fd366becce1..07c5f44bcf8e 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1 +1,2 @@
 DIST eix-0.36.5.tar.xz 640132 BLAKE2B 
b997be82e21e3316abc6f06bd120434f2a027d62a3bd97e54e7c6298ee201d9998fb0fda91955f88b1b9bbf15b3c6c0c1d821280508215131cde16d1eef621e7
 SHA512 
fb86367f34ae30dac10f0ba68a649c8e737f0f66fefb2933e100c63c57b778567753759f28a6b4afd0155430b050ff59297821c7b54fa73c6cd65b0231806d89
+DIST eix-0.36.6.tar.xz 640216 BLAKE2B 
40f1d247f6a00ecc9e034f272e73346535724e1b0cf304ea990ae849414adb4490d181db1f781bf7825f18c12cee47e03921a3e43054631d2422e0a6c8a915b8
 SHA512 
4dbea2a0ac66b15061b491a8da15337894ef4ae18bfb2e77eaf74c6741a45487ca7378c80620341ccf4b335592c121ab55755f0562425a9dbf9a16a9c4aa3554

diff --git a/app-portage/eix/eix-0.36.6.ebuild 
b/app-portage/eix/eix-0.36.6.ebuild
new file mode 100644
index ..94125b74cd60
--- /dev/null
+++ b/app-portage/eix/eix-0.36.6.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+   rm -rf "${EROOT}/var/cache/${PN}" || die
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-09-16 Thread Michał Górny
commit: d8f7c8efd1af3a3a692bf91b80e8af792539df1d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Sep 16 10:35:17 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Sep 16 12:14:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f7c8ef

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   2 -
 app-portage/eix/eix-0.36.3.ebuild | 104 --
 app-portage/eix/eix-0.36.4.ebuild | 104 --
 3 files changed, 210 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 12df82d22b4f..1fd366becce1 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,3 +1 @@
-DIST eix-0.36.3.tar.xz 639864 BLAKE2B 
f74b7c4087e5145f3a2e6ee8b0034e5104de8ef81ec810f2d9fc75d161181f71396f27dc635466685650182473fdfb542f4cec6509ddee0a3bb0d7d620b7d42d
 SHA512 
9fd7c64df6acf27e9ed07ee77ee7f209fb0fb2db9a3dbbc78c1f5b25e6d4786dffeea64bf8ddee3bfe4fe35445c8173103428e184c966964b2973d5737152679
-DIST eix-0.36.4.tar.xz 640776 BLAKE2B 
32486b6ce5e5d2a32bb6fc8581bbc37da6cef9cac0cecbd3d0cc6db8bf5b6bcb3c0a31e28df462edcf06056d279a88e64b4c526b430ce40a0614c0367710243c
 SHA512 
5b716cbd688bb5d8efadc7d47de9fb3238776ff10b11165abe02623421be82d17f2d51596d3f263219461188aa08974af1b559b4e43c31d9ee0682f21febb049
 DIST eix-0.36.5.tar.xz 640132 BLAKE2B 
b997be82e21e3316abc6f06bd120434f2a027d62a3bd97e54e7c6298ee201d9998fb0fda91955f88b1b9bbf15b3c6c0c1d821280508215131cde16d1eef621e7
 SHA512 
fb86367f34ae30dac10f0ba68a649c8e737f0f66fefb2933e100c63c57b778567753759f28a6b4afd0155430b050ff59297821c7b54fa73c6cd65b0231806d89

diff --git a/app-portage/eix/eix-0.36.3.ebuild 
b/app-portage/eix/eix-0.36.3.ebuild
deleted file mode 100644
index a62f25bdbeb2..
--- a/app-portage/eix/eix-0.36.3.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools bash-completion-r1 tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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"
-IUSE="debug doc nls sqlite"
-
-DEPEND="
-   nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${DEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-BDEPEND="
-   app-arch/xz-utils
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dobashcomp bash/eix
-   dotmpfiles tmpfiles.d/eix.conf
-
-   rm -r "${ED}"/usr/bin/eix-functions.sh || die
-}
-
-pkg_postinst() {
-   tmpfiles_process eix.conf
-
-   local obs=${EROOT}/var/cache/eix.previous
-   if [[ -f ${obs} ]]; then
-   ewarn "Found obsolete ${obs}, please remove it"
-   fi
-}
-

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-09-16 Thread Arthur Zamarin
commit: b1100d14b8dee0f885fc991c56a36f6ee37f34cf
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Sep 16 08:40:04 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Sep 16 08:40:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1100d14

app-portage/eix: Stabilize 0.36.5 hppa, #868438

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
index f891dfd6c5a4..a62f25bdbeb2 100644
--- a/app-portage/eix/eix-0.36.5.ebuild
+++ b/app-portage/eix/eix-0.36.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-09-05 Thread Agostino Sarubbo
commit: 980012da5113ff9ef7865834b6a41d4198df82d0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Sep  5 14:03:15 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Sep  5 14:03:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=980012da

app-portage/eix: sparc stable wrt bug #868438

Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-portage/eix/eix-0.36.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
index d006f2ea6401..f891dfd6c5a4 100644
--- a/app-portage/eix/eix-0.36.5.ebuild
+++ b/app-portage/eix/eix-0.36.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-09-04 Thread Jakov Smolić
commit: f84a1b0a7828a9be905826902c63e696f0607e15
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep  4 21:49:27 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Sep  4 21:49:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f84a1b0a

app-portage/eix: Stabilize 0.36.5 amd64, #868438

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

 app-portage/eix/eix-0.36.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
index 4b68b52f8551..d006f2ea6401 100644
--- a/app-portage/eix/eix-0.36.5.ebuild
+++ b/app-portage/eix/eix-0.36.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-09-04 Thread Arthur Zamarin
commit: 5c2b1448cb077a96590ab2b0fe86824ad9aa20f3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Sep  4 18:26:42 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Sep  4 18:26:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c2b1448

app-portage/eix: Stabilize 0.36.5 ppc64, #868438

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
index 6f151fa857ec..4b68b52f8551 100644
--- a/app-portage/eix/eix-0.36.5.ebuild
+++ b/app-portage/eix/eix-0.36.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-09-04 Thread Arthur Zamarin
commit: 3c09adfe5b88ca62abf9f4405fda1e848b2a7638
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Sep  4 18:19:02 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Sep  4 18:21:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c09adfe

app-portage/eix: Stabilize 0.36.5 ppc, #868438

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
index a3cadd2dac7b..6f151fa857ec 100644
--- a/app-portage/eix/eix-0.36.5.ebuild
+++ b/app-portage/eix/eix-0.36.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-09-04 Thread Sam James
commit: 841c681f25c9f736fe9fcb9b85b415be30da0197
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep  4 17:48:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep  4 17:48:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=841c681f

app-portage/eix: Stabilize 0.36.5 arm64, #868438

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
index d5c17a59b44e..a3cadd2dac7b 100644
--- a/app-portage/eix/eix-0.36.5.ebuild
+++ b/app-portage/eix/eix-0.36.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-09-04 Thread Sam James
commit: 3799047e36f540372d3673a0b22704e2ae4b468b
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep  4 17:48:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep  4 17:48:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3799047e

app-portage/eix: Stabilize 0.36.5 arm, #868438

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
index 36651b8d3660..d5c17a59b44e 100644
--- a/app-portage/eix/eix-0.36.5.ebuild
+++ b/app-portage/eix/eix-0.36.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-09-04 Thread Sam James
commit: 11797011f9025405a0add97f2a38479268b9f6ad
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep  4 17:44:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep  4 17:44:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11797011

app-portage/eix: Stabilize 0.36.5 x86, #868438

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
index 635ccd707e0a..36651b8d3660 100644
--- a/app-portage/eix/eix-0.36.5.ebuild
+++ b/app-portage/eix/eix-0.36.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-08-22 Thread Sam James
commit: 0cb7876902053c2ada5ab6bc3cffd39244b0ae0d
Author: Sam James  gentoo  org>
AuthorDate: Tue Aug 23 05:16:12 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug 23 05:23:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb78769

app-portage/eix: add 0.36.5

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.36.5.ebuild | 104 ++
 2 files changed, 105 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 44d3cc63b924..12df82d22b4f 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1,3 @@
 DIST eix-0.36.3.tar.xz 639864 BLAKE2B 
f74b7c4087e5145f3a2e6ee8b0034e5104de8ef81ec810f2d9fc75d161181f71396f27dc635466685650182473fdfb542f4cec6509ddee0a3bb0d7d620b7d42d
 SHA512 
9fd7c64df6acf27e9ed07ee77ee7f209fb0fb2db9a3dbbc78c1f5b25e6d4786dffeea64bf8ddee3bfe4fe35445c8173103428e184c966964b2973d5737152679
 DIST eix-0.36.4.tar.xz 640776 BLAKE2B 
32486b6ce5e5d2a32bb6fc8581bbc37da6cef9cac0cecbd3d0cc6db8bf5b6bcb3c0a31e28df462edcf06056d279a88e64b4c526b430ce40a0614c0367710243c
 SHA512 
5b716cbd688bb5d8efadc7d47de9fb3238776ff10b11165abe02623421be82d17f2d51596d3f263219461188aa08974af1b559b4e43c31d9ee0682f21febb049
+DIST eix-0.36.5.tar.xz 640132 BLAKE2B 
b997be82e21e3316abc6f06bd120434f2a027d62a3bd97e54e7c6298ee201d9998fb0fda91955f88b1b9bbf15b3c6c0c1d821280508215131cde16d1eef621e7
 SHA512 
fb86367f34ae30dac10f0ba68a649c8e737f0f66fefb2933e100c63c57b778567753759f28a6b4afd0155430b050ff59297821c7b54fa73c6cd65b0231806d89

diff --git a/app-portage/eix/eix-0.36.5.ebuild 
b/app-portage/eix/eix-0.36.5.ebuild
new file mode 100644
index ..635ccd707e0a
--- /dev/null
+++ b/app-portage/eix/eix-0.36.5.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+   rm 

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-07-30 Thread Michał Górny
commit: fc3752a2cbeafda3e41d76918cf14fbe8659efe9
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul 30 11:17:31 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jul 30 11:17:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc3752a2

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 -
 app-portage/eix/eix-0.36.2.ebuild | 104 --
 2 files changed, 105 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index c10ab7ff4bff..44d3cc63b924 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,3 +1,2 @@
-DIST eix-0.36.2.tar.xz 639632 BLAKE2B 
962b998f91233e799421c1ea3325d5b9c727bdfdda6a9567ba4a9ea0f4f36798f5ba32ef2ba43043668aaf0829d9c2f50158f97d5ebfca40a58da612141c47a8
 SHA512 
813a19f9561bfd65a401a4dcf9884e39eedf5f971be1800411ba977d84af0c5b5498cab50f69566bff75cf254f1d4971acc5dab72af34162f8b5dd29cd6ffaea
 DIST eix-0.36.3.tar.xz 639864 BLAKE2B 
f74b7c4087e5145f3a2e6ee8b0034e5104de8ef81ec810f2d9fc75d161181f71396f27dc635466685650182473fdfb542f4cec6509ddee0a3bb0d7d620b7d42d
 SHA512 
9fd7c64df6acf27e9ed07ee77ee7f209fb0fb2db9a3dbbc78c1f5b25e6d4786dffeea64bf8ddee3bfe4fe35445c8173103428e184c966964b2973d5737152679
 DIST eix-0.36.4.tar.xz 640776 BLAKE2B 
32486b6ce5e5d2a32bb6fc8581bbc37da6cef9cac0cecbd3d0cc6db8bf5b6bcb3c0a31e28df462edcf06056d279a88e64b4c526b430ce40a0614c0367710243c
 SHA512 
5b716cbd688bb5d8efadc7d47de9fb3238776ff10b11165abe02623421be82d17f2d51596d3f263219461188aa08974af1b559b4e43c31d9ee0682f21febb049

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
deleted file mode 100644
index a62f25bdbeb2..
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools bash-completion-r1 tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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"
-IUSE="debug doc nls sqlite"
-
-DEPEND="
-   nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${DEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-BDEPEND="
-   app-arch/xz-utils
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dobashcomp bash/eix
-   dotmpfiles tmpfiles.d/eix.conf
-
-   rm -r "${ED}"/usr/bin/eix-functions.sh || die
-}
-
-pkg_postinst() {
-   tmpfiles_process eix.conf
-
-   local obs=${EROOT}/var/cache/eix.previous
-   if [[ -f ${obs} ]]; then
-   ewarn "Found obsolete ${obs}, please remove it"
-   fi
-}
-
-pkg_postrm() {
-   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
-   

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-07-30 Thread Arthur Zamarin
commit: fe807d79f6e976d64e74943b7ea46f8164a0ff6e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jul 30 09:50:35 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jul 30 09:50:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe807d79

app-portage/eix: Stabilize 0.36.3 hppa, #860933

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.3.ebuild 
b/app-portage/eix/eix-0.36.3.ebuild
index f891dfd6c5a4..a62f25bdbeb2 100644
--- a/app-portage/eix/eix-0.36.3.ebuild
+++ b/app-portage/eix/eix-0.36.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-07-25 Thread Sam James
commit: 1b65696ee44144313bbe2ee49a5dcad78b5d280b
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 26 02:07:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 26 02:07:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b65696e

app-portage/eix: add 0.36.4

The only changes are for meson which we're not using,
but it's easier to not have a p.g.o warning and such.

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.36.4.ebuild | 104 ++
 2 files changed, 105 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 7454bfc77fd8..c10ab7ff4bff 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1,3 @@
 DIST eix-0.36.2.tar.xz 639632 BLAKE2B 
962b998f91233e799421c1ea3325d5b9c727bdfdda6a9567ba4a9ea0f4f36798f5ba32ef2ba43043668aaf0829d9c2f50158f97d5ebfca40a58da612141c47a8
 SHA512 
813a19f9561bfd65a401a4dcf9884e39eedf5f971be1800411ba977d84af0c5b5498cab50f69566bff75cf254f1d4971acc5dab72af34162f8b5dd29cd6ffaea
 DIST eix-0.36.3.tar.xz 639864 BLAKE2B 
f74b7c4087e5145f3a2e6ee8b0034e5104de8ef81ec810f2d9fc75d161181f71396f27dc635466685650182473fdfb542f4cec6509ddee0a3bb0d7d620b7d42d
 SHA512 
9fd7c64df6acf27e9ed07ee77ee7f209fb0fb2db9a3dbbc78c1f5b25e6d4786dffeea64bf8ddee3bfe4fe35445c8173103428e184c966964b2973d5737152679
+DIST eix-0.36.4.tar.xz 640776 BLAKE2B 
32486b6ce5e5d2a32bb6fc8581bbc37da6cef9cac0cecbd3d0cc6db8bf5b6bcb3c0a31e28df462edcf06056d279a88e64b4c526b430ce40a0614c0367710243c
 SHA512 
5b716cbd688bb5d8efadc7d47de9fb3238776ff10b11165abe02623421be82d17f2d51596d3f263219461188aa08974af1b559b4e43c31d9ee0682f21febb049

diff --git a/app-portage/eix/eix-0.36.4.ebuild 
b/app-portage/eix/eix-0.36.4.ebuild
new file mode 100644
index ..635ccd707e0a
--- /dev/null
+++ b/app-portage/eix/eix-0.36.4.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please 

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-07-25 Thread Sam James
commit: 9a2d2b52fc02171a0f96d0b8345d00b80924dc5c
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 26 02:04:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 26 02:04:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a2d2b52

app-portage/eix: Stabilize 0.36.3 ppc64, #860933

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.3.ebuild 
b/app-portage/eix/eix-0.36.3.ebuild
index b9cd3836c051..e384d8e25752 100644
--- a/app-portage/eix/eix-0.36.3.ebuild
+++ b/app-portage/eix/eix-0.36.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-07-25 Thread Sam James
commit: 98b5d451a3209eed3d2b1a0f83d602ebec4eaf61
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 26 02:04:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 26 02:04:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98b5d451

app-portage/eix: Stabilize 0.36.3 arm64, #860933

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.3.ebuild 
b/app-portage/eix/eix-0.36.3.ebuild
index e384d8e25752..f891dfd6c5a4 100644
--- a/app-portage/eix/eix-0.36.3.ebuild
+++ b/app-portage/eix/eix-0.36.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-07-25 Thread Sam James
commit: 5e3fd7202ce3f1609e5494778a0fd35d43787815
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 26 02:04:46 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 26 02:04:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e3fd720

app-portage/eix: Stabilize 0.36.3 arm, #860933

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.3.ebuild 
b/app-portage/eix/eix-0.36.3.ebuild
index 52cbf712e8c4..b9cd3836c051 100644
--- a/app-portage/eix/eix-0.36.3.ebuild
+++ b/app-portage/eix/eix-0.36.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-07-25 Thread Sam James
commit: 0382a33f831524b15f600b43e665705abe2abcbc
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 26 02:04:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 26 02:04:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0382a33f

app-portage/eix: Stabilize 0.36.3 ppc, #860933

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.3.ebuild 
b/app-portage/eix/eix-0.36.3.ebuild
index ee73cf50966a..52cbf712e8c4 100644
--- a/app-portage/eix/eix-0.36.3.ebuild
+++ b/app-portage/eix/eix-0.36.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-07-25 Thread Sam James
commit: 02c23b865ca4395bb098b36d1d6bf6b1d62f0b21
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 26 01:36:19 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 26 01:36:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02c23b86

app-portage/eix: Stabilize 0.36.3 sparc, #860933

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.3.ebuild 
b/app-portage/eix/eix-0.36.3.ebuild
index 92f8c68691dd..ee73cf50966a 100644
--- a/app-portage/eix/eix-0.36.3.ebuild
+++ b/app-portage/eix/eix-0.36.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-07-25 Thread Sam James
commit: 53d4497e02a9c8dbdd62b0ecd1de93fd4c65af36
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 26 01:35:19 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 26 01:35:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d4497e

app-portage/eix: Stabilize 0.36.3 amd64, #860933

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.3.ebuild 
b/app-portage/eix/eix-0.36.3.ebuild
index 36651b8d3660..92f8c68691dd 100644
--- a/app-portage/eix/eix-0.36.3.ebuild
+++ b/app-portage/eix/eix-0.36.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-07 Thread Michał Górny
commit: 2a394db9d88d694a1fb08b3a50f577d7753c3f26
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun  7 07:13:13 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun  7 07:15:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a394db9

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 -
 app-portage/eix/eix-0.36.1.ebuild | 104 --
 2 files changed, 105 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 6da2b28a007c..7454bfc77fd8 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,3 +1,2 @@
-DIST eix-0.36.1.tar.xz 640084 BLAKE2B 
10014bb847d71b803967354f3a415dc1c74ad37385b7b440f0c162c573453042d06bbc575582831ffc0aad6b0f7abeedbcb4e23b869505d4f85d6bd6b7cfbba4
 SHA512 
915a364b0f63124c53e43eb35165ce553f6eadaf8708f0c075dc2f4871fe83378cd0c8650d5605c1f87c512563fdd62f28efdc586b358fc7cd63ae42a404981d
 DIST eix-0.36.2.tar.xz 639632 BLAKE2B 
962b998f91233e799421c1ea3325d5b9c727bdfdda6a9567ba4a9ea0f4f36798f5ba32ef2ba43043668aaf0829d9c2f50158f97d5ebfca40a58da612141c47a8
 SHA512 
813a19f9561bfd65a401a4dcf9884e39eedf5f971be1800411ba977d84af0c5b5498cab50f69566bff75cf254f1d4971acc5dab72af34162f8b5dd29cd6ffaea
 DIST eix-0.36.3.tar.xz 639864 BLAKE2B 
f74b7c4087e5145f3a2e6ee8b0034e5104de8ef81ec810f2d9fc75d161181f71396f27dc635466685650182473fdfb542f4cec6509ddee0a3bb0d7d620b7d42d
 SHA512 
9fd7c64df6acf27e9ed07ee77ee7f209fb0fb2db9a3dbbc78c1f5b25e6d4786dffeea64bf8ddee3bfe4fe35445c8173103428e184c966964b2973d5737152679

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
deleted file mode 100644
index 106e1079762c..
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools bash-completion-r1 tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-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"
-IUSE="debug doc nls sqlite"
-
-DEPEND="
-   nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${DEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-BDEPEND="
-   app-arch/xz-utils
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dobashcomp bash/eix
-   dotmpfiles tmpfiles.d/eix.conf
-
-   rm -r "${ED}"/usr/bin/eix-functions.sh || die
-}
-
-pkg_postinst() {
-   tmpfiles_process eix.conf
-
-   local obs=${EROOT}/var/cache/eix.previous
-   if [[ -f ${obs} ]]; then
-   ewarn "Found obsolete ${obs}, please remove it"
-   fi
-}
-
-pkg_postrm() {
-   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
-   rm -rf 

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-07 Thread Sam James
commit: b8b904e7254d43044f2a8790139ee3a1b4ccf80f
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun  7 06:44:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun  7 06:45:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8b904e7

app-portage/eix: add 0.36.3

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.36.3.ebuild | 104 ++
 2 files changed, 105 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index afcff454b46d..6da2b28a007c 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1,3 @@
 DIST eix-0.36.1.tar.xz 640084 BLAKE2B 
10014bb847d71b803967354f3a415dc1c74ad37385b7b440f0c162c573453042d06bbc575582831ffc0aad6b0f7abeedbcb4e23b869505d4f85d6bd6b7cfbba4
 SHA512 
915a364b0f63124c53e43eb35165ce553f6eadaf8708f0c075dc2f4871fe83378cd0c8650d5605c1f87c512563fdd62f28efdc586b358fc7cd63ae42a404981d
 DIST eix-0.36.2.tar.xz 639632 BLAKE2B 
962b998f91233e799421c1ea3325d5b9c727bdfdda6a9567ba4a9ea0f4f36798f5ba32ef2ba43043668aaf0829d9c2f50158f97d5ebfca40a58da612141c47a8
 SHA512 
813a19f9561bfd65a401a4dcf9884e39eedf5f971be1800411ba977d84af0c5b5498cab50f69566bff75cf254f1d4971acc5dab72af34162f8b5dd29cd6ffaea
+DIST eix-0.36.3.tar.xz 639864 BLAKE2B 
f74b7c4087e5145f3a2e6ee8b0034e5104de8ef81ec810f2d9fc75d161181f71396f27dc635466685650182473fdfb542f4cec6509ddee0a3bb0d7d620b7d42d
 SHA512 
9fd7c64df6acf27e9ed07ee77ee7f209fb0fb2db9a3dbbc78c1f5b25e6d4786dffeea64bf8ddee3bfe4fe35445c8173103428e184c966964b2973d5737152679

diff --git a/app-portage/eix/eix-0.36.3.ebuild 
b/app-portage/eix/eix-0.36.3.ebuild
new file mode 100644
index ..635ccd707e0a
--- /dev/null
+++ b/app-portage/eix/eix-0.36.3.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+   rm 

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-07 Thread Jakov Smolić
commit: 3be6d510fbfa1a1cdd46f4f21453e097e1cb0d77
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Jun  7 06:43:03 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Jun  7 06:43:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3be6d510

app-portage/eix: Stabilize 0.36.2 hppa, #850058

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

 app-portage/eix/eix-0.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index f891dfd6c5a4..a62f25bdbeb2 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-06 Thread Jakov Smolić
commit: 4a257223d49b5054bf93ba7984c426426e6bf6a0
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 11:52:03 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 11:52:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a257223

app-portage/eix: Stabilize 0.36.2 ppc64, #850058

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

 app-portage/eix/eix-0.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index 8bf25d3f48c4..f891dfd6c5a4 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-06 Thread Jakov Smolić
commit: 42b8186576165c15278f43c8212f2924db5b4d5d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 11:00:56 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 11:00:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42b81865

app-portage/eix: Stabilize 0.36.2 arm, #850058

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

 app-portage/eix/eix-0.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index 230aba370b0c..8bf25d3f48c4 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-06 Thread Jakov Smolić
commit: d698632f49614c05167345d4a4d02c52858eee28
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 10:24:22 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 10:24:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d698632f

app-portage/eix: Stabilize 0.36.2 sparc, #850058

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

 app-portage/eix/eix-0.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index 00d9dd4ab4e4..230aba370b0c 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-06 Thread Jakov Smolić
commit: c91087ad29b21c1d31743a323c1482ab99c96e2e
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 10:21:56 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 10:21:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c91087ad

app-portage/eix: Stabilize 0.36.2 amd64, #850058

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

 app-portage/eix/eix-0.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index 4cdfedab6a55..00d9dd4ab4e4 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-06 Thread Jakov Smolić
commit: fc34154c93b220b8dbbf9e517afb4c8f2659eab0
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 10:21:12 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 10:21:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc34154c

app-portage/eix: Stabilize 0.36.2 x86, #850058

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

 app-portage/eix/eix-0.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index 392ad96652af..4cdfedab6a55 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-06 Thread Jakov Smolić
commit: 35fe6a8750b038375c28a40cce57fcb7bd84d908
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 10:19:47 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 10:19:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35fe6a87

app-portage/eix: Stabilize 0.36.2 arm64, #850058

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

 app-portage/eix/eix-0.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index 8464396d8e3a..392ad96652af 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-06-06 Thread Jakov Smolić
commit: a92289716f0e9f1e632c7b9c8d2d2c9f5edd9c23
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 09:39:08 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 09:39:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9228971

app-portage/eix: Stabilize 0.36.2 ppc, #850058

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

 app-portage/eix/eix-0.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index 635ccd707e0a..8464396d8e3a 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-05-05 Thread WANG Xuerui
commit: e0c67c75db36da2cbdc3678a5d14e39a55064128
Author: WANG Xuerui  gentoo  org>
AuthorDate: Thu May  5 07:08:57 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu May  5 07:10:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0c67c75

app-portage/eix: keyword 0.36.2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 app-portage/eix/eix-0.36.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index d0719e9f166c..635ccd707e0a 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-05-02 Thread Joonas Niilola
commit: b5869d49ff024b954faf3ce8f465543cbfbf94c5
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon May  2 12:38:32 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon May  2 12:46:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5869d49

app-portage/eix: bdepend on pkgconfig

Closes: https://bugs.gentoo.org/842171
Signed-off-by: Joonas Niilola  gentoo.org>

 app-portage/eix/eix-0.36.1.ebuild | 1 +
 app-portage/eix/eix-0.36.2.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
index ea90fe87dff1..106e1079762c 100644
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -22,6 +22,7 @@ RDEPEND="${DEPEND}
>=app-shells/quoter-3.0_p2-r1"
 BDEPEND="
app-arch/xz-utils
+   virtual/pkgconfig
nls? ( sys-devel/gettext )"
 
 pkg_setup() {

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
index ec2244f1a53b..d0719e9f166c 100644
--- a/app-portage/eix/eix-0.36.2.ebuild
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -22,6 +22,7 @@ RDEPEND="${DEPEND}
>=app-shells/quoter-3.0_p2-r1"
 BDEPEND="
app-arch/xz-utils
+   virtual/pkgconfig
nls? ( sys-devel/gettext )"
 
 pkg_setup() {



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-04-18 Thread Michał Górny
commit: 919d08d2fea712a216336cab2e44ee7587262600
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr 18 18:34:55 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr 18 18:39:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=919d08d2

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 -
 app-portage/eix/eix-0.36.0.ebuild | 103 --
 2 files changed, 104 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index be234c37cd78..afcff454b46d 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,3 +1,2 @@
-DIST eix-0.36.0.tar.xz 640820 BLAKE2B 
952e6a354cc5fd1145ef36fed6047bc6f10dd7a51166028581e3b392be66b5df07eabb96cba362dc4f7a50fbe19e6ccb3744d30928c4763a91af21ad02cee38d
 SHA512 
891e343b01d3887cbc7e61933b43e79949ff702dcd8ada2f15ff57a628dc6ebc9a4b6817d3aa3d814474db3131aefcbbf56cec2520868dcb2182cbee780125b5
 DIST eix-0.36.1.tar.xz 640084 BLAKE2B 
10014bb847d71b803967354f3a415dc1c74ad37385b7b440f0c162c573453042d06bbc575582831ffc0aad6b0f7abeedbcb4e23b869505d4f85d6bd6b7cfbba4
 SHA512 
915a364b0f63124c53e43eb35165ce553f6eadaf8708f0c075dc2f4871fe83378cd0c8650d5605c1f87c512563fdd62f28efdc586b358fc7cd63ae42a404981d
 DIST eix-0.36.2.tar.xz 639632 BLAKE2B 
962b998f91233e799421c1ea3325d5b9c727bdfdda6a9567ba4a9ea0f4f36798f5ba32ef2ba43043668aaf0829d9c2f50158f97d5ebfca40a58da612141c47a8
 SHA512 
813a19f9561bfd65a401a4dcf9884e39eedf5f971be1800411ba977d84af0c5b5498cab50f69566bff75cf254f1d4971acc5dab72af34162f8b5dd29cd6ffaea

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
deleted file mode 100644
index acb65e10daf2..
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools bash-completion-r1 tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-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"
-IUSE="debug doc nls sqlite"
-
-DEPEND="
-   nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${DEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-BDEPEND="
-   app-arch/xz-utils
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dobashcomp bash/eix
-   dotmpfiles tmpfiles.d/eix.conf
-
-   rm -r "${ED}"/usr/bin/eix-functions.sh || die
-}
-
-pkg_postinst() {
-   tmpfiles_process eix.conf
-
-   local obs=${EROOT}/var/cache/eix.previous
-   if [[ -f ${obs} ]]; then
-   ewarn "Found obsolete ${obs}, please remove it"
-   fi
-}
-
-pkg_postrm() {
-   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
-   rm -rf "${EROOT}/var/cache/${PN}" 

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-04-18 Thread Arthur Zamarin
commit: c6679c223eb54093b19c666a3ae95e7151fd7048
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr 18 18:21:23 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr 18 18:21:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6679c22

app-portage/eix: Stabilize 0.36.1 hppa, #835940

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
index 92c5e8632233..ea90fe87dff1 100644
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-04-14 Thread Sam James
commit: ae6415caaae850c73c9d53515a7156dfeabe4b52
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr 15 04:39:40 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr 15 04:39:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae6415ca

app-portage/eix: add 0.36.2

Closes: https://bugs.gentoo.org/838358
Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.36.2.ebuild | 103 ++
 2 files changed, 104 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index c91f0c823670..be234c37cd78 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1,3 @@
 DIST eix-0.36.0.tar.xz 640820 BLAKE2B 
952e6a354cc5fd1145ef36fed6047bc6f10dd7a51166028581e3b392be66b5df07eabb96cba362dc4f7a50fbe19e6ccb3744d30928c4763a91af21ad02cee38d
 SHA512 
891e343b01d3887cbc7e61933b43e79949ff702dcd8ada2f15ff57a628dc6ebc9a4b6817d3aa3d814474db3131aefcbbf56cec2520868dcb2182cbee780125b5
 DIST eix-0.36.1.tar.xz 640084 BLAKE2B 
10014bb847d71b803967354f3a415dc1c74ad37385b7b440f0c162c573453042d06bbc575582831ffc0aad6b0f7abeedbcb4e23b869505d4f85d6bd6b7cfbba4
 SHA512 
915a364b0f63124c53e43eb35165ce553f6eadaf8708f0c075dc2f4871fe83378cd0c8650d5605c1f87c512563fdd62f28efdc586b358fc7cd63ae42a404981d
+DIST eix-0.36.2.tar.xz 639632 BLAKE2B 
962b998f91233e799421c1ea3325d5b9c727bdfdda6a9567ba4a9ea0f4f36798f5ba32ef2ba43043668aaf0829d9c2f50158f97d5ebfca40a58da612141c47a8
 SHA512 
813a19f9561bfd65a401a4dcf9884e39eedf5f971be1800411ba977d84af0c5b5498cab50f69566bff75cf254f1d4971acc5dab72af34162f8b5dd29cd6ffaea

diff --git a/app-portage/eix/eix-0.36.2.ebuild 
b/app-portage/eix/eix-0.36.2.ebuild
new file mode 100644
index ..ec2244f1a53b
--- /dev/null
+++ b/app-portage/eix/eix-0.36.2.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+  

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-03-26 Thread Arthur Zamarin
commit: 64e3f1abaf76a087b43aae00c98d9c049ebf08d5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 26 19:11:20 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 26 19:11:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64e3f1ab

app-portage/eix: Stabilize 0.36.1 arm, #835940

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-portage/eix/eix-0.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
index 299f350f9af8..92c5e8632233 100644
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-03-25 Thread Agostino Sarubbo
commit: 6d9383438985e17ad74dff3d8f32ff065a69217f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Mar 25 07:48:14 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Mar 25 07:48:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d938343

app-portage/eix: sparc stable wrt bug #835940

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-portage/eix/eix-0.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
index 12a7a00e4671..299f350f9af8 100644
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-03-25 Thread Agostino Sarubbo
commit: 331b8878a69248d00fc7d4f4c8e296d0b2e592e6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Mar 25 07:47:26 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Mar 25 07:47:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331b8878

app-portage/eix: ppc64 stable wrt bug #835940

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-portage/eix/eix-0.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
index 5306b505f4b1..12a7a00e4671 100644
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-03-25 Thread Agostino Sarubbo
commit: d13d562cc94fac5eb929a3425655cdf335cf0e27
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Mar 25 07:46:39 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Mar 25 07:46:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d13d562c

app-portage/eix: ppc stable wrt bug #835940

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-portage/eix/eix-0.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
index b4a6f2ce63f7..5306b505f4b1 100644
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-03-24 Thread Jakov Smolić
commit: dcd5e937d02c41c7a8986c175b6a7a08a246f196
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 19:03:08 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 19:03:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcd5e937

app-portage/eix: Stabilize 0.36.1 amd64, #835940

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

 app-portage/eix/eix-0.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
index 4932fcb1bd26..b4a6f2ce63f7 100644
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-03-24 Thread Jakov Smolić
commit: ebf1f94657ad085eeeb8bc07a0b27a7c89aa9bf4
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 19:02:30 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 19:02:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebf1f946

app-portage/eix: Stabilize 0.36.1 x86, #835940

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

 app-portage/eix/eix-0.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
index 1a6186a5045f..4932fcb1bd26 100644
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-03-24 Thread Jakov Smolić
commit: 5b61ac5913616d16bdbc027a27ba93ff99a31f6c
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 19:01:59 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 19:01:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b61ac59

app-portage/eix: Stabilize 0.36.1 arm64, #835940

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

 app-portage/eix/eix-0.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
index 7d1c230fabe8..1a6186a5045f 100644
--- a/app-portage/eix/eix-0.36.1.ebuild
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2022-01-13 Thread Michał Górny
commit: 9f28a0f54184b2dc82b3e9511d1f3364a4504e00
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 13 21:51:01 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 13 21:51:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f28a0f5

app-portage/eix: Bump to 0.36.1

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.36.1.ebuild | 103 ++
 2 files changed, 104 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 10e8bd776dd6..c91f0c823670 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1 +1,2 @@
 DIST eix-0.36.0.tar.xz 640820 BLAKE2B 
952e6a354cc5fd1145ef36fed6047bc6f10dd7a51166028581e3b392be66b5df07eabb96cba362dc4f7a50fbe19e6ccb3744d30928c4763a91af21ad02cee38d
 SHA512 
891e343b01d3887cbc7e61933b43e79949ff702dcd8ada2f15ff57a628dc6ebc9a4b6817d3aa3d814474db3131aefcbbf56cec2520868dcb2182cbee780125b5
+DIST eix-0.36.1.tar.xz 640084 BLAKE2B 
10014bb847d71b803967354f3a415dc1c74ad37385b7b440f0c162c573453042d06bbc575582831ffc0aad6b0f7abeedbcb4e23b869505d4f85d6bd6b7cfbba4
 SHA512 
915a364b0f63124c53e43eb35165ce553f6eadaf8708f0c075dc2f4871fe83378cd0c8650d5605c1f87c512563fdd62f28efdc586b358fc7cd63ae42a404981d

diff --git a/app-portage/eix/eix-0.36.1.ebuild 
b/app-portage/eix/eix-0.36.1.ebuild
new file mode 100644
index ..7d1c230fabe8
--- /dev/null
+++ b/app-portage/eix/eix-0.36.1.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools bash-completion-r1 tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+   rm -rf "${EROOT}/var/cache/${PN}" || die
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-11-07 Thread Michał Górny
commit: 49152a7d69d574430067f7f420f87ba39d1ca395
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov  7 08:13:38 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov  7 08:16:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49152a7d

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 -
 app-portage/eix/eix-0.35.2.ebuild | 103 --
 2 files changed, 104 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 080ad227840..10e8bd776dd 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1 @@
-DIST eix-0.35.2.tar.xz 636616 BLAKE2B 
22c9ce54bd612ff7b8a085d91727ee7b472b9c3ba71568f23b4cfc5e2c4d9b0a68e2df377d4c4101c53e193864418c11b0c76830b5b6044588dcf3882b164e3d
 SHA512 
39ff4c4f31be3c40a17a77626c25550a3881d8c405ebd9e7a361252cb729f9c0fc40831bc41e503fdea9f05684ad0eaa1aceabba1c6e4067a33a8581bf5a9625
 DIST eix-0.36.0.tar.xz 640820 BLAKE2B 
952e6a354cc5fd1145ef36fed6047bc6f10dd7a51166028581e3b392be66b5df07eabb96cba362dc4f7a50fbe19e6ccb3744d30928c4763a91af21ad02cee38d
 SHA512 
891e343b01d3887cbc7e61933b43e79949ff702dcd8ada2f15ff57a628dc6ebc9a4b6817d3aa3d814474db3131aefcbbf56cec2520868dcb2182cbee780125b5

diff --git a/app-portage/eix/eix-0.35.2.ebuild 
b/app-portage/eix/eix-0.35.2.ebuild
deleted file mode 100644
index 0971f52d752..000
--- a/app-portage/eix/eix-0.35.2.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools bash-completion-r1 flag-o-matic tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-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"
-IUSE="debug doc nls sqlite"
-
-DEPEND="
-   nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${DEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-BDEPEND="
-   app-arch/xz-utils
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dobashcomp bash/eix
-   dotmpfiles tmpfiles.d/eix.conf
-
-   rm -r "${ED}"/usr/bin/eix-functions.sh || die
-}
-
-pkg_postinst() {
-   tmpfiles_process eix.conf
-
-   local obs=${EROOT}/var/cache/eix.previous
-   if [[ -f ${obs} ]]; then
-   ewarn "Found obsolete ${obs}, please remove it"
-   fi
-}
-
-pkg_postrm() {
-   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
-   rm -rf "${EROOT}/var/cache/${PN}" || die
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-11-07 Thread Michał Górny
commit: 2fe48a0cc7b8baea7c5990249747275f6fb1fb53
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov  7 08:15:31 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov  7 08:16:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fe48a0c

app-portage/eix: Remove unused flag-o-matic

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/eix-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
index 0971f52d752..acb65e10daf 100644
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools bash-completion-r1 flag-o-matic tmpfiles
+inherit autotools bash-completion-r1 tmpfiles
 
 DESCRIPTION="Search and query ebuilds"
 HOMEPAGE="https://github.com/vaeth/eix/;



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-11-06 Thread Sam James
commit: 07e7ec56d90ac23f0f2e2f4c4c18df087025915c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Nov  6 18:55:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov  6 20:43:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07e7ec56

app-portage/eix: stable 0.36.0 for hppa, bug #820731

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
index 80523628dce..0971f52d752 100644
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-10-30 Thread Sam James
commit: ce3609b46081560f4426fc5e4e872b1628f84428
Author: Sam James  gentoo  org>
AuthorDate: Sat Oct 30 22:55:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Oct 30 22:55:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce3609b4

app-portage/eix: Stabilize 0.36.0 ppc64, #820731

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
index 6bc6f76ec03..80523628dce 100644
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-10-30 Thread Sam James
commit: 3eaf9d0bbc74e0ef1826684fcc90c899a31fbdbc
Author: Sam James  gentoo  org>
AuthorDate: Sat Oct 30 22:55:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Oct 30 22:55:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eaf9d0b

app-portage/eix: Stabilize 0.36.0 ppc, #820731

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
index 32e5bfc02b4..6bc6f76ec03 100644
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-10-30 Thread Sam James
commit: 6b8ccbd1ddc6c53e5a4391fec4a124a33c0a806a
Author: Sam James  gentoo  org>
AuthorDate: Sat Oct 30 17:29:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Oct 30 17:29:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b8ccbd1

app-portage/eix: Stabilize 0.36.0 arm64, #820731

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
index 158431e3439..32e5bfc02b4 100644
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-10-30 Thread Sam James
commit: 5bff154cd029c96a24b8980c7177afc9b3bb274d
Author: Sam James  gentoo  org>
AuthorDate: Sat Oct 30 17:29:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Oct 30 17:29:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bff154c

app-portage/eix: Stabilize 0.36.0 arm, #820731

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
index d768f50cd6b..158431e3439 100644
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-10-30 Thread Agostino Sarubbo
commit: 17d278aa87e46b0cedaf73bf0044f8d04eef7987
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Oct 30 17:22:41 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Oct 30 17:22:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17d278aa

app-portage/eix: sparc stable wrt bug #820731

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-portage/eix/eix-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
index 8f44c52cb8f..d768f50cd6b 100644
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-10-29 Thread Sam James
commit: 3463847ec99a6bd2b49300be390d33dde6e76e36
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 29 18:53:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 29 18:53:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3463847e

app-portage/eix: Stabilize 0.36.0 x86, #820731

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
index ed1763493b9..8f44c52cb8f 100644
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-10-29 Thread Sam James
commit: bcf4c852507aad2ca4673c1eea7ac34f12088e12
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 29 18:52:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 29 18:52:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcf4c852

app-portage/eix: Stabilize 0.36.0 amd64, #820731

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
index a13024c139e..ed1763493b9 100644
--- a/app-portage/eix/eix-0.36.0.ebuild
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-10-03 Thread Michał Górny
commit: ebca16f9869ceb1ac8bb489c7eff29fcbe590dcd
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct  3 06:42:41 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  3 06:42:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebca16f9

app-portage/eix: Bump to 0.36.0

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.36.0.ebuild | 103 ++
 2 files changed, 104 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 911d37a7be2..080ad227840 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1 +1,2 @@
 DIST eix-0.35.2.tar.xz 636616 BLAKE2B 
22c9ce54bd612ff7b8a085d91727ee7b472b9c3ba71568f23b4cfc5e2c4d9b0a68e2df377d4c4101c53e193864418c11b0c76830b5b6044588dcf3882b164e3d
 SHA512 
39ff4c4f31be3c40a17a77626c25550a3881d8c405ebd9e7a361252cb729f9c0fc40831bc41e503fdea9f05684ad0eaa1aceabba1c6e4067a33a8581bf5a9625
+DIST eix-0.36.0.tar.xz 640820 BLAKE2B 
952e6a354cc5fd1145ef36fed6047bc6f10dd7a51166028581e3b392be66b5df07eabb96cba362dc4f7a50fbe19e6ccb3744d30928c4763a91af21ad02cee38d
 SHA512 
891e343b01d3887cbc7e61933b43e79949ff702dcd8ada2f15ff57a628dc6ebc9a4b6817d3aa3d814474db3131aefcbbf56cec2520868dcb2182cbee780125b5

diff --git a/app-portage/eix/eix-0.36.0.ebuild 
b/app-portage/eix/eix-0.36.0.ebuild
new file mode 100644
index 000..a13024c139e
--- /dev/null
+++ b/app-portage/eix/eix-0.36.0.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools bash-completion-r1 flag-o-matic tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+   rm -rf "${EROOT}/var/cache/${PN}" || die
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-08-05 Thread Michał Górny
commit: 84297e10c148c9d93af9479711524fb1879fee8d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Aug  6 02:00:04 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Aug  6 03:32:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84297e10

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest   |   3 --
 app-portage/eix/eix-0.34.12.ebuild | 103 -
 app-portage/eix/eix-0.35.0.ebuild  | 103 -
 app-portage/eix/eix-0.35.1.ebuild  | 103 -
 4 files changed, 312 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index c510a8078a5..911d37a7be2 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,4 +1 @@
-DIST eix-0.34.12.tar.xz 629704 BLAKE2B 
22c3a93b47c607467321445704c8b4fe0f8b131081609709ebe5e2bd09d0ac08194938641ab44304e51d9dc4d473615625a9ca0de649767b6552c60d38974b75
 SHA512 
458a01b8ccb5fe4c7fbf9eb8368dbb0c63ac587e0452de4c3a58fadfc62aa8b404e509d6f24d20956bd6f04c00bfdfc95d6bf59287c5ea9e07091bea67f8c4e2
-DIST eix-0.35.0.tar.xz 636432 BLAKE2B 
8a880cde56c0010f193445d9813c533effd59b8ee570132a0c40d62de827968839d99ee16981d152e737b881519e9f73d4ddac5375b6339dd480064deefa6149
 SHA512 
b9a6e59e666ec6015a612e083839a11a77e1d649262a802a9c8684fe25abbeda7a2c51ea629f1bb85ddc77fccce42b577178284763668bb2d1bcc85df5d68f2e
-DIST eix-0.35.1.tar.xz 635996 BLAKE2B 
e8afb4d33d8e0525471e396e752859ab5fb165df8b1519cfa9ded1a3ff287059d9c647d744ec095eeec92d01f25330cced3ecefdb3d399ecf513d8aa5f14e9d3
 SHA512 
2812406f28994c133f9fe3dfe53bc0495f5bb446e2f0ac69f070632d0f357044c1c334e5ed2344a81dd8e3ba100fb427c161201e488ef2581717b55a712f3908
 DIST eix-0.35.2.tar.xz 636616 BLAKE2B 
22c9ce54bd612ff7b8a085d91727ee7b472b9c3ba71568f23b4cfc5e2c4d9b0a68e2df377d4c4101c53e193864418c11b0c76830b5b6044588dcf3882b164e3d
 SHA512 
39ff4c4f31be3c40a17a77626c25550a3881d8c405ebd9e7a361252cb729f9c0fc40831bc41e503fdea9f05684ad0eaa1aceabba1c6e4067a33a8581bf5a9625

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
deleted file mode 100644
index 0971f52d752..000
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools bash-completion-r1 flag-o-matic tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-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"
-IUSE="debug doc nls sqlite"
-
-DEPEND="
-   nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${DEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-BDEPEND="
-   app-arch/xz-utils
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() 

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-08-05 Thread Sam James
commit: 0132cce8f6366640387a11618c6c8d0b0d1e40af
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug  6 00:27:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug  6 00:27:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0132cce8

app-portage/eix: Stabilize 0.35.2 arm64, #805458

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.35.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.35.2.ebuild 
b/app-portage/eix/eix-0.35.2.ebuild
index 924d88bc7c4..0971f52d752 100644
--- a/app-portage/eix/eix-0.35.2.ebuild
+++ b/app-portage/eix/eix-0.35.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-08-03 Thread Agostino Sarubbo
commit: 5431369f4ae795819208e7803d5ae2bacbc969a9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  3 15:35:39 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  3 15:35:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5431369f

app-portage/eix: x86 stable wrt bug #805458

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-portage/eix/eix-0.35.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.35.2.ebuild 
b/app-portage/eix/eix-0.35.2.ebuild
index f4d5259befc..924d88bc7c4 100644
--- a/app-portage/eix/eix-0.35.2.ebuild
+++ b/app-portage/eix/eix-0.35.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-07-31 Thread Sam James
commit: 8ca949e83f7423a423f6f8a0688ae9d99bf474bb
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  1 05:11:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  1 05:11:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca949e8

app-portage/eix: Stabilize 0.35.2 ppc64, #805458

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.35.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.35.2.ebuild 
b/app-portage/eix/eix-0.35.2.ebuild
index e41b0f3ba7d..cba92c0ce1e 100644
--- a/app-portage/eix/eix-0.35.2.ebuild
+++ b/app-portage/eix/eix-0.35.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-07-31 Thread Sam James
commit: b6efd0e166cba2758ae2d78baebb0b3ed3314703
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  1 05:11:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  1 05:11:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6efd0e1

app-portage/eix: Stabilize 0.35.2 ppc, #805458

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.35.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.35.2.ebuild 
b/app-portage/eix/eix-0.35.2.ebuild
index cba92c0ce1e..80ba61c83ee 100644
--- a/app-portage/eix/eix-0.35.2.ebuild
+++ b/app-portage/eix/eix-0.35.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-07-31 Thread Sam James
commit: aa588921a638c291d2739034f36d8af7cd7c3407
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul 31 22:22:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul 31 22:22:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa588921

app-portage/eix: Stabilize 0.35.2 sparc, #805458

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.35.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.35.2.ebuild 
b/app-portage/eix/eix-0.35.2.ebuild
index a13024c139e..e41b0f3ba7d 100644
--- a/app-portage/eix/eix-0.35.2.ebuild
+++ b/app-portage/eix/eix-0.35.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-06-10 Thread Michał Górny
commit: d7b39279a67d467bdcf5a18118eab7bb6c84a83a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 10 20:25:45 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun 10 23:13:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b39279

app-portage/eix: Bump to 0.35.2

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.35.2.ebuild | 103 ++
 2 files changed, 104 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index fa6d7daec56..c510a8078a5 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,3 +1,4 @@
 DIST eix-0.34.12.tar.xz 629704 BLAKE2B 
22c3a93b47c607467321445704c8b4fe0f8b131081609709ebe5e2bd09d0ac08194938641ab44304e51d9dc4d473615625a9ca0de649767b6552c60d38974b75
 SHA512 
458a01b8ccb5fe4c7fbf9eb8368dbb0c63ac587e0452de4c3a58fadfc62aa8b404e509d6f24d20956bd6f04c00bfdfc95d6bf59287c5ea9e07091bea67f8c4e2
 DIST eix-0.35.0.tar.xz 636432 BLAKE2B 
8a880cde56c0010f193445d9813c533effd59b8ee570132a0c40d62de827968839d99ee16981d152e737b881519e9f73d4ddac5375b6339dd480064deefa6149
 SHA512 
b9a6e59e666ec6015a612e083839a11a77e1d649262a802a9c8684fe25abbeda7a2c51ea629f1bb85ddc77fccce42b577178284763668bb2d1bcc85df5d68f2e
 DIST eix-0.35.1.tar.xz 635996 BLAKE2B 
e8afb4d33d8e0525471e396e752859ab5fb165df8b1519cfa9ded1a3ff287059d9c647d744ec095eeec92d01f25330cced3ecefdb3d399ecf513d8aa5f14e9d3
 SHA512 
2812406f28994c133f9fe3dfe53bc0495f5bb446e2f0ac69f070632d0f357044c1c334e5ed2344a81dd8e3ba100fb427c161201e488ef2581717b55a712f3908
+DIST eix-0.35.2.tar.xz 636616 BLAKE2B 
22c9ce54bd612ff7b8a085d91727ee7b472b9c3ba71568f23b4cfc5e2c4d9b0a68e2df377d4c4101c53e193864418c11b0c76830b5b6044588dcf3882b164e3d
 SHA512 
39ff4c4f31be3c40a17a77626c25550a3881d8c405ebd9e7a361252cb729f9c0fc40831bc41e503fdea9f05684ad0eaa1aceabba1c6e4067a33a8581bf5a9625

diff --git a/app-portage/eix/eix-0.35.2.ebuild 
b/app-portage/eix/eix-0.35.2.ebuild
new file mode 100644
index 000..a13024c139e
--- /dev/null
+++ b/app-portage/eix/eix-0.35.2.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools bash-completion-r1 flag-o-matic tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-06-07 Thread Michał Górny
commit: 678e157c379c95150d5ab874c1becc5761b19079
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jun  7 18:27:53 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun  7 18:38:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=678e157c

app-portage/eix: Bump to 0.35.1

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.35.1.ebuild | 103 ++
 2 files changed, 104 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index 3fa275baa37..fa6d7daec56 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1,3 @@
 DIST eix-0.34.12.tar.xz 629704 BLAKE2B 
22c3a93b47c607467321445704c8b4fe0f8b131081609709ebe5e2bd09d0ac08194938641ab44304e51d9dc4d473615625a9ca0de649767b6552c60d38974b75
 SHA512 
458a01b8ccb5fe4c7fbf9eb8368dbb0c63ac587e0452de4c3a58fadfc62aa8b404e509d6f24d20956bd6f04c00bfdfc95d6bf59287c5ea9e07091bea67f8c4e2
 DIST eix-0.35.0.tar.xz 636432 BLAKE2B 
8a880cde56c0010f193445d9813c533effd59b8ee570132a0c40d62de827968839d99ee16981d152e737b881519e9f73d4ddac5375b6339dd480064deefa6149
 SHA512 
b9a6e59e666ec6015a612e083839a11a77e1d649262a802a9c8684fe25abbeda7a2c51ea629f1bb85ddc77fccce42b577178284763668bb2d1bcc85df5d68f2e
+DIST eix-0.35.1.tar.xz 635996 BLAKE2B 
e8afb4d33d8e0525471e396e752859ab5fb165df8b1519cfa9ded1a3ff287059d9c647d744ec095eeec92d01f25330cced3ecefdb3d399ecf513d8aa5f14e9d3
 SHA512 
2812406f28994c133f9fe3dfe53bc0495f5bb446e2f0ac69f070632d0f357044c1c334e5ed2344a81dd8e3ba100fb427c161201e488ef2581717b55a712f3908

diff --git a/app-portage/eix/eix-0.35.1.ebuild 
b/app-portage/eix/eix-0.35.1.ebuild
new file mode 100644
index 000..a13024c139e
--- /dev/null
+++ b/app-portage/eix/eix-0.35.1.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools bash-completion-r1 flag-o-matic tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+   rm -rf 

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-06-06 Thread Michał Górny
commit: b6294d37081fb2a9fac2f5918dfad567893be9fa
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun  6 05:56:11 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun  6 05:56:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6294d37

app-portage/eix: Bump to 0.35.0

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest  |   1 +
 app-portage/eix/eix-0.35.0.ebuild | 103 ++
 2 files changed, 104 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index acf9d04877f..3fa275baa37 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1 +1,2 @@
 DIST eix-0.34.12.tar.xz 629704 BLAKE2B 
22c3a93b47c607467321445704c8b4fe0f8b131081609709ebe5e2bd09d0ac08194938641ab44304e51d9dc4d473615625a9ca0de649767b6552c60d38974b75
 SHA512 
458a01b8ccb5fe4c7fbf9eb8368dbb0c63ac587e0452de4c3a58fadfc62aa8b404e509d6f24d20956bd6f04c00bfdfc95d6bf59287c5ea9e07091bea67f8c4e2
+DIST eix-0.35.0.tar.xz 636432 BLAKE2B 
8a880cde56c0010f193445d9813c533effd59b8ee570132a0c40d62de827968839d99ee16981d152e737b881519e9f73d4ddac5375b6339dd480064deefa6149
 SHA512 
b9a6e59e666ec6015a612e083839a11a77e1d649262a802a9c8684fe25abbeda7a2c51ea629f1bb85ddc77fccce42b577178284763668bb2d1bcc85df5d68f2e

diff --git a/app-portage/eix/eix-0.35.0.ebuild 
b/app-portage/eix/eix-0.35.0.ebuild
new file mode 100644
index 000..a13024c139e
--- /dev/null
+++ b/app-portage/eix/eix-0.35.0.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools bash-completion-r1 flag-o-matic tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+   rm -rf "${EROOT}/var/cache/${PN}" || die
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-25 Thread Michał Górny
commit: d28a8c9963b58ea83264bc564f561cb3f8b907b1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 25 19:31:08 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 25 19:31:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d28a8c99

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest   |   1 -
 app-portage/eix/eix-0.34.11.ebuild | 102 -
 2 files changed, 103 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index e966a24d231..acf9d04877f 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1 @@
-DIST eix-0.34.11.tar.xz 629932 BLAKE2B 
7b203a4763a880379e5bafe086f70aeca6ad508cd558cc53d53683d8ee4a85111ba9fdea9fa81cd9c3939dd01ea392876b2714257138fd40a2c6b124e0fdbc90
 SHA512 
518dee499ed27acd39ea4c26e7b94a1098408b1d8cf6bc593e5e4b06aa973ae664e155886681c1e90e4a89afe8b54e05f8bd08d6ace2a2e1559fa613e5a351e7
 DIST eix-0.34.12.tar.xz 629704 BLAKE2B 
22c3a93b47c607467321445704c8b4fe0f8b131081609709ebe5e2bd09d0ac08194938641ab44304e51d9dc4d473615625a9ca0de649767b6552c60d38974b75
 SHA512 
458a01b8ccb5fe4c7fbf9eb8368dbb0c63ac587e0452de4c3a58fadfc62aa8b404e509d6f24d20956bd6f04c00bfdfc95d6bf59287c5ea9e07091bea67f8c4e2

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
deleted file mode 100644
index 430eb3dd9e8..000
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools bash-completion-r1 flag-o-matic tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-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"
-IUSE="debug doc nls sqlite"
-
-BOTHDEPEND="nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${BOTHDEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-DEPEND="${BOTHDEPEND}
-   app-arch/xz-utils
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dobashcomp bash/eix
-   dotmpfiles tmpfiles.d/eix.conf
-
-   rm -r "${ED}"/usr/bin/eix-functions.sh || die
-}
-
-pkg_postinst() {
-   tmpfiles_process eix.conf
-
-   local obs=${EROOT}/var/cache/eix.previous
-   if [[ -f ${obs} ]]; then
-   ewarn "Found obsolete ${obs}, please remove it"
-   fi
-}
-
-pkg_postrm() {
-   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
-   rm -rf "${EROOT}/var/cache/${PN}" || die
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-25 Thread Sergei Trofimovich
commit: 34484e69f51426affc0a6ecf7641e4527c1d253b
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Feb 25 17:23:24 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Feb 25 18:34:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34484e69

app-portage/eix: stable 0.34.12 for hppa, bug #771513

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-portage/eix/eix-0.34.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
index 0309d65c8d5..e192a95b4aa 100644
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-20 Thread Sam James
commit: 43e230fe027b3c348f085b0ec9652edb2858c2d5
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 21 04:30:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 21 04:30:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43e230fe

app-portage/eix: Stabilize 0.34.12 arm64, #771513

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
index 8ee75833398..0309d65c8d5 100644
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-19 Thread Sam James
commit: 7375528ad0f4ecaac8e0701971bacfbf736f21f5
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 19 17:19:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 19 17:19:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7375528a

app-portage/eix: Stabilize 0.34.12 ppc64, #771513

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
index 9e5bcac9925..8ee75833398 100644
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-19 Thread Sam James
commit: da4af979d193d903c0829a0a5d56a232c481c487
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 19 16:07:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 19 16:07:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da4af979

app-portage/eix: Stabilize 0.34.12 amd64, #771513

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
index e307f206db2..9e5bcac9925 100644
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-18 Thread Sam James
commit: 4d203e4fc2771586605c98e3f6579b7893024720
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 19 03:45:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 19 03:45:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d203e4f

app-portage/eix: Stabilize 0.34.12 ppc, #771513

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
index ea2bccdce9d..e307f206db2 100644
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-18 Thread Sam James
commit: 180d25ad9c953de161de10aa998f41890090ad6a
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 19 03:42:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 19 03:42:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=180d25ad

app-portage/eix: Stabilize 0.34.12 sparc, #771513

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
index a492b692b58..ea2bccdce9d 100644
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-18 Thread Sam James
commit: 93c0fc0bc5b14ccee456c04d9ecd139e04c1e0f2
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 19 02:52:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 19 02:52:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93c0fc0b

app-portage/eix: Stabilize 0.34.12 arm, #771513

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
index 63d587146c5..a492b692b58 100644
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-18 Thread Sam James
commit: f2dd806f2af7587d9ca30df2f2a57ebe1330474b
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 19 02:43:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 19 02:43:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2dd806f

app-portage/eix: Stabilize 0.34.12 s390, #771513

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
index 252f923d8c8..63d587146c5 100644
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-02-18 Thread Thomas Deutschmann
commit: 112d9052abc752f98f96694fa575f0c4c3401dc2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Feb 19 01:40:32 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Feb 19 01:40:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=112d9052

app-portage/eix: x86 stable (bug #771513)

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-portage/eix/eix-0.34.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
index a13024c139e..252f923d8c8 100644
--- a/app-portage/eix/eix-0.34.12.ebuild
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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"
+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"
 IUSE="debug doc nls sqlite"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-01-15 Thread Michał Górny
commit: 61f08e991ed3358934387ca2e283b82980bd4917
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 15 18:29:58 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 15 18:34:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61f08e99

app-portage/eix: Bump to 0.34.12

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest   |   1 +
 app-portage/eix/eix-0.34.12.ebuild | 103 +
 2 files changed, 104 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index eed43fefef1..e966a24d231 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1 +1,2 @@
 DIST eix-0.34.11.tar.xz 629932 BLAKE2B 
7b203a4763a880379e5bafe086f70aeca6ad508cd558cc53d53683d8ee4a85111ba9fdea9fa81cd9c3939dd01ea392876b2714257138fd40a2c6b124e0fdbc90
 SHA512 
518dee499ed27acd39ea4c26e7b94a1098408b1d8cf6bc593e5e4b06aa973ae664e155886681c1e90e4a89afe8b54e05f8bd08d6ace2a2e1559fa613e5a351e7
+DIST eix-0.34.12.tar.xz 629704 BLAKE2B 
22c3a93b47c607467321445704c8b4fe0f8b131081609709ebe5e2bd09d0ac08194938641ab44304e51d9dc4d473615625a9ca0de649767b6552c60d38974b75
 SHA512 
458a01b8ccb5fe4c7fbf9eb8368dbb0c63ac587e0452de4c3a58fadfc62aa8b404e509d6f24d20956bd6f04c00bfdfc95d6bf59287c5ea9e07091bea67f8c4e2

diff --git a/app-portage/eix/eix-0.34.12.ebuild 
b/app-portage/eix/eix-0.34.12.ebuild
new file mode 100644
index 000..a13024c139e
--- /dev/null
+++ b/app-portage/eix/eix-0.34.12.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools bash-completion-r1 flag-o-matic tmpfiles
+
+DESCRIPTION="Search and query ebuilds"
+HOMEPAGE="https://github.com/vaeth/eix/;
+SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+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"
+IUSE="debug doc nls sqlite"
+
+DEPEND="
+   nls? ( virtual/libintl )
+   sqlite? ( >=dev-db/sqlite-3:= )"
+RDEPEND="${DEPEND}
+   >=app-shells/push-2.0-r1
+   >=app-shells/quoter-3.0_p2-r1"
+BDEPEND="
+   app-arch/xz-utils
+   nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+   # remove stale cache file to prevent collisions
+   local old_cache=${EROOT}/var/cache/${PN}
+   if [[ -f ${old_cache} ]]; then
+   rm "${old_cache}" || die
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
+
+   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
+   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
+   -i src/eix-functions.sh.in || die
+   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
+   -i src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable debug paranoic-asserts)
+   $(use_enable nls)
+   $(use_with doc extra-doc)
+   $(use_with sqlite)
+   --without-protobuf
+
+   # default configuration
+   $(use_with prefix always-accept-keywords)
+   --with-dep-default
+   --with-required-use-default
+
+   # paths
+   --with-portage-rootpath="${ROOTPATH}"
+   --with-eprefix-default="${EPREFIX}"
+
+   # build a single executable with symlinks
+   --disable-separate-binaries
+   --disable-separate-tools
+
+   # used purely to control/disrespect *FLAGS
+   --disable-debugging
+   --disable-new_dialect
+   --disable-optimization
+   --disable-strong-optimization
+   --disable-security
+   --disable-nopie-security
+   --disable-strong-security
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   dobashcomp bash/eix
+   dotmpfiles tmpfiles.d/eix.conf
+
+   rm -r "${ED}"/usr/bin/eix-functions.sh || die
+}
+
+pkg_postinst() {
+   tmpfiles_process eix.conf
+
+   local obs=${EROOT}/var/cache/eix.previous
+   if [[ -f ${obs} ]]; then
+   ewarn "Found obsolete ${obs}, please remove it"
+   fi
+}
+
+pkg_postrm() {
+   if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
+   rm -rf "${EROOT}/var/cache/${PN}" || die
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2021-01-06 Thread Fabian Groffen
commit: 54e7bc9ddf5cec39f5682072907040311349e641
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Jan  6 13:20:58 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Jan  6 13:20:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54e7bc9d

app-portage/eix: drop x86-macos

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 app-portage/eix/eix-0.34.11.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
index 99a6374cf33..430eb3dd9e8 100644
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ b/app-portage/eix/eix-0.34.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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 ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+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"
 IUSE="debug doc nls sqlite"
 
 BOTHDEPEND="nls? ( virtual/libintl )



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2020-12-27 Thread Fabian Groffen
commit: 9c757695b845016da3344be23263c70983456d57
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Dec 27 13:54:21 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Dec 27 13:54:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c757695

app-portage/eix: drop ppc-aix m68k-mint

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 app-portage/eix/eix-0.34.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
index 27581250b04..99a6374cf33 100644
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ b/app-portage/eix/eix-0.34.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+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 ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc nls sqlite"
 
 BOTHDEPEND="nls? ( virtual/libintl )



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2020-12-20 Thread Michał Górny
commit: 7c29851a31c132a6a8ad7939134db13dce1ed813
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 20 20:22:01 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec 20 20:34:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c29851a

app-portage/eix: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/eix/Manifest   |   2 -
 app-portage/eix/eix-0.34.10.ebuild | 102 -
 app-portage/eix/eix-0.34.9.ebuild  | 102 -
 3 files changed, 206 deletions(-)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index e1815e619a5..eed43fefef1 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,3 +1 @@
-DIST eix-0.34.10.tar.xz 630356 BLAKE2B 
6336652dbb3703295693dea40cb2d2a2d5c7fc17d28150faae07b566cccfddb8d103b83c5db34e839434b1fbbe0ff87a08c4af84d2f80c5e9b786d88d5743f96
 SHA512 
35270b7fafe6a13ebb33271b3baba07f61928d9c9c40aafabc47d8f7bd4a8d44e1013004361e9cf81e8517d5b1a8a3010d18c6fcac02dcc8b44dc443762f82a3
 DIST eix-0.34.11.tar.xz 629932 BLAKE2B 
7b203a4763a880379e5bafe086f70aeca6ad508cd558cc53d53683d8ee4a85111ba9fdea9fa81cd9c3939dd01ea392876b2714257138fd40a2c6b124e0fdbc90
 SHA512 
518dee499ed27acd39ea4c26e7b94a1098408b1d8cf6bc593e5e4b06aa973ae664e155886681c1e90e4a89afe8b54e05f8bd08d6ace2a2e1559fa613e5a351e7
-DIST eix-0.34.9.tar.xz 629672 BLAKE2B 
ba9a5de98f74baa711e7483e284980c0fe5e956512de590954bf848f6cf6baad5db899256e927e7cb984d7276157fa9c42052cc8fb1ccc52e5e530cc31d39d84
 SHA512 
5cb00c813bc31971a0cfd77cae0c676040d33f24963cb241274918d2e381956ca949593e0637d81040a9751db0a925552913188cc25ada9a90c6007c31f72e43

diff --git a/app-portage/eix/eix-0.34.10.ebuild 
b/app-portage/eix/eix-0.34.10.ebuild
deleted file mode 100644
index f11bcd6edbb..000
--- a/app-portage/eix/eix-0.34.10.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools bash-completion-r1 flag-o-matic tmpfiles
-
-DESCRIPTION="Search and query ebuilds"
-HOMEPAGE="https://github.com/vaeth/eix/;
-SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="debug doc nls sqlite"
-
-BOTHDEPEND="nls? ( virtual/libintl )
-   sqlite? ( >=dev-db/sqlite-3:= )"
-RDEPEND="${BOTHDEPEND}
-   >=app-shells/push-2.0-r1
-   >=app-shells/quoter-3.0_p2-r1"
-DEPEND="${BOTHDEPEND}
-   app-arch/xz-utils
-   nls? ( sys-devel/gettext )"
-
-pkg_setup() {
-   # remove stale cache file to prevent collisions
-   local old_cache=${EROOT}/var/cache/${PN}
-   if [[ -f ${old_cache} ]]; then
-   rm "${old_cache}" || die
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
-
-   sed -e "/eixf_source=/s:push.sh:cat 
\"${EPREFIX}/usr/share/push/push.sh\":" \
-   -e "/eixf_source=/s:quoter_pipe.sh:cat 
\"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-   -i src/eix-functions.sh.in || die
-   sed -e "s:'\$(bindir)/eix-functions.sh':cat 
\"${EPREFIX}/usr/share/eix/eix-functions\":" \
-   -i src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable debug paranoic-asserts)
-   $(use_enable nls)
-   $(use_with doc extra-doc)
-   $(use_with sqlite)
-   --without-protobuf
-
-   # default configuration
-   $(use_with prefix always-accept-keywords)
-   --with-dep-default
-   --with-required-use-default
-
-   # paths
-   --with-portage-rootpath="${ROOTPATH}"
-   --with-eprefix-default="${EPREFIX}"
-
-   # build a single executable with symlinks
-   --disable-separate-binaries
-   --disable-separate-tools
-
-   # used purely to control/disrespect *FLAGS
-   --disable-debugging
-   --disable-new_dialect
-   --disable-optimization
-   --disable-strong-optimization
-   --disable-security
-   --disable-nopie-security
-   --disable-strong-security
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   dobashcomp bash/eix
-   dotmpfiles tmpfiles.d/eix.conf
-
-   rm -r "${ED}"/usr/bin/eix-functions.sh || die
-}
-
-pkg_postinst() {
-   tmpfiles_process eix.conf
-
-   local obs=${EROOT}/var/cache/eix.previous
-   if [[ -f ${obs} ]]; then
-   ewarn "Found obsolete ${obs}, please remove it"

[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2020-12-20 Thread Thomas Deutschmann
commit: 55198103025ae885318964969000d7e1f575288d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Dec 20 18:53:32 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Dec 20 19:06:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55198103

app-portage/eix: x86 stable (bug #760282)

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-portage/eix/eix-0.34.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
index 11761983768..27581250b04 100644
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ b/app-portage/eix/eix-0.34.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc nls sqlite"
 
 BOTHDEPEND="nls? ( virtual/libintl )



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2020-12-18 Thread Sergei Trofimovich
commit: 2e86fb0787fa9b2a6c0c0681427e542095a14e84
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 18 20:23:59 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Dec 18 20:49:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e86fb07

app-portage/eix: stable 0.34.11 for hppa, bug #760282

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-portage/eix/eix-0.34.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
index 845e8006cde..11761983768 100644
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ b/app-portage/eix/eix-0.34.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc nls sqlite"
 
 BOTHDEPEND="nls? ( virtual/libintl )



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2020-12-18 Thread Sam James
commit: 6e140aad624d82ce8deada5d7bea042df3da6905
Author: Sam James  gentoo  org>
AuthorDate: Fri Dec 18 18:21:40 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Dec 18 18:21:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e140aad

app-portage/eix: Stabilize 0.34.11 s390, #760282

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
index bbe05a8f876..845e8006cde 100644
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ b/app-portage/eix/eix-0.34.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc nls sqlite"
 
 BOTHDEPEND="nls? ( virtual/libintl )



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2020-12-18 Thread Sam James
commit: b05c5fbcc361eef7eafa20a739ea6a50886eecef
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 17 18:51:40 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 17 18:52:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b05c5fbc

app-portage/eix: Stabilize 0.34.11 arm, #760282

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
index 1a93f09d34f..bbe05a8f876 100644
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ b/app-portage/eix/eix-0.34.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc nls sqlite"
 
 BOTHDEPEND="nls? ( virtual/libintl )



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2020-12-18 Thread Sergei Trofimovich
commit: 95113d6e70a3dfc72da3217dbe177bfda35df023
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Dec 18 10:19:41 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Dec 18 10:25:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95113d6e

app-portage/eix: stable 0.34.11 for ppc64

stable wrt bug #760282

Package-Manager: Portage-3.0.12, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-portage/eix/eix-0.34.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
index 60c3f3a7729..1a93f09d34f 100644
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ b/app-portage/eix/eix-0.34.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc nls sqlite"
 
 BOTHDEPEND="nls? ( virtual/libintl )



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2020-12-16 Thread Sam James
commit: 89ca97d57a0ee2d6109a73f2c1dc86997d17b890
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 17 04:54:50 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 17 04:54:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89ca97d5

app-portage/eix: Stabilize 0.34.11 arm64, #760282

Signed-off-by: Sam James  gentoo.org>

 app-portage/eix/eix-0.34.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
index 5b8783b8cd0..449465c8e9a 100644
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ b/app-portage/eix/eix-0.34.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc nls sqlite"
 
 BOTHDEPEND="nls? ( virtual/libintl )



[gentoo-commits] repo/gentoo:master commit in: app-portage/eix/

2020-12-16 Thread Sergei Trofimovich
commit: 27123f9c6b471240050084b0a3f3b16dfc4e28ef
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Dec 16 20:32:11 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Dec 16 21:24:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27123f9c

app-portage/eix: stable 0.34.11 for sparc, bug #760282

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-portage/eix/eix-0.34.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/eix/eix-0.34.11.ebuild 
b/app-portage/eix/eix-0.34.11.ebuild
index f2a0f4ca380..5b8783b8cd0 100644
--- a/app-portage/eix/eix-0.34.11.ebuild
+++ b/app-portage/eix/eix-0.34.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc nls sqlite"
 
 BOTHDEPEND="nls? ( virtual/libintl )



  1   2   3   >