mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 12:03:02 -04:00
Merge updates from master
This commit is contained in:
@@ -3,3 +3,4 @@ DIST 2.0.0-alpha.2.tar.gz 122978 BLAKE2B 9ed7fcb95b9c2f85072bf73ac92710eaa9eb4c8
|
||||
DIST 2.2.0-beta.3.tar.gz 123176 BLAKE2B f87131deccefce76a7fefb0e829564c166f01f316c54bd56e1283999434db809cb54be2278e1653dcb3a01a371b09b08fd95decf1b361c1515e5decf3609453d SHA512 10f70c02b7c0012f1dab31e96aa3337dccc662c51a31c2ad186b6e76815afa8645f3f2370d6eaa788cdbbded416bc36b53e1971005cca49ee10c0d8e6baac239
|
||||
DIST 2.2.1-beta.1.tar.gz 123179 BLAKE2B f31f1870c3467c02f2b7653dd81abdf44e1c8ab821d8ec404f0a9ddb296438caa631dd586c62727eb9ecaf83452a2b0923f2a72323e5a49e895b99b9296e409f SHA512 408569368b3dc2257149ad4c25c07a8deb3176fc6b08a003c98e59386ece3adcf0a45198b3802e3c0c1f537d4feb30703d5997f5bcae4e9d9e708829da46a843
|
||||
DIST 2.3.0-beta.1.tar.gz 123195 BLAKE2B 2590f495f8890301f2731463139f0ca653beba496b33d592e1000a64a8d773335d821990e2ad128d969bf50794ce55a5da71ba2cfff0fc307a6166238206806d SHA512 0e2e28c7c1109a9b5ec7b2a493a9aba747b2c88a83286b561487e3fec20ee1fba4d9b292f5b47cebf8cc90fbe011566314a98366bf2e7beb800b9c1e8baf839e
|
||||
DIST 2.3.1-beta.1.tar.gz 123229 BLAKE2B b075432d35936e3de4601d929813275eac577ec077e9f41cf9d45449e2b369d0197f36f2b54b48931d6bd127bd55e04b68b20ec00de7391b3062e7352efcfa44 SHA512 0a551b384d5b472fcdc5ceace5b8bfcb364ece89477db6367dfb6471d8a26b216c0d58e359e6f70c83f37dca03d7dc63b71e79ae62a49a447309270db909c327
|
||||
|
||||
33
dev-libs/octetos-core/octetos-core-2.3.1_beta.ebuild
Normal file
33
dev-libs/octetos-core/octetos-core-2.3.1_beta.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools
|
||||
|
||||
MYPV="${PV/_beta/-beta.1}"
|
||||
|
||||
DESCRIPTION="C/C++ library to mainly provide Semantic Versioned implementation"
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-core"
|
||||
SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
>=sys-devel/gcc-8.1
|
||||
>=sys-devel/bison-3.1
|
||||
dev-libs/libconfig
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
}
|
||||
2
dev-libs/octetos-coreutils/Manifest
Normal file
2
dev-libs/octetos-coreutils/Manifest
Normal file
@@ -0,0 +1,2 @@
|
||||
DIST 0.3.0-alpha.1.tar.gz 56341 BLAKE2B f6eccfef565a3303939fefd45d9d0d10847032eb747ba9dc4fdca0f6d43aaf27aa6fc08273b89299cf071a5b0087c67a8eabecbba6542ab1b1ed7b9862397ebc SHA512 155fbf160edb48ad763e17ef2051b3b2e4b16c3bfda8156377d37d2d03710e7c7b933fbc02dfcba9deecedd844c770e2d116a3a1ff9535b407978a98e89bccdf
|
||||
DIST 0.4.0-alpha.1.tar.gz 56491 BLAKE2B b9438147acff96b81cacc21e59837c1f39c06c46ae4775ea3c6341f4168bde949bc348944807abc0b39b0936a61a871fd50852ac25c6e7af913597f7cc57035c SHA512 020830eced735604ce1fbdc2c1f54524c423b151319dcf161616f7654e04f0adf6a7726450f76bbbe4fc7eaa241d44c98a961b9157c277e3080dbdbea5de2093
|
||||
8
dev-libs/octetos-coreutils/metadata.xml
Normal file
8
dev-libs/octetos-coreutils/metadata.xml
Normal file
@@ -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>
|
||||
@@ -0,0 +1,34 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools
|
||||
|
||||
MYPV="${PV/_alpha/-alpha.1}"
|
||||
MYP="${PN}-${MYPV}"
|
||||
|
||||
DESCRIPTION="Similar to coretils but is a C ++ API."
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-coreutils"
|
||||
SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-libs/octetos-core"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="dev-util/cunit"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools
|
||||
|
||||
MYPV="${PV/_alpha/-alpha.1}"
|
||||
MYP="${PN}-${MYPV}"
|
||||
|
||||
DESCRIPTION="Similar to coretils but is a C ++ API."
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-coreutils"
|
||||
SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-libs/octetos-core"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="dev-util/cunit"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf
|
||||
}
|
||||
Reference in New Issue
Block a user