public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/hardened-dev:musl commit in: sys-libs/libc-bench/files/, sys-libs/libc-bench/
@ 2012-08-10  2:16 Anthony G. Basile
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony G. Basile @ 2012-08-10  2:16 UTC (permalink / raw
  To: gentoo-commits

commit:     9eaa660359eb51a5456891615695b15637cf9cff
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 10 02:15:45 2012 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Fri Aug 10 02:15:45 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=9eaa6603

sys-libs/libc-bench: initial commit

(Portage version: 2.1.10.65/git/Linux x86_64, unsigned Manifest commit)

---
 sys-libs/libc-bench/files/respect-flags.patch  |   23 +++++++++++++++++++
 sys-libs/libc-bench/libc-bench-20110206.ebuild |   28 ++++++++++++++++++++++++
 sys-libs/libc-bench/metadata.xml               |    8 ++++++
 3 files changed, 59 insertions(+), 0 deletions(-)

diff --git a/sys-libs/libc-bench/files/respect-flags.patch b/sys-libs/libc-bench/files/respect-flags.patch
new file mode 100644
index 0000000..19958fd
--- /dev/null
+++ b/sys-libs/libc-bench/files/respect-flags.patch
@@ -0,0 +1,23 @@
+diff -Naur libc-bench-20110206.orig//Makefile libc-bench-20110206/Makefile
+--- libc-bench-20110206.orig//Makefile	2011-01-31 02:13:00.000000000 -0500
++++ libc-bench-20110206/Makefile	2012-08-09 22:12:24.000000000 -0400
+@@ -2,8 +2,7 @@
+ SRCS = $(sort $(wildcard *.c))
+ OBJS = $(SRCS:.c=.o)
+ 
+-CFLAGS = -Os
+-LDFLAGS = -static
++LDFLAGS += -static
+ LIBS = -lpthread -lrt -lpthread
+ 
+ 
+@@ -12,9 +11,6 @@
+ clean:
+ 	rm -f $(OBJS) libc-bench
+ 
+-test: all
+-	./libc-bench
+-
+ libc-bench: $(OBJS)
+ 	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
+ 

diff --git a/sys-libs/libc-bench/libc-bench-20110206.ebuild b/sys-libs/libc-bench/libc-bench-20110206.ebuild
new file mode 100644
index 0000000..fda6e78
--- /dev/null
+++ b/sys-libs/libc-bench/libc-bench-20110206.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="4"
+
+inherit eutils
+
+DESCRIPTION="Time and memory-efficiency tests of various C/POSIX standard library functions"
+HOMEPAGE="http://www.etalabs.net/libc-bench.html"
+SRC_URI="http://www.etalabs.net/releases/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	epatch "${FILESDIR}"/respect-flags.patch
+}
+
+src_install() {
+	exeinto /usr/bin
+	doexe libc-bench
+}

diff --git a/sys-libs/libc-bench/metadata.xml b/sys-libs/libc-bench/metadata.xml
new file mode 100644
index 0000000..1e75873
--- /dev/null
+++ b/sys-libs/libc-bench/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>
+		<email>blueness@gentoo.org</email>
+		<name>Anthony G. Basile</name>
+	</maintainer>
+</pkgmetadata>


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

* [gentoo-commits] proj/hardened-dev:musl commit in: sys-libs/libc-bench/files/, sys-libs/libc-bench/
@ 2013-06-21 21:49 Anthony G. Basile
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony G. Basile @ 2013-06-21 21:49 UTC (permalink / raw
  To: gentoo-commits

commit:     5266c626763bdbec65aba1ca754fd2964ff53f86
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 21 21:50:21 2013 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Fri Jun 21 21:50:21 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=5266c626

sys-libs/libc-bench: move to tree as app-bench/libc-bench

---
 sys-libs/libc-bench/files/respect-flags.patch  | 23 ---------------------
 sys-libs/libc-bench/libc-bench-20110206.ebuild | 28 --------------------------
 sys-libs/libc-bench/metadata.xml               |  8 --------
 3 files changed, 59 deletions(-)

diff --git a/sys-libs/libc-bench/files/respect-flags.patch b/sys-libs/libc-bench/files/respect-flags.patch
deleted file mode 100644
index 19958fd..0000000
--- a/sys-libs/libc-bench/files/respect-flags.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -Naur libc-bench-20110206.orig//Makefile libc-bench-20110206/Makefile
---- libc-bench-20110206.orig//Makefile	2011-01-31 02:13:00.000000000 -0500
-+++ libc-bench-20110206/Makefile	2012-08-09 22:12:24.000000000 -0400
-@@ -2,8 +2,7 @@
- SRCS = $(sort $(wildcard *.c))
- OBJS = $(SRCS:.c=.o)
- 
--CFLAGS = -Os
--LDFLAGS = -static
-+LDFLAGS += -static
- LIBS = -lpthread -lrt -lpthread
- 
- 
-@@ -12,9 +11,6 @@
- clean:
- 	rm -f $(OBJS) libc-bench
- 
--test: all
--	./libc-bench
--
- libc-bench: $(OBJS)
- 	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
- 

diff --git a/sys-libs/libc-bench/libc-bench-20110206.ebuild b/sys-libs/libc-bench/libc-bench-20110206.ebuild
deleted file mode 100644
index fda6e78..0000000
--- a/sys-libs/libc-bench/libc-bench-20110206.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-
-inherit eutils
-
-DESCRIPTION="Time and memory-efficiency tests of various C/POSIX standard library functions"
-HOMEPAGE="http://www.etalabs.net/libc-bench.html"
-SRC_URI="http://www.etalabs.net/releases/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	epatch "${FILESDIR}"/respect-flags.patch
-}
-
-src_install() {
-	exeinto /usr/bin
-	doexe libc-bench
-}

diff --git a/sys-libs/libc-bench/metadata.xml b/sys-libs/libc-bench/metadata.xml
deleted file mode 100644
index 1e75873..0000000
--- a/sys-libs/libc-bench/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer>
-		<email>blueness@gentoo.org</email>
-		<name>Anthony G. Basile</name>
-	</maintainer>
-</pkgmetadata>


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

end of thread, other threads:[~2013-06-21 21:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-10  2:16 [gentoo-commits] proj/hardened-dev:musl commit in: sys-libs/libc-bench/files/, sys-libs/libc-bench/ Anthony G. Basile
  -- strict thread matches above, loose matches on Subject: below --
2013-06-21 21:49 Anthony G. Basile

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