public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libsrsirc/
@ 2017-04-05  5:45 Göktürk Yüksek
  0 siblings, 0 replies; 4+ messages in thread
From: Göktürk Yüksek @ 2017-04-05  5:45 UTC (permalink / raw
  To: gentoo-commits

commit:     1d9a1355a3c1798e120a7a1981d3befd76f813a5
Author:     Learath <learath2 <AT> gmail <DOT> com>
AuthorDate: Tue Apr  4 01:44:43 2017 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Wed Apr  5 05:39:35 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d9a1355

net-libs/libsrsirc: New package with version 0.0.14

A lightweight, cross-platform IRC library
Written in portable standard C (C99)

Gentoo-bug: 602354

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/libsrsirc/Manifest                |  1 +
 net-libs/libsrsirc/libsrsirc-0.0.14.ebuild | 28 ++++++++++++++++++++++++++++
 net-libs/libsrsirc/metadata.xml            | 19 +++++++++++++++++++
 3 files changed, 48 insertions(+)

diff --git a/net-libs/libsrsirc/Manifest b/net-libs/libsrsirc/Manifest
new file mode 100644
index 00000000000..2358e545501
--- /dev/null
+++ b/net-libs/libsrsirc/Manifest
@@ -0,0 +1 @@
+DIST libsrsirc-0.0.14.tar.gz 431916 SHA256 7bf73c7b3ccbd73bcc423874abb49b0c59494f6a961640eebaf79a81c94e2dc7 SHA512 cc529f3ab6817cf8c87a24ed5f33b7ffdddd4a9c38f66dcb6be0ba9b0b2090861d1ca9232c7b217d20560dfc1361ada92b6a68e5157689ed37f1baeadb2ab767 WHIRLPOOL 9da90047944e64171bcc04b8d3d1fa59a8df313991370a1a1219d66a6884c620019de8265575a161686e749379f4279cfedc617406171ac1298280c9ae64a622

diff --git a/net-libs/libsrsirc/libsrsirc-0.0.14.ebuild b/net-libs/libsrsirc/libsrsirc-0.0.14.ebuild
new file mode 100644
index 00000000000..a11445d9184
--- /dev/null
+++ b/net-libs/libsrsirc/libsrsirc-0.0.14.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="A lightweight, cross-platform IRC library"
+HOMEPAGE="https://github.com/fstd/libsrsirc"
+SRC_URI="http://penenen.de/${P}.tar.gz"
+LICENSE="BSD"
+
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE="static-libs ssl"
+
+DEPEND="
+	ssl? ( dev-libs/openssl:0= )"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	econf \
+		$(use_enable static-libs static) \
+		$(use_with ssl)
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+}

diff --git a/net-libs/libsrsirc/metadata.xml b/net-libs/libsrsirc/metadata.xml
new file mode 100644
index 00000000000..cdff1c333bc
--- /dev/null
+++ b/net-libs/libsrsirc/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>learath2@gmail.com</email>
+		<name>Emir Marincic</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<longdescription lang="en">
+		A lightweight, cross-platform IRC library
+		Written in portable standard C (C99)
+	</longdescription>
+	<upstream>
+		<remote-id type="github">fstd/libsrsirc</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libsrsirc/
@ 2017-04-09 22:51 Göktürk Yüksek
  0 siblings, 0 replies; 4+ messages in thread
From: Göktürk Yüksek @ 2017-04-09 22:51 UTC (permalink / raw
  To: gentoo-commits

commit:     75b5a7f0a0e7203fb4ebd6acd555fb25b3406b12
Author:     Learath <learath2 <AT> gmail <DOT> com>
AuthorDate: Sun Apr  9 16:52:24 2017 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Sun Apr  9 22:50:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75b5a7f0

net-libs/libsrsirc: Fix file collision

Gentoo-Bug: https://bugs.gentoo.org/614778

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../{libsrsirc-0.0.14.ebuild => libsrsirc-0.0.14-r1.ebuild}        | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/net-libs/libsrsirc/libsrsirc-0.0.14.ebuild b/net-libs/libsrsirc/libsrsirc-0.0.14-r1.ebuild
similarity index 73%
rename from net-libs/libsrsirc/libsrsirc-0.0.14.ebuild
rename to net-libs/libsrsirc/libsrsirc-0.0.14-r1.ebuild
index a11445d9184..3b52bea49ed 100644
--- a/net-libs/libsrsirc/libsrsirc-0.0.14.ebuild
+++ b/net-libs/libsrsirc/libsrsirc-0.0.14-r1.ebuild
@@ -17,12 +17,11 @@ DEPEND="
 RDEPEND="${DEPEND}"
 
 src_configure() {
-	econf \
-		$(use_enable static-libs static) \
-		$(use_with ssl)
+	econf $(use_enable static-libs static) $(use_with ssl)
 }
 
 src_install() {
 	default
-	find "${D}" -name '*.la' -delete || die
+	find "${ED}" -name '*.la' -delete || die
+	mv "${ED}/usr/bin/icat" "${ED}/usr/bin/icat-lsi" || die
 }


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libsrsirc/
@ 2024-03-16 12:13 Conrad Kostecki
  0 siblings, 0 replies; 4+ messages in thread
From: Conrad Kostecki @ 2024-03-16 12:13 UTC (permalink / raw
  To: gentoo-commits

commit:     a94b2ee98ea33ff8bedaf80935211509729d116b
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Feb 21 16:50:45 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 12:13:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a94b2ee9

net-libs/libsrsirc: EAPI8 bump

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/35472
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../{libsrsirc-0.0.14-r1.ebuild => libsrsirc-0.0.14-r2.ebuild}   | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/net-libs/libsrsirc/libsrsirc-0.0.14-r1.ebuild b/net-libs/libsrsirc/libsrsirc-0.0.14-r2.ebuild
similarity index 76%
rename from net-libs/libsrsirc/libsrsirc-0.0.14-r1.ebuild
rename to net-libs/libsrsirc/libsrsirc-0.0.14-r2.ebuild
index 09def5b449ae..f60c232b65ca 100644
--- a/net-libs/libsrsirc/libsrsirc-0.0.14-r1.ebuild
+++ b/net-libs/libsrsirc/libsrsirc-0.0.14-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
-DESCRIPTION="A lightweight, cross-platform IRC library"
+DESCRIPTION="Lightweight, cross-platform IRC library"
 HOMEPAGE="https://github.com/fstd/libsrsirc"
 SRC_URI="http://penenen.de/${P}.tar.gz"
 LICENSE="BSD"
@@ -12,8 +12,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="static-libs ssl"
 
-DEPEND="
-	ssl? ( dev-libs/openssl:0= )"
+DEPEND="ssl? ( dev-libs/openssl:0= )"
 RDEPEND="${DEPEND}"
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libsrsirc/
@ 2025-03-10  1:34 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2025-03-10  1:34 UTC (permalink / raw
  To: gentoo-commits

commit:     e1b64664c4e6a715a618f91f24019cfe1af057fa
Author:     NHOrus <jy6x2b32pie9 <AT> yahoo <DOT> com>
AuthorDate: Mon Mar  3 04:31:40 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 10 01:34:10 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1b64664

net-libs/libsrsirc: add 0.0.14.1

Version bump that fixes C99 and musl compile problems.
Uses different website as tarball host, see
https://github.com/fstd/libsrsirc/issues/6#issuecomment-2081234589

Closes: https://bugs.gentoo.org/731260
Closes: https://bugs.gentoo.org/875275
Signed-off-by: NHOrus <jy6x2b32pie9 <AT> yahoo.com>
Closes: https://github.com/gentoo/gentoo/pull/40858
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libsrsirc/Manifest                  |  1 +
 net-libs/libsrsirc/libsrsirc-0.0.14.1.ebuild | 26 ++++++++++++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/net-libs/libsrsirc/Manifest b/net-libs/libsrsirc/Manifest
index c880285f972b..5519b4fbd73a 100644
--- a/net-libs/libsrsirc/Manifest
+++ b/net-libs/libsrsirc/Manifest
@@ -1 +1,2 @@
+DIST libsrsirc-0.0.14.1.tar.gz 472714 BLAKE2B 132f4cf28f610d3b55d6d8b60493af8e30b31905bffcbd5f5b65b9f81e403eca339937881f57d0dcc1866d888d3d157cffbd18ef5d995ac6f6ef7218dbc40006 SHA512 be9e39c95effc727258cf95459243e5c7a45420c705892943b794b5620e9d2571514d32a5c853a943425be5863c173e76924cf5738550d429289540b433b0dd5
 DIST libsrsirc-0.0.14.tar.gz 431916 BLAKE2B c588c14906e9cd76c95d6f5cf2fb63444836c3e1d6599a8976b1922f1eff2f2d9fb45334e658460f657eece04b441e9980879ca153ff06c54a9355d16f2a6c35 SHA512 cc529f3ab6817cf8c87a24ed5f33b7ffdddd4a9c38f66dcb6be0ba9b0b2090861d1ca9232c7b217d20560dfc1361ada92b6a68e5157689ed37f1baeadb2ab767

diff --git a/net-libs/libsrsirc/libsrsirc-0.0.14.1.ebuild b/net-libs/libsrsirc/libsrsirc-0.0.14.1.ebuild
new file mode 100644
index 000000000000..6618938bd1e0
--- /dev/null
+++ b/net-libs/libsrsirc/libsrsirc-0.0.14.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Lightweight, cross-platform IRC library"
+HOMEPAGE="https://github.com/fstd/libsrsirc"
+SRC_URI="https://kiwi.pr0.tips/${P}.tar.gz"
+LICENSE="BSD"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs ssl"
+
+DEPEND="ssl? ( dev-libs/openssl:0= )"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	econf $(use_enable static-libs static) $(use_with ssl)
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+	mv "${ED}/usr/bin/icat" "${ED}/usr/bin/icat-lsi" || die
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-03-10  1:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-10  1:34 [gentoo-commits] repo/gentoo:master commit in: net-libs/libsrsirc/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-03-16 12:13 Conrad Kostecki
2017-04-09 22:51 Göktürk Yüksek
2017-04-05  5:45 Göktürk Yüksek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox