* [gentoo-commits] repo/gentoo:master commit in: dev-libs/squareball/
@ 2016-02-26 0:34 Rafael Martins
0 siblings, 0 replies; 3+ messages in thread
From: Rafael Martins @ 2016-02-26 0:34 UTC (permalink / raw
To: gentoo-commits
commit: e13920ddc012357e14189364dee85e8e8c7a264d
Author: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 26 00:32:47 2016 +0000
Commit: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
CommitDate: Fri Feb 26 00:33:12 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e13920dd
dev-libs/squareball: new package
Package-Manager: portage-2.2.26
dev-libs/squareball/metadata.xml | 15 ++++++++
dev-libs/squareball/squareball-9999.ebuild | 61 ++++++++++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/dev-libs/squareball/metadata.xml b/dev-libs/squareball/metadata.xml
new file mode 100644
index 0000000..4b2e3e7
--- /dev/null
+++ b/dev-libs/squareball/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>rafaelmartins@gentoo.org</email>
+ <name>Rafael G. Martins</name>
+ </maintainer>
+ <upstream>
+ <maintainer status="active">
+ <email>rafael@rafaelmartins.eng.br</email>
+ <name>Rafael G. Martins</name>
+ </maintainer>
+ <remote-id type="github">rafaelmartins/squareball</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-libs/squareball/squareball-9999.ebuild b/dev-libs/squareball/squareball-9999.ebuild
new file mode 100644
index 0000000..e1e1c16
--- /dev/null
+++ b/dev-libs/squareball/squareball-9999.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+if [[ ${PV} = *9999* ]]; then
+ EGIT_REPO_URI="
+ git://github.com/rafaelmartins/squareball.git
+ https://github.com/rafaelmartins/squareball.git"
+ inherit git-r3 autotools
+fi
+
+inherit eutils
+
+DESCRIPTION="A general-purpose library for C99"
+HOMEPAGE="https://github.com/rafaelmartins/squareball"
+
+SRC_URI="https://github.com/rafaelmartins/${PN}/releases/download/v${PV}/${P}.tar.xz"
+KEYWORDS="~amd64 ~x86"
+if [[ ${PV} = *9999* ]]; then
+ SRC_URI=""
+ KEYWORDS=""
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="doc test static-libs"
+
+RDEPEND=""
+
+# pkg-config is used only to find cmocka libraries
+DEPEND="${DEPEND}
+ test? (
+ virtual/pkgconfig
+ dev-util/cmocka )
+ doc? (
+ app-doc/doxygen )"
+
+src_prepare() {
+ [[ ${PV} = *9999* ]] && eautoreconf
+ default
+}
+
+src_configure() {
+ econf \
+ $(use_enable doc) \
+ $(use_enable test tests) \
+ $(use_enable static-libs static) \
+ --disable-valgrind
+}
+
+src_compile() {
+ default
+ use doc && emake docs
+}
+
+src_install() {
+ default
+ use doc && dohtml -r doc/build/html/*
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/squareball/
@ 2016-02-29 0:17 Rafael Martins
0 siblings, 0 replies; 3+ messages in thread
From: Rafael Martins @ 2016-02-29 0:17 UTC (permalink / raw
To: gentoo-commits
commit: 0bbf96b990945b474626aa21c11995d4bcd3587b
Author: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 29 00:16:14 2016 +0000
Commit: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
CommitDate: Mon Feb 29 00:16:32 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bbf96b9
dev-libs/squareball: first release. updated live ebuild
Package-Manager: portage-2.2.26
dev-libs/squareball/Manifest | 1 +
.../{squareball-9999.ebuild => squareball-0.1.ebuild} | 10 +++++-----
dev-libs/squareball/squareball-9999.ebuild | 10 +++++-----
3 files changed, 11 insertions(+), 10 deletions(-)
diff --git a/dev-libs/squareball/Manifest b/dev-libs/squareball/Manifest
new file mode 100644
index 0000000..f0b40e2
--- /dev/null
+++ b/dev-libs/squareball/Manifest
@@ -0,0 +1 @@
+DIST squareball-0.1.tar.xz 239784 SHA256 6af816486f9d6bc6ffe1375413b573047192cff935231269b1708c07356e0ecd SHA512 50e88af8ded3fdbf6d67de57931226740d1f66b370580ef3815443a0e95219a753f85bda111bb34874b32c267a5ce2ac5f7e4833d5c688b274e0459215c97a83 WHIRLPOOL 4202a381731df7313a1d57b0a67a8f7ef0a342fd54b32a6e6ae9f5d58bd3e36b2f87c847c1998a1823d8da0b615f6081be605b0d80a63e6e78bf9588ef471944
diff --git a/dev-libs/squareball/squareball-9999.ebuild b/dev-libs/squareball/squareball-0.1.ebuild
similarity index 87%
copy from dev-libs/squareball/squareball-9999.ebuild
copy to dev-libs/squareball/squareball-0.1.ebuild
index e1e1c16..2c9e5e3 100644
--- a/dev-libs/squareball/squareball-9999.ebuild
+++ b/dev-libs/squareball/squareball-0.1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
if [[ ${PV} = *9999* ]]; then
EGIT_REPO_URI="
@@ -29,10 +29,9 @@ IUSE="doc test static-libs"
RDEPEND=""
-# pkg-config is used only to find cmocka libraries
-DEPEND="${DEPEND}
+DEPEND="
+ virtual/pkgconfig
test? (
- virtual/pkgconfig
dev-util/cmocka )
doc? (
app-doc/doxygen )"
@@ -56,6 +55,7 @@ src_compile() {
}
src_install() {
+ use doc && HTML_DOCS=( doc/build/html/* )
default
- use doc && dohtml -r doc/build/html/*
+ prune_libtool_files --all
}
diff --git a/dev-libs/squareball/squareball-9999.ebuild b/dev-libs/squareball/squareball-9999.ebuild
index e1e1c16..2c9e5e3 100644
--- a/dev-libs/squareball/squareball-9999.ebuild
+++ b/dev-libs/squareball/squareball-9999.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
if [[ ${PV} = *9999* ]]; then
EGIT_REPO_URI="
@@ -29,10 +29,9 @@ IUSE="doc test static-libs"
RDEPEND=""
-# pkg-config is used only to find cmocka libraries
-DEPEND="${DEPEND}
+DEPEND="
+ virtual/pkgconfig
test? (
- virtual/pkgconfig
dev-util/cmocka )
doc? (
app-doc/doxygen )"
@@ -56,6 +55,7 @@ src_compile() {
}
src_install() {
+ use doc && HTML_DOCS=( doc/build/html/* )
default
- use doc && dohtml -r doc/build/html/*
+ prune_libtool_files --all
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/squareball/
@ 2016-04-06 0:04 Rafael Martins
0 siblings, 0 replies; 3+ messages in thread
From: Rafael Martins @ 2016-04-06 0:04 UTC (permalink / raw
To: gentoo-commits
commit: 6c23e379aaa90283db610cd7996a9596480d2f0a
Author: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 6 00:02:41 2016 +0000
Commit: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
CommitDate: Wed Apr 6 00:02:41 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c23e379
dev-libs/squareball: Version bump.
Package-Manager: portage-2.2.26
dev-libs/squareball/Manifest | 2 +-
dev-libs/squareball/{squareball-0.1.ebuild => squareball-0.2.0.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/squareball/Manifest b/dev-libs/squareball/Manifest
index f0b40e2..950063a 100644
--- a/dev-libs/squareball/Manifest
+++ b/dev-libs/squareball/Manifest
@@ -1 +1 @@
-DIST squareball-0.1.tar.xz 239784 SHA256 6af816486f9d6bc6ffe1375413b573047192cff935231269b1708c07356e0ecd SHA512 50e88af8ded3fdbf6d67de57931226740d1f66b370580ef3815443a0e95219a753f85bda111bb34874b32c267a5ce2ac5f7e4833d5c688b274e0459215c97a83 WHIRLPOOL 4202a381731df7313a1d57b0a67a8f7ef0a342fd54b32a6e6ae9f5d58bd3e36b2f87c847c1998a1823d8da0b615f6081be605b0d80a63e6e78bf9588ef471944
+DIST squareball-0.2.0.tar.xz 231844 SHA256 5ab3ce24a0a340a2f49e91b6474d4edac3a243cb063679a06a820f6172083f0c SHA512 be039d2e2120e87bb7289e75185c9ad46452fe6ae167dda2b60944d0a32f7ff7e89504f5ddd8343e0150d12ef22d71c51ab9290e90c43a930773bd39576bdf31 WHIRLPOOL 544ecd8e0f7639cf5ff0b1110a68673a5f4a1d46131b3d0d07e35400863fb6df01fe10a2f6219ddd3f80fc905d4c1e5d27080ad5453752a8592d8ca2d2185163
diff --git a/dev-libs/squareball/squareball-0.1.ebuild b/dev-libs/squareball/squareball-0.2.0.ebuild
similarity index 100%
rename from dev-libs/squareball/squareball-0.1.ebuild
rename to dev-libs/squareball/squareball-0.2.0.ebuild
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-04-06 0:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-29 0:17 [gentoo-commits] repo/gentoo:master commit in: dev-libs/squareball/ Rafael Martins
-- strict thread matches above, loose matches on Subject: below --
2016-04-06 0:04 Rafael Martins
2016-02-26 0:34 Rafael Martins
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox