public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/hardened-dev:uclibc commit in: sys-libs/uclibc/, sys-libs/uclibc/files/
Date: Mon,  2 Jan 2012 23:22:00 +0000 (UTC)	[thread overview]
Message-ID: <4a0cfb3192584c87d42da9c8bde46c44b41769be.blueness@gentoo> (raw)

commit:     4a0cfb3192584c87d42da9c8bde46c44b41769be
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  2 23:21:54 2012 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Jan  2 23:21:54 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=4a0cfb31

sys-libs/uclibc: removed 0.9.32

---
 .../uclibc/files/uclibc-0.9.32-BJA-sandbox.patch   |    9 ---
 .../uclibc/files/uclibc-0.9.32-fix_epoll.patch     |   42 ---------------
 sys-libs/uclibc/uclibc-0.9.32.ebuild               |   56 --------------------
 3 files changed, 0 insertions(+), 107 deletions(-)

diff --git a/sys-libs/uclibc/files/uclibc-0.9.32-BJA-sandbox.patch b/sys-libs/uclibc/files/uclibc-0.9.32-BJA-sandbox.patch
deleted file mode 100644
index 167d711..0000000
--- a/sys-libs/uclibc/files/uclibc-0.9.32-BJA-sandbox.patch
+++ /dev/null
@@ -1,9 +0,0 @@
---- ./libubacktrace/Makefile.in.ori	2011-07-25 19:14:19.427297221 +0200
-+++ ./libubacktrace/Makefile.in	2011-07-25 19:14:34.380349907 +0200
-@@ -71,5 +71,4 @@
- 	$(do_ar)
- 
- CLEAN_libubacktrace:
--	$(do_rm) $(addprefix $(libubacktrace_OUT)/*., o os oS a) \
--	 $(addprefix $(libubacktrace_ARCH_OUT)/*., o os oS a)
-+	$(do_rm) $(addprefix $(libubacktrace_OUT)/*., o os oS a)

diff --git a/sys-libs/uclibc/files/uclibc-0.9.32-fix_epoll.patch b/sys-libs/uclibc/files/uclibc-0.9.32-fix_epoll.patch
deleted file mode 100644
index 6e32d38..0000000
--- a/sys-libs/uclibc/files/uclibc-0.9.32-fix_epoll.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 8245f3b4638fdff2011c2657af1bb211def704bc Mon Sep 17 00:00:00 2001
-From: Phil Blundell <pb@pbcl.net>
-Date: Sat, 11 Jun 2011 05:10:46 +0000
-Subject: Fix __libc_epoll_pwait compile failure on x86
-
-This prevents "memory input 7 is not directly addressable" errors.
-
-| libc/sysdeps/linux/common/epoll.c: In function '__libc_epoll_pwait':
-| libc/sysdeps/linux/common/epoll.c:71:80: error: memory input 7 is not directly addressable
-| libc/sysdeps/linux/common/epoll.c:75:86: error: memory input 7 is not directly addressable
-| make: *** [libc/sysdeps/linux/common/epoll.o] Error 1
-| make: *** Waiting for unfinished jobs....
-
-Signed-off-by: Phil Blundell <pb@pbcl.net>
-Signed-off-by: Jason Woodward <jason.woodward@timesys.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-(limited to 'libc/sysdeps/linux/common/epoll.c')
-
-diff --git a/libc/sysdeps/linux/common/epoll.c b/libc/sysdeps/linux/common/epoll.c
-index 85b0cfd..ab3e73b 100644
---- a/libc/sysdeps/linux/common/epoll.c
-+++ b/libc/sysdeps/linux/common/epoll.c
-@@ -67,12 +67,13 @@ extern __typeof(epoll_pwait) __libc_epoll_pwait;
- int __libc_epoll_pwait(int epfd, struct epoll_event *events, int maxevents,
- 						int timeout, const sigset_t *set)
- {
-+    int nsig = _NSIG / 8;
- 	if (SINGLE_THREAD_P)
--		return INLINE_SYSCALL(epoll_pwait, 6, epfd, events, maxevents, timeout, set, _NSIG / 8);
-+		return INLINE_SYSCALL(epoll_pwait, 6, epfd, events, maxevents, timeout, set, nsig);
- # ifdef __UCLIBC_HAS_THREADS_NATIVE__
- 	else {
- 		int oldtype = LIBC_CANCEL_ASYNC ();
--		int result = INLINE_SYSCALL(epoll_pwait, 6, epfd, events, maxevents, timeout, set, _NSIG / 8);
-+		int result = INLINE_SYSCALL(epoll_pwait, 6, epfd, events, maxevents, timeout, set, nsig);
- 		LIBC_CANCEL_RESET (oldtype);
- 		return result;
- 	}
---
-cgit v0.9.0.1-2-gef13
-

diff --git a/sys-libs/uclibc/uclibc-0.9.32.ebuild b/sys-libs/uclibc/uclibc-0.9.32.ebuild
deleted file mode 100644
index b15d322..0000000
--- a/sys-libs/uclibc/uclibc-0.9.32.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/uclibc/uclibc-0.9.30.1-r1.ebuild,v 1.9 2011/04/20 18:10:38 ulm Exp $
-
-EAPI="4"
-
-inherit eutils
-
-MY_P=uClibc-0.9.32
-DESCRIPTION="C library for developing embedded Linux systems"
-HOMEPAGE="http://www.uclibc.org/"
-SRC_URI="http://uclibc.org/downloads/${MY_P}.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="-* amd64 x86"
-IUSE=""
-RESTRICT="strip"
-
-RDEPEND=""
-DEPEND=""
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-BJA-sandbox.patch
-	epatch "${FILESDIR}"/${P}-fix_epoll.patch
-}
-
-src_configure() {
-	cp "${FILESDIR}"/uclibc.config .config
-	yes "" 2> /dev/null | make -s oldconfig > /dev/null || die "could not make oldconfig"
-}
-
-src_compile() {
-	emake headers || die "make headers failed"
-	emake || die "make failed"
-	emake utils || die "make utils failed"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "install failed"
-
-	# remove files coming from kernel-headers
-	rm -rf "${D}"/usr/include/{linux,asm*}
-
-	emake DESTDIR="${D}" install_utils || die "install-utils failed"
-	dobin extra/scripts/getent
-	dodoc Changelog* README TODO docs/*.txt DEDICATION.mjn3
-}
-
-pkg_postinst() {
-	echo "UTC" > "${ROOT}"/etc/TZ
-	/sbin/ldconfig
-	[[ -x /sbin/telinit ]] && /sbin/telinit U &> /dev/null
-}



             reply	other threads:[~2012-01-02 23:22 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-02 23:22 Anthony G. Basile [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-06-09 16:29 [gentoo-commits] proj/hardened-dev:uclibc commit in: sys-libs/uclibc/, sys-libs/uclibc/files/ Anthony G. Basile
2012-05-21 18:13 Anthony G. Basile
2012-05-15 15:02 Anthony G. Basile
2012-04-15 19:54 Anthony G. Basile
2012-04-15 19:34 Anthony G. Basile
2012-04-13 19:49 Anthony G. Basile
2012-04-01 21:38 Anthony G. Basile
2012-03-15  9:56 Anthony G. Basile
2012-02-14 15:19 Anthony G. Basile
2012-01-28  5:33 Anthony G. Basile
2012-01-05 19:46 Anthony G. Basile
2012-01-02 14:52 Anthony G. Basile
2011-12-31 19:19 Anthony G. Basile
2011-12-31 19:12 Anthony G. Basile
2011-12-21  1:10 Anthony G. Basile
2011-12-20 20:14 Anthony G. Basile

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=4a0cfb3192584c87d42da9c8bde46c44b41769be.blueness@gentoo \
    --to=blueness@gentoo.org \
    --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