*-libs/*: remove unused libs

Packages removed:
 - media-libs/jpeg
 - net-libs/neon
 - sys-libs/efivar
 - sys-libs/mtdev
 - sys-libs/newlib
 - sys-libs/slang
This commit is contained in:
Andrew Jeddeloh 2017-11-09 14:50:16 -08:00
parent 712582734d
commit 7bb6152a41
79 changed files with 0 additions and 4787 deletions

View File

@ -1,2 +0,0 @@
DIST jpegsrc.v8b.tar.gz 965125 RMD160 18d31a26c447564c258a6f6357e9002536c9ab96 SHA1 15dc1939ea1a5b9d09baea11cceb13ca59e4f9df SHA256 36e6208edec591bae8f2fc370ea4f991447badb6377a125c211ffa7b503174a7
DIST libjpeg7_7-1.diff.gz 11554 RMD160 193bcb5fdc7360707cbb450c16888499085dd2c6 SHA1 b346d8f7803d08feccade84a0012a48ee2b5f62e SHA256 e465ab295502c6db995780d3b2e38570794d0d31034f0065352bcbda63c3a094

View File

@ -1,37 +0,0 @@
CC = @CC@
EXEEXT = @EXEEXT@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
datarootdir = @datarootdir@
mandir = @mandir@
man1dir = $(mandir)/man1
MKDIR_P = @MKDIR_P@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
SCRIPTS = exifautotran
PROGRAMS = jpegexiforient$(EXEEXT)
all: $(SCRIPTS) $(PROGRAMS)
jpegexiforient$(EXEEXT): jpegexiforient.c
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $<
clean:
rm -f $(PROGRAMS) *.o
install: all
$(MKDIR_P) $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir)
$(INSTALL_PROGRAM) $(PROGRAMS) $(DESTDIR)$(bindir)
$(INSTALL_SCRIPT) $(SCRIPTS) $(DESTDIR)$(bindir)
$(INSTALL_DATA) *.1 $(DESTDIR)$(man1dir)
.PHONY: all clean install

View File

@ -1,49 +0,0 @@
# Make a reasonable guess about memory limits using sysconf().
# includes 5% slop factor as suggested in documentation.
--- jpeg-7/jmemansi.c
+++ jpeg-7/jmemansi.c
@@ -12,6 +12,15 @@
* is shoved onto the user.
*/
+#include <unistd.h>
+
+#ifdef __FreeBSD__
+# include <sys/types.h>
+# include <sys/sysctl.h>
+# include <sys/vmmeter.h>
+# include <vm/vm_param.h>
+#endif
+
#define JPEG_INTERNALS
#include "jinclude.h"
#include "jpeglib.h"
@@ -157,7 +166,26 @@
GLOBAL(long)
jpeg_mem_init (j_common_ptr cinfo)
{
- return DEFAULT_MAX_MEM; /* default for max_memory_to_use */
+#ifdef _SC_AVPHYS_PAGES
+ long phys_size;
+
+ if ((phys_size = sysconf(_SC_AVPHYS_PAGES)) == -1)
+ return DEFAULT_MAX_MEM; /* default for max_memory_to_use */
+ if ((phys_size *= sysconf(_SC_PAGESIZE)) < 0)
+ return DEFAULT_MAX_MEM;
+ return (long) (phys_size * 0.95);
+#elif defined(HAVE_SYSCTL) && defined(HW_PHYSMEM)
+ /* This works on *bsd and darwin. */
+ unsigned int physmem;
+ size_t len = sizeof physmem;
+ static int mib[2] = { CTL_HW, HW_PHYSMEM };
+
+ if (sysctl (mib, ARRAY_SIZE (mib), &physmem, &len, NULL, 0) == 0
+ && len == sizeof (physmem))
+ return (long) (physmem * 0.95);
+#endif
+
+ return DEFAULT_MAX_MEM;
}
GLOBAL(void)

View File

@ -1,50 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild,v 1.10 2011/01/06 00:03:56 ssuominen Exp $
EAPI="3"
DEB_PV="7-1"
DEB_PN="libjpeg7"
DEB="${DEB_PN}_${DEB_PV}"
inherit eutils libtool multilib
DESCRIPTION="Library to load, handle and manipulate images in the JPEG format"
HOMEPAGE="http://jpegclub.org/ http://www.ijg.org/"
SRC_URI="http://www.ijg.org/files/${PN}src.v${PV}.tar.gz
mirror://debian/pool/main/libj/${DEB_PN}/${DEB}.diff.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="static-libs"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}"/${DEB}.diff
cp "${FILESDIR}"/Makefile.in.extra debian/extra/Makefile.in
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-7-maxmem_sysconf.patch
elibtoolize
# hook the Debian extra dir into the normal jpeg build env
sed -i '/all:/s:$:\n\t./config.status --file debian/extra/Makefile\n\t$(MAKE) -C debian/extra $@:' Makefile.in
}
src_configure() {
econf \
--disable-dependency-tracking \
--enable-shared \
$(use_enable static-libs static) \
--enable-maxmem=64
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc change.log example.c README *.txt
find "${ED}" -name '*.la' -exec rm -f '{}' +
}

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=configure install prepare unpack
DEPEND=>=app-portage/elt-patches-20170422
DESCRIPTION=Library to load, handle and manipulate images in the JPEG format
EAPI=3
HOMEPAGE=http://jpegclub.org/ http://www.ijg.org/
IUSE=static-libs
KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=as-is
SLOT=0
SRC_URI=http://www.ijg.org/files/jpegsrc.v8b.tar.gz mirror://debian/pool/main/libj/libjpeg7/libjpeg7_7-1.diff.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=a71029597bf29eda093c2e93bb6f859f

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=configure install prepare
DEPEND=expat? ( dev-libs/expat:0= ) !expat? ( dev-libs/libxml2:2= ) gnutls? ( app-misc/ca-certificates net-libs/gnutls:0= pkcs11? ( dev-libs/pakchois:0= ) ) !gnutls? ( ssl? ( dev-libs/openssl:0= pkcs11? ( dev-libs/pakchois:0= ) ) ) kerberos? ( virtual/krb5:0= ) libproxy? ( net-libs/libproxy:0= ) nls? ( virtual/libintl:0= ) zlib? ( sys-libs/zlib:0= ) virtual/pkgconfig >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=HTTP and WebDAV client library
EAPI=5
HOMEPAGE=http://www.webdav.org/neon/
IUSE=doc expat gnutls kerberos libproxy nls pkcs11 ssl static-libs zlib linguas_cs linguas_de linguas_fr linguas_ja linguas_nn linguas_pl linguas_ru linguas_tr linguas_zh_CN
KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=expat? ( dev-libs/expat:0= ) !expat? ( dev-libs/libxml2:2= ) gnutls? ( app-misc/ca-certificates net-libs/gnutls:0= pkcs11? ( dev-libs/pakchois:0= ) ) !gnutls? ( ssl? ( dev-libs/openssl:0= pkcs11? ( dev-libs/pakchois:0= ) ) ) kerberos? ( virtual/krb5:0= ) libproxy? ( net-libs/libproxy:0= ) nls? ( virtual/libintl:0= ) zlib? ( sys-libs/zlib:0= )
RESTRICT=test
SLOT=0/27
SRC_URI=http://www.webdav.org/neon/neon-0.30.0.tar.gz
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=d28d6da44258e60ee128446a7b163cdb

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=expat? ( >=dev-libs/expat-2.1.0-r3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !expat? ( >=dev-libs/libxml2-2.9.1-r4:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( app-misc/ca-certificates >=net-libs/gnutls-2.12.23-r6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( >=dev-libs/pakchois-0.4-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) !gnutls? ( ssl? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( >=dev-libs/pakchois-0.4-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ) kerberos? ( >=virtual/krb5-0-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libproxy? ( >=net-libs/libproxy-0.4.11-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( >=virtual/libintl-0-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=HTTP and WebDAV client library
EAPI=5
HOMEPAGE=http://www.webdav.org/neon/
IUSE=doc expat gnutls kerberos libproxy nls pkcs11 ssl static-libs zlib linguas_cs linguas_de linguas_fr linguas_ja linguas_nn linguas_pl linguas_ru linguas_tr linguas_zh_CN abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=expat? ( >=dev-libs/expat-2.1.0-r3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !expat? ( >=dev-libs/libxml2-2.9.1-r4:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( app-misc/ca-certificates >=net-libs/gnutls-2.12.23-r6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( >=dev-libs/pakchois-0.4-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) !gnutls? ( ssl? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( >=dev-libs/pakchois-0.4-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ) kerberos? ( >=virtual/krb5-0-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libproxy? ( >=net-libs/libproxy-0.4.11-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( >=virtual/libintl-0-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508-r8 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
RESTRICT=test
SLOT=0/27
SRC_URI=http://www.webdav.org/neon/neon-0.30.0.tar.gz
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=6bbbc98b9cc46f2ece5e561648eb3917

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=expat? ( dev-libs/expat:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !expat? ( dev-libs/libxml2:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( app-misc/ca-certificates net-libs/gnutls:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( dev-libs/pakchois:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) !gnutls? ( ssl? ( dev-libs/openssl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( dev-libs/pakchois:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ) kerberos? ( virtual/krb5:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libproxy? ( net-libs/libproxy:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( virtual/libintl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) virtual/pkgconfig[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=HTTP and WebDAV client library
EAPI=5
HOMEPAGE=http://www.webdav.org/neon/
IUSE=doc expat gnutls kerberos libproxy nls pkcs11 ssl static-libs zlib linguas_cs linguas_de linguas_fr linguas_ja linguas_nn linguas_pl linguas_ru linguas_tr linguas_zh_CN abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=expat? ( dev-libs/expat:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !expat? ( dev-libs/libxml2:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( app-misc/ca-certificates net-libs/gnutls:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( dev-libs/pakchois:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) !gnutls? ( ssl? ( dev-libs/openssl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( dev-libs/pakchois:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ) kerberos? ( virtual/krb5:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libproxy? ( net-libs/libproxy:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( virtual/libintl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508-r8 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
RESTRICT=test
SLOT=0/27
SRC_URI=http://www.webdav.org/neon/neon-0.30.1.tar.gz
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=1558ecd177149cb23a6583cad8d3447d

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=expat? ( dev-libs/expat:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !expat? ( dev-libs/libxml2:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( app-misc/ca-certificates net-libs/gnutls:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( dev-libs/pakchois:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) !gnutls? ( ssl? ( !libressl? ( dev-libs/openssl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( dev-libs/pakchois:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ) kerberos? ( virtual/krb5:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libproxy? ( net-libs/libproxy:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( virtual/libintl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) virtual/pkgconfig[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=HTTP and WebDAV client library
EAPI=5
HOMEPAGE=http://www.webdav.org/neon/
IUSE=doc expat gnutls kerberos libproxy libressl nls pkcs11 ssl static-libs zlib linguas_cs linguas_de linguas_fr linguas_ja linguas_nn linguas_pl linguas_ru linguas_tr linguas_zh_CN abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=expat? ( dev-libs/expat:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !expat? ( dev-libs/libxml2:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( app-misc/ca-certificates net-libs/gnutls:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( dev-libs/pakchois:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) !gnutls? ( ssl? ( !libressl? ( dev-libs/openssl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pkcs11? ( dev-libs/pakchois:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ) kerberos? ( virtual/krb5:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libproxy? ( net-libs/libproxy:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( virtual/libintl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508-r8 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
RESTRICT=test
SLOT=0/27
SRC_URI=http://www.webdav.org/neon/neon-0.30.1.tar.gz
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=28919712bc2a5af50a91f715a9f6b587

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=configure prepare
DEPEND=dev-libs/popt >=sys-kernel/linux-headers-3.18
DESCRIPTION=Tools and library to manipulate EFI variables
EAPI=5
HOMEPAGE=https://github.com/rhinstaller/efivar
KEYWORDS=amd64 ia64 x86
LICENSE=GPL-2
RDEPEND=dev-libs/popt
SLOT=0
SRC_URI=https://github.com/rhinstaller/efivar/releases/download/0.21/efivar-0.21.tar.bz2
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=eb41f3ab5fc1f61234c7fed03e0a1d4c

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=dev-libs/popt >=sys-kernel/linux-headers-3.18
DESCRIPTION=Tools and library to manipulate EFI variables
EAPI=5
HOMEPAGE=https://github.com/rhinstaller/efivar
KEYWORDS=~amd64 ~ia64 ~x86
LICENSE=GPL-2
RDEPEND=dev-libs/popt
SLOT=0
SRC_URI=https://github.com/rhinstaller/efivar/releases/download/0.23/efivar-0.23.tar.bz2
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=e1a0176fe2e6768e0f06f0148ee76598

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=dev-libs/popt >=sys-kernel/linux-headers-3.18
DESCRIPTION=Tools and library to manipulate EFI variables
EAPI=6
HOMEPAGE=https://github.com/rhinstaller/efivar
KEYWORDS=~amd64 ~ia64 ~x86
LICENSE=GPL-2
RDEPEND=dev-libs/popt
SLOT=0/27
SRC_URI=https://github.com/rhinstaller/efivar/archive/27.tar.gz -> efivar-27.tar.gz
_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=5df423bb6b4ba7d7a438eb6ba3fa878c

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=dev-libs/popt >=sys-kernel/linux-headers-3.18
DESCRIPTION=Tools and library to manipulate EFI variables
EAPI=6
HOMEPAGE=https://github.com/rhinstaller/efivar
KEYWORDS=amd64 ~ia64 x86
LICENSE=GPL-2
RDEPEND=dev-libs/popt
SLOT=0/1
SRC_URI=https://github.com/rhinstaller/efivar/archive/30.tar.gz -> efivar-30.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=ba772dacaf9bc79f70df8724a7f8ef4d

View File

@ -1,11 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=>=sys-kernel/linux-headers-2.6.31
DESCRIPTION=Multitouch Protocol Translation Library
EAPI=5
HOMEPAGE=http://bitmath.org/code/mtdev/
IUSE=static-libs
KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86
LICENSE=MIT
SLOT=0
SRC_URI=http://bitmath.org/code/mtdev/mtdev-1.1.4.tar.bz2
_md5_=6148b2ce894c42e95920d71a0d850997

View File

@ -1,11 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=>=sys-kernel/linux-headers-2.6.31
DESCRIPTION=Multitouch Protocol Translation Library
EAPI=5
HOMEPAGE=http://bitmath.org/code/mtdev/
IUSE=static-libs
KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86
LICENSE=MIT
SLOT=0
SRC_URI=http://bitmath.org/code/mtdev/mtdev-1.1.5.tar.bz2
_md5_=37b01eb94a127b6198926b3aaf75a789

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install setup unpack
DESCRIPTION=Newlib is a C library intended for use on embedded systems
EAPI=0
HOMEPAGE=http://sourceware.org/newlib/
IUSE=nls threads unicode crosscompile_opts_headers-only
KEYWORDS=-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86
LICENSE=NEWLIB LIBGLOSS GPL-2
RESTRICT=strip
SLOT=0
SRC_URI=ftp://sourceware.org/pub/newlib/newlib-1.18.0.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=8f2b006707bf98b51a3b05b9d3452cdf

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install setup unpack
DESCRIPTION=Newlib is a C library intended for use on embedded systems
EAPI=0
HOMEPAGE=http://sourceware.org/newlib/
IUSE=nls threads unicode crosscompile_opts_headers-only
KEYWORDS=-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86
LICENSE=NEWLIB LIBGLOSS GPL-2
RESTRICT=strip
SLOT=0
SRC_URI=ftp://sourceware.org/pub/newlib/newlib-1.19.0.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=8f2b006707bf98b51a3b05b9d3452cdf

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install prepare setup
DESCRIPTION=Newlib is a C library intended for use on embedded systems
EAPI=4
HOMEPAGE=http://sourceware.org/newlib/
IUSE=nls threads unicode crosscompile_opts_headers-only
KEYWORDS=-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86
LICENSE=NEWLIB LIBGLOSS GPL-2
RESTRICT=strip
SLOT=0
SRC_URI=ftp://sourceware.org/pub/newlib/newlib-1.20.0.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=903e4fc91d54f8baef19544bdbdd47fe

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install setup
DESCRIPTION=Newlib is a C library intended for use on embedded systems
EAPI=4
HOMEPAGE=http://sourceware.org/newlib/
IUSE=nls threads unicode crosscompile_opts_headers-only
KEYWORDS=-* arm hppa m68k ~mips ppc ppc64 sh sparc x86
LICENSE=NEWLIB LIBGLOSS GPL-2
RESTRICT=strip
SLOT=0
SRC_URI=ftp://sourceware.org/pub/newlib/newlib-2.0.0.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=838e2ae4267fe5f50014e20aae2a6486

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install prepare setup
DESCRIPTION=Newlib is a C library intended for use on embedded systems
EAPI=4
HOMEPAGE=http://sourceware.org/newlib/
IUSE=nls threads unicode crosscompile_opts_headers-only
KEYWORDS=-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86
LICENSE=NEWLIB LIBGLOSS GPL-2
RESTRICT=strip
SLOT=0
SRC_URI=ftp://sourceware.org/pub/newlib/newlib-2.1.0.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=4a57cd774a58dccde1a946dd32524857

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare setup
DESCRIPTION=Newlib is a C library intended for use on embedded systems
EAPI=4
HOMEPAGE=http://sourceware.org/newlib/
IUSE=nls threads unicode crosscompile_opts_headers-only
KEYWORDS=-* arm hppa m68k ~mips ppc ppc64 sh sparc x86
LICENSE=NEWLIB LIBGLOSS GPL-2
RDEPEND=!<sys-libs/newlib-2.1.0
RESTRICT=strip
SLOT=0
SRC_URI=ftp://sourceware.org/pub/newlib/newlib-2.2.0.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=952773ccadef67b0671383d97338be16

View File

@ -1,11 +0,0 @@
DEFINED_PHASES=compile configure install prepare setup
DESCRIPTION=Newlib is a C library intended for use on embedded systems
EAPI=4
HOMEPAGE=http://sourceware.org/newlib/
IUSE=nls threads unicode crosscompile_opts_headers-only
LICENSE=NEWLIB LIBGLOSS GPL-2
RESTRICT=strip
SLOT=0
SRC_URI=ftp://sourceware.org/pub/newlib/newlib-2.2.0.20150423.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=079dda9a7365fadd8ce2825641425d3a

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install prepare setup
DESCRIPTION=Newlib is a C library intended for use on embedded systems
EAPI=4
HOMEPAGE=http://sourceware.org/newlib/
IUSE=nls threads unicode crosscompile_opts_headers-only
KEYWORDS=-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86
LICENSE=NEWLIB LIBGLOSS GPL-2
RESTRICT=strip
SLOT=0
SRC_URI=ftp://sourceware.org/pub/newlib/newlib-2.3.0.20160104.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=b05493d6339d2c3a160e3aed5ece8464

View File

@ -1,11 +0,0 @@
DEFINED_PHASES=compile configure install prepare setup unpack
DEPEND=>=dev-vcs/git-1.8.2.1
DESCRIPTION=Newlib is a C library intended for use on embedded systems
EAPI=4
HOMEPAGE=http://sourceware.org/newlib/
IUSE=nls threads unicode crosscompile_opts_headers-only
LICENSE=NEWLIB LIBGLOSS GPL-2
RESTRICT=strip
SLOT=0
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 git-r3 52a888802d25387c2c74cb845d1219bc ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=079dda9a7365fadd8ce2825641425d3a

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=sys-libs/ncurses pcre? ( dev-libs/libpcre ) png? ( >=media-libs/libpng-1.2:0 ) cjk? ( dev-libs/oniguruma ) readline? ( sys-libs/readline ) zlib? ( sys-libs/zlib )
DESCRIPTION=A multi-platform programmer's library designed to allow a developer to create robust software
EAPI=4
HOMEPAGE=http://www.jedsoft.org/slang/
IUSE=cjk pcre png readline static-libs zlib
KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=sys-libs/ncurses pcre? ( dev-libs/libpcre ) png? ( >=media-libs/libpng-1.2:0 ) cjk? ( dev-libs/oniguruma ) readline? ( sys-libs/readline ) zlib? ( sys-libs/zlib )
SLOT=0
SRC_URI=mirror://slang/v2.2/slang-2.2.4.tar.bz2
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=a3fbd1959ae102a98ed2c61db57e902a

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=sys-libs/ncurses pcre? ( >=dev-libs/libpcre-8.33-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( >=media-libs/libpng-1.6.10:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cjk? ( >=dev-libs/oniguruma-5.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( >=sys-libs/readline-6.2_p5-r1:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20140406-r1 )
DESCRIPTION=A multi-platform programmer's library designed to allow a developer to create robust software
EAPI=5
HOMEPAGE=http://www.jedsoft.org/slang/
IUSE=cjk pcre png readline static-libs zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=sys-libs/ncurses pcre? ( >=dev-libs/libpcre-8.33-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( >=media-libs/libpng-1.6.10:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cjk? ( >=dev-libs/oniguruma-5.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( >=sys-libs/readline-6.2_p5-r1:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20140406-r1 )
SLOT=0
SRC_URI=mirror://slang/v2.2/slang-2.2.4.tar.bz2
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=82333f601ca2cf66cd4ce7e6c7788608

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=sys-libs/ncurses pcre? ( >=dev-libs/libpcre-8.33-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( >=media-libs/libpng-1.6.10:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cjk? ( >=dev-libs/oniguruma-5.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( >=sys-libs/readline-6.2_p5-r1:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20140406-r1 )
DESCRIPTION=A multi-platform programmer's library designed to allow a developer to create robust software
EAPI=5
HOMEPAGE=http://www.jedsoft.org/slang/
IUSE=cjk pcre png readline static-libs zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=sys-libs/ncurses pcre? ( >=dev-libs/libpcre-8.33-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( >=media-libs/libpng-1.6.10:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cjk? ( >=dev-libs/oniguruma-5.9.5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( >=sys-libs/readline-6.2_p5-r1:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20140406-r1 )
SLOT=0
SRC_URI=http://www.jedsoft.org/releases/slang/slang-2.3.0.tar.bz2
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=e3324f51c8398ecf55f2f2a47f4424c6

View File

@ -1,81 +0,0 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
# (auto-generated from git log)
*neon-0.30.1 (09 Aug 2015)
*neon-0.30.0-r1 (09 Aug 2015)
*neon-0.30.0 (09 Aug 2015)
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org>
+files/neon-0.30.1-xml2-config.patch, +metadata.xml, +neon-0.30.0.ebuild,
+neon-0.30.0-r1.ebuild, +neon-0.30.1.ebuild:
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
the bikeshed
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
Use https by default
Convert all URLs for sites supporting encrypted connections from http to
https
Signed-off-by: Justin Lecher <jlec@gentoo.org>
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
Revert DOCTYPE SYSTEM https changes in metadata.xml
repoman does not yet accept the https version.
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
Bug: https://bugs.gentoo.org/552720
*neon-0.30.1-r1 (04 Oct 2015)
04 Oct 2015; Julian Ospald <hasufell@gentoo.org> +neon-0.30.1-r1.ebuild:
add libressl support
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
Replace all herds with appropriate projects (GLEP 67)
Replace all uses of herd with appropriate project maintainers, or no
maintainers in case of herds requested to be disbanded.
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
Set appropriate maintainer types in metadata.xml (GLEP 67)
17 Feb 2016; Alexis Ballier <aballier@gentoo.org>
+files/neon-0.30.1-gnutls3.4.patch, neon-0.30.1-r1.ebuild:
Import patch from debian & upstream to fix build with gnutls 3.4. Bug
#546114.
Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier@gentoo.org>

View File

@ -1,927 +0,0 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.94 2015/05/16 07:56:57 vapier Exp $
16 May 2015; Mike Frysinger <vapier@gentoo.org>
+files/neon-0.30.1-xml2-config.patch, neon-0.30.1.ebuild:
Fix from Chromium OS for cross-compiling.
06 Dec 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.1.ebuild:
Stable for ia64, wrt bug #529718
04 Dec 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.1.ebuild:
Stable for ppc64, wrt bug #529718
03 Dec 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.1.ebuild:
Stable for ppc, wrt bug #529718
02 Dec 2014; Markus Meier <maekke@gentoo.org> neon-0.30.1.ebuild:
arm stable, bug #529718
02 Dec 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.1.ebuild:
Stable for alpha, wrt bug #529718
01 Dec 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.1.ebuild:
Stable for sparc, wrt bug #529718
25 Nov 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.1.ebuild:
Stable for x86, wrt bug #529718
22 Nov 2014; Mikle Kolyada <zlogene@gentoo.org> neon-0.30.1.ebuild:
amd64 stable wrt bug #529718
19 Nov 2014; Jeroen Roovers <jer@gentoo.org> neon-0.30.1.ebuild:
Stable for HPPA (bug #529718).
11 Nov 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0-r1.ebuild:
Stable for ia64, wrt bug #518614
02 Nov 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0-r1.ebuild:
Stable for alpha, wrt bug #518614
29 Oct 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0-r1.ebuild:
Stable for sparc, wrt bug #518614
27 Oct 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0-r1.ebuild:
Stable for ppc64, wrt bug #518614
18 Oct 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0-r1.ebuild:
Stable for ppc, wrt bug #518614
12 Oct 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0-r1.ebuild:
Stable for x86, wrt bug #518614
10 Oct 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0-r1.ebuild:
Stable for amd64, wrt bug #518614
*neon-0.30.1 (01 Oct 2014)
01 Oct 2014; Mike Gilbert <floppym@gentoo.org> +neon-0.30.1.ebuild:
Version bump. Ebuild by Arfrever.
13 Sep 2014; Markus Meier <maekke@gentoo.org> neon-0.30.0-r1.ebuild:
arm stable, bug #518614
09 Aug 2014; Jeroen Roovers <jer@gentoo.org> neon-0.30.0-r1.ebuild:
Stable for HPPA (bug #518614).
18 Jun 2014; Michał Górny <mgorny@gentoo.org> neon-0.30.0-r1.ebuild:
Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
#513718.
*neon-0.30.0-r1 (08 Jun 2014)
08 Jun 2014; Michał Górny <mgorny@gentoo.org> +neon-0.30.0-r1.ebuild:
Enable multilib support.
16 Mar 2014; Mike Frysinger <vapier@gentoo.org> neon-0.30.0.ebuild:
Add arm64 love.
10 Feb 2014; Mike Gilbert <floppym@gentoo.org> -files/neon-0.29.6-doc.patch,
-files/neon-0.29.6-gnutls-3-backport.patch,
-files/neon-0.29.6-gnutls-3-functions.patch,
-files/neon-0.29.6-gnutls-3-types.patch,
-files/neon-0.29.6-no-ssl-check.patch, -neon-0.29.6-r5.ebuild:
Remove old (again).
*neon-0.29.6-r5 (26 Jan 2014)
26 Jan 2014; Mike Gilbert <floppym@gentoo.org> +files/neon-0.29.6-doc.patch,
+files/neon-0.29.6-gnutls-3-backport.patch,
+files/neon-0.29.6-gnutls-3-functions.patch,
+files/neon-0.29.6-gnutls-3-types.patch,
+files/neon-0.29.6-no-ssl-check.patch, +neon-0.29.6-r5.ebuild:
Restore old version to satisfy www-misc/litmus.
26 Jan 2014; Mike Gilbert <floppym@gentoo.org> -files/neon-0.29.6-doc.patch,
-files/neon-0.29.6-gnutls-3-backport.patch,
-files/neon-0.29.6-gnutls-3-functions.patch,
-files/neon-0.29.6-gnutls-3-types.patch,
-files/neon-0.29.6-no-ssl-check.patch, -neon-0.29.6-r1.ebuild,
-neon-0.29.6-r2.ebuild, -neon-0.29.6-r5.ebuild:
Remove old per Arfrever.
26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0.ebuild:
Stable for sparc, wrt bug #497738
26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0.ebuild:
Stable for x86, wrt bug #497738
20 Jan 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0.ebuild:
Stable for ppc, wrt bug #497738
19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0.ebuild:
Stable for ppc64, wrt bug #497738
18 Jan 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0.ebuild:
Stable for alpha, wrt bug #497738
18 Jan 2014; Pacho Ramos <pacho@gentoo.org> neon-0.30.0.ebuild:
amd64 stable, bug #497738
16 Jan 2014; Markus Meier <maekke@gentoo.org> neon-0.30.0.ebuild:
arm stable, bug #497738
15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> neon-0.30.0.ebuild:
Stable for ia64, wrt bug #497738
11 Jan 2014; Jeroen Roovers <jer@gentoo.org> neon-0.30.0.ebuild:
Stable for HPPA (bug #497738).
*neon-0.30.0 (03 Aug 2013)
03 Aug 2013; Mike Gilbert <floppym@gentoo.org> +neon-0.30.0.ebuild:
Version bump. Ebuild by Arfrever.
*neon-0.29.6-r5 (26 Feb 2013)
26 Feb 2013; Justin Lecher <jlec@gentoo.org> -neon-0.29.6-r4.ebuild,
+neon-0.29.6-r5.ebuild, metadata.xml:
Add missing linebreak
*neon-0.29.6-r4 (26 Feb 2013)
26 Feb 2013; <qnikst@gentoo.org> +neon-0.29.6-r4.ebuild,
-neon-0.29.6-r3.ebuild:
fix doc path thanks to Chris Mayo <aklhfex@gmail.com>
*neon-0.29.6-r3 (24 Feb 2013)
24 Feb 2013; <qnikst@gentoo.org> +files/neon-0.29.6-doc.patch,
+neon-0.29.6-r3.ebuild:
fix docs layout, thanks to Chris Mayo (#458628)
21 Feb 2013; Zac Medico <zmedico@gentoo.org> neon-0.29.6-r2.ebuild:
Add ~arm-linux keyword.
01 Jan 2013; Raúl Porcel <armin76@gentoo.org> neon-0.29.6-r2.ebuild:
arm/ia64/s390/sh stable wrt #448638
30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> neon-0.29.6-r2.ebuild:
Stable for alpha, wrt bug #448638
30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> neon-0.29.6-r2.ebuild:
Stable for sparc, wrt bug #448638
29 Dec 2012; Jeroen Roovers <jer@gentoo.org> neon-0.29.6-r2.ebuild:
Stable for HPPA (bug #448638).
28 Dec 2012; Agostino Sarubbo <ago@gentoo.org> neon-0.29.6-r2.ebuild:
Stable for ppc, wrt bug #448638
28 Dec 2012; Agostino Sarubbo <ago@gentoo.org> neon-0.29.6-r2.ebuild:
Stable for ppc64, wrt bug #448638
26 Dec 2012; Agostino Sarubbo <ago@gentoo.org> neon-0.29.6-r2.ebuild:
Stable for amd64, wrt bug #448638
26 Dec 2012; Jeff Horelick <jdhore@gentoo.org> neon-0.29.6-r2.ebuild:
marked x86 per bug 448638
*neon-0.29.6-r2 (28 Nov 2012)
28 Nov 2012; Alexander Vershilov <qnikst@gentoo.org>
+files/neon-0.29.6-gnutls-3-backport.patch, +neon-0.29.6-r2.ebuild:
backporting patches for gnutls (#440936)
01 Nov 2012; Alexander Vershilov <qnikst@gentoo.org>
+files/neon-0.29.6-gnutls-3-functions.patch,
+files/neon-0.29.6-gnutls-3-types.patch, neon-0.29.6-r1.ebuild:
fix gnutls-3 breakage #421441, thanks to Bartosz Brachaczek
05 Sep 2012; Mike Gilbert <floppym@gentoo.org> neon-0.29.6-r1.ebuild:
Fix handling of EPREFIX with whitespace. Patch by Arfrever.
05 Sep 2012; Mike Gilbert <floppym@gentoo.org> neon-0.29.6-r1.ebuild:
Do not inherit versionator.eclass. Patch by Arfrever.
05 Sep 2012; Pacho Ramos <pacho@gentoo.org> -neon-0.29.6.ebuild,
neon-0.29.6-r1.ebuild:
Drop suggestion to manually downgrade package as explained in bug #421643,
drop old.
01 Jul 2012; Raúl Porcel <armin76@gentoo.org> neon-0.29.6-r1.ebuild:
alpha/ia64/s390/sh/sparc stable wrt #417325
07 Jun 2012; Brent Baude <ranger@gentoo.org> neon-0.29.6-r1.ebuild:
Marking neon-0.29.6-r1 ppc for bug 417325
30 May 2012; Jeroen Roovers <jer@gentoo.org> neon-0.29.6-r1.ebuild:
Stable for HPPA (bug #417325).
30 May 2012; Markus Meier <maekke@gentoo.org> neon-0.29.6-r1.ebuild:
arm stable, bug #417325
29 May 2012; Brent Baude <ranger@gentoo.org> neon-0.29.6-r1.ebuild:
Marking neon-0.29.6-r1 ppc for bug 415479
29 May 2012; Brent Baude <ranger@gentoo.org> neon-0.29.6-r1.ebuild:
Marking neon-0.29.6-r1 ppc64 for bug 417325
25 May 2012; Agostino Sarubbo <ago@gentoo.org> neon-0.29.6-r1.ebuild:
Stable for amd64, wrt bug #417325
24 May 2012; Jeff Horelick <jdhore@gentoo.org> neon-0.29.6-r1.ebuild:
marked x86 per bug 417325
21 May 2012; Mike Frysinger <vapier@gentoo.org> neon-0.29.6-r1.ebuild:
Inherit eutils for epatch.
12 May 2012; Alexis Ballier <aballier@gentoo.org> neon-0.29.6-r1.ebuild:
keyword ~amd64-fbsd
05 May 2012; Jeff Horelick <jdhore@gentoo.org> neon-0.29.6.ebuild,
neon-0.29.6-r1.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
*neon-0.29.6-r1 (19 Apr 2012)
19 Apr 2012; Mike Frysinger <vapier@gentoo.org> +neon-0.29.6-r1.ebuild,
+files/neon-0.29.6-no-ssl-check.patch:
Drop openssl version checking.
02 Mar 2012; Fabian Groffen <grobian@gentoo.org> neon-0.29.6.ebuild:
Make sure neon links against -lintl on Solaris with USE=nls, because it needs
it.
02 Mar 2012; Fabian Groffen <grobian@gentoo.org> neon-0.29.6.ebuild:
Fix ca-bundle path for Prefix
24 Sep 2011; Michał Górny <mgorny@gentoo.org> metadata.xml:
Fix invalid herd.
18 Sep 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Add Arfrever as proxy maintainer with proxy-maintainers as herd.
13 Sep 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Drop maintainer due retirement, bug #246793
05 Aug 2011; Markos Chandras <hwoarang@gentoo.org> -neon-0.29.5.ebuild:
Remove old ebuild. Requested by Arfrever
20 Jul 2011; Mark Loeser <halcy0n@gentoo.org> neon-0.29.6.ebuild:
Stable for ppc64; bug #370523
26 Jun 2011; Brent Baude <ranger@gentoo.org> neon-0.29.6.ebuild:
Marking neon-0.29.6 ppc for bug 370523
24 Jun 2011; Raúl Porcel <armin76@gentoo.org> neon-0.29.6.ebuild:
alpha/ia64/s390/sh/sparc stable wrt #370523
14 Jun 2011; Jeroen Roovers <jer@gentoo.org> neon-0.29.6.ebuild:
Stable for HPPA (bug #370523).
12 Jun 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> neon-0.29.6.ebuild:
x86 stable wrt bug #370523
11 Jun 2011; Markus Meier <maekke@gentoo.org> neon-0.29.6.ebuild:
arm stable, bug #370523
08 Jun 2011; Markos Chandras <hwoarang@gentoo.org> neon-0.29.6.ebuild:
Stable on amd64 wrt bug #370523
*neon-0.29.6 (03 May 2011)
03 May 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+neon-0.29.6.ebuild:
Version bump. Fixed support for >=net-libs/gnutls-2.11.1[nettle] (bug #339393).
Update dependencies (bug #341373).
16 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
neon-0.29.5.ebuild:
Fix dependencies (bug #351826).
27 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-neon-0.29.3.ebuild, -neon-0.29.4.ebuild, -files/neon-0.29-sni-fix.patch:
Delete.
27 Dec 2010; Brent Baude <ranger@gentoo.org> neon-0.29.5.ebuild:
stable ppc64, bug 345481
13 Dec 2010; Brent Baude <ranger@gentoo.org> neon-0.29.5.ebuild:
stable ppc, bug 345481
05 Dec 2010; Raúl Porcel <armin76@gentoo.org> neon-0.29.5.ebuild:
alpha/ia64/s390/sh stable wrt #345481
30 Nov 2010; Michael Weber <xmw@gentoo.org> neon-0.29.5.ebuild:
sparc stable (bug 345481)
26 Nov 2010; Jeroen Roovers <jer@gentoo.org> neon-0.29.5.ebuild:
Stable for HPPA (bug #345481).
17 Nov 2010; Markus Meier <maekke@gentoo.org> neon-0.29.5.ebuild:
arm stable, bug #345481
17 Nov 2010; Markus Meier <maekke@gentoo.org> neon-0.29.5.ebuild:
x86 stable, bug #345481
15 Nov 2010; Markos Chandras <hwoarang@gentoo.org> neon-0.29.5.ebuild:
Stable on amd64 wrt bug #345481
*neon-0.29.5 (16 Oct 2010)
16 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+neon-0.29.5.ebuild:
Version bump.
*neon-0.29.4 (01 Oct 2010)
01 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+neon-0.29.4.ebuild:
Version bump.
10 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
metadata.xml:
Restore previous maintainer.
19 Aug 2010; Jeroen Roovers <jer@gentoo.org> metadata.xml:
Remove arfrever.
16 May 2010; Markos Chandras <hwoarang@gentoo.org> neon-0.29.3.ebuild:
Stable on amd64 wrt bug #305181. Thanks to Roeland Douma
<roeland@rullzer.com>
04 Apr 2010; Raúl Porcel <armin76@gentoo.org> neon-0.29.3.ebuild:
alpha/arm/ia64/s390/sh/sparc stable wrt #305181
23 Mar 2010; Brent Baude <ranger@gentoo.org> neon-0.29.3.ebuild:
stable ppc, bug 305181
08 Mar 2010; Sven Wegener <swegener@gentoo.org> neon-0.29.1.ebuild,
neon-0.29.2.ebuild, neon-0.29.3.ebuild, +files/neon-0.29-sni-fix.patch:
Pull in a patch from Debian to fix SNI support.
04 Mar 2010; Jeroen Roovers <jer@gentoo.org> neon-0.29.3.ebuild:
Stable for HPPA (bug #305181).
28 Feb 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> neon-0.29.3.ebuild:
x86 stable wrt bug #305181
23 Feb 2010; Brent Baude <ranger@gentoo.org> neon-0.29.3.ebuild:
Marking neon-0.29.3 ppc64 for bug 305181
*neon-0.29.3 (12 Jan 2010)
12 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+neon-0.29.3.ebuild:
Version bump.
07 Jan 2010; Christian Faulhammer <fauli@gentoo.org> neon-0.29.2.ebuild:
Transfer Prefix keywords
*neon-0.29.2 (31 Dec 2009)
31 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+neon-0.29.2.ebuild:
Version bump.
*neon-0.29.1 (19 Dec 2009)
19 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+neon-0.29.1.ebuild:
Version bump.
30 Nov 2009; Markus Meier <maekke@gentoo.org> neon-0.29.0.ebuild:
arm stable, bug #289419
31 Oct 2009; Brent Baude <ranger@gentoo.org> neon-0.29.0.ebuild:
Marking neon-0.29.0 ppc64 for bug 289419
29 Oct 2009; Markus Meier <maekke@gentoo.org> neon-0.29.0.ebuild:
amd64/x86 stable, bug #289419
27 Oct 2009; Tobias Klausmann <klausman@gentoo.org> neon-0.29.0.ebuild:
Stable on alpha, bug #289419
24 Oct 2009; nixnut <nixnut@gentoo.org> neon-0.29.0.ebuild:
ppc stable #289419
23 Oct 2009; Jeroen Roovers <jer@gentoo.org> neon-0.29.0.ebuild:
Stable for HPPA (bug #289419).
*neon-0.29.0 (14 Sep 2009)
14 Sep 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-files/neon-0.28.4-SOCK_CLOEXEC.patch, +neon-0.29.0.ebuild:
Version bump.
28 Aug 2009; Petteri Räty <betelgeuse@gentoo.org> -neon-0.28.4.ebuild,
-neon-0.28.5.ebuild:
Remove old security vulnerable versions that also used built_with_use.
27 Aug 2009; Alex Legler <a3li@gentoo.org> neon-0.28.6.ebuild:
amd64 stable, security bug 281950
25 Aug 2009; Raúl Porcel <armin76@gentoo.org> neon-0.28.6.ebuild:
alpha/arm/ia64/s390/sh/sparc stable wrt #281950
24 Aug 2009; Brent Baude <ranger@gentoo.org> neon-0.28.6.ebuild:
Marking neon-0.28.6 ppc64 for bug 281950
23 Aug 2009; nixnut <nixnut@gentoo.org> neon-0.28.6.ebuild:
ppc stable #281950
20 Aug 2009; Jeroen Roovers <jer@gentoo.org> neon-0.28.6.ebuild:
Stable for HPPA (bug #281950).
19 Aug 2009; Christian Faulhammer <fauli@gentoo.org> neon-0.28.6.ebuild:
stable x86, security bug 281950
19 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
neon-0.28.6.ebuild:
Pass --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt option to econf
with USE="gnutls" (bug #281196).
*neon-0.28.6 (19 Aug 2009)
19 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-neon-0.26.4.ebuild, -neon-0.28.3.ebuild, +neon-0.28.6.ebuild:
Version bump.
09 Aug 2009; Jeroen Roovers <jer@gentoo.org> neon-0.28.5.ebuild:
Stable for HPPA (bug #280251).
09 Aug 2009; nixnut <nixnut@gentoo.org> neon-0.28.5.ebuild:
ppc stable #280251
05 Aug 2009; <chainsaw@gentoo.org> neon-0.28.5.ebuild:
Marked stable on AMD64 as requested by Arfrever Frehtes Taifersar Arahesis
<arfrever@gentoo.org> in bug #280251. Tested using RadioSeven.se MP3
stream in media-sound/audacious-2.1, neon compiled with USE="expat gnutls
nls ssl zlib -doc -kerberos -pkcs11 -socks5".
*neon-0.28.5 (04 Jul 2009)
04 Jul 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-neon-0.28.2.ebuild, +neon-0.28.5.ebuild:
Version bump.
12 Jun 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
neon-0.28.4.ebuild, +files/neon-0.28.4-SOCK_CLOEXEC.patch:
Fix support for old kernels + new glibc built against new kernel headers
(bug #264101).
03 May 2009; Markus Meier <maekke@gentoo.org> neon-0.28.4.ebuild:
amd64 stable, bug #267272
26 Apr 2009; Raúl Porcel <armin76@gentoo.org> neon-0.28.4.ebuild:
alpha/arm/ia64/s390/sh/sparc/x86 stable wrt #267272
24 Apr 2009; Brent Baude <ranger@gentoo.org> neon-0.28.4.ebuild:
stable ppc, bug 267272
24 Apr 2009; Brent Baude <ranger@gentoo.org> neon-0.28.4.ebuild:
stable ppc64, bug 267272
24 Apr 2009; Jeroen Roovers <jer@gentoo.org> neon-0.28.4:
Stable for HPPA (bug #267272).
*neon-0.28.4 (21 Mar 2009)
21 Mar 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
metadata.xml, +neon-0.28.4.ebuild:
Version bump (bug #261572).
12 Nov 2008; Peter Volkov <pva@gentoo.org> neon-0.28.3.ebuild:
~mips keyword back, bug #212056.
08 Sep 2008; Guy Martin <gmsoft@gentoo.org> neon-0.28.3.ebuild:
Stable on hppa.
07 Sep 2008; Raúl Porcel <armin76@gentoo.org> neon-0.28.3.ebuild:
ia64 stable wrt #236128
07 Sep 2008; Markus Meier <maekke@gentoo.org> neon-0.28.3.ebuild:
amd64/x86 stable, bug #236128
06 Sep 2008; Jose Luis Rivero <yoswink@gentoo.org> neon-0.28.3.ebuild:
Stable on alpha wrt #236128
06 Sep 2008; Friedrich Oslage <bluebird@gentoo.org> neon-0.28.3.ebuild:
Stable on sparc, bug #236128
04 Sep 2008; Brent Baude <ranger@gentoo.org> neon-0.28.3.ebuild:
stable ppc, bug 236128
04 Sep 2008; Brent Baude <ranger@gentoo.org> neon-0.28.3.ebuild:
stable ppc64, bug 236128
29 Aug 2008; Markus Meier <maekke@gentoo.org> neon-0.28.3.ebuild:
mark unstable for amd64/x86, bug #236128 comment #3
29 Aug 2008; Markus Meier <maekke@gentoo.org> neon-0.28.3.ebuild:
amd64/x86 stable, bug #236128
*neon-0.28.3 (29 Aug 2008)
29 Aug 2008; Benedikt Böhm <hollow@gentoo.org> +neon-0.28.3.ebuild:
version bump wrt security #234826
14 Jun 2008; nixnut <nixnut@gentoo.org> neon-0.28.2.ebuild:
Added ~ppc wrt bug 212056
01 Jun 2008; Benedikt Böhm <hollow@gentoo.org> neon-0.26.4.ebuild,
-neon-0.28.1.ebuild:
fix #219888
19 Apr 2008; Benedikt Böhm <hollow@gentoo.org> neon-0.28.1.ebuild,
neon-0.28.2.ebuild:
fix socks support wrt #217538
*neon-0.28.2 (13 Apr 2008)
13 Apr 2008; Benedikt Böhm <hollow@gentoo.org> +neon-0.28.2.ebuild:
version bump wrt #216240
13 Apr 2008; Benedikt Böhm <hollow@gentoo.org> neon-0.28.1.ebuild:
fix documentation install; re-drop mips and ppc keywords due to repoman
being a bitch and not checking for masked ebuilds anymore
13 Apr 2008; Benedikt Böhm <hollow@gentoo.org>
-files/neon-0.27.2-linguas.patch, neon-0.26.4.ebuild, -neon-0.27.2.ebuild,
neon-0.28.1.ebuild:
fix sock support; remove old version
23 Mar 2008; Benedikt Böhm <hollow@gentoo.org> neon-0.28.1.ebuild:
fix LINGUAS
*neon-0.28.1 (22 Mar 2008)
22 Mar 2008; Benedikt Böhm <hollow@gentoo.org> +neon-0.28.1.ebuild:
version bump wrt #210532
27 Jan 2008; Benedikt Böhm <hollow@gentoo.org>
+files/neon-0.27.2-linguas.patch, neon-0.27.2.ebuild:
fix #205959
*neon-0.27.2 (27 Jan 2008)
27 Jan 2008; Benedikt Böhm <hollow@gentoo.org> -neon-0.26.1-r1.ebuild,
-neon-0.26.3.ebuild, +neon-0.27.2.ebuild:
version bump; cleanup; #198753
02 Jan 2008; Jeroen Roovers <jer@gentoo.org> neon-0.26.4.ebuild:
Stable for HPPA (bug #203260).
30 Dec 2007; Samuli Suominen <drac@gentoo.org> neon-0.26.4.ebuild:
amd64 stable wrt #203260
29 Dec 2007; Raúl Porcel <armin76@gentoo.org> neon-0.26.4.ebuild:
alpha/ia64/sparc stable wrt #203260
29 Dec 2007; Brent Baude <ranger@gentoo.org> neon-0.26.4.ebuild:
Marking neon-0.26.4 ppc64 for bug 203260
28 Dec 2007; Markus Meier <maekke@gentoo.org> neon-0.26.4.ebuild:
x86 stable, bug #203260
28 Dec 2007; nixnut <nixnut@gentoo.org> neon-0.26.4.ebuild:
Stable on ppc wrt bug 203560
28 Dec 2007; Benedikt Böhm <hollow@gentoo.org> metadata.xml,
-neon-0.24.7.ebuild, -neon-0.25.3.ebuild, -neon-0.25.5.ebuild,
-neon-0.26.1.ebuild:
cleanup old cruft
*neon-0.26.4 (10 Nov 2007)
10 Nov 2007; Benedikt Böhm <hollow@gentoo.org> +neon-0.26.4.ebuild:
version bump; fixes #114759, #162318, #186929, #197964
06 Jul 2007; Mike Frysinger <vapier@gentoo.org> neon-0.26.1.ebuild,
neon-0.26.1-r1.ebuild, neon-0.26.3.ebuild:
If glibc does not have IUSE=nptl, assume it is enabled as newer versions
only support nptl.
27 Jun 2007; Lars Weiler <pylon@gentoo.org> neon-0.26.3.ebuild:
Stable on ppc; bug #178264.
27 Jun 2007; Jeroen Roovers <jer@gentoo.org> neon-0.26.3.ebuild:
Stable for HPPA (bug #178264).
15 Jun 2007; Raúl Porcel <armin76@gentoo.org> neon-0.26.3.ebuild:
alpha/ia64/x86 stable wrt #178264
14 Jun 2007; Christoph Mende <angelos@gentoo.org> neon-0.26.3.ebuild:
Stable on amd64 wrt bug 178264
13 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> neon-0.26.3.ebuild:
Stable on sparc wrt #178264
09 Jun 2007; Markus Rothe <corsair@gentoo.org> neon-0.26.3.ebuild:
Stable on ppc64; bug #178264
*neon-0.26.3 (14 May 2007)
14 May 2007; Carsten Lohrke <carlo@gentoo.org> +neon-0.26.3.ebuild:
Version bump.
04 Apr 2007; Fabian Groffen <grobian@gentoo.org> neon-0.26.1.ebuild,
neon-0.26.1-r1.ebuild:
Drop userland_Darwin stuff, add virtual/libintl dependency when nls USE-flag
in use, bug #160165
03 Mar 2007; Mike Frysinger <vapier@gentoo.org> neon-0.26.1-r1.ebuild:
Fix xml2 configure typo as noted by R Stephan #155952.
18 Oct 2006; Roy Marples <uberlord@gentoo.org> neon-0.26.1-r1.ebuild:
Added ~sparc-fbsd keyword.
07 Oct 2006; Mike Frysinger <vapier@gentoo.org> neon-0.26.1.ebuild,
neon-0.26.1-r1.ebuild:
Punt invalid use of USE=static.
01 Oct 2006; Guy Martin <gmsoft@gentoo.org> neon-0.26.1-r1.ebuild:
Stable on hppa.
*neon-0.26.1-r1 (24 Sep 2006)
24 Sep 2006; Paul de Vrieze <pauldv@gentoo.org> +neon-0.26.1-r1.ebuild:
Gnutls support is broken in connection with subversion. This should fix
#148306 and others once and for all.
03 Sep 2006; Joshua Kinard <kumba@gentoo.org> neon-0.26.1.ebuild:
Marked stable on mips.
14 Aug 2006; Paul de Vrieze <pauldv@gentoo.org> neon-0.26.1.ebuild:
built_with_use dies when the package is not installed at all. To prevent
dying and allow things to (hopefully) work on a ulibc system add an extra
has_version check around it. This should solve bug #143886.
05 Aug 2006; Chris White <chriswhite@gentoo.org> metadata.xml:
metadata.xml translation by Yoshino-san in bug #136538
30 Jul 2006; Daniel Gryniewicz <dang@gentoo.org> neon-0.26.1.ebuild:
Marked stable on amd64 for bug #139506
26 Jul 2006; Joshua Kinard <kumba@gentoo.org> neon-0.25.5.ebuild:
Marking stable on mips (dep needed by gnome-vfs).
25 Jul 2006; Thomas Cort <tcort@gentoo.org> neon-0.26.1.ebuild:
Stable on alpha wrt Bug #139506.
23 Jul 2006; Akinori Hattori <hattya@gentoo.org> neon-0.26.1.ebuild:
x86 stable, bug #139506
23 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org> neon-0.26.1.ebuild:
ppc stable, bug #139506
20 Jul 2006; Markus Rothe <corsair@gentoo.org> neon-0.26.1.ebuild:
Stable on ppc64; bug #139506
17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org> neon-0.25.3.ebuild:
Marked stable on amd64 for bug #139612
16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org> neon-0.25.3.ebuild:
hppa stable, bug #139612
14 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org> neon-0.25.3.ebuild:
ppc stable, bug #139612
13 Jul 2006; Patrick McLean <chutzpah@gentoo.org> neon-0.26.1.ebuild:
Add ewarn about API breakage.
13 Jul 2006; Aron Griffis <agriffis@gentoo.org> neon-0.26.1.ebuild:
Mark 0.26.1 stable on ia64. #139507
12 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org> neon-0.25.3.ebuild:
Stable on x86 wrt bug #139612.
10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org> neon-0.26.1.ebuild:
Stable on sparc wrt #139506 and #139612
10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org> neon-0.25.3.ebuild:
Stable on sparc wrt #139612
05 Jul 2006; Steve Arnold <nerdboy@gentoo.org> neon-0.26.1.ebuild:
Removed unneccesary make clean from src_test (doh!).
*neon-0.26.1 (05 Jul 2006)
05 Jul 2006; Steve Arnold <nerdboy@gentoo.org> +neon-0.26.1.ebuild:
Version bump for rapidsvn and subversion support (and bug 137563).
This version adds several new features, so test away (note that socks
support is considered experimental, and tests are somewhat fragile).
21 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> neon-0.25.5.ebuild:
Add missing elibtoolize.
30 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> neon-0.25.5.ebuild:
Add ~x86-fbsd keyword.
*neon-0.25.5 (21 Feb 2006)
21 Feb 2006; Paul de Vrieze <pauldv@gentoo.org> +neon-0.25.5.ebuild:
New upstream version (bug #123361)
23 Dec 2005; Paul de Vrieze <pauldv@gentoo.org> neon-0.25.3.ebuild:
Explicitly disable linking with gssapi. Autodetecting gives a broken
dependency. Using a useflag dependency doesn't work as apparently the
libtool archive created does not have proper dependencies.
14 Sep 2005; Aaron Walker <ka0ttic@gentoo.org> neon-0.24.7.ebuild:
0.24.7 stable on mips.
*neon-0.25.3 (10 Sep 2005)
10 Sep 2005; Daniel Black <dragonheart@gentoo.org> -neon-0.21.3.ebuild,
-neon-0.23.8.ebuild, -neon-0.23.9.ebuild, -neon-0.24.0.ebuild,
-neon-0.24.2.ebuild, -neon-0.24.4.ebuild, -neon-0.24.5.ebuild,
-neon-0.24.6.ebuild, +neon-0.25.3.ebuild:
version bump. remove old and security vulnerable versions
29 Jul 2005; Aaron Walker <ka0ttic@gentoo.org> neon-0.24.7.ebuild:
Added ~mips.
20 Jul 2005; Andrej Kacian <ticho@gentoo.org> neon-0.24.7.ebuild:
Commented out the darwin sed call for now. Bug #99647.
19 Jul 2005; Kito <kito@gentoo.org> neon-0.24.7.ebuild:
fix for shared library on Darwin
29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
Change encoding to UTF-8 for GLEP 31 compliance
16 Dec 2004; Markus Rothe <corsair@gentoo.org> neon-0.24.7.ebuild:
Stable on ppc64
04 Nov 2004; Aron Griffis <agriffis@gentoo.org> neon-0.24.7.ebuild:
add ia64 keyword
01 Nov 2004; Markus Rothe <corsair@gentoo.org> neon-0.24.7.ebuild:
Marked ~ppc64; bug #63683
01 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> neon-0.24.6.ebuild,
neon-0.24.7.ebuild:
Added to ~ppc-macos; bug #58811.
23 Jul 2004; Travis Tilley <lv@gentoo.org> neon-0.24.7.ebuild:
stable on amd64
23 Jul 2004; Guy Martin <gmsoft@gentoo.org> neon-0.24.7.ebuild:
Marked stable on hppa.
23 Jul 2004; Bryan Østergaard,,, <kloeri@gentoo.org> neon-0.24.7.ebuild:
Stable on alpha, see bug #57747.
20 Jul 2004; Stuart Herbert <stuart@gentoo.org> neon-0.24.7.ebuild:
Stable on x86
20 Jul 2004; Ciaran McCreesh <ciaranm@gentoo.org> neon-0.24.7.ebuild:
Stable on sparc for bug #57747
*neon-0.24.7 (20 Jul 2004)
20 Jul 2004; Stuart Herbert <stuart@gentoo.org> +neon-0.24.7.ebuild:
Version bump; required by subversion-1.0.6
02 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> neon-0.24.6.ebuild:
Stable on sparc at klieber's request
02 Jun 2004; Aron Griffis <agriffis@gentoo.org> neon-0.24.6.ebuild:
stable on alpha
24 May 2004; Bryan Østergaard <kloeri@gentoo.org> neon-0.24.6.ebuild:
Keyworded ~alpha, requested in bug #51550.
20 May 2004; Michael McCabe <randy@gentoo.org> neon-0.24.6.ebuild:
Marked stable on s390
*neon-0.24.6 (19 May 2004)
19 May 2004; Paul de Vrieze <pauldv@gentoo.org> +neon-0.24.6.ebuild:
New version with security fixes
13 May 2004; Michael McCabe <randy@gentoo.org> neon-0.24.5.ebuild:
Added s390 keywords
27 Apr 2004; Travis Tilley <lv@gentoo.org> neon-0.24.5.ebuild:
stable on amd64
*neon-0.24.5 (27 Apr 2004)
27 Apr 2004; Paul de Vrieze <pauldv@gentoo.org> +neon-0.24.5.ebuild:
New upstream version with SECURITY fixes. Updating is highly recommended
26 Apr 2004; Paul de Vrieze <pauldv@gentoo.org> neon-0.24.4.ebuild:
Mark stable so that subversion can be marked stable
26 Apr 2004; Aron Griffis <agriffis@gentoo.org> neon-0.23.8.ebuild,
neon-0.23.9.ebuild, neon-0.24.0.ebuild, neon-0.24.2.ebuild,
neon-0.24.4.ebuild:
Add die following econf for bug 48950
22 Jan 2004; <augustus@gentoo.org> neon-0.24.4.ebuild:
Added ~amd64 keyword.
*neon-0.24.4 (13 Dec 2003)
13 Dec 2003; <paul@gentoo.org> neon-0.24.4.ebuild:
Add a new version, with some fixes based on bug #32232. patch slightly adapted
from a patch by Jani Averbach <jaa@iki.fi>
28 Nov 2003; Jason Wever <weeve@gentoo.org> neon-0.24.2.ebuild:
Added ~sparc keyword.
09 Nov 2003; David Holm <dholm@gentoo.org> neon-0.24.2.ebuild:
Added to ~ppc.
*neon-0.24.2 (27 Sep 2003)
27 Sep 2003; Paul de Vrieze <pauldv@gentoo.org> metadata.xml,
neon-0.24.2.ebuild:
Version bump as subversion needs 0.24.2
*neon-0.24.0 (26 Sep 2003)
26 Sep 2003; Martin Holzer <mholzer@gentoo.org> neon-0.24.0.ebuild:
Version bumped.
*neon-0.23.9 (17 Aug 2003)
17 Aug 2003; Paul de Vrieze <pauldv@gentoo.org> neon-0.23.8.ebuild,
neon-0.23.9.ebuild:
Add new upstream version that could probably fix some pkg-config bugs
17 Aug 2003; Paul de Vrieze <pauldv@gentoo.org> neon-0.23.8.ebuild:
Mark neon stable as it is needed for subversion to become stable
31 May 2003; root <root@gentoo.org> neon-0.21.3.ebuild, neon-0.23.2.ebuild,
neon-0.23.3.ebuild, neon-0.23.5.ebuild, neon-0.23.8.ebuild:
ppc keyworded where necessary
*neon-0.23.8 (15 Mar 2003)
15 Mar 2003; Alain Penders <alain@gentoo.org> neon-0.23.8.ebuild: Version bump, needed for subversion.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
*neon-0.23.5 (15 Nov 2002)
15 Nov 2002; Karl Trygve (karltk@gentoo.org) neon-0.23.5.ebuild files/digest-neon-0.23.5 :
The version below was never committed, so I made a new one. Fixes #10721.
2 Nov 2002; Joshua Brindle (method@gentoo.org) neon-0.23.5.ebuild files/digest-neon-0.23.3 :
Added zlib support, new upstream version
*neon-0.23.3 (26 Oct 2002)
26 Oct 2002; Karl Trygve Kalleberg <karltk@gentoo.org> neon-0.23.3.ebuild files/digest-neon-0.23.3 :
New upstream version.
*neon-0.23.2 (18 Oct 2002)
18 Oct 2002; Karl Trygve Kalleberg <karltk@gentoo.org> neon-0.23.2.ebuild files/digest-neon-0.23.2 :
New upstream version.
*neon-0.21.3 (14 Jul 2002)
14 Jul 2002; Karl Trygve Kalleberg <karltk@gentoo.org> neon-0.21.3.ebuild :
New upstream version.
Old versions 0.15.3-r1, 0.18.5, 0.19.2-r1, 0.19.2, 0.21.1 removed.
*neon-0.21.1 (06 Jun 2002)
09 Jul 2002; phoen][x <phoenix@gentoo.org> neon-0.19.2.ebuild :
Added KEYWORDS.
06 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> neon-0.21.1.ebuild :
Bumped to new version
*neon-0.19.2-r1 (29 Oct 2002)
23 Apr 2003; Paul de Vrieze <pauldv@gentoo.org> neon-0.19.2-r1.ebuild:
Unmasked neon-0.19.2 as subversion-0.10_pre1 is marked stable.
29 Oct 2002; Karl Trygve Kalleberg <karltk@gentoo.org> neon-0.19.2-r1.ebuild files/digest-neon-0.19.2-r1 :
Resurrected, so that subversion may work.
09 Jul 2002; phoen][x <phoenix@gentoo.org> neon-0.19.2.ebuild :
Added KEYWORDS, LICENSE, SLOT.
*neon-0.19.2 (26 Feb 2002)
09 Jul 2002; phoen][x <phoenix@gentoo.org> neon-0.19.2.ebuild :
Added KEYWORDS, LICENSE, SLOT.
26 Feb 2002; G.Bevin <gbevin@gentoo.org> neon-0.19.2.ebuild, files/digest-neon-0.19.2 :
upgraded version to latest release
*neon-0.18.5 (8 Feb 2002)
09 Jul 2002; phoen][x <phoenix@gentoo.org> neon-0.18.5.ebuild :
Added KEYWORDS, LICENSE, SLOT.
8 Feb 2002; G.Bevin <gbevin@gentoo.org> neon-0.18.5.ebuild, files/digest-neon-0.18.5 :
upgraded version to latest release
*neon-0.15.3-r1 (1 Feb 2002)
09 Jul 2002; phoen][x <phoenix@gentoo.org> neon-0.15.3-r1.ebuild:
Added KEYWORDS, LICENSE, SLOT.
1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
Added initial ChangeLog.

View File

@ -1,11 +0,0 @@
AUX neon-0.30.1-gnutls3.4.patch 10696 SHA256 bd9c8e07655f8bf42239334992b2d3d1d57ad983bea0ed90c6f8f12228000362 SHA512 85e0a973b010ae1ddfbde4c6d54054a2d3f410622dccf5b9fed61726071d5c1d181bfbe1192395698f9739dcbdab7844cfd18fb97c0fe3103ce600f8dacf1874 WHIRLPOOL 92ed0c9bb29295293ec612fd4f2fe95c896d9e07b6af1abaddcf3eb6c63009b7f7934932ae54abe34daa3e3e478dd9b834e2b40e051a0e50d72d06be92d9f6ce
AUX neon-0.30.1-xml2-config.patch 587 SHA256 e40bd6f27d10dfee5c8a2ed2b03497660cc0acda063dde0477b32030be394634 SHA512 a2572be00e592686d30a114c862454b817b7494b90234fd77b154ca0b50117ac2788c2ecdd471a90d88710079137fe3e1ab8f2d02bde108223c30547718eab79 WHIRLPOOL d171135cddf71520ac583adc2cbee46d35ab730dcabdf3703bc1d657ef2eaabfbe7004930ad9e26f8b1e8bd94ecd9a9c9fa27410e5616dc33c35fb93164360bb
DIST neon-0.30.0.tar.gz 909989 SHA256 2962cfcb5d30f3272e3d2fa0e473434419770a3801afe3d46e5d1650787990c2 SHA512 67f8a6c5549c37d984d8a0af88cd93c8c51593fa995662fd686e47acb630143d7b0c02c09d3c19f6a0181e0ff82940618cf72a76f9cb17bb964293f4118f013e WHIRLPOOL 75df16aae54410e97887ad1b1d45a17e58868cffff7d929f511c4840179ace1500c33228b02de7a038b9620d729e5153e1e14cc916ed1af9ce90bf4c49fb4b71
DIST neon-0.30.1.tar.gz 911414 SHA256 00c626c0dc18d094ab374dbd9a354915bfe4776433289386ed489c2ec0845cdd SHA512 4a9e45c886e04c5e1a1c781f7c2544b73724e09745097b1e8dc9adf9acd79af1762d668d4f18c295d7b4148d57af797834dd3c1203f2529089f7d1972ca71e63 WHIRLPOOL 747385544f0fbacc6c39fa5911ee5a21654ac21ecea89f297c17b43c21a7a649ae47b08b155733e9da0286a24024f4e54dcff3c9c2d678d9abe27f83054d718b
EBUILD neon-0.30.0-r1.ebuild 3026 SHA256 cf268d9c778925e3117b3ebc2f34d7127ede87504afea199e5a7f2fab5fc066e SHA512 7f89b5f7ca8cbf8c316a44c7ef1930cb1630eee0738bb0dde82668dd82d68e48209739f259fc4cc330c488d88493ee118d83369db04a876e55f197a4db5e0e70 WHIRLPOOL 09c9e611abc2b10797823638c65dc9e4e8fe05fed21670ec5eb0d1f280e97c54be7b4e91901d550e2b521704a252cc49928d6273c66d8053febb75c45df10074
EBUILD neon-0.30.0.ebuild 2411 SHA256 3d0a4d7ddfed18e802e8ab187cfe2d767c5ce8e625a43ab31169d169b2b982d8 SHA512 def96e647809ad3004e82e593752bf7bf5adfd6764f3738dac0dcdded406ff670d5b0a5c6d00595625fa137dca9776f4d4ed9d5cfae40f9873bfd8c4ebb77889 WHIRLPOOL 89046ae59ac0fb41eba2678d233ad55f30b71bd4f2286e2db75c09636b339ab5affb3665194916e3c0699abb2be2e595495ec16f87226a561228cf8910d6adf8
EBUILD neon-0.30.1-r1.ebuild 3113 SHA256 0430c8b2003b45c008487723784ac6cf9697471309b61b6436a5402f56437b77 SHA512 2c7eea679e924d68706c54e8403f15a4584968ce919d3bcba5c4fbfadcf8a0a54e961e589311a83b7fc5aeb0a5e03622870776b2097bda53a360bb04dbb7e9ea WHIRLPOOL f78d93e4ece378d6ae775386a59a2731b70d00dae9e5432e1999a97a00b0e52c51ad1626ccdef2745113f0030eb83844af10104501f58c1d5ee818c0c4e920ef
EBUILD neon-0.30.1.ebuild 2985 SHA256 5a2fd9860759393fde191653077a2a36b8788a3aadac06cba3b12fd7354367bc SHA512 56720d8cb524f8c6e3de125856d0ab6ea554c2b588c0ce03cefd7e1bd1ad7b1e02e36e7224058a45dd13e811fdb26a5d875576fcc68f09cca7890294488c72f6 WHIRLPOOL 0935346b0e74eb7cf998425514851d3fd3fe9f36a2385746e941de19a5af905e2041c04aec27e87874a75dd9cdd329acd85feceecfea0b219dcfead36a3a5d6f
MISC ChangeLog 2978 SHA256 d6bcf15f494f2667aa656484387e0a1f6064a73d6792b441e95de2a207e9b632 SHA512 2c534ecc28c62bd491bb54fe167a961e638eb7936d142deecb541b28e859468b13f0ac924d8b9e60b8305215f346e8c2c6e60855ea32fdf1b9a0988d85d463e2 WHIRLPOOL 44d29e8346f8890437b8ec8f75eb23e1a052a794e77393efd028897a305334973e117fd84cea13cb3a2d5acdc1b2706db305201a62a5d89c6c0a2784b86e4716
MISC ChangeLog-2015 31847 SHA256 ab3bbb573c3cd07b4c972b79709b122889ed035d627a6e708c625162d7b448e9 SHA512 cfd16b7395871ead63c2663d4b6720352793ae82b812a8a08c250130369d1a22eff9f89ad9bdfcfad712b21d5a4c1eb08dcb8d73591d77283b12971d413d0e3f WHIRLPOOL b1489af506ce49a70e0c9d37e4c5056600df59f5546c952157b8d5d5f161e1c8944113d883a6a08a857da32a4111de519b74f21fb09b7a21121ae252025c4e1a
MISC metadata.xml 1325 SHA256 92c8434ab86813f91edfb9c64d1f2f6ee4e266e3a7cf511e283e7bc75cd01a8a SHA512 a72fda6b0efb657be3baaef37bbca017d460de56697de367a31d1e9241bf0aaa36e105b3c0128f8aa0a7ec0bec123c1a2a4be98c539cceea1c6d255be79ea8b2 WHIRLPOOL fc33d132d313e610cac225b0680dd90a527c1413b607debec05a8a3ec33779a472ef34141c507fac4f817c306585ddab4b404b60dcb1bde11fc5fbd80a7712c8

View File

@ -1,282 +0,0 @@
Description: fix building with GnuTLS 3.4
Rewrite GnuTLS PKCS#11 support to work (exclusively) with the new
GnuTLS 3.x API.
Origin: upstream, r1963
Author: Joe Orton <joe@light.plus.com>
Bug-Debian: https://bugs.debian.org/782832
Last-Update: 2015-10-03
---
--- neon27-0.30.1.orig/macros/neon.m4
+++ neon27-0.30.1/macros/neon.m4
@@ -982,10 +982,11 @@ gnutls)
# Check for functions in later releases
NE_CHECK_FUNCS([gnutls_session_get_data2 gnutls_x509_dn_get_rdn_ava \
- gnutls_sign_callback_set \
gnutls_certificate_get_issuer \
gnutls_certificate_get_x509_cas \
- gnutls_x509_crt_sign2])
+ gnutls_x509_crt_sign2 \
+ gnutls_certificate_set_retrieve_function2 \
+ gnutls_privkey_import_ext])
# fail if gnutls_x509_crt_sign2 is not found (it was introduced in 1.2.0, which is required)
if test x${ac_cv_func_gnutls_x509_crt_sign2} != xyes; then
@@ -1039,7 +1040,7 @@ posix|yes)
;;
esac
-case ${with_pakchois}X${ac_cv_func_gnutls_sign_callback_set}Y${ne_cv_lib_ssl097} in
+case ${with_pakchois}X${ac_cv_func_gnutls_privkey_import_ext}Y${ne_cv_lib_ssl097} in
noX*Y*) ;;
*X*Yyes|*XyesY*)
# PKCS#11... ho!
--- neon27-0.30.1.orig/src/ne_gnutls.c
+++ neon27-0.30.1/src/ne_gnutls.c
@@ -89,6 +89,13 @@ struct ne_ssl_client_cert_s {
ne_ssl_certificate cert;
gnutls_x509_privkey_t pkey;
char *friendly_name;
+#ifdef HAVE_GNUTLS_PRIVKEY_IMPORT_EXT
+ /* Signing callback & userdata provided by ne_pkcs11.c. It would
+ * be better to rewrite the whole module to use gnutls_privkey_t
+ * directly, but it seems impossible to dup such an object. */
+ gnutls_privkey_sign_func sign_func;
+ void *sign_ud;
+#endif
};
/* Returns the highest used index in subject (or issuer) DN of
@@ -525,6 +532,10 @@ static ne_ssl_client_cert *dup_client_ce
if (cc->keyless) {
newcc->keyless = 1;
+#ifdef HAVE_GNUTLS_PRIVKEY_IMPORT_EXT
+ newcc->sign_func = cc->sign_func;
+ newcc->sign_ud = cc->sign_ud;
+#endif
}
else {
ret = gnutls_x509_privkey_init(&newcc->pkey);
@@ -553,7 +564,15 @@ dup_error:
static int provide_client_cert(gnutls_session_t session,
const gnutls_datum_t *req_ca_rdn, int nreqs,
const gnutls_pk_algorithm_t *sign_algos,
- int sign_algos_length, gnutls_retr_st *st)
+ int sign_algos_length,
+#ifdef HAVE_GNUTLS_CERTIFICATE_SET_RETRIEVE_FUNCTION2
+ gnutls_pcert_st **pcert,
+ unsigned int *pcert_length,
+ gnutls_privkey_t *pkey
+#else
+ gnutls_retr2_st *st
+#endif
+ )
{
ne_session *sess = gnutls_session_get_ptr(session);
@@ -611,27 +630,59 @@ static int provide_client_cert(gnutls_se
if (sess->client_cert) {
gnutls_certificate_type_t type = gnutls_certificate_type_get(session);
if (type == GNUTLS_CRT_X509
-#if LIBGNUTLS_VERSION_NUMBER > 0x030000
- /* Ugly hack; prevent segfaults w/GnuTLS 3.0. */
- && sess->client_cert->pkey != NULL
+ && (sess->client_cert->pkey || sess->client_cert->keyless)) {
+ int ret;
+
+#ifdef HAVE_GNUTLS_CERTIFICATE_SET_RETRIEVE_FUNCTION2
+ *pkey = gnutls_malloc(sizeof *pkey);
+ gnutls_privkey_init(pkey);
+
+#ifdef HAVE_GNUTLS_PRIVKEY_IMPORT_EXT
+ if (sess->client_cert->sign_func) {
+ int algo = gnutls_x509_crt_get_pk_algorithm(sess->client_cert->cert.subject, NULL);
+ NE_DEBUG(NE_DBG_SSL, "ssl: Signing for %s.\n", gnutls_pk_algorithm_get_name(algo));
+
+ ret = gnutls_privkey_import_ext(*pkey, algo, sess->client_cert->sign_ud,
+ sess->client_cert->sign_func, NULL, 0);
+ }
+ else
#endif
- ) {
- NE_DEBUG(NE_DBG_SSL, "Supplying client certificate.\n");
+ if (sess->client_cert->keyless) {
+ ret = GNUTLS_E_UNSUPPORTED_CERTIFICATE_TYPE;
+ }
+ else {
+ ret = gnutls_privkey_import_x509(*pkey, sess->client_cert->pkey, 0);
+ }
- st->type = type;
+ if (ret) {
+ NE_DEBUG(NE_DBG_SSL, "ssl: Failed to import private key: %s.\n", gnutls_strerror(ret));
+ ne_set_error(sess, _("Failed to import private key: %s"), gnutls_strerror(ret));
+ return ret;
+ }
+
+ *pcert = gnutls_malloc(sizeof *pcert);
+ gnutls_pcert_import_x509(*pcert, sess->client_cert->cert.subject, 0);
+ *pcert_length = 1;
+#else /* !HAVE_GNUTLS_CERTIFICATE_SET_RETRIEVE_FUNCTION2 */
+ st->cert_type = type;
st->ncerts = 1;
st->cert.x509 = &sess->client_cert->cert.subject;
st->key.x509 = sess->client_cert->pkey;
/* tell GNU TLS not to deallocate the certs. */
st->deinit_all = 0;
+#endif
} else {
return GNUTLS_E_UNSUPPORTED_CERTIFICATE_TYPE;
}
}
else {
- NE_DEBUG(NE_DBG_SSL, "No client certificate supplied.\n");
+ NE_DEBUG(NE_DBG_SSL, "ssl: No client certificate supplied.\n");
+#ifdef HAVE_GNUTLS_CERTIFICATE_SET_RETRIEVE_FUNCTION2
+ *pcert_length = 0;
+#else
st->ncerts = 0;
+#endif
sess->ssl_cc_requested = 1;
return 0;
}
@@ -649,8 +700,12 @@ ne_ssl_context *ne_ssl_context_create(in
ne_ssl_context *ctx = ne_calloc(sizeof *ctx);
gnutls_certificate_allocate_credentials(&ctx->cred);
if (flags == NE_SSL_CTX_CLIENT) {
+#ifdef HAVE_GNUTLS_CERTIFICATE_SET_RETRIEVE_FUNCTION2
+ gnutls_certificate_set_retrieve_function2(ctx->cred, provide_client_cert);
+#else
gnutls_certificate_client_set_retrieve_function(ctx->cred,
provide_client_cert);
+#endif
}
gnutls_certificate_set_verify_flags(ctx->cred,
GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT);
@@ -1206,8 +1261,10 @@ ne_ssl_client_cert *ne_ssl_clicert_impor
}
}
-ne_ssl_client_cert *ne__ssl_clicert_exkey_import(const unsigned char *der,
- size_t der_len)
+#ifdef HAVE_GNUTLS_PRIVKEY_IMPORT_EXT
+ne_ssl_client_cert *ne__ssl_clicert_exkey_import(const unsigned char *der, size_t der_len,
+ gnutls_privkey_sign_func sign_func,
+ void *userdata)
{
ne_ssl_client_cert *cc;
gnutls_x509_crt_t x5;
@@ -1226,9 +1283,12 @@ ne_ssl_client_cert *ne__ssl_clicert_exke
cc->keyless = 1;
cc->decrypted = 1;
populate_cert(&cc->cert, x5);
+ cc->sign_func = sign_func;
+ cc->sign_ud = userdata;
- return cc;
+ return cc;
}
+#endif
int ne_ssl_clicert_encrypted(const ne_ssl_client_cert *cc)
{
--- neon27-0.30.1.orig/src/ne_pkcs11.c
+++ neon27-0.30.1/src/ne_pkcs11.c
@@ -156,6 +156,13 @@ static RSA_METHOD *pk11_rsa_method(ne_ss
}
#endif
+#ifdef HAVE_GNUTLS
+static int pk11_sign_callback(gnutls_privkey_t pkey,
+ void *userdata,
+ const gnutls_datum_t *raw_data,
+ gnutls_datum_t *signature);
+#endif
+
static int pk11_find_x509(ne_ssl_pkcs11_provider *prov,
pakchois_session_t *pks,
unsigned char *certid, unsigned long *cid_len)
@@ -203,7 +210,7 @@ static int pk11_find_x509(ne_ssl_pkcs11_
ne_ssl_client_cert *cc;
#ifdef HAVE_GNUTLS
- cc = ne__ssl_clicert_exkey_import(value, a[0].value_len);
+ cc = ne__ssl_clicert_exkey_import(value, a[0].value_len, pk11_sign_callback, prov);
#else
cc = ne__ssl_clicert_exkey_import(value, a[0].value_len, pk11_rsa_method(prov));
#endif
@@ -298,10 +305,8 @@ static int find_client_cert(ne_ssl_pkcs1
#ifdef HAVE_GNUTLS
/* Callback invoked by GnuTLS to provide the signature. The signature
* operation is handled here by the PKCS#11 provider. */
-static int pk11_sign_callback(gnutls_session_t session,
+static int pk11_sign_callback(gnutls_privkey_t pkey,
void *userdata,
- gnutls_certificate_type_t cert_type,
- const gnutls_datum_t *cert,
const gnutls_datum_t *hash,
gnutls_datum_t *signature)
{
@@ -571,11 +576,6 @@ void ne_ssl_pkcs11_provider_pin(ne_ssl_p
void ne_ssl_set_pkcs11_provider(ne_session *sess,
ne_ssl_pkcs11_provider *provider)
{
-#ifdef HAVE_GNUTLS
- sess->ssl_context->sign_func = pk11_sign_callback;
- sess->ssl_context->sign_data = provider;
-#endif
-
ne_ssl_provide_clicert(sess, pk11_provide, provider);
}
--- neon27-0.30.1.orig/src/ne_privssl.h
+++ neon27-0.30.1/src/ne_privssl.h
@@ -58,6 +58,10 @@ ne__ssl_clicert_exkey_import(const unsig
#include <gnutls/gnutls.h>
+#ifdef HAVE_GNUTLS_PRIVKEY_IMPORT_EXT
+#include <gnutls/abstract.h>
+#endif
+
struct ne_ssl_context_s {
gnutls_certificate_credentials_t cred;
int verify; /* non-zero if client cert verification required */
@@ -78,17 +82,13 @@ struct ne_ssl_context_s {
} client;
#endif
} cache;
-
-#ifdef HAVE_GNUTLS_SIGN_CALLBACK_SET
- gnutls_sign_func sign_func;
- void *sign_data;
-#endif
};
typedef gnutls_session_t ne_ssl_socket;
NE_PRIVATE ne_ssl_client_cert *
-ne__ssl_clicert_exkey_import(const unsigned char *der, size_t der_len);
+ne__ssl_clicert_exkey_import(const unsigned char *der, size_t der_len,
+ gnutls_privkey_sign_func sign_func, void *userdata);
#endif /* HAVE_GNUTLS */
--- neon27-0.30.1.orig/src/ne_socket.c
+++ neon27-0.30.1/src/ne_socket.c
@@ -1793,11 +1793,6 @@ int ne_sock_connect_ssl(ne_socket *sock,
gnutls_session_set_ptr(sock->ssl, userdata);
gnutls_credentials_set(sock->ssl, GNUTLS_CRD_CERTIFICATE, ctx->cred);
-#ifdef HAVE_GNUTLS_SIGN_CALLBACK_SET
- if (ctx->sign_func)
- gnutls_sign_callback_set(sock->ssl, ctx->sign_func, ctx->sign_data);
-#endif
-
if (ctx->hostname) {
gnutls_server_name_set(sock->ssl, GNUTLS_NAME_DNS, ctx->hostname,
strlen(ctx->hostname));

View File

@ -1,15 +0,0 @@
locate the $CHOST prefixed version of xml2-config by default
would be better to use pkg-config here, but this patch is minimally invasive
--- a/macros/neon-xml-parser.m4
+++ b/macros/neon-xml-parser.m4
@@ -44,7 +44,7 @@ AC_CHECK_HEADER(expat.h,
dnl Find libxml2: run $1 if found, else $2
AC_DEFUN([NE_XML_LIBXML2], [
-AC_CHECK_PROG(XML2_CONFIG, xml2-config, xml2-config)
+AC_CHECK_TOOL(XML2_CONFIG, xml2-config, xml2-config)
if test -n "$XML2_CONFIG"; then
neon_xml_parser_message="libxml `$XML2_CONFIG --version`"
AC_DEFINE(HAVE_LIBXML, 1, [Define if you have libxml])

View File

@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>arfrever.fta@gmail.com</email>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<longdescription>
Neon is an HTTP and WebDAV client library for Unix systems, with a C
language API. It provides high-level interfaces to HTTP/1.1 and WebDAV
methods, and a low-level interface to HTTP request/response handling,
allowing new methods to be easily implemented.
</longdescription>
<longdescription lang="ja">
neon は Unix システムにおける HTTP 及び WebDAV クライアント・ライブラリ
であり、C言語 API です。HTTP/1.1 及び WebDAV のメソッドという高い視点
でのインターフェイス、HTTP リクエスト/レスポンス のハンドリングという
低い視点でのインターフェイス、簡単に実装できるようにした新しいメソッド
といったものを提供します。
</longdescription>
<use>
<flag name="libproxy">Add support for <pkg>net-libs/libproxy</pkg></flag>
<flag name="pkcs11">Add support for PKCS#11 using <pkg>dev-libs/pakchois</pkg></flag>
</use>
</pkgmetadata>

View File

@ -1,108 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit autotools eutils libtool multilib-minimal
DESCRIPTION="HTTP and WebDAV client library"
HOMEPAGE="http://www.webdav.org/neon/"
SRC_URI="http://www.webdav.org/neon/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0/27"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl static-libs zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
IUSE+=" linguas_${lingua}"
done
unset lingua
RESTRICT="test"
RDEPEND="expat? ( >=dev-libs/expat-2.1.0-r3:0=[${MULTILIB_USEDEP}] )
!expat? ( >=dev-libs/libxml2-2.9.1-r4:2=[${MULTILIB_USEDEP}] )
gnutls? (
app-misc/ca-certificates
>=net-libs/gnutls-2.12.23-r6:0=[${MULTILIB_USEDEP}]
pkcs11? ( >=dev-libs/pakchois-0.4-r1:0=[${MULTILIB_USEDEP}] )
)
!gnutls? ( ssl? (
>=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}]
pkcs11? ( >=dev-libs/pakchois-0.4-r1:0=[${MULTILIB_USEDEP}] )
) )
kerberos? ( >=virtual/krb5-0-r1:0=[${MULTILIB_USEDEP}] )
libproxy? ( >=net-libs/libproxy-0.4.11-r1:0=[${MULTILIB_USEDEP}] )
nls? ( >=virtual/libintl-0-r1:0=[${MULTILIB_USEDEP}] )
zlib? ( >=sys-libs/zlib-1.2.8-r1:0=[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
RDEPEND="${RDEPEND}
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20140508-r8
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
MULTILIB_CHOST_TOOLS=(
/usr/bin/neon-config
)
src_prepare() {
local lingua linguas
for lingua in ${IUSE_LINGUAS}; do
use linguas_${lingua} && linguas+=" ${lingua}"
done
sed -e "s/ALL_LINGUAS=.*/ALL_LINGUAS=\"${linguas}\"/" -i configure.in
AT_M4DIR="macros" eautoreconf
elibtoolize
}
multilib_src_configure() {
local myconf=()
if has_version sys-libs/glibc; then
einfo "Enabling SSL library thread-safety using POSIX threads..."
myconf+=(--enable-threadsafe-ssl=posix)
fi
if use expat; then
myconf+=(--with-expat)
else
myconf+=(--with-libxml2)
fi
if use gnutls; then
myconf+=(--with-ssl=gnutls --with-ca-bundle="${EPREFIX}/etc/ssl/certs/ca-certificates.crt")
elif use ssl; then
myconf+=(--with-ssl=openssl)
fi
ECONF_SOURCE=${S} \
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--enable-shared \
$(use_with kerberos gssapi) \
$(use_with libproxy) \
$(use_enable nls) \
$(use_with pkcs11 pakchois) \
$(use_enable static-libs static) \
$(use_with zlib) \
"${myconf[@]}"
}
multilib_src_install() {
emake DESTDIR="${D}" install-{config,headers,lib,man,nls}
if use doc; then
emake DESTDIR="${D}" install-html
fi
}
multilib_src_install_all() {
prune_libtool_files --all
dodoc AUTHORS BUGS NEWS README THANKS TODO
}

View File

@ -1,96 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit autotools libtool
DESCRIPTION="HTTP and WebDAV client library"
HOMEPAGE="http://www.webdav.org/neon/"
SRC_URI="http://www.webdav.org/neon/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0/27"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl static-libs zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
IUSE+=" linguas_${lingua}"
done
unset lingua
RESTRICT="test"
RDEPEND="expat? ( dev-libs/expat:0= )
!expat? ( dev-libs/libxml2:2= )
gnutls? (
app-misc/ca-certificates
net-libs/gnutls:0=
pkcs11? ( dev-libs/pakchois:0= )
)
!gnutls? ( ssl? (
dev-libs/openssl:0=
pkcs11? ( dev-libs/pakchois:0= )
) )
kerberos? ( virtual/krb5:0= )
libproxy? ( net-libs/libproxy:0= )
nls? ( virtual/libintl:0= )
zlib? ( sys-libs/zlib:0= )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
local lingua linguas
for lingua in ${IUSE_LINGUAS}; do
use linguas_${lingua} && linguas+=" ${lingua}"
done
sed -e "s/ALL_LINGUAS=.*/ALL_LINGUAS=\"${linguas}\"/" -i configure.in
AT_M4DIR="macros" eautoreconf
elibtoolize
}
src_configure() {
local myconf=()
if has_version sys-libs/glibc; then
einfo "Enabling SSL library thread-safety using POSIX threads..."
myconf+=(--enable-threadsafe-ssl=posix)
fi
if use expat; then
myconf+=(--with-expat)
else
myconf+=(--with-libxml2)
fi
if use gnutls; then
myconf+=(--with-ssl=gnutls --with-ca-bundle="${EPREFIX}/etc/ssl/certs/ca-certificates.crt")
elif use ssl; then
myconf+=(--with-ssl=openssl)
fi
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--enable-shared \
$(use_with kerberos gssapi) \
$(use_with libproxy) \
$(use_enable nls) \
$(use_with pkcs11 pakchois) \
$(use_enable static-libs static) \
$(use_with zlib) \
"${myconf[@]}"
}
src_install() {
emake DESTDIR="${D}" install-{config,headers,lib,man,nls}
find "${ED}" -name "*.la" -delete
if use doc; then
emake DESTDIR="${D}" install-html
fi
dodoc AUTHORS BUGS NEWS README THANKS TODO
}

View File

@ -1,112 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit autotools libtool multilib-minimal
DESCRIPTION="HTTP and WebDAV client library"
HOMEPAGE="http://www.webdav.org/neon/"
SRC_URI="http://www.webdav.org/neon/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0/27"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy libressl nls pkcs11 ssl static-libs zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
IUSE+=" linguas_${lingua}"
done
unset lingua
RESTRICT="test"
RDEPEND="expat? ( dev-libs/expat:0=[${MULTILIB_USEDEP}] )
!expat? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] )
gnutls? (
app-misc/ca-certificates
net-libs/gnutls:0=[${MULTILIB_USEDEP}]
pkcs11? ( dev-libs/pakchois:0=[${MULTILIB_USEDEP}] )
)
!gnutls? ( ssl? (
!libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
pkcs11? ( dev-libs/pakchois:0=[${MULTILIB_USEDEP}] )
) )
kerberos? ( virtual/krb5:0=[${MULTILIB_USEDEP}] )
libproxy? ( net-libs/libproxy:0=[${MULTILIB_USEDEP}] )
nls? ( virtual/libintl:0=[${MULTILIB_USEDEP}] )
zlib? ( sys-libs/zlib:0=[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
virtual/pkgconfig[${MULTILIB_USEDEP}]"
RDEPEND="${RDEPEND}
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20140508-r8
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
MULTILIB_CHOST_TOOLS=(
/usr/bin/neon-config
)
src_prepare() {
local lingua linguas
for lingua in ${IUSE_LINGUAS}; do
use linguas_${lingua} && linguas+=" ${lingua}"
done
sed -e "s/ALL_LINGUAS=.*/ALL_LINGUAS=\"${linguas}\"/" -i configure.ac || die
epatch "${FILESDIR}"/${P}-xml2-config.patch \
"${FILESDIR}"/${P}-gnutls3.4.patch
AT_M4DIR="macros" eautoreconf
elibtoolize
multilib_copy_sources
}
multilib_src_configure() {
local myconf=()
if has_version sys-libs/glibc; then
einfo "Enabling SSL library thread-safety using POSIX threads..."
myconf+=(--enable-threadsafe-ssl=posix)
fi
if use expat; then
myconf+=(--with-expat)
else
myconf+=(--with-libxml2)
fi
if use gnutls; then
myconf+=(--with-ssl=gnutls --with-ca-bundle="${EPREFIX}/etc/ssl/certs/ca-certificates.crt")
elif use ssl; then
myconf+=(--with-ssl=openssl)
fi
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--enable-shared \
$(use_with kerberos gssapi) \
$(use_with libproxy) \
$(use_enable nls) \
$(use_with pkcs11 pakchois) \
$(use_enable static-libs static) \
$(use_with zlib) \
"${myconf[@]}"
}
multilib_src_install() {
emake DESTDIR="${D}" install-{config,headers,lib,man,nls}
if multilib_is_native_abi && use doc; then
dohtml -r doc/html/
fi
}
multilib_src_install_all() {
find "${ED}" -name "*.la" -delete
dodoc AUTHORS BUGS NEWS README THANKS TODO
}

View File

@ -1,110 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit autotools libtool multilib-minimal
DESCRIPTION="HTTP and WebDAV client library"
HOMEPAGE="http://www.webdav.org/neon/"
SRC_URI="http://www.webdav.org/neon/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0/27"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl static-libs zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
IUSE+=" linguas_${lingua}"
done
unset lingua
RESTRICT="test"
RDEPEND="expat? ( dev-libs/expat:0=[${MULTILIB_USEDEP}] )
!expat? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] )
gnutls? (
app-misc/ca-certificates
net-libs/gnutls:0=[${MULTILIB_USEDEP}]
pkcs11? ( dev-libs/pakchois:0=[${MULTILIB_USEDEP}] )
)
!gnutls? ( ssl? (
dev-libs/openssl:0=[${MULTILIB_USEDEP}]
pkcs11? ( dev-libs/pakchois:0=[${MULTILIB_USEDEP}] )
) )
kerberos? ( virtual/krb5:0=[${MULTILIB_USEDEP}] )
libproxy? ( net-libs/libproxy:0=[${MULTILIB_USEDEP}] )
nls? ( virtual/libintl:0=[${MULTILIB_USEDEP}] )
zlib? ( sys-libs/zlib:0=[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
virtual/pkgconfig[${MULTILIB_USEDEP}]"
RDEPEND="${RDEPEND}
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20140508-r8
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
MULTILIB_CHOST_TOOLS=(
/usr/bin/neon-config
)
src_prepare() {
local lingua linguas
for lingua in ${IUSE_LINGUAS}; do
use linguas_${lingua} && linguas+=" ${lingua}"
done
sed -e "s/ALL_LINGUAS=.*/ALL_LINGUAS=\"${linguas}\"/" -i configure.ac || die
epatch "${FILESDIR}"/${P}-xml2-config.patch
AT_M4DIR="macros" eautoreconf
elibtoolize
multilib_copy_sources
}
multilib_src_configure() {
local myconf=()
if has_version sys-libs/glibc; then
einfo "Enabling SSL library thread-safety using POSIX threads..."
myconf+=(--enable-threadsafe-ssl=posix)
fi
if use expat; then
myconf+=(--with-expat)
else
myconf+=(--with-libxml2)
fi
if use gnutls; then
myconf+=(--with-ssl=gnutls --with-ca-bundle="${EPREFIX}/etc/ssl/certs/ca-certificates.crt")
elif use ssl; then
myconf+=(--with-ssl=openssl)
fi
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--enable-shared \
$(use_with kerberos gssapi) \
$(use_with libproxy) \
$(use_enable nls) \
$(use_with pkcs11 pakchois) \
$(use_enable static-libs static) \
$(use_with zlib) \
"${myconf[@]}"
}
multilib_src_install() {
emake DESTDIR="${D}" install-{config,headers,lib,man,nls}
if multilib_is_native_abi && use doc; then
dohtml -r doc/html/
fi
}
multilib_src_install_all() {
find "${ED}" -name "*.la" -delete
dodoc AUTHORS BUGS NEWS README THANKS TODO
}

View File

@ -1,15 +0,0 @@
AUX 0.21-initializer.patch 1261 SHA256 ce6792192c9014bd0db4acbf0866f3d6eb1e608225177cbfaf6dd54b7d447bf5 SHA512 e7593fcefead06007a2314217b4be61161261b2be06c631065ede00f48098b924395605faba2ef859be9b6a242d531942460f2b51ea346d1cb93af94ecb23b3c WHIRLPOOL efcec5c85046ba5acff2b8559fad7c05175ed791ea84f47587013e90a3e2c301df507a776097795f0003625fbc40b95d79ecb1a349ee5ee08d5b4a7ad841b452
AUX 0.21-nvme_ioctl.h.patch 728 SHA256 f71fb95d12800bc6934213ee2541dbeea2adb8e545929330b4baf5a049bb52e6 SHA512 55dcb19d7d651ba32426c903b9000957829b924f1a0eda52a6368f0378b04f80da3849d86bb28258360592b568105ae0c0b0a20e6663cfb99c2d28dac1592611 WHIRLPOOL 708cb89b07f886168b19c8b9a8bf1ab37596efb65035102631eb0615ebc4ff41b447574bdf441e9a7fc58471e4abef59e220c728154719abd3ece4b164459b7d
AUX 0.22-flags.patch 1436 SHA256 b4cd72973b860d0377e37aa1d44f6324ccbbc99f1bd79b3139c189f08c24c008 SHA512 aa793faa4c583d5cc585bb1942c87e2906b8db74bb99e567aae54b065237e3ad4a74659d1220db700e0badca411f5daa5edc00eed3327a79dfa83f52cf2b3627 WHIRLPOOL 28535287d5dabe6b993909fabd064e2f8636e69caa15f2ae9f9320a8822b31407bbab038f44ea59e70293ba6ad6f921b9c4dcd1dbeb93364c25c17046354c839
AUX 0.23-sysmacros.patch 619 SHA256 2e54f440504881f7bba0554f48ff0cd389eb4522a442d7cbb7a5092cf227cb9a SHA512 8e7bf9d98c4a9d57dda785a4b70b8bdf723cec2efa13d42ca5a13c52822760306673cefece7a7f03a3768d962bba80698b6133c3036c6b88d8319ab623862188 WHIRLPOOL d8ca7633d1854c355aa2026df2464127cca26e71957ccb5df99a1eba677193864dc20e1da3f19dc5f1ba37abe1a727e1e9f680eff8a8988f71f503cd4674b562
DIST efivar-0.21.tar.bz2 66677 SHA256 04b9b9de9d9a1a013395400438a033daf4a4290f497ec5be04a120e2ac535094 SHA512 851b5e29c2dab213bb81c6ea5c5c211d36fb6846de8aa1086b0657f06917c2f93bf154aa3a4c2dda22103bdf1d67ca877f9771dc3f979c9311ca24e0bc09492a WHIRLPOOL d6cdb2e2f047a22677d046581490ee4e64a2ac0631be8e41bf6250241b2554f62ddf81226fa3970ee80ebb9ec62665ca21f4fec94cc5ebe05414b0c674ad38dd
DIST efivar-0.23.tar.bz2 67558 SHA256 9ca81f56b0c9177b6536c8187c9cf5974723abcaf57cd34173500c80bff3caa4 SHA512 ff95c735425708cef0f85f1e9f8909e64651d10c303927d9e77d44fcb0a02ec90e4a364b0315cc3f5e30d77059ed2d8f43cc1efbed2db09a695ef7a6f1bb58f4 WHIRLPOOL 35207e4040041c03d105bbf7b2f7f103f1415dbc51dce9614ddba99786b6cacdf88136ab3a888551cf494c3d55685c7991c72fac1c6223255128c7c191e0318c
DIST efivar-27.tar.gz 86132 SHA256 d9457b06f234c9430aeaa6f30f7d7c786fb8ce3261a935afa8de51e2c1b4816d SHA512 354934c166b37f78a11497a4819075b13d44bf43587dc52d0a9773d77df52df2d2b553e5ff799911ab506441d0ea82825f6d1b019932e0bcfbacdd69a241bc9e WHIRLPOOL 5eae9999aa7790112beb5aa03e98ac7d380b1bf9f3fdef10ca7ffda73ee68b1a4cb1a410d0060dca1caef3734fc80d6778a90eccc80719904d5d7f9285db7ab0
DIST efivar-30.tar.gz 86395 SHA256 20709c76311f8eb8be92977b7ac008ce62501fa9f7fe885a784321540fc352f9 SHA512 ab73c2a49175e01cb4872bfb47708a71399c6f8237a02fbbbf4755fcd10efb82984baf76a83c3b3e7f5cf4183050e535cf18dff2bbfed10d9a0f5d4cf2021b32 WHIRLPOOL d0a7fe13e4359ddafb717b666b81fdecf786f8cc3a794e47a46d80064cd402780feeab5f501f9b0796d3a847b58611b7581341e0e9cb4449d86e75e6903591eb
EBUILD efivar-0.21.ebuild 706 SHA256 47939529738177827ba067256fe0c6ea48cf04a41f03f88af0d741074d144e22 SHA512 fc6a3a1c76ec8b25d30ea583d396c7865d744885af53bea2925c30447de80733b61c2d0a117f880204f7f4dfada2d4ecec5809fb542d0427fabc6453ee7bd287 WHIRLPOOL a02fe6a6b935d96dfac4486c512da83a252ca9c860402362a80626eee9c9249fc7e0c2cd9be5124725f0d53a40f913f5391c33340af0a8be7611b85df0729e4f
EBUILD efivar-0.23.ebuild 916 SHA256 af96e11494bb76c3bbe793362bf23fc8aca8818d4bb171e420c26049e4a6bdca SHA512 062a4b66bed578fb88936763663c5d832ad02d27388b83f92a83ac0ba2dd28a6771ecb6320dc6d3888f9516c231e201c842223f5227bf4ae0f89d3d992eebec8 WHIRLPOOL 918e0df209b0e9dd17906ccffbd382c1b1dfe54d11784609ee082a42104a7fd90f25d213eccddaad57bbe76b7f8b070514a26521dd956304c0779c7c65a4efc0
EBUILD efivar-27.ebuild 853 SHA256 5230427c3652dcb3658321aeb88b590c83a657aabbca5ef4f7a4d7874f815a1f SHA512 97747190705d76d11a28d14e9485c2a76445cc03d0284a771dc538960ff5a64159c634ae0da901cbed8a65668f60b0786d94f68a051febc6f6f68ec4dd0e51d3 WHIRLPOOL 90431a70a1d261fce537aab25fafaf201a9dcf789532145f2c656aca7df224374c9e681a11307639d12da2dd9ef275cc18aea035092a14009cf1d74d1549a66a
EBUILD efivar-30.ebuild 934 SHA256 1ac71cc5b573619273abd86cf4d5937b2c6aaa11d319c5055c779c2b4169c17f SHA512 2b2121ae75e660db96c9939b7f990f580c8f22a243b86dd846848e81ea067cf4984d4fdb35799db3c754b9dba67df1481c836a03345b637ed079b565c1be2e17 WHIRLPOOL eaee11dcd010b099efb1c7de959200fb9fe964c9fcc9ad5117839651bfeedd4c3dcc019c9a8febc274ee9fc1cb7fcd219c7008d44f2c9afcf1c88a97b8b6bdcd
MISC ChangeLog 5093 SHA256 a7e3e89cd86e8ad9cac2ed75c7acc58e26ea86a1bcad2dd59f4bafd007a74353 SHA512 1c762c73aaafcb54493d2c999563bece398c2a0a1779f9a1b08849f1c26c2b38c4cca8773f977112c286bca9d403319b0facf1fd215c730ab5c2932425084f2d WHIRLPOOL 7956e84bb38f194dc89bd0216971a67dc52dfb9f7294b318c79f36a306fdf69e00abbbb1b154f4a602384d3c8f728eafe4d139f31cc98f9286f18b8f43e3fa83
MISC ChangeLog-2015 1400 SHA256 19acadd29d4ade26e28eb1b3c90b53fe7bd656c994429ddd2c0210a5c4781ef7 SHA512 a3ddd6f45f6b7d7f29435fea17bd76448dcaed5d15f06aa8e8824d7e1a92848c2ef19204cac4201c4a940103d6f874148f3e9b1726af99c9c778dab5f09598bc WHIRLPOOL 9a685232976e2381e39f103e98fb3df05c0c9ac1ef48ef063f5a2dbab414cd6de464bc775a8d9890cf1f9f2aafe2c102e16ac9c22e04d938f0039c2fcd319bed
MISC metadata.xml 329 SHA256 562af8ae9d4eac40cd37ccea2827ecb766176649c836296a10a75dddc4446181 SHA512 a349c5ce7e3ad96d816b52ee35e6547bfb1f4cf9ebd60426ac90b84d67adb0728ab9dcccf93754ad7c71614b0fbd82a1a02fc3fde07e15d12d960d1a7fc088df WHIRLPOOL b6c568a210bf85aea3dffae55d3f861fae101047b431b9ed64f60a61ac5b76d4866d63298a8a11e42f78c013388bc932b1fdd73d44a82fa2476138f2521f3444

View File

@ -1,31 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils multilib toolchain-funcs
DESCRIPTION="Tools and library to manipulate EFI variables"
HOMEPAGE="https://github.com/rhinstaller/efivar"
SRC_URI="https://github.com/rhinstaller/${PN}/releases/download/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ia64 x86"
RDEPEND="dev-libs/popt"
DEPEND="${RDEPEND}
>=sys-kernel/linux-headers-3.18"
src_prepare() {
epatch "${FILESDIR}/0.21-initializer.patch"
epatch "${FILESDIR}/0.21-nvme_ioctl.h.patch"
epatch_user
}
src_configure() {
tc-export CC
export libdir="/usr/$(get_libdir)"
unset LIBS # Bug 562004
}

View File

@ -1,45 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils multilib toolchain-funcs
DESCRIPTION="Tools and library to manipulate EFI variables"
HOMEPAGE="https://github.com/rhinstaller/efivar"
SRC_URI="https://github.com/rhinstaller/${PN}/releases/download/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86"
RDEPEND="dev-libs/popt"
DEPEND="${RDEPEND}
>=sys-kernel/linux-headers-3.18"
src_prepare() {
epatch "${FILESDIR}/0.21-nvme_ioctl.h.patch"
epatch "${FILESDIR}/0.23-sysmacros.patch"
epatch_user
}
src_configure() {
tc-export CC
tc-ld-disable-gold
export libdir="/usr/$(get_libdir)"
unset LIBS # Bug 562004
}
src_compile() {
# Avoid building static binary/libs
opts=(
BINTARGETS=efivar
STATICLIBTARGETS=
)
emake "${opts[@]}"
}
src_install() {
emake "${opts[@]}" DESTDIR="${D}" install
}

View File

@ -1,44 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit toolchain-funcs
DESCRIPTION="Tools and library to manipulate EFI variables"
HOMEPAGE="https://github.com/rhinstaller/efivar"
SRC_URI="https://github.com/rhinstaller/efivar/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~ia64 ~x86"
RDEPEND="dev-libs/popt"
DEPEND="${RDEPEND}
>=sys-kernel/linux-headers-3.18"
src_prepare() {
default
sed -i -e s/-Werror// gcc.specs || die
}
src_configure() {
tc-export CC
tc-ld-disable-gold
export libdir="/usr/$(get_libdir)"
unset LIBS # Bug 562004
}
src_compile() {
# Avoid building static binary/libs
opts=(
BINTARGETS=efivar
STATICLIBTARGETS=
)
emake "${opts[@]}"
}
src_install() {
emake "${opts[@]}" DESTDIR="${D}" install
}

View File

@ -1,48 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Tools and library to manipulate EFI variables"
HOMEPAGE="https://github.com/rhinstaller/efivar"
SRC_URI="https://github.com/rhinstaller/efivar/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0/1"
KEYWORDS="amd64 ~ia64 x86"
RDEPEND="dev-libs/popt"
DEPEND="${RDEPEND}
>=sys-kernel/linux-headers-3.18"
src_prepare() {
default
sed -i -e s/-Werror// gcc.specs || die
}
src_configure() {
tc-export CC
# https://github.com/rhinstaller/efivar/issues/64
append-cflags -flto
tc-ld-disable-gold
export libdir="/usr/$(get_libdir)"
unset LIBS # Bug 562004
}
src_compile() {
# Avoid building static binary/libs
opts=(
BINTARGETS=efivar
STATICLIBTARGETS=
)
emake "${opts[@]}"
}
src_install() {
emake "${opts[@]}" DESTDIR="${D}" install
}

View File

@ -1,42 +0,0 @@
From a3606c02fd271d32e364fcc540e34ba1899309f6 Mon Sep 17 00:00:00 2001
From: Peter Jones <pjones@redhat.com>
Date: Tue, 14 Jul 2015 09:33:54 -0400
Subject: [PATCH] Sometimes the compiler doesn't like { 0, } as an
initializer...
Because it really wants to be { {0, },} or something, and sometimes the
compiler, knowing full well what we're trying to do, likes to complain
about the rigor applied to our technique in doing it.
memset() the struct ifreq to 0 instead so I don't need to figure out its
internal structure just to zero it out.
Resolves #28
Signed-off-by: Peter Jones <pjones@redhat.com>
---
src/linux.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/linux.c b/src/linux.c
index 57f71f3..817b8e6 100644
--- a/src/linux.c
+++ b/src/linux.c
@@ -847,12 +847,13 @@ ssize_t
__attribute__((__visibility__ ("hidden")))
make_mac_path(uint8_t *buf, ssize_t size, const char * const ifname)
{
- struct ifreq ifr = { 0, };
+ struct ifreq ifr;
struct ethtool_drvinfo drvinfo = { 0, };
int fd, rc;
ssize_t ret = -1, sz, off=0;
char busname[PATH_MAX+1] = "";
+ memset(&ifr, 0, sizeof (ifr));
strncpy(ifr.ifr_name, ifname, IF_NAMESIZE);
drvinfo.cmd = ETHTOOL_GDRVINFO;
ifr.ifr_data = (caddr_t)&drvinfo;
--
2.4.6

View File

@ -1,30 +0,0 @@
From ae0869b71a90bc14e67f3c917bd9c96db25c99a6 Mon Sep 17 00:00:00 2001
From: Mike Gilbert <floppym@gentoo.org>
Date: Thu, 14 Jan 2016 17:02:31 -0500
Subject: [PATCH] Workaround rename of linux/nvme.h
Bug: https://bugs.gentoo.org/571548
---
src/linux.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/linux.c b/src/linux.c
index 5ebc151..e551377 100644
--- a/src/linux.c
+++ b/src/linux.c
@@ -22,7 +22,12 @@
#include <inttypes.h>
#include <limits.h>
#include <linux/ethtool.h>
+#include <linux/version.h>
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0)
+#include <linux/nvme_ioctl.h>
+#else
#include <linux/nvme.h>
+#endif
#include <linux/sockios.h>
#include <net/if.h>
#include <scsi/scsi.h>
--
2.7.0

View File

@ -1,41 +0,0 @@
From 5bc17590cb096340fc695da3020883130437d745 Mon Sep 17 00:00:00 2001
From: Mike Gilbert <floppym@gentoo.org>
Date: Fri, 12 Feb 2016 13:22:13 -0500
Subject: [PATCH] Make.defaults: Improve gcc/clang detection
The old filter only matched "gcc" or "clang".
The new findstring call matches any occurance of gcc or clang. This is
useful when CC includes the full host tuple, like x86_64-pc-linux-gnu-gcc.
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
---
Make.defaults | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Make.defaults b/Make.defaults
index bf814b8..5aed21e 100644
--- a/Make.defaults
+++ b/Make.defaults
@@ -25,14 +25,14 @@ PKGS =
clang_cflags =
gcc_cflags = -specs=$(TOPDIR)/gcc.specs
cflags = $(CFLAGS) -I${TOPDIR}/src/include/efivar/ \
- $(if $(filter $(CC),clang),$(clang_cflags),) \
- $(if $(filter $(CC),gcc),$(gcc_cflags),) \
+ $(if $(findstring clang,$(CC)),$(clang_cflags),) \
+ $(if $(findstring gcc,$(CC)),$(gcc_cflags),) \
$(call pkg-config-cflags)
clang_ccldflags =
gcc_ccldflags =
ccldflags = $(cflags) $(CCLDFLAGS) $(LDFLAGS) \
- $(if $(filter $(CCLD),clang),$(clang_ccldflags),) \
- $(if $(filter $(CCLD),gcc),$(gcc_ccldflags),) \
+ $(if $(findstring clang,$(CCLD)),$(clang_ccldflags),) \
+ $(if $(findstring gcc,$(CCLD)),$(gcc_ccldflags),) \
$(call pkg-config-ccldflags)
SOFLAGS=-shared
LDLIBS=$(foreach lib,$(LIBS),-l$(lib)) $(call pkg-config-ldlibs)
--
2.7.1

View File

@ -1,29 +0,0 @@
From 554b0255f9ee265f7d093ac875215207fac8fb1e Mon Sep 17 00:00:00 2001
From: Mike Gilbert <floppym@gentoo.org>
Date: Fri, 15 Apr 2016 17:58:15 -0400
Subject: [PATCH] Include sys/sysmacros.h when sys/types.h does not define
major
glibc is planning to drop this from sys/types.h.
---
src/linux.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/linux.c b/src/linux.c
index 866455d..fde6947 100644
--- a/src/linux.c
+++ b/src/linux.c
@@ -36,6 +36,10 @@
#include <sys/stat.h>
#include <unistd.h>
+#ifndef major
+#include <sys/sysmacros.h>
+#endif
+
#include <efivar.h>
#include <efiboot.h>
--
2.8.1

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>floppym@gentoo.org</email>
<name>Mike Gilbert</name>
</maintainer>
<upstream>
<remote-id type="github">rhinstaller/efivar</remote-id>
</upstream>
</pkgmetadata>

View File

@ -1,66 +0,0 @@
# ChangeLog for sys-libs/mtdev
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
# (auto-generated from git log)
*mtdev-1.1.5 (09 Aug 2015)
*mtdev-1.1.4 (09 Aug 2015)
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org> +metadata.xml,
+mtdev-1.1.4.ebuild, +mtdev-1.1.5.ebuild:
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
the bikeshed
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
Use https by default
Convert all URLs for sites supporting encrypted connections from http to
https
Signed-off-by: Justin Lecher <jlec@gentoo.org>
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
Revert DOCTYPE SYSTEM https changes in metadata.xml
repoman does not yet accept the https version.
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
Bug: https://bugs.gentoo.org/552720
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
Replace all herds with appropriate projects (GLEP 67)
Replace all uses of herd with appropriate project maintainers, or no
maintainers in case of herds requested to be disbanded.
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
Set appropriate maintainer types in metadata.xml (GLEP 67)

View File

@ -1,168 +0,0 @@
# ChangeLog for sys-libs/mtdev
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/mtdev/ChangeLog,v 1.49 2015/03/14 13:51:46 maekke Exp $
14 Mar 2015; Markus Meier <maekke@gentoo.org> mtdev-1.1.5.ebuild:
arm stable, bug #530652
06 Mar 2015; Jeroen Roovers <jer@gentoo.org> mtdev-1.1.5.ebuild:
Stable for HPPA (bug #530652).
03 Mar 2015; Yixun Lan <dlan@gentoo.org> mtdev-1.1.5.ebuild:
add arm64 support, tested on A53 board
24 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.5.ebuild:
Stable for alpha, wrt bug #530652
23 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.5.ebuild:
Stable for sparc, wrt bug #530652
22 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.5.ebuild:
Stable for ia64, wrt bug #530652
21 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.5.ebuild:
Stable for ppc64, wrt bug #530652
20 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.5.ebuild:
Stable for ppc, wrt bug #530652
19 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.5.ebuild:
Stable for x86, wrt bug #530652
18 Feb 2015; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.5.ebuild:
Stable for amd64, wrt bug #530652
*mtdev-1.1.5 (23 May 2014)
23 May 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+mtdev-1.1.5.ebuild, -mtdev-1.1.3.ebuild:
Version bump. Remove old.
08 Oct 2013; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.4.ebuild:
Stable for x86, wrt bug #475480
07 Oct 2013; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.4.ebuild:
Stable for sparc, wrt bug #475480
06 Oct 2013; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.4.ebuild:
Stable for ia64, wrt bug #475480
05 Oct 2013; Markus Meier <maekke@gentoo.org> mtdev-1.1.4.ebuild:
arm stable, bug #475480
05 Oct 2013; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.4.ebuild:
Stable for alpha, wrt bug #475480
04 Oct 2013; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.4.ebuild:
Stable for ppc64, wrt bug #475480
03 Oct 2013; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.4.ebuild:
Stable for ppc, wrt bug #475480
02 Oct 2013; Jeroen Roovers <jer@gentoo.org> mtdev-1.1.4.ebuild:
Stable for HPPA (bug #475480).
01 Oct 2013; Naohiro Aota <naota@gentoo.org> -mtdev-1.1.2.ebuild,
mtdev-1.1.3.ebuild, mtdev-1.1.4.ebuild:
Update to EAPI=5. This update disable the silent rule. #486454; Drop old
ebuild.
29 Sep 2013; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.4.ebuild:
Stable for amd64, wrt bug #475480
*mtdev-1.1.4 (11 Aug 2013)
11 Aug 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+mtdev-1.1.4.ebuild:
Version bump, bug #480492.
04 Jan 2013; Jeroen Roovers <jer@gentoo.org> mtdev-1.1.3.ebuild:
Stable for HPPA (bug #440872).
01 Jan 2013; Raúl Porcel <armin76@gentoo.org> mtdev-1.1.3.ebuild:
sh stable wrt #440872
30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.3.ebuild:
Stable for alpha, wrt bug #440872
28 Dec 2012; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.3.ebuild:
Stable for sparc, wrt bug #440872
28 Dec 2012; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.3.ebuild:
Stable for ia64, wrt bug #440872
17 Dec 2012; Markus Meier <maekke@gentoo.org> mtdev-1.1.3.ebuild:
arm stable, bug #440872
08 Dec 2012; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.3.ebuild:
Stable for ppc64, wrt bug #440872
28 Nov 2012; Brent Baude <ranger@gentoo.org> mtdev-1.1.3.ebuild:
Marking mtdev-1.1.3 ppc stable for bug 440872
18 Nov 2012; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.3.ebuild:
Stable for x86, wrt bug #440872
16 Nov 2012; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.3.ebuild:
Stable for amd64, wrt bug #440872
*mtdev-1.1.3 (01 Sep 2012)
01 Sep 2012; Tomáš Chvátal <scarabeus@gentoo.org> +mtdev-1.1.3.ebuild:
Version bump to latest.
26 Aug 2012; Raúl Porcel <armin76@gentoo.org> mtdev-1.1.2.ebuild:
alpha/ia64/sh/sparc stable wrt #419473
12 Jul 2012; Brent Baude <ranger@gentoo.org> mtdev-1.1.2.ebuild:
Marking mtdev-1.1.2 ppc stable for bug 419473
12 Jul 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
mtdev-1.1.2.ebuild:
Depend on >=linux-headers-2.6.31, bug #426308.
11 Jul 2012; Brent Baude <ranger@gentoo.org> mtdev-1.1.2.ebuild:
Marking mtdev-1.1.2 ppc64 stable for bug 419473
28 Jun 2012; Naohiro Aota <naota@gentoo.org> mtdev-1.1.2.ebuild:
Move sys-kernel/linux-headers from RDEPEND to DEPEND. #423495
28 Jun 2012; Jeroen Roovers <jer@gentoo.org> mtdev-1.1.2.ebuild:
Stable for HPPA (bug #419473).
27 Jun 2012; Markus Meier <maekke@gentoo.org> mtdev-1.1.2.ebuild:
arm stable, bug #419473
24 Jun 2012; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.2.ebuild:
Stable for x86, wrt bug #419473
22 Jun 2012; Agostino Sarubbo <ago@gentoo.org> mtdev-1.1.2.ebuild:
Stable for amd64, wrt bug #419473
09 Jun 2012; Tomáš Chvátal <scarabeus@gentoo.org> -mtdev-1.1.0.ebuild,
mtdev-1.1.2.ebuild:
Keyword ppc and ppc64. Fixes bug#396669.
10 May 2012; Matt Turner <mattst88@gentoo.org> mtdev-1.1.2.ebuild:
Added ~mips, bug 396669.
*mtdev-1.1.2 (09 Mar 2012)
09 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> +mtdev-1.1.2.ebuild:
Version bump to latest.
15 Jan 2012; Raúl Porcel <armin76@gentoo.org> mtdev-1.1.0.ebuild:
Add ~alpha/~ia64/~sh/~sparc wrt #396669
12 Jan 2012; Markus Meier <maekke@gentoo.org> mtdev-1.1.0.ebuild:
add ~arm, bug #396669
11 Jan 2012; Jeroen Roovers <jer@gentoo.org> mtdev-1.1.0.ebuild:
Marked ~hppa (bug #396669).
*mtdev-1.1.0 (11 May 2011)
11 May 2011; Naohiro Aota <naota@gentoo.org> +mtdev-1.1.0.ebuild,
+metadata.xml:
New ebuild sys-libs/mtdev written by me. Multitouch Protocol Translation
Library. Dependency for bug #364033

View File

@ -1,7 +0,0 @@
DIST mtdev-1.1.4.tar.bz2 273780 SHA256 6b59b055ff22f2b91d4284187c2515826c338b81f6f33bd90f6bedc7c1fb9a38 SHA512 75da652e720cce9efcc23c2b72a0d8050096f054eff1338e02477816e107d469a7f9c5f4973146d38d939c3515ea39e926c70cf8f2ca0372c83c75506c61732b WHIRLPOOL 7cab0a478f342d019aae9103da36c18fdef137463d820f2f688fab18639e89a7f26b721a551b295df811262bd7d2466a9a405513b033c06abb9fd386a045fec3
DIST mtdev-1.1.5.tar.bz2 274162 SHA256 6677d5708a7948840de734d8b4675d5980d4561171c5a8e89e54adf7a13eba7f SHA512 78477a4af784e3f846df867f1428ffdc458e3ff33d465d45a84247a7e52f0e215cace397d72be64f6e641f07e0b97a930eff0e07fe9507e0138fb028a4037d6d WHIRLPOOL a0231e159b9a88ab2b46e72d64db1cfb9ae3734f8dc014c3be7bcde6e7c20b9587f0e0be83d5d37fddb5a1896f3419b58a80e97ab669993e6c01b2b1a19da1f2
EBUILD mtdev-1.1.4.ebuild 559 SHA256 e1d1715ce5b6b8f72fa4315afd1d72b03bf127aaefbc570fd153ff71a3c14cdd SHA512 cf2fd5d78ce40b66833c186a31f97ee1afe3a102a0666d760793a19b438cbd3531bd7be95418ad677b9a0c9c528cdc33044d1e78a1fdee7317e4c4e00b3ed367 WHIRLPOOL cea48a4e86544c7d457a19762ab99cccd72c845bea96d80d95ce304a69316895d3a3d2083ccd7eaff3fc0b2947f5572d7e30ce1195a46ec6c7e55f53c5ca9092
EBUILD mtdev-1.1.5.ebuild 566 SHA256 0f2b44e0eee353257983afbf7ce62a3eab9c08560e32a38ef6761d85b182096d SHA512 cc8eceadf7094c0643fdefb13850c13bd33ab4846d2570aac69bf5a01f786f7241772c2b688ab54519fb2861d862e8fe554fcbf3c845b4484ef20fc973a6b8a1 WHIRLPOOL 20abf001bcb090a873626fb5f907199a67fd2282b7c35907977bd25e50fd70c24ce4e8b89f9ea0eb8c46375ff73d21c176d691eb971c72c2408234778aa39073
MISC ChangeLog 2469 SHA256 3bb3bef0384b93a4e6b28feaa50f4774f1cc45de58808ad6a26ec56d5c28f1b4 SHA512 071f74f49a7ee1ed82d84f50b444627b3aa459bf7d154b38caeb1492fd5fb294d895b1bd319206e368cd23da49a1dc4909f6843533b957f821913d3dbe572efb WHIRLPOOL 51e3780de328271d3fdbe6c3ce9e4cc28d0c7518af92ecb700aa89c72a7456c4aae726783a3f89173bb8eebf6ddb0a687d66988dd1111f98b1321cf65b48f7f9
MISC ChangeLog-2015 5782 SHA256 c304abd5966a312ca2befba72c8b8f73aba412ed2b8236f28c36856c1c878895 SHA512 d72cefbc47e56199667fb92fa62ef8659706296f520b4f643d09385ee799a2269aa1992c5a7430597649d2a063adf33852af69b4f888f0556c8ed6422e97fce1 WHIRLPOOL 8939c56236b0126185c0d1e134a24552a08cebbc78a6e5db6a1a5c18321eb7ca284d47ff9613d27ef661fc13b1dbdc78ceb1fb5f3724c206beb68b672f63ec48
MISC metadata.xml 307 SHA256 f6c5cd688b462a6fcb86824dfb90dd5a7659a8f66c22f623d35fa398c1aac957 SHA512 5765f66767b8854edcb68efbed96d5ad33a6b9dee582020b742de2136c19050bde444ac16359cefbf7ee463c842eb2ab6c6a46564a034497683d158e2d841ad5 WHIRLPOOL f45e23899ad68fa29c6a378e0e625de6f08a66988d68d9cb29d976d0e2b9d44cb3e0571e812c75d0a8a67d466bebbed69d538f244da2b503f5fd464a23670f30

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>naota@gentoo.org</email>
</maintainer>
<maintainer type="project">
<email>x11@gentoo.org</email>
<name>X11</name>
</maintainer>
</pkgmetadata>

View File

@ -1,25 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="Multitouch Protocol Translation Library"
HOMEPAGE="http://bitmath.org/code/mtdev/"
SRC_URI="http://bitmath.org/code/mtdev/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
IUSE="static-libs"
DEPEND=">=sys-kernel/linux-headers-2.6.31"
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}

View File

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="Multitouch Protocol Translation Library"
HOMEPAGE="http://bitmath.org/code/mtdev/"
SRC_URI="http://bitmath.org/code/mtdev/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
IUSE="static-libs"
DEPEND=">=sys-kernel/linux-headers-2.6.31"
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}

View File

@ -1,88 +0,0 @@
# ChangeLog for sys-libs/newlib
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
# (auto-generated from git log)
*newlib-9999 (09 Aug 2015)
*newlib-2.2.0.20150423 (09 Aug 2015)
*newlib-2.2.0 (09 Aug 2015)
*newlib-2.1.0 (09 Aug 2015)
*newlib-2.0.0 (09 Aug 2015)
*newlib-1.20.0 (09 Aug 2015)
*newlib-1.19.0 (09 Aug 2015)
*newlib-1.18.0 (09 Aug 2015)
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org>
+files/newlib-1.20.0-arm-targets.patch,
+files/newlib-1.20.0-cris-install.patch,
+files/newlib-2.1.0-msp430-destdir.patch, +metadata.xml,
+newlib-1.18.0.ebuild, +newlib-1.19.0.ebuild, +newlib-1.20.0.ebuild,
+newlib-2.0.0.ebuild, +newlib-2.1.0.ebuild, +newlib-2.2.0.ebuild,
+newlib-2.2.0.20150423.ebuild, +newlib-9999.ebuild:
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
the bikeshed
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
Use https by default
Convert all URLs for sites supporting encrypted connections from http to
https
Signed-off-by: Justin Lecher <jlec@gentoo.org>
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
Revert DOCTYPE SYSTEM https changes in metadata.xml
repoman does not yet accept the https version.
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
Bug: https://bugs.gentoo.org/552720
*newlib-2.3.0.20160104 (04 Jan 2016)
04 Jan 2016; Mike Frysinger <vapier@gentoo.org>
+newlib-2.3.0.20160104.ebuild:
version bump to 2.3.0.20160104
18 Jan 2016; Mike Frysinger <vapier@gentoo.org> newlib-2.2.0.ebuild,
newlib-2.2.0.20150423.ebuild, newlib-2.3.0.20160104.ebuild,
newlib-9999.ebuild:
update git repo location #572250
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
Replace all herds with appropriate projects (GLEP 67)
Replace all uses of herd with appropriate project maintainers, or no
maintainers in case of herds requested to be disbanded.
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
Set appropriate maintainer types in metadata.xml (GLEP 67)

View File

@ -1,149 +0,0 @@
# ChangeLog for sys-libs/newlib
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/newlib/ChangeLog,v 1.32 2015/05/18 17:18:04 vapier Exp $
*newlib-2.2.0.20150423 (18 May 2015)
18 May 2015; Mike Frysinger <vapier@gentoo.org> +newlib-2.2.0.20150423.ebuild,
-newlib-2.2.0.20150225.ebuild:
Version bump.
18 May 2015; Mike Frysinger <vapier@gentoo.org> newlib-2.2.0.ebuild:
Add a blocker against older SLOTs to help with upgrades #497344 by Alex
Orange.
18 May 2015; Mike Frysinger <vapier@gentoo.org> newlib-2.2.0.ebuild:
Stabilize for all.
27 Feb 2015; Mike Frysinger <vapier@gentoo.org> newlib-1.18.0.ebuild,
newlib-1.19.0.ebuild, newlib-1.20.0.ebuild, newlib-2.0.0.ebuild,
newlib-2.1.0.ebuild, newlib-2.2.0.20150225.ebuild, newlib-2.2.0.ebuild,
newlib-9999.ebuild:
Use more readable CTARGET setup logic.
*newlib-2.2.0.20150225 (25 Feb 2015)
25 Feb 2015; Mike Frysinger <vapier@gentoo.org> +newlib-2.2.0.20150225.ebuild,
newlib-9999.ebuild:
Add support for new monthly snapshots.
*newlib-2.2.0 (17 Feb 2015)
17 Feb 2015; Mike Frysinger <vapier@gentoo.org> +newlib-2.2.0.ebuild:
Version bump.
31 Oct 2014; Mike Frysinger <vapier@gentoo.org>
+files/newlib-2.1.0-msp430-destdir.patch, newlib-2.1.0.ebuild:
Add DESTDIR fix from upstream for msp430.
02 Jan 2014; Mike Frysinger <vapier@gentoo.org> newlib-2.1.0.ebuild,
newlib-9999.ebuild:
Add support for epatch_user #489380 by Andrey Hippo.
*newlib-9999 (24 Dec 2013)
24 Dec 2013; Mike Frysinger <vapier@gentoo.org> +newlib-9999.ebuild:
Add live git ebuild by Andrey Hippo #489380.
*newlib-2.1.0 (24 Dec 2013)
24 Dec 2013; Mike Frysinger <vapier@gentoo.org> +newlib-2.1.0.ebuild:
Version bump.
24 Dec 2013; Mike Frysinger <vapier@gentoo.org> newlib-2.0.0.ebuild:
Stabilize for all.
09 Feb 2013; Mike Frysinger <vapier@gentoo.org> newlib-1.18.0.ebuild,
newlib-1.19.0.ebuild, newlib-1.20.0.ebuild:
Update SRC_URI to use sourceware.org #455152 by wbrana.
*newlib-2.0.0 (20 Dec 2012)
20 Dec 2012; Mike Frysinger <vapier@gentoo.org> +newlib-2.0.0.ebuild:
Version bump.
20 Nov 2012; Luca Barbato <lu_zero@gentoo.org> newlib-1.18.0.ebuild,
newlib-1.19.0.ebuild, newlib-1.20.0.ebuild:
Do not enable mathfp, it is considered unstable/broken code.
27 Apr 2012; Mike Frysinger <vapier@gentoo.org>
+files/newlib-1.20.0-arm-targets.patch, newlib-1.20.0.ebuild:
Add fix from upstream for arm* targets #413547 by Christopher Friedt.
23 Mar 2012; Mike Frysinger <vapier@gentoo.org> newlib-1.20.0.ebuild,
+files/newlib-1.20.0-cris-install.patch:
Fix install for cris targets. Update to EAPI 4.
*newlib-1.20.0 (14 Jan 2012)
14 Jan 2012; Mike Frysinger <vapier@gentoo.org> +newlib-1.20.0.ebuild:
Version bump.
*newlib-1.19.0 (12 Feb 2011)
12 Feb 2011; Mike Frysinger <vapier@gentoo.org> +newlib-1.19.0.ebuild:
Version bump.
12 Feb 2011; Mike Frysinger <vapier@gentoo.org> newlib-1.18.0.ebuild:
Do not allow newlib to install alongside glibc.
28 Feb 2010; Luca Barbato <lu_zero@gentoo.org> newlib-1.18.0.ebuild:
Make use of newlib-multithread as suggested by Olivier Huber
<oli.huber@gmail.com>
*newlib-1.18.0 (28 Feb 2010)
28 Feb 2010; Luca Barbato <lu_zero@gentoo.org> +newlib-1.18.0.ebuild:
New version
*newlib-1.16.0 (09 Jun 2008)
09 Jun 2008; Luca Barbato <lu_zero@gentoo.org> +newlib-1.16.0.ebuild:
New Version
*newlib-1.16.0_pre20071025 (25 Oct 2007)
25 Oct 2007; Luca Barbato <lu_zero@gentoo.org>
+newlib-1.16.0_pre20071025.ebuild:
New snapshot, avoid strip completely
19 Mar 2007; Luca Barbato <lu_zero@gentoo.org> newlib-1.15.0.ebuild:
Removed multilib useflag
14 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> newlib-1.15.0.ebuild:
Fix softfloat logic.
14 Feb 2007; Luca Barbato <lu_zero@gentoo.org> -newlib-20061203.ebuild:
Cleanup, thanks to rx Kaffee <rxKaffee@unixtriad.com> for pointing out in
bug #166707
14 Feb 2007; Luca Barbato <lu_zero@gentoo.org> -newlib-20061203.ebuild:
Cleanup, thanks to rx Kaffee <rxKaffee@unixtriad.com>
05 Feb 2007; Luca Barbato <lu_zero@gentoo.org> newlib-1.15.0.ebuild:
Make it in line with uclibc, as asked by Flameeyes
*newlib-1.15.0 (19 Dec 2006)
19 Dec 2006; Luca Barbato <lu_zero@gentoo.org> +newlib-1.15.0.ebuild:
New version
10 Dec 2006; Luca Barbato <lu_zero@gentoo.org> newlib-20061203.ebuild:
Avoid info collision, thanks to truedfx bug #157647
*newlib-20061203 (04 Dec 2006)
04 Dec 2006; Luca Barbato <lu_zero@gentoo.org> -newlib-20061113.ebuild,
+newlib-20061203.ebuild:
Updated snapshot, fixes for SPU support
*newlib-20061113 (13 Nov 2006)
13 Nov 2006; Luca Barbato <lu_zero@gentoo.org> +newlib-20061113.ebuild:
Snapshot with updated Cell support
*newlib-1.14.0 (21 Aug 2006)
21 Aug 2006; Luca Barbato <lu_zero@gentoo.org> +metadata.xml,
+newlib-1.14.0.ebuild:
Import from overlay

View File

@ -1,23 +0,0 @@
AUX newlib-1.20.0-arm-targets.patch 1275 SHA256 31329aba01fb4a79a705b3853cc22a966b6605df7c45b4c90f88fb23eee1be29 SHA512 89299b5d59eb0cb94e46cf9d2169bd4639091668f4c63bcf8755d4ee5e14e3149a9197f00c8db7a8c73ab75eed3fdbfddc1c558e7898280d11fc6212329f7b1c WHIRLPOOL b4a6a4ce71b61be244776becfbc1a695da46e4353d8a2ad430d59caf1cf85f444ac210e2ff22b3d5bdc3877de848dd3f80e4df5cfc2be89a90fa253379af282e
AUX newlib-1.20.0-cris-install.patch 370 SHA256 c178c63458b47698ed35ab0ced93d90e790281def29fc17adff56536b8373ae9 SHA512 402317e0657b083ba674d7ecb7cb50951be90339e327e4deead4baf68a7c1b561f340ae5091dd4cc292c69c53feef45fa75bd29906cd374aa3b3a02f3be9d6ab WHIRLPOOL 8755754e2de1f311daa25f72e2619ba2595e1130db1a7330970e7c6ef023c68f3a182380612503a108c1a323fedeb3a1b45eda72244eed6e151a1805d4131275
AUX newlib-2.1.0-msp430-destdir.patch 1271 SHA256 84128637a4d28c445d5e0203b7c22ac4ce8ced5a50e64ba969ffcda99dbc1f01 SHA512 094410eb6e259e05ee0ecdf7fc5db2a46af3f09cfb2ac6f3c96eb3d440c28eacfcd1c02e397240fd5e542cb97cf0ea1707ea08d4d1a85e6387769c83ad6df850 WHIRLPOOL de8aa40db0821fe515a9ee044f7c6d71026493372a16e4adb9268d2258f0fe8f153b81ef89b63283eab33857912433a3f36c7c7a976b3231675426c28114b4de
DIST newlib-1.18.0.tar.gz 13598301 SHA256 d608f22b0b2e7725d2fca13cac19f34bc652d9773acadae778db9881746cb071 SHA512 67b80060fd7bb9d035c004cfbcfbc66b8c8f176366c1ce11ae68dd31b8ee3e02b59ad37ceaf6f54da3c35eeee977c462ddaff4492a27425128ee5d5898840771 WHIRLPOOL 04908a55d1e992877668b80a8e5743f433ab96b7d9f8ab0b936ff4aa27862024490e2856acb88188d7f45ecb0d2197cbc22362f8aaf10ff07b9d89d15d258906
DIST newlib-1.19.0.tar.gz 14323667 SHA256 4f43807236b2274c220881ca69f7dc6aecc52f14bb32a6f03404d30780c25007 SHA512 041004947fbbf1a205f365512de52f9052060f35291827e38caa202c202a76e2f442bbd880abf8edd05317fe179b8c3cb94662b2688b58b3390136d6214ef6f6 WHIRLPOOL e24575945c4d2338694fb00230fa82d5081ba8bb8ddb84d68c1d9eaac778e229d2c56356b0ba5f962480478aeb39df1b4f301f60becb48e9feea923e6b57ceea
DIST newlib-1.20.0.tar.gz 14571004 SHA256 c644b2847244278c57bec2ddda69d8fab5a7c767f3b9af69aa7aa3da823ff692 SHA512 2abf1d30980e460c4d6ffe4d1682e38403d056048e00675362256731e57fe6759d01e85bcba84258d211941926e13bf3c632ff3824931a844c8b2596e795451f WHIRLPOOL be7996e493b0f2be6992c579796ea9d6968ed3b0a4f5d9c58e1c8b255a1060df18e6ae3d7ecf3a291c5859a6c04bdd39296e9ee5811eb59e2e7646da27089f66
DIST newlib-2.0.0.tar.gz 15868470 SHA256 49c29e9129325e7c3b221aa829743ddcd796d024440e47c80fc0d6769af72d8a SHA512 539cc6e3854a52a7871a822e35563ff0dff7124b667fd9471150b9c56f556c0bcc526dfb5503aba5160a5fb61955a3d0876df639374727d2a444b08f90dbf233 WHIRLPOOL f9fbd87e36c1bfc94cfabfdcfa3a347d611e275eafa9167f9c4b5adea6b1833b090960ba37503210146aec4060dc360f43c31dab5cb8def2d51db33fac935640
DIST newlib-2.1.0.tar.gz 16199705 SHA256 3e4d5ab9f0508942b6231b8ade4f8e5048cf92c96ed574c2bd6bd3320a599a48 SHA512 6770864f9307abb2401a4e48f286845d3a4afc30b2ac987da4b964a5485cc3823b32d06a0abf61528e93c4ad8a3a0aa3cc1ecd3b033850e6b2bde6d9bbc9a547 WHIRLPOOL 6faba54a72c6242c694f43a7f2e62d23584fec658818201ee58e1d2954d45b58a5f4effd63f5274b99748ed7730db76e0cf2aa1ecfbdf7001f10929d7db6353c
DIST newlib-2.2.0.20150423.tar.gz 17485660 SHA256 b1ff3642b246adc6ee546884cb9ea3b0913f17394cbf7ca4d3b82544fef759f7 SHA512 0eecaf5dbf6caf0e0fca3697dfd70e5f60ecbc0a3365852586bc40a32bd535ef0936fa7fc68fceda3426cdb9b6259de12ed00303cadeea09d95b5f1a07022bae WHIRLPOOL 37d78cf24a072819bcf098e3b384cf6fa3a11ded461d6fb12e8635169fcb8b638400622878ad947df55236957a6ce3884ad46f02f7351414842eb048ceed7d73
DIST newlib-2.2.0.tar.gz 16521910 SHA256 f8add263b0737591aff451b12a00c262c2efac4fa87d741fa1c318fc3bb335be SHA512 ab9161f16845367c823b6709e3c5708969f29f05c77edb1cf969ff4202f358648f1e55080974599dcefed2fbced4694dc73748596e76c1aa37c50cddff6e4be3 WHIRLPOOL 8dfc23f93d774c5092d64d1482c3ecc6e3ba35395822bb1d52f5e3b86f644ee803927bff133883926f3e019cfd5d9f04ffe0dcaac20bdf144c542ba1dc3edff9
DIST newlib-2.3.0.20160104.tar.gz 17674117 SHA256 c92a0e02904bd4fbe1dd416ed94e786c66afbaeae484e4c26be8bb7c7c1e4cd1 SHA512 d83ce298b1b72eabf92e4ec14af3afdf3122e34aff5e320295a398df077235a78aa87148895b441a4f7de3047815e7ce13ea06a06135dd86b69a200236514293 WHIRLPOOL 41ab57955b886dad8988bd06a18c1b5bbf21c7b554410711c17141bbc12d70af2f6ce6f9d3503c11180d46b42bcf305c6347ea58252d24459dc02c568aeb8497
EBUILD newlib-1.18.0.ebuild 1731 SHA256 1407dded51bb7278087ed64495ca60a891b43bf0af0bbeac2d02f1fb55257327 SHA512 6235a9cc6753c004328cc8fe105ba020a4eb867cf9b23df131a37685b0bf4076426cf52477f551ae070ddd8b70ab716cca60519ce5b74ca90d3f6a6451ecaf68 WHIRLPOOL ca49c430c18a130fb1f2f2cadec2792df1975cd1b521dd3274c01ff59c9171d017cdafae10850508e50e3cec139d8c372cd497596962b2b028382e3fe7ff9fdf
EBUILD newlib-1.19.0.ebuild 1731 SHA256 1407dded51bb7278087ed64495ca60a891b43bf0af0bbeac2d02f1fb55257327 SHA512 6235a9cc6753c004328cc8fe105ba020a4eb867cf9b23df131a37685b0bf4076426cf52477f551ae070ddd8b70ab716cca60519ce5b74ca90d3f6a6451ecaf68 WHIRLPOOL ca49c430c18a130fb1f2f2cadec2792df1975cd1b521dd3274c01ff59c9171d017cdafae10850508e50e3cec139d8c372cd497596962b2b028382e3fe7ff9fdf
EBUILD newlib-1.20.0.ebuild 1814 SHA256 6f066ff306d0d4aa078d9805e796fef80c24d5daa78d2f9a753accdf57a8c5d3 SHA512 804350aa395859dc537d678254915ceb32a9128647c0b3f2233a8a492ea6862dbed4d8ed1d07076cd97874fb5bb9469a3577c39439ac8e7e0c1122506995ab04 WHIRLPOOL 6984c111a7b34896a564820c218003de22df649937139137492248b0a6bc7b9d0948e41dbb077e545bdafc82a76e9daa80af785d35516d66677351a19e0aa1ba
EBUILD newlib-2.0.0.ebuild 1622 SHA256 7ac189e577ea1ed3e30beb9071116c0443c2a843266ee9402766bc7c36cfa63e SHA512 b06a119b24ee76bb5decb2c413a10c43068f651059ba5ad48d5c5485decb666321e2d74e8f0106b50e3e27320d453aa3eceb5dd134d06649aa58660c2af08885 WHIRLPOOL b50c9f19637141cd9b624f9ee79820ddbe1fc427cfe1e7974e7bea7c13e0e03c678c0cc75e48c7caf3d680ee44d6eb789fc8c2f0c846b2dcb8dbfc6c8a13aa80
EBUILD newlib-2.1.0.ebuild 1717 SHA256 0a23e2b4770b9edb75032f609d20679970b05d7e906b32be0c649d002f70b5ee SHA512 a91410bf9635c2f8d35ffd982e188aa2b771d5d99e93e9d74e565ebdb7bfce66d3090bea18cebe013355cf675b71bada7f3bcb058f9e2ce9853fd7a68a4ffd7a WHIRLPOOL 0746ac2b52e7cb81ca951acd19e56d9897821c5e71bb2839de99622d8a29f97b1b9bed33c135fff6ff4ac43195168c9a43b0ace95b875b1033e53200a15be38a
EBUILD newlib-2.2.0.20150423.ebuild 1834 SHA256 6131bf8354249ebc60c4b477db23c8046cf608e165e4e7c862b8b2acbbb67f3a SHA512 63da4da63b7a1cb7bef102b76a1b6f321fa9bf5a856ae7383428bc12c1c0a1296616c677440c4dd12125001195ddf0816b421e7a18d95c7b4159fe8f21e545e0 WHIRLPOOL 2ca78a602bda300a8f50f0f5f9282e9f7630efb2911c3b83e6bf337e156964766c33fdf815a838657b8f0cb9c4f63633ca55d35a3f3a7bb15b63752dad087e80
EBUILD newlib-2.2.0.ebuild 1852 SHA256 e1c9ac00c7c9a93d36e762da10f66313a1f7a0046e94d3e389a943384873177a SHA512 4219a870a0d24ce916075b3e0943ff8f0148d3eaeeafaa89b9fb3b6de037051dfa48dd283e2f98e7e2e7f86f24969b20614e6cf04fbb34921b884d44fb41abf9 WHIRLPOOL 5a98983c01b48f0e6d959dd9a439e115063a32028df5a58d97fdb26f9ea603156f6feff99aed2e792b9e833eeb6f555f8f305a19be673b59bf1f2b50b019ad61
EBUILD newlib-2.3.0.20160104.ebuild 1836 SHA256 71b82342c3ed9881a5aaac957914246ae13fee2d8f58bd7dd3b830dd20b961e7 SHA512 aefefa0ee166579acfd95105a4f63171e61f59325e2a793ea09dd05b74d19bafe6fd40b7e3f57f5bd5bf7b3b8a348631b7ca40422bb31a0182863ad92138ca98 WHIRLPOOL b79cd44430ad1519f93156f4b152fc3aeeb9fbf0be23999112022f07ba00232c07a640dfcbf70caf396322f1ee4dc764b6823f7c3decf620b332dc3010e108b0
EBUILD newlib-9999.ebuild 1834 SHA256 6131bf8354249ebc60c4b477db23c8046cf608e165e4e7c862b8b2acbbb67f3a SHA512 63da4da63b7a1cb7bef102b76a1b6f321fa9bf5a856ae7383428bc12c1c0a1296616c677440c4dd12125001195ddf0816b421e7a18d95c7b4159fe8f21e545e0 WHIRLPOOL 2ca78a602bda300a8f50f0f5f9282e9f7630efb2911c3b83e6bf337e156964766c33fdf815a838657b8f0cb9c4f63633ca55d35a3f3a7bb15b63752dad087e80
MISC ChangeLog 3275 SHA256 0d38ea422373b00c582981d9a359d64caddd36e907a88788ccd93d8d03282703 SHA512 4068c14e2f237345ed092e9ac6d782e3b619bbcde3398ab84a35afd9be31067d4c59e4cb34890aeca54a54d790c669ee53a6e858fc69a30f081cd14df52c9e7c WHIRLPOOL d29bb09552fa647a4601e69109d0a4afa1e45eb64d2bd657a9ea9178631c171b877b4f0936874dd0302add2a2f7fc04c2566c8a65fe307116cbaf6a461c8f7aa
MISC ChangeLog-2015 4945 SHA256 11f5d12456430577aa00981110408f04fa4f5c23d56cd61876f7e3988aa89347 SHA512 7270853c28263aba68292ce332d52d63df9f395e5981df673bdc2b016ec3457aac1eb7a56b52e8d1890dc3196d831ea836bd368ae0f8d93e13734fa4e397f2f0 WHIRLPOOL 2b785f7603e12bc149b306e95bf9f96311dbde252fab8c4b5f2c71441643945c818d80494393a2d99540cb541271578cf6181529eba70d547d33efc6c4b06f16
MISC metadata.xml 330 SHA256 0d33786b6df216eaeff2ac74b7a0c68041b294190829c9f614aaad73551709d5 SHA512 cf10bd2100eec996bcd2668a2e8fda67321f6969c59b3969ca1a62bc814113a48d475dbdcae3f4d6ac2186e770ec61d5c8c90690de921ea05696dc8924ec50b5 WHIRLPOOL f1ff858e5271f1ee5e383588c21f763fe959953205ca4b416240584b4fdd36f8107ddf54dbfb6c6366c22c24ae7806b8edf050a7336b43fb5c2ea30aba9441ed

View File

@ -1,55 +0,0 @@
https://bugs.gentoo.org/413547
From 3b98b99eaa23f242b984af8cbf4a0e707bc7eae8 Mon Sep 17 00:00:00 2001
From: Corinna Vinschen <corinna@vinschen.de>
Date: Thu, 23 Feb 2012 09:30:17 +0000
Subject: [PATCH] * configure.host: Accept "arm*" host spec instead of
just "arm".
---
newlib/ChangeLog | 4 ++++
newlib/configure.host | 8 ++++----
2 files changed, 8 insertions(+), 4 deletions(-)
+2012-02-23 Dan Egnor <egnor@ofb.net>
* configure.host: Accept "arm*" host spec instead of just "arm".
diff --git a/newlib/configure.host b/newlib/configure.host
index a6673af..dc44e80 100644
--- a/newlib/configure.host
+++ b/newlib/configure.host
@@ -98,7 +98,7 @@ case "${host_cpu}" in
arc)
machine_dir=
;;
- arm)
+ arm*)
machine_dir=arm
;;
avr*)
@@ -367,7 +367,7 @@ case "${host}" in
arc-*-*)
sys_dir=arc
;;
- arm-*-*)
+ arm*-*-*)
sys_dir=arm
if [ "x${newlib_may_supply_syscalls}" = "xno" ] ; then
have_crt0="no"
@@ -560,10 +560,10 @@ case "${host}" in
arc-*-*)
syscall_dir=syscalls
;;
- arm-*-pe)
+ arm*-*-pe)
syscall_dir=syscalls
;;
- arm-*-*)
+ arm*-*-*)
syscall_dir=syscalls
# If newlib is supplying syscalls, select which debug protocol is being used.
# ARM_RDP_MONITOR selects the Demon monitor.
--
1.7.8.5

View File

@ -1,13 +0,0 @@
sent upstream already
--- libgloss/cris/Makefile.in
+++ libgloss/cris/Makefile.in
@@ -228,7 +228,7 @@ install-lin:
*) \
set -e; \
for x in ${LIN_BSP} ${LIN_SCRIPTS} ${LIN_EXTRA}; do \
- ${INSTALL_DATA} $$x ${tooldir}/lib${MULTISUBDIR}/$$x; \
+ ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; \
done;; \
esac

View File

@ -1,41 +0,0 @@
From 0a7009c61811b4451ff6cccda24f42ab07142603 Mon Sep 17 00:00:00 2001
From: DJ Delorie <dj@redhat.com>
Date: Thu, 23 Oct 2014 01:49:45 +0000
Subject: [PATCH] 2014-10-22 Tim Harder <radhermit@gmail.com> *
msp430/Makefile.in: respect DESTDIR during install
---
libgloss/ChangeLog | 4 ++++
libgloss/msp430/Makefile.in | 6 ++++--
2 files changed, 8 insertions(+), 2 deletions(-)
2014-10-22 Tim Harder <radhermit@gmail.com>
* msp430/Makefile.in: respect DESTDIR during install
diff --git a/libgloss/msp430/Makefile.in b/libgloss/msp430/Makefile.in
index d72051d..b9f5a6a 100644
--- a/libgloss/msp430/Makefile.in
+++ b/libgloss/msp430/Makefile.in
@@ -12,6 +12,7 @@
# Makefile for libgloss/msp430.
+DESTDIR =
VPATH = @srcdir@
srcdir = @srcdir@
objdir = .
@@ -138,11 +139,11 @@
install: $(CRT) $(SIM_BSP) $(LIBNOSYS) $(LIB_CRT) $(SCRIPTS)
for c in $(CRT) $(SIM_BSP) $(LIBNOSYS) $(LIB_CRT); do \
- $(INSTALL_DATA) $$c $(tooldir)/lib${MULTISUBDIR}/$$c ;\
+ $(INSTALL_DATA) $$c $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$$c ;\
done
for c in $(SCRIPTS); do \
b=`basename $$c`; \
- $(INSTALL_DATA) $$c $(tooldir)/lib${MULTISUBDIR}/$$b ;\
+ $(INSTALL_DATA) $$c $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$$b ;\
done
clean mostlyclean:

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lu_zero@gentoo.org</email>
</maintainer>
<maintainer type="project">
<email>toolchain@gentoo.org</email>
<name>Gentoo Toolchain Project</name>
</maintainer>
</pkgmetadata>

View File

@ -1,72 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils flag-o-matic toolchain-funcs
export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
fi
fi
DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/"
SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
LICENSE="NEWLIB LIBGLOSS GPL-2"
[[ ${CTARGET} != ${CHOST} ]] \
&& SLOT="${CTARGET}" \
|| SLOT="0"
KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"
NEWLIBBUILD="${WORKDIR}/build"
pkg_setup() {
# Reject newlib-on-glibc type installs
if [[ ${CTARGET} == ${CHOST} ]] ; then
case ${CHOST} in
*-newlib|*-elf) ;;
*) die "Use sys-devel/crossdev to build a newlib toolchain" ;;
esac
fi
}
src_unpack() {
unpack ${A}
mkdir -p "${NEWLIBBUILD}"
}
src_compile() {
# we should fix this ...
unset LDFLAGS
CHOST=${CTARGET} strip-unsupported-flags
local myconf=""
[[ ${CTARGET} == "spu" ]] \
&& myconf="${myconf} --disable-newlib-multithread" \
|| myconf="${myconf} $(use_enable threads newlib-multithread)"
cd "${NEWLIBBUILD}"
ECONF_SOURCE=${S} \
econf \
$(use_enable unicode newlib-mb) \
$(use_enable nls) \
${myconf} \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
cd "${NEWLIBBUILD}"
emake -j1 DESTDIR="${D}" install || die
# env -uRESTRICT CHOST=${CTARGET} prepallstrip
# minor hack to keep things clean
rm -fR "${D}"/usr/share/info
rm -fR "${D}"/usr/info
}

View File

@ -1,72 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils flag-o-matic toolchain-funcs
export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
fi
fi
DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/"
SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
LICENSE="NEWLIB LIBGLOSS GPL-2"
[[ ${CTARGET} != ${CHOST} ]] \
&& SLOT="${CTARGET}" \
|| SLOT="0"
KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"
NEWLIBBUILD="${WORKDIR}/build"
pkg_setup() {
# Reject newlib-on-glibc type installs
if [[ ${CTARGET} == ${CHOST} ]] ; then
case ${CHOST} in
*-newlib|*-elf) ;;
*) die "Use sys-devel/crossdev to build a newlib toolchain" ;;
esac
fi
}
src_unpack() {
unpack ${A}
mkdir -p "${NEWLIBBUILD}"
}
src_compile() {
# we should fix this ...
unset LDFLAGS
CHOST=${CTARGET} strip-unsupported-flags
local myconf=""
[[ ${CTARGET} == "spu" ]] \
&& myconf="${myconf} --disable-newlib-multithread" \
|| myconf="${myconf} $(use_enable threads newlib-multithread)"
cd "${NEWLIBBUILD}"
ECONF_SOURCE=${S} \
econf \
$(use_enable unicode newlib-mb) \
$(use_enable nls) \
${myconf} \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
cd "${NEWLIBBUILD}"
emake -j1 DESTDIR="${D}" install || die
# env -uRESTRICT CHOST=${CTARGET} prepallstrip
# minor hack to keep things clean
rm -fR "${D}"/usr/share/info
rm -fR "${D}"/usr/info
}

View File

@ -1,77 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit eutils flag-o-matic toolchain-funcs
export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
fi
fi
DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/"
SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
LICENSE="NEWLIB LIBGLOSS GPL-2"
[[ ${CTARGET} != ${CHOST} ]] \
&& SLOT="${CTARGET}" \
|| SLOT="0"
KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"
NEWLIBBUILD="${WORKDIR}/build"
pkg_setup() {
# Reject newlib-on-glibc type installs
if [[ ${CTARGET} == ${CHOST} ]] ; then
case ${CHOST} in
*-newlib|*-elf) ;;
*) die "Use sys-devel/crossdev to build a newlib toolchain" ;;
esac
fi
}
src_prepare() {
epatch "${FILESDIR}"/${P}-cris-install.patch
epatch "${FILESDIR}"/${P}-arm-targets.patch #413547
}
src_configure() {
# we should fix this ...
unset LDFLAGS
CHOST=${CTARGET} strip-unsupported-flags
local myconf=""
[[ ${CTARGET} == "spu" ]] \
&& myconf="${myconf} --disable-newlib-multithread" \
|| myconf="${myconf} $(use_enable threads newlib-multithread)"
mkdir -p "${NEWLIBBUILD}"
cd "${NEWLIBBUILD}"
ECONF_SOURCE=${S} \
econf \
$(use_enable unicode newlib-mb) \
$(use_enable nls) \
${myconf}
}
src_compile() {
emake -C "${NEWLIBBUILD}"
}
src_install() {
cd "${NEWLIBBUILD}"
emake -j1 DESTDIR="${D}" install
# env -uRESTRICT CHOST=${CTARGET} prepallstrip
# minor hack to keep things clean
rm -fR "${D}"/usr/share/info
rm -fR "${D}"/usr/info
}

View File

@ -1,70 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit flag-o-matic toolchain-funcs
export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
fi
fi
DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/"
SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
LICENSE="NEWLIB LIBGLOSS GPL-2"
SLOT="0"
KEYWORDS="-* arm hppa m68k ~mips ppc ppc64 sh sparc x86"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"
NEWLIBBUILD="${WORKDIR}/build"
pkg_setup() {
# Reject newlib-on-glibc type installs
if [[ ${CTARGET} == ${CHOST} ]] ; then
case ${CHOST} in
*-newlib|*-elf) ;;
*) die "Use sys-devel/crossdev to build a newlib toolchain" ;;
esac
fi
}
src_configure() {
# we should fix this ...
unset LDFLAGS
CHOST=${CTARGET} strip-unsupported-flags
local myconf=""
[[ ${CTARGET} == "spu" ]] \
&& myconf="${myconf} --disable-newlib-multithread" \
|| myconf="${myconf} $(use_enable threads newlib-multithread)"
mkdir -p "${NEWLIBBUILD}"
cd "${NEWLIBBUILD}"
ECONF_SOURCE=${S} \
econf \
$(use_enable unicode newlib-mb) \
$(use_enable nls) \
${myconf}
}
src_compile() {
emake -C "${NEWLIBBUILD}"
}
src_install() {
cd "${NEWLIBBUILD}"
emake -j1 DESTDIR="${D}" install
# env -uRESTRICT CHOST=${CTARGET} prepallstrip
# minor hack to keep things clean
rm -fR "${D}"/usr/share/info
rm -fR "${D}"/usr/info
}

View File

@ -1,75 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit flag-o-matic toolchain-funcs eutils
export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
fi
fi
DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/"
SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
LICENSE="NEWLIB LIBGLOSS GPL-2"
SLOT="0"
KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"
NEWLIBBUILD="${WORKDIR}/build"
pkg_setup() {
# Reject newlib-on-glibc type installs
if [[ ${CTARGET} == ${CHOST} ]] ; then
case ${CHOST} in
*-newlib|*-elf) ;;
*) die "Use sys-devel/crossdev to build a newlib toolchain" ;;
esac
fi
}
src_prepare() {
epatch "${FILESDIR}"/${P}-msp430-destdir.patch
epatch_user
}
src_configure() {
# we should fix this ...
unset LDFLAGS
CHOST=${CTARGET} strip-unsupported-flags
local myconf=""
[[ ${CTARGET} == "spu" ]] \
&& myconf="${myconf} --disable-newlib-multithread" \
|| myconf="${myconf} $(use_enable threads newlib-multithread)"
mkdir -p "${NEWLIBBUILD}"
cd "${NEWLIBBUILD}"
ECONF_SOURCE=${S} \
econf \
$(use_enable unicode newlib-mb) \
$(use_enable nls) \
${myconf}
}
src_compile() {
emake -C "${NEWLIBBUILD}"
}
src_install() {
cd "${NEWLIBBUILD}"
emake -j1 DESTDIR="${D}" install
# env -uRESTRICT CHOST=${CTARGET} prepallstrip
# minor hack to keep things clean
rm -fR "${D}"/usr/share/info
rm -fR "${D}"/usr/info
}

View File

@ -1,82 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit flag-o-matic toolchain-funcs eutils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://sourceware.org/git/newlib-cygwin.git"
inherit git-r3
else
SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
if [[ ${PV} != *.201[5-9]???? ]] ; then
KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
fi
fi
export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
fi
fi
DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/"
LICENSE="NEWLIB LIBGLOSS GPL-2"
SLOT="0"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"
NEWLIBBUILD="${WORKDIR}/build"
pkg_setup() {
# Reject newlib-on-glibc type installs
if [[ ${CTARGET} == ${CHOST} ]] ; then
case ${CHOST} in
*-newlib|*-elf) ;;
*) die "Use sys-devel/crossdev to build a newlib toolchain" ;;
esac
fi
}
src_prepare() {
epatch_user
}
src_configure() {
# we should fix this ...
unset LDFLAGS
CHOST=${CTARGET} strip-unsupported-flags
local myconf=""
[[ ${CTARGET} == "spu" ]] \
&& myconf="${myconf} --disable-newlib-multithread" \
|| myconf="${myconf} $(use_enable threads newlib-multithread)"
mkdir -p "${NEWLIBBUILD}"
cd "${NEWLIBBUILD}"
ECONF_SOURCE=${S} \
econf \
$(use_enable unicode newlib-mb) \
$(use_enable nls) \
${myconf}
}
src_compile() {
emake -C "${NEWLIBBUILD}"
}
src_install() {
cd "${NEWLIBBUILD}"
emake -j1 DESTDIR="${D}" install
# env -uRESTRICT CHOST=${CTARGET} prepallstrip
# minor hack to keep things clean
rm -fR "${D}"/usr/share/info
rm -fR "${D}"/usr/info
}

View File

@ -1,83 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit flag-o-matic toolchain-funcs eutils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://sourceware.org/git/newlib-cygwin.git"
inherit git-r3
else
SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
KEYWORDS="-* arm hppa m68k ~mips ppc ppc64 sh sparc x86"
fi
export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
fi
fi
DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/"
LICENSE="NEWLIB LIBGLOSS GPL-2"
SLOT="0"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"
# Handle the SLOT changes. #497344
RDEPEND="!<${CATEGORY}/${PN}-2.1.0"
NEWLIBBUILD="${WORKDIR}/build"
pkg_setup() {
# Reject newlib-on-glibc type installs
if [[ ${CTARGET} == ${CHOST} ]] ; then
case ${CHOST} in
*-newlib|*-elf) ;;
*) die "Use sys-devel/crossdev to build a newlib toolchain" ;;
esac
fi
}
src_prepare() {
epatch_user
}
src_configure() {
# we should fix this ...
unset LDFLAGS
CHOST=${CTARGET} strip-unsupported-flags
local myconf=""
[[ ${CTARGET} == "spu" ]] \
&& myconf="${myconf} --disable-newlib-multithread" \
|| myconf="${myconf} $(use_enable threads newlib-multithread)"
mkdir -p "${NEWLIBBUILD}"
cd "${NEWLIBBUILD}"
ECONF_SOURCE=${S} \
econf \
$(use_enable unicode newlib-mb) \
$(use_enable nls) \
${myconf}
}
src_compile() {
emake -C "${NEWLIBBUILD}"
}
src_install() {
cd "${NEWLIBBUILD}"
emake -j1 DESTDIR="${D}" install
# env -uRESTRICT CHOST=${CTARGET} prepallstrip
# minor hack to keep things clean
rm -fR "${D}"/usr/share/info
rm -fR "${D}"/usr/info
}

View File

@ -1,82 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit flag-o-matic toolchain-funcs eutils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://sourceware.org/git/newlib-cygwin.git"
inherit git-r3
else
SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
# if [[ ${PV} != *.201[5-9]???? ]] ; then
KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
# fi
fi
export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
fi
fi
DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/"
LICENSE="NEWLIB LIBGLOSS GPL-2"
SLOT="0"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"
NEWLIBBUILD="${WORKDIR}/build"
pkg_setup() {
# Reject newlib-on-glibc type installs
if [[ ${CTARGET} == ${CHOST} ]] ; then
case ${CHOST} in
*-newlib|*-elf) ;;
*) die "Use sys-devel/crossdev to build a newlib toolchain" ;;
esac
fi
}
src_prepare() {
epatch_user
}
src_configure() {
# we should fix this ...
unset LDFLAGS
CHOST=${CTARGET} strip-unsupported-flags
local myconf=""
[[ ${CTARGET} == "spu" ]] \
&& myconf="${myconf} --disable-newlib-multithread" \
|| myconf="${myconf} $(use_enable threads newlib-multithread)"
mkdir -p "${NEWLIBBUILD}"
cd "${NEWLIBBUILD}"
ECONF_SOURCE=${S} \
econf \
$(use_enable unicode newlib-mb) \
$(use_enable nls) \
${myconf}
}
src_compile() {
emake -C "${NEWLIBBUILD}"
}
src_install() {
cd "${NEWLIBBUILD}"
emake -j1 DESTDIR="${D}" install
# env -uRESTRICT CHOST=${CTARGET} prepallstrip
# minor hack to keep things clean
rm -fR "${D}"/usr/share/info
rm -fR "${D}"/usr/info
}

View File

@ -1,82 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit flag-o-matic toolchain-funcs eutils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://sourceware.org/git/newlib-cygwin.git"
inherit git-r3
else
SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz"
if [[ ${PV} != *.201[5-9]???? ]] ; then
KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
fi
fi
export CBUILD=${CBUILD:-${CHOST}}
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
fi
fi
DESCRIPTION="Newlib is a C library intended for use on embedded systems"
HOMEPAGE="http://sourceware.org/newlib/"
LICENSE="NEWLIB LIBGLOSS GPL-2"
SLOT="0"
IUSE="nls threads unicode crosscompile_opts_headers-only"
RESTRICT="strip"
NEWLIBBUILD="${WORKDIR}/build"
pkg_setup() {
# Reject newlib-on-glibc type installs
if [[ ${CTARGET} == ${CHOST} ]] ; then
case ${CHOST} in
*-newlib|*-elf) ;;
*) die "Use sys-devel/crossdev to build a newlib toolchain" ;;
esac
fi
}
src_prepare() {
epatch_user
}
src_configure() {
# we should fix this ...
unset LDFLAGS
CHOST=${CTARGET} strip-unsupported-flags
local myconf=""
[[ ${CTARGET} == "spu" ]] \
&& myconf="${myconf} --disable-newlib-multithread" \
|| myconf="${myconf} $(use_enable threads newlib-multithread)"
mkdir -p "${NEWLIBBUILD}"
cd "${NEWLIBBUILD}"
ECONF_SOURCE=${S} \
econf \
$(use_enable unicode newlib-mb) \
$(use_enable nls) \
${myconf}
}
src_compile() {
emake -C "${NEWLIBBUILD}"
}
src_install() {
cd "${NEWLIBBUILD}"
emake -j1 DESTDIR="${D}" install
# env -uRESTRICT CHOST=${CTARGET} prepallstrip
# minor hack to keep things clean
rm -fR "${D}"/usr/share/info
rm -fR "${D}"/usr/info
}

View File

@ -1,69 +0,0 @@
# ChangeLog for sys-libs/slang
# Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
# (auto-generated from git log)
*slang-2.3.0 (09 Aug 2015)
*slang-2.2.4-r1 (09 Aug 2015)
*slang-2.2.4 (09 Aug 2015)
09 Aug 2015; Robin H. Johnson <robbat2@gentoo.org>
+files/slang-2.1.3-uclibc.patch, +files/slang-2.2.3-slsh-libs.patch,
+files/slang-2.2.4-memset.patch, +metadata.xml, +slang-2.2.4.ebuild,
+slang-2.2.4-r1.ebuild, +slang-2.3.0.ebuild:
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration
tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this
project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo
developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve
cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014
work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on
the bikeshed
24 Aug 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
Use https by default
Convert all URLs for sites supporting encrypted connections from http to
https
Signed-off-by: Justin Lecher <jlec@gentoo.org>
24 Aug 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
Revert DOCTYPE SYSTEM https changes in metadata.xml
repoman does not yet accept the https version.
This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450.
Bug: https://bugs.gentoo.org/552720
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
Replace all herds with appropriate projects (GLEP 67)
Replace all uses of herd with appropriate project maintainers, or no
maintainers in case of herds requested to be disbanded.
24 Jan 2016; Michał Górny <mgorny@gentoo.org> metadata.xml:
Set appropriate maintainer types in metadata.xml (GLEP 67)

View File

@ -1,525 +0,0 @@
# ChangeLog for sys-libs/slang
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/slang/ChangeLog,v 1.147 2015/07/24 14:41:33 polynomial-c Exp $
*slang-2.3.0 (24 Jul 2015)
24 Jul 2015; Lars Wendler <polynomial-c@gentoo.org> +slang-2.3.0.ebuild:
Version bump (bug #524744).
03 Mar 2015; Yixun Lan <dlan@gentoo.org> slang-2.2.4-r1.ebuild:
add arm64 support, tested on A53 board
21 Sep 2014; Markus Meier <maekke@gentoo.org> slang-2.2.4-r1.ebuild:
arm stable, bug #522434
15 Sep 2014; Agostino Sarubbo <ago@gentoo.org> slang-2.2.4-r1.ebuild:
Stable for sparc, wrt bug #512012
25 Aug 2014; Agostino Sarubbo <ago@gentoo.org> slang-2.2.4-r1.ebuild:
Stable for alpha, wrt bug #512012
23 Aug 2014; Agostino Sarubbo <ago@gentoo.org> slang-2.2.4-r1.ebuild:
Stable for ia64, wrt bug #512012
21 Aug 2014; Agostino Sarubbo <ago@gentoo.org> slang-2.2.4-r1.ebuild:
Stable for ppc64, wrt bug #512012
28 Jul 2014; Agostino Sarubbo <ago@gentoo.org> slang-2.2.4-r1.ebuild:
Stable for ppc, wrt bug #512012
18 Jul 2014; Pacho Ramos <pacho@gentoo.org> slang-2.2.4-r1.ebuild:
amd64/x86 stable, bug #513802
06 Jul 2014; Jeroen Roovers <jer@gentoo.org> slang-2.2.4-r1.ebuild:
Stable for HPPA (bug #516308).
18 Jun 2014; Michał Górny <mgorny@gentoo.org> slang-2.2.4-r1.ebuild:
Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
#513718.
18 Apr 2014; Julian Ospald <hasufell@gentoo.org> slang-2.2.4-r1.ebuild:
update baselibs blocker version
*slang-2.2.4-r1 (18 Apr 2014)
18 Apr 2014; Julian Ospald <hasufell@gentoo.org> +slang-2.2.4-r1.ebuild:
add multilib support wrt #496586, patch by Michael Mair-Keimberger
19 Nov 2013; Sergei Trofimovich <slyfox@gentoo.org>
+files/slang-2.2.4-memset.patch, slang-2.2.4.ebuild:
Fix implicit memset() declaration in png module.
08 Oct 2012; <naota@gentoo.org> slang-2.2.4.ebuild:
Install also pkg-config file. #433732
14 May 2012; Fabian Groffen <grobian@gentoo.org> slang-2.2.4.ebuild:
Fix linking on Solaris
04 May 2012; Alexis Ballier <aballier@gentoo.org> slang-2.2.4.ebuild:
keyword ~amd64-fbsd
24 Mar 2012; Fabian Groffen <grobian@gentoo.org> slang-2.2.4.ebuild:
Fix for Prefix, add Prefix keywords
02 Mar 2012; Samuli Suominen <ssuominen@gentoo.org>
-files/slang-2.1.2-slsh-libs.patch, -slang-2.2.2.ebuild, -slang-2.2.3.ebuild:
old
02 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> slang-2.2.4.ebuild:
ppc64 stable wrt #397239
28 Feb 2012; Brent Baude <ranger@gentoo.org> slang-2.2.4.ebuild:
Marking slang-2.2.4 ppc for bug 397239
14 Feb 2012; Jeroen Roovers <jer@gentoo.org> slang-2.2.4.ebuild:
Stable for HPPA (bug #397239).
12 Feb 2012; Raúl Porcel <armin76@gentoo.org> slang-2.2.4.ebuild:
alpha/ia64/s390/sh/sparc stable wrt #397239
29 Jan 2012; Markus Meier <maekke@gentoo.org> slang-2.2.4.ebuild:
arm stable, bug #397239
28 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> slang-2.2.4.ebuild:
x86 stable wrt bug #397239
23 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> slang-2.2.4.ebuild:
USE="static-libs" to control the building of libslang.a static archive wrt
#399841 by Maurizio Camisaschi
23 Jan 2012; Agostino Sarubbo <ago@gentoo.org> slang-2.2.4.ebuild:
Stable for amd64, wrt bug #397239
*slang-2.2.4 (25 Apr 2011)
25 Apr 2011; Samuli Suominen <ssuominen@gentoo.org> +slang-2.2.4.ebuild:
Version bump.
*slang-2.2.3 (27 Dec 2010)
27 Dec 2010; Samuli Suominen <ssuominen@gentoo.org> +slang-2.2.3.ebuild,
+files/slang-2.2.3-slsh-libs.patch:
Version bump.
24 May 2010; Pacho Ramos <pacho@gentoo.org> slang-2.2.2.ebuild:
stable amd64, bug 318313
22 May 2010; Raúl Porcel <armin76@gentoo.org> slang-2.2.2.ebuild:
alpha/arm/ia64/s390/sh/sparc stable wrt #318313
17 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> slang-2.2.2.ebuild:
x86 stable wrt bug #318313
11 May 2010; Brent Baude <ranger@gentoo.org> slang-2.2.2.ebuild:
stable ppc64, bug 318313
10 May 2010; nixnut <nixnut@gentoo.org> slang-2.2.2.ebuild:
ppc stable #318313
07 May 2010; Jeroen Roovers <jer@gentoo.org> slang-2.2.2.ebuild:
Stable for HPPA (bug #318313).
03 May 2010; Samuli Suominen <ssuominen@gentoo.org> slang-2.2.2.ebuild:
Make sure -ltermcap is not used wrt #276787 by Michal Janke.
17 Dec 2009; Raúl Porcel <armin76@gentoo.org> slang-2.2.0.ebuild:
ia64/s390/sh/sparc stable wrt #287733
*slang-2.2.2 (08 Dec 2009)
08 Dec 2009; MATSUU Takuto <matsuu@gentoo.org> +slang-2.2.2.ebuild:
Version bumped.
31 Oct 2009; Brent Baude <ranger@gentoo.org> slang-2.2.0.ebuild:
Marking slang-2.2.0 ppc64 for bug 287733
25 Oct 2009; Markus Meier <maekke@gentoo.org> slang-2.2.0.ebuild:
arm stable, bug #287733
21 Oct 2009; Markus Meier <maekke@gentoo.org> slang-2.2.0.ebuild:
x86 stable, bug #287733
12 Oct 2009; Jeroen Roovers <jer@gentoo.org> slang-2.2.0.ebuild:
Stable for HPPA (bug #287733).
11 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> slang-2.2.0.ebuild:
amd64 stable wrt #287733
11 Oct 2009; Tobias Klausmann <klausman@gentoo.org> slang-2.2.0.ebuild:
Stable on alpha, bug #287733
*slang-2.2.1 (07 Oct 2009)
07 Oct 2009; MATSUU Takuto <matsuu@gentoo.org> +slang-2.2.1.ebuild:
Version bumped, bug #288082.
07 Oct 2009; nixnut <nixnut@gentoo.org> slang-2.2.0.ebuild:
ppc stable #287733
*slang-2.2.0 (24 Aug 2009)
24 Aug 2009; MATSUU Takuto <matsuu@gentoo.org> +slang-2.2.0.ebuild:
Version bumped. Added zlib USE flag.
06 May 2009; Raúl Porcel <armin76@gentoo.org> slang-2.1.4.ebuild:
arm/ia64/s390/sh/sparc stable wrt #267920
03 May 2009; Tobias Klausmann <klausman@gentoo.org> slang-2.1.4.ebuild:
Stable on alpha, bug #267920
03 May 2009; Markus Meier <maekke@gentoo.org> slang-2.1.4.ebuild:
amd64/x86 stable, bug #267920
02 May 2009; Jeroen Roovers <jer@gentoo.org> slang-2.1.4.ebuild:
Stable for HPPA (bug #267920).
01 May 2009; Brent Baude <ranger@gentoo.org> slang-2.1.4.ebuild:
stable ppc64, bug 267920
30 Apr 2009; Brent Baude <ranger@gentoo.org> slang-2.1.4.ebuild:
stable ppc, bug 267920
30 Apr 2009; Samuli Suominen <ssuominen@gentoo.org> slang-2.1.3-r1.ebuild,
slang-2.1.4.ebuild:
Because ncurses5-config --terminfo returns /usr/share/terminfo we keepdir
it wrt #245374 and drop USE -minimal depend.
*slang-2.1.4 (03 Nov 2008)
03 Nov 2008; MATSUU Takuto <matsuu@gentoo.org> +slang-2.1.4.ebuild:
Version bumped, bug #237144. Added EAPI=2.
12 Jun 2008; Samuli Suominen <ssuominen@gentoo.org> slang-2.1.3-r1.ebuild:
arm stable
29 May 2008; Samuli Suominen <ssuominen@gentoo.org> slang-2.1.3-r1.ebuild:
keyword ~arm
04 Apr 2008; Samuli Suominen <ssuominen@gentoo.org> slang-2.1.3-r1.ebuild:
Keyword ~sparc-fbsd, thanks to Uberlord for testing.
19 Mar 2008; Samuli Suominen <ssuominen@gentoo.org>
+files/slang-2.1.3-uclibc.patch, slang-2.1.3-r1.ebuild:
Fix a regression from slang-1.4.9-r2, building on uclibc wrt bug 213925
thanks to Natanael Copa.
13 Mar 2008; Jeroen Roovers <jer@gentoo.org> slang-2.1.3-r1.ebuild:
Stable for HPPA (bug #211986).
11 Mar 2008; Brent Baude <ranger@gentoo.org> ChangeLog:
stable ppc64, bug 211991
11 Mar 2008; Brent Baude <ranger@gentoo.org> slang-2.1.3-r1.ebuild:
stable ppc64, bug 211986
10 Mar 2008; Samuli Suominen <ssuominen@gentoo.org> slang-2.1.3-r1.ebuild:
amd64 stable wrt #211986
10 Mar 2008; Raúl Porcel <armin76@gentoo.org> slang-2.1.3-r1.ebuild:
alpha/ia64/sparc stable wrt #211986
09 Mar 2008; nixnut <nixnut@gentoo.org> slang-2.1.3-r1.ebuild:
Stable on ppc wrt bug 211986
09 Mar 2008; Markus Meier <maekke@gentoo.org> slang-2.1.3-r1.ebuild:
x86 stable, bug #211986
17 Feb 2008; Alexis Ballier <aballier@gentoo.org> slang-2.1.3-r1.ebuild:
keyword ~x86-fbsd
15 Feb 2008; Samuli Suominen <ssuominen@gentoo.org> slang-2.1.3-r1.ebuild:
If USE readline is used, and it's enabled by default in profiles use system
readline for slsh instead of native slang.
15 Feb 2008; Samuli Suominen <ssuominen@gentoo.org> slang-2.1.3-r1.ebuild:
sys-libs/ncurses is required for /usr/share/terminfo files which means it
cannot be built with USE minimal wrt #210063 by Saul Peebsen.
11 Feb 2008; Jeroen Roovers <jer@gentoo.org> slang-2.1.3-r1.ebuild:
Marked ~hppa (bug #209422).
11 Feb 2008; Raúl Porcel <armin76@gentoo.org> slang-2.1.3-r1.ebuild:
Re-add ~ia64/~sparc
11 Feb 2008; Samuli Suominen <ssuominen@gentoo.org> slang-2.1.3-r1.ebuild:
Force -j1 for both building and installing wrt #209643.
11 Feb 2008; Brent Baude <ranger@gentoo.org> slang-2.1.3-r1.ebuild:
Marking slang-2.1.3-r1 ~ppc64 for bug 209422
10 Feb 2008; Ryan Hill <dirtyepic@gentoo.org> slang-2.1.3-r1.ebuild:
Keyword mips for bug #209422.
*slang-2.1.3-r1 (10 Feb 2008)
10 Feb 2008; Samuli Suominen <ssuominen@gentoo.org> +slang-2.1.3-r1.ebuild:
USE cjk for optional dev-libs/oniguruma dep.
10 Feb 2008; Samuli Suominen <ssuominen@gentoo.org> slang-2.1.3.ebuild:
Use targets elf and static in src_compile and install-all in src_install to
avoid compiling at install phase.
10 Feb 2008; Raúl Porcel <armin76@gentoo.org> slang-2.1.3.ebuild:
Re-add ~alpha/~ia64 wrt #209422
10 Feb 2008; Tobias Scherbaum <dertobi123@gentoo.org> slang-2.1.3.ebuild:
Added ~ppc, bug #209422
09 Feb 2008; Brent Baude <ranger@gentoo.org> slang-2.1.3.ebuild:
keyworded ~arch for ppc64, bug 209434
09 Feb 2008; Samuli Suominen <ssuominen@gentoo.org> slang-1.4.9-r2.ebuild,
-slang-2.1.2.ebuild:
Remove unused version and fix quoting of stable.
*slang-2.1.3 (09 Feb 2008)
09 Feb 2008; Samuli Suominen <ssuominen@gentoo.org> +slang-2.1.3.ebuild:
Version bump wrt #202344, thanks to Arfrever Frehtes Taifersar Arahesis for
reporting.
16 Nov 2007; Ferris McCormick <fmccor@gentoo.org> slang-2.1.2.ebuild:
Add ~sparc for testing. Why is this still package.masked?
14 Oct 2007; <matsuu@gentoo.org> -files/slang-2.0.6-foreground.patch,
-files/slang-2.0.6-slsh-libs.patch, -slang-1.4.9-r1.ebuild,
slang-1.4.9-r2.ebuild, -slang-2.0.6.ebuild:
Removed old versions.
Fixed distcc issue, bug #194233.
*slang-2.1.2 (18 Sep 2007)
18 Sep 2007; MATSUU Takuto <matsuu@gentoo.org>
+files/slang-2.1.2-slsh-libs.patch, +slang-2.1.2.ebuild:
Version bumped, bug #182339.
30 Aug 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
Removing liquidx from metadata due to his retirement (see #171155 for
reference).
18 Mar 2007; Fabian Groffen <grobian@gentoo.org> slang-1.4.9-r1.ebuild,
slang-1.4.9-r2.ebuild:
Dropped ppc-macos keyword, see you in prefix
12 Mar 2007; Javier Villavicencio <the_paya@gentoo.org>
slang-1.4.9-r2.ebuild:
Added userland_BSD to the conditionals for fsuid.patch. Thanks goes to
Sergey Belyashov in bug 169670.
17 Oct 2006; Roy Marples <uberlord@gentoo.org> slang-1.4.9-r2.ebuild:
Added ~sparc-fbsd keyword.
19 Sep 2006; Alastair Tse <liquidx@gentoo.org> slang-2.0.6.ebuild:
add -j1 to src_compile emakes (#141990)
28 Aug 2006; Gustavo Zacarias <gustavoz@gentoo.org> slang-1.4.9-r2.ebuild:
Stable on hppa
09 Aug 2006; Alastair Tse <liquidx@gentoo.org> slang-2.0.6.ebuild:
mark for ~x86
29 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
+files/slang-2.0.6-foreground.patch, +files/slang-2.0.6-slsh-libs.patch,
slang-2.0.6.ebuild:
Add missing patch and add a new one from upstream, thanks to 'galtgendo' in
bug #141990.
*slang-2.0.6 (28 Jul 2006)
28 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> +slang-2.0.6.ebuild:
Version bump for slang, slotted to be installed side-by-side with slang 1.x.
Thanks to Mark Lee and Alastair Tse in bug #95247 for the work and the
brainstorm. Masked till bug #141947 is completed.
22 Jul 2006; Bryan Østergaard <kloeri@gentoo.org> slang-1.4.9-r2.ebuild:
Stable on alpha.
27 Apr 2006; Alec Warner <antarus@gentoo.org> Manifest:
Fixing SHA256 digest, pass four
29 Apr 2006; Joshua Kinard <kumba@gentoo.org> slang-1.4.9-r2.ebuild:
Marked stable on mips.
30 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
+files/slang-1.4.9-fbsdlink.patch, slang-1.4.9-r2.ebuild:
Add patch to use linux-style linking on FreeBSD and keyworded ~x86-fbsd.
14 Mar 2006; Chris White <chriswhite@gentoo.org> slang-1.4.9-r2.ebuild:
1.4.9-r2 amd64 stable.
10 Mar 2006; Aron Griffis <agriffis@gentoo.org> slang-1.4.9-r2.ebuild:
Mark 1.4.9-r2 stable on ia64
10 Mar 2006; Michael Hanselmann <hansmi@gentoo.org> slang-1.4.9-r2.ebuild:
Stable on ppc.
27 Feb 2006; Gustavo Zacarias <gustavoz@gentoo.org> slang-1.4.9-r2.ebuild:
Stable on sparc
27 Feb 2006; Markus Rothe <corsair@gentoo.org> slang-1.4.9-r2.ebuild:
Stable on ppc64
25 Feb 2006; Alastair Tse <liquidx@gentoo.org>
-files/slang-utf8-acs.patch, -files/slang-utf8-fix.patch,
-files/slang-1.4.9-autoconf.patch, -files/slang-utf8-fix2.patch,
-files/slang-1.4.9-fsuid.patch, -files/slang-1.4.9.patch,
-files/slang-debian-utf8.patch, slang-1.4.9-r1.ebuild,
slang-1.4.9-r2.ebuild:
patches moved to gentoo mirror. stable bump for x86
16 Feb 2006; Alastair Tse <liquidx@gentoo.org> slang-1.4.9-r2.ebuild:
workaround build problems for LANG=et_EE (#122713)
*slang-1.4.9-r2 (16 May 2005)
16 May 2005; Heinrich Wendel <lanius@gentoo.org>
+files/slang-utf8-fix2.patch, +slang-1.4.9-r2.ebuild:
add another utf8 fix from fedora, bug #92735
03 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> :
Change encoding to UTF-8 for GLEP 31 compliance
07 Nov 2004; Mamoru KOMACHI <usata@gentoo.org> slang-1.4.9-r1.ebuild:
Fixed chmod failure when unicode USE flag is set; bug #70328.
06 Nov 2004; Mamoru KOMACHI <usata@gentoo.org>
files/slang-1.4.9-fsuid.patch, files/slang-1.4.9.patch,
slang-1.4.9-r1.ebuild:
Added a patch to remove glibc specific calls. Thanks to Peter S. Mazinger
<ps.m@gmx.net>; bug #67666. Fixed compilation on ppc-macos and LICENSE
syntax.
26 Oct 2004; Tom Martin <slarti@gentoo.org> slang-1.4.9-r1.ebuild:
Stable on amd64.
16 Oct 2004; <gongloo@gentoo.org> slang-1.4.9-r1.ebuild:
Keyworded ~ppc-macos.
06 Oct 2004; Guy Martin <gmsoft@gentoo.org> slang-1.4.9-r1.ebuild:
Stable on hppa.
30 Sep 2004; Bryan Østergaard,,, <kloeri@gentoo.org> slang-1.4.9-r1.ebuild:
Stable on alpha.
25 Sep 2004; Joshua Kinard <kumba@gentoo.org> slang-1.4.9-r1.ebuild:
Marked stable on mips.
22 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> slang-1.4.9-r1.ebuild:
Stable on sparc
21 Sep 2004; Heinrich Wendel <lanius@gentoo.org> slang-1.4.9-r1.ebuild:
mark slang-1.4.9-r1 stable on x86
03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> slang-1.4.9.ebuild:
Masked slang-1.4.9.ebuild stable for ppc
01 Sep 2004; Travis Tilley <lv@gentoo.org> slang-1.4.9-r1.ebuild,
slang-1.4.9.ebuild:
made slang use $(get_libdir) for cleanly installing to lib64/lib32
23 Jul 2004; Mamoru KOMACHI <usata@gentoo.org> slang-1.4.9.ebuild:
Added to macos.
*slang-1.4.9-r1 (07 Jun 2004)
04 Oct 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>:
PPC stable
07 Jun 2004; Mamoru KOMACHI <usata@gentoo.org> metadata.xml,
+slang-1.4.9-r1.ebuild:
Added unicode patches. Thanks to Alexander Darovsky <adarovsky@users.sf.net>
and Stanislav Karchebny <berk@inbox.ru>, see bug #47675 and #52846.
27 Apr 2004; Mike Frysinger <vapier@gentoo.org> slang-1.4.9.ebuild :
Mark arm stable and remove the trimming of the gcc/slang.h stuff since
this has been fixed in latest gcc's.
22 Jan 2004; Guy Martin <gmsoft@gentoo.org> slang-1.4.9.ebuild :
Marked stable on hppa.
15 Jan 2004; Jon Portnoy <avenj@gentoo.org> slang-1.4.9.ebuild :
Stable on AMD64.
09 Jan 2004; Aron Griffis <agriffis@gentoo.org> slang-1.4.9.ebuild:
stable on alpha
28 Dec 2003; Joshua Kinard <kumba@gentoo.org> slang-1.4.9.ebuild:
Move to mips stable (~mips -> mips)
20 Oct 2003; Christian Birchinger <joker@gentoo.org> slang-1.4.9.ebuild:
Added sparc stable keyword
08 Oct 2003; Alastair Tse <liquidx@gentoo.org> slang-1.4.9.ebuild:
stable bump for x86
17 Sep 2003; Jon Portnoy <avenj@gentoo.org> slang-1.4.9.ebuild :
ia64 keywords.
19 Jul 2003; Alastair Tse <liquidx@gentoo.org> slang-1.4.5-r2.ebuild,
slang-1.4.5-r3.ebuild:
fix library links on first install for 1.4.5
*slang-1.4.9 (10 Jun 2003)
10 Jun 2003; YAMAKURA Makot <yakina@gentoo.org> slang-1.4.5-r3.ebuild,
slang-1.4.9.ebuild, files/digest-slang-1.4.5-r3, files/digest-slang-1.4.9 :
New version 1.4.9. Added cjk USE flag to 1.4.9 and 1.4.5-r3.
18 May 2003; Tavis Ormandy <taviso@gentoo.org> slang-1.4.5-r2.ebuild:
removing hardcoded compiler.
*slang-1.4.8 (22 Feb 2003)
16 Mar 2003; Alastair Tse <liquidx@gentoo.org> slang-1.4.8.ebuild:
add postinst cleanup for old ANSIfied slang.h, prevents #16678.
22 Feb 2003; Aron Griffis <agriffis@gentoo.org> slang-1.4.8.ebuild :
Update to latest version; thanks to Robert Bragg for the heads-up.
Closes bug #15015.
18 Feb 2003; Zach Welch <zwelch@gentoo.org> slang-1.4.5-r2.ebuild :
Added arm to keywords.
09 Feb 2003; Guy Martin <gmsoft@gentoo.org> slang-1.4.5-r2.ebuild :
Added hppa to keywords.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
*slang-1.4.5-r2 (21 Mar 2002)
18 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
Added mips to keywords
15 Jul 2002; Mark Guertin <gerk@gentoo.org>
Added ppc to keywords
21 Mar 2002; Seemant Kulleen <seemant@gentoo.org> slang-1.4.5-r2.ebuild :
html documentation no longer getting gzipped. caught by
stefan@mdy.univie.ac.at
*slang-1.4.5-r1 (4 March 2002)
4 March 2002; Donny Davies <woodchip@gentoo.org> slang-1.4.5-r1.ebuild :
Fixed to install libslang.so.1.4.5 mode 755. Also fix a small doc
install bug where it wasnt deleting the right directory.
*slang-1.4.5 (20 Feb 2002)
20 Feb 2002; Aron Griffis <agriffis@gentoo.org> slang-1.4.5.ebuild :
Updated to 1.4.5. Removed setting of ELF_CFLAGS since our CFLAGS are
picked up anyway. This seems a safer approach.
*slang-1.4.4-r1 (1 Feb 2002)
1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
Added initial ChangeLog which should be updated whenever the package is
updated in any way. This changelog is targetted to users. This means that
the comments should well explained and written in clean English. The
details about writing correct changelogs are explained in the
skel.ChangeLog file which you can find in the root directory of the
portage repository.

View File

@ -1,11 +0,0 @@
AUX slang-2.1.3-uclibc.patch 494 SHA256 7b88890ae8787617065d693f0469b2d462148964e3de9d74e28c0b202590fd69 SHA512 7565e321fff880a536d7724c44db3cdb4d856011004d79ad7a363094f765d73ab0dc6fe80b4df57fca9352ed4f790ad13a59d1827162e4f426cc51fa38ec1cb1 WHIRLPOOL 6142620686e7a2af1c57a4962df6ca69c05f713f6c69ad9b5daad0b040242cf5951dda4d33ad0a06df3371519bd41c54c9c7e4d59ce29926de9805d3f7bcb4e5
AUX slang-2.2.3-slsh-libs.patch 678 SHA256 820bb560dc76105756a0fa75661dd3cbf6fc6ecb7802dcbdb9fc4625de4ffb22 SHA512 62ce13a54178432463873e1f31e50bd47559ef0fff6c0a58497cfb908b055ea2f80d1af5d2c5bdafdf6e85e7c75d48bd0d39905977d1591e7559a285685a9b72 WHIRLPOOL 135fc5ea00fc3dcc7580753c5e9f02985762ecf758593728f273e8b252e3b86573ff50249cbb26d8da0678a7cd1fe965319e8bf9d7073c4158e57211c72bf707
AUX slang-2.2.4-memset.patch 1054 SHA256 d389884d73811314a6dbdb6223a7241bca5abc97f8984eb4f238d327b30c1fad SHA512 ddbbd089c3d1128353951438fc527b6cc7e2268d5dc7384123fcf36dc198872a0cf229c850b3e6c1538807adaf3b426d3748f3ed2fd4b021080d5ebda30d56ee WHIRLPOOL b68492ca72f6ee35c28bde22fd87d8c33c85c47fcb820c9d17ec496301b7df46a4741e7baa9b3522b4142c9643a2942d8e619364039beba80cc9e59bb8131910
DIST slang-2.2.4.tar.bz2 1427363 SHA256 9a8257a9a2a55099af858b13338dc8f3a06dd2069f46f0df2c9c3bb84a01d5db SHA512 aaf0dcea5f1583487732098bd9dfe47f4fd968d81783955f58ed7bbffb852c217cde8999f2a515d77c22d44efc79047fc841eea6fecc48f18b402461ce6a848f WHIRLPOOL 5a0c81ef103116733df952fec8593f476bd57c9b2799ee566b0bf93dfd465709ef5f565a369d89a92bfd13cfc7577a047c46116bcac2f0b3176e50556c7484e1
DIST slang-2.3.0.tar.bz2 1532986 SHA256 f95224060f45e0d8212a5039b339afa5f1a94a1bb0298e796104e5b12e926129 SHA512 0b04d916409c59f66301877c078bcca63c8b71e5dfa6c1d804353e41949bca16e664a79381c4156068b1f878c333e618f1de165e4059b09831fa83a794613050 WHIRLPOOL 395dc36d2f571ed19d88ee1f1c3594ab50d3a955949724d46582191430aa0c23cf3f78f966b184f3220ab86f2939e4601821160455159783793df30597c53257
EBUILD slang-2.2.4-r1.ebuild 2239 SHA256 100157bd3800c4317556c8071255639bc08322e75cc34084209b235243fff1c2 SHA512 e0b82d314b37c963e8b54132cd0adb2d5c808ba7b53eff668d1ca8d0476acb4cb887524afd4557b89d847a3a7e8e40be9d7a997f1967b0f3150b757ee9cf800c WHIRLPOOL 5d56e001a3dd566ef914e41d7b272f636263f08ff190a9c43d941db40391cba6d7ed649e8f965392b789bae95ec3a88d102deb991c757ee54a8277b00d6a6b50
EBUILD slang-2.2.4.ebuild 1799 SHA256 f2e4ea4017c0fa14dd97475260792ea2ba5172dbbf6d55e3540bbbc06b9e811e SHA512 4d82128ac4fe5e856ff7dcd0f1f3eb4e00b1602ec5b0f96d8ba274d00c1a1c24dca0be8f290bef585fe5fa27a21b137d07b47dfab0b6926b0b2d2f5da7e79720 WHIRLPOOL b17b1543f98334fa462b9bbf65a8fd0fcfc7e7ecebfc77aa301a6956514b55ab2f968077e903e96758a8b30549fec39ad496140896895958e122ab86e8fd9f45
EBUILD slang-2.3.0.ebuild 2261 SHA256 207b4a2ec407051f9cc73fa4fd74b621778a8155f32e3d6aea3ec22fb16a03c5 SHA512 e59b6da6871a7228d7c211b4fdc4cecef966446cd5c4e31bd605bc7cfab1e597247a62a865edcc22391aa441bc25ef5607462c4832911930c010c7b55bde36a3 WHIRLPOOL 2af07fff2493aec0d7b0a60d5e3b421299395b1e93662ce459b7863454fa4a90089389c5bd1f0129991896c8019411b14daae6b6c060590a8fd38eb7a7a2e668
MISC ChangeLog 2629 SHA256 abacc2bf095a6600f508333ab27cbe52b7578567d7790e98ba86d469ee0ece01 SHA512 ad0750bcdd4c8ae74395e7a60ef60f64e03f57a0fa1bd7904c96a95890a2ea520e8251dd3ad69aed0725ed642bb3e399db87a52c75642c0588d5713bd6f66a08 WHIRLPOOL d3e55f78e32ca401e4e77ef664314f27e180890f4a0efaf6d5ad668df578d4169bdd20a53f24b6e0a4de5101487257f552b71adfc96135ecc6bdcb66dd31b7e2
MISC ChangeLog-2015 18580 SHA256 9d53f950ed48c7fedc2366ec68655c18009ad714b6b2b80c0a0d903be0a1982b SHA512 03dc0c0d481a94d5bae01ff9c753631a05c72ad4b0f8e7831739097ed5790bace751b1968f2650a8b6ab2d685862097bbe685515dd038e2b751c3537f904cb0f WHIRLPOOL 1c70afeda60c7c7af3a3fe4608bae3ef8cf1db87f890ee7cd3741c778d9eb7c97591d0e41f420c8b4ab272ae8d8380732d003f4c2ddc7f01f2b4ed8b4f288155
MISC metadata.xml 234 SHA256 5ee3f7d7197cf269efebe240796a0484e0bd2da3cff78e63b87c32cb4297c175 SHA512 16ea852f76297335e7ef70c8019fe09d46c0455922c049ba6e92696232e957955fd671d467ebdd0bf7837d39a26083d5be2a6f8abeba53807f0b8c5b97f2e441 WHIRLPOOL a29087cfdc7418c4dfdeffc62f80a934a759de3f014f9599dc3be9a8292c4717165dc75c1a565b4dca34479115f4ae17ddb62aa6960e93ad71e12b4c26c8040d

View File

@ -1,12 +0,0 @@
diff -ur slang-2.1.3.orig/src/slcommon.c slang-2.1.3/src/slcommon.c
--- slang-2.1.3.orig/src/slcommon.c 2007-01-10 18:09:07.000000000 +0200
+++ slang-2.1.3/src/slcommon.c 2008-03-19 16:09:09.000000000 +0200
@@ -191,7 +191,7 @@
return p;
}
-#if !defined(HAVE_ISSETUGID) && defined(__GLIBC__) && (__GLIBC__ >= 2)
+#if !defined(HAVE_ISSETUGID) && defined(__GLIBC__) && (__GLIBC__ >= 2) && !defined(__UCLIBC__)
extern int __libc_enable_secure;
# define HAVE___LIBC_ENABLE_SECURE 1
#endif

View File

@ -1,11 +0,0 @@
--- slsh/Makefile.in
+++ slsh/Makefile.in
@@ -80,7 +80,7 @@
$(OBJDIR)/slsh_exe: $(OBJDIR)/slsh.o $(OBJDIR)/readline.o
$(CC) $(CFLAGS) $(OBJDIR)/slsh.o $(OBJDIR)/readline.o -o $(OBJDIR)/slsh_exe $(LDFLAGS) $(SRC_LIBS)
$(OBJDIR)/slsh: $(OBJDIR)/slsh.o $(OBJDIR)/readline.o
- $(CC) $(CFLAGS) $(OBJDIR)/slsh.o $(OBJDIR)/readline.o -o $(OBJDIR)/slsh $(LDFLAGS) $(INST_LIBS)
+ $(CC) $(CFLAGS) $(OBJDIR)/slsh.o $(OBJDIR)/readline.o -o $(OBJDIR)/slsh $(LDFLAGS) $(SRC_LIBS)
$(OBJDIR)/slsh.o: $(OBJDIR) slsh.c slsh.h config.h Makefile
cd $(OBJDIR) && $(CC) -c $(CFLAGS) $(SLANG_SRCINC) $(DEFS) $(SRCDIR)/slsh.c
$(OBJDIR)/readline.o: $(OBJDIR) readline.c slsh.h config.h Makefile

View File

@ -1,32 +0,0 @@
From e06be392e42c23dd9bd7205445f3c5232ddb9ed7 Mon Sep 17 00:00:00 2001
From: Sergei Trofimovich <slyfox@gentoo.org>
Date: Tue, 19 Nov 2013 15:17:52 +0300
Subject: [PATCH] modules/png-module.c: add declaration of 'memset'
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* QA Notice: Package triggers severe warnings which indicate that it
* may exhibit random runtime failures.
* /tmp/portage/sys-libs/slang-2.2.4/work/slang-2.2.4/modules/png-module.c:122:2: warning: incompatible implicit declaration of built-in function memset [enabled by default]
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
---
modules/png-module.c | 1 +
3 files changed, 403 insertions(+), 259 deletions(-)
diff --git a/modules/png-module.c b/modules/png-module.c
index 92ede3d..fed9392 100644
--- a/modules/png-module.c
+++ b/modules/png-module.c
@@ -23,6 +23,7 @@ USA.
#include "config.h"
#include <stdio.h>
+#include <string.h> /* memset() */
#include <errno.h>
#include <slang.h>
--
1.8.4

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>cjk@gentoo.org</email>
<name>Cjk</name>
</maintainer>
</pkgmetadata>

View File

@ -1,74 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils multilib-minimal
DESCRIPTION="A multi-platform programmer's library designed to allow a developer to create robust software"
HOMEPAGE="http://www.jedsoft.org/slang/"
SRC_URI="mirror://slang/v${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="cjk pcre png readline static-libs zlib"
# ncurses for ncurses5-config to get terminfo directory
RDEPEND="sys-libs/ncurses
pcre? ( >=dev-libs/libpcre-8.33-r1[${MULTILIB_USEDEP}] )
png? ( >=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}] )
cjk? ( >=dev-libs/oniguruma-5.9.5[${MULTILIB_USEDEP}] )
readline? ( >=sys-libs/readline-6.2_p5-r1:0[${MULTILIB_USEDEP}] )
zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
abi_x86_32? (
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
!<=app-emulation/emul-linux-x86-baselibs-20140406-r1
)"
DEPEND="${RDEPEND}"
MAKEOPTS="${MAKEOPTS} -j1"
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.2.3-slsh-libs.patch
epatch "${FILESDIR}"/${PN}-2.2.4-memset.patch
# avoid linking to -ltermcap race with some systems
sed -i -e '/^TERMCAP=/s:=.*:=:' configure || die
# we use the GNU linker also on Solaris
sed -i -e 's/-G -fPIC/-shared -fPIC/g' \
-e 's/-Wl,-h,/-Wl,-soname,/g' configure || die
# slang does not support configuration from another dir
multilib_copy_sources
}
multilib_src_configure() {
local myconf=slang
use readline && myconf=gnu
econf \
--with-readline=${myconf} \
$(use_with pcre) \
$(use_with cjk onig) \
$(use_with png) \
$(use_with zlib z)
}
multilib_src_compile() {
emake elf $(use static-libs && echo static)
pushd slsh >/dev/null
emake slsh
popd
}
multilib_src_install() {
emake DESTDIR="${D}" install $(use static-libs && echo install-static)
}
multilib_src_install_all() {
rm -rf "${ED}"/usr/share/doc/{slang,slsh}
dodoc NEWS README *.txt doc/{,internal,text}/*.txt
dohtml doc/slangdoc.html slsh/doc/html/*.html
}

View File

@ -1,66 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils
DESCRIPTION="A multi-platform programmer's library designed to allow a developer to create robust software"
HOMEPAGE="http://www.jedsoft.org/slang/"
SRC_URI="mirror://slang/v${PV%.*}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="cjk pcre png readline static-libs zlib"
# ncurses for ncurses5-config to get terminfo directory
RDEPEND="sys-libs/ncurses
pcre? ( dev-libs/libpcre )
png? ( >=media-libs/libpng-1.2:0 )
cjk? ( dev-libs/oniguruma )
readline? ( sys-libs/readline )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}"
MAKEOPTS="${MAKEOPTS} -j1"
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.2.3-slsh-libs.patch
epatch "${FILESDIR}"/${PN}-2.2.4-memset.patch
# avoid linking to -ltermcap race with some systems
sed -i -e '/^TERMCAP=/s:=.*:=:' configure || die
# we use the GNU linker also on Solaris
sed -i -e 's/-G -fPIC/-shared -fPIC/g' \
-e 's/-Wl,-h,/-Wl,-soname,/g' configure || die
}
src_configure() {
local myconf=slang
use readline && myconf=gnu
econf \
--with-readline=${myconf} \
$(use_with pcre) \
$(use_with cjk onig) \
$(use_with png) \
$(use_with zlib z)
}
src_compile() {
emake elf $(use static-libs && echo static)
pushd slsh >/dev/null
emake slsh
popd
}
src_install() {
emake DESTDIR="${D}" install $(use static-libs && echo install-static)
rm -rf "${ED}"/usr/share/doc/{slang,slsh}
dodoc NEWS README *.txt doc/{,internal,text}/*.txt
dohtml doc/slangdoc.html slsh/doc/html/*.html
}

View File

@ -1,74 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils multilib-minimal
DESCRIPTION="A multi-platform programmer's library designed to allow a developer to create robust software"
HOMEPAGE="http://www.jedsoft.org/slang/"
SRC_URI="http://www.jedsoft.org/releases/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="cjk pcre png readline static-libs zlib"
# ncurses for ncurses5-config to get terminfo directory
RDEPEND="sys-libs/ncurses
pcre? ( >=dev-libs/libpcre-8.33-r1[${MULTILIB_USEDEP}] )
png? ( >=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}] )
cjk? ( >=dev-libs/oniguruma-5.9.5[${MULTILIB_USEDEP}] )
readline? ( >=sys-libs/readline-6.2_p5-r1:0[${MULTILIB_USEDEP}] )
zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
abi_x86_32? (
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
!<=app-emulation/emul-linux-x86-baselibs-20140406-r1
)"
DEPEND="${RDEPEND}"
MAKEOPTS="${MAKEOPTS} -j1"
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.2.3-slsh-libs.patch
epatch "${FILESDIR}"/${PN}-2.2.4-memset.patch
# avoid linking to -ltermcap race with some systems
sed -i -e '/^TERMCAP=/s:=.*:=:' configure || die
# we use the GNU linker also on Solaris
sed -i -e 's/-G -fPIC/-shared -fPIC/g' \
-e 's/-Wl,-h,/-Wl,-soname,/g' configure || die
# slang does not support configuration from another dir
multilib_copy_sources
}
multilib_src_configure() {
local myconf=slang
use readline && myconf=gnu
econf \
--with-readline=${myconf} \
$(use_with pcre) \
$(use_with cjk onig) \
$(use_with png) \
$(use_with zlib z)
}
multilib_src_compile() {
emake elf $(use static-libs && echo static)
pushd slsh >/dev/null
emake slsh
popd
}
multilib_src_install() {
emake DESTDIR="${D}" install $(use static-libs && echo install-static)
}
multilib_src_install_all() {
rm -rf "${ED}"/usr/share/doc/{slang,slsh}
dodoc NEWS README *.txt doc/{,internal,text}/*.txt
dohtml doc/slangdoc.html slsh/doc/html/*.html
}