public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Manuel Rüger" <mrueg@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/eix/
Date: Fri,  2 Mar 2018 14:40:46 +0000 (UTC)	[thread overview]
Message-ID: <1520001625.3919b5b279e58a2667b17aa339cf13e6e759c5a7.mrueg@gentoo> (raw)

commit:     3919b5b279e58a2667b17aa339cf13e6e759c5a7
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  2 14:39:15 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Mar  2 14:40:25 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3919b5b2

app-portage/eix: Version bump to 0.33.2

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-portage/eix/Manifest          |   1 +
 app-portage/eix/eix-0.33.2.ebuild | 110 ++++++++++++++++++++++++++++++++++++++
 app-portage/eix/metadata.xml      |   1 +
 3 files changed, 112 insertions(+)

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
index e9922d972e4..8ad89de180c 100644
--- a/app-portage/eix/Manifest
+++ b/app-portage/eix/Manifest
@@ -1,2 +1,3 @@
 DIST eix-0.32.9.tar.xz 599072 BLAKE2B 40fd86520e5c98e4a7cf6710fcd16ce685cc14fbafa417f6694134702b61b83d8d47cfc908c5621d77ba827f7449c985de7dc16650358a8ccad2ab4b48644e38 SHA512 1a7c3d5f371150f5990fe1f1c4cadb0e3ee0a5810011702904aabd58ca250c10f820d6c64e7182096e0b7e2aa001cf573c5f2e83499ceb350cc59b599ec2ca5b
 DIST eix-0.33.0.tar.xz 610600 BLAKE2B 484d70c3efcceebf54f2a2e0af69b701716d6c6c45aa867a8cc372b135db29bb1bf23cf0efa6d3d2a19224255113229fa30cdd40ab4d64f226eafa73991daa96 SHA512 6fd4ca253ee908eb192ee35c4228bea0fa8a04030070b35489bddc639053c2e3f6a2faf32f539ffd2c7d9da0c664ff5f29ac0d732d9a47b6c9976a65dd402de2
+DIST eix-0.33.2.tar.xz 614192 BLAKE2B dcbbdb9b9ccf6f780d89c791c34cc588700720b7f015fb0db7ea86dd78a383892266b0e96c49282fdea58e78293c69e8acc153cea631443c35d3ee29dd4c016f SHA512 28ca4cc57e5c7ef81feb37fa90d598e681e192c442c7446c93a442908d2a9744340f7a93c71135ec3083fb85c48a65638c8929b6e1e632464132f4320225d637

diff --git a/app-portage/eix/eix-0.33.2.ebuild b/app-portage/eix/eix-0.33.2.ebuild
new file mode 100644
index 00000000000..8e590ea981d
--- /dev/null
+++ b/app-portage/eix/eix-0.33.2.ebuild
@@ -0,0 +1,110 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="debug doc +jumbo-build 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 \"${EROOT}usr/share/push/push.sh\":" \
+		-e "/eixf_source=/s:quoter_pipe.sh:cat \"${EROOT}usr/share/quoter/quoter_pipe.sh\":" \
+		-i src/eix-functions.sh.in || die
+	sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EROOT}usr/share/eix/eix-functions\\\\\":" \
+		-i src/Makefile.am || die
+	eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		$(use_enable debug paranoic-asserts)
+		$(use_enable nls)
+		$(use_enable jumbo-build)
+		$(use_with doc extra-doc)
+		$(use_with sqlite)
+
+		# 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
+	)
+
+	# https://github.com/vaeth/eix/issues/35
+	append-cxxflags -std=c++11
+
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	dobashcomp bash/eix
+	dotmpfiles tmpfiles.d/eix.conf
+
+	rm -r "${ED%/}"/usr/bin/eix-functions.sh || die
+
+	keepdir /var/cache/eix
+}
+
+pkg_postinst() {
+	if ! use prefix; then
+		# note: if this is done in src_install(), portage:portage
+		# ownership may be reset to root
+		tmpfiles_process eix.conf
+	fi
+
+	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
+}

diff --git a/app-portage/eix/metadata.xml b/app-portage/eix/metadata.xml
index f07795f5198..9a319335995 100644
--- a/app-portage/eix/metadata.xml
+++ b/app-portage/eix/metadata.xml
@@ -14,6 +14,7 @@
   <use>
     <flag name="debug">Build with upstream's CXXFLAGS/LDFLAGS for debugging support; not recommended for normal use.</flag>
     <flag name="doc">Create description of the eix cache file additionally in html format</flag>
+    <flag name="jumbo-build">Compile faster and produce better binary. Recommended unless compiling on a quite memory-restricted system.</flag>
     <flag name="sqlite">Compile in support for portage's sqlite backend; to actually use it you need additional configuration of portage and eix</flag>
   </use>
   <upstream>


             reply	other threads:[~2018-03-02 14:40 UTC|newest]

Thread overview: 275+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-02 14:40 Manuel Rüger [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-04 17:28 [gentoo-commits] repo/gentoo:master commit in: app-portage/eix/ Michał Górny
2025-01-04 17:12 Sam James
2024-12-28  9:14 Arthur Zamarin
2024-12-28  9:06 Arthur Zamarin
2024-12-28  8:59 Arthur Zamarin
2024-12-28  8:59 Arthur Zamarin
2024-12-28  8:58 Arthur Zamarin
2024-12-28  8:58 Arthur Zamarin
2024-12-28  8:54 Arthur Zamarin
2024-12-07 10:52 Florian Schmaus
2024-12-04 10:59 Florian Schmaus
2024-03-24 14:43 Mike Gilbert
2023-08-03  4:49 Michał Górny
2023-08-02 23:02 Sam James
2023-08-02 13:35 Sam James
2023-08-02  4:27 Sam James
2023-07-24 11:03 Jakov Smolić
2023-05-29  4:37 Michał Górny
2023-04-08 18:45 Michał Górny
2023-04-08 18:12 Arthur Zamarin
2023-04-08 18:05 Arthur Zamarin
2023-04-08 17:43 Arthur Zamarin
2023-04-08 17:42 Arthur Zamarin
2023-04-08 17:37 Arthur Zamarin
2023-04-08 17:32 Arthur Zamarin
2023-04-08 17:31 Arthur Zamarin
2023-04-08 16:59 Arthur Zamarin
2023-01-29 15:47 Michał Górny
2022-09-16 12:14 Michał Górny
2022-09-16  8:40 Arthur Zamarin
2022-09-05 14:03 Agostino Sarubbo
2022-09-04 21:49 Jakov Smolić
2022-09-04 18:26 Arthur Zamarin
2022-09-04 18:21 Arthur Zamarin
2022-09-04 17:48 Sam James
2022-09-04 17:48 Sam James
2022-09-04 17:45 Sam James
2022-08-23  5:24 Sam James
2022-07-30 11:19 Michał Górny
2022-07-30  9:51 Arthur Zamarin
2022-07-26  2:17 Sam James
2022-07-26  2:05 Sam James
2022-07-26  2:05 Sam James
2022-07-26  2:05 Sam James
2022-07-26  2:05 Sam James
2022-07-26  1:36 Sam James
2022-07-26  1:36 Sam James
2022-06-07  7:15 Michał Górny
2022-06-07  6:45 Sam James
2022-06-07  6:43 Jakov Smolić
2022-06-06 11:52 Jakov Smolić
2022-06-06 11:01 Jakov Smolić
2022-06-06 10:24 Jakov Smolić
2022-06-06 10:22 Jakov Smolić
2022-06-06 10:22 Jakov Smolić
2022-06-06 10:20 Jakov Smolić
2022-06-06  9:39 Jakov Smolić
2022-05-05  7:10 WANG Xuerui
2022-05-02 12:46 Joonas Niilola
2022-04-18 18:39 Michał Górny
2022-04-18 18:22 Arthur Zamarin
2022-04-15  4:39 Sam James
2022-03-26 19:11 Arthur Zamarin
2022-03-25  7:48 Agostino Sarubbo
2022-03-25  7:47 Agostino Sarubbo
2022-03-25  7:46 Agostino Sarubbo
2022-03-24 19:03 Jakov Smolić
2022-03-24 19:03 Jakov Smolić
2022-03-24 19:03 Jakov Smolić
2022-01-13 21:51 Michał Górny
2021-11-07  8:16 Michał Górny
2021-11-07  8:16 Michał Górny
2021-11-06 20:43 Sam James
2021-10-30 22:55 Sam James
2021-10-30 22:55 Sam James
2021-10-30 17:29 Sam James
2021-10-30 17:29 Sam James
2021-10-30 17:22 Agostino Sarubbo
2021-10-29 18:53 Sam James
2021-10-29 18:53 Sam James
2021-10-03  6:46 Michał Górny
2021-08-06  3:32 Michał Górny
2021-08-06  0:30 Sam James
2021-08-03 15:36 Agostino Sarubbo
2021-08-01  5:14 Sam James
2021-08-01  5:14 Sam James
2021-07-31 22:23 Sam James
2021-06-10 23:13 Michał Górny
2021-06-07 18:38 Michał Górny
2021-06-06  6:01 Michał Górny
2021-02-25 19:36 Michał Górny
2021-02-25 18:34 Sergei Trofimovich
2021-02-21  4:30 Sam James
2021-02-19 17:21 Sam James
2021-02-19 16:11 Sam James
2021-02-19  3:47 Sam James
2021-02-19  3:43 Sam James
2021-02-19  2:54 Sam James
2021-02-19  2:45 Sam James
2021-02-19  1:51 Thomas Deutschmann
2021-01-15 18:34 Michał Górny
2021-01-06 13:23 Fabian Groffen
2020-12-27 14:01 Fabian Groffen
2020-12-20 20:34 Michał Górny
2020-12-20 19:07 Thomas Deutschmann
2020-12-18 20:49 Sergei Trofimovich
2020-12-18 18:45 Sam James
2020-12-18 14:22 Sam James
2020-12-18 10:25 Sergei Trofimovich
2020-12-17  4:55 Sam James
2020-12-16 21:24 Sergei Trofimovich
2020-12-16 19:51 Sam James
2020-11-18  9:12 Michał Górny
2020-11-17 19:05 Agostino Sarubbo
2020-10-31 11:06 Mikle Kolyada
2020-10-28 20:08 Michał Górny
2020-10-28 16:18 Sam James
2020-10-26 23:51 Sergei Trofimovich
2020-10-26 23:49 Sergei Trofimovich
2020-10-26 23:47 Sergei Trofimovich
2020-10-26 23:44 Sergei Trofimovich
2020-10-26  1:13 Sam James
2020-10-25 21:34 Thomas Deutschmann
2020-10-25  6:41 Michał Górny
2020-09-18  9:38 Michał Górny
2020-09-13  7:13 Michał Górny
2020-09-09  7:18 Michał Górny
2020-09-08 20:37 Michał Górny
2020-09-08 19:11 Michał Górny
2020-09-06 18:15 Michał Górny
2020-08-05 15:18 Michał Górny
2020-08-05 14:17 Agostino Sarubbo
2020-08-05 14:06 Agostino Sarubbo
2020-08-02 11:39 Sergei Trofimovich
2020-08-01  9:01 Sergei Trofimovich
2020-07-31 23:31 Sam James
2020-07-31 17:53 Sergei Trofimovich
2020-05-31 21:00 Michał Górny
2020-05-21 11:07 Michał Górny
2020-05-21  7:08 Michał Górny
2020-05-20 17:59 Michał Górny
2020-05-08 20:58 Mart Raudsepp
2020-05-08 10:46 Agostino Sarubbo
2020-05-06 17:34 Sergei Trofimovich
2020-05-05  6:46 Agostino Sarubbo
2020-05-03 19:11 Agostino Sarubbo
2020-05-03 10:25 Agostino Sarubbo
2020-05-03 10:22 Agostino Sarubbo
2020-05-03 10:12 Agostino Sarubbo
2020-03-30  8:01 Mikle Kolyada
2020-01-17 11:14 Mikle Kolyada
2020-01-17 11:14 Mikle Kolyada
2020-01-17 10:47 Agostino Sarubbo
2019-12-15 13:00 Michał Górny
2019-12-13  7:44 Mikle Kolyada
2019-12-13  6:41 Mikle Kolyada
2019-07-29 15:13 Mikle Kolyada
2019-07-29 15:13 Mikle Kolyada
2019-07-28  6:41 Michał Górny
2019-07-28  6:41 Michał Górny
2019-06-14  7:25 Mikle Kolyada
2019-05-04 13:33 Andreas K. Hüttel
2019-04-12  7:06 Sergei Trofimovich
2019-04-10 15:07 Michał Górny
2019-04-10 14:09 Mikle Kolyada
2019-04-10 14:08 Mikle Kolyada
2019-04-10 14:08 Mikle Kolyada
2019-04-10 14:08 Mikle Kolyada
2019-04-10 14:08 Mikle Kolyada
2019-04-10 14:08 Mikle Kolyada
2019-04-08 22:07 Sergei Trofimovich
2019-04-08 20:49 Aaron Bauman
2019-04-07  9:41 Mikle Kolyada
2019-04-07  9:38 Mikle Kolyada
2019-02-25 19:43 Mikle Kolyada
2019-01-10  8:26 Mikle Kolyada
2019-01-07 21:17 Mart Raudsepp
2019-01-05 22:34 Sergei Trofimovich
2019-01-01 10:52 Sergei Trofimovich
2018-12-30 21:13 Mikle Kolyada
2018-12-23 19:52 Matt Turner
2018-12-08 11:54 Mikle Kolyada
2018-12-08  9:44 Sergei Trofimovich
2018-12-08  9:36 Sergei Trofimovich
2018-11-29 14:42 Mikle Kolyada
2018-11-28 23:11 Sergei Trofimovich
2018-11-28  9:26 Mikle Kolyada
2018-11-28  9:24 Mikle Kolyada
2018-11-25 10:11 Michał Górny
2018-11-23 17:15 Mikle Kolyada
2018-11-23 11:09 Mikle Kolyada
2018-11-21 20:32 Mikle Kolyada
2018-11-11 14:01 Mikle Kolyada
2018-11-05 15:11 Mikle Kolyada
2018-10-22 15:04 Michał Górny
2018-10-05  4:56 Markus Meier
2018-10-02 14:02 Tobias Klausmann
2018-09-29  8:16 Michał Górny
2018-09-19 17:35 Thomas Deutschmann
2018-09-19 10:12 Mikle Kolyada
2018-09-18 22:11 Sergei Trofimovich
2018-09-18  0:59 Matt Turner
2018-09-18  0:59 Matt Turner
2018-09-17 21:49 Mart Raudsepp
2018-09-17 19:27 Andreas Sturmlechner
2018-09-15 18:27 Mikle Kolyada
2018-03-04 12:05 Michał Górny
2018-03-03 15:21 Michał Górny
2018-01-05 15:38 Ulrich Müller
2018-01-01 10:34 Michał Górny
2017-12-09  1:36 Michael Weber
2017-12-09  1:36 Michael Weber
2017-11-08 20:14 Sergei Trofimovich
2017-11-05 18:06 Sergei Trofimovich
2017-10-19 13:01 Manuel Rüger
2017-10-17 19:07 Markus Meier
2017-10-14 21:43 Michał Górny
2017-10-14 21:43 Michał Górny
2017-10-08  9:27 Michał Górny
2017-10-06 10:30 Sergei Trofimovich
2017-10-03 15:25 Sergei Trofimovich
2017-10-03 10:26 Thomas Deutschmann
2017-10-02 16:07 Robin H. Johnson
2017-06-07  7:09 Michael Weber
2017-04-19 11:45 Michael Weber
2017-04-18  6:58 Jeroen Roovers
2017-03-21 14:11 Ian Stakenvicius
2017-02-17 10:56 Agostino Sarubbo
2017-02-15 13:49 Tobias Klausmann
2017-02-12 14:48 Agostino Sarubbo
2017-02-10  9:43 Michael Weber
2017-02-10  9:43 Michael Weber
2017-02-10  9:43 Michael Weber
2017-02-10  1:12 Michael Weber
2017-02-10  1:12 Michael Weber
2017-02-10  0:20 Michael Weber
2017-01-16 19:02 Brian Evans
2016-11-15 16:22 Michał Górny
2016-11-06 15:34 Michał Górny
2016-11-06 15:34 Michał Górny
2016-11-06 15:34 Michał Górny
2016-10-29 14:35 Ian Stakenvicius
2016-10-10 15:14 Jeroen Roovers
2016-10-01 12:19 Jeroen Roovers
2016-09-26 20:06 Manuel Rüger
2016-08-31 12:29 Manuel Rüger
2016-08-31 12:29 Manuel Rüger
2016-08-16 19:29 Manuel Rüger
2016-08-16 19:29 Manuel Rüger
2016-08-16 10:29 Manuel Rüger
2016-05-25 21:01 Matt Turner
2016-05-17 18:34 Markus Meier
2016-05-13  8:41 Agostino Sarubbo
2016-02-14 22:09 Manuel Rüger
2016-02-09 20:32 Manuel Rüger
2016-02-09 20:30 Manuel Rüger
2016-01-12 12:55 Fabian Groffen
2016-01-08 16:04 William Hubbs
2016-01-08 16:04 William Hubbs
2016-01-04 16:54 Ian Stakenvicius
2016-01-04 16:54 Ian Stakenvicius
2015-12-13  0:17 Manuel Rüger
2015-11-08 21:49 Manuel Rüger
2015-11-07 13:20 Manuel Rüger
2015-10-22 16:08 Ian Stakenvicius
2015-10-20 21:10 Manuel Rüger
2015-10-11 12:06 Mikle Kolyada
2015-10-02 11:05 Mikle Kolyada
2015-10-01 20:41 Markus Meier
2015-09-27 18:10 Patrice Clement
2015-09-25 14:13 Agostino Sarubbo
2015-09-24 10:36 Agostino Sarubbo
2015-09-22  4:21 Jeroen Roovers
2015-09-20 12:31 Tobias Klausmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1520001625.3919b5b279e58a2667b17aa339cf13e6e759c5a7.mrueg@gentoo \
    --to=mrueg@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox