public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joe Kappus" <joe@wt.gd>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/dogecoin-qt/
Date: Tue, 18 Feb 2025 06:46:08 +0000 (UTC)	[thread overview]
Message-ID: <1739859950.25152c058fe1fbfc00b5fad9b6a712c5078eb764.joe@gentoo> (raw)

commit:     25152c058fe1fbfc00b5fad9b6a712c5078eb764
Author:     Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Tue Feb 18 06:25:50 2025 +0000
Commit:     Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Tue Feb 18 06:25:50 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=25152c05

net-p2p/dogecoin-qt: drop 1.14.8

Signed-off-by: Joe Kappus <joe <AT> wt.gd>

 net-p2p/dogecoin-qt/Manifest                  |   1 -
 net-p2p/dogecoin-qt/dogecoin-qt-1.14.8.ebuild | 159 --------------------------
 2 files changed, 160 deletions(-)

diff --git a/net-p2p/dogecoin-qt/Manifest b/net-p2p/dogecoin-qt/Manifest
index 15d595337..dbf356d0b 100644
--- a/net-p2p/dogecoin-qt/Manifest
+++ b/net-p2p/dogecoin-qt/Manifest
@@ -1,2 +1 @@
-DIST dogecoin-qt-v1.14.8.tar.gz 11572143 BLAKE2B f1ee546eda5eba77234cb4634bf067b4c8d1e2e8ffe11d6265e00909281491f2e68934b4ed9bd2f3f9729294f96f0d192d8b800ace1a725cf517869dcf4d2744 SHA512 e1a401093e86bd2c0b4ef96fcb45bb3dc978eee549cbb39fd09bc8fd6edb699e01ad4f9c2b31a1097beb21ad447841e2693b8503d89567e9d9a50fbf2803de7e
 DIST dogecoin-qt-v1.14.9.tar.gz 11572180 BLAKE2B 99ccdd65e6876a77e3b64bd73c333edbe541e02b825d6d5712adeaea969f2c4116c337ba1b0206a4298447070aa29472a35e841dd9d4169974ddc702d291abd4 SHA512 e43de2efb52b7926af0b19f39143bda4c12e5a3e2b0f25966a7745764117422261a34c2cbbf63576270b387a7e9826c509249d81723d4e58ea4b5f7db9808508

diff --git a/net-p2p/dogecoin-qt/dogecoin-qt-1.14.8.ebuild b/net-p2p/dogecoin-qt/dogecoin-qt-1.14.8.ebuild
deleted file mode 100644
index f54d8671e..000000000
--- a/net-p2p/dogecoin-qt/dogecoin-qt-1.14.8.ebuild
+++ /dev/null
@@ -1,159 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-WANT_AUTOCONF="2.5"
-inherit autotools desktop xdg-utils
-DESCRIPTION="Dogecoin Core Qt for desktop. Downloaded blockchain is under 2.2GB. Much secure."
-HOMEPAGE="https://github.com/dogecoin"
-SRC_URI="https://github.com/dogecoin/dogecoin/archive/refs/tags/v${PV}.tar.gz -> ${PN}-v${PV}.tar.gz"
-
-S="${WORKDIR}/dogecoin-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-DB_VER="5.3"
-IUSE="cpu_flags_x86_avx2 cpu_flags_x86_sse2 intel-avx2 dogecoind experimental +gui +pie +prune scrypt-sse2 +ssp tests utils +wallet zmq"
-REQUIRED_USE="
-	!gui? ( dogecoind utils )
-	dogecoind? ( utils )
-	intel-avx2?  ( experimental )
-	scrypt-sse2? ( experimental )
-	experimental? ( || ( intel-avx2 scrypt-sse2 ) )
-"
-
-DOGEDIR="/opt/${PN}"
-DEPEND="
-	dev-libs/libevent:=
-	dev-libs/protobuf
-	dev-libs/openssl
-	dev-build/libtool
-	dev-build/automake:=
-	gui? ( dev-qt/qtcore
-	dev-qt/qtgui
-	dev-qt/qtwidgets
-	dev-qt/qtdbus
-	dev-qt/qtnetwork
-	dev-qt/qtprintsupport
-	dev-qt/linguist-tools:=
-	)
-	>=dev-libs/boost-1.84.0
-	wallet? ( sys-libs/db:"${DB_VER}"=[cxx]
-		gui? ( media-gfx/qrencode )
-	)
-	zmq? ( net-libs/cppzmq )
-"
-
-RDEPEND="${DEPEND}
-	dev-cpp/abseil-cpp
-	cpu_flags_x86_avx2? (
-		intel-avx2? ( ~app-crypt/intel-ipsec-mb-1.3 )
-	)
-"
-
-BDEPEND="
-	dev-build/autoconf
-	dev-build/automake
-"
-
-pkg_pretend() {
-
-		if use intel-avx2 && [[ ! -e "${ROOT}"/etc/portage/patches/app-crypt/intel-ipsec-mb/remove_digest_init.patch ]]; then
-			eerror "${ROOT}/etc/portage/patches/app-crypt/intel-ipsec-mb/remove_digest_init.patch does not exist!"
-			eerror "To build with avx2 intel support, please create ${ROOT}/etc/portage/patches/app-crypt/intel-ipsec-mb directory"
-			eerror "and copy patch from package net-p2p/dogecoin-qt/files/intel-ipsec-mb/remove_digest_init.patch into that directory"
-			die
-		fi
-}
-
-src_prepare() {
-	if use pie && use ssp ; then
-		PATCHES+=( "${FILESDIR}"/hardened-all.patch )
-	elif use pie && ! use ssp ; then
-		PATCHES+=( "${FILESDIR}"/hardened-no-ssp.patch )
-	elif use ssp && ! use pie ; then
-		PATCHES+=( "${FILESDIR}"/hardened-no-pie.patch )
-	else
-		PATCHES+=( "${FILESDIR}"/hardened-minimal.patch )
-	fi
-
-	default
-
-	einfo "Generating autotools files..."
-	eaclocal -I "${S}"
-	eautoreconf
-}
-
-src_configure() {
-	local my_econf=(
-		--bindir="${DOGEDIR}/bin"
-		--disable-bench
-		--enable-c++17
-		$(use_with gui qt5)
-		$(use_with intel-avx2 intel-avx2)
-		$(use_with dogecoind daemon)
-		$(use_with utils utils)
-		$(use_enable wallet)
-		$(use_enable zmq)
-		$(use_enable tests tests)
-		$(use_enable scrypt-sse2 scrypt-sse2)
-		$(use_enable experimental experimental)
-	)
-
-	econf "${my_econf[@]}"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-	insinto "${DOGEDIR}/bin"
-
-	if use gui ; then
-        insinto /usr/share/pixmaps
-        doins src/qt/res/icons/dogecoin.png
-        dosym "${DOGEDIR}/bin/${PN}" "/usr/bin/${PN}"
-
-        if use prune ; then
-            domenu "${FILESDIR}"/"${PN}-prune.desktop"
-        else
-            domenu "${FILESDIR}"/"${PN}.desktop"
-        fi
-	fi
-
-	if use dogecoind ; then
-		dosym "${DOGEDIR}/bin/dogecoind" "/usr/bin/dogecoind"
-		dosym "${DOGEDIR}/bin/dogecoin-cli" "/usr/bin/dogecoin-cli"
-	fi
-
-	find "${ED}" -type f -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-
-	if use gui ; then
-		elog "Dogecoin Core (Qt) ${PV} has been installed."
-		elog "Dogecoin Core (Qt) binaries have been placed in ${DOGEDIR}/bin."
-		elog "${PN} has been symlinked with /usr/bin/${PN}."
-	else
-		elog "Dogecoin Core ${PV} has been installed."
-		elog "Dogecoin Core binaries have been placed in ${DOGEDIR}/bin."
-	fi
-
-	if use dogecoind ; then
-		elog "dogecoin daemon has been symlinked with /usr/bin/dogecoind."
-		elog "dogecoin client utils have been symlinked with /usr/bin/dogecoin-cli."
-	fi
-
-	if ( ( use cpu_flags_x86_avx2 &&  ! use intel-avx2 ) && ( use cpu_flags_x86_sse2 && ! use scrypt-sse2 ) ); then
-		einfo "NOTE: Experimental avx2 and sse2 CPU support in ${PV} can be"
-		einfo "activated using 'intel-avx2' and/or 'scrypt-sse2' USE flags, "
-		einfo "together with 'experimental' USE flag for this version."
-	fi
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-}


             reply	other threads:[~2025-02-18  6:46 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-18  6:46 Joe Kappus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-18  8:43 [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/dogecoin-qt/ Victor Skovorodnikov
2025-02-18  6:46 Joe Kappus
2025-02-18  6:46 Joe Kappus
2024-12-02 18:21 Victor Skovorodnikov
2024-12-01 16:41 Victor Skovorodnikov
2024-09-01 15:16 Victor Skovorodnikov
2024-08-12 16:26 Victor Skovorodnikov
2024-08-10 17:57 Victor Skovorodnikov
2024-08-09 15:40 Victor Skovorodnikov
2024-08-07 21:44 Victor Skovorodnikov
2024-08-03 14:40 Victor Skovorodnikov
2024-07-07 16:15 Victor Skovorodnikov
2024-05-26 20:24 Victor Skovorodnikov
2024-03-02 17:34 Victor Skovorodnikov
2024-03-02  3:37 Victor Skovorodnikov
2024-03-02  3:23 Victor Skovorodnikov
2024-02-28  0:09 Victor Skovorodnikov
2024-02-27 20:13 Victor Skovorodnikov
2024-02-27 16:52 Victor Skovorodnikov
2024-02-27 16:52 Victor Skovorodnikov
2024-02-11 23:42 Victor Skovorodnikov
2023-10-27 22:13 Victor Skovorodnikov
2023-09-25 19:44 Victor Skovorodnikov
2023-07-24 20:26 Anna Vyalkova
2023-07-24 20:26 Anna Vyalkova
2023-07-24 19:47 Victor Skovorodnikov
2023-07-24 19:15 Victor Skovorodnikov
2023-07-20 18:28 Victor Skovorodnikov
2023-07-18 22:03 Victor Skovorodnikov
2023-07-17 21:30 Victor Skovorodnikov
2023-07-17 21:30 Victor Skovorodnikov
2023-07-16  0:27 Victor Skovorodnikov
2023-07-14 16:47 Victor Skovorodnikov
2023-07-13 23:41 Victor Skovorodnikov
2023-07-13  1:36 Victor Skovorodnikov
2023-07-12  4:58 Viorel Munteanu
2023-07-11 23:59 Victor Skovorodnikov
2023-07-11 23:28 Victor Skovorodnikov
2023-07-11  2:03 Victor Skovorodnikov
2023-07-06 22:36 Victor Skovorodnikov
2023-07-06 22:36 Victor Skovorodnikov
2023-07-06 18:48 Victor Skovorodnikov

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=1739859950.25152c058fe1fbfc00b5fad9b6a712c5078eb764.joe@gentoo \
    --to=joe@wt.gd \
    --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