public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-freebsd/freebsd-lib/files/
@ 2017-02-11 20:16 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2017-02-11 20:16 UTC (permalink / raw
  To: gentoo-commits

commit:     978bfa02cc3c1d14d32cbebd9a1b300b334ffca3
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Feb 10 16:53:21 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 11 20:14:04 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978bfa02

sys-freebsd/freebsd-lib: remove unused patches/file

Closes: https://github.com/gentoo/gentoo/pull/3903

 .../files/freebsd-lib-10.0-libusb.patch            | 19 ------
 .../files/freebsd-lib-11.0-liblink.patch           | 62 --------------------
 .../freebsd-lib/files/freebsd-lib-bsdxml.patch     | 13 -----
 .../freebsd-lib/files/freebsd-lib-new_as.patch     | 68 ----------------------
 sys-freebsd/freebsd-lib/files/libmap.conf          |  8 ---
 5 files changed, 170 deletions(-)

diff --git a/sys-freebsd/freebsd-lib/files/freebsd-lib-10.0-libusb.patch b/sys-freebsd/freebsd-lib/files/freebsd-lib-10.0-libusb.patch
deleted file mode 100644
index 296825259f..0000000000
--- a/sys-freebsd/freebsd-lib/files/freebsd-lib-10.0-libusb.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/lib/libusb/Makefile b/lib/libusb/Makefile
-index 21016a9..26010e8 100644
---- a/lib/libusb/Makefile
-+++ b/lib/libusb/Makefile
-@@ -40,11 +40,11 @@ CFLAGS+=	-DCOMPAT_32BIT
- 
- beforeinstall:
- 	${INSTALL} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
--		${.CURDIR}/libusb-0.1.pc ${DESTDIR}${LIBDATADIR}/pkgconfig
-+		${.CURDIR}/libusb-0.1.pc ${DESTDIR}${LIBDIR}/pkgconfig
- 	${INSTALL} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
--		${.CURDIR}/libusb-1.0.pc ${DESTDIR}${LIBDATADIR}/pkgconfig
-+		${.CURDIR}/libusb-1.0.pc ${DESTDIR}${LIBDIR}/pkgconfig
- 	${INSTALL} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
--		${.CURDIR}/libusb-2.0.pc ${DESTDIR}${LIBDATADIR}/pkgconfig
-+		${.CURDIR}/libusb-2.0.pc ${DESTDIR}${LIBDIR}/pkgconfig
- 
- #
- # Cross platform support

diff --git a/sys-freebsd/freebsd-lib/files/freebsd-lib-11.0-liblink.patch b/sys-freebsd/freebsd-lib/files/freebsd-lib-11.0-liblink.patch
deleted file mode 100644
index da495e48eb..0000000000
--- a/sys-freebsd/freebsd-lib/files/freebsd-lib-11.0-liblink.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-diff --git a/lib/libproc/Makefile b/lib/libproc/Makefile
-index 2dedf11..275f4c3 100644
---- a/lib/libproc/Makefile
-+++ b/lib/libproc/Makefile
-@@ -15,6 +15,7 @@ SRCS=	proc_bkpt.c		\
- INCS=	libproc.h
- 
- CFLAGS+=	-I${.CURDIR}
-+CFLAGS+=	-I${.CURDIR}/../libelf
- 
- .if ${MK_CXX} == "no"
- CFLAGS+=	-DNO_CXA_DEMANGLE
-@@ -28,6 +29,9 @@ LIBADD+=	elf rtld_db util
- 
- .if ${MK_CDDL} != "no"
- LIBADD+=	ctf
-+LDADD+=		-lelf
-+LDFLAGS+=	-L${.OBJDIR}/../libelf
-+
- IGNORE_PRAGMA=	YES
- CFLAGS+=	-I${.CURDIR}/../../cddl/contrib/opensolaris/lib/libctf/common \
- 		-I${.CURDIR}/../../sys/cddl/contrib/opensolaris/uts/common \
-diff --git a/lib/libprocstat/Makefile b/lib/libprocstat/Makefile
-index 1829883..d0065a3 100644
---- a/lib/libprocstat/Makefile
-+++ b/lib/libprocstat/Makefile
-@@ -17,6 +17,8 @@ VERSION_DEF=	${.CURDIR}/Versions.def
- SYMBOL_MAPS=	${.CURDIR}/Symbol.map
- 
- INCS=		libprocstat.h
-+CFLAGS+=	-I${.CURDIR}/../libelf
-+LDFLAGS+=       -L${.OBJDIR}/../libelf
- CFLAGS+=	-I. -I${.CURDIR} -D_KVM_VNODE
- SHLIB_MAJOR=	1
- 
-diff --git a/lib/librtld_db/Makefile b/lib/librtld_db/Makefile
-index 0a8ed95..11baf5b 100644
---- a/lib/librtld_db/Makefile
-+++ b/lib/librtld_db/Makefile
-@@ -11,6 +11,9 @@ SRCS=		rtld_db.c
- INCS=		rtld_db.h
- 
- CFLAGS+= -I${.CURDIR}
-+CFLAGS+= -I${.CURDIR}/../libelf
-+LDADD+= -lutil -lproc
-+LDFLAGS+= -L${.OBJDIR}/../libutil -L${.OBJDIR}/../libproc
- # Avoid circular dependency, we only need the libproc.h header here.
- CFLAGS+= -I${.CURDIR:H}/libproc
- 
-diff --git a/lib/libtelnet/Makefile b/lib/libtelnet/Makefile
-index f84aee3..c36ade9 100644
---- a/lib/libtelnet/Makefile
-+++ b/lib/libtelnet/Makefile
-@@ -14,6 +14,8 @@ INTERNALLIB=
- SRCS=		genget.c getent.c misc.c
- CFLAGS+=	-I${TELNETDIR}
- 
-+CFLAGS+=	-I${.CURDIR}/../libmp
-+
- WARNS?=		2
- 
- .if ${MK_OPENSSL} != "no"

diff --git a/sys-freebsd/freebsd-lib/files/freebsd-lib-bsdxml.patch b/sys-freebsd/freebsd-lib/files/freebsd-lib-bsdxml.patch
deleted file mode 100644
index ec90defc03..0000000000
--- a/sys-freebsd/freebsd-lib/files/freebsd-lib-bsdxml.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -u lib/libgeom/Makefile lib.xml/libgeom/Makefile
---- lib/libgeom/Makefile	2004-03-07 16:07:57 +0000
-+++ lib.xml/libgeom/Makefile	2005-05-06 10:38:41 +0000
-@@ -8,7 +8,8 @@
- SRCS+=	geom_ctl.c
- INCS=	libgeom.h
- 
--CFLAGS += -I${.CURDIR}
-+CFLAGS += -I${.CURDIR} -I${.CURDIR}/../libexpat
-+LDFLAGS += -L${.CURDIR}/../libexpat
- 
- WARNS?=	3
- 

diff --git a/sys-freebsd/freebsd-lib/files/freebsd-lib-new_as.patch b/sys-freebsd/freebsd-lib/files/freebsd-lib-new_as.patch
deleted file mode 100644
index c9288a45c6..0000000000
--- a/sys-freebsd/freebsd-lib/files/freebsd-lib-new_as.patch
+++ /dev/null
@@ -1,68 +0,0 @@
---- lib/msun/i387/fenv.c.orig	2007-01-05 04:15:26 -0300
-+++ lib/msun/i387/fenv.c	2008-06-14 00:49:30 -0300
-@@ -152,7 +152,8 @@
- int
- feupdateenv(const fenv_t *envp)
- {
--	int mxcsr, status;
-+	int mxcsr;
-+	short status;
- 
- 	__fnstsw(&status);
- 	if (__HAS_SSE())
---- lib/msun/i387/fenv.h.orig	2007-01-06 18:46:23 -0300
-+++ lib/msun/i387/fenv.h	2008-06-14 01:06:40 -0300
-@@ -134,7 +134,8 @@
- static __inline int
- fegetexceptflag(fexcept_t *__flagp, int __excepts)
- {
--	int __mxcsr, __status;
-+	int __mxcsr;
-+	short __status;
- 
- 	__fnstsw(&__status);
- 	if (__HAS_SSE())
-@@ -151,7 +152,8 @@
- static __inline int
- fetestexcept(int __excepts)
- {
--	int __mxcsr, __status;
-+	int __mxcsr;
-+	short __status;
- 
- 	__fnstsw(&__status);
- 	if (__HAS_SSE())
---- lib/msun/amd64/fenv.c.orig	2007-01-05 04:15:26 -0300
-+++ lib/msun/amd64/fenv.c	2008-06-14 01:02:41 -0300
-@@ -101,7 +101,8 @@
- int
- feupdateenv(const fenv_t *envp)
- {
--	int mxcsr, status;
-+	int mxcsr;
-+	short status;
- 
- 	__fnstsw(&status);
- 	__stmxcsr(&mxcsr);
---- lib/msun/amd64/fenv.h.orig	2007-01-06 18:46:23 -0300
-+++ lib/msun/amd64/fenv.h	2008-06-14 01:08:23 -0300
-@@ -110,7 +110,8 @@
- static __inline int
- fegetexceptflag(fexcept_t *__flagp, int __excepts)
- {
--	int __mxcsr, __status;
-+	int __mxcsr;
-+	short __status;
- 
- 	__stmxcsr(&__mxcsr);
- 	__fnstsw(&__status);
-@@ -124,7 +125,8 @@
- static __inline int
- fetestexcept(int __excepts)
- {
--	int __mxcsr, __status;
-+	int __mxcsr;
-+	short __status;
- 
- 	__stmxcsr(&__mxcsr);
- 	__fnstsw(&__status);

diff --git a/sys-freebsd/freebsd-lib/files/libmap.conf b/sys-freebsd/freebsd-lib/files/libmap.conf
deleted file mode 100644
index 7a879f9737..0000000000
--- a/sys-freebsd/freebsd-lib/files/libmap.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-# /etc/libmap.conf
-
-# Ensure that libthr does all threading
-libpthread.so.2         libthr.so.2
-libpthread.so           libthr.so
-libc_r.so.6             libthr.so.2
-libc_r.so               libthr.so
-


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

* [gentoo-commits] repo/gentoo:master commit in: sys-freebsd/freebsd-lib/files/
@ 2018-03-11 14:15 Patrice Clement
  0 siblings, 0 replies; 2+ messages in thread
From: Patrice Clement @ 2018-03-11 14:15 UTC (permalink / raw
  To: gentoo-commits

commit:     6f83d9c5bff016fdd27ed44c13082ee863455730
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun Mar 11 10:48:44 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Mar 11 14:14:59 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f83d9c5

sys-freebsd/freebsd-lib: remove unused file.

Closes: https://github.com/gentoo/gentoo/pull/7419

 sys-freebsd/freebsd-lib/files/ftpd.pamd | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/sys-freebsd/freebsd-lib/files/ftpd.pamd b/sys-freebsd/freebsd-lib/files/ftpd.pamd
deleted file mode 100644
index 8e9082373f8..00000000000
--- a/sys-freebsd/freebsd-lib/files/ftpd.pamd
+++ /dev/null
@@ -1,8 +0,0 @@
-# PAM configuration for the "ftpd" service
-#
-
-auth		include         system-auth
-account		include         system-auth
-password	include         system-auth
-session		include         system-auth
-


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

end of thread, other threads:[~2018-03-11 14:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-11 14:15 [gentoo-commits] repo/gentoo:master commit in: sys-freebsd/freebsd-lib/files/ Patrice Clement
  -- strict thread matches above, loose matches on Subject: below --
2017-02-11 20:16 David Seifert

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