From 8a8ba1d42cb3920d079de9efc5a71eab77208831 Mon Sep 17 00:00:00 2001 From: Martin Väth Date: Thu, 3 May 2018 21:14:00 +0200 Subject: app-portage/eix: Alpha version bump --- app-portage/eix/Manifest | 2 +- app-portage/eix/eix-0.33.3_alpha20180503-r1.ebuild | 169 +++++++++++++++++++++ app-portage/eix/eix-0.33.3_alpha20180503.ebuild | 169 --------------------- app-portage/eix/eix-99999999.ebuild | 2 +- 4 files changed, 171 insertions(+), 171 deletions(-) create mode 100644 app-portage/eix/eix-0.33.3_alpha20180503-r1.ebuild delete mode 100644 app-portage/eix/eix-0.33.3_alpha20180503.ebuild (limited to 'app-portage') diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest index 96f6e499..bbd5dca0 100644 --- a/app-portage/eix/Manifest +++ b/app-portage/eix/Manifest @@ -1,2 +1,2 @@ DIST eix-0.33.2.tar.xz 614192 SHA512 28ca4cc57e5c7ef81feb37fa90d598e681e192c442c7446c93a442908d2a9744340f7a93c71135ec3083fb85c48a65638c8929b6e1e632464132f4320225d637 -DIST eix-0.33.3_alpha20180503.tar.gz 675859 SHA512 c5af8522711d78634169f1a23cd13d12769f9e4e0273fe7316f8ae471ed91e1dd28a9817cf6eca4b96e6d23270e485527ac6b6c17137b6b3ea7f1332664fb6ff +DIST eix-0.33.3_alpha20180503.tar.gz 675960 SHA512 b88a703a45fc86978e4370edca56392bcb4fa37817dad6190ffe7a5b44e51afcf07d5d168b8a7a02546da199d0074a9644713cfb15de7231b135378b1aaaf385 diff --git a/app-portage/eix/eix-0.33.3_alpha20180503-r1.ebuild b/app-portage/eix/eix-0.33.3_alpha20180503-r1.ebuild new file mode 100644 index 00000000..4f20532c --- /dev/null +++ b/app-portage/eix/eix-0.33.3_alpha20180503-r1.ebuild @@ -0,0 +1,169 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +WANT_LIBTOOL=none +AUTOTOOLS_AUTO_DEPEND=no +MESON_AUTO_DEPEND=no +inherit autotools bash-completion-r1 meson tmpfiles + +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" +case ${PV} in +99999999*) + EGIT_REPO_URI="https://github.com/vaeth/${PN}.git" + inherit git-r3 + SRC_URI="" + KEYWORDS="" + PROPERTIES="live";; +*) + RESTRICT="mirror" + EGIT_COMMIT="b2c7840899a83a5a4de8438333bab29f1104b9db" + SRC_URI="https://github.com/vaeth/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-${EGIT_COMMIT}";; +esac + +DESCRIPTION="Search and query ebuilds" +HOMEPAGE="https://github.com/vaeth/eix/" + +LICENSE="GPL-2" +SLOT="0" +PLOCALES="de ru" +IUSE="debug +dep doc +jumbo-build" +for i in ${PLOCALES}; do + IUSE+=" l10n_${i}" +done +IUSE+=" +meson nls optimization +required-use security strong-optimization strong-security sqlite swap-remote tools" + +BOTHDEPEND="nls? ( virtual/libintl ) + sqlite? ( >=dev-db/sqlite-3:= )" +RDEPEND="${BOTHDEPEND} + >=app-shells/push-3.1 + >=app-shells/quoter-4.1" +DEPEND="${BOTHDEPEND} + meson? ( + >=dev-util/meson-0.41.0 + >=dev-util/ninja-1.7.2 + strong-optimization? ( >=sys-devel/gcc-config-1.9.1 ) + nls? ( sys-devel/gettext ) + ) + !meson? ( ${AUTOTOOLS_DEPEND} >=sys-devel/gettext-0.19.6 )" + +pkg_setup() { + # remove stale cache file to prevent collisions + local old_cache="${EROOT}var/cache/${PN}" + test -f "${old_cache}" && rm -f -- "${old_cache}" +} + +src_prepare() { + sed -i -e "s'/'${EPREFIX}/'" -- "${S}"/tmpfiles.d/eix.conf || die + default + use meson || { + eautopoint + eautoreconf + } +} + +src_configure() { + local i + export LINGUAS= + for i in ${PLOCALES}; do + use l10n_${i} && LINGUAS+=${LINGUAS:+ }${i} + done + if use meson; then + local emesonargs=( + -Ddocdir="${EPREFIX}/usr/share/doc/${P}" + -Dhtmldir="${EPREFIX}/usr/share/doc/${P}/html" + $(meson_use jumbo-build) + $(meson_use sqlite) + $(meson_use doc extra-doc) + $(meson_use nls) + $(meson_use tools separate-tools) + $(meson_use security) + $(meson_use optimization) + $(meson_use strong-security) + $(meson_use strong-optimization) + $(meson_use debug debugging) + $(meson_use swap-remote) + $(meson_use prefix always-accept-keywords) + $(meson_use dep dep-default) + $(meson_use required-use required-use-default) + -Dzsh-completion="${EPREFIX}/usr/share/zsh/site-functions" + -Dportage-rootpath="${ROOTPATH}" + -Deprefix-default="${EPREFIX}" + ) + if use prefix; then + emesonarge+=( + -Deix-user= + -Deix-uid=-1 + ) + fi + meson_src_configure + else + local myconf=( + $(use_with jumbo-build) + $(use_with sqlite) + $(use_with doc extra-doc) + $(use_enable nls) + $(use_enable tools separate-tools) + $(use_enable security) + $(use_enable optimization) + $(use_enable strong-security) + $(use_enable strong-optimization) + $(use_enable debug debugging) + $(use_enable swap-remote) + $(use_with prefix always-accept-keywords) + $(use_with dep dep-default) + $(use_with required-use required-use-default) + --with-zsh-completion + --with-portage-rootpath="${ROOTPATH}" + --with-eprefix-default="${EPREFIX}" + ) + if use prefix; then + myconf+=( + --with-eix-user= + --with-eix-uid=-1 + ) + fi + econf "${myconf[@]}" + fi +} + +src_compile() { + if use meson; then + meson_src_compile + else + default + fi +} + +src_test() { + if use meson; then + meson_src_test + else + default + fi +} + +src_install() { + if use meson; then + meson_src_install + else + default + fi + dobashcomp bash/eix + dotmpfiles tmpfiles.d/eix.conf +} + +pkg_postinst() { + local obs="${EROOT}var/cache/eix.previous" + if test -f "${obs}"; then + ewarn "Found obsolete ${obs}, please remove it" + fi + tmpfiles_process eix.conf +} + +pkg_postrm() { + if [ -z "${REPLACED_BY_VERSION}" ]; then + rm -rf -- "${EROOT}var/cache/${PN}" + fi +} diff --git a/app-portage/eix/eix-0.33.3_alpha20180503.ebuild b/app-portage/eix/eix-0.33.3_alpha20180503.ebuild deleted file mode 100644 index 536dd1f8..00000000 --- a/app-portage/eix/eix-0.33.3_alpha20180503.ebuild +++ /dev/null @@ -1,169 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -WANT_LIBTOOL=none -AUTOTOOLS_AUTO_DEPEND=no -MESON_AUTO_DEPEND=no -inherit autotools bash-completion-r1 meson tmpfiles - -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" -case ${PV} in -99999999*) - EGIT_REPO_URI="https://github.com/vaeth/${PN}.git" - inherit git-r3 - SRC_URI="" - KEYWORDS="" - PROPERTIES="live";; -*) - RESTRICT="mirror" - EGIT_COMMIT="02258b6670f01e12128ae9af089956146e933b2e" - SRC_URI="https://github.com/vaeth/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}-${EGIT_COMMIT}";; -esac - -DESCRIPTION="Search and query ebuilds" -HOMEPAGE="https://github.com/vaeth/eix/" - -LICENSE="GPL-2" -SLOT="0" -PLOCALES="de ru" -IUSE="debug +dep doc +jumbo-build" -for i in ${PLOCALES}; do - IUSE+=" l10n_${i}" -done -IUSE+=" +meson nls optimization +required-use security strong-optimization strong-security sqlite swap-remote tools" - -BOTHDEPEND="nls? ( virtual/libintl ) - sqlite? ( >=dev-db/sqlite-3:= )" -RDEPEND="${BOTHDEPEND} - >=app-shells/push-3.1 - >=app-shells/quoter-4.1" -DEPEND="${BOTHDEPEND} - meson? ( - >=dev-util/meson-0.41.0 - >=dev-util/ninja-1.7.2 - strong-optimization? ( >=sys-devel/gcc-config-1.9.1 ) - nls? ( sys-devel/gettext ) - ) - !meson? ( ${AUTOTOOLS_DEPEND} >=sys-devel/gettext-0.19.6 )" - -pkg_setup() { - # remove stale cache file to prevent collisions - local old_cache="${EROOT}var/cache/${PN}" - test -f "${old_cache}" && rm -f -- "${old_cache}" -} - -src_prepare() { - sed -i -e "s'/'${EPREFIX}/'" -- "${S}"/tmpfiles.d/eix.conf || die - default - use meson || { - eautopoint - eautoreconf - } -} - -src_configure() { - local i - export LINGUAS= - for i in ${PLOCALES}; do - use l10n_${i} && LINGUAS+=${LINGUAS:+ }${i} - done - if use meson; then - local emesonargs=( - -Ddocdir="${EPREFIX}/usr/share/doc/${P}" - -Dhtmldir="${EPREFIX}/usr/share/doc/${P}/html" - $(meson_use jumbo-build) - $(meson_use sqlite) - $(meson_use doc extra-doc) - $(meson_use nls) - $(meson_use tools separate-tools) - $(meson_use security) - $(meson_use optimization) - $(meson_use strong-security) - $(meson_use strong-optimization) - $(meson_use debug debugging) - $(meson_use swap-remote) - $(meson_use prefix always-accept-keywords) - $(meson_use dep dep-default) - $(meson_use required-use required-use-default) - -Dzsh-completion="${EPREFIX}/usr/share/zsh/site-functions" - -Dportage-rootpath="${ROOTPATH}" - -Deprefix-default="${EPREFIX}" - ) - if use prefix; then - emesonarge+=( - -Deix-user= - -Deix-uid=-1 - ) - fi - meson_src_configure - else - local myconf=( - $(use_with jumbo-build) - $(use_with sqlite) - $(use_with doc extra-doc) - $(use_enable nls) - $(use_enable tools separate-tools) - $(use_enable security) - $(use_enable optimization) - $(use_enable strong-security) - $(use_enable strong-optimization) - $(use_enable debug debugging) - $(use_enable swap-remote) - $(use_with prefix always-accept-keywords) - $(use_with dep dep-default) - $(use_with required-use required-use-default) - --with-zsh-completion - --with-portage-rootpath="${ROOTPATH}" - --with-eprefix-default="${EPREFIX}" - ) - if use prefix; then - myconf+=( - --with-eix-user= - --with-eix-uid=-1 - ) - fi - econf "${myconf[@]}" - fi -} - -src_compile() { - if use meson; then - meson_src_compile - else - default - fi -} - -src_test() { - if use meson; then - meson_src_test - else - default - fi -} - -src_install() { - if use meson; then - meson_src_install - else - default - fi - dobashcomp bash/eix - dotmpfiles tmpfiles.d/eix.conf -} - -pkg_postinst() { - local obs="${EROOT}var/cache/eix.previous" - if test -f "${obs}"; then - ewarn "Found obsolete ${obs}, please remove it" - fi - tmpfiles_process eix.conf -} - -pkg_postrm() { - if [ -z "${REPLACED_BY_VERSION}" ]; then - rm -rf -- "${EROOT}var/cache/${PN}" - fi -} diff --git a/app-portage/eix/eix-99999999.ebuild b/app-portage/eix/eix-99999999.ebuild index 536dd1f8..4f20532c 100644 --- a/app-portage/eix/eix-99999999.ebuild +++ b/app-portage/eix/eix-99999999.ebuild @@ -17,7 +17,7 @@ case ${PV} in PROPERTIES="live";; *) RESTRICT="mirror" - EGIT_COMMIT="02258b6670f01e12128ae9af089956146e933b2e" + EGIT_COMMIT="b2c7840899a83a5a4de8438333bab29f1104b9db" SRC_URI="https://github.com/vaeth/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${PN}-${EGIT_COMMIT}";; esac -- cgit v1.2.3-18-g5258