diff options
author | xmj <xmj@FreeBSD.org> | 2014-09-22 18:40:00 +0800 |
---|---|---|
committer | xmj <xmj@FreeBSD.org> | 2014-09-22 18:40:00 +0800 |
commit | d39787ca07e42b7a91488f45cc6c58333ae10780 (patch) | |
tree | f0614b64c20d137667eadfbdc5663150937dc6c3 /dns | |
parent | 143e62b0f3ebf9f9c709e4c068013418325fc64c (diff) | |
download | freebsd-ports-gnome-d39787ca07e42b7a91488f45cc6c58333ae10780.tar.gz freebsd-ports-gnome-d39787ca07e42b7a91488f45cc6c58333ae10780.tar.zst freebsd-ports-gnome-d39787ca07e42b7a91488f45cc6c58333ae10780.zip |
Update CentOS base to 6.5, add userland ports
The Fedora 10 infrastructure ports have been in use since June 2009 and, while
having served a great deed, have become unsupported upstream and hence affected
by unfixed security vulnerabilities. In addition to that, many recent Linux
binaries need newer libc / stdlibc++ versions.
This commit adds the linux-c6- userland as drop-in replacement for the -f10
infrastructure, as well as upgrading the linux_base-c6 port to CentOS 6.5.
If you want to switch to linux-c6 ports, please define at /etc/make.conf:
OVERRIDE_LINUX_BASE_PORT=c6
OVERRIDE_LINUX_NONBASE_PORTS=c6
Additionally, please add the following line to /etc/sysctl.conf:
compat.linux.osrelease=2.6.18
Upgrading procedures are shown in /usr/ports/UPDATING.
This work has been inspired by Artyom Mirgorodskiy's post to emulation@ in
November 2013, using and extending mav@'s work. It has been tested extensively
and most reported issues were already fixed. Please report any additional bug
or "features" to the emulation mailing list.
Many thanks to: mav@, rene@, allanjude@, netchild@, antoine@, everyone who's
filed Issues and Pull requests on GitHub,
PR: 186820
Differential Revision: https://reviews.freebsd.org/D793
Reviewed by: allanjude, antoine, bapt, rene
Approved by: portmgr (antoine, bapt)
Approved by: koobs (mentor)
Sponsored by: Perceivon Hosting Inc.
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/linux-c6-libasyncns/Makefile | 18 | ||||
-rw-r--r-- | dns/linux-c6-libasyncns/distinfo.i686 | 4 | ||||
-rw-r--r-- | dns/linux-c6-libasyncns/pkg-descr | 20 | ||||
-rw-r--r-- | dns/linux-f10-libasyncns/Makefile | 3 |
5 files changed, 44 insertions, 2 deletions
diff --git a/dns/Makefile b/dns/Makefile index b10d4f89517c..5897daf11354 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -75,6 +75,7 @@ SUBDIR += libbind SUBDIR += libdjbdns SUBDIR += libidn + SUBDIR += linux-c6-libasyncns SUBDIR += linux-f10-libasyncns SUBDIR += mDNSResponder_nss SUBDIR += maradns diff --git a/dns/linux-c6-libasyncns/Makefile b/dns/linux-c6-libasyncns/Makefile new file mode 100644 index 000000000000..b0133e8e1480 --- /dev/null +++ b/dns/linux-c6-libasyncns/Makefile @@ -0,0 +1,18 @@ +# Created by: Johannes Meixner <xmj@chaot.net> +# $FreeBSD$ + +PORTNAME= libasyncns +PORTVERSION= 0.8 +CATEGORIES= dns devel linux +PKGNAMEPREFIX= linux-c6- + +MAINTAINER= emulation@FreeBSD.org +COMMENT= C library for executing DNS queries asynchronously (Linux CentOS ${LINUX_DIST_VER}) + +USE_LINUX= c6 +USE_LINUX_RPM= yes +RPMVERSION= 1.1.el6 +USE_LDCONFIG= yes +AUTOMATIC_PLIST= yes + +.include <bsd.port.mk> diff --git a/dns/linux-c6-libasyncns/distinfo.i686 b/dns/linux-c6-libasyncns/distinfo.i686 new file mode 100644 index 000000000000..7020869de3e2 --- /dev/null +++ b/dns/linux-c6-libasyncns/distinfo.i686 @@ -0,0 +1,4 @@ +SHA256 (rpm/i686/centos/6.5/libasyncns-0.8-1.1.el6.i686.rpm) = 29b5986a6ed47b9c54857df3238f8a6348792cfeb9c8923f75208d9738c49748 +SIZE (rpm/i686/centos/6.5/libasyncns-0.8-1.1.el6.i686.rpm) = 24888 +SHA256 (rpm/i686/centos/6.5/libasyncns-0.8-1.1.el6.src.rpm) = 6d0b1cd3002d4d79c43bc121e28f5c9bd65b69a80f9cd117cef234caecc47537 +SIZE (rpm/i686/centos/6.5/libasyncns-0.8-1.1.el6.src.rpm) = 346427 diff --git a/dns/linux-c6-libasyncns/pkg-descr b/dns/linux-c6-libasyncns/pkg-descr new file mode 100644 index 000000000000..36b59b4cd45c --- /dev/null +++ b/dns/linux-c6-libasyncns/pkg-descr @@ -0,0 +1,20 @@ +libasyncns is a C library for Linux/Unix for executing name service queries +asynchronously. It is an asynchronous wrapper around getaddrinfo(3), +getnameinfo(3), res_query(3) and res_search(3) from libc and libresolv. + +In contrast to GNU's asynchronous name resolving API getaddrinfo_a(), +libasyncns does not make use of UNIX signals for reporting completion of name +queries. Instead, the API exports a standard UNIX file descriptor which may be +integerated cleanly into custom main loops. + +In contrast to asynchronous DNS resolving libraries like libdenise, skadns, +adns, libasyncns is just an asynchronous wrapper around the libc's synchronous +getaddrinfo() API, which has the advantage of allowing name resolution using +techniques like Multicast DNS, LDAP or NIS using standard libc NSS (Name +Service Switch) modules. libasyncns is compatible with IPv6 if the underlying +libc is. + +libasyncns is very tiny, consisting of just one header and one source file. It +has no dependencies besides libc. + +WWW: http://0pointer.de/lennart/projects/libasyncns/ diff --git a/dns/linux-f10-libasyncns/Makefile b/dns/linux-f10-libasyncns/Makefile index 441c2a9295e2..f27306ab963b 100644 --- a/dns/linux-f10-libasyncns/Makefile +++ b/dns/linux-f10-libasyncns/Makefile @@ -5,13 +5,12 @@ PORTNAME= libasyncns PORTVERSION= 0.7 CATEGORIES= dns devel linux PKGNAMEPREFIX= linux-f10- -DISTNAME= ${PORTNAME}-${PORTVERSION}-${RPMVERSION} MAINTAINER= itetcu@FreeBSD.org COMMENT= C library for executing DNS queries asynchronously (Linux Fedora 10) +USE_LINUX= f10 USE_LINUX_RPM= yes -LINUX_DIST_VER= 10 RPMVERSION= 1.fc10 USE_LDCONFIG= yes AUTOMATIC_PLIST=yes |