public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/slibtool/
Date: Fri, 17 Nov 2023 12:32:19 +0000 (UTC)	[thread overview]
Message-ID: <1700224284.504b2006657ab56aae7a79179e3a5a037072da10.sam@gentoo> (raw)

commit:     504b2006657ab56aae7a79179e3a5a037072da10
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Wed Nov 15 16:28:30 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 17 12:31:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=504b2006

sys-devel/slibtool: add 0.5.35

Closes: https://bugs.gentoo.org/780054
Upstream-Commit: https://dev.midipix.org/cross/slibtool/c/5e02698d061d467abbf21ff857e9862e37060f89
Closes: https://bugs.gentoo.org/789804
Upstream-Commit: https://dev.midipix.org/cross/slibtool/c/a126a7f68ef374d65d014226195380eb7dceb634
Signed-off-by: orbea <orbea <AT> riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/33846
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-devel/slibtool/Manifest               |  2 ++
 sys-devel/slibtool/slibtool-0.5.35.ebuild | 37 +++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/sys-devel/slibtool/Manifest b/sys-devel/slibtool/Manifest
index 0a7b2da67762..0eb5c9adef83 100644
--- a/sys-devel/slibtool/Manifest
+++ b/sys-devel/slibtool/Manifest
@@ -1,2 +1,4 @@
 DIST slibtool-0.5.34.tar.xz 79720 BLAKE2B 3a692d7485dcf2277f7ed99fe1ad67cf5fd33d8fe0a527d64634b0e7f956a5f58b92d812396f00d872ceb8509e058ae1a026f16a65feb2e79a9fff7bd60290da SHA512 3f7f6e4f45c4c2ae5ba5533152f08269cd77ca6fa2f3a515802bc23c7ac505b2d7340098fa98962c79035129cfd4077205596309f4acd1d634b9a1d6e2c0e96c
 DIST slibtool-0.5.34.tar.xz.sig 833 BLAKE2B 52df017d8ae3056e259a5283b0a4cea119a5ab4ce95e6c894d0d2e98fc10db101039a57c9a2a771f677c9d0afaad9273095ebdb078fca146a3d67ea25e9261fb SHA512 9f8415431a0b43e7be9a808dd6ed138a9b34b7b2c4af3ab406bdbc456ec31c877f13bc0b056ab9a50bec0b0cf1b654a133085f8523e70c8cb7d3851652d34ff7
+DIST slibtool-0.5.35.tar.xz 87964 BLAKE2B cd01e3dc479cde2ffd8b58c51273b6c6f503056f009aa960b79dd0a6d2d18c73a3dfd9eb7933f24fd47ff849911cb63ca014eadd2bf661e3c0236467eb0802ff SHA512 e1d2f03596432f970f8c1f93d4387cafb11355a520fb5adb9bbc02f3dcdea0bbb78ca6fe84c24faebee848279050c5bec13fd64a168b12d7fc885ac9d31a7560
+DIST slibtool-0.5.35.tar.xz.sig 833 BLAKE2B 597d5beb51f650643f1ef1c8f576200ccda154e9428e5097c2236e8d71992a4c9c39d44c1325f9f1265e1cfa49f08581546c0b0f8019c7796ce9271219480753 SHA512 2a7333997802ef56a57bf32fbfce17030c1dd732c9066bec94d0719cbda3dc85e896a0221e43065fc3ed35ee852942a5f7c270d56276706b9f0fdb7f4d091ef8

diff --git a/sys-devel/slibtool/slibtool-0.5.35.ebuild b/sys-devel/slibtool/slibtool-0.5.35.ebuild
new file mode 100644
index 000000000000..e3bff0c2818a
--- /dev/null
+++ b/sys-devel/slibtool/slibtool-0.5.35.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+# git.foss21.org is the official repository per upstream
+DESCRIPTION="A skinny libtool implementation, written in C"
+HOMEPAGE="https://git.foss21.org/slibtool"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://git.foss21.org/slibtool"
+else
+	VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/midipix.asc
+	inherit verify-sig
+
+	SRC_URI="https://dl.midipix.org/slibtool/${P}.tar.xz"
+	SRC_URI+=" verify-sig? ( https://dl.midipix.org/slibtool/${P}.tar.xz.sig )"
+
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+
+	BDEPEND="verify-sig? ( sec-keys/openpgp-keys-midipix )"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+src_configure() {
+	# Custom configure script (not generated by autoconf)
+	./configure \
+		--compiler="$(tc-getCC)" \
+		--host=${CHOST} \
+		--prefix="${EPREFIX}"/usr \
+		--libdir="${EPREFIX}/usr/$(get_libdir)" \
+			|| die
+}


             reply	other threads:[~2023-11-17 12:32 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-17 12:32 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-01-03  2:20 [gentoo-commits] repo/gentoo:master commit in: sys-devel/slibtool/ Ionen Wolkens
2023-12-22  7:16 Joonas Niilola
2023-12-22  7:16 Joonas Niilola
2023-12-22  5:07 Sam James
2023-12-21 16:01 Arthur Zamarin
2023-12-21 15:15 Sam James
2023-12-21 12:56 Sam James
2023-12-21 11:55 Sam James
2023-12-21 11:12 Arthur Zamarin
2023-11-17 12:32 Sam James
2023-06-17 17:15 Arthur Zamarin
2023-06-17 13:17 Joonas Niilola
2023-06-17 10:42 Arthur Zamarin
2023-06-17  8:29 Arthur Zamarin
2023-06-17  8:29 Arthur Zamarin
2023-06-17  5:42 Sam James
2023-05-07  6:10 Sam James
2023-05-05  4:44 Sam James
2022-05-07 18:24 Sam James
2022-03-20  0:26 Sam James
2022-01-01  9:38 Sam James
2021-09-21 12:40 James Le Cuirot
2021-09-07 15:36 Lars Wendler
2021-09-06 18:01 Sam James
2021-07-31 22:49 Joshua Kinard
2021-07-31 13:40 Michał Górny
2021-07-25  3:36 Matt Turner
2021-06-25 17:24 Marek Szuba
2021-05-12  7:01 Lars Wendler
2021-05-12  6:21 Lars Wendler
2021-04-26 15:37 Sam James
2021-04-25  5:19 Sam James
2021-04-05 20:49 Sam James
2021-04-05 20:49 Sam James
2021-04-05 20:49 Sam James
2021-04-01 12:19 Thomas Deutschmann
2021-03-28 15:41 Sam James
2021-03-27 19:17 Sergei Trofimovich
2021-03-27 19:17 Sergei Trofimovich
2021-03-27 19:17 Sergei Trofimovich
2021-03-25 19:08 Sam James
2021-03-22 17:53 Lars Wendler
2021-03-22 15:19 Lars Wendler
2021-03-22 15:19 Lars Wendler
2021-03-22  9:23 Sam James
2021-03-22  9:23 Sam James
2021-03-22  9:23 Sam James
2021-03-21 15:35 Sergei Trofimovich
2021-03-21  9:45 Sergei Trofimovich
2021-01-17  1:28 Lars Wendler
2020-12-01  7:56 Joonas Niilola
2019-01-17 22:55 Patrice Clement
2019-01-17 22:55 Patrice Clement
2018-08-01 21:40 Patrice Clement
2018-05-26 17:07 Aaron Bauman
2018-05-20  0:16 Aaron Bauman
2017-09-06 12:06 Michał Górny
2017-09-06 12:06 Michał Górny
2017-07-30 14:13 David Seifert
2017-07-30 14:13 David Seifert
2016-12-04 22:32 Patrice Clement

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=1700224284.504b2006657ab56aae7a79179e3a5a037072da10.sam@gentoo \
    --to=sam@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