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: app-portage/version/
Date: Tue, 11 Aug 2020 17:04:57 +0000 (UTC)	[thread overview]
Message-ID: <1597165480.77468b0bb772de12e9df4cdcd7b176466f7bd9bf.AzaelReyes@gentoo> (raw)

commit:     77468b0bb772de12e9df4cdcd7b176466f7bd9bf
Author:     Azael Reyes <azael.devel <AT> gmail <DOT> com>
AuthorDate: Tue Aug 11 17:03:55 2020 +0000
Commit:     Azael Reyes <azael.devel <AT> gmail <DOT> com>
CommitDate: Tue Aug 11 17:04:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=77468b0b

app-portage/version: adding package version

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

 app-portage/version/Manifest                   |  2 ++
 app-portage/version/metadata.xml               |  8 +++++++
 app-portage/version/version-0.6.1_alpha.ebuild | 32 ++++++++++++++++++++++++++
 app-portage/version/version-0.6.2_alpha.ebuild | 32 ++++++++++++++++++++++++++
 4 files changed, 74 insertions(+)

diff --git a/app-portage/version/Manifest b/app-portage/version/Manifest
new file mode 100644
index 0000000..e317736
--- /dev/null
+++ b/app-portage/version/Manifest
@@ -0,0 +1,2 @@
+DIST 0.6.1.tar.gz 24986 BLAKE2B a78b7b1a5a2aec26afba6916483a40ac17c2aafae45511d3ba35bf28ec8466e1b696f235e1d3d54c83bffa5e9f974c7f2cd8f188e637d8b315e876d91741fae2 SHA512 ff68c7cfec5c59a1cfb8a600a1a439e7bdacba464c27e114f6fc0879caaf66cf04447e8dfff5c4afc02808fd19677f979520121b00c2d1f0a4995c5adade728d
+DIST 0.6.2-alpha.tar.gz 35658 BLAKE2B 89be24ecf24ac711045711f65303eb2deae9cccaf8d1fbc28c8f07e4d1fff3234e5ffdb0686de05fa29becca9d4eba2875307a4842f0f1aa66a8910d74f984cc SHA512 1fbb9295209e58babe1039ded6295024db040b4c5775f405be4af5e49035d9d968f322d919b055567340998828d04bafab7a140d98807d4a0d8eeedda7ed2dba

diff --git a/app-portage/version/metadata.xml b/app-portage/version/metadata.xml
new file mode 100644
index 0000000..3a36ca4
--- /dev/null
+++ b/app-portage/version/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>azael.devel@gmail.com</email>
+		<name>Azael Reyes</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/app-portage/version/version-0.6.1_alpha.ebuild b/app-portage/version/version-0.6.1_alpha.ebuild
new file mode 100644
index 0000000..f50ecbd
--- /dev/null
+++ b/app-portage/version/version-0.6.1_alpha.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+MYPV="${PV/_alpha}"
+
+DESCRIPTION="A command line/operator for package version."
+HOMEPAGE="https://github.com/azaeldevel/octetos-version"
+SRC_URI="https://github.com/azaeldevel/octetos-${PN}/archive/${MYPV}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE=""
+
+DEPEND="dev-libs/octetos-core"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+S="${WORKDIR}/octetos-${PN}-${MYPV}"
+
+src_prepare() {
+	default
+	eautoreconf -fi
+}
+src_configure() {
+	econf --with-portage
+}

diff --git a/app-portage/version/version-0.6.2_alpha.ebuild b/app-portage/version/version-0.6.2_alpha.ebuild
new file mode 100644
index 0000000..75332f7
--- /dev/null
+++ b/app-portage/version/version-0.6.2_alpha.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+MYPV="${PV/_alpha/-alpha}"
+
+DESCRIPTION="A command line/operator for package version."
+HOMEPAGE="https://github.com/azaeldevel/octetos-version"
+SRC_URI="https://github.com/azaeldevel/octetos-${PN}/archive/${MYPV}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE=""
+
+DEPEND="dev-libs/octetos-core"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+S="${WORKDIR}/octetos-${PN}-${MYPV}"
+
+src_prepare() {
+	default
+	eautoreconf -fi
+}
+src_configure() {
+	econf --with-portage
+}


             reply	other threads:[~2020-08-11 17:05 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-11 17:04 Azael Reyes [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-08-12  5:41 [gentoo-commits] repo/proj/guru:dev commit in: app-portage/version/ Azael Reyes
2020-08-12  7:41 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  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-13  3:13 Azael Reyes
2020-08-13  8:52 Andrew Ammerlaan
2020-08-22 16:20 Azael Reyes
2020-08-29  5:31 Azael Reyes
2020-08-31  2:55 Azael Reyes
2020-09-05 21:29 Azael Reyes
2020-09-07  9:02 Azael Reyes
2020-09-25  5:02 Azael Reyes
2021-01-05  8:05 Azael Reyes
2021-09-04 21:05 Azael Reyes
2023-05-27 17:11 Rahul Sandhu

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=1597165480.77468b0bb772de12e9df4cdcd7b176466f7bd9bf.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