From c98ac2c1fde7dd15e2d7480776b5bb08836faa16 Mon Sep 17 00:00:00 2001 From: Martin Väth Date: Sun, 14 Aug 2022 20:49:20 +0200 Subject: app-portage/eix: Version bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Väth --- app-portage/eix/Manifest | 2 +- app-portage/eix/eix-0.36.4.ebuild | 161 -------------------------------------- app-portage/eix/eix-0.36.5.ebuild | 161 ++++++++++++++++++++++++++++++++++++++ metadata/pkg_desc_index | 2 +- 4 files changed, 163 insertions(+), 163 deletions(-) delete mode 100644 app-portage/eix/eix-0.36.4.ebuild create mode 100644 app-portage/eix/eix-0.36.5.ebuild diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest index a40241e9..1fd366be 100644 --- a/app-portage/eix/Manifest +++ b/app-portage/eix/Manifest @@ -1 +1 @@ -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.4.ebuild b/app-portage/eix/eix-0.36.4.ebuild deleted file mode 100644 index 8a8ed03d..00000000 --- a/app-portage/eix/eix-0.36.4.ebuild +++ /dev/null @@ -1,161 +0,0 @@ -# Copyright 1999-2022 Martin V\"ath and others -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -RESTRICT="mirror" # do not access gentoo mirror until it actually is there -MESON_AUTO_DEPEND=no -inherit bash-completion-r1 meson 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" -PLOCALES="de ru" -IUSE="cpu_flags_x86_sse2 debug +dep doc +jumbo-build" -for i in ${PLOCALES}; do - IUSE+=" l10n_${i}" -done -IUSE+=" +meson nls optimization +protobuf +required-use security +src-uri strong-optimization strong-security sqlite swap-remote tools usr-portage" - -DEPEND="nls? ( virtual/libintl ) - sqlite? ( >=dev-db/sqlite-3:= )" -RDEPEND="${DEPEND} - app-shells/push:0/1 - app-shells/quoter:0/1" -BDEPEND="meson? ( - >=dev-util/meson-0.41.0 - >=dev-util/ninja-1.7.2 - strong-optimization? ( >=sys-devel/gcc-config-1.9.1 ) - ) - protobuf? ( dev-libs/protobuf:= ) - app-arch/xz-utils - nls? ( sys-devel/gettext ) - virtual/pkgconfig" - -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 -} - -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 protobuf) - $(meson_use doc extra-doc) - $(meson_use nls) - $(meson_use tools separate-tools) - $(meson_use security) - $(meson_use optimization normal-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 cpu_flags_x86_sse2 sse2) - $(meson_use dep dep-default) - $(meson_use required-use required-use-default) - $(meson_use src-uri src-uri-default) - $(usex usr-portage -Dportdir-default=/usr/portage '') - -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_enable jumbo-build) - $(use_with sqlite) - $(use_with protobuf) - $(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 cpu_flags_x86_sse2 sse2) - $(use_with dep dep-default) - $(use_with required-use required-use-default) - $(use_with src-uri src-uri-default) - $(use_with usr-portage portdir-default /usr/portage) - --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 - use doc && dodoc src/output/eix.proto -} - -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.36.5.ebuild b/app-portage/eix/eix-0.36.5.ebuild new file mode 100644 index 00000000..8a8ed03d --- /dev/null +++ b/app-portage/eix/eix-0.36.5.ebuild @@ -0,0 +1,161 @@ +# Copyright 1999-2022 Martin V\"ath and others +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +RESTRICT="mirror" # do not access gentoo mirror until it actually is there +MESON_AUTO_DEPEND=no +inherit bash-completion-r1 meson 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" +PLOCALES="de ru" +IUSE="cpu_flags_x86_sse2 debug +dep doc +jumbo-build" +for i in ${PLOCALES}; do + IUSE+=" l10n_${i}" +done +IUSE+=" +meson nls optimization +protobuf +required-use security +src-uri strong-optimization strong-security sqlite swap-remote tools usr-portage" + +DEPEND="nls? ( virtual/libintl ) + sqlite? ( >=dev-db/sqlite-3:= )" +RDEPEND="${DEPEND} + app-shells/push:0/1 + app-shells/quoter:0/1" +BDEPEND="meson? ( + >=dev-util/meson-0.41.0 + >=dev-util/ninja-1.7.2 + strong-optimization? ( >=sys-devel/gcc-config-1.9.1 ) + ) + protobuf? ( dev-libs/protobuf:= ) + app-arch/xz-utils + nls? ( sys-devel/gettext ) + virtual/pkgconfig" + +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 +} + +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 protobuf) + $(meson_use doc extra-doc) + $(meson_use nls) + $(meson_use tools separate-tools) + $(meson_use security) + $(meson_use optimization normal-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 cpu_flags_x86_sse2 sse2) + $(meson_use dep dep-default) + $(meson_use required-use required-use-default) + $(meson_use src-uri src-uri-default) + $(usex usr-portage -Dportdir-default=/usr/portage '') + -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_enable jumbo-build) + $(use_with sqlite) + $(use_with protobuf) + $(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 cpu_flags_x86_sse2 sse2) + $(use_with dep dep-default) + $(use_with required-use required-use-default) + $(use_with src-uri src-uri-default) + $(use_with usr-portage portdir-default /usr/portage) + --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 + use doc && dodoc src/output/eix.proto +} + +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/metadata/pkg_desc_index b/metadata/pkg_desc_index index 7b37ba88..0cea56c4 100644 --- a/metadata/pkg_desc_index +++ b/metadata/pkg_desc_index @@ -26,7 +26,7 @@ app-misc/knapsack 7.3.1: A fast solver for the 0/1-knapsack problem with multipl app-misc/machine-learning-mv 1.3: Some machine learning experiments app-mobilephone/adb-sync 0_p20190101: Synchronize files between a PC and an Android device using ADB app-portage/changelog-gitrepo 1.1: Create ChangeLog data for gentoo repositories from git -app-portage/eix 0.36.4 99999999: Search and query ebuilds +app-portage/eix 0.36.5 99999999: Search and query ebuilds app-portage/etcat 1.0.2 99999999: Updated version of an old Portage information extractor app-portage/find_cruft 5.2: find cruft files not managed by portage app-portage/logclean 18.4.2: Keep only (compressed) logs of installed packages and cleanup emerge.log -- cgit v1.2.3-65-gdbad