public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: net-client/lagrange/
Date: Fri,  3 Jun 2022 10:44:38 +0000 (UTC)	[thread overview]
Message-ID: <1654219133.ba66221273148abc17581f54f01b6e27e6ea77b1.flow@gentoo> (raw)

commit:     ba66221273148abc17581f54f01b6e27e6ea77b1
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Jun  3 00:25:57 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Jun  3 01:18:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ba662212

net-client/lagrange: drop 1.11.2

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 net-client/lagrange/Manifest               |  2 --
 net-client/lagrange/lagrange-1.11.2.ebuild | 54 ------------------------------
 2 files changed, 56 deletions(-)

diff --git a/net-client/lagrange/Manifest b/net-client/lagrange/Manifest
index 175f49103..4b16827f1 100644
--- a/net-client/lagrange/Manifest
+++ b/net-client/lagrange/Manifest
@@ -1,4 +1,2 @@
-DIST lagrange-1.11.2.tar.gz 8731314 BLAKE2B e173b013db0ffb1bf4823040c458e4e7f6b8466f9ca008e95bf2aab9e95a98a928cedc1f66a98658886b764c7ac394ef1ab921229e7a0cf1259dba267f930c82 SHA512 c3200e52fe123c7086ee2027c6fce8ad678c7539aa0d94f80b8348fad7672e1e92daf91474db8c24afded5acb73c806da7642d9aa19130c37de12c905f03fc27
-DIST lagrange-1.11.2.tar.gz.sig 488 BLAKE2B 20b51e9cda34dbac3f86693170f4abbb60c114083b58894f9cebde81b402a1d8c18c6d58917fe1fa87640ebce2012bbbb1d8a5c899383844ce5a11146a8b1f83 SHA512 cd342f0c1a5e7988ebff8607a1b9b31ad573ce9a7da107b5403a65a3e4986bca133c207ea9e04957c50104ca0b3e0ba6f139f3a6b9abb32ef4a085f1ef9ea002
 DIST lagrange-1.12.1.tar.gz 9243569 BLAKE2B d0dda3b6b85b464c2e8c9df287e56e29ac4814800a681afec868b631e871e04849b6b93af39f02586b6a05f60860f6d459db1119e312bbcf48c2e00c83b5297c SHA512 d31f69b9d0e321a736fdfaf482a157ea7d34da6512ab3e6c9e31d8fe9dba69f9c40c64f217999dfed6a2757f82ab5dd84f1b6d69de96470ca43a9823e4fd09ad
 DIST lagrange-1.12.1.tar.gz.sig 488 BLAKE2B 816add81a1a2adbce1624528be097d9c15c733c3759b1f47230bf0cf4e84f60550fe7e898b2d5beecece01687739d5407acd13f711f7ad494e982235ec2c3129 SHA512 badd058f57cfee0658e9552e7c14214ea1a46839a1eb23e3e48fb609927133c90b2b3c7989bdc681333704264c4824341879edda44dfac81aa9fb822f776f25d

diff --git a/net-client/lagrange/lagrange-1.11.2.ebuild b/net-client/lagrange/lagrange-1.11.2.ebuild
deleted file mode 100644
index 5afc4bb96..000000000
--- a/net-client/lagrange/lagrange-1.11.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake verify-sig xdg
-
-DESCRIPTION="Desktop GUI client for browsing Geminispace"
-HOMEPAGE="https://gmi.skyjake.fi/lagrange/ https://git.skyjake.fi/gemini/lagrange"
-SRC_URI="https://git.skyjake.fi/gemini/${PN}/releases/download/v${PV}/${P}.tar.gz
-	verify-sig? ( https://git.skyjake.fi/gemini/${PN}/releases/download/v${PV}/${P}.tar.gz.sig )"
-
-LICENSE="|| ( MIT Unlicense ) Apache-2.0 BSD-2 CC-BY-SA-4.0 OFL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+fribidi +harfbuzz mp3 webp"
-
-DEPEND="
-	>=dev-libs/tfdn-1.1.0:=[ssl]
-	media-libs/libsdl2[sound(+),video(+)]
-	fribidi? ( dev-libs/fribidi )
-	harfbuzz? ( media-libs/harfbuzz:=[truetype(+)] )
-	mp3? ( media-sound/mpg123 )
-	webp? ( media-libs/libwebp:= )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="app-arch/zip
-	verify-sig? ( sec-keys/openpgp-keys-skyjake )"
-
-VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/skyjake.asc"
-
-src_prepare() {
-	# checked by Depends.cmake
-	rm -r lib/the_Foundation/CMakeLists.txt || die
-
-	cmake_src_prepare
-}
-
-src_configure() {
-	# do not add use flags that don't pull dependencies
-	# and only choose which files to compile (e.g. "ipc")
-	local mycmakeargs=(
-		-DENABLE_FRIBIDI=$(usex fribidi)
-		-DENABLE_HARFBUZZ=$(usex harfbuzz)
-		-DENABLE_MPG123=$(usex mp3)
-		-DENABLE_WEBP=$(usex webp)
-
-		# never build bundled libs
-		-DENABLE_FRIBIDI_BUILD=OFF
-		-DENABLE_HARFBUZZ_MINIMAL=OFF
-	)
-
-	cmake_src_configure
-}


             reply	other threads:[~2022-06-03 10:44 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-03 10:44 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-21  9:51 [gentoo-commits] repo/proj/guru:master commit in: net-client/lagrange/ David Roman
2024-01-16 13:54 David Roman
2024-01-16 13:54 David Roman
2023-11-20 14:14 David Roman
2023-11-09  3:11 Haelwenn Monnier
2023-10-30 11:27 David Roman
2023-06-26 22:01 Haelwenn Monnier
2023-06-10 10:56 Florian Schmaus
2023-04-09 10:05 Viorel Munteanu
2023-03-31 10:16 Florian Schmaus
2023-03-24 11:43 Florian Schmaus
2023-03-10  5:48 Viorel Munteanu
2023-01-14 18:43 Andrew Ammerlaan
2022-11-26 10:54 Florian Schmaus
2022-06-03 10:44 Florian Schmaus
2022-04-12 19:35 Ronny Gutbrod
2022-03-08 13:39 Andrew Ammerlaan
2022-02-24 11:10 Ronny Gutbrod
2022-02-20  8:46 Florian Schmaus
2022-02-04 11:44 Florian Schmaus
2022-01-23  8:17 Florian Schmaus
2021-12-27 14:44 Florian Schmaus

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=1654219133.ba66221273148abc17581f54f01b6e27e6ea77b1.flow@gentoo \
    --to=flow@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