public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Azael Reyes" <azael.devel@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/octetos-core/
Date: Sat,  4 Sep 2021 20:16:56 +0000 (UTC)	[thread overview]
Message-ID: <1630786604.81f45e5bdf8308a0072024fd71fb03ba6dba22b5.AzaelReyes@gentoo> (raw)

commit:     81f45e5bdf8308a0072024fd71fb03ba6dba22b5
Author:     Azael Reyes <azael.devel <AT> gmail <DOT> com>
AuthorDate: Fri Sep  3 21:16:30 2021 +0000
Commit:     Azael Reyes <azael.devel <AT> gmail <DOT> com>
CommitDate: Sat Sep  4 20:16:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=81f45e5b

dev-libs/octetos-core: fixed:  compiling erros.

Signed-off-by: Azael Reyes <azael.devel <AT> gmail.com>
Package-Manager: Portage-3.0.20, Repoman-3.0.2

 dev-libs/octetos-core/Manifest                     |  2 ++
 .../octetos-core/octetos-core-2.31.2_beta.ebuild   | 39 ++++++++++++++++++++++
 .../octetos-core/octetos-core-2.31.3_beta.ebuild   | 39 ++++++++++++++++++++++
 3 files changed, 80 insertions(+)

diff --git a/dev-libs/octetos-core/Manifest b/dev-libs/octetos-core/Manifest
index aea0bb450..22d1ed74c 100644
--- a/dev-libs/octetos-core/Manifest
+++ b/dev-libs/octetos-core/Manifest
@@ -2,3 +2,5 @@ DIST octetos-core-2.15.0_beta.tar.gz 96858 BLAKE2B eb49b8fb3b132a3f142a41735b9ad
 DIST octetos-core-2.20.0_beta.tar.gz 97189 BLAKE2B 9906d05e0861aa54fddfa6d9e75862d88dfcce955bdd0ee940bc634ca936bcc1f5ce8ade3d8c0e754a2100401063b413930cf70a135957a6ac69bc80320f6ea4 SHA512 33f1fedcc9280bc9709ddb6e8fe90dd1d1abb940651961457c4b42152cc48ea51f9cec0b34b22e4e89ead131cb5b92dcbd88c5a82325e5625be92536487bd333
 DIST octetos-core-2.25.0_beta.tar.gz 99477 BLAKE2B 4ea8289c4fdee9bf7c9e0d8626d04a2f7ee670ea30a42122c9539094d8caee0684dad30b8a0eb8d9235a619766aa992b5126537cc6ee3e978fb5793d8f292cd8 SHA512 864c5367e13d9c02ef4c3fadb856f5e59f85f3de8de32d7bcccd69f4605b904d36b9cf19a3c4d6ad2aff0b1e1c9510e132c09d27d1c12956025b882256e74ba5
 DIST octetos-core-2.25.1_beta.tar.gz 99500 BLAKE2B b8e9a38e79311866cc30e95bd48669cc59b988ff11a6f860cc22cdd27e5e0b6557880c4747248a4ec5bcbc18ebd49f0b17fdd45d1e0bdbb3720aba7175fa4b4d SHA512 7d5fbbf7aa24dedb28df4e958cf1433f803093372f58920e4e471e33a65ed59cf97b0df7b5918ae65f9c2739bc6b0c83bf99efaac727e67f6a434a3eb5e5bc5f
+DIST octetos-core-2.31.2_beta.tar.gz 109324 BLAKE2B a8cf319229ae03804ebf1062aeee984837a69b20e90257f6a966404525ee650828477f878b87a6ddc32f907ecb4855f3947b39e349095e71945b3236a6e41bfc SHA512 f1051567300025751b8486602897d1e30b25458cdc33f974f23eab72361d65c90d20d4f6d84b2609cdf002a1f87586be053a2104fec275f93a56d6bae87db4ab
+DIST octetos-core-2.31.3_beta.tar.gz 109294 BLAKE2B baf2d98dae6973f9455d747c9833bf8123c9b8171d4d3e6c94e880d9a5adbd0248fa5a02dbbbd63c21d97755b52d239ab126470f0dac982861748a09c315b006 SHA512 fdab21df5080472a393d53a9bd4b1b6a14b04801160051f950f7eb0cb76c602b51244c9d1ab087f659b00da6ddb5b8d3ae52185a82e0e23f2b0beecd2a9484e6

diff --git a/dev-libs/octetos-core/octetos-core-2.31.2_beta.ebuild b/dev-libs/octetos-core/octetos-core-2.31.2_beta.ebuild
new file mode 100644
index 000000000..8970c37f7
--- /dev/null
+++ b/dev-libs/octetos-core/octetos-core-2.31.2_beta.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MYPV="${PV/_beta/-beta/}"
+DESCRIPTION="C/C++ library to mainly provide Semantic Versioned implementation"
+HOMEPAGE="https://github.com/azaeldevel/octetos-core"
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/azaeldevel/octetos-core.git"
+else
+	inherit autotools
+	SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+DEPEND="
+	dev-libs/libconfig
+	dev-perl/XML-Parser
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	dev-util/cunit
+	dev-util/intltool
+	sys-devel/bison
+	>=sys-devel/gcc-8.1
+	sys-devel/libtool
+"
+
+S="${WORKDIR}/${PN}-${MYPV}"
+
+src_prepare() {
+	default
+	eautoreconf -fi
+}

diff --git a/dev-libs/octetos-core/octetos-core-2.31.3_beta.ebuild b/dev-libs/octetos-core/octetos-core-2.31.3_beta.ebuild
new file mode 100644
index 000000000..8970c37f7
--- /dev/null
+++ b/dev-libs/octetos-core/octetos-core-2.31.3_beta.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MYPV="${PV/_beta/-beta/}"
+DESCRIPTION="C/C++ library to mainly provide Semantic Versioned implementation"
+HOMEPAGE="https://github.com/azaeldevel/octetos-core"
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/azaeldevel/octetos-core.git"
+else
+	inherit autotools
+	SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+DEPEND="
+	dev-libs/libconfig
+	dev-perl/XML-Parser
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	dev-util/cunit
+	dev-util/intltool
+	sys-devel/bison
+	>=sys-devel/gcc-8.1
+	sys-devel/libtool
+"
+
+S="${WORKDIR}/${PN}-${MYPV}"
+
+src_prepare() {
+	default
+	eautoreconf -fi
+}


             reply	other threads:[~2021-09-04 20:17 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-04 20:16 Azael Reyes [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-16  2:16 [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/octetos-core/ Quincy Fleming
2024-05-16  2:16 Quincy Fleming
2021-12-18  0:05 Azael Reyes
2021-09-04 20:16 Azael Reyes
2021-07-03 16:11 Azael Reyes
2021-07-03 15:58 Azael Reyes
2021-06-26 23:50 Azael Reyes
2021-05-25  8:10 Anna Vyalkova
2021-05-11  7:38 Andrew Ammerlaan
2021-05-11  2:48 Azael Reyes
2021-01-05  8:05 Azael Reyes
2020-12-15  6:21 Azael Reyes
2020-11-28  8:24 Theo Anderson
2020-11-03  3:12 Azael Reyes
2020-08-31  2:55 Azael Reyes
2020-08-24  7:49 Andrew Ammerlaan
2020-08-20 22:41 Azael Reyes
2020-08-20 22:41 Azael Reyes
2020-08-19 22:58 Azael Reyes
2020-08-12  7:50 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-08-12  7:49 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-08-12  5:41 Azael Reyes
2020-08-11  2:37 Azael Reyes
2020-06-30 21:11 Azael Reyes
2020-05-05  9:56 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-05-05  9:08 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-05-05  2:15 Azael Reyes
2020-05-01  9:59 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-05-01  9:30 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-30 17:39 Azael Reyes

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=1630786604.81f45e5bdf8308a0072024fd71fb03ba6dba22b5.AzaelReyes@gentoo \
    --to=azael.devel@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