From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: net-client/lagrange/
Date: Tue, 16 Jan 2024 13:54:46 +0000 (UTC) [thread overview]
Message-ID: <1705406035.3c8574a7ee07b37997c2ed09f33702feaf2b4e42.davidroman@gentoo> (raw)
commit: 3c8574a7ee07b37997c2ed09f33702feaf2b4e42
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Jan 16 11:53:55 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Jan 16 11:53:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c8574a7
net-client/lagrange: drop 1.17.4
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
net-client/lagrange/Manifest | 2 -
net-client/lagrange/lagrange-1.17.4.ebuild | 65 ------------------------------
2 files changed, 67 deletions(-)
diff --git a/net-client/lagrange/Manifest b/net-client/lagrange/Manifest
index 981d9872d4..09b0ad8423 100644
--- a/net-client/lagrange/Manifest
+++ b/net-client/lagrange/Manifest
@@ -1,4 +1,2 @@
-DIST lagrange-1.17.4.tar.gz 10209579 BLAKE2B 742813cece2773935cc591d8c5bf6cf86e2f6f021de0f1fd716e23e99f39efd8147dd09224ba530177f96b560425643d202b2d49a478277b9abbee4cde4b2aca SHA512 772c19b7507de6f86c2d46479f625b132e1a3f97d1efd6fbdf9ad6c74d30b3f17626b0953ff0f3d79af2e457ef2c47f486316a19f4f014aae5807466ad6044d3
-DIST lagrange-1.17.4.tar.gz.sig 488 BLAKE2B 9fe3d74f57cec32e6a70241df39b2ae10e2088b5a561b8f66ecad7baa59939243eeeda29cf4189ec06dcf2a23a2855b38b59e78fc27786bf32fdb732a6a2ab54 SHA512 db17353e4736f4215c33df6fc60ec1289c01d3a3e1d689c8fe5fb9a37afbe4568be9f1ed0640620942192381d2a2093095d0e148f3ad98ba503c3b278ade5922
DIST lagrange-1.17.5.tar.gz 10213173 BLAKE2B 174d5d5065ecabf8fa4f5b7c2e5fe874349029ccec5b21e34fe43365ab6039dd512293274891f1acd0dcc031baa337841dd06c3afbd9832ba51ea8ff6140ef6e SHA512 64c145899c1cf48403af5c06b2ba529d8b8da9fa3ecb7aa2fb402c67a0e3ebb7011eff1fe5bb5f4f6e40edc70f13ec15719d8a8763f3a5809a49c45a6f75f6da
DIST lagrange-1.17.5.tar.gz.sig 488 BLAKE2B 109f8250e40a83b2b1de7a0b1edc84278427e3ea19a244de61d360da7cff43e8ea3f77c6a5eeff220da3f3441a7f9bafea6513056bf409d3cb231f266fcacc21 SHA512 f0b338e676852cfface46b68d3b2b8622003ca269f47ffb93ffdf2dfd0159da0c9e4b7c118370207c8c887d71653e51df2065040b810c4a2115e612573400ee0
diff --git a/net-client/lagrange/lagrange-1.17.4.ebuild b/net-client/lagrange/lagrange-1.17.4.ebuild
deleted file mode 100644
index 02a0891262..0000000000
--- a/net-client/lagrange/lagrange-1.17.4.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic 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="X +bidi debug gui +harfbuzz mp3 webp"
-
-RDEPEND="
- >=dev-libs/tfdn-1.7.0:=[ssl]
- X? ( x11-libs/libX11 )
- bidi? ( dev-libs/fribidi )
- gui? (
- harfbuzz? ( media-libs/harfbuzz:=[truetype(+)] )
- media-libs/libsdl2[X?,sound(+),video(+)]
- )
- !gui? ( >=dev-libs/sealcurses-2.0.18_pre20230206:= )
- mp3? ( media-sound/mpg123 )
- webp? ( media-libs/libwebp:= )
-"
-DEPEND="${RDEPEND}
- X? ( x11-base/xorg-proto )
-"
-BDEPEND="
- app-arch/zip
- verify-sig? ( sec-keys/openpgp-keys-skyjake )
-"
-
-VERIFY_SIG_OPENPGP_KEY_PATH="/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() {
- # note: do not add use flags that don't pull dependencies
- # and only choose which files to compile (e.g. "ipc")
- local -a mycmakeargs=(
- -DENABLE_FRIBIDI=$(usex bidi)
- -DENABLE_HARFBUZZ=$(usex harfbuzz)
- -DENABLE_TUI=$(usex !gui)
- -DENABLE_MPG123=$(usex mp3)
- -DENABLE_WEBP=$(usex webp)
- -DENABLE_X11_XLIB=$(usex X)
-
- # never build bundled libs
- -DENABLE_FRIBIDI_BUILD=OFF
- -DENABLE_HARFBUZZ_MINIMAL=OFF
- )
-
- append-cppflags $(usex debug "-UNDEBUG" "-DNDEBUG")
- cmake_src_configure
-}
next reply other threads:[~2024-01-16 13:54 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-16 13:54 David Roman [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
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-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=1705406035.3c8574a7ee07b37997c2ed09f33702feaf2b4e42.davidroman@gentoo \
--to=davidroman96@gmail.com \
--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