public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2017-12-07 10:29 Michael Palimaka
  0 siblings, 0 replies; 16+ messages in thread
From: Michael Palimaka @ 2017-12-07 10:29 UTC (permalink / raw
  To: gentoo-commits

commit:     5799c21d2de1f44ef8de29a200692b852cbe67e8
Author:     Oz N Tiram <oz.tiram <AT> mobilityhouse <DOT> com>
AuthorDate: Sun Dec  3 12:49:22 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Dec  7 10:29:39 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5799c21d

dev-libs/libite: a collection of useful BSD API

Libite is a lightweight library of frog DNA. It can be used to fill the
gaps in any dinosaur project. It holds useful functions and macros
developed by both Finit and the OpenBSD project. Most notably the
string functions: strlcpy(3), strlcat(3) and the highly useful *BSD
sys/queue.h and sys/tree.h API's.

Closes: https://bugs.gentoo.org/639626
Closes: https://github.com/gentoo/gentoo/pull/6421
Package-Manager: Portage-2.3.13, Repoman-2.3.1

 dev-libs/libite/Manifest            |  1 +
 dev-libs/libite/libite-2.0.0.ebuild | 23 +++++++++++++++++++++++
 dev-libs/libite/metadata.xml        | 21 +++++++++++++++++++++
 3 files changed, 45 insertions(+)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
new file mode 100644
index 00000000000..cec74c2497b
--- /dev/null
+++ b/dev-libs/libite/Manifest
@@ -0,0 +1 @@
+DIST libite-2.0.0.tar.xz 259960 BLAKE2B 4c5393daaf2ca6eb830fc5f11b1d38e9c1e2374c5f5d87bb973c7e54b9f81480d4a270a4551689806620cd5a84671d1055d409d6dd090acb64bf7fc454d1c283 SHA512 18516f19d36d81169116562b4b27d76240715424cdde9b87eae831f35adb17d70fb01e2eae5e7e9ce99e2c88344c2c15d2b7d11f4ea2e9ae0deb25ee5ee4c563

diff --git a/dev-libs/libite/libite-2.0.0.ebuild b/dev-libs/libite/libite-2.0.0.ebuild
new file mode 100644
index 00000000000..4dff1da74a4
--- /dev/null
+++ b/dev-libs/libite/libite-2.0.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="A collection of useful BSD APIs"
+HOMEPAGE="https://github.com/troglobit/libite"
+SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+src_configure(){
+	econf --enable-static=$(usex static-libs)
+}
+
+src_install(){
+	default
+	find "${D}" -name '*.la' -delete || die
+	rm "${D}/usr/share/doc/${PF}/LICENSE" || die
+}

diff --git a/dev-libs/libite/metadata.xml b/dev-libs/libite/metadata.xml
new file mode 100644
index 00000000000..ec1edc5f993
--- /dev/null
+++ b/dev-libs/libite/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Oz Tiram</name>
+		<email>oz.tiram@gmail.com</email>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+	</maintainer>
+	<longdescription lang="en">
+		Libite is a lightweight library of frog DNA. It can be used to fill the
+		gaps in any dinosaur project. It holds useful functions and macros
+		developed by both Finit and the OpenBSD project. Most notably the
+		string functions: strlcpy(3), strlcat(3) and the highly useful *BSD
+		sys/queue.h and sys/tree.h API's.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">troglobit/libite</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2019-10-09  5:22 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2019-10-09  5:22 UTC (permalink / raw
  To: gentoo-commits

commit:     1e456119483a0255c124ac83e2b519e04949adcb
Author:     Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Sat Oct  5 16:20:47 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Oct  9 05:21:24 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e456119

dev-libs/libite: bump version to 2.1.0

Closes: https://bugs.gentoo.org/696528
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13169
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 +
 dev-libs/libite/libite-2.1.0.ebuild | 23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index cec74c2497b..1c523fdd246 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1 +1,2 @@
 DIST libite-2.0.0.tar.xz 259960 BLAKE2B 4c5393daaf2ca6eb830fc5f11b1d38e9c1e2374c5f5d87bb973c7e54b9f81480d4a270a4551689806620cd5a84671d1055d409d6dd090acb64bf7fc454d1c283 SHA512 18516f19d36d81169116562b4b27d76240715424cdde9b87eae831f35adb17d70fb01e2eae5e7e9ce99e2c88344c2c15d2b7d11f4ea2e9ae0deb25ee5ee4c563
+DIST libite-2.1.0.tar.xz 265712 BLAKE2B c8a0f2a55bc6e0ae2ad774be67501d2d8ec31927cc107b1b38de409ce78334b9a516727722aa57d615b234edf1057967b2375a96dd947637e987d2583e2efc2a SHA512 dd6b48ed6dc646ce2d17e647179173bf5d3b478db38f05c2133119ce81da9778be8bb277db9beb0e28aeff7f81cb3fc361d3737de31623f6661141efa63d64d3

diff --git a/dev-libs/libite/libite-2.1.0.ebuild b/dev-libs/libite/libite-2.1.0.ebuild
new file mode 100644
index 00000000000..285bb078460
--- /dev/null
+++ b/dev-libs/libite/libite-2.1.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A collection of useful BSD APIs"
+HOMEPAGE="https://github.com/troglobit/libite"
+SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+src_configure(){
+	econf --enable-static=$(usex static-libs)
+}
+
+src_install(){
+	default
+	find "${D}" -name '*.la' -delete || die
+	rm "${D}/usr/share/doc/${PF}/LICENSE" || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2020-02-27 13:54 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2020-02-27 13:54 UTC (permalink / raw
  To: gentoo-commits

commit:     3de4ad09f3cd12196c132c108a3368f121cf0b9a
Author:     Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Sun Feb 23 08:52:30 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Feb 27 13:54:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3de4ad09

dev-libs/libite: bump version to 2.1.2

Package-Manager: Portage-2.3.84, Repoman-2.3.16
Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 +
 dev-libs/libite/libite-2.1.2.ebuild | 23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index 1c523fdd246..be57f526703 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1,2 +1,3 @@
 DIST libite-2.0.0.tar.xz 259960 BLAKE2B 4c5393daaf2ca6eb830fc5f11b1d38e9c1e2374c5f5d87bb973c7e54b9f81480d4a270a4551689806620cd5a84671d1055d409d6dd090acb64bf7fc454d1c283 SHA512 18516f19d36d81169116562b4b27d76240715424cdde9b87eae831f35adb17d70fb01e2eae5e7e9ce99e2c88344c2c15d2b7d11f4ea2e9ae0deb25ee5ee4c563
 DIST libite-2.1.0.tar.xz 265712 BLAKE2B c8a0f2a55bc6e0ae2ad774be67501d2d8ec31927cc107b1b38de409ce78334b9a516727722aa57d615b234edf1057967b2375a96dd947637e987d2583e2efc2a SHA512 dd6b48ed6dc646ce2d17e647179173bf5d3b478db38f05c2133119ce81da9778be8bb277db9beb0e28aeff7f81cb3fc361d3737de31623f6661141efa63d64d3
+DIST libite-2.1.2.tar.xz 265524 BLAKE2B 6e89fda5267e9beb8b057d195f1ed7503fc898146e64da2735510ee9fe703a9ee7d1f21e67a7820cd9ae413ee77b66c050d6534553b5a6ce113c113a7fd58f06 SHA512 92c3830344d7816cbcc2a697bf55b53557d4df7bab4d3db5aa6319379c82a14cf021d18402eae724c5b9126ec06df9728ee6ded9599117cc7f3fa7a0b2f997cc

diff --git a/dev-libs/libite/libite-2.1.2.ebuild b/dev-libs/libite/libite-2.1.2.ebuild
new file mode 100644
index 00000000000..f0baf554132
--- /dev/null
+++ b/dev-libs/libite/libite-2.1.2.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A collection of useful BSD APIs"
+HOMEPAGE="https://github.com/troglobit/libite"
+SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+src_configure() {
+	econf --enable-static=$(usex static-libs)
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+	rm "${D}/usr/share/doc/${PF}/LICENSE" || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2020-03-18  8:30 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2020-03-18  8:30 UTC (permalink / raw
  To: gentoo-commits

commit:     366e2aba959e776fffe77c33f4166c049fef1ac0
Author:     Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Tue Mar 17 16:30:01 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Mar 18 08:30:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=366e2aba

dev-libs/libite: bump version 2.2.0

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14989
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 +
 dev-libs/libite/libite-2.2.0.ebuild | 23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index 0bef8a20dd1..9def919ff24 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1,2 +1,3 @@
 DIST libite-2.1.0.tar.xz 265712 BLAKE2B c8a0f2a55bc6e0ae2ad774be67501d2d8ec31927cc107b1b38de409ce78334b9a516727722aa57d615b234edf1057967b2375a96dd947637e987d2583e2efc2a SHA512 dd6b48ed6dc646ce2d17e647179173bf5d3b478db38f05c2133119ce81da9778be8bb277db9beb0e28aeff7f81cb3fc361d3737de31623f6661141efa63d64d3
 DIST libite-2.1.2.tar.xz 265524 BLAKE2B 6e89fda5267e9beb8b057d195f1ed7503fc898146e64da2735510ee9fe703a9ee7d1f21e67a7820cd9ae413ee77b66c050d6534553b5a6ce113c113a7fd58f06 SHA512 92c3830344d7816cbcc2a697bf55b53557d4df7bab4d3db5aa6319379c82a14cf021d18402eae724c5b9126ec06df9728ee6ded9599117cc7f3fa7a0b2f997cc
+DIST libite-2.2.0.tar.xz 267172 BLAKE2B 6f3e76fca28b72978fd92e2e52234ebeaee764945108c0d3b1049c759bbba3a1e1c6aa6822707ae8323b1fc8d1b56b360b93c58f109ba1072123a27488b54c34 SHA512 56b4d21730b1e31f7c70ec16d0983d5c060866d6579fa69c44d1d3d2a539a7b4691adb4964bfac3f8bc04282537e93f53dc2bb5af2efbca637ddc6442db181af

diff --git a/dev-libs/libite/libite-2.2.0.ebuild b/dev-libs/libite/libite-2.2.0.ebuild
new file mode 100644
index 00000000000..f0baf554132
--- /dev/null
+++ b/dev-libs/libite/libite-2.2.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A collection of useful BSD APIs"
+HOMEPAGE="https://github.com/troglobit/libite"
+SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+src_configure() {
+	econf --enable-static=$(usex static-libs)
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+	rm "${D}/usr/share/doc/${PF}/LICENSE" || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2021-04-28  7:08 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2021-04-28  7:08 UTC (permalink / raw
  To: gentoo-commits

commit:     f4303599956d379071cd1dbe9059b1b813131c05
Author:     Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Fri Apr  2 12:25:49 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Apr 28 07:08:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4303599

dev-libs/libite: add 2.4.0

Also, disable static library build.

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 +
 dev-libs/libite/libite-2.4.0.ebuild | 22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index 1d3e1dc2ccb..b266cc9cee4 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1 +1,2 @@
 DIST libite-2.2.0.tar.xz 267172 BLAKE2B 6f3e76fca28b72978fd92e2e52234ebeaee764945108c0d3b1049c759bbba3a1e1c6aa6822707ae8323b1fc8d1b56b360b93c58f109ba1072123a27488b54c34 SHA512 56b4d21730b1e31f7c70ec16d0983d5c060866d6579fa69c44d1d3d2a539a7b4691adb4964bfac3f8bc04282537e93f53dc2bb5af2efbca637ddc6442db181af
+DIST libite-2.4.0.tar.xz 276008 BLAKE2B dcd721d02d15b6e8dbe84a885548429552eb4a683e51c49d144be2e40922e3f6e6e36f1fb92ec96db148f71068826b3a1f80812d8d5b1bf381a88b1598a3a1a8 SHA512 8e79084b616150dd4de491c6b8441d5043c81cf161bb655a32b6b7f8536682b967f4810870d8af4ae92780dedb7302bbc8db093036493506c88126143cb9bbef

diff --git a/dev-libs/libite/libite-2.4.0.ebuild b/dev-libs/libite/libite-2.4.0.ebuild
new file mode 100644
index 00000000000..2caf2e8389a
--- /dev/null
+++ b/dev-libs/libite/libite-2.4.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A collection of useful BSD APIs"
+HOMEPAGE="https://github.com/troglobit/libite"
+SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_configure() {
+	econf --enable-static=no
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+	rm "${D}/usr/share/doc/${PF}/LICENSE" || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2021-04-28  7:08 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2021-04-28  7:08 UTC (permalink / raw
  To: gentoo-commits

commit:     e30aacd4f7ea08267fef3ebac37af88158b1b9dd
Author:     Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Fri Apr  2 12:26:03 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Apr 28 07:08:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e30aacd4

dev-libs/libite: drop 2.2.0

Signed-off-by: Oz N Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/20233
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 -
 dev-libs/libite/libite-2.2.0.ebuild | 23 -----------------------
 2 files changed, 24 deletions(-)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index b266cc9cee4..38ac9cbe2fe 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1,2 +1 @@
-DIST libite-2.2.0.tar.xz 267172 BLAKE2B 6f3e76fca28b72978fd92e2e52234ebeaee764945108c0d3b1049c759bbba3a1e1c6aa6822707ae8323b1fc8d1b56b360b93c58f109ba1072123a27488b54c34 SHA512 56b4d21730b1e31f7c70ec16d0983d5c060866d6579fa69c44d1d3d2a539a7b4691adb4964bfac3f8bc04282537e93f53dc2bb5af2efbca637ddc6442db181af
 DIST libite-2.4.0.tar.xz 276008 BLAKE2B dcd721d02d15b6e8dbe84a885548429552eb4a683e51c49d144be2e40922e3f6e6e36f1fb92ec96db148f71068826b3a1f80812d8d5b1bf381a88b1598a3a1a8 SHA512 8e79084b616150dd4de491c6b8441d5043c81cf161bb655a32b6b7f8536682b967f4810870d8af4ae92780dedb7302bbc8db093036493506c88126143cb9bbef

diff --git a/dev-libs/libite/libite-2.2.0.ebuild b/dev-libs/libite/libite-2.2.0.ebuild
deleted file mode 100644
index f0baf554132..00000000000
--- a/dev-libs/libite/libite-2.2.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A collection of useful BSD APIs"
-HOMEPAGE="https://github.com/troglobit/libite"
-SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-src_configure() {
-	econf --enable-static=$(usex static-libs)
-}
-
-src_install() {
-	default
-	find "${D}" -name '*.la' -delete || die
-	rm "${D}/usr/share/doc/${PF}/LICENSE" || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2021-12-25 23:20 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-12-25 23:20 UTC (permalink / raw
  To: gentoo-commits

commit:     9e8772682baef78050bc7b5ccd08bfb634fa839a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 25 22:34:54 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 25 23:20:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e877268

dev-libs/libite: use ${ED}

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/libite/libite-2.5.1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libite/libite-2.5.1.ebuild b/dev-libs/libite/libite-2.5.1.ebuild
index 2caf2e8389ae..4dc072f41234 100644
--- a/dev-libs/libite/libite-2.5.1.ebuild
+++ b/dev-libs/libite/libite-2.5.1.ebuild
@@ -17,6 +17,7 @@ src_configure() {
 
 src_install() {
 	default
-	find "${D}" -name '*.la' -delete || die
-	rm "${D}/usr/share/doc/${PF}/LICENSE" || die
+
+	find "${ED}" -name '*.la' -delete || die
+	rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2021-12-25 23:20 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-12-25 23:20 UTC (permalink / raw
  To: gentoo-commits

commit:     0c6da5b8a8ecd4b39bc6ea2820c1abd5362d9462
Author:     Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Sat Dec 25 14:16:07 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 25 23:20:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c6da5b8

dev-libs/libite: add 2.5.1

Closes: https://bugs.gentoo.org/828486
Signed-off-by: Oz N Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23505
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 +
 dev-libs/libite/libite-2.5.1.ebuild | 22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index 38ac9cbe2fec..bf873f38e6e3 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1 +1,2 @@
 DIST libite-2.4.0.tar.xz 276008 BLAKE2B dcd721d02d15b6e8dbe84a885548429552eb4a683e51c49d144be2e40922e3f6e6e36f1fb92ec96db148f71068826b3a1f80812d8d5b1bf381a88b1598a3a1a8 SHA512 8e79084b616150dd4de491c6b8441d5043c81cf161bb655a32b6b7f8536682b967f4810870d8af4ae92780dedb7302bbc8db093036493506c88126143cb9bbef
+DIST libite-2.5.1.tar.xz 311436 BLAKE2B f3616b8d51f7a6987c9d4451feec9032b777a0fae4ed37ee68d95fc998bbefb09f84834435466e424f9b2dbe15a18b46d2fa5d7bc0a2307b30556734da06ed71 SHA512 113e7ff59d0e815b1e7bdbee601d5800264226eb7968b49aaf3c1505682058036df96be32ac939bef417313591b18447e12d46c32c0bdaf72a6a9143c22f2127

diff --git a/dev-libs/libite/libite-2.5.1.ebuild b/dev-libs/libite/libite-2.5.1.ebuild
new file mode 100644
index 000000000000..2caf2e8389ae
--- /dev/null
+++ b/dev-libs/libite/libite-2.5.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A collection of useful BSD APIs"
+HOMEPAGE="https://github.com/troglobit/libite"
+SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_configure() {
+	econf --enable-static=no
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+	rm "${D}/usr/share/doc/${PF}/LICENSE" || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2022-08-11 14:04 Yixun Lan
  0 siblings, 0 replies; 16+ messages in thread
From: Yixun Lan @ 2022-08-11 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     b786a14ada4afd778bf0800d00c3f45bde26e586
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 11 14:01:36 2022 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Aug 11 14:01:36 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b786a14a

dev-libs/libite: Keyword 2.5.1 arm64, #850538

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 dev-libs/libite/libite-2.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libite/libite-2.5.1.ebuild b/dev-libs/libite/libite-2.5.1.ebuild
index 4dc072f41234..1163330dee56 100644
--- a/dev-libs/libite/libite-2.5.1.ebuild
+++ b/dev-libs/libite/libite-2.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.x
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 src_configure() {
 	econf --enable-static=no


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2022-10-11 13:36 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2022-10-11 13:36 UTC (permalink / raw
  To: gentoo-commits

commit:     b6fd1334d76a1b946fbb0e460bb34e1fb959dcf8
Author:     Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Sun Oct  2 08:06:27 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Oct 11 13:36:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6fd1334

dev-libs/libite: drop 2.4.0

Signed-off-by: Oz N Tiram <oz.tiram <AT> gmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 -
 dev-libs/libite/libite-2.4.0.ebuild | 22 ----------------------
 2 files changed, 23 deletions(-)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index bf873f38e6e3..1a1f8066fc34 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1,2 +1 @@
-DIST libite-2.4.0.tar.xz 276008 BLAKE2B dcd721d02d15b6e8dbe84a885548429552eb4a683e51c49d144be2e40922e3f6e6e36f1fb92ec96db148f71068826b3a1f80812d8d5b1bf381a88b1598a3a1a8 SHA512 8e79084b616150dd4de491c6b8441d5043c81cf161bb655a32b6b7f8536682b967f4810870d8af4ae92780dedb7302bbc8db093036493506c88126143cb9bbef
 DIST libite-2.5.1.tar.xz 311436 BLAKE2B f3616b8d51f7a6987c9d4451feec9032b777a0fae4ed37ee68d95fc998bbefb09f84834435466e424f9b2dbe15a18b46d2fa5d7bc0a2307b30556734da06ed71 SHA512 113e7ff59d0e815b1e7bdbee601d5800264226eb7968b49aaf3c1505682058036df96be32ac939bef417313591b18447e12d46c32c0bdaf72a6a9143c22f2127

diff --git a/dev-libs/libite/libite-2.4.0.ebuild b/dev-libs/libite/libite-2.4.0.ebuild
deleted file mode 100644
index 2caf2e8389ae..000000000000
--- a/dev-libs/libite/libite-2.4.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A collection of useful BSD APIs"
-HOMEPAGE="https://github.com/troglobit/libite"
-SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-src_configure() {
-	econf --enable-static=no
-}
-
-src_install() {
-	default
-	find "${D}" -name '*.la' -delete || die
-	rm "${D}/usr/share/doc/${PF}/LICENSE" || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2022-10-11 13:36 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2022-10-11 13:36 UTC (permalink / raw
  To: gentoo-commits

commit:     9a649b8d750bea1c399fdcdd31764f9e1cbb0282
Author:     Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Sun Oct  2 08:06:52 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Oct 11 13:36:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a649b8d

dev-libs/libite: add 2.5.2

Signed-off-by: Oz N Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/27571
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 +
 dev-libs/libite/libite-2.5.2.ebuild | 23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index 1a1f8066fc34..3e1efd85ae09 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1 +1,2 @@
 DIST libite-2.5.1.tar.xz 311436 BLAKE2B f3616b8d51f7a6987c9d4451feec9032b777a0fae4ed37ee68d95fc998bbefb09f84834435466e424f9b2dbe15a18b46d2fa5d7bc0a2307b30556734da06ed71 SHA512 113e7ff59d0e815b1e7bdbee601d5800264226eb7968b49aaf3c1505682058036df96be32ac939bef417313591b18447e12d46c32c0bdaf72a6a9143c22f2127
+DIST libite-2.5.2.tar.xz 312136 BLAKE2B 657bd6437be34931d06891cc53a0338845bd70ce9fa378bbc3fa4b7e0262296eb47b5c5c86644b79dc1796796282e07b82c2dbc99d0fbfdfad8bbe36fe404100 SHA512 8b0ac905dde81bc740b2fc877d4716cc1c4848e769a0150c65e8b9f392115211f1c953bb0c31b412454e6ce3643455a18d314e7e8192886a2350e642575f148a

diff --git a/dev-libs/libite/libite-2.5.2.ebuild b/dev-libs/libite/libite-2.5.2.ebuild
new file mode 100644
index 000000000000..1163330dee56
--- /dev/null
+++ b/dev-libs/libite/libite-2.5.2.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A collection of useful BSD APIs"
+HOMEPAGE="https://github.com/troglobit/libite"
+SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+src_configure() {
+	econf --enable-static=no
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+	rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2023-09-06  7:12 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2023-09-06  7:12 UTC (permalink / raw
  To: gentoo-commits

commit:     0be55bcd0269d18907155737984083b27ba45720
Author:     Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Fri Aug  4 19:32:24 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Sep  6 07:10:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0be55bcd

dev-libs/libite: add 2.5.3

Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 +
 dev-libs/libite/libite-2.5.3.ebuild | 23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index 3e1efd85ae09..b0e2f1919850 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1,2 +1,3 @@
 DIST libite-2.5.1.tar.xz 311436 BLAKE2B f3616b8d51f7a6987c9d4451feec9032b777a0fae4ed37ee68d95fc998bbefb09f84834435466e424f9b2dbe15a18b46d2fa5d7bc0a2307b30556734da06ed71 SHA512 113e7ff59d0e815b1e7bdbee601d5800264226eb7968b49aaf3c1505682058036df96be32ac939bef417313591b18447e12d46c32c0bdaf72a6a9143c22f2127
 DIST libite-2.5.2.tar.xz 312136 BLAKE2B 657bd6437be34931d06891cc53a0338845bd70ce9fa378bbc3fa4b7e0262296eb47b5c5c86644b79dc1796796282e07b82c2dbc99d0fbfdfad8bbe36fe404100 SHA512 8b0ac905dde81bc740b2fc877d4716cc1c4848e769a0150c65e8b9f392115211f1c953bb0c31b412454e6ce3643455a18d314e7e8192886a2350e642575f148a
+DIST libite-2.5.3.tar.xz 315960 BLAKE2B 1edced83f353526b85bd121ae68b234880de35ffb96c12699ddc10bda22db1b8189fdfd43d0e0578ce913be4d4cdf5bf02b5175bbfcbb8299dfe6a1c391dfe18 SHA512 fe0c2168c2dfd87a8e68a50260467dae090fde82c9266f14c57630206216d880323a4dc1ec15cb0ca401dfe3d1ba71daa97caa0d9be9971af8b7ca5e7607e889

diff --git a/dev-libs/libite/libite-2.5.3.ebuild b/dev-libs/libite/libite-2.5.3.ebuild
new file mode 100644
index 000000000000..168deaa61157
--- /dev/null
+++ b/dev-libs/libite/libite-2.5.3.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A collection of useful BSD APIs"
+HOMEPAGE="https://github.com/troglobit/libite"
+SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+src_configure() {
+	econf --enable-static=no
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+	rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2023-09-06  7:12 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2023-09-06  7:12 UTC (permalink / raw
  To: gentoo-commits

commit:     e61a2c764216e7a2b675532dbb7445946044082b
Author:     Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Fri Aug  4 19:32:41 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Sep  6 07:10:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e61a2c76

dev-libs/libite: drop 2.5.1, 2.5.2

Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32173
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/Manifest            |  2 --
 dev-libs/libite/libite-2.5.1.ebuild | 23 -----------------------
 dev-libs/libite/libite-2.5.2.ebuild | 23 -----------------------
 3 files changed, 48 deletions(-)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index b0e2f1919850..8f1da05be98d 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1,3 +1 @@
-DIST libite-2.5.1.tar.xz 311436 BLAKE2B f3616b8d51f7a6987c9d4451feec9032b777a0fae4ed37ee68d95fc998bbefb09f84834435466e424f9b2dbe15a18b46d2fa5d7bc0a2307b30556734da06ed71 SHA512 113e7ff59d0e815b1e7bdbee601d5800264226eb7968b49aaf3c1505682058036df96be32ac939bef417313591b18447e12d46c32c0bdaf72a6a9143c22f2127
-DIST libite-2.5.2.tar.xz 312136 BLAKE2B 657bd6437be34931d06891cc53a0338845bd70ce9fa378bbc3fa4b7e0262296eb47b5c5c86644b79dc1796796282e07b82c2dbc99d0fbfdfad8bbe36fe404100 SHA512 8b0ac905dde81bc740b2fc877d4716cc1c4848e769a0150c65e8b9f392115211f1c953bb0c31b412454e6ce3643455a18d314e7e8192886a2350e642575f148a
 DIST libite-2.5.3.tar.xz 315960 BLAKE2B 1edced83f353526b85bd121ae68b234880de35ffb96c12699ddc10bda22db1b8189fdfd43d0e0578ce913be4d4cdf5bf02b5175bbfcbb8299dfe6a1c391dfe18 SHA512 fe0c2168c2dfd87a8e68a50260467dae090fde82c9266f14c57630206216d880323a4dc1ec15cb0ca401dfe3d1ba71daa97caa0d9be9971af8b7ca5e7607e889

diff --git a/dev-libs/libite/libite-2.5.1.ebuild b/dev-libs/libite/libite-2.5.1.ebuild
deleted file mode 100644
index 1163330dee56..000000000000
--- a/dev-libs/libite/libite-2.5.1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A collection of useful BSD APIs"
-HOMEPAGE="https://github.com/troglobit/libite"
-SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-src_configure() {
-	econf --enable-static=no
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-	rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
-}

diff --git a/dev-libs/libite/libite-2.5.2.ebuild b/dev-libs/libite/libite-2.5.2.ebuild
deleted file mode 100644
index 1163330dee56..000000000000
--- a/dev-libs/libite/libite-2.5.2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A collection of useful BSD APIs"
-HOMEPAGE="https://github.com/troglobit/libite"
-SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-src_configure() {
-	econf --enable-static=no
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-	rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2023-09-06  7:12 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2023-09-06  7:12 UTC (permalink / raw
  To: gentoo-commits

commit:     d85ffa4914132f9dc6b70fc3a016b1c0b524d908
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  6 07:10:35 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Sep  6 07:10:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d85ffa49

dev-libs/libite: update EAPI 7 -> 8

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/libite/libite-2.5.3.ebuild | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/dev-libs/libite/libite-2.5.3.ebuild b/dev-libs/libite/libite-2.5.3.ebuild
index 168deaa61157..91c25c54e4c0 100644
--- a/dev-libs/libite/libite-2.5.3.ebuild
+++ b/dev-libs/libite/libite-2.5.3.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DESCRIPTION="A collection of useful BSD APIs"
 HOMEPAGE="https://github.com/troglobit/libite"
@@ -11,10 +11,6 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
 
-src_configure() {
-	econf --enable-static=no
-}
-
 src_install() {
 	default
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2024-01-05 10:47 Viorel Munteanu
  0 siblings, 0 replies; 16+ messages in thread
From: Viorel Munteanu @ 2024-01-05 10:47 UTC (permalink / raw
  To: gentoo-commits

commit:     dced4a75d8b3dab118450974edc754f2a63a68ad
Author:     Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Sun Oct 22 17:43:22 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Jan  5 10:46:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dced4a75

dev-libs/libite: add 2.6.1

Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 +
 dev-libs/libite/libite-2.6.1.ebuild | 19 +++++++++++++++++++
 2 files changed, 20 insertions(+)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index 8f1da05be98d..248c0a73ecf7 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1 +1,2 @@
 DIST libite-2.5.3.tar.xz 315960 BLAKE2B 1edced83f353526b85bd121ae68b234880de35ffb96c12699ddc10bda22db1b8189fdfd43d0e0578ce913be4d4cdf5bf02b5175bbfcbb8299dfe6a1c391dfe18 SHA512 fe0c2168c2dfd87a8e68a50260467dae090fde82c9266f14c57630206216d880323a4dc1ec15cb0ca401dfe3d1ba71daa97caa0d9be9971af8b7ca5e7607e889
+DIST libite-2.6.1.tar.xz 318552 BLAKE2B 36716ef4224513ed175c272724f927b03de63587ea611a14ab80ecbe012db4982ed8f96089c0336960de6f1ff57e5a6d1a64db895a613a2b59021bcf0e896b08 SHA512 37320cc7093aad756b574e9415a3a2aed9d76a147720f2b6493a173943b4f2875723c6f4f1d79868e3bd5e312fd545349c7dbcd66a675cee4ee1fa9889bfc2ee

diff --git a/dev-libs/libite/libite-2.6.1.ebuild b/dev-libs/libite/libite-2.6.1.ebuild
new file mode 100644
index 000000000000..91c25c54e4c0
--- /dev/null
+++ b/dev-libs/libite/libite-2.6.1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A collection of useful BSD APIs"
+HOMEPAGE="https://github.com/troglobit/libite"
+SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+	rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/
@ 2024-01-05 10:47 Viorel Munteanu
  0 siblings, 0 replies; 16+ messages in thread
From: Viorel Munteanu @ 2024-01-05 10:47 UTC (permalink / raw
  To: gentoo-commits

commit:     ee84296d52d7f006193d9d73b1bd083f411d9b6e
Author:     Oz Tiram <oz.tiram <AT> gmail <DOT> com>
AuthorDate: Sun Oct 22 17:43:45 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Jan  5 10:46:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee84296d

dev-libs/libite: drop 2.5.3

Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33457
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 dev-libs/libite/Manifest            |  1 -
 dev-libs/libite/libite-2.5.3.ebuild | 19 -------------------
 2 files changed, 20 deletions(-)

diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest
index 248c0a73ecf7..d4e8a05c5d24 100644
--- a/dev-libs/libite/Manifest
+++ b/dev-libs/libite/Manifest
@@ -1,2 +1 @@
-DIST libite-2.5.3.tar.xz 315960 BLAKE2B 1edced83f353526b85bd121ae68b234880de35ffb96c12699ddc10bda22db1b8189fdfd43d0e0578ce913be4d4cdf5bf02b5175bbfcbb8299dfe6a1c391dfe18 SHA512 fe0c2168c2dfd87a8e68a50260467dae090fde82c9266f14c57630206216d880323a4dc1ec15cb0ca401dfe3d1ba71daa97caa0d9be9971af8b7ca5e7607e889
 DIST libite-2.6.1.tar.xz 318552 BLAKE2B 36716ef4224513ed175c272724f927b03de63587ea611a14ab80ecbe012db4982ed8f96089c0336960de6f1ff57e5a6d1a64db895a613a2b59021bcf0e896b08 SHA512 37320cc7093aad756b574e9415a3a2aed9d76a147720f2b6493a173943b4f2875723c6f4f1d79868e3bd5e312fd545349c7dbcd66a675cee4ee1fa9889bfc2ee

diff --git a/dev-libs/libite/libite-2.5.3.ebuild b/dev-libs/libite/libite-2.5.3.ebuild
deleted file mode 100644
index 91c25c54e4c0..000000000000
--- a/dev-libs/libite/libite-2.5.3.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="A collection of useful BSD APIs"
-HOMEPAGE="https://github.com/troglobit/libite"
-SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-	rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
-}


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

end of thread, other threads:[~2024-01-05 10:47 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-09  5:22 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/ Joonas Niilola
  -- strict thread matches above, loose matches on Subject: below --
2024-01-05 10:47 Viorel Munteanu
2024-01-05 10:47 Viorel Munteanu
2023-09-06  7:12 Joonas Niilola
2023-09-06  7:12 Joonas Niilola
2023-09-06  7:12 Joonas Niilola
2022-10-11 13:36 Joonas Niilola
2022-10-11 13:36 Joonas Niilola
2022-08-11 14:04 Yixun Lan
2021-12-25 23:20 Sam James
2021-12-25 23:20 Sam James
2021-04-28  7:08 Joonas Niilola
2021-04-28  7:08 Joonas Niilola
2020-03-18  8:30 Joonas Niilola
2020-02-27 13:54 Joonas Niilola
2017-12-07 10:29 Michael Palimaka

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