public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Christian Ruppert" <idl0r@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libslz/
Date: Fri, 22 Jan 2021 08:03:53 +0000 (UTC)	[thread overview]
Message-ID: <1611302630.262441254364ba1c58ac8b343a3a39386b07722a.idl0r@gentoo> (raw)

commit:     262441254364ba1c58ac8b343a3a39386b07722a
Author:     Christian Ruppert <idl0r <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 08:03:32 2021 +0000
Commit:     Christian Ruppert <idl0r <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 08:03:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26244125

dev-libs/libslz: Version bump to 1.2.0

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Christian Ruppert <idl0r <AT> gentoo.org>

 dev-libs/libslz/Manifest            |  1 +
 dev-libs/libslz/libslz-1.2.0.ebuild | 65 +++++++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/dev-libs/libslz/Manifest b/dev-libs/libslz/Manifest
index 53dbd9711bc..f7c8fdd51bf 100644
--- a/dev-libs/libslz/Manifest
+++ b/dev-libs/libslz/Manifest
@@ -1 +1,2 @@
 DIST libslz-1.1.0.tar.bz2 229577 BLAKE2B d05b619d0b7b76c2777285ecaf976b75565b50c77e00a1ce042f5a28ab8d527788a75d28d70357a32ea9a98267ae621d5a6e4613e4a7e4f52767e68c77765bb3 SHA512 064e2e8e7091adf863653981e5b677bdb9e64901f61cf3b68f098cf7957a4c32e19cec7d41b8dab61098017119d6ea562350c7fbfa10b5e922f52ac0d6066948
+DIST libslz-1.2.0.tar.bz2 230567 BLAKE2B cf8a21fe0c23ae003830bfae3bd5ae172df4e88f63b0d5c1394c316e9d69c570b544d2c2db76cddd1e320d68119d7ae39352f9932673fb41e06ded030ebc5078 SHA512 811876f3893c0a0c273518fcf6d5a827a86513033e2048dbb541ca32286171c408f124495c4454ce7811e3c52ffb6a7bfcbb08af5b7f56a670c2c1cb2c5cd496

diff --git a/dev-libs/libslz/libslz-1.2.0.ebuild b/dev-libs/libslz/libslz-1.2.0.ebuild
new file mode 100644
index 00000000000..be90a23d2bc
--- /dev/null
+++ b/dev-libs/libslz/libslz-1.2.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit toolchain-funcs multilib-minimal
+
+DESCRIPTION="stateless, zlib-compatible, and very fast compression library"
+HOMEPAGE="http://1wt.eu/projects/libslz"
+SRC_URI="http://git.1wt.eu/web?p=${PN}.git;a=snapshot;h=v${PV};sf=tbz2 -> ${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0/1"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+IUSE="static-libs tools"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+src_prepare() {
+	default
+
+	multilib_copy_sources
+}
+
+multilib_src_compile() {
+	local -a opts=(
+		CC="$(tc-getCC)" \
+		OPT_CFLAGS="${CFLAGS}" \
+		USR_LFLAGS="${LDFLAGS}" \
+		shared \
+		$(usex static-libs static '')
+	)
+
+	if multilib_is_native_abi ; then
+		opts+=(
+			$(usex tools tools '')
+		)
+	fi
+
+	emake "${opts[@]}"
+}
+
+multilib_src_install() {
+	local -a opts=(
+		STRIP=":" \
+		DESTDIR="${ED}" \
+		PREFIX="${EPREFIX}/usr" \
+		LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
+		install-headers
+		install-shared \
+		$(usex static-libs install-static '')
+	)
+
+	if multilib_is_native_abi ; then
+		einstalldocs
+
+		opts+=(
+			$(usex tools install-tools '')
+		)
+	fi
+
+	emake "${opts[@]}"
+}


             reply	other threads:[~2021-01-22  8:03 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-22  8:03 Christian Ruppert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-02-04 21:42 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libslz/ Ionen Wolkens
2022-10-29 12:10 Sam James
2022-10-29  7:33 Agostino Sarubbo
2022-10-28 20:33 Sam James
2022-10-28 18:52 Arthur Zamarin
2022-09-09  7:59 David Seifert
2019-05-21 22:49 Stephen Klimaszewski
2017-03-14 23:29 Michael Weber
2016-09-28 19:54 Christian Ruppert
2016-09-28 19:54 Christian Ruppert

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=1611302630.262441254364ba1c58ac8b343a3a39386b07722a.idl0r@gentoo \
    --to=idl0r@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